@font-face {
    font-family: myfont;
    src: url("../../fonts/MADE Soulmaze PERSONAL USE.otf");
}

html {
    overflow: hidden !important;
    scroll-behavior: smooth;
    height: 100vh;
}

html.no-scroll {
    overflow: hidden;
}

body {
    overflow: hidden !important;
    scroll-behavior: smooth;
    color: #fff !important;
    height: 100vh;
    cursor: url(../../images/aim.png);
    background-color: red;
    /*  font-family: myfont;*/
}

body a {
    text-decoration: none;
}

body button:focus {
    outline: none;
}

body input:focus {
    outline: none;
}

body select:focus {
    outline: none;
}

body textarea:focus {
    outline: none;
}

body input::-webkit-outer-spin-button,
body input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body input[type="number"] {
    -moz-appearance: textfield;
}

#scroll-btn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 15px;
    z-index: 3;
    font-size: 18px;
    outline: none;
    background-color: #3a3983;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 3px solid #3a3983;
    border-radius: 5px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#scroll-btn.active {
    -webkit-animation: fade 0.5s ease alternate;
    animation: fade 0.5s ease alternate;
}

@-webkit-keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#loader-load {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background-color: #c4c6c7;
}

#loader-load .loader-circle-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#loader-load .loader-circle-holder div {
    margin-right: 10px;
}

#loader-load .loader-circle-holder div:last-child {
    margin-right: 0;
}

#loader-load .loader-circle-holder div:first-child {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

#loader-load .loader-circle-holder div:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

#loader-load .loader-circle-holder div:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

#loader-load .loader-circle-holder div:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#loader-load .loader-circle-holder div:last-child {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

#loader-load .loader-circle-holder .circle {
    width: 15px;
    height: 15px;
    border-radius: 100px;
    background-color: #fff;
    -webkit-animation: test 1.5s infinite;
    animation: test 1.5s infinite;
}

@keyframes test {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes test {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

#loader-load .loader-logo img {
    height: 80px;
}

#loader-load .loader-logo {
    position: absolute;
    top: 42%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 0;
    height: 5px;
    z-index: 2;
}

.game-wrapper {
    /*  background: -webkit-linear-gradient(top, #a8ccf0 0%, white 100%);*/
    /*background: #61003b; */
    background: url("../../images/bg.jpg") #61003b;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.top-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px 20px;
}

.top-home-link {
    font-size: 30px;
    width: 33.33%;
    text-align: left;
    position: relative;
    z-index: 1100;
}

.top-home-link a {
    color: #fff;
}

.top-home-link a:hover {
    color: #fff;
}

.top-logo {
    width: 33.33%;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 999;
    /* margin-top: -60px; */
}

.top-logo img {
    height: 200px;
}

.top-gameplay {
    width: 33.33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.countdown-wrapper {
    text-align: center;
    font-size: 35px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.countdown-wrapper span {
    margin-right: 10px;
}

.score-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 35px;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.score-holder span {
    margin-right: 10px;
}

.snowman-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 130px;
    text-align: center;
}

.snowman-img img {
    width: 60%;
}

.swal-modal {
    cursor: auto;
}

.swal-overlay--show-modal {
    cursor: auto;
}

.welcome-modal {
    cursor: auto;
}

.welcome-modal .modal-content {
    background-color: transparent;
}

.welcome-modal .modal-body {
    /*  background-color: #f1dfd1;*/
    /*  background-image: linear-gradient(315deg, #f1dfd1 0%, #f6f0ea 74%);*/
    /*  border-radius: 5px;*/
}

.welcome-modal .welcome-modal-title {
    font-size: 30px;
    text-align: center;
    background-color: #fff;
    text-transform: uppercase;
    /*  background-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: anim ease-in-out 2s infinite;
    font-family: myfont;
}

@keyframes anim {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.welcome-modal .welcome-modal-name-input {
    text-align: center;
    margin: 10px 0;
}

.welcome-modal .welcome-modal-name-input input {
    background-color: transparent;
    border-radius: 3px;
    padding: 7px 10px;
    color: #000;
    border: 1px solid #000;
    width: 70%;
}

.welcome-modal .welcome-modal-btn {
    text-align: center;
}

.welcome-modal .welcome-modal-btn button {
    width: 150px;
    font-size: 20px;
    border: none;
}

.welcome-modal .start-btn {
    position: relative;
    top: 0;
    cursor: pointer;
    text-decoration: none !important;
    outline: none !important;
    font-family: "Carter One", sans-serif;
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    background: repeating-linear-gradient(45deg, #54d440, #54d440 5px, #52cc3f 5px, #52cc3f 10px);
    border: none;
    margin: 15px 15px 30px;
    -webkit-box-shadow: 0 6px 0 #348628, 0 8px 1px 1px rgba(0, 0, 0, 0.3), 0 10px 0 5px #2a6d20, 0 12px 0 5px #39822e, 0 15px 0 5px #1d4c16, 0 15px 1px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 0 #348628, 0 8px 1px 1px rgba(0, 0, 0, 0.3), 0 10px 0 5px #2a6d20, 0 12px 0 5px #39822e, 0 15px 0 5px #1d4c16, 0 15px 1px 6px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid rgba(40, 117, 29, 0.5);
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 15px 10px;
    text-shadow: 2px 2px 1px #348628, -2px 2px 1px #348628, 2px -2px 1px #348628, -2px -2px 1px #348628, 0px 2px 1px #348628, 0px -2px 1px #348628, 0px 4px 1px #1d4c16, 2px 4px 1px #1d4c16, -2px 4px 1px #1d4c16;
}

.welcome-modal .start-btn:hover {
    top: 2px;
    -webkit-box-shadow: 0 4px 0 #348628, 0 6px 1px 1px rgba(0, 0, 0, 0.3), 0 8px 0 5px #2a6d20, 0 10px 0 5px #39822e, 0 13px 0 5px #1d4c16, 0 13px 1px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 0 #348628, 0 6px 1px 1px rgba(0, 0, 0, 0.3), 0 8px 0 5px #2a6d20, 0 10px 0 5px #39822e, 0 13px 0 5px #1d4c16, 0 13px 1px 6px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 576px) {
    .snowman-img img {
        width: 40%;
    }
    .countdown-wrapper {
        font-size: 30px;
    }
    .score-holder {
        font-size: 30px;
    }
    .welcome-modal .welcome-modal-title {
        font-size: 25px;
    }
    .top-wrapper {
        padding: 5px 10px;
    }
    .top-home-link {
        font-size: 25px;
    }
    .top-logo img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .countdown-wrapper {
        font-size: 20px;
    }
    .score-holder {
        font-size: 20px;
    }
}


/*# sourceMappingURL=index.css.map */