
.raffle-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000;
}

.raffle-popup--active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.raffle-popup__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    max-width: 576px;
    width: 100%;
    /*padding: 79px 48px 58px;*/
    position: relative;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    .raffle-popup__wrapper {
        padding: 55px 8px;
        max-width: 100%;
        width: 95%;
    }
}

.raffle-popup__title {
    font-size: 29px;
    color: #000;
    margin-bottom: 35px;
    padding-top: 0;
}

.raffle-popup__title::after {
    top: 56px;
}

@media screen and (max-width: 1500pxpx) {
    .raffle-popup__title::after {
        top: 61px;
    }
}

@media screen and (max-width: 640px) {
    .raffle-popup__title::after {
        top: 46px;
    }
}

.raffle-popup__title::before {
    top: 57px;
}

@media screen and (max-width: 1500pxpx) {
    .raffle-popup__title::before {
        top: 62px;
    }
}

@media screen and (max-width: 640px) {
    .raffle-popup__title::before {
        top: 46px;
    }
}

@media screen and (max-width: 640px) {
    .raffle-popup__title {
        font-size: 20px;
    }
}

.raffle-popup__text {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 22px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

@media screen and (max-width: 640px) {
    .raffle-popup__text br {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .raffle-popup__text {
        font-size: 14px;
    }
}

.raffle-popup__text .raffle-popup__text-link {
    display: block;
}

.raffle-popup__text .raffle-popup__text-link a {
    color: #ff6363;
    cursor: pointer;
    -webkit-transition: 350ms ease-in-out;
    -o-transition: 350ms ease-in-out;
    transition: 350ms ease-in-out;
}

.raffle-popup__text .raffle-popup__text-link a:hover {
    color: #00b5d0;
}

.close-icon-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.close-icon {
    width: 20px;
    height: 1px;
    background-color: #fff;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
    -webkit-transition: 350ms ease-in-out;
    -o-transition: 350ms ease-in-out;
    transition: 350ms ease-in-out;
}

.close-icon::after {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #fff;
    -webkit-transform: rotateZ(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotateZ(-90deg);
    display: block;
    -webkit-transition: 350ms ease-in-out;
    -o-transition: 350ms ease-in-out;
    transition: 350ms ease-in-out;
}

.close-icon-wrapper:hover .close-icon {
    background-color: #00b5d0;
}

.close-icon-wrapper:hover .close-icon::after {
    background-color: #00b5d0;
}
.raffle-popup__wrapper img {
    width: 100%;
}