:root {
    --brand-blue: #0200B9;
    --content-max-width: 1200px;
}

.slider-alignment-box {
    max-width: var(--content-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    transform: translateZ(999px);
}

.slider-fixed-frame {
    position: relative;
    height: 150px;
    width: 100%;
}

.mainSlider {
    width: 100%;
    height: 150px !important;
    border-radius: 12px;
    outline: none;
}

    .mainSlider .swiper-slide img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 12px;
        display: block;
        cursor: pointer;
    }

.main-nav {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px;
    height: 44px;
    z-index: 100;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
    margin: 0 !important;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: none;
    transition: transform 0.2s ease, opacity 0.2s;
}

    .main-nav:hover {
        transform: translateY(-50%) scale(1.1);
        opacity: 0.7;
    }

.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}

.main-prev {
    left: -60px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230200B9'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.main-next {
    right: -60px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230200B9'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    outline: none;
}

    .lightbox-overlay.active {
        display: flex;
    }

.lightboxSlider {
    width: 100%;
    height: 100%;
}

    .lightboxSlider .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .lightboxSlider .swiper-slide img {
            width: 80vw;
            height: 80vh;
            object-fit: contain;
            pointer-events: none;
            user-select: none;
        }

.lb-nav {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px;
    height: 60px;
    z-index: 10001;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
}

.lb-prev {
    left: 20px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.lb-next {
    right: 20px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    z-index: 10002;
}

@@media (max-width: 1350px) {
    .main-prev {
        left: 10px;
    }

    .main-next {
        right: 10px;
    }

    .main-nav {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        width: 40px;
        height: 40px;
        background-size: 24px;
    }

    .slider-alignment-box {
        padding: 0 10px;
    }

    .lightboxSlider .swiper-slide img {
        width: 95vw;
        height: 70vh;
    }
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    background: #0A2642;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #0A2642;
    overflow: hidden;
    position: relative;
}

.lightboxSlider {
    flex: 1;
    width: 100%;
}

    .lightboxSlider img {
        height: 100%;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

#lb-description {
    background: #ffffff;
    color: #0A2642;
    padding: 25px;
    width: 100%;
    flex-shrink: 0;
    font-size: 1.4rem;
    min-height: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: left;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(0);
}

    #lb-description p {
        font-size: 1.4rem;
        margin: 5px 0;
        width: 100%;
        text-align: left;
        line-height: 2rem;
    }

    #lb-description.is-switching {
        opacity: 0;
        transform: translateX(-15px);
    }

.lb-nav {
    color: #fff !important;
}

.lightboxSlider {
    width: 100%;
    flex-grow: 1;
    min-height: 0;
    position: relative;
}
