/* CUSTOM LOADER */

.hitloadercontainer {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
    position: sticky;
    top: 0;
    margin-top: -100vh;
    z-index: 1000000;
    bottom: 0
}

.hitloader {
    --animation-duration: 5000ms;
    position: relative;
    width: 125px;
    height: 125px;
    /* transform: rotate(45deg); */
}

.hitloader .scwrap {
    height: 50px;
    width: 50px;
    position: absolute;
    box-sizing: border-box;
    padding: 3px;
}

.hitloader .scwrap .spinner-item {
    width: 100%;
    height: 100%;
}

.hitloader .scwrap:nth-child(1) .spinner-item {
    background-color: #177f90;
}

.hitloader .scwrap:nth-child(2) .spinner-item {
    background-color: #a2ccd3;
}

.hitloader .scwrap:nth-child(3) .spinner-item {
    background-color: #4599a6;
}

.hitloader .scwrap:nth-child(1) {
    top: 0;
    left: 0;
    animation: spinner3A var(--animation-duration) linear infinite;
}

@keyframes spinner3A {

    0%,
    8.33%,
    16.66%,
    100% {
        transform: translate(0%, 0%);
    }

    24.99%,
    33.32%,
    41.65% {
        transform: translate(100%, 0%);
    }

    49.98%,
    58.31%,
    66.64% {
        transform: translate(100%, 100%);
    }

    74.97%,
    83.30%,
    91.63% {
        transform: translate(0%, 100%);
    }
}

.hitloader .scwrap:nth-child(2) {
    top: 0;
    left: 50px;
    animation: spinner3B var(--animation-duration) linear infinite;
}

@keyframes spinner3B {

    0%,
    8.33%,
    91.63%,
    100% {
        transform: translate(0%, 0%);
    }

    16.66%,
    24.99%,
    33.32% {
        transform: translate(0%, 100%);
    }

    41.65%,
    49.98%,
    58.31% {
        transform: translate(-100%, 100%);
    }

    66.64%,
    74.97%,
    83.30% {
        transform: translate(-100%, 0%);
    }
}

.hitloader .scwrap:nth-child(3) {
    top: 50px;
    left: 50px;
    animation: spinner3C var(--animation-duration) linear infinite;
}

@keyframes spinner3C {

    0%,
    83.30%,
    91.63%,
    100% {
        transform: translate(0, 0);
    }

    8.33%,
    16.66%,
    24.99% {
        transform: translate(-100%, 0);
    }

    33.32%,
    41.65%,
    49.98% {
        transform: translate(-100%, -100%);
    }

    58.31%,
    66.64%,
    74.97% {
        transform: translate(0, -100%);
    }
}

/* TOUCHSCREEN BROWSER NAV */

.touchbrowsernav {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    width: 260px;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 300px;
}

.bnavbutt {
    width: 25%;
    padding: 0px 10px;
    cursor: pointer;

}

.bnavbutt img {
    width: 45px;
    height: 45px;
}

#TSTop.bnavbutt img {
    transform: rotate(90deg);
}

#TSForward.bnavbutt img {
    transform: rotate(180deg);
}


/* KeYBOARD styles */

.hg-theme-default {
    display: none;
    position: fixed;
    z-index: 10000000000000000000000000;
    bottom: 10px;
    left: 50%;
    width: 800px !important;
    transform: translateX(-50%);
}

.show-keyboard {
    display: initial;
}

html {
    scroll-behavior: smooth;
}
