.slider__list-container {
    aspect-ratio: 1 / 1;
    background-color: #f2f2f5;
    border-radius: 15px;
    border: 1px solid var(--design-sys-sec-color__grey--8);
    margin-bottom: 16px;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    user-select: none;
    width: 100%;
}
.slider__img {
    max-width: 83.4%;
    max-height: 84.6%;
    box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 13%);
    -webkit-box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 13%);
    -moz-box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 13%);
}

.slider__img--letter,
.slider__img--flyer  {
    max-height: 82.9%;
    max-width: 64.3%;
}
.slider__img--brochure {
    max-height: 64.3%;
    max-width: 83%;
}
.slider__img--hanger {
    max-height: 83.1%;
    max-width: 32.2%;
}
.slider__img--social-media,
.slider__img--square-video {
    max-height: 83.4%;
    max-height: 83.4%;
    border-radius: 8px;
}
.slider__img--newsletter {
    max-height: 89.1%;
    max-width: 62.7%;
    align-self: flex-end;
}
.slider__img--postcard,
.slider__img--package {
    max-height: 53.9%;
    max-width: 83.1%;
}
.slider__img--business-card {
    max-height: 65.9%;
    max-width: 65.9%;
}
.slider__img--presentation-mobile {
    max-height: 83.4%;
    max-width: 39.8%;
}
.slider__img--horizontal-video {
    max-height: 47%;
    max-width: 83.3%;
}

.slider__item-list {
    display: flex;
    gap: 20px;
    width: 530px;
    overflow: scroll;
}

.slider__control {
    align-items: center;
    background-color: rgba(28, 28, 30, 0.2);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    height: 32px;
    justify-content: center;
    margin: 8px;
    width: 32px;
}
.slider__control img {
    filter: brightness(0%) saturate(100%) invert(99%) sepia(0%)
        hue-rotate(168deg) contrast(102%);
    opacity: 0.7;
    transition: opacity 250ms ease-in-out;
    width: 24px;
}

.slider__control:hover img {
    opacity: 1;
}

.slider__thumbnail {
    aspect-ratio: 1 / 1;
    background-color: #f2f2f5;
    border-radius: 8px;
    border: 1px solid var(--design-sys-sec-color__grey--8);
    cursor: pointer;
    overflow: hidden;
    overflow: visible;
    padding: 4px;
    position: relative;
    transition: all 150ms ease-in-out;
    user-select: none;
    width: 84px;
}

.slider__thumbnail:hover {
    opacity: 0.7;
}

.slider__item.uk-active .slider__thumbnail {
    border: 1px solid var(--design-sys-sec-color__blue--4);
    box-shadow: 0px 0px 0px 3px #327fc240;
}

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

.slider__list-container .design-sys__bbplus-btn {
    left: 12px;
    position: absolute;
    top: 12px;
    z-index: 1;
}

.video-container {
    width: 80%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.video-container iframe,
.video-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#video-modal .uk-modal-dialog {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button{
    position: absolute;
    filter: brightness(0) invert(1) opacity(0.8);
    border: none;
}


.slider__modal-close--full {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c6c6c6;
    border-radius: 9px;
    width: 40px;
    height: 40px;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 30px;
}

@media (min-width: 1280px) {
    .slider__list-container {
        min-width: 500px;
    }
}

@media (min-width: 1920px) {
    .slider__thumbnail {
        height: 100px;
        width: 100px;
    }

    .slider__item.uk-active .slider__thumbnail::after {
        width: 98px;
        height: 98px;
    }

    .slider__list-container {
        margin-bottom: 20px;
        max-width: 595px;
    }
    .slider__item-list {
        gap: 24px;
    }
}

@media (max-width: 639px) {
    .product-detail__slider {
        display: flex;
        justify-content: center;
    }

    .product-detail__slider .uk-slideshow {
        width: 100%;
    }

    .slider__list-container {
        margin-bottom: 8px;
        max-width: none;
    }
    .slider__item-list {
        display: flex;
        gap: 20px;
        width: auto;
        overflow: scroll;
    }

    .slider__item-list li {
        flex-basis: 100%;
    }

    .slider__thumbnail {
        width: 200px;
    }
    .slider__item.uk-active .slider__thumbnail::after {
        width: calc(100% + 2px);
        bottom: -4px;
    }

    .slider__item.uk-active .slider__thumbnail::after {
        border-radius: 10px;
    }

    .video-container {
        width: 100%;
        height: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
    }
    
}
