:root {
    --main-color: #007dd1;
    --main-color-hover: #0274c1;
    --font-family-key: 'Montserrat';
}

body {
    font-family: var(--font-family-key);
    font-size: 14px;
    font-weight: 400;
    color: #222;
    top: 0px !important;
    position: relative;
    background: #fff;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: none repeat scroll 0 0 #fff;
}

.sk-spinner-three-bounce.sk-spinner {
    width: 70px;
    text-align: center;
}

.sk-spinner-three-bounce div {
    width: 18px;
    height: 18px;
    background-color: #7AD03A;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
    animation: sk-threeBounceDelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.sk-spinner-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.sk-spinner-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-threeBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-threeBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/* start countdown */

.wrap-countdown {
    /* background: linear-gradient(90deg, #FF512F 10%, #ee6b25 90%); */
    background: linear-gradient(90deg, var(--main-color) 10%, var(--main-color-hover) 90%);
    color: #ffffff;
    text-align: center;
    height: 100vh;
    /* padding: 120px 0 100px 0; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap-countdown h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 0 0 0 0;
}

.wrap-countdown h2 {
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 20px;
    margin: 15px 0 10px;
}

.wrap-countdown small {
    font-size: 60px;
    color: #fff;
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown div {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.5em;
    min-width: 80px;
}