/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* LOAD PAGE */
.page-loader {
    position: fixed;
    opacity: 1;
    z-index: 9999999;
    background-color: var(--bg-colorc1);
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin: 0;


}

.page-loader.hidden-load {
    height: 0;
    opacity: 0;
    -webkit-transition: 0.4s ease-in;
    -o-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
    z-index: -1;
}

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    /*change these sizes to fit into your project*/
    width: 60px;
    height: 60px;
    z-index: 9999999;
}
.load hr{
    opacity: 1;
}

.load hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    -webkit-animation: spin 2s ease infinite;
            animation: spin 2s ease infinite
}

.load :first-child {
    background: #2E3555;
    -webkit-animation-delay: -1.5s;
            animation-delay: -1.5s
}

.load :nth-child(2) {
    background: #6F4B29;
    -webkit-animation-delay: -1s;
            animation-delay: -1s
}

.load :nth-child(3) {
    background: #635E55;
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s
}

.load :last-child {
    background: #727272
}

@-webkit-keyframes spin {

    0%,
    100% {
        -webkit-transform: translate(0);
                transform: translate(0)
    }

    25% {
        -webkit-transform: translate(160%);
                transform: translate(160%)
    }

    50% {
        -webkit-transform: translate(160%, 160%);
                transform: translate(160%, 160%)
    }

    75% {
        -webkit-transform: translate(0, 160%);
                transform: translate(0, 160%)
    }
}

@keyframes spin {

    0%,
    100% {
        -webkit-transform: translate(0);
                transform: translate(0)
    }

    25% {
        -webkit-transform: translate(160%);
                transform: translate(160%)
    }

    50% {
        -webkit-transform: translate(160%, 160%);
                transform: translate(160%, 160%)
    }

    75% {
        -webkit-transform: translate(0, 160%);
                transform: translate(0, 160%)
    }
}