/* Slider container */
.product-options-slider {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

/* Slider wrapper */
.product-options-slider .slider-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Slide item */
.option-slide {
    width: 100%;
    margin-right: 15px;
    float: left; /* Important for Flickity */
}
.product-tabs-wrapper {
    margin-bottom: 30px;
}
.tabs-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
	justify-content: center;
}
.tabs-nav li {
    margin-right: 20px;
}
.tabs-nav li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}
.tabs-nav li.active a {
    color: #000;
    border-bottom-color: #000;
}
.tab-icon {
    margin-right: 5px;
    display: inline-flex;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.slider-container {
    position: relative;
}
.video-thumbnail {
    position: relative;
    cursor: pointer;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
}
.play-button:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-30%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #000;
}
.mfp-arrow:before, .mfp-arrow:after{
    content: none !important;
}