.pop-up-cashback {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    display: flex;
    justify-content: center;
    display: none;
    height: 100%;
    background-color: #fff;
    border-radius: 6px;
}

.pop-up-cashback.pop-up-cashback---active {
    display: flex;
}

.pop-up-cashback__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: auto;
    padding: 20px 16px;
    line-height: 1.3;

}

.pop-up-cashback__content img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
    margin-top: 16px;
}


.pop-up-cashback__container {
    background-color: var(--color--extra-ligth-grey);
    display: flex;
    flex-direction: column;
    border-radius: 6px;
}

.pop-up-cashback__container>header {
    /* background-image: linear-gradient(45deg, #820000 0%, #E60000 100%); */
    color: white;
    padding: 16px 16px 0 16px;
    display: flex;
    justify-content: flex-end;
}


.pop-up-cashback h2 {
    width: 100%;
}

.pop-up-cashback h2 {
    font-size: 18px;
    margin-bottom: 16px;
}


.pop-up-cashback p {
    font-size: 16px;
    margin-bottom: 12px;
}

.pop-up-cashback span {
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 16px;
    margin-right: 3px;
}

.pop-up-cashback__content>a {
    text-decoration: underline;
    text-underline-offset: 3px;
    display: block;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
}




@media screen and (min-width:768px) {
    .pop-up-cashback {
        height: auto;
        top: 16vh;
        left: 5%;
        max-width: 90%;
        align-items: center;
        justify-content: center;
    }

    .pop-up-cashback__container>header {
        padding: 20px 42px 0 42px;
    }

    .pop-up-cashback__content {
        padding: 20px 16px 0 16px;
    }

    .pop-up-cashback__content img {
        width: 60%;
        margin-inline: auto;
    }
}

@media screen and (min-width:1024px) {
    .pop-up-cashback {
        left: calc((100vw - 830px) / 2);
        width: 830px;
    }

    .pop-up-cashback h2 {
        font-size: 20px;
    }

    .pop-up-cashback header h2 {
        font-size: 20px;
    }

    .pop-up-cashback p {
        font-size: 18px;
    }

    .pop-up-cashback a,
    .pop-up-cashback span {
        font-size: 18px;
    }

    .pop-up-cashback {
        top: 6vh;
    }
}

@media screen and (min-width:1280px) {
    .pop-up-cashback {
        left: calc((100vw - 700px) / 2);
        width: 700px;
    }
}