#banners-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: none;
}

#banners-overlay .bo-content {
    position: relative;
    max-width: calc(100% - 40px);
    margin: 20px auto;
}

#banners-overlay .bo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

#banners-overlay .bo-inner {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

#banners-overlay .bo-item {
    max-width: 500px;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banners-overlay .bo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    #banners-overlay .bo-inner {
        flex-direction: column;
    }
}