#modal-wrap {
    background: transparent;
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    opacity: 0;
}

#modal-slider-wrap {
    padding-top: 80px;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.8);
    height: calc(100vh - 80px);
}

#modal-close-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 999;
}

#modal-close-wrap {
    cursor: pointer;
    z-index: 99999999;
    display: flex;
    align-items: center;
    width: 3vw;

    position: relative;
    left: calc(50vw + 16vw - 6vw - 16px);
    top: 8px;
}

.slick-slide {
    outline: none;
    cursor: pointer;
}

#modal-slider-wrap .slider {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0 0 12px;
}

#modal-slider-wrap .slider .slick-list {
    width: 33.3vw;
    z-index: 99999;
}

#modal-slider-wrap .slider .slick-track {
    display: flex;
    align-items: center;
}

#modal-slider-wrap .slider .slick-list img {
    max-width: 575px;
    width: 100%;
    object-fit: cover;
}

#modal-slider-wrap .slick-arrow {
    cursor: pointer;
    z-index: 99999;
    /* height: 100%; */
    width: auto;
    object-fit: contain;
    max-width: 50px;
}

#modal-slider-wrap .thumb {
    background: white;
    padding: 24px 0 24px;
}

/*#modal-slider-wrap .thumb .slick-list img {
    max-width: 575px;
    width: 100%;
    object-fit: cover;
}*/

@media screen and (max-width:1100px) {
    #modal-slider-wrap {
        padding-top: 500px;
    }

    #modal-close-wrap {
        width: 10vw;
        position: relative;
        left: calc(80vw + 16vw - 20vw - 16px);
        top: 8px;

    }

    #modal-slider-wrap .slider .slick-list {
        width: 80vw;
    }

    #modal-slider-wrap .slider .slick-list img {
        max-width: none;
    }

    #modal-slider-wrap .slick-arrow {
        max-width: 80px;
    }
}