/* ====================== product gallery ====================== */

.gallery-warper {
  position: -webkit-sticky;
  position: sticky;
  top: 164px;
}

.product_detail_col {
    position: relative;
    /* height: 100%; */
}

.product-gallery {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    align-items: flex-start;
    user-select: none;
    opacity: 0;
}

.product-gallery .product-gallery__images {
    margin-left: 10px;
    flex-basis: 0%;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    overflow: hidden
}

.product-gallery .product-gallery__images.disable-touch {
    touch-action: none
}

.product-gallery .product-gallery__images-container {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    font-size: 0;
    -webkit-transition: all 0.4s cubic-bezier(.175, .85, .3, 1.15);
    -moz-transition: all 0.4s cubic-bezier(.175, .85, .3, 1.15);
    transition: all 0.4s cubic-bezier(.175, .85, .3, 1.15)
}

.product-gallery .product-gallery__images-container>div {
    display: inline-block;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    -webkit-transition: all 0.4s cubic-bezier(.175, .85, .3, 1.15);
    -moz-transition: all 0.4s cubic-bezier(.175, .85, .3, 1.15);
    transition: all 0.4s cubic-bezier(.175, .85, .3, 1.15)
}

.product-gallery .product-gallery__images-container>div:after {
    content: "";
    display: block;
    padding-bottom: 100%;
    z-index: -1
}

.product-gallery .product-gallery__images-container>div[disabled="disabled"] {
    display: none
}

.product-gallery .product-gallery__images-container>div+div {
    /* margin-left: 15px */
}

.product-gallery .product-gallery__images-container>div img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.product-gallery .product-gallery__thumbs {
    flex: 0 0 90px;
    position: relative
}

.product-gallery .product-gallery__thumbs-container {
    font-size: 0;
    white-space: nowrap;
    position: relative;
    top: 0;
    left: 0;
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-transition: all 0.4s cubic-bezier(.175, .85, .3, 1.05);
    -moz-transition: all 0.4s cubic-bezier(.175, .85, .3, 1.05);
    transition: all 0.4s cubic-bezier(.175, .85, .3, 1.05)
}

.product-gallery .product-gallery__thumbs-container>div {
    position: relative;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 1px #D6D6D6;
    cursor: pointer;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: url(../image/placeholder.png) no-repeat center center;
    background-size: cover;
}

.product-gallery .product-gallery__thumbs-container>div[disabled="disabled"] {
    display: none
}

.product-gallery .product-gallery__thumbs-container>div:after {
    content: '';
    background: rgba(255, 255, 255, .35);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.product-gallery .product-gallery__thumbs-container>div:before {
    content: '';
    display: block;
    padding-bottom: 100%
}

.product-gallery .product-gallery__thumbs-container>div.selected {
    border-color: #0cc26e;
}

.product-gallery .product-gallery__thumbs-container>div.selected:after {
    background: rgba(255, 255, 255, 0)
}

.product-gallery .product-gallery__thumbs-container>div:hover {
    border-color: #0cc26e;
}

.product-gallery .product-gallery__thumbs-container>div img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none
}


/* ====================== product saleoff ====================== */

.product_item_saleoff {
    background: #F42D39;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 40px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700
}

.product-gallery__images .product_item_saleoff {
    width: 60px;
    height: 60px;
    font-size: 16px
}

.product_item_saleoff::before,
.product_item_saleoff::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -20px
}

.product_item_saleoff::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 30px 0 0;
    border-color: #F42D39 transparent transparent transparent;
    left: 0
}

.product_item_saleoff::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 20px 0;
    border-color: transparent #F42D39 transparent transparent;
    right: 0
}

.product-gallery__images-container {
    /* background: url(../image/placeholder.png) no-repeat center center;
    background-size: cover; */
}