<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*SCROLL TOP BUTTON START:*/

#scrollUpBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 200;
    font-size: unset;
    border: none;
    outline: none;
    background-color: gray;
    color: white;
    cursor: pointer;
    padding: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: .8;
}

#scrollUpBtn:hover {
    opacity: 1;
}

#scrollUpBtn:after {
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    content: "";
    display: inline-block;
    height: 10px;
    position: relative;
    top: 1px;
    transform: rotate(225deg);
    width: 10px;
}

/*SCROLL TOP BUTTON :END*/

/*PAGE LOADER AND SPINNER v1 START:*/
#pageLoader-v1 {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10000;
}

.spinner-v1 {
    position: relative;
    top: 35%;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: gray;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*PAGE LOADER AND SPINNER v1 :END*/

/*PAGE LOADER AND SPINNER v2 START:*/
.spinner-v2 {
    position: relative;
    display: inline-block;
    margin: 0 12.5% 100px;
    width: 40px;
    height: 40px;
    border: 2px solid #0cf;
    border-top-width: 0;
    border-radius: 50%;
    -webkit-animation: rotation 0.75s infinite linear;
    animation: spin 0.75s infinite linear;
}

.spinner-v2::before,
.spinner-v2::after {
    left: -2px;
    top: -2px;
    display: none;
    position: absolute;
    content: '';
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

/*PAGE LOADER AND SPINNER v2 :END*/

/*PAGE LOADER AND SPINNER v3 START:*/
#loadingOverlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    /*display: none;*/
    background: rgba(0, 0, 0, 0.6);
}

.loadingWrapSpinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadingSpinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.loaderCenter {
    position: absolute;
    top: calc(50% - 17px);
    left: calc(50% - 17px);
}

/*PAGE LOADER AND SPINNER v3 :END*/
</pre></body></html>