

#loading_fullscreen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .94);
    z-index: 20000;
}

#ht_logo_secondary {
    width: 140px;
    position: absolute;
    left: calc(50% - 70px);
    top: calc(50% - 100px);
    border-radius: 50%;
    background: rgba(255, 255, 255, .66);
    box-shadow: 0 0 100px 100px rgba(255, 255, 255, .66);
}
#ht_logo_secondary:after {
    content: 'Loading';
    display: block;
    position: absolute;
    bottom: -40px;
    left: calc(50% - 50px);
    width: 100px;

    margin: 0;
    padding: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .1em;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    -webkit-font-smoothing: subpixel-antialiased;

    color: rgba(0, 0, 0, .2);
}
#ht_logo_secondary:before {
    content: '';
    display: block;
    height: 0;
    padding-bottom: 100%;
}
#ht_l_s_leaf1, #ht_l_s_leaf2, #ht_l_s_leaf3, #ht_l_s_leaf4, #ht_l_s_leaf5, #ht_l_s_leaf6, #ht_l_s_leaf7, #ht_l_s_leaf8 {
    width: 20%;
    height: 20%;
    display: block;
    position: absolute;
    transform-origin: right bottom;
}

#ht_l_s_leaf1 {
    transform: rotate(0deg);
    right: 52.5%;
    bottom: 52.5%;
    width: 20%; 
    height: 20%;
    animation: ht_logo_secondary_one infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
@keyframes ht_logo_secondary_one {
    0% { transform: scale(0); opacity: 0; }
    6% { transform: scale(1); opacity: 1; }
    79% { transform: scale(1); opacity: 1; }
    84% { transform: scale(0); opacity: 0; }
    100% { transform: scale(0); opacity: 0; }
}
#ht_l_s_leaf2 {
    transform: rotate(90deg);
    left: 32.5%;
    bottom: 52.5%;
    width: 20%; 
    height: 20%;
    animation: ht_logo_secondary_two infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
@keyframes ht_logo_secondary_two {
    0% { transform: scale(0) rotate(90deg); opacity: 0; }
    6% { transform: scale(0) rotate(90deg); opacity: 0; }
    12% { transform: scale(1) rotate(90deg); opacity: 1; }
    81% { transform: scale(1) rotate(90deg); opacity: 1; }
    86% { transform: scale(0) rotate(90deg); opacity: 0; }
    100% { transform: scale(0) rotate(90deg); opacity: 0; }
}
#ht_l_s_leaf3 {
    transform: rotate(270deg);
    right: 52.5%;
    top: 32.5%;
    width: 20%; 
    height: 20%;
    animation: ht_logo_secondary_three infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
@keyframes ht_logo_secondary_three {
    0% { transform: scale(0) rotate(270deg); opacity: 0; }
    11% { transform: scale(0) rotate(270deg); opacity: 0; }
    17% { transform: scale(1) rotate(270deg); opacity: 1; }
    85% { transform: scale(1) rotate(270deg); opacity: 1; }
    90% { transform: scale(0) rotate(270deg); opacity: 0; }
    100% { transform: scale(0) rotate(270deg); opacity: 0; }
}
#ht_l_s_leaf4 {
    transform: rotate(180deg);
    left: 32.5%;
    top: 32.5%;
    width: 20%; 
    height: 20%;
    animation: ht_logo_secondary_four infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
@keyframes ht_logo_secondary_four {
    0% { transform: scale(0) rotate(180deg); opacity: 0; }
    15% { transform: scale(0) rotate(180deg); opacity: 0; }
    21% { transform: scale(1) rotate(180deg); opacity: 1; }
    83% { transform: scale(1) rotate(180deg); opacity: 1; }
    88% { transform: scale(0) rotate(180deg); opacity: 0; }
    100% { transform: scale(0) rotate(180deg); opacity: 0; }
}
#ht_l_s_leaf5 img, #ht_l_s_leaf6 img, #ht_l_s_leaf7 img, #ht_l_s_leaf8 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    max-width: none;
}
#ht_l_s_leaf5 {
    transform: scale(1) rotate(45deg);
    left: 30%;
    top: 8.2%;
    animation: ht_logo_secondary_five infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
#ht_l_s_leaf6 {
    transform: scale(1) rotate(135deg);
    right: 28.2%;
    top: 30%;
    animation: ht_logo_secondary_six infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
#ht_l_s_leaf7 {
    transform: scale(1) rotate(225deg);
    left: 30%;
    bottom: 28.2%;
    animation: ht_logo_secondary_seven infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
#ht_l_s_leaf8 {
    transform: scale(1) rotate(315deg);
    left: 8.2%;
    top: 30%;
    animation: ht_logo_secondary_eight infinite;
    animation-timing-function: ease-in;
    animation-duration: 3s;
}
@keyframes ht_logo_secondary_five {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    19% { transform: scale(0) rotate(45deg); opacity: 0; }
    25% { transform: scale(1) rotate(45deg); opacity: 1; }
    76% { transform: scale(1) rotate(45deg); opacity: 1; }
    80% { transform: scale(0) rotate(45deg); opacity: 0; }
    100% { transform: scale(0) rotate(45deg); opacity: 0; }
}
@keyframes ht_logo_secondary_six {
    0% { transform: scale(0) rotate(135deg); opacity: 0; }
    19% { transform: scale(0) rotate(135deg); opacity: 0; }
    25% { transform: scale(1) rotate(135deg); opacity: 1; }
    76% { transform: scale(1) rotate(135deg); opacity: 1; }
    80% { transform: scale(0) rotate(135deg); opacity: 0; }
    100% { transform: scale(0) rotate(135deg); opacity: 0; }
}
@keyframes ht_logo_secondary_seven {
    0% { transform: scale(0) rotate(225deg); opacity: 0; }
    19% { transform: scale(0) rotate(225deg); opacity: 0; }
    25% { transform: scale(1) rotate(225deg); opacity: 1; }
    76% { transform: scale(1) rotate(225deg); opacity: 1; }
    80% { transform: scale(0) rotate(225deg); opacity: 0; }
    100% { transform: scale(0) rotate(225deg); opacity: 0; }
}
@keyframes ht_logo_secondary_eight {
    0% { transform: scale(0) rotate(315deg); opacity: 0; }
    19% { transform: scale(0) rotate(315deg); opacity: 0; }
    25% { transform: scale(1) rotate(315deg); opacity: 1; }
    76% { transform: scale(1) rotate(315deg); opacity: 1; }
    80% { transform: scale(0) rotate(315deg); opacity: 0; }
    100% { transform: scale(0) rotate(315deg); opacity: 0; }
}


@media (min-width: 1000px) {

    #loading_fullscreen {
        width: calc(100vw - 250px);
        height: calc(100vh - 80px);
        left: 250px;
        top: 80px;
    }

}





/*
#ht_logo_secondary {
    width: 40%;
    left: 30%;
    top: 5%;
    box-shadow: none;
}
#ht_l_s_leaf1, #ht_l_s_leaf2, #ht_l_s_leaf3, #ht_l_s_leaf4, #ht_l_s_leaf5, #ht_l_s_leaf6, #ht_l_s_leaf7, #ht_l_s_leaf8 {
    animation: none;
    opacity: .5;
}*/




























