.product-cover .layer{
    background: transparent;
    opacity: 1;
    width: 100px;
    height: 100px;
    filter: invert(17%) sepia(60%) saturate(6816%) hue-rotate(147deg) brightness(90%) contrast(68%);
    display: none;
}
.product-cover:hover .layer{
    display: block;
}
.thumb-container img.thumb.js-thumb.selected{
    border: 1px solid #f5f5f5;
    box-shadow: 2px 2px 11px 0 rgb(0 0 0 / 10%);
}
@media only screen and (max-width: 768px){
    .images-container .arrow{
        display: none !important;
    }
}
.images-container {
    position: relative;
}
.images-container .arrow {
    display: inline-block;
    position: absolute;
    width: 36px;
    height: 36px;
    background: transparent;
    text-indent: -9999px;
    border-top: 2px solid #bfbfbf;
    border-left: 2px solid #bfbfbf;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: transparent;
    z-index: 10;
    top: 180px;
}
.images-container .arrow:hover {
    border-color: #808080;
    border-width: 6px;
}
.images-container .arrow:before {
    display: block;
    height: 200%;
    width: 200%;
    margin-left: -50%;
    margin-top: -50%;
    content: "";
    transform: rotate(45deg);
}
.images-container .arrow.prev {
    transform: rotate(-45deg);
    left: 0;
}
.images-container .arrow.next {
    transform: rotate(135deg);
    right: 0;
}