.rca-pop-up {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: none;
}

    .rca-pop-up .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background-color: white;
        height: fit-content;
        width: 80%;
        max-width: 865px;
        margin: 24px;
        border-radius: 20px;
        overflow: hidden;
        max-height: 85vh;
        overflow-y: auto;
        position: relative;
        filter: drop-shadow(0px 0px 50px rgba(219, 224, 227, 0.6));
    }

    .rca-pop-up .content-wrapper .close-button {
            position: absolute;
            right: 10px;
            top: 10px;
            cursor: pointer;
            background: none;
        }

    .rca-pop-up .left-side {
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .rca-pop-up .left-side img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

    .rca-pop-up .right-side {
        padding: 43px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: 100%;
    }

    .rca-pop-up .right-side .header {
            color: #000;

            font-size: clamp(24px, 5vw, 32px);
            font-weight: 700;
            line-height: 1.2;
            text-align: left;
        }

    .rca-pop-up .right-side .header span {
                color: #f00;

                font-size: clamp(24px, 5vw, 32px);
                font-weight: 700;
            }

    .rca-pop-up .right-side .subheader {
            color: #000;

            font-size: 16px;
            font-weight: 400;
        }

    .rca-pop-up .right-side .subheader .text-wrapper {
                margin-top: 16px;
            }

    .rca-pop-up .right-side .subheader .text-wrapper ol li {
                    list-style-type: decimal;
                    margin-left: 20px;
                }

    .rca-pop-up .right-side .subheader .bonus {
                color: #000;

                font-size: 16px;
                font-weight: 700;
                margin-top: 16px;
                margin-bottom: 16px;
            }

    .rca-pop-up .right-side .subheader .form-complete {
                margin-top: 16px;
                color: #f00;
            }

    .rca-pop-up .right-side form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

    .rca-pop-up .right-side form input:not([type="checkbox"]) {
                border-radius: 10px;
                border: 1px solid #dbe0e3;
                background: #fff;
                height: 56px;
                padding: 10px 20px;
                align-items: center;
                display: flex;
                width: 100%;
            }

    .rca-pop-up .right-side form .send-message {
                border-radius: 13px;
                background: var(
                    --Gradient,
                    linear-gradient(101deg, #f00 14.39%, #ff4e10 65.56%)
                );
                display: flex;
                width: 100%;
                height: 56px;
                padding: 10px;
                justify-content: center;
                align-items: center;
                gap: 10px;
                color: #fff;

                font-size: 16px;
                font-weight: 700;
                border-color: transparent;
            }

    .rca-pop-up .right-side form .cookies {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                gap: 16px;
            }

    .rca-pop-up .right-side form .gdpr-container {
                display: none;
            }

.voucher-error {
    display: flex;
    align-items: center;
    color: #D00034;
    font-size: 14px;
    font-weight: 400;
    gap: 8px;
    margin-top: 8px;
}

.voucher-error img {
    width: 25px;
    height: 24px;
    flex-shrink: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rca-pop-up .content-wrapper {
    animation: slideUp 0.4s ease-out forwards;
    transform: translateY(100%);
}
@media (max-width: 768px) {
        .rca-pop-up .content-wrapper {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
            width: 90%;
        }

            .rca-pop-up .content-wrapper .close-button svg path {
                stroke: white;
            }

        .rca-pop-up .right-side {
            padding: 24px 16px;
        }

        .rca-pop-up .left-side {
            height: 250px;
        }

            .rca-pop-up .left-side img {
                object-position: bottom;
            }
}
