body {
    font-family: 'Inter', sans-serif !important;
    color: #000;
}


a {
    text-decoration: none;
}

button {
    border: 0;
    background: transparent;
}

.col-padding {
    padding: 4px;
}

.header {
    position: relative;
}


.wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: url('bg.png') no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.topLegal {
    font-size: 14px;
    margin: 3px auto;
}

.content--step-1 {
    display: none;
}

.content--step-2 {
    display: block;
}

.main-content p {
    font-size: 13px;
    margin: 0 auto;
}

.main-content h1 {
    font-size: 20px;
}

.main-content h2 {
    font-size: 24px;
    font-weight: normal;
}

.previous-winners {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    text-align: center;
    color: #B0B0B0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF40;
    padding: 8px 16px;
    border-radius: 8px;
    margin: 0 24px;
    border: 1px dotted #868686A6;
}

.emojis {
    grid-area: emojis;
    margin-right: 4px;
}

.counter {
    grid-area: counter;
}

.shares {
    grid-area: shares;
}

.total-comments {
    margin-right: 10px;
    grid-area: total-comments;
}

.comments {
    padding: 8px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 6px;
    grid-template-areas: "avatar comment""avatar details";
}

.comments:not(:first-child) {
    margin-top: 8px;
}

.avatar {
    height: 50px;
    width: 50px;
    grid-area: avatar;
    border-radius: 100%;
}

.author {
    grid-area: author;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 4px;
    color: #000;
}

.comment {
    grid-area: comment;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}


.comment-content {
    background: #EFEFEF;
    border-radius: 100px;
    padding: 15px 8px 0px 30px;
}

.details {
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    font-size: 12px;
    line-height: 17px;
    font-weight: 400;
}

.timestamp {
    grid-area: timestamp;
    padding: 0 8px;
}

.like {
    grid-area: like;
}

.reply {
    grid-area: reply;
}

.like,
.reply {
    font-weight: 700;
    padding: 0 8px;
}

.clr {
    clear: both;
}

.prize-date h4 {
    margin: 20px auto 0;
    font-size: 15px;
}

.intro {
    font-size: 13px;
}

.intro h2 {

    font-size: 20px;
    font-weight: 900;
    line-height: 24.2px;
    text-align: center;
    color: #FFBC25;

}

.intro p {
    margin: 0;
}

.intro--highlight {
    text-align: center;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.intro--highlight p {
    margin: 0;

    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: center;
    color: #fff;
}

.gifts {
    padding: 0 12px;
}

.gift-container {
    text-align: center;
}

.gift {
    background-color: #b4d4b4;
    background-image: url("cadeaugoed.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;

    cursor: pointer;
    transition: all .2s ease;

    height: 45vw;
    margin: 18px 0;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.gift:active,
.gift:focus,
.gift:hover {
    transform: scale(1.1);
}

.gift-left {
    margin-left: 0;
}

.gift-right {
    margin-right: 0;
}

.gift-fail {
    background-color: red;
    background-image: url("cadeauleeg.png");
    cursor: inherit;
}

.gift-fail:active,
.gift-fail:focus,
.gift-fail:hover {
    transform: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.2);
    }
}

.gift-win {
    background-color: green;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-name: pulse;
}

.answer {
    color: #000;
    background: linear-gradient(97.75deg, #FFC015 0%, #FFCE49 51.5%, #FF8400 100%);
    border: 2px solid #FFFFFF;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0px 4px 0px 0px #EC4207;
    cursor: pointer;
    padding: 14px 40px;
    margin-top: 12px;
    text-align: center;
    margin-right: 20px;
    font-family: 'Futura PT Bold';
}

.answer:hover {
    opacity: 0.8;
}

.answer:active {
    position: relative;
    top: 1px;
}

.emoji {
    position: relative;
    width: 22px;
    margin: 0 0 -4px;
}

.question {
    display: none;
}

.question h1 {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 18px;
}

.lastMargin {
    height: 5px;
}

.loader {
    clear: both;
    display: block;
    margin: 10px auto;
}

.check {
    clear: both;
}

.checkItem {
    clear: both;
    display: block;
    overflow: auto;
}

.checkItem img {
    float: left;
    margin-right: 10px;
}

.checkItem h3 {
    float: left;
    margin: 0;
}

.main-content {
    max-width: 500px;
    margin: 0 auto;
}

/********************** OVERLAY ************************/
/*******************************************************/

.centerIt {
    margin: 5% auto;
    text-align: center;
}

.centerIt a {
    margin: 0px auto;
}

.loader {
    margin: 15px auto 0;
}

.overlay-checker {
    display: none;
    position: relative;
}

.overlay-checker {
    font-size: 22px;
    font-weight: bold;
    padding: 20px 0;
}

.overlay-checker-points {
    font-size: 17px;
}

.overlay-checker-points li,
ul {
    list-style: none;
    padding: 0;
}

.overlay-checker-points li img {
    height: 15px;
}

/************************ LEGALS ************************/
/********************************************************/

.nwh {
    display: none;
}

.terms {
    font-size: 12px;
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
}

.footer {
    font-size: 10px;
    text-align: left;
    padding: 12px;
    margin: 0 auto;

    max-width: 500px;
}

@media only screen and (min-width: 560px) {
    .gift {
        height: 150px;
    }
}

.card-img {
    width: 100%;
}

.header {
    color: #333;
}

.author {
    color: #000;
    display: flex;
    justify-content: space-between;
}

.timestamp {
    color: #00000059;
    font-size: 10px;
    font-weight: 500;
    line-height: 17px;
    text-align: left;

}

.brand-color {
    color: #bd2b36;
}




.btnYes {
    color: white;
    background: #00AF00;
}

.btnNo {
    color: white;
    background: #D62A14;
}

.overlay-checker {
    color: #333333;
}

svg path,
svg rect {
    fill: #78be21;
}

.footer {
    color: #999;
}

.gift {
    background-color: rgba(255, 255, 255, 0);
}

h3.win-txt {
    font-family: 'Futura PT Medium';
    font-size: 16px;
    line-height: 22px;
    color: #423E3E;
    font-weight: 400;
    text-align: left;
    padding: 0 15px;
    margin-bottom: 8px;
}

h3.wint-txt {
    font-size: 16px;
    line-height: 22px;
    color: #423E3E;
    font-weight: 400;
    text-align: left;
    padding: 0 15px;
    margin-bottom: 8px;
    border-left: 2px solid #DBDBDB;
    margin-left: 20px;
}

.likereplay {
    display: flex;
}

.question-box {
    padding: 0 0 24px 0;
}

.popunder-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px;
    background: #005DAA;
    align-items: center;
}
.logo_img{
    width: 180px;
}
@media screen and (max-width: 600px) {
    .popunder-wrapper #btn-close-fake {
        width: 2em;
        height: 2em;
        z-index: 1000001;
    }
}

.popunder-wrapper #btn-close-fake {
    background-color: orange;
    font-size: 1em;
    font-weight: bold;
    color: black;
    border: 0.06em solid;
    border-radius: 50%;
    width: 2.3em;
    height: 2.3em;
    border-color: #2d3030;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background-image: none;
    z-index: 1000001;
}

.popunder-wrapper button#btn-close-fake:hover {
    color: green;
    background-color: #ffffff;
    cursor: pointer;
    z-index: 1000001;
}


.likeshare {
    display: flex;
    justify-content: space-around;
    border-top: 0;
    margin-bottom: 20px;
}

.hand {
    margin-right: -35px;
    margin-top: 35px;
    z-index: 999999;
    position: relative;
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.btn-fake {
    z-index: 9999999;
}

.head-txt {
    font-family: 'Futura PT Bold';
    font-size: 12px;
    font-weight: 700;
    line-height: 15.95px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.comments {
    margin-top: 20px;
    text-align: left;
}

.comment {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment img {
    border-radius: 50%;
    margin-right: 10px;
}

.comment-text {
    font-size: 14px;
    color: #333;
}


.comments {
    margin-top: 20px;
}

.comment {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.comment p {
    margin: 5px 0;
}

.comment strong {
    color: #0071ce;
}

.popup {
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #043f70b8;
    z-index: 9999;
    width: 101%;
    height: 100vh;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

h2#popup-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.73px;
    text-align: center;
    color: #E31837;
}

p#popup-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    text-align: center;
    color: #000;
    margin-bottom: 24px;
}

#popup-text span {
    color: #005DAA !important;
}

#second-popup-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: center;
    color: #000;
}

.popup-content {
    text-align: center;
    width: 310px;
    background: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 20px;
}

.popup button {
    margin: 8px;
    padding: 16px 24px;
    background: linear-gradient(247.07deg, #005092 14.87%, #043F70 85.13%);
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0px 4px 32px 0px #F7D27D40;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    text-align: center;
}

button#popup-decline {
    box-shadow: 0px 4px 32px 0px #F7D27D40;
    border: 1px solid #005DAA;
    background: #fff;
    color: #005DAA;
}



.popup button:hover {
    background-color: #005bb5;
}

button#popup-decline:hover {
    background-color: #005DAA;
    color: #fff;
}

.more {

    font-size: 12px;
    font-weight: 500;
    color: #264377;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}

.more img {
    margin-left: 8px;
}


.container {
    text-align: center;
    padding: 20px;
    max-width: 500px;
}

.container h1 {
    font-size: 24px;
    font-weight: 900;
    line-height: 29.05px;
    text-align: center;
    color: #005DAA;
}

.container p {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: center;
    color: #005DAA;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.card {
    width: 150px;
    height: 91px;
    perspective: 1000px;
    cursor: pointer;
}

.inner-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card.flipped .inner-card {
    transform: rotateY(180deg);
}

.card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}

.back {
    transform: rotateY(0deg);
}

.prize-200,
.prize-1000 {
    transform: rotateY(180deg);
}

.hidden {
    display: none;
}