/**
 * TRATOSA - Video sản phẩm trong slider Flatsome.
 */

/* Slide video lớn */
.tratosa-product-video-slide {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.tratosa-product-video-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
}

.tratosa-product-video-frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Thumbnail video */
.product-thumbnails .tratosa-product-video-thumbnail {
    width: 25%;
    max-width: 25%;
    padding: 0 9.8px;
    cursor: pointer;
}

.product-thumbnails
.tratosa-product-video-thumbnail__link {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.product-thumbnails
.tratosa-product-video-thumbnail__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tratosa-product-video-thumbnail__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.16);
}

.tratosa-product-video-thumbnail__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding-left: 4px;
    border-radius: 50%;
    background: #f58220;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.tratosa-product-video-thumbnail__label {
    position: absolute;
    right: 6px;
    bottom: 6px;
    padding: 4px 7px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}

.product-thumbnails
.tratosa-product-video-thumbnail.is-nav-selected
.tratosa-product-video-thumbnail__link,
.product-thumbnails
.tratosa-product-video-thumbnail.is-selected
.tratosa-product-video-thumbnail__link {
    border-color: #0b6735;
    box-shadow: inset 0 0 0 1px #0b6735;
}

@media (max-width: 767px) {
    .tratosa-product-video-slide {
        min-height: 280px;
    }

    .product-thumbnails
    .tratosa-product-video-thumbnail {
        width: 25%;
        max-width: 25%;
        padding: 0 5px;
    }

    .tratosa-product-video-thumbnail__play {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .tratosa-product-video-thumbnail__label {
        right: 3px;
        bottom: 3px;
        padding: 3px 5px;
        font-size: 8px;
    }
}
