.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    z-index: 500;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
}

/*.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}*/

.blocker.behind {
    background-color: transparent;
}

.modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #f4f4f4;
    /*padding: 30px 50px;*/
}

.cta-modal-container {
    background-color: #f4f4f4;
    min-height: 100%;
}

.cta-modal-form {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cta-modal-form-inner {
    width: 100%;
    padding: 30px;
    max-width: 900px;
}

.cta-modal-form-header {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
}

.cta-modal-form-header h3 {
    font-size: 32px;
    font-family: 'Gotham Rounded Book';
    margin-bottom: 20px;
    line-height: 1;
}

.cta-modal-form-footer {
    color: var(--text-color);
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

.cta-modal-form-footer a {
    text-decoration: underline;
}

.cta-modal-form-footer a:hover {
    opacity: 0.7;
}

.cta-modal-form-inner .form-ac-privacy {
    color: var(--text-color);
}

.cta-modal-img {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 30%;
    color: #fff;
    position: relative;
    display: none;
    background: #000;
}

.item-owl-modal {
    width: 100%;
    height: 100vh;
}

.cta-modal-img .owl-carousel .owl-item .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-modal-img .owl-carousel .owl-item .img-results {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 75%;
    height: auto;
    max-width: 320px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center;
}


.modal a.close-modal {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 20px;
}

.modal a.close-modal svg {
    width: 20px;
    height: 20px;
}

.modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px;
}

.modal-spinner>div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.modal-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.5)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.5);
        -webkit-transform: scaleY(0.5);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}


@media (min-width: 768px) {

    .modal a.close-modal {
        padding: 40px;
    }

    .modal a.close-modal svg {
        width: 30px;
        height: 30px;
    }

    .cta-modal-form {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    }

    .cta-modal-form-inner {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-modal-img {
        display: block;
    }
}

@media (min-width: 992px) {

    .cta-modal-form-header {
        margin-bottom: 45px;
    }

    .cta-modal-form-header h3 {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .cta-modal-form-footer {
        margin-top: 45px;
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .cta-modal-form-header h3 {
        font-size: 60px;
    }

}