* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #575757;
    background-color: #ffffff;
    margin: 0;
    position: relative;
    width: 100%;
}

body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header h1 {
    font-size: 16px;
    color: #ffffff;
    margin: 0 10px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 40px;
}

.wrapper {
    width: 92%;
    max-width: 940px;
    margin: 0 auto;
}

.hamburger-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    fill: #fff;
}

.hamburger-menu:focus {
    outline: none;
}

#blur-wrapper.active {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

#sms-modal-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
}

#sms-modal {
    border: #eeeeee 1px solid;
    border-radius: 5px;
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 30px 15px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#sms-modal h2 {
    font-size: 25px;
    margin: 0 0 30px;
    color: #222222;
    font-weight: 600;
}

#sms-modal p {
    font-size: 16px;
    font-weight: 300;
    margin: 20px 0 10px;
    color: #555555;
}

#sms-modal ul {
    display: inline-block;
    text-align: left;
    font-size: 16px;
}

#sms-modal .button {
    display: inline-block;
    background: #03b441;
    color: #ffffff;
    font-size: 17px;
    border-radius: 5px;
    padding: 16px 42px;
    cursor: pointer;
    margin: 20px 0;
}

#sms-modal a.button {
    color: #ffffff;
    text-decoration: none;
}

#sms-modal a.refuse {
    color: #aaaaaa;
}

#modals {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

#modals .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#modals .modal {
    display: none;
    border-radius: 12px;
    background: #ffffff;
    max-width: 500px;
    margin: 10px;
    padding: 30px 15px;
    text-align: center;
    animation-name: bounceIn;
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

#modals .modal h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #222222;
    font-weight: 600;
}

#modals .modal p {
    font-size: 16px;
    font-weight: 300;
    margin: 0 0 10px;
    color: #555555;
}

#modals .modal .button {
    display: inline-block;
    background: #03b441;
    color: #ffffff;
    font-size: 17px;
    border-radius: 5px;
    padding: 16px 42px;
    cursor: pointer;
    margin: 20px 0;
}

#modals .modal .button.pulse {
    animation-name: pulse_animation;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#modals .modal a.button {
    color: #ffffff;
    text-decoration: none;
}

#modal-1 .prize {
    color: #03B441;
    font-weight: bold;
}

#modal-3 img {
    margin-bottom: 15px;
}

#modal-3 p.expire {
    font-size: 14px;
    color: #ff0000;
}

#modal-3 .time-left {
    font-weight: bold;
}

#welcome {
    padding: 20px 0 10px;
    flex: 1 1 50%;
    max-width: 100%;
}

#welcome h2 {
    color: #fff;
    font-size: 56px;
    margin: 0 0 14px;
    line-height: 64px;
}

#welcome p {
    margin: 0 0 10px;
}

#teaser-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    background: #ffff99;
    padding: 13px 10px;
    font-weight: bold;
}

#teaser-bar h2 {
    color: #222222;
    font-size: 16px;
    margin: 0;
}

#teaser-bar .bounce {
    animation-name: bounce;
    animation-duration: 600ms;
    transform-origin: center bottom;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

#spinner {
    width: 100%;
    margin: 0 auto;
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 0 0 64px;
}

#spinner .wrapper {
    width: 100%;
    position: relative;
    padding-top: 100%;
}

#spinner .wheel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform 7s cubic-bezier(0.5, -0.2, 0, 1.01);
    transform: rotate(0);
}

#spinner .wheel.spin {
    transform: rotate(3600deg);
}

.hidden {
    display: none !important;
}

@keyframes spinning {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(3600deg);
    }
}

#spinner .pointer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 27%;
}

#boxes {
    width: 100%;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 30px 0;
}

#boxes .box {
    position: relative;
    transition-duration: .2s;
    cursor: pointer;
}

#boxes .box:not(.opened):hover {
    transform: scale(1.1, 1.1);
}

#boxes .box.shake {
    animation-name: shake;
    animation-duration: 900ms;
    animation-fill-mode: both;
}



@media (min-width: 768px) {
    #modals .modal {
        width: 600px;
        margin: 40px auto;
    }

    #main-content {
        display: flex;
        flex-wrap: nowrap;
        padding: 94px 0
    }

    #welcome {
        flex: 1 1 50%;
        max-width: 50%;
    }

    #spinner {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    #boxes {
        grid-template-columns: 1fr 1fr 1fr;
    }

    #boxes .box.mobile-hide {
        display: none;
    }
}

@media only screen and (max-width: 499px) {
    #modals .modal .wrapper {
        padding: 20px 25px 30px;
    }

    #modals #modal-2 .content {
        width: 100%;
    }

    #welcome h2 {
        font-size: 38px;
        line-height: 46px;
    }

    #spinner {
        padding: 0 32px 32px;
    }
}

@media only screen and (max-width: 399px) {
    #modals .modal .wrapper {
        padding: 15px 20px 25px;
    }

    #comments .wrapper {
        padding: 15px 15px 20px;
    }
}

@media only screen and (max-width: 349px) {
    #comments .wrapper {
        padding: 15px 10px 20px;
    }

    #welcome h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

.sa {
    width: 140px;
    height: 140px;
    padding: 26px;
    background-color: #fff;
    margin: 0 auto;
}

.sa-success {
    border-radius: 50%;
    border: 4px solid #A5DC86;
    box-sizing: content-box;
    height: 80px;
    padding: 0;
    position: relative;
    background-color: #fff;
    width: 80px;
}

.sa-success:after,
.sa-success:before {
    background: #fff;
    content: '';
    height: 120px;
    position: absolute;
    transform: rotate(45deg);
    width: 60px;
}

.sa-success:before {
    border-radius: 40px 0 0 40px;
    width: 26px;
    height: 80px;
    top: -17px;
    left: 5px;
    transform-origin: 60px 60px;
    transform: rotate(-45deg);
}

.sa-success:after {
    border-radius: 0 120px 120px 0;
    left: 30px;
    top: -11px;
    transform-origin: 0 60px;
    transform: rotate(-45deg);
    animation: rotatePlaceholder 4.25s ease-in;
}

.sa-success-placeholder {
    border-radius: 50%;
    border: 4px solid rgba(165, 220, 134, 0.25);
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
}

.sa-success-fix {
    background-color: #fff;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 5px;
    z-index: 1;
}

.sa-success-tip,
.sa-success-long {
    background-color: #A5DC86;
    border-radius: 2px;
    height: 5px;
    position: absolute;
    z-index: 2;
}

.sa-success-tip {
    left: 14px;
    top: 46px;
    transform: rotate(45deg);
    width: 25px;
    animation: animateSuccessTip .75s;
}

.sa-success-long {
    right: 8px;
    top: 38px;
    transform: rotate(-45deg);
    width: 47px;
    animation: animateSuccessLong .75s;
}

@keyframes animateSuccessTip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessLong {

    0%,
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes rotatePlaceholder {

    0%,
    5% {
        transform: rotate(-45deg);
    }

    100%,
    12% {
        transform: rotate(-405deg);
    }
}

@keyframes pulse_animation {

    0%,
    30%,
    60% {
        transform: scale(1);
    }

    15%,
    45% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .050, .855, .060);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    line-height: 1.5;
    color: #222222;
    background: #f9f9f9;
}

header {
    background: #53B231;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0 auto;
}

.logo {
    width: 100%;
    max-width: 184px;
    margin-bottom: 4px;
}

#welcome h2 {
    font-family: 'Roboto', sans-serif
}

#welcome p {
    font-size: 24px;
    color: #fff;
}

#welcome .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
}

#teaser-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    background: #ffff99;
    padding: 20px 10px 24px 10px;
    font-weight: bold;
}

#modals .modal {
    padding: 30px 15px 15px 15px;
}

#modals .modal .button {
    background: #53B231;
    font-weight: bold;
    border-radius: 36px;
    padding: 14px 32px;
    cursor: pointer;
    margin: 20px 0;
    min-width: 260px;
}

#modal-1 .prize {
    color: #111111;
    font-weight: bold;
}

#modal-3 .button {
    width: 92%;
}

#modals .modal p {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px;
    color: #222222;
}

.expire {
    font-size: 14px !important;
    color: #FF0000 !important;
}

#teaser-bar h2 {
    color: #222222;
    font-size: 26px;
    margin: 0;
}

#spinner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

#hero {
    background-color: #53B231
}

#comments .comments .author .info .name span.verified {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important
}

.comment {
    background: #ffffff;
    padding: 13px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-size: 15px;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
}

#comments {
    padding-bottom: 64px;
}

#comments h3 {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding-top: 16px;
    margin-bottom: 0;
}

#comments .comments {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px
}

#comments .comments .author {
    display: flex;
    align-items: center
}

#comments .comments .author .picture {
    display: block;
    width: 48px;
    height: 48px;
    background: url("sprites.jpg") no-repeat;
    border-radius: 50%;
    overflow: hidden
}

#comments .comments .author .picture.p1 {
    background-position: 0 0
}

#comments .comments .author .picture.p2 {
    background-position: -48px 0
}

#comments .comments .author .picture.p3 {
    background-position: -96px 0
}

#comments .comments .author .picture.p4 {
    background-position: -144px 0
}

#comments .comments .author .picture.p5 {
    background-position: 0 -48px
}

#comments .comments .author .picture.p6 {
    background-position: -48px -48px
}

#comments .comments .author .picture.p7 {
    background-position: -96px -48px
}

#comments .comments .author .picture.p8 {
    background-position: -144px -48px
}

#comments .comments .author .picture.p9 {
    background-position: 0 -96px
}

#comments .comments .author .picture.p10 {
    background-position: -48px -96px
}

#comments .comments .author .picture.p11 {
    background-position: -96px -96px
}

#comments .comments .author .picture.p12 {
    background-position: -144px -96px
}

#comments .comments .author .picture.p13 {
    background-position: 0 -144px
}

#comments .comments .author .picture.p14 {
    background-position: -48px -144px
}

#comments .comments .author .picture.p15 {
    background-position: -96px -144px
}

#comments .comments .author .picture.p16 {
    background-position: -144px -144px
}

#comments .comments .author .info {
    padding-left: 15px
}

#comments .comments .author .info .name {
    font-size: 14px;
    font-weight: 700
}

#comments .comments .author .info .name span.verified {
    color: #67ac5c;
    margin-left: 5px;
    padding-left: 18px;
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    position: relative
}

#comments .comments .author .info .name span.verified:before {
    content: '';
    background: url("verified.png");
    width: 15px;
    height: 15px;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -2px
}

#comments .comments .author .info .rating {
    width: 70px
}

#comments .comments .author .info .time {
    font-size: 12px;
    margin-top: 2px;
    white-space: nowrap;
    color: #666
}

#comments .comments .text {
    padding: 13px 0;
    line-height: 1.4
}

#comment-form {
    padding: 25px 0 5px;
    border-top: 1px solid #dfdfdf
}

#comment-form .input {
    color: #555;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px;
    border-radius: 3px;
    width: 100%;
    vertical-align: middle;
    outline: 0 !important;
    margin-bottom: 10px
}

::-webkit-input-placeholder {
    color: #000
}

::-moz-placeholder {
    color: #000
}

:-moz-placeholder {
    color: #000
}

:-ms-input-placeholder {
    color: #000
}

#comment-form .input.name {
    min-height: 40px
}

#comment-form .input.text {
    min-height: 120px
}

#comment-form .photo {
    display: inline-block;
    color: #757575;
    background: #e8e8e9;
    border-radius: 3px;
    padding: 12px 10px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px
}

#comment-form .photo input {
    display: none;
    color: transparent
}

#comment-form .button-area {
    padding-top: 10px;
    text-align: right
}

#comment-form .button-area .button {
    max-width: 250px
}

@media only screen and (max-width:600px) {
    #comments .comments {
        grid-template-columns: 1fr
    }

    #welcome p {
        font-size: 20px;
        color: #fff;
    }
}

a {
    cursor: pointer;
}

canvas {
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
    position: fixed;
    top: 0;
}

html,
body {
    overflow-x: hidden !important;
}