

.nuxt-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 0;
    opacity: 1;
    transition: width .1s,opacity .4s;
    background-color: #2f483d;
    z-index: 999999;
}

.nuxt-progress.nuxt-progress-notransition {
    transition: none;
}

.nuxt-progress-failed {
    background-color: red;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateZ(0);
}

.loading-screen__revealer {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    background-color: #2f483d;
    cursor: progress !important;
}

.loading-screen__revealer.-upper {
    top: 0;
    height: 50%;
    transform-origin: top center;
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
    transition: height 1s ease;
}

.loading-screen__revealer.-upper.active {
    height: 0%;
}

.loading-screen__revealer.-lower {
    height: 50%;
    bottom: 0;
    transform-origin: bottom center;
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
    transition: height 1s ease;
}

.loading-screen__revealer.-lower.active {
    height: 0%;
}

.loading-screen__site-name-mask {
    display: block;
    margin: 0;
    /* overflow: hidden; */
    /* color: #fff; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
}

.loading-screen__site-name-mask > .loading-screen__site-name {
    display: block;
    margin: auto;
}
