.loading-pulse {
    color: black;
    font-size: 35px;
    text-indent: -9999em;
    overflow: hidden;
    width: 35px;
    height: 35px;
    text-align: center;
    margin: 10px auto 50px;
    border-radius: 50%;
    position: relative;
    transform: translateZ(0);
    animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
    display: none;
}

@keyframes mltShdSpin {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em,
        0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
        0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em,
        0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
        0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em,
        -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
        -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
        -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
        -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
        -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
        -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,
        0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes round {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.video-thumb .video-thumbnail-icon {
    width: 36px;
    height: 36px;
    margin: auto;
    position: absolute;
    background: #fff;
    box-shadow: 0 1px 3px 0 #0000004d, 0 4px 8px 3px #00000026;
    border-radius: 50%;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.video-thumb .video-thumbnail-icon span {
    margin: auto;
    position: absolute;
    left: 3px;
    fill: currentColor;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    display: inline-block;
    right: 0;
    top: 0;
    bottom: 0
}

.product-gallery-slider iframe, .product-gallery-slider video {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-bottom: -5px;
    transition: transform .6s, border .6s;
    position: absolute;
    max-width: 100%;
    height: 100%;
    object-fit: fill;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    border-radius: 0;
    max-height: 100%;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.product-thumbnails .video-thumb img {
    height: 100%;
}

.product-thumbnails .col.img-preview {
    opacity: .6;
    transition: opacity .1s;
}

.product-thumbnails .col.img-preview.is-selected {
    opacity: 1;
}

.product-thumbnails .col.img-preview.is-selected .img-wrapper {
    cursor: default;
}

.product-thumbnails .img-wrapper {
    border-width: 2px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.product-thumbnails .img-wrapper img {
    transition: transform .2s;
    transform: scale(1.1);
}

.product-thumbnails .col.img-preview.is-selected .img-wrapper img {
    transform: scale(1);
}

@media (hover: hover) {
    .product-thumbnails .col.img-preview:hover {
        opacity: 1;
    }
}