/* modal popup css */
.reward-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 640px;
    padding: 16px 16px 48px;
    overflow: hidden;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10000;
}

/* Video background */
.reward-popup video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.reward-dismiss-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    color: #C6AA76;
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    font-family: "AvenirNextLTPro-Bold";
}

.reward-popup .button-div {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.reward-dismiss-btn .dismiss-text {
    color: #C6AA76;
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    font-family: "AvenirNextLTPro-Bold";
    padding: 0;
    margin: 0;
}

.reward-dismiss-btn .dismiss-icon {
    margin-top: 5px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.dismiss-icon svg {
    pointer-events: none;
}

.dismiss-text {
    margin-right: 4px;
}

.reward-content-section {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 80px 0px 0px 0px;
    z-index: 1;
}

.reward-content-section img {
    max-width: 252px;
    height: auto;
}

.reward-popup-small-title {
    color: #ffffff;
    font-family: "AvenirNextLTPro-BoldCn","AvenirNextCondenced";
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: -0.56px;
    text-transform: uppercase;
    margin: 0;
    padding-top: 32px;
    padding-bottom: 4px;
}

.reward-popup-italic-title {
    color: #ffffff;
    font-family: "AvenirNextLT-Pro-Regular";
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 48px;
}

.reward-sign-up-btn {
    display: inline-block;
    padding: 13px 32px;
    background: #DF2F08;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.28px;
    font-size: 16px;
    font-family: "AvenirNextLT-Pro-Regular";
}

.reward-popup.reward-display {
    display: block;
}

.reward-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
}

.reward-popup.reward-display {
    display: block;
}

.reward-backdrop.reward-display {
    display: block;
}

@media only screen and (max-width: 768px) {
    .reward-popup {
        width: 90%;
    }

    .reward-popup {
        padding: 16px 16px 72px;
    }

    .reward-content-section {
        padding: 56px 0px 0px 0px;
    }

    .reward-popup-italic-title {
        margin: 0 0 40px;
    }

    .reward-popup-small-title {
        padding-top: 40px;
        padding-bottom: 8px;
    }

    .reward-content-section img {
        max-width: 230px;
    }
}

@media only screen and (max-width: 400px) {
    .reward-popup {
        padding: 16px 16px 40px;
    }

    .reward-content-section {
        padding: 30px 0px 0px 0px;
    }

    .reward-popup-small-title {
        padding-top: 30px;
    }

    .reward-popup-italic-title {
        margin: 0 0 30px;
    }

    .reward-popup-small-title {
        font-size: 50px;
    }
}
