#hs-banner-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hs-banner-popup[data-position="bottom-left"] {
    align-items: flex-end;
    justify-content: flex-start;
}
#hs-banner-popup[data-position="bottom-right"] {
    align-items: flex-end;
    justify-content: flex-end;
}
.hs-banner-inner {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    position: relative;
    overflow: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    height: auto;
}
.hs-banner-inner {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.3) rgba(0,0,0,0.08);
}
.hs-banner-inner::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.hs-banner-inner::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
}
.hs-banner-inner::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.08);
}
.hs-banner-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.45);
}
.hs-banner-close {
    position: absolute;
    top: 0;
    right: 0.5em;
    background: transparent;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #333;
}
.hs-banner-link {
    margin-top: 1em;
    text-align: right;
}


/* .hs-banner-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 38%);
    gap: 1.25em;
    align-items: stretch;
    position: relative;
} */

.hs-banner-template-split-right-image.hs-banner-inner {
    padding: 0;
    overflow-x: hidden;
    color: white;
}

.hs-banner-template-split-right-image .hs-banner-text {
    margin: 0 auto;
}

.hs-banner-template-split-right-image .hs-banner-close {
    right: 0;
    background: white;
    z-index: 99;
    width: 30px;
    height: 40px;
    line-height: 1;
}

.hs-banner-template-split-right-image .hs-banner-content {
    background-color: var(--hex-secondary);
}

.hs-banner-template-split-right-image .hs-banner-tag {
    position: absolute;
    top: 0;
    display: inline-block;
    padding: 20px 10px 10px 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    background-color: var(--hex-grey-light);
    color: #000;
}

.hs-banner-template-split-right-image .hs-banner-tag:before {
    content: '\2b';
    display: inline-block;
    font: var(--fa-font-regular);
    background-color: #28bdd5;
    margin-right: 2px;
    font-size: 9px;
    padding: 3px;
    vertical-align: text-bottom;
    line-height: 10px;
}

.hs-banner-template-split-right-image .hs-banner-text__content {
    max-width: 80%;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 15px;
}

.hs-banner-template-split-right-image .hs-banner-text__content h1,
.hs-banner-template-split-right-image .hs-banner-text__content .h1,
.hs-banner-template-split-right-image .hs-banner-text__content h2,
.hs-banner-template-split-right-image .hs-banner-text__content .h2,
.hs-banner-template-split-right-image .hs-banner-text__content h3,
.hs-banner-template-split-right-image .hs-banner-text__content .h3,
.hs-banner-template-split-right-image .hs-banner-text__content h4,
.hs-banner-template-split-right-image .hs-banner-text__content .h4
{
    margin: 15px 0;
    line-height: 1;
}

.hs-banner-template-split-right-image .hs-banner-text__content img {
    margin: 5px 0;
}

.hs-banner-template-split-right-image .hs-banner-media {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.hs-banner-template-split-right-image .hs-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 1200px) {
    .hs-banner-template-split-right-image .hs-banner-text__content {
        padding-top: 60px;
    }
}

@media (min-width: 992px) {
    .hs-banner-template-split-right-image .hs-banner-text {
        min-height: 600px;
    }

    .hs-banner-template-split-right-image .hs-banner-media img {
        position: absolute;
    }
}

@media (max-width: 991px) {
    .hs-banner-template-split-right-image .hs-banner-media {
        margin-top: 20px;
    }

    .hs-banner-template-split-right-image .hs-banner-media img {
        max-height: 600px;
    }
}