@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.wooac-popup {
    position: relative;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    box-sizing: border-box;
    text-align: center;
    display: none;
}

.mfp-wooac .wooac-popup {
    display: block;
}

.wooac-popup * {
    box-sizing: border-box;
}

.wooac-popup .wooac-image {
    display: block;
    margin-bottom: 10px;
}

.wooac-popup .wooac-image img {
    display: inline-block;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.wooac-popup .wooac-text a, .wooac-popup .wooac-text span {
    font-weight: 700;
}

.wooac-popup .wooac-action {
    display: block;
    margin-top: 10px;
}

.wooac-popup .wooac-action a {
    display: inline-block;
    outline: none;
    margin: 0 5px;
    background-color: #eeeeee;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.wooac-popup .wooac-action a:hover {
    background-color: #333333;
    color: #ffffff;
}

.wooac-popup .mfp-close {
    font-size: 0 !important;
}

/* Popup */

.mfp-container {
    padding: 0;
}

.mfp-close {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 0;
}

.mfp-close:hover {
    background-color: transparent;
}

.mfp-close:active {
    top: 0;
}

.mfp-close:focus {
    outline: none;
}

.mfp-close:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    content: '\e9ea';
    font-family: "feather";
    display: inline-block;
    font-size: 24px;
    color: #222222;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mfp-preloader {
    width: 30px;
    height: 30px;
    font-size: 0;
    margin: 0 auto;
}

.mfp-preloader:before {
    content: '\e9a7';
    font-family: "feather";
    display: inline-block;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    -webkit-animation: spinner 1s linear infinite;
    -moz-animation: spinner 1s linear infinite;
    -ms-animation: spinner 1s linear infinite;
    -o-animation: spinner 1s linear infinite;
    animation: spinner 1s linear infinite;
}

.mfp-arrow {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: none;
    padding: 0;
    outline: none;
    text-align: center;
    margin-top: -30px;
    border-radius: 0;
    opacity: 1;
}

.mfp-arrow:active {
    margin-top: -30px;
}

.mfp-arrow:hover {
    background-color: rgba(0, 0, 0, .5);
}

.mfp-arrow:focus {
    outline: none;
}

.mfp-arrow:before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    padding: 0;
    border-width: 0;
    margin: 0;
    display: inline-block;
    font-family: "feather";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
}

.mfp-arrow:after {
    display: none;
}

.mfp-arrow.mfp-arrow-left:before {
    content: '\e90e';
}

.mfp-arrow.mfp-arrow-right:before {
    content: '\e90f';
}

/*
====== Fade effect ======
*/
.mfp-fade {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/*
====== Zoom effect ======
*/
.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Newspaper effect ======
*/
.mfp-newspaper {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.5s;
    transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
    transform: scale(0) rotate(500deg);
    opacity: 0;
}

.mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Move-horizontal effect ======
*/
.mfp-move-horizontal {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    transform: translateX(50px);
    opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Move-from-top effect ======
*/
.mfp-move-from-top {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-from-top .mfp-content {

}

.mfp-move-from-top .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s;
    transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
    opacity: 0;
    transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
    transform: translateY(-50px);
    opacity: 0;
}

.mfp-move-from-top.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== 3d unfold ======
*/
.mfp-3d-unfold {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-3d-unfold .mfp-content {
    perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
    transform: rotateY(60deg);
    opacity: 0;
}

.mfp-3d-unfold.mfp-removing.mfp-bg {
    opacity: 0;
}

/*
====== Zoom-out effect ======
*/
.mfp-zoom-out {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}
.loading_gif img{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 55px !important;
    height: 55px !important;
}
/*
====== Slide bottom effect ======
*/
.mfp-slide-bottom {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-slide-bottom .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);

}

/* animate in */
.mfp-slide-bottom.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.mfp-slide-bottom.mfp-removing .mfp-with-anim {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.mfp-slide-bottom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}
.elementor-wc-products ul.products li.product .button:before{
    content:'';
    height: 45px;
    width: 45px;
    background-image: url(../images/btn-add.svg);
    display: block;
    background-size: cover;
}
.wvpl-play:before,
.waveplayer.wvpl-skin-play_n_wave .wvpl-controls .wvpl-icon::before{
    content:'';
    height: 45px;
    width: 45px;
    display: block;
    background-size: cover;
}
.waveplayer.wvpl-skin-play_n_wave{
    align-items: center;
}
.elementor-menu-cart__main .waveplayer.wvpl-skin-play_n_wave .wvpl-controls .wvpl-icon::before{
    height: 20px;
    width: 20px;
}
.wvpl-play:before,
.waveplayer.wvpl-skin-play_n_wave .wvpl-play::before{
    background-image: url(../images/btn-play.svg);
}
.waveplayer.wvpl-skin-play_n_wave.playing .wvpl-play::before{
    content:''!important;
    background-image: url(../images/btn-pause.svg);
}
.elementor-widget-woocommerce-menu-cart.toggle-icon--cart-medium .elementor-menu-cart__toggle .elementor-button-icon i:before,
.elementor-widget-woocommerce-menu-cart.toggle-icon--bag-medium .elementor-menu-cart__toggle .elementor-button-icon i:before{
    content:'' !important;
    height: 25px;
    width: 25px;
    background-image: url(../images/btn-list.svg);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}
.elementor-widget-woocommerce-menu-cart.toggle-icon--cart-medium .elementor-menu-cart__toggle .elementor-button-icon i:before{
    background-image: url(../images/btn-list-c.svg);
}
.elementor-products-grid ul.products li.product a.woocommerce-loop-product__link{
    display: flex;
}
.waveplayer.wvpl-skin-play_n_wave{
    grid-template-columns: auto auto auto !important;
}
.woocommerce ul.products li.product{
    flex-direction: row;
    align-items: center;
}
.waveplayer.wvpl-skin-play_n_wave.analyzing .wvpl-play::before, .waveplayer.wvpl-skin-play_n_wave.loading .wvpl-play::before, .waveplayer.wvpl-skin-play_n_wave.seeking .wvpl-play::before{
    background-image: none;
    height: auto;
}
.waveplayer.wvpl-skin-play_n_wave .wvpl-controls{
    display: inline !important;
}
.waveplayer.wvpl-skin-play_n_wave .wvpl-controls div{
    line-height: initial !important;
}
.waveplayer .woocommerce-loop-product__title{
    /*display: flex;
    align-items: center;
    font-size: 16px !important;
    height: 100%;*/
    padding: 0 10px 10px;
}
.waveplayer{
    max-width: 90%;
}
.waveplayer+.woocommerce-loop-product__title{
    display: none;
}
.single-product .woocommerce-notices-wrapper{
    margin-top: 110px;
}
.elementor-element.elementor-products-grid .woocommerce.columns-3 ul.products, .elementor-element.elementor-products-grid ul.products.columns-3{
    grid-template-columns: repeat(1,1fr)!important;
}
.woocommerce ul.products.columns-3 li.product{
    width: 100%!important;
}

.signle .ajax_add_to_cart.loading{
    opacity: 0.6;
    pointer-events: none;
}
li .added_to_cart{
    position: absolute;
    right: -11px;
    top: 55px;
    font-size: 1rem;
    text-align: center;
}
@media (max-width: 567px) {
    ul.products li.product .woocommerce-loop-product__title{
        font-size: 0.85rem;
		white-space: nowrap;
  		overflow: hidden;
  		text-overflow: ellipsis;
  		max-width: 200px;
    }
}

.elementor-wc-products ul.products li.product .button{
	font-size: 0;
	position: relative;
	padding: 0 !important;
	background-color: transparent !important;
}
#jquery-script-menu{position:absolute;height:90px;width:100%;top:0;left:0;border-top:5px solid #316594;background:#fff;-moz-box-shadow:0 2px 3px 0 rgba(0,0,0,.16);-webkit-box-shadow:0 2px 3px 0 rgba(0,0,0,.16);box-shadow:0 2px 3px 0 rgba(0,0,0,.16);z-index:999999;padding:10px 0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.jquery-script-center{max-width:960px;margin:0 auto}.jquery-script-center ul{width:212px;float:left;line-height:45px;margin:0;padding:0;list-style:none}.jquery-script-center a{text-decoration:none}.jquery-script-ads{max-width:728px;height:90px;float:right}.jquery-script-clear{clear:both;height:0}#carbonads{display:block;overflow:hidden;max-width:728px;position:relative;font-size:22px;box-sizing:content-box}#carbonads>span{display:block}#carbonads a{color:#4078c0;text-decoration:none}#carbonads a:hover{color:#3664a3}.carbon-wrap{display:flex;align-items:center}.carbon-img{display:block;margin:0;line-height:1}.carbon-img img{display:block;height:90px;width:auto}.carbon-text{display:block;padding:0 1em;line-height:1.35;text-align:left}.carbon-poweredby{display:block;position:absolute;bottom:0;right:0;padding:6px 10px;text-align:center;text-transform:uppercase;letter-spacing:.5px;font-weight:600;font-size:8px;border-top-left-radius:4px;line-height:1;color:#aaa!important}@media only screen and (min-width:320px) and (max-width:759px){.carbon-text{font-size:14px}}@media only screen and (max-width:1023px){.jquery-script-ads{display:none}}
#closer_videopopup{
    position: absolute;
    display: table-cell;
    right: 2%;
    top: 2%;
    font-size: 32px;
    text-align: center;
    vertical-align: middle;
    padding: auto;
    cursor: default;
    background: none;
    border: none;
    color: #ffffff;
    z-index: 100004;
}
#opct{
    position: fixed;
    z-index: 100000;
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
    filter: alpha(opacity=90);
    -moz-opacity: 0.90;
    opacity: 0.9;
}
.videCont{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin: auto;
    max-width: 720px;
    height: 0;
    height: auto !important;
}
video#video1{
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    opacity: 1 !important;
}

.wc-category-slider .wc-slide-content-wrapper{
	position: absolute !important;
	height: 100% !important;
	width: 100% !important;
	background-color: rgba(0,0,0,0.25) !important;
	border-radius: 35px;
	pointer-events:none;
}
.wave-video section{
	position: relative;
}
.wave-video section:after{
	content: "",
	position: absolute !important;
	height: 100% !important;
	width: 100% !important;
	background-color: rgba(0,0,0,0.25) !important;
}
.wc-category-slider .wc-slide-title {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
	font-size: 34px;
	text-transform: uppercase;
	font-weight: 700;
}
.wc-category-slider .wc-slide-image-wrapper{
	border-radius: 35px;
}
.shop_table.cart .product-remove .remove span:before{
	content:'' !important;
    height: 25px;
    width: 25px;
    background-image: url(../images/icon_trash.svg);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}
td.product-remove {
    text-align: right;
}
.woocommerce .return-to-shop a.button, .woocommerce .wc-proceed-to-checkout a.button{
	width: auto !important;
    float: right !important;
}

@media (max-width: 767px){
.woocommerce-cart-form__cart-item{
	position: relative;
    border-top: 1px solid;
}
.woocommerce table.shop_table_responsive tr .product-track::before{
	content: "";
}
.woocommerce-cart-form__cart-item .product-thumbnail{
	border:none;
}
	.woocommerce table.shop_table_responsive tr .product-remove, .woocommerce-page table.shop_table_responsive tr .product-remove{
    	position: absolute;
    	right: 0;
    	top: 1px;
    	border: none;
    }
}
.popvideo-wrapper{z-index: 999;position:fixed;width:100%;top:0;background:rgba(0,0,0,.9);height:100%;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;font-size:14px;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.popvideo-wrapper *{margin:0;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.popvideo{width:100%;max-width:1000px;margin-right:15px;margin-left:15px;-webkit-box-shadow:0 0 6px 2px rgba(0,0,0,.3);box-shadow:0 0 6px 2px rgba(0,0,0,.3);position:relative;padding-bottom:4px;overflow:hidden}.popvideo:hover .popvideo-head{top:0}.popvideo:hover .popvideo-control-wrap{bottom:0}.popvideo-content video{width:100%;display:block}.popvideo-control-wrap,.popvideo-head{position:absolute;background:rgba(0,0,0,.3);width:100%;color:#fff;z-index:5}.popvideo-head{top:-40px;left:0;padding-left:15px;padding-right:50px;-webkit-transition:top .3s ease;transition:top .3s ease}.popvideo-close{display:block;position:absolute;right:0;text-decoration:none;color:#fff;height:40px;width:40px;text-align:center;line-height:40px;font-size:24px;-webkit-transition:color .3s ease;transition:color .3s ease}.popvideo-close:hover{color:#ff6e0b}.popvideo-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:16px;height:40px;line-height:40px;font-weight:400}.popvideo-control-wrap{height:42px;bottom:-42px;left:0;-webkit-transition:bottom .3s ease;transition:bottom .3s ease}.popvideo_progress_bar_container{position:absolute;z-index:4;left:0;top:-10px;width:100%;height:10px;padding:0;vertical-align:top;cursor:pointer}.popvideo_progress_bar_container:hover{z-index:9}.popvideo_progress_bar_container:hover .popvideo_progress_list{height:10px}.popvideo_progress_bar_container:hover .popvideo_btn_scrubber{display:block}.popvideo_progress_bar_container:hover .popvideo_scrubber_indicator{margin-top:10px}.popvideo_progress_bar_container:after{content:'';display:block;width:100%;height:4px;position:absolute;bottom:-4px}.popvideo_btn_scrubber{position:absolute;display:none;width:30px;height:30px;margin-left:-15px;top:-10px;cursor:pointer;pointer-events:none}.popvideo_scrubber_indicator{position:relative;margin-top:13px;margin-left:10px;width:10px;height:10px;border-radius:100%;background-color:#fff;-webkit-box-shadow:0 0 15px #ff6e0b;box-shadow:0 0 15px #ff6e0b}.popvideo_progress_list{position:absolute;left:0;bottom:0;width:100%;height:4px;background-color:rgba(166,166,166,.5);-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .25s cubic-bezier(0,0,.2,1);transition:all .25s cubic-bezier(0,0,.2,1)}.popvideo_progress_load,.popvideo_progress_play{position:absolute;left:0;top:0;height:100%;background-color:#ff6e0b;-webkit-transform:translateZ(0);transform:translateZ(0)}.popvideo_progress_load{background-color:rgba(255,255,255,.5)}.popvideo_icon{position:relative;width:36px;height:36px;fill:#fff}.popvideo_btn{position:relative;cursor:pointer;background:0 0;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.popvideo_btn:hover .popvideo_icon{fill:#ff6e0b;cursor:pointer}.popvideo_controls{position:absolute;bottom:0;left:0;width:100%;height:42px}.popvideo_controls .popvideo_btn{height:100%;text-align:center;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.popvideo_left_controls,.popvideo_right_controls{position:relative;float:left;height:100%;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-moz-box-orient:horizontal;-moz-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.popvideo_left_controls .popvideo_btn{width:36px;margin-left:4px;text-align:center;-webkit-box-flex:0;-webkit-flex:none;-moz-box-flex:0;-ms-flex:none;flex:none;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.popvideo_left_controls .popvideo_icon{display:block;width:36px;height:36px;margin:auto}.popvideo_icon:after,.popvideo_icon:before,.popvideo_icon_inner:after,.popvideo_icon_inner:before{content:'';position:absolute;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.popvideo_btn_play .popvideo_svg_symbol{visibility:hidden;opacity:0}.popvideo_btn_play[data-status=pause] .popvideo_svg_pause,.popvideo_btn_play[data-status=play] .popvideo_svg_play,.popvideo_btn_play[data-status=replay] .popvideo_svg_replay{visibility:visible;opacity:1}.popvideo_time_display{height:100%;margin-left:0;white-space:nowrap;font-size:0;-webkit-box-flex:0;-webkit-flex:none;-moz-box-flex:0;-ms-flex:none;flex:none;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.popvideo_time_display>div{display:inline;font-size:12px}.popvideo_time_display .popvideo_time_separator{margin:0 1px;color:rgba(255,255,255,.5)}.popvideo_time_display .popvideo_time_duration{color:rgba(255,255,255,.5)}.popvideo_right_controls{float:right}.popvideo_right_controls .popvideo_btn{margin-right:10px;z-index:8}.popvideo_right_controls .popvideo_none{display:none}.popvideo_right_controls .popvideo_icon{display:block;width:24px;height:24px}.popvideo_right_controls .popvideo_icon_volume{width:20px;height:20px}.popvideo_icon_fake,.popvideo_icon_fullscreen{pointer-events:none}.popvideo_btn_volume .popvideo_svg_symbol{display:none}.popvideo_btn_volume[data-status=mute] .popvideo_svg_volume_mute,.popvideo_btn_volume[data-status=normal] .popvideo_svg_volume{display:block}.popvideo_btn_fake .popvideo_svg_symbol,.popvideo_btn_fullscreen .popvideo_svg_symbol,.popvideo_btn_size .popvideo_svg_symbol{display:none}.popvideo_btn_fake[data-status=false] .popvideo_svg_fake,.popvideo_btn_fake[data-status=true] .popvideo_svg_fake_true,.popvideo_btn_fullscreen[data-status=false] .popvideo_svg_fullscreen,.popvideo_btn_fullscreen[data-status=true] .popvideo_svg_fullscreen_true,.popvideo_btn_size[data-status=false] .popvideo_svg_size,.popvideo_btn_size[data-status=true] .popvideo_svg_size_true{display:block}.popvideo_volume_range{width:100px;margin-left:7px;height:4px;background:rgba(255,255,255,.5);border-radius:2px;position:relative}.popvideo_volume_range_current{background-color:#ff6e0b;height:100%;border-radius:2px}.popvideo_volume_handle{width:10px;height:10px;background:#fff;position:absolute;border-radius:5px;top:-3px;margin-left:-5px}.popvideo_volume_handle:hover{-webkit-box-shadow:0 0 4px 4px #ff6e0b;box-shadow:0 0 4px 4px #ff6e0b}@-webkit-keyframes popvideo_btn_rotate{0%{-webkit-transform:rotate(90deg) translateZ(0);transform:rotate(90deg) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}}@keyframes popvideo_btn_rotate{0%{-webkit-transform:rotate(90deg) translateZ(0);transform:rotate(90deg) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}}@-webkit-keyframes popvideo_btn_rotate_2{0%{-webkit-transform:rotate(-90deg) translateZ(0);transform:rotate(-90deg) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}}@keyframes popvideo_btn_rotate_2{0%{-webkit-transform:rotate(-90deg) translateZ(0);transform:rotate(-90deg) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}100%{-webkit-transform:rotate(0) translateZ(0);transform:rotate(0) translateZ(0);-webkit-transform-origin:center center;transform-origin:center center}}.popvideo.popvideo-fullscreen{width:100%;height:100%;max-width:none;background:inherit;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center;justify-content:center}.popvideo.popvideo-fullscreen .popvideo-content{width:100%;height:100%}.popvideo.popvideo-fullscreen .popvideo-content video{width:100%;-o-object-fit:contain;object-fit:contain;display:block}