@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --sculptr-slate: #36516f;
    --sculptr-ivory: #f9d37d;
}


/* Page preloader */
/************************************/
/************************************/
#page-preloader {
    min-height: 100vh;
    min-width: 100vw;
    background-color: var(--sculptr-slate);
    z-index: 999999;
}


.sk-chase {
    width: 20vw;
    height: 20vw;
    position: absolute;
    display: block;
    margin-left: 40vw;
    margin-top: 70%;

    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #fff;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {

    80%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%,
    0% {
        transform: scale(1.0);
    }
}

/* Object preloader */
/************************************/
/************************************/

#object-preloader {
    border: 5px solid white;
    border-radius: 50%;
    width: 50vw;
    height: 50vw;
    display: none;
    text-align: center;
    line-height: 50vw;
    margin-left: 25vw;
    margin-top: 50%;
    color: white;
    font-family: helvetica;
    font-weight: 900;

    box-shadow: inset 0 0 50px rgba(0, 0, 0, .5);
    /* visibility: hidden; */

    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 50%, darkred 50%);
    /*background: rgba(255, 255, 255, 0.2);*/
    background-size: 200% 200%;
    background-position: 0% 0%;
    transition: all .5s ease-out;
}

a#preloader-container {
    position: relative;
    display: none;
    text-decoration: none;
    text-transform: uppercase;
    width: 60vw;
    height: 60vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50%;
    overflow: hidden;
    border-radius: 50%;
    text-align: center;

    border: 2.5vw solid white;
    box-shadow: inset 0 0 10vw rgba(0, 0, 0, .8);
    /*background: #4973ff;*/
    background: var(--sculptr-slate);
}

a#preloader-container div#loaded-percent-indicator {
    position: absolute;
    width: 60vw;
    height: 60vw;
    line-height: 60vw;
    color: #fff;
    font-size: 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    z-index: 1;
}

#liquid {
    margin-top: 30vw;
    transition: all .5s ease-out;
}

#liquid::before,
#liquid::after {
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    left: 50%;
    background: #000;
}

#liquid::before {

    border-radius: 50%;
    background: rgba(20, 20, 20, 1);
    animation: objectLoadAnim 5s linear infinite;
}

#liquid::after {

    border-radius: 45%;
    background: rgba(20, 20, 20, .5);
    animation: objectLoadAnim 10s linear infinite;
}

@keyframes objectLoadAnim {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}