/* --- Характеристики страница товаров  --- */
.features.divider {
    
}
.features.divider:not(:first-child) {
    padding-top: var(--space-sm);
}




/**-- --**/
/* -------------------------------- 

File#: _1_color-swatches
Title: Color Swatches
Descr: A list of selectable swatches used to show a product color variants
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --color-swatches-gap: var(--space-xxs);
  --color-swatch-size: 32px;
  --color-swatches-size-category: 20px;
  --color-swatch-radius: var(--radius-sm);
  --color-swatch-size-45: 45px
}

.color-swatches__list {
  display: grid;
  grid-gap: var(--color-swatches-gap);
  grid-template-columns: repeat(auto-fit, var(--color-swatch-size-45));
}

.color-swatches__swatch {
  position: relative;
  /*display: block;*/
  height: var(--color-swatch-size-45);
  width: var(--color-swatch-size-45);
  border-radius: .4rem !important;
  cursor: pointer;
}
.color-swatches__legend {
    font-weight: 400 !important;
    font-family: CeraPro !important;
    font-size: 16px !important;
}
p.swatches__legend span.js-f-name {
    font-weight: 500 !important;
    font-family: CeraPro !important;
    font-size: 16px !important;
}
.color-swatches__swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}
.color-swatches__swatch:hover::before {
  border-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.3);
}

.color-swatches__list .selected .color-swatches__swatch::before,
input:checked + .color-swatches__swatch::before {
  border-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.8);
  width: calc(100% + 9px);
  height: calc(100% + 9px);
  border-radius: .5rem !important;
}
.color-swatches__list a.disabled {
	display: none;
	pointer-events: none !important;
}


.color-swatches__list_category {
    grid-template-columns: repeat(auto-fit, var(--color-swatches-size-category));
}
.color-swatches__swatch_category {
    position: relative;
    display: block;
    height: var(--color-swatches-size-category);
    width: var(--color-swatches-size-category);
    border-radius: var(--color-swatch-radius);
    cursor: pointer;
}

/*Показать выделеный блок */
.color-swatches__swatch svg {
    display: none;
}
input:checked + .color-swatches__swatch svg {
    display: block;
}


/**************************


**************************/
.filters { }
.filters .filters-toggle-wrapper { display: none }
.filters input[type="text"] { font-size: 0.9em; width: 85px; text-align: right; }
.filters h5 { margin-bottom: 0.5em; }

.filters .slider {
    background: transparent;
    display: block !important;
}
.filters .ui-slider {
    display: block;
    position: relative;
    margin: 20px 15px 20px 15px;
}
.filters .ui-slider-horizontal { height: 2px; border: none; }
.filters .ui-slider-horizontal .ui-slider-handle,
.filters .ui-slider-horizontal .ui-slider-handle.ui-state-focus { top: -0.55em; margin-left: -0.4em; height: 1.1em; width: 1.1em; border: none; box-shadow: 0 1px 2px rgba(0,0,0,0.15); border-radius: 50%; z-index: 0; }
.filters .ui-slider-horizontal .ui-slider-handle.ui-state-hover { border-color: #999; box-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.filters .ui-slider-horizontal.ui-widget-content { background: #bbb; }
.filters .ui-slider-horizontal .ui-widget-header { background: var(--color-contrast-higher); height: 2px; position: relative; top: 0px; z-index: 0; }
.filters .ui-widget-content .ui-state-default { border: 1px solid #ccc; background: #f7f7f7; }
.filter__check .h-hidden {
    display: none;
}

.filter__check .h-hidden-show .h-hidden {
    display: block;
}
@media (min-width: 32rem) {
    /*\@xs*/
}
@media (min-width: 48rem) {
    /*\@sm*/
  
}
@media (min-width: 64rem) {
    /*\@md*/
    .filter__checkbox .h-hidden-show {
        height: var(--size-xxxxl, 16rem);
    }
}
@media (min-width: 80rem) {
    /*\@lg*/
    
}
@media (min-width: 90rem) {
    /*\@xl*/
    
}

/* -------------------------------- 

    Главная популярные категории

-------------------------------- */
:root {
    --grid-popylar-columns: repeat(2,1fr);
    --grid-popylar-rows: 9rem 9rem 9rem;
}
.popylar-grid {
    display: grid;
    grid-gap: var(--space-sm);
}
.popylar__item-1 { grid-area: popylar__item-1;  }
.popylar__item-2 { grid-area: popylar__item-2;  }
.popylar__item-3 { grid-area: popylar__item-3;  }
.popylar__item-4 { grid-area: popylar__item-4;  }
.popylar__item-5 { grid-area: popylar__item-5;  }
.popylar__item-6 { grid-area: popylar__item-6;  }


.popylar-grid {
    grid-template-columns: var(--grid-popylar-columns);
    grid-template-rows: var(--grid-popylar-rows);
    grid-template-areas:
        "popylar__item-1 popylar__item-2"
        "popylar__item-3 popylar__item-4"
        "popylar__item-5 popylar__item-6";
}

@media (min-width: 32rem) {
    /*\@xs*/
}
@media (min-width: 48rem) {
    /*\@sm*/
  
}
@media (min-width: 64rem) {
    /*\@md*/
}
@media (min-width: 80rem) {
    /*\@lg*/
    
}
@media (min-width: 90rem) {
    /*\@xl*/
    :root {
        --grid-popylar-columns: repeat(4,1fr);
        --grid-popylar-rows: 13rem 9rem 13rem;
    }
    .popylar-grid {
        grid-gap: var(--space-md);
    }
    .popylar-grid {
    	grid-template-areas: 
    	    "popylar__item-1 popylar__item-1 popylar__item-2 popylar__item-3"
            "popylar__item-1 popylar__item-1 popylar__item-4 popylar__item-4"
            "popylar__item-5 popylar__item-6 popylar__item-4 popylar__item-4";
    }
}



















/*
 * Webasyst Default 3.0 theme family
 *
 * Shop-Script app CSS
 * (requires linking base default.css file from the Site app)
 *
 * @link http://www.webasyst.com/
 * @author Webasyst LLC
 * @copyright 2015 Webasyst LLC
 * @package Webasyst
 *
 * ... extends base Site app's default.css
 */

 @import "./css/home.slider.css";

 .currency-toggle { right: 0; position: absolute; }
 .bonus { background: #ceb; padding: 2px 4px 1px; }
 .plugin { margin-bottom: 20px; } /* shipping and payment plugins ouput */

 span.loading { position: relative; top: 4px; left: 10px; }
 .checkout span.loading { position: relative; top: 4px; left: 10px; }

 #compare-leash { position: fixed; bottom: 0; box-shadow: 0 2px 9px rgba(0, 0, 0, 0.4); font-size: 1.1em; right: 30px; z-index: 9999; }
 #compare-leash a { color: #fff; background: #ffa800; display: block; padding: 10px 15px;
 	-webkit-transition: background 0.5s ease-in-out;
 	-moz-transition:    background 0.5s ease-in-out;
 	-ms-transition:     background 0.5s ease-in-out;
 	transition:         background 0.5s ease-in-out;
 }
 #compare-leash a:hover { background: red; color: #fff !important; }
 #compare-leash a.just-added { background: #f00; }

/* Product list
--------------- */


ul.thumbs li { display: inline-block;vertical-align: top;/* width: 100%; */padding: 0;/* margin: 0 20px 40px 20px; */position: relative;text-align: left;line-height: 1.2em; min-height: 340px; }

ul.thumbs li a { text-decoration: none; }
ul.thumbs li h5 { margin-top: 0.5em; margin-bottom: 0.4em; font-size: 1.1em; }
ul.thumbs li span.summary { color: #999; font-size: 0.9em; }
ul.thumbs li table.features { color: #999; font-size: 0.9em;}
ul.thumbs li table.features td { padding: 3px 0 0 0;}
ul.thumbs li table.features td.name { min-width: 70px; padding-right: 10px; }
ul.thumbs li a:hover { color: red !important; }
ul.thumbs li a:hover h5 { color: red !important; }
ul.thumbs .rating,
ul.thumbs .offers { display: block; margin: 3px 0; }
ul.thumbs .out-of-stock { display: inline-block; margin: 3px 5px; }
ul.thumbs .purchase { margin-top: 7px; line-height: 1.5em; margin-bottom: 10px; }
ul.thumbs .purchase .pricing { margin-bottom: 9px; }
ul.thumbs .purchase .price { margin-right: 5px; font-size: 1.2em; }
ul.thumbs .purchase input[type="submit"] { font-size: 1.0em; }
ul.thumbs .purchase .icon16.compare { margin-top: 4px; }
ul.thumbs .purchase .icon16.loading.adding2cart { position: absolute; z-index: 1; margin-left: 6px; margin-top: 5px; background-color: #fff; }
ul.thumbs .added2cart { display: inline; padding: 0; font-size: 0.9em; }
.page-content.with-sidebar ul.thumbs li { width: 300px; }

ul.thumbs.mini { text-align: left; margin: 0; }
ul.thumbs.mini li { margin-left: 0; margin-right: 0; width: 150px; }

ul.thumbs.mini li h5 { font-size: 1em; max-width: 150px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
ul.thumbs.mini .image { width: 96px; height: auto; }
ul.thumbs.mini li .price { display: block; margin-bottom: 8px; }
ul.thumbs.mini li .out-of-stock { margin-left: 0; }
ul.thumbs.mini .purchase { margin-top: 0; margin-bottom: 5px; }
ul.thumbs.mini input[type="button"],
ul.thumbs.mini input[type="submit"] { font-size: 0.9em; }

ul.thumbs.text-content { margin: 0; padding-top: 5px; }
ul.thumbs.text-content li { margin-left: 0; margin-right: 30px; }
ul.thumbs.text-content li p { margin-top: 5px; margin-bottom: 5px; }



.compare-from-list { position: relative; top: 2px; left: 6px; opacity: 0.25; }
.compare-from-list:hover { opacity: 0.5; }
.compare-from-list.active { opacity: 1; }

/* Homepage
----------- */

.welcome { margin: 0 80px 30px; }

ul.homepage-bxslider { padding: 0; margin: 0; overflow: hidden; position: relative; max-height: 360px; }
ul.homepage-bxslider li { list-style: none; margin: 0; padding: 0; max-height: 360px; }



.store-info { text-align: center; margin-top: 25px; }
.store-info h1 { font-size: 1.8em; }
.store-info h3 { font-size: 1.3em; }


.promos { margin: 0; }
.promos ul { padding: 0; margin: 5px -5px; }
.promos ul li { padding: 0; margin: 0; list-style: none; display: inline-block; width: 25%; vertical-align: top; }
.promos ul li a { display: block; padding: 35px 13px 0; height: 83px; overflow: hidden; background-size: cover; background-position: center center; color: #000; background-color: rgba(0,0,0,0.05); border: 5px solid #fff; text-align: center; position: relative; }
.promos ul li a .background-color-layer { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; opacity: 0.1; background-color: #000; }
.promos ul li a h5 { font-size: 1em; text-shadow: 0 1px 1px #000; position: relative; z-index: 2; margin-bottom: 10px; font-weight: normal; }
.promos ul li a:hover .background-color-layer { opacity: 0.5; transition: 0.3s; }

.bullets { padding: 0; margin: 20px 0px 40px; }
.bullet { font-size: 0.9em; vertical-align: top; }
.bullet p { margin-bottom: 10px; }
.bullet .b-glyph { background: url('img/bullet-glyphs.png') no-repeat; background-size: 144px 48px; width: 36px; height: 36px; display: inline-block; position: relative; top: 10px; }
.bullet .b-glyph.b-shipping { background-position: -6px -6px; }
.bullet .b-glyph.b-payment { background-position: -54px -6px; left: -2px; }
.bullet .b-glyph.b-location { background-position: -102px -6px; }

.bestsellers .product-list { margin-top: 40px; }
.bestsellers .bestsellers-header { text-align: center; color: #999; font-weight: normal; font-size: 1.8em; padding-bottom: 10px; padding-top: 30px; line-height: 1.2em; }

.section-header { color: #999; font-size: 1.4em; font-weight: normal; }

.onsale.related { border-top: none; margin-top: 0; margin-bottom: 30px; overflow-x: hidden; padding-top: 0; }

.sidebar.left-sidebar { float: left; }
.content.with-sidebar.left-sidebar { margin-right: 0; margin-left: 290px; }

.sidebar ul.tree li a { padding: 10px 0; border-bottom: 1px solid #eee; }

/* Product page
--------------- */


.product-gallery { text-align: center; margin-right: 50px; max-width: 750px; }
.video-container { text-align: center; margin-right: 50px; max-width: 750px; }
.video-container iframe { box-shadow: 0 5px 15px rgba(0,0,0,0.15); max-width: 100%; }

ul.product-nav { font-size: 1.1em; list-style: none; padding-left: 0; }
ul.product-nav li { padding-right: 20px; display: inline-block; line-height: 1.8em; }
ul.product-nav li a { padding: 2px 5px; }
ul.product-nav li.selected a { background: #eed; }

.product-sidebar .cart { padding: 25px; }



.inline-select img {
    height: 40px;
    width: 40px;
    border-radius: 9px!important;
    border-radius: 8px!important;
}
.options .inline-select a .color_name { display: none; position: absolute; bottom: -22px; left: 50%; font-size: 0.6em; color: rgba(0,0,0,0.7); margin-left: -40px; width: 80px; }
.options .inline-select a .color_checkmark { display: none; position: absolute; top: 7px; left: 10px; }

	.options .inline-select a.selected .color_name { display: block; }
	.options .inline-select a.selected .color_checkmark { display: block; }
	.services { margin-bottom: 20px; line-height: 1.4em; }
	.aux { padding: 15px; font-size: 0.9em; }
	.added2cart { display: block; padding-top: 5px; font-style: italic; }


	.image#product-core-image {  }

	.image .corner { position: absolute; z-index:1; font-size: 0.8em; color: #fff; font-weight: bold; }
	.image .corner.top { top:-5px; }
	.image .corner.bottom { bottom:-5px; }
	.image .corner.left { left:-8px; }
	.image .corner.right { right:78px; }
	ul.thumbs .image .corner.right { right:28px; }
	.image #switching-image { background: #fff url('img/loading32.gif') no-repeat 50% 50%; background-size: 32px 32px; padding: 10px; opacity: 0.5; position: absolute; left: 0; top: 0; right: 0; bottom: 0; }
	.more-images { display: block; margin: 10px; }
	
.more-images .image.selected img { /*border-color: #ddd; border: 1px solid #777777; box-shadow: 0 1px 6px #bbb;*/ }

ul.skus { list-style: none; padding-left: 2px; }
ul.skus li { padding-bottom: 3px; }

.stocks { margin-top: 10px; margin-bottom: 15px; }
.stocks strong { white-space: nowrap; }
.stocks .stock-critical { color: #e00; }
.stocks .stock-low { color: #a80; }
.stocks .stock-high { color: #0a0; }
.stocks .stock-none { color: #aaa; white-space: normal; }
.stocks .icon16 { margin-top: 0.1em; }

ul.sorting { margin-left: 0; margin-bottom: 20px; padding-left: 0; }
ul.sorting li { padding-right: 5px; list-style: none; display: inline-block; }
ul.sorting li a { padding: 2px 3px; }
ul.sorting li.selected a { background: #eee; }

i.sort-desc { height: 0; width: 0; border: 4px solid transparent; border-bottom-color: #000; margin-bottom: 0.2em; display: inline-block; }
i.sort-asc { height: 0; width: 0; border: 4px solid transparent; border-top-color: #000; margin-top: 0.1em; display: inline-block; }


.qty input { width: 40px; }
.compare-at-price { text-decoration: line-through; }
.out-of-stock strong { color: #aaa; font-size: 0.9em; }
.disabled { color: #777; }
.description { margin-bottom: 20px; }
.error { color: red; }
.rating i.icon16 { margin-right: 0.13em; margin-top: 0em; }
span.rating { white-space: nowrap; }
h1 .rating i.icon16 { margin-top: 0.42em; }

.add2cart { font-size: 1.1em; line-height: 1.4em; }
.add2cart .price { font-size: 1.4em; margin-right: 5px; }

.add2cart input[type="submit"] { font-size: 1.3em; margin-top: 10px; padding: 7px 13px 8px; }
.add2cart .icon24.loading.adding2cart { position: relative; top: 5px; left: 8px; }

ul.compare-diff-all { float: right; list-style: none; }
ul.compare-diff-all li { display: inline-block; float: left; margin-left: 10px; }
ul.compare-diff-all li a { padding: 5px; }
ul.compare-diff-all li.selected a { background: #eee; }
ul.compare-diff-all li.selected a b { border: none; }

table.compare { width: 100%; }
table.compare thead td { border-top: none; vertical-align: bottom; }
table.compare td { text-align: left; line-height: 1em; padding: 10px 2px; border-left: none; border-right: none; }
table.compare td a { text-decoration: none; }
table.compare td a.compare-remove { position: relative; top: -0.2em; left: 0.2em; }
table.compare th { text-align: left; }
table.compare td img { display: block; margin: 0 0 10px; width: 96px; height: 96px; }

table.compare thead .name-wrapper { position: relative; display: inline-block; padding: 0 24px 0 0; }
table.compare thead .name-wrapper .name-link { display: inline-block; max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
table.compare thead .name-wrapper .compare-remove { position: absolute; top: 0; right: 6px; left: auto; width: 16px; height: 16px; }
table.compare thead .name-wrapper .compare-remove i { margin: 0; }

table.features { border-spacing: 0; border-collapse: collapse; }
table.features td { padding: 5px 0 2px; border: none; }
table.features td.name { min-width: 145px; color: #777; vertical-align: top; }
table.features tr.divider td { border-bottom: 1px solid #ccc; padding-left: 0; padding-top: 15px; padding-bottom: 0; font-weight: bold; text-transform: uppercase; color: #aaa; }

.related { border-top: 1px solid #ccc; padding-top: 30px; margin-top: 50px; }

/* Product reviews
------------------ */

table.rating-distribution td { padding: 2px 15px 2px 0; border: none; }
table.rating-distribution td .bar { background: #eee; width: 200px; height: 13px; }
table.rating-distribution td .bar .filling { background: #f7c854; height: 13px; }

.write-review { margin: 30px 0 40px; }

.review {}
.review .summary { font-size: 0.9em; color: #777; }
.review .summary h6 { color: #000; font-size: 1.1em; margin-bottom: 0.3em; }
.review .summary a.username { color: #777; }
.review .summary a.username:hover { color: red; }
.review .summary a { display: inline; padding: 0; }
.review .summary .date { color:#aaa; }
.review p { margin-top: 5px; margin-bottom: 5px; line-height: 1.3em; }
.review .actions a { padding: 0 !important; }


.reviews ul { margin-left: 0; padding: 0; list-style: none; }
.reviews ul li ul { padding-left: 35px; }
.reviews ul li ul li .review h6 { color: #555; }
.reviews ul li .review-form textarea { min-height: 100px; }
.reviews ul .in-reply-to {
    background: #eee;
    padding: var(--space-xs);
    margin: var(--space-xs) 0;
    position: relative;
}
.reviews ul .new { background: #ffc; margin: -8px -8px 22px; padding: 8px 35px 8px 8px; }
.reviews ul.menu-h.auth-type { padding: 0 0 40px; margin-left: -5px; }
.reviews ul.menu-h.auth-type li { padding-right: 10px; }
.reviews ul.menu-h.auth-type li a { padding: 5px 6px; }
.reviews ul.menu-h.auth-type li a img { top: 0; }
.reviews textarea { height: 100px; min-height: 100px; margin-top: 0; }

.review-form h4 { margin: 0 0 20px; font-weight: normal; }
.review-form-fields p { margin: 0 0 10px; }
.review-form-fields p.review-field a { display: inline; padding: 0; text-decoration: none; }
.review-form-fields label { width: 160px; display: block; float: left; margin: 0 10px 0 0; color: #aaa;}
.review-form-fields input[type="text"] { width: 20em;}
.review-form textarea { min-width: 70%; min-height: 160px; }
.review-form .review-submit { padding:0 0 20px 170px;}
.review-form .userpic { width: 20px; height: 20px; float: left; margin-right: 5px; border-radius: 50%; }
.review-form ul.menu-h.auth-type li a img { float: left; margin-right: 3px; position: relative; top: 2px; }
.review-form ul.menu-h.auth-type { padding-bottom: 20px; }
.review-form label { width: 160px; display: block; float: left; margin: 0 10px 0 0; color: #AAA; }
.reviews span.rate { line-height: 1.3em; display: block; margin: 0.5em 0; }
.reviews span.rate a { text-decoration: none !important; }
.reviews span.rate .icon10 { background-repeat: no-repeat; background-image: url(../../../../wa-content/img/icon10.png); height: 10px; width: 10px; display: inline-block; text-indent: -9999px; }
.reviews span.rate .icon10.star { background-position: -60px -40px; }
.reviews span.rate .icon10.star-empty { background-position: -80px -40px; }

/*input.error, textarea.error { border: 0px solid red; }*/
.errormsg { color: red; margin-left: 170px; display: block; }

.review-form .service-agreement-wrapper { width:100%; margin-bottom:14px; }
.review-form .service-agreement-wrapper .errormsg { margin-left: 0px; }

/* Product badges
----------------- */

.badge { height: 45px; width: 45px; background: #a1fcff; position: absolute; text-align: left; top: -5px; -moz-transform: rotate(30deg); -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); -o-transform: rotate(30deg); transform: rotate(30deg); }
.badge:before { height: 45px; width: 45px; background: inherit; content:""; position: absolute; -moz-transform: rotate(30deg); -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); -o-transform: rotate(30deg); transform: rotate(30deg); }
.badge:after { height: 45px; width: 45px; background: inherit; content:""; position: absolute; -moz-transform: rotate(-30deg); -webkit-transform: rotate(-30deg); -ms-transform: rotate(-30deg); -o-transform: rotate(-30deg); transform: rotate(-30deg); }
.badge span { color: #000 !important; font-weight: bold; position: absolute; z-index: 1983; top: 17px; left: -2px; right: -2px; transform: rotate(-13deg); -webkit-transform: rotate(-13deg); -moz-transform: rotate(-13deg); -o-transform: rotate(-13deg); font-size: 1em; text-align: center; overflow: visible; line-height: 1em; }

.badge.new,
.badge.new:before,
.badge.new:after { background: #ff4; color: #000; }
.badge.low-price,
.badge.low-price:before,
.badge.low-price:after { background: #ffc2e3; color: #300; }
.badge.bestseller,
.badge.bestseller:before,
.badge.bestseller:after { background: #74ff30; color: #030; }
.badge.bestseller span { display: none; }
.badge.bestseller:after { background-image: url('img/thumb-up.png'); background-size: 32px 32px; background-position: 6px 4px; background-repeat: no-repeat; }

.product-gallery .badge,
.product-gallery .badge:before,
.product-gallery .badge:after { width: 70px; height: 70px; }
.product-gallery .badge span { font-size: 1.5em; top: 25px; }
.product-gallery .badge.bestseller:after { background-size: 48px 48px; background-position: 8px 8px; }

.slider .badge,
.slider .badge:before,
.slider .badge:after { width: 70px; height: 70px; }
.slider .badge span { font-size: 1.5em; top: 25px; }
.slider .badge.bestseller:after { background-size: 64px 64px; background-position: 2px 2px; }




/* Cart items
------------- */

.cart .row { min-height: 23px; padding-top: 20px; }
.cart .col.item-thumb { min-width: 55px; }
.cart .col.item-thumb img { position: absolute; margin-top: 0; width: 48px; height: 48px; }
.cart .col.item-remove { float: right; }
.cart .col.total { font-size: 1.8em; font-weight: bold; }
.cart .col.services { margin-top: 5px; }
.cart .col.cart-coupon { min-height: 1px; }
.cart .col.cart-coupon .errormsg { display: inline-block; margin: 0; }
.cart .related { padding: 15px; background: #eee; border-top: 0; margin-bottom: 10px; margin-top: 0; }
.cart .related h4 { font-weight: normal; color: #777; }
.cart input.qty { max-width: 50px; text-align: right; }
.cart .affiliate { text-align: center; padding: 20px; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); }
.cart .featured-shipping-and-payment img { margin-right: 5px; }

.cart-checkout { margin-top: -10px; }

.your-cart-is-empty { padding: 50px; text-align: center; }

.cart #use-coupon { margin-left: 5px; white-space: nowrap; }
.cart .row.highlighted #apply-coupon-code { margin-left: 20px; }

/* Checkout
----------- */

.checkout { margin: 20px 0 0; }
.checkout select { max-width: 264px; }
.checkout-header { margin: 0; color: #999; background: #fff; padding: 20px; }
.checkout-header h3 { margin-bottom: 0; }
.checkout-header h3 a { text-decoration: none; color: #777; font-weight: normal; }
.checkout-header h3 a:hover { color: #a00 !important; }
.checkout-header strong { color: #666; }
.checkout ul.checkout-options { padding-left: 25px; }
.checkout ul.checkout-options li { list-style: none; position: relative; margin-bottom: 50px; clear: both; }
.checkout ul.checkout-options li h3 { font-weight: bold; margin-bottom: 10px; }
.checkout ul.checkout-options li h3 label { margin-right: 10px; }
.checkout ul.checkout-options li .rate { float: right; text-align: center; width: 250px; }
.checkout ul.checkout-options li p { width: 70%; font-size: 0.85em; }
.checkout ul.checkout-options li input[type="radio"] { position: absolute; top: 4px; left: -25px; }
.checkout ul.checkout-options li label input[type="radio"] { top: 7px; }
.checkout ul.checkout-options li img.method-logo { position: relative; float: left; margin-right: 10px; top: -6px; left: 0px; /* adjusted for default 60x32-px logos */ }
.checkout ul.checkout-options li .wa-form { margin-top: 0px; margin-bottom: 30px; }
.checkout ul.checkout-options li .wa-form label input[type="radio"] { position: static; }

.checkout .checkout-result { padding: 60px 0 20px; background: #fff; text-align: center; }
.checkout .checkout-result h1 { font-size: 4em; margin-bottom: 50px; font-weight: bold; }
.checkout .checkout-result .welcome { margin-top: -80px; padding-top: 280px; }
.checkout .checkout-result.error h1 { color: red; }
.checkout .checkout-result .wa-form { margin: 10px auto 20px; width: 400px; float: none; text-align: left; }
.checkout .checkout-result .back { margin-top: 50px; }
.checkout { padding: 0; }
.checkout h2 { padding: 15px 20px 18px; font-weight: normal; margin: 0; background: #f3f3f3; margin-top: 10px; }
.checkout h2 a { text-decoration: none; color: #000; }
.checkout h2 a:hover { color: #a00 !important; }
.checkout h2.upcoming a:hover { color: #000 !important; cursor: default; }
.checkout h2 a.hint { font-size: 0.6em; color: #aaa; text-decoration: none; margin-top: 2px; }
.checkout h2 a.hint strong { text-decoration: underline; }

.checkout .checkout-step.is-done .step-header { position: relative; }
.checkout .checkout-step.is-done .step-header:after { content: ""; position: absolute; top: 0; right: 0; width: 60px; height: 100%; background: transparent url("img/checkout-done.png") 50% no-repeat; background-size: 30px; }

.checkout .checkout-step-content { padding: 20px; background: #fff; }
.checkout ul { list-style: none; padding-left: 0; margin-top: 0; }
.checkout ul li { font-size: 1.1em; margin-bottom: 5px; }
.checkout ul li input[type="radio"] { margin-right: 3px; }
.checkout #login-form h1 { display: none; }
.checkout input.large { font-size: 1.4em; }
.checkout .comment { width: 100%; height: 100px; margin-bottom: 20px; }
.checkout blockquote img { margin-right: 20px; float: left; border-radius: 50%; }
.checkout blockquote p { margin-bottom: 10px; margin-left: 70px; }
.checkout blockquote p span { color: #000; }
.checkout-step { box-shadow: 0 2px 5px -2px rgba(0,0,0,0.1); }

.checkout .errormsg.inline { display: inline; margin-left: 10px; }

.checkout table.table { width: 100%; }
.checkout table.table td { border: none; }

.checkout .last span.loading {left: -10px}

.checkout .wa-form .wa-field input,
.checkout .wa-form .wa-field select { font-size: 1.2em; }
.checkout .wa-form .wa-field .wa-name { padding-top: 0.3em; }
.checkout .wa-form .wa-field.wa-field-email .wa-value input { min-width: 300px; }
.checkout .wa-form .wa-field.wa-field-birthday .wa-value select { margin-right: 5px;  }
.checkout .wa-form .wa-field.wa-field-address p { margin: 0; }
.checkout .wa-form .wa-field.wa-field-address .wa-field-address-zip input { min-width: 100px; width: 20%; }


/* Dialogs
---------- */

.dialog { display: none; }
.dialog-background { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; opacity: 0.8; filter: alpha(opacity=80); z-index: 99; }
.dialog-window .cart { position: fixed; top: 15%; left: 0; right: 0; opacity: 1; z-index: 100; overflow-x: hidden; box-shadow: 0 3px 15px #ddd; margin: 0 auto; text-align: left; width: 400px; bottom: 15%; background: #fff; padding: 25px; }
.dialog-window .cart .added2cart { font-style: italic; }
.dialog-window .cart .purchase { display: block; }
.dialog-window .dialog-close { float: right; color: #bbb; text-decoration: none; font-size: 200%; margin-top: -3px; }

/* Customer account
------------------- */

.order-status { padding: 2px 5px; color: #fff; }
h1 .order-status { font-size: 0.75em; margin-left: 10px; }

/* Swipebox
----------- */

#swipebox-caption { display: none; }
#swipebox-overlay { background: #fff !important; }
#swipebox-action { background: rgba(255,255,255,0.42) !important; opacity: 0.8 !important; border-top: none !important; bottom: 0 !important; }
#swipebox-action.visible-bars { transform: none !important; -webkit-transform: none !important; -o-transform: none !important; }
#swipebox-close,
#swipebox-prev,
#swipebox-next { background-size: 120px 24px; }


/* TABLET only
============== */

@media screen and (min-width: 760px) and (max-width: 1024px) {

	.nav-sidebar { width: 180px; }
	.page-content.with-sidebar { margin-left: 180px; }

	ul.thumbs.mini li { width: 120px !important; }
	ul.thumbs.mini li h5 { max-width: 130px; }

	header ul.flyout-nav li .flyout { padding: 15px 0; }
	.product-sidebar .cart { padding: 20px; }

	.welcome { margin-left: 20px; margin-right: 20px; }

	.slider a h3 { font-size: 2.4em; }
	.bestsellers .bestsellers-header { font-size: 1.6em; }

	ul.thumbs.text-content li { width: 21%; margin-left: 0; margin-right: 25px; }

}

/* MOBILE only
============== */

@media screen and (max-width: 760px) {
	.currency-toggle { margin: 0 0 10px; right: auto; position: static; }

	.content.with-sidebar { padding: 0; margin: 0 !important; }
	.promos ul li { width: 50%; }
	.welcome { margin-left: 0; margin-right: 0; }
	header ul.flyout-nav li .flyout { padding: 15px; }
	header ul.flyout-nav li .flyout .departments ul.menu-v li { width: 42%; }
	.bestsellers .bestsellers-header { font-size: 1.4em; }

	.product-sidebar { width: 100%; float: none; }
	.product-sidebar .cart { padding: 20px; }
	.product-info { margin-right: 0; }

	.bullets { padding: 0px; margin-left: 0; margin-right: 0; }
	.added2cart { background: #ff7; font-weight: bold; display: block; padding: 3px 5px; }
	.add2cart .price,
	.add2cart input[type="submit"] { font-size: 1.2em; }

	#compare-leash,
	.compare-add { display: none; }


	table.features td.name { min-width: 105px; }

	.image#product-core-image { float: none;pointer-events: none; }
	.product-gallery { float: none; width: auto; margin-right: 0; margin-top: 30px; }
	.badge { font-size: 0.9em; }

	ul.thumbs { margin: 0 !important; }
	ul.thumbs li { padding: 0 !important; margin: 0 0 40px; width: 49% !important; font-size: 1em; }
	ul.thumbs li h5 { font-size: 1em; }
	ul.thumbs li .image { height: auto; }
	ul.thumbs li .compare-from-list { display: none; }
	ul.thumbs.mini { margin: 0 0 30px !important; }
	ul.thumbs.mini li { margin-bottom: 30px; width: 120px !important; font-size: 1.0em; border-bottom: none; }
	ul.thumbs.mini li h5 { max-width: 120px; }
	ul.thumbs .image .corner.right { right: 58px; }
	ul.thumbs .added2cart { display: block; padding: 3px 5px; margin-right: 30px; }
	ul.thumbs .purchase { line-height: 1.2em; }
	ul.thumbs.text-content li { width: 45% !important; margin-right: 5px; }



	.review-form-fields label { width: auto; float: none; }
	.review-form-fields input { width: 80%; }
	.review-form textarea { width: 90%; }
	.review-form .review-submit { padding-left: 0; }
	.review-form .wa-captcha img { margin-bottom: 10px; }

	.bullet { width: 100%; }

	.badge,
	.badge:before,
	.badge:after { width: 45px !important; height: 45px !important; }
	.badge span { top: 17px !important; left: -2px !important; right: -2px !important; font-size: 0.9em !important; }
	.badge.bestseller:after { background-size: 40px 40px !important; background-position: 5px 2px !important; }

	.dropdown ul.menu-h.aux { display: none; float: none; }

	/* cart: override cart column widths for better display on mobiles */
	.cart .row { padding: 30px 0 70px; }
	.cart .col.w1 { display: none; }
	.cart .col.w1.item-remove { display: block; width: 10% !important; text-align: right; float: right; }
	.cart .col.item-name { width: 100% !important; font-size: 120%; margin-bottom: 10px; }
	.cart .col.item-qty { float: left; }
	.cart .col.item-total,
	.cart .col.cart-total,
	.cart .col.cart-discount,
	.cart .col.affiliate-discount { font-size: 140%; font-weight: bold; float: right; text-align: right; width: auto; }
	.cart .col.cart-coupon { width: 100% !important; padding-bottom: 20px; }
	.cart .col.cart-total { width: 100%; text-align: center; background: #ffef9f; padding: 20px 0; margin-top: 15px; }
	.cart .col.cart-checkout { width: 100% !important; }
	.cart .col.cart-checkout input { font-size: 150%; display: block; margin-top: 20px; margin-bottom: 10px; width: 100%; }
	.cart #discount-row .col { text-align: center; }
	.cart .related { display: none; }
	.cart .col.featured-shipping-and-payment { width: 100%; }

	.related .bx-wrapper { overflow-x: hidden; }

	.slider a { height: 200px; }
	.slider a h3 { font-size: 2em; margin: 20px 20px !important; }
	.slider p { margin: 0 20px !important; }
	.slider .bx-wrapper .bx-prev,
	.slider .bx-wrapper .bx-next { display: none; }
	.slider.fill-entire-area { box-shadow: none; margin-bottom: 0; }

	.checkout { margin: 0 0 30px; }
	.checkout ul.checkout-options li { width: 100%; }
	.checkout ul.checkout-options li img { display: none; }
	.checkout ul.checkout-options li .rate { min-width: 0; width: auto; max-width: 150px; }
	.checkout ul.checkout-options li .rate.error { padding-top: 5px; }
	.checkout ul.checkout-options li .rate .hint { display: none; }
	.checkout ul.checkout-options li .wa-form.wa-address p { font-size: 1em; }
	.checkout h2 { font-size: 1.2em; padding: 10px 10px 10px; }
	.checkout h2 a.hint { display: none !important; }
	.checkout input.large { margin: 0 auto; display: inline-block; }
	.checkout .checkout-step-content { padding: 10px 10px 30px; }
	.checkout .checkout-step-content.auth ul.menu-v li { padding: 5px 0; }
	.checkout .checkout-result h1 { font-size: 2.5em; }
	.checkout-header { margin: 0px; font-size: 0.8em; text-align: center; }
	.checkout-header .float-right { display: none; }
	.checkout li .wa-form { margin-left: -25px; }
	.checkout .wa-form .wa-field.wa-field-email .wa-value input { min-width: 230px; }

	table.table th,
	table.table td { font-size: 0.75em; }
	table.table td .gray { display: none; }
	table.table td.nowrap { white-space: normal; }
	table.table td.nowrap.bold { white-space: nowrap; }

	.description { overflow-x: hidden; }
	table.rating-distribution td .bar { width: 100px; }
	.dialog-window .cart { top: 52px; left: 0; right: 0; bottom: 0; width: 100%; padding: 0; z-index: 1005020; background: #fafadf; box-shadow: 0 -20px 40px -20px rgba(0,0,0,0.3) inset; }
	.dialog-window #cart-form-dialog { padding: 20px 15px; }
	.dialog-window .cart h4 { font-size: 1.5em; }
	.dialog-window .dialog-close { margin-right: 15px; font-size: 2.8em; margin-top: 15px; }
}

#asdasdasd .owl-dots { display: none; }

.frame { width: 100%; height: 200px; padding: 0; }
.frame .slidee { margin: 0; padding: 0; height: 100%; list-style: none; }
.frame .slidee li { float: left; margin: 0 5px 0 0; padding: 0; width: 300px; height: 100%; }
.frame .slidee li img { max-width: 100%; }

.scrollbar {
	margin: 1em 0;
	height: 2px;
	background: #ccc;
	line-height: 0;
}
.scrollbar .handle {
	width: 100px;
	height: 100%;
	background: #292a33;
	cursor: pointer;
}
.scrollbar .handle .mousearea {
    position: absolute;
    top: -9px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* WIDE
======= */
.position-absolute.bottom-0.right-0.top-0.flex.items-center.justify-end.width-66\%.height-100\% img {
    margin: 0;
}
a.tags.footer-v5__popular-link {
    margin: 15px 0px 0 25px;
}
.qty input {
    width: 40px;
    padding: 5px 0 0 0;
}
.featuresH_q img {
    width: 95%;
    height: inherit;
    border: 1px solid #e7f5f3;
    margin: 27px 0 0 0;
}
.featuresH {
    float: left;
    width: 31%;
}
.block_featuresH {
    overflow: hidden;
}
.s-cart-footer.padding-y-sm.f1 {
    padding: 0 0;
        z-index: 1;
}
.features.divider.q1 {
    padding: 0 0;
    margin: 0 0 -27px 0;
}

@media screen and (min-width: 1300px) {

	.promos ul li a { padding-top: 25px; height: 83px; }
	ul.homepage-bxslider,
	ul.homepage-bxslider li { max-height: 460px; }
	.slider a { height: 460px; }
	.slider a h3 { font-size: 2.8em; }
	ul.thumbs.text-content li { width: 225px; margin-right: 55px; }

}
img.f1.mini-lazyloaded {
    height: 100%;
}
.aspect-ratio-16\:9.flex.flex-center.f1 {
    --aspect-ratio: inherit;
    height: 230px;
}
.aspect-ratio-16\:9.flex.flex-center.f1 figure img {
    max-height: 180px;
}

@media (max-width: 768px){
.position-absolute.bottom-0.right-0.top-0.flex.items-center.justify-end.width-66\%.height-100\% img {
    max-width: inherit;
}
.searchpro__field {
    width: 100% !important;
}
a.mega-nav__logo.height-md.height-lg\@md img {
    margin: 0 25px 0 0px;
}
}












.fancybox__container {
  --fancybox-color: #0d0c22;
  --fancybox-bg: #fff;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
}

.fancybox__toolbar,
.fancybox__nav {
  --f-button-width: 60px;
  --f-button-height: 60px;
  --f-button-border-radius: 0;

  --f-button-color: #0d0c22;
  --f-button-hover-color: #ff3520;

  --f-button-bg: #fff;
  --f-button-hover-bg: #fff;
  --f-button-active-bg: #fff;

  --f-button-svg-width: 32px;
  --f-button-svg-height: 32px;

  --f-button-svg-stroke-width: 1;
  --f-button-svg-filter: none;
}

.fancybox__nav {
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}
.fancybox__footer .f-thumbs__slide__button {
  padding: 0!important;
}

[data-fancybox-toggle-slideshow],
[data-panzoom-action],
[data-fancybox-toggle-fullscreen],
[data-fancybox-toggle-thumbs]{
    display: none;
}




















