.acrylic-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow: hidden;
}

.acrylic-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.acrylic-modal__container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 75vh;
    display: flex;
    flex-direction: column;
}

.acrylic-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.acrylic-modal__slider {
    position: relative;
    width: 100%;
    height: 80%;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
}

.acrylic-modal__track {
    display: flex;
    height: 100%;
}

.acrylic-modal__slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.acrylic-modal__images {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 100%;
    justify-content: center;
}

.acrylic-modal__images img {
    max-width: 50%;
    max-height: 55vh;
    object-fit: contain;
    height: auto;
}

.acrylic-modal__title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: -20px;
}

.acrylic-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.acrylic-modal__nav--prev,
.acrylic-modal__nav--next {

    mix-blend-mode: difference;
    width: 30px;
    height: 50px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    margin-top: -25px;
    z-index: 101;
    mix-blend-mode: difference;
}

.acrylic-modal__nav--prev {
    left: 0;
    background-image: url(../../img/common/slide-arrow2-1.png);
}

.acrylic-modal__nav--next {
    right: 0;
    background-image: url(../../img/common/slide-arrow2-2.png?);
}



/* Responsive */
@media (max-width: 768px) {
    .acrylic-modal__container {
        width: 95%;
        height: 95vh;
    }
    
    .acrylic-modal__slider {
        height: 100%;
    }
    
    .acrylic-modal__images {
        flex-direction: column;
        gap: 15px;
        width: 73%;
    }
    
    .acrylic-modal__images img {
        max-width: 100%;
        max-height: 35vh;
    }

    
    .acrylic-modal__title {
        font-size: 16px;
    }
}