.banner--fix {
    left: 0;
    right: 0;
    width: 100%;
    background: #0b3d2e;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.banner--relative {
    width: 100%;
    background: #0b3d2e;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.banner--bottom {
    bottom: 0;
}

.banner--bottom--fix {
    position: fixed;
    z-index: 998;
    top: unset;
}

.banner-close {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.banner-close--top {
    top: 10px;
}

.exit-popup {
    display: none;
}

.exit-popup.active {
    display: block;
}

.exit-popup__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
}

.exit-popup__content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 10px;
    z-index: 9999;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.exit-popup.active .exit-popup__content {
    transform: translate(-50%, -50%) scale(1);
}

.exit-popup__content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.exit-popup__close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: black;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 14px;
}
