/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 20 2025 | 09:11:57 */
.product-gallery__main {
    height: 0;
    padding-top: 100%;
    position: relative;
    margin-bottom: 1em;
    border-bottom: 5px solid #fc8f00;
    overflow: hidden;
    background: linear-gradient(to top right, #9d9e9f, #646566);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.product-gallery__zoom {
    position: absolute;
    top: 2em;
    right: 2em;
    width: 3em;
    height: 3em;
    fill: #fff;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border-width: 0;
    padding: 0;
    z-index: 2;
}
.product-gallery__zoom:hover, .product-gallery__zoom:focus {
	background-color: transparent;
}
.product-gallery__main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
	pointer-events: none;
}
.product-gallery__main.is-zoomed .product-gallery__zoom-in {
    display: none;
}
.product-gallery__main.is-zoomed .product-gallery__zoom-out {
    display: block;
}
.product-gallery__zoom-out {
    display: none;
}
.product-gallery__thumbs {
    display: flex;
    width: 100%;
    margin-left: -1em;
}
.product-gallery__thumb {
    width: calc((100% - 4em) / 5);
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-width: 0;
    padding: 0;
    border-bottom: 2px solid #fc8f00;
    position: relative;
    background-color: transparent;
    transition: .25s border-color cubic-bezier(.65,0,.35,1);
    margin-left: 1em;
    background: linear-gradient(to top right, #9d9e9f, #646566);
}
.product-gallery__thumb.active {
    border-bottom-color: #fff;
}
.product-gallery__thumb img {
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
	max-width: 100%;
    height: auto;
    vertical-align: top;
}