.marketing-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    z-index: 99;
    padding: 30px 0;
    background: rgba(26, 26, 26, 0.50);
    transition: 0.22s ease-out;
    opacity: 0;
    visibility: hidden;
}

.content-marketing-popup {
    position: relative;
}

.content-marketing-popup .close-modal {
    position: absolute;
    width: 36px;
    height: 36px;
    transform: rotate(90deg);
    right: 16px;
    top: 16px;
    z-index: 100;
    transition: 0.22s ease-out;
    opacity: 0;
    visibility: hidden;
}

.content-marketing-popup .close-modal:hover {
    cursor: pointer;
    transform: rotate(180deg);
}

.marketing-popup.active-popup,
.marketing-popup.active-popup .close-modal {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .close-modal,
    .close-modal svg {
        width: 25px;
        height: 25px;
    }

    .marketing-popup.active-popup .close-modal {
        right: 8px;
        top: 8px;
    }
}