body {
	color:#030406;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px x(0,0,0,0.004);
  width:100%;
  font-size: 13px;
}

html.no-scroll {
  margin: 0; 
  height: 100%; 
  overflow: hidden
}

.relative {
	position:relative;
}

.body-wrap {
  position:relative;
  -webkit-transition: transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

/* .body-wrap.cart-open {
  -ms-transform: translate(-400px, 0px);
  -webkit-transform: translate(-400px, 0px);
  transform: translate(-400px, 0px);
} */

h1,h2,h3,h4,h5,h6 {
	margin: 0;
}

.line-height {
	line-height: 2em; 
}

a,
a:hover,
a:focus {
/* a:visited{ */
	color:inherit;
  text-decoration:none;
  outline:none;
}

.btn {
	height:50px;
  padding:0px 30px;
  background:#000;
  color:#fff;
  display:-webkit-inline-box;
  display:-ms-inline-flexbox;
  display:inline-flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  text-transform:uppercase;
  font-weight:bold;
  font-size:1em;
  border-radius:0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position:relative;
}
.btn:not(.btn-open):before {
  position:absolute; 
  left:-2px; 
  bottom:-2px; 
  content:'';
  border-bottom: 10px solid white;
  border-right: 10px solid transparent;
}
.btn.on-grey:not(.btn-open):before {
	border-bottom: 10px solid #f7f7f7;
}
.btn.on-grey:not(.btn-open):after {
	border-top: 10px solid #f7f7f7;
}
.btn:not(.btn-open):after {
  position:absolute; 
  right:-2px; 
  top:-2px; 
  content:'';
  border-top: 10px solid white;
  border-left: 10px solid transparent;
}
.btn.btn-white:not(.btn-open):before {
	border-bottom: 10px solid #000;
}
.btn.btn-white:not(.btn-open):after {
	border-top: 10px solid #000;
}
.btn.btn-white {
	background:#fff;
  color:#000;
}
.btn.btn-white:hover {
	color:#000;
  background:#f7f7f7;
}
.btn:hover,
.btn:active,
.btn:focus {
	color:#fff;
}
.btn.facebook {
	background:#3B5998;
}

.btn.btn-open {
	background:transparent;
/*   border:1px solid #000; */
  color:#000;
  line-height:43px;
  position:relative;
  overflow:hidden;
}

.btn.btn-open:hover {
  color:#fff;
}

.btn.btn-open:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 10px;
  right: 10px;
  content: '';
  border-left: 1px solid #000;
  border-top: 1px solid #000;
}
.btn.btn-open:after {
	display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 10px;
  left: 10px;
  content: '';
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.btn.btn-open span {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -37px;
  bottom: 0;
  left: 10px;
  border: 1px solid #000;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn.btn-open:hover span {
	background:#000;
}

input.standard-input {
  height: 40px;
  padding: 0px 20px;
  outline: none;
  border-radius: 5px;
  font-size: .95em;
  font-weight: 600;
  text-transform:uppercase;
  background: #fff;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

input.standard-input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #aaa;
  color:rgba(0,0,0,0.4);
}

input.standard-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

input.standard-input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

input.standard-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

input.standard-input::-ms-input-placeholder { /* Microsoft Edge */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

.btn i {
	margin-right:7px;
  font-size:90%;
}

.sm {
	display:inline-block;
  vertical-align:middle;
  margin-top: -.11em;
}

.sm:before {
	display:block;
}

.align {
	display:table;
  width:100%;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.inline-flex {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.flex-row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.space-between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.justify-start {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.justify-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.justify-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.align-start {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.align-center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.align-end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.align-stretch {
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
}

.align {
	display:table;
  width:100%;
}

.align-100 {
  height:100%;
}

.align-middle {
	display:table-cell;
  vertical-align:middle;
}

.align-bottom {
	display:table-cell;
  vertical-align:bottom;
}

.align-top {
	display:table-cell;
  vertical-align:top;
}

.block-padding {
	padding-top: 80px;
  padding-bottom: 80px;
}

.block-padding-top {
	padding-top: 80px;
}

.block-padding-bottom {
  padding-bottom: 80px;
}

.image-wrap.grey {
	position: relative;
}

.image-wrap.grey:after {
	content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.03);
}
/* End general styles */

/* Header */
.alertbar {
	min-height:30px;
  background:#000;
  color:#fff;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  font-size:12px;
  font-weight:500;
  text-transform: uppercase;
  position:relative;
  padding:8px 40px;
/*   display:none; */
  text-align:center;
}

.alertbar .alert-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.alertbar .close-alertbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.alertbar .close-alertbar span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.3);
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
}

.close-alertbar {
	cursor:pointer;
}


#header .main-header .logo img {
	height: 50px;
}

#header .main-header {
/* 	padding:20px 0px; */
  border-bottom:1px solid #eee;
  position:relative;
  z-index:9999;
  background:#fff;
}

#header .header-inner.sticky {
	position:fixed;
  left:0;
  top:0;
  width:100%;
  z-index:9999;
}

#header .main-header.sticky {
	position:fixed;
  left:0;
  top:0;
  width:100%;
}

#header .main-menu  {
	font-size:.95em;
  text-transform:uppercase;
  font-weight:600;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

#header .main-menu ul {
/* 	margin:0 -30px; */
  margin: 0 -10px;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
      -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

#header .main-menu .main-nav > li:not(.active):hover > a {
  font-weight: bold;
}

#header .main-menu ul li {
/* 	padding:0px 30px ; */
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
/* 	position: relative; */
}

#header .main-menu ul li.sale {
	color:#c0392b;
}

#header .main-menu ul li .simple-subs {
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  border:1px solid #eee;
  padding:30px 30px;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  -webkit-transition:opacity .2s ease-in-out;
  -o-transition:opacity .2s ease-in-out;
  transition:opacity .2s ease-in-out;
}

#header .main-menu ul li .sub-nav {
	position:absolute;
  top:100%;
  left:0;
  width: 100%;
  background:#fff;
  border:1px solid #eee;
  padding:30px 30px;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  -webkit-transition:opacity .2s ease-in-out;
  -o-transition:opacity .2s ease-in-out;
  transition:opacity .2s ease-in-out;
}

#header .main-menu ul li .simple-subs ul {
	display:block;
  margin:-3px;
}

#header .main-menu ul li .simple-subs ul li {
	padding:3px;
}

#header .main-menu ul li .simple-subs ul li:first-child {
	text-decoration:underline;
  margin-bottom:5px;
  font-weight:bold;
}

#header .main-menu ul li .simple-subs ul li a {
	min-height:0;
}

#header .main-menu ul li .simple-subs ul li a:hover {
	opacity:.8;
}

#header .main-menu ul li:hover .simple-subs,
#header .main-menu ul li:hover .sub-nav {
  opacity:1;
  visibility:visible;
}


#header .main-menu ul.main-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 90px;
}

#header .sub-nav .subs-col .sub-links li a {
  min-height: unset;
}

#header .sub-nav .subs-col .sub-links {
  flex-direction: column;
  margin-right: 40px;
}

#header .sub-nav .subs-col .sub-links-wrap {
  display: flex;
}

#header .sub-nav .suv-nav-inner {
  margin: 0 -40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#header .sub-nav .suv-nav-inner.space-between {
  justify-content: space-between;
}

#header .sub-nav .subs-col {
  padding: 0 40px;
}

#header .sub-nav .subs-col:not(:first-child) {
  border-left: 1px solid #030406;
}

#header .sub-nav .subs-col .sub-title {
  min-height: unset;
  font-size: 1.4em;
  margin-bottom: 15px;
}

#header .sub-nav .subs-col .sub-links:last-child {
  margin-bottom: 15px;
}

#header .sub-nav .subs-col .sub-links li {
  display: flex;
  flex-direction: column;
}

/* #header .sub-nav .subs-col .sub-links {
  margin-top: 30px;
  margin-right: -20px;
  margin-left: -20px;
}

#header .sub-nav .subs-col .sub-links li {
  display: block;
  padding: 0 20px;
} */

#header .sub-nav .subs-col .sub-links .sub-links li:not(:last-child) {
  padding-bottom: 5px;
}

#header .sub-nav .subs-col .sub-links .sub-links {
  flex-direction: column;
  margin-top: 15px;
}



/* #header .main-menu ul.sub-cats li a {
  min-height: unset;
}

#header .main-menu ul.sub-cats {
  margin: 0 -30px;
}

#header .main-menu ul.sub-cats > li {
  flex-direction: column;
  padding: 0 30px;
}

#header .main-menu ul.sub-cats li .sublink {
  font-size: 1.4em;
  margin-bottom: 20px;
}

#header .main-menu .sub-subs ul.sub-cats {
  flex-direction: column;
}

#header .main-menu .sub-subs ul.sub-cats li:not(:last-child) {
  padding-bottom: 5px;
} */

#header .header-icons ul {
  margin:0;
  list-style:none;
  padding:0;
  font-size:17px;
  -webkit-box-pack:end;
      -ms-flex-pack:end;
          justify-content:flex-end;
}

#header .header-icons ul li {
	margin-left:40px;
  position:relative;
}

#header .header-icons ul li:first-child {
	margin-left:0;
}

#header .header-icons ul li.cart-icon {
	font-size:120%;
}

#header .header-icons ul li .amount {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  margin-top: 2.5px;
  font-weight: bold;
}

#header .logo,
#header .header-icons,
#header .menu-button {
	-webkit-box-flex:1;
	    -ms-flex:1;
	        flex:1;
}

#header .menu-button {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

#header .menu-button .toggle-search {
	font-size:19px;
  margin-left:20px;
}

#header .search-wrap {
	position:absolute;
  left:0;
  top:100%;
  margin-top:1px;
  width:100%;
/*   background:#fff;
  border-bottom:1px solid #eee; */
}

#header .search-wrap form {
	position:relative;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:end;
      -ms-flex-pack:end;
          justify-content:flex-end;
}

#header .search-wrap input {
	padding:0;
  width:100%;
  padding-left:50px;
  height:50px;
}

#header .search-wrap .icon {
	position:absolute;
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  left:0;
  top:0;
  opacity:.2;
  font-size:17px;
  padding:0px 15px;
}

.search-wrap {
	display: none;
}

.search-wrap.active {
	display: block;
}
#header .search-wrap .search-inner {
	position:relative;
  background: #fff;
  border: 1px solid #eee;
  border-top: 0;
  width:350px;
}
/* End header */

/* Mobile menu */ 
.menu-button ul {
	margin:0;
  padding:0;
  list-style:none;
}

.menu-button ul li {
  margin: 4px 0px;
  height: 2px;
  border-radius: 2px;
  display: block;
  background: #000;
  width: 22px;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}

.mobile-menu-overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
  z-index:999999;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}

.mobile-menu-overlay.mobile-menu-open {
  opacity:1;
  visibility:visible;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  overflow-x: scroll;
  -ms-transform: translate(-300px, 0px);
  -webkit-transform: translate(-300px, 0px);
  transform: translate(-300px, 0px);
  -webkit-transition: transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  font-size:14px;
  font-weight:500;
}

.mobile-menu.mobile-menu-open {
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
/* .body-wrap.mobile-menu-open {
  -ms-transform: translate(300px, 0px);
  -webkit-transform: translate(300px, 0px);
  transform: translate(300px, 0px);
} */

.mobile-menu ul a {
	color:#000;
}
.mobile-menu ul.sub-menu a {
	color:#aaa;
}

.mobile-menu ul {
	margin:0;
  padding:0;
  list-style:none;
  padding:12px 0px;
  font-size: .95em;
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-menu ul li {
	position:relative;
}
.mobile-menu ul li a {
	display:block;
  padding:12px 20px;
  padding-right:41px;
}
.mobile-menu ul li.sale > a {
	color:#c0392b;
}
.mobile-menu ul li .more-cats {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 44px;
  line-height: 44px;
  text-align: center;
  width: 44px;
}
.mobile-menu ul li .more-cats i {
	-webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.mobile-menu ul li.active > .more-cats i {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-menu ul ul li .more-cats {
	height:23px;
  line-height:23px;
}
.mobile-menu ul ul {
	display:none;
  font-size: 12px;
  padding: 5px 0px;
  padding-left: 24px;
}
.mobile-menu ul ul.brands li:first-child a {
	color:#000;
  text-decoration:underline;
}
.mobile-menu ul ul li {
	border-left: 2px solid #e3e3e3;
}
.mobile-menu ul ul li a {
  padding: 3px 0px;
  padding-left:22px;
  color: #999;
}
.mobile-menu ul ul ul li a {
	padding-left:10px;
}
.mobile-menu ul ul.active {
	display:block;
}
.mobile-menu ul li i.before {
	font-size:11px;
  margin-right:10px;
  color:rgba(0,0,0,0.2);
  width:15px;
}
.mobile-menu .logo {
	padding:20px;
  padding-bottom:10px;
}
.mobile-menu .logo img {
	height:30px;
}
/* End mobile menu */

/* Headlines */
.headlines .headline {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.headlines .headline-1 {
	background-image: url('headline-1.jpg');
}

.headlines .headline-2 {
	background-image: url('headline-2.jpg');
}

.headlines .headline-3 {
	background-image: url('headline-3.jpg');
}
/* End headlines */

/* Products */
.products {
	margin: -10px -3px;
}

.products .product {
	padding: 10px 3px;
}
/* End products */

/* Breadcrumbs */
.breadcrumbs {
	margin: 15px 0;
  font-size:10px;
  text-transform:uppercase;
	font-weight:600;
  color:#aaa;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.breadcrumbs i {
	margin: 0 10px;
}
/* End breadcrumbs */

/* Collection filters */
.price-filter {
  max-width:200px;
}

.price-filter a {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.collection-filter-price {
  height: 5px;
  border: none;
  margin: 0px;
  padding: 0;
  position: relative;
  width: 100%;
}

.collection-filter-price .ui-slider-range {
  background-color: #756A55;
  border: none;
  margin: 0;
  position: absolute;
  height: 5px;
  top: 0;
  z-index: 1;
}

.collection-filter-price .ui-slider-handle {
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 0;
  top: -5px;
  cursor: col-resize;
  border: none;
  background-color: #fff;
  border: 2px solid #756A55;
  outline: none;
  z-index:9;
}

.collection-filter-price .ui-slider-handle:last-child {
	margin-left:-10px;
}

.collection-filter-price:after {
	display:block;
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:#eee;
}

.price-filter-range {
  margin-top: 10px;
  font-size: .9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.price-filter-range .min,
.price-filter-range .max {
  display: inline-block;
}

.price-filter-range .min span,
.price-filter-range .max span {
  font-weight: 600;
}

.price-filter-range .max {
  margin-left: 15px;
}

.filter-wrap {
	margin-bottom: 30px;
}

.filter-wrap:last-child {
	margin-bottom: 0;
}

.sidebar-block .sidebar-block-wrap .sidebar-title i {
	font-size: 13px;
}

.sidebar-block .sidebar-block-wrap .sidebar-title.design-title {
  margin-bottom: 10px;
}
.filter-wrap .filter-title, .sidebar-block .sidebar-block-wrap .sidebar-title {
	margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.sidebar-block .sidebar-block-wrap ul {
  display: none;
}

.filter-wrap .filter-title span {
	font-size: 1.4em;
  font-weight: 700;
}

.filter-wrap .filter-title i,
.sidebar-block .sidebar-block-wrap.active .sidebar-title i {
  transition: .35s all ease-in-out;
}

.filter-wrap.active .filter-title i,
.sidebar-block-wrap.active .sidebar-title i {
  transform: rotate(180deg);
}

/* .filter-wrap .filter-items .filter-item:nth-child(n+6) {
    display: none;
}

.filter-wrap.active .filter-items .filter-item:nth-child(n+6) {
  display: block;
} 

.filter-wrap:not(.active) .filter-items {
  display: none;
} */
.filter-wrap .filter-items {
  display: none;
}

.filter-wrap.active .filter-items {
/* 	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; */
  margin: -10px 0;
}

.filter-wrap .filter-items .ui.checkbox label {
  transition: all .2s ease-in-out;
}

.filter-wrap .filter-items .ui.checkbox label:hover { 
  padding-left: 5px;
  color: #000;
}

.filter-wrap .filter-items .ui.checkbox label:before {
  left: unset;
  right: 0;
}

.filter-wrap .filter-items .ui.checkbox label:after {
  left: unset;
  right: 0;
}

.filter-wrap .filter-items .ui.checkbox label {
  padding-left: 0px;
  font-size: 13px;
}

.sidebar .brand-search input {
  width: 100%;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  margin-bottom: 10px;
}

.sidebar .brand-search input:focus {
  outline:none;
}

@media (max-width: 991px) {
  .sidebar .filters-wrap form {
    padding-bottom: 30px;
  }
}
/* End collection filters */

/* Dropdown */
.ui.selection.dropdown {
	height: 40px;
  min-height: unset;
  border: 1px solid #eee;
  line-height: 40px;
  border-radius: 0px;
  padding: 0 20px;
}

.ui.selection.dropdown>.dropdown.icon {
  padding: 0;
  margin: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  height: 100%;
  width: 40px;
  background: #eee;
  font-weight: 700;
  font-size: 1em;
  color: #797979;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.ui.dropdown>.dropdown.icon:before {
	content: '\f107';
  font-family: "FontAwesome" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.ui.selection.dropdown:hover,
.ui.selection.active.dropdown,
.ui.selection.active.dropdown:hover,
.ui.selection.active.dropdown .menu,
.ui.selection.active.dropdown .menu:hover,
.ui.selection.active.dropdown:hover .menu,
.ui.selection.dropdown:focus {
	border-color: #eee;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ui.selection.dropdown .menu {
	width: 100%;
  margin: 0 -1px;
  border-radius: 0;
}

.ui.selection.dropdown .menu>.item {
  padding: 10px 20px !important;
  line-height: 2em;
  font-size: .8em;
}
/* End dropdown */

/* Checkbox */
.checkbox {
	margin: 0;
}

.ui.checkbox {
	font-size: .9em;
  display: block;
  padding: 7px 0;
}

.ui.checkbox .box,
.ui.checkbox label {
  padding-left: 2.1em;
  cursor: pointer;
}

.ui.checkbox input:checked~.box:after,
.ui.checkbox input:checked~label:after,
.ui.checkbox input:checked~.box:after,
.ui.checkbox input:checked~label:after{
	color: #000 !important;
}

.ui.checkbox .box:before, 
.ui.checkbox label:before {
	border-radius: 0 !important;
}

.ui.checkbox input:checked:focus~.box:before,
.ui.checkbox input:checked:focus~label:before,
.ui.checkbox input:indeterminate:focus~.box:before,
.ui.checkbox input:indeterminate:focus~label:before,
.ui.checkbox input:checked~.box:before,
.ui.checkbox input:checked~label:before,
.ui.checkbox input:focus~.box:before,
.ui.checkbox input:focus~label:before {
	border-color: #D4D4D5 !important;
}
/* End checkbox */


/* Footer */
#footer .main-footer .logo img {
	height: 30px;
}

#footer .footer-bottom .payments img {
	height: 35px;
}
/* End footer */

/* Categories */
.categories {
	margin: -15px;
}

.categories .category {
	padding: 15px;
}

.categories .category img {
	width:100%;
}
/* End categories */

/* Brands */
.brands {
	margin: -15px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.brands .brand {
	padding: 15px;
}

.brands .brand .image-wrap {
	padding:10%;
}

.brands .brand img {
	width:100%;
}
.brands-sec ul {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  margin:0;
  padding:0;
  list-style:none;
  -webkit-box-flex:10;
      -ms-flex-positive:10;
          flex-grow:10;
}
.brands-sec ul li {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.brands-sec ul li:hover {
	color: #000;
  padding-left: 5px;
}
.brands-sec  {
	margin-bottom:50px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
}

.brands-sec .letter-title {
  min-width: 80px;
  max-width: 80px;
  font-size: 2.2em;
  font-weight: 700;
  margin-top:-5px;
}
.letter-overview {
	margin:0;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
 	font-size: 1.5em;
  font-weight: 700;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  padding-bottom:10px;
  border-bottom:1px solid #eee;
  margin-bottom:40px;
}
.letter-overview li {
	padding:7px;
}
/* End brands */

/* Messages */
.message-container {
  z-index: 9999999;
  margin-top: 20px;
  margin-bottom:10px;
  width:100%;
  position:fixed;
  bottom:0;
  left:0;
}
.fixed-content .message-container {
	margin-top:0;
  margin-bottom:20px;
}
.message-container.home-message {
	position: fixed;
  bottom: 0;
  margin-bottom: 20px;
}

.message-container .messages {
  margin: 0;
  position: relative;
}

.message-container .messages .message ul {
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  color:#fff;
  text-align:left;
}

.message-container .messages .message {
  color: #fff;
  padding: 20px;
  background-color: #fff;
  color: #fff;
  border-radius: 0px;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
  padding: 10px;
  width:100%;
}

.message-container .messages .message.error .icon {
  color: #000;
}

.message-container .messages .message.success .icon {
  color: #000;
}

.message-container .messages .message.info .icon {
  color: #000;
}

.message-container .messages .message.error {
  background: #000;
}
.message-container .messages .message.success {
  background: #000;
}
.message-container .messages .message.info {
  background: #000;
}

.message-container .messages .message .icon {
	width:35px;
}

.message-container .messages .message .icon i {
  font-size: 16px;
  background: #fff;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 100%;
  -webkit-box-shadow: 0px 0px 26px 3px rgba(0,0,0,0.08);
  box-shadow: 0px 0px 26px 3px rgba(0,0,0,0.08);
  text-align:center;
}

.message-container .messages .message .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  padding-left:20px;
}

.message-container .messages .message .button {
	padding-left:10px;
  text-align:right;
}

.message-container .messages .message .button .btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.gui-messages {
	display:none !important;
}
/* End Messages */

/* index */
.home-block {
/* 	padding-bottom:50px; */
  margin-bottom:50px;
  border-bottom:1px solid #eee;
}
.home-block:first-child {
	margin-top:20px;
}
.home-block:last-child {
	border-bottom:none;
}

.home-banner img {
	width:100%;
}

.banner-row {
	margin:-7px;
}

.banner-col {
	padding:7px;
}

.home-banner .text {
	padding:50px 0px;
  text-align:center;
}

.title-featured .title {
	font-size:2.2em;
  font-weight:700;
/*   text-transform:uppercase; */
}

.title-featured .subtitle {
  font-size: .95em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top:10px;
  display:block;
}

.title-featured .subtitle span {
	position:relative;
}

.title-featured .subtitle span:after {
  content:'';
	height:2px;
  width:100%;
  top:100%;
  left:0;
  background:#000;
  display:block;
  position:absolute;
  width:0;
  -webkit-transition: width ease-in-out .15s;
  -o-transition: width ease-in-out .15s;
  transition: width ease-in-out .15s;
}

@media(min-width:1200px) {
.home-banner:hover .title-featured .subtitle span:after {
	width:100%;
}
}

.title-featured a.subtitle:hover span:after {
	width:100%;
}

.home-brands .brands-simple {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
  -ms-flex-pack:distribute;
      justify-content:space-around;
  text-align:center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-brands .brands-simple ul {
	margin:0;
  padding:0;
  list-style:none;
}

.home-brands .title-featured {
	margin-bottom:50px;
  text-align:center;
}

/* footer */
#footer .main-footer {
	border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  padding:15px 0;
  font-size:.95em;
}
#footer .main-footer ul {
	margin:0;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#footer .main-footer .socials a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  width:30px;
  height:30px;
  background:#000;
  color:#fff;
  border-radius:100%;
}
#footer .main-footer .socials li {
	padding:0px 5px;
}
#footer .main-footer .footer-links {
  text-transform:uppercase;
}
#footer .main-footer .footer-links ul {
	margin:-5px -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#footer .main-footer .footer-links ul li {
	padding:5px 15px;
}
#footer .main-footer .visit,
#footer .main-footer .newsletter {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#footer .main-footer .visit .title,
#footer .main-footer .newsletter .title { 
	text-transform:uppercase;
  font-weight:700;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#footer .main-footer .newsletter .title {
	margin-right:15px;
}
#footer .main-footer .visit .title:after {
	content:'';
  display:block;
  height:1px;
  background:#000;
  width:50px;
  margin-left:10px;
  margin-right:10px;
}
#footer .main-footer form input {
	border-bottom:1px solid #eee;
  border-radius:0;
  padding:0px;
  height:30px;
}
#footer .copyright {
	padding:15px 0px;
  font-weight:600;
  color:#aaa;
  text-align:center;
}
/* end footer */

/* collection */
#collection,
#productpage {
	margin-bottom:50px;
}
.custom-row {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
}
.col-side {
	min-width:200px;
  max-width:200px;
  margin-right:40px;
}
.col-main {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
}
.products {
	margin: -10px -3px;
}
.products .product {
	padding: 10px 3px;
}
.products .product img {
	width:100%;
}
.products .product .image-wrap {
	position:relative;
}
.products .product .image-wrap .sec {
	position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  opacity:0;
 	-webkit-transition: all .2s ease-in-out;
 	-o-transition: all .2s ease-in-out;
 	transition: all .2s ease-in-out;
  z-index:9;
}
.products .product.img-loaded.has-sec:hover .image-wrap .sec {
	opacity:1;
}
.products .product .info {
	margin-top:25px;
  text-align:center;
  font-size:1.14em;
}

.products .product .info .brand {
  text-transform:uppercase;
  font-weight:600;
}

.products .product .info .title-wrap,
.products .product .info .price-wrap {
	position:relative;
}



.products .product .variants-overlay  {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 10px 20px;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
}
/* .products .product.dev .variants-overlay {
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 10px 20px;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
} */

.products .product.has-vars:hover .variants-overlay {
	opacity:1;
  visibility:visible;
}

.products .product .info .add-wish {
	position:absolute;
  left:0;
  top:0;
  width:100%;
  background:#fff;
  opacity:0;
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
}

.products .product:hover .info .add-wish {
	opacity:1;
}

.products .product .info .add-wish i {
	margin-right:8px;
  margin-top:0;
}

.products .product .variants-overlay ul {
	margin:0;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
}
.products .product.dev .variants-overlay ul {
	flex-wrap: wrap; 
}

.products .product .variants-overlay ul li {
	padding:0px 5px;
}

.products .product .variants-overlay ul li a.active {
	font-weight:bold;
}

.products .product .variants-overlay ul li.disabled {
	opacity:.3;
  pointer-events:none;
  text-decoration:line-through;
}

.products .product .info .product-title {
	margin-top:10px;
  display:block;
  opacity:.5;
}

.products .product .info  .price {
	margin-top:10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
}

.products .product .info  .price .price-old {
	font-size:90%;
  margin-right:15px;
  color:#aaa;
  text-decoration:line-through;
}

.products .product .info  .price .price-old:empty,
.products .product .info  .price .discount:empty {
	display:none;
}

.products .product .info  .price .discount {
/* 	font-size:90%; */
  margin-left:15px;
  color:#c0392b;
  color:#aaa;
}

.products .product .button {
	margin-top:20px;
}

.sidebar .sidebar-block {
	margin-bottom:20px;
}

.sidebar .sidebar-block ul {
	margin:0;
  padding:0;
  list-style:none;
  color:#555;
}

.sidebar .sidebar-title {
	font-size:1.4em;
  margin-bottom:10px;
}

.sidebar .sidebar-block ul a {
  padding:3px 0px;
  display:block;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.sidebar .sidebar-block ul li:hover a,
.sidebar .sidebar-block ul a.active {
	color:#000;
  padding-left:5px;
}

.sort-select .text {
	font-weight:600;
  text-transform:uppercase;
  padding:5px 0px;
  white-space: nowrap;
  margin-left: 0px;
}

.sort-select .text i {
	margin-left:7px;
  margin-top:-0.18em;
}

.open-filters {
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 0px;
  white-space: nowrap;
  margin-left: 0px;
  cursor: pointer;
}

.open-filters i {
	margin-left:7px;
  margin-top:-0.18em;
}

.sort-select select {
	-webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border:none;
  padding:0;
  background:transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  right:0;
  left:0;
  cursor:pointer;
}

.sort-select {
	position:relative;
  cursor:pointer;
}

.products {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.row [class*=col-]{
    margin:0 -.3px;
}
/* end collection*/

/* productpage */
#productpage .product-images {
	margin:-7px;
}
#productpage .product-images .image {
	padding:7px;
}
#productpage .product-images .image img {
	width:100%;
}
#productpage .product-info  {
	padding-top:50px;
}
#productpage .product-info .brand {
  text-transform: uppercase;
  font-weight: 600;
  font-size:1.25em;
}
#productpage .product-info-col {
	margin-left:50px;
  min-width:500px;
  max-width:500px;
}
#productpage .product-images-col {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
}
#productpage .product-info-col #color-variants {
  margin-bottom: 20px;
}
#productpage .product-info-col #color-variants .color-variant.active img {
	border: 1px solid #000;
}
#productpage .product-info-col #color-variants .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#productpage .product-info-col #color-variants .owl-prev.disabled, 
#productpage .product-info-col #color-variants .owl-next.disabled  {
	opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}
#productpage .product-info-col #color-variants .owl-prev, 
#productpage .product-info-col #color-variants .owl-next  {
  opacity: 1;
  visibility: visible;
  font-size: 22px;
}
#sizeguide-popup {
  max-width: 800px;
  margin: 30px;
  padding: 0;
}
#sizeguide-popup img {
  width: 100%;
  height: auto;
}
#productpage .product-info .sizeguide-btn {
	display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
}
#productpage .product-info .product-title {
	font-size:2em;
  margin-top:10px;
  margin-bottom:50px;
}
#productpage .product-info .price-sku {
	margin-bottom:50px;
}
#productpage .product-info .btn {
	width:100%;
}
#productpage .product-info .cart {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#productpage .product-info .cart .btn.add-wish {
	min-width:50px;
  max-width:50px;
  margin-left:20px;
  padding:0;
}
#productpage .product-info .cart .btn.add-wish i {
	margin:0;
  font-size:16px;
}
#productpage .product-info .non-eu {
	color:#aaa;
  font-size:90%;
  margin-top:10px;
  text-align:center;
  padding-right:70px;
}
#productpage .product-images .productpage-slider {
  margin-bottom: 20px;
}

#productpage .product-images .productpage-slider .image-wrap {
	padding: 10%;
}

#productpage .product-images .thumbs {
	margin: -10px;
}

#productpage .product-images .thumbs .thumb {
	padding: 10px;
  cursor: pointer;
}

#productpage .product-images .thumbs .thumb .image-wrap {
	padding: 7%;
}

#productpage .product-images .thumbs .thumb .image-wrap img {
  opacity: .6;
}

#productpage .product-images .thumbs .thumb.active .image-wrap img {
	opacity: 1;
}

#productpage .product-info .product-configure {
	margin-bottom:20px;
}

.configure-select {
  height: 50px;
  padding: 0px 25px;
  color: #000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.05em;
  border-radius: 0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: relative;
  overflow:hidden;
  width:100%;
  cursor:pointer;
}

.configure-select select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
}

.configure-select:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 10px;
  right: 10px;
  content: '';
  border-left: 1px solid #000;
  border-top: 1px solid #000;
}
.configure-select:after {
	display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 10px;
  left: 10px;
  content: '';
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.configure-select .corners {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -41px;
  bottom: 0;
  left: 10px;
  border: 1px solid #000;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.configure-select:hover .corners {
	background:#f7f7f7;
}

#productpage .product-info .price {
	font-size:1.4em;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:baseline;
      -ms-flex-align:baseline;
          align-items:baseline;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}
#productpage .product-info .price .price-new {
	font-weight:600;
}
#productpage .product-info .price .price-old {
	font-size:90%;
  color:#aaa;
  margin-left:10px;
  text-decoration:line-through;
}
#productpage .product-info .price .price-excl {
	font-size:70%;
  color:#aaa;
  width:100%;
}
#productpage .related-products {
	padding-top:50px;
  border-top:1px solid #eee;
  margin-top:50px;
}
#productpage .related-products .title-featured {
	margin-bottom:50px;
}
#productpage .related-products .products {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}
.image-fancy .fancybox-slide--image {
	background:#ececec;
}
#productpage .product-tabs {
	margin-top:50px;
}
#productpage .product-tabs .tabs {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  margin:0;
  padding:0;
  margin-bottom:15px;
  list-style:none;
  text-transform:uppercase;
  font-weight:600;
}
#productpage .product-tabs .tabs li {
	margin-right:50px;
  color:#aaa;
}
#productpage .product-tabs .tabs li.active,
#productpage .product-tabs .tabs li:hover{
	color:#000;
  text-decoration:underline;
}
#productpage .product-tabs .tabs li:last-child {
	margin:0;
}
.tabs-wrap .pages .page {
	display:none;
  padding:25px;
  background:#f7f7f7;
}
.tabs-wrap .pages .page.active {
	display:block;
}
.tabs-wrap .pages .page p:last-child {
	margin-bottom:0;
}
#productpage .share-product {
	margin-top:50px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#productpage .share-product .title {
	font-size:.95em;
  font-weight:600;
  text-transform:uppercase;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#productpage .share-product .title:after {
	content:'';
  display:block;
  width:50px;
  height:1px;
  background:#000;
  margin-left:10px;
}
#productpage .share-product ul {
	margin:0;
  padding:0;
  margin-left:10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  list-style:none;
}
#productpage .share-product ul li {
	margin-right:10px;
}
#productpage .share-product ul li:last-child {
	margin-right:0;
}
#productpage .share-product ul li a {
	min-width:30px;
  max-width:30px;
  height:30px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  background:#000;
  color:#fff;
  border-radius:100%;
}
#productpage .request-block {
	padding:30px;
  background:#f7f7f7;
}
#productpage .request-block .title {
	font-size:1.4em;
  margin-bottom:5px;
}
#productpage .request-block .text {
	margin-bottom:20px;
  line-height:1.7em;
}
#productpage .request-block .text a {
	text-decoration:underline;
}
#productpage .request-message {
	margin-top:15px;
  padding:15px;
  background:#f7f7f7;
  border-left:5px solid #27ae60;
}
#productpage .request-message a {
	text-decoration:underline;
}
/* end productpage */

body .wsa-cookielaw {
  min-height: 60px !important;
  height:auto !important;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #000;
  border: none;
  top: auto;
  bottom: 0;
  font-family:inherit;
  font-weight:normal;
  font-size:1em;
}

body {
	margin-top:0 !important;
}

body .wsa-cookielaw-link,
body .wsa-cookielaw-link:hover {
	color:#eee;
}

.wsa-cookielaw-button-green {
	border: none;
  background: #fff;
  border-radius: 0;
  text-shadow: none;
  color: #000;
  height: 35px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 20px;
  text-transform: uppercase;
  font-weight: 600;
  position:relative;
}

.wsa-cookielaw-button-green:before {
  position: absolute;
  left: -2px;
  bottom: -2px;
  content: '';
  border-bottom: 10px solid #000;
  border-right: 10px solid transparent;
}

.wsa-cookielaw-button-green:after {
  position: absolute;
  right: -2px;
  top: -2px;
  content: '';
  border-top: 10px solid #000;
  border-left: 10px solid transparent;
}
  
.wsa-cookielaw-button-green:hover {
  background: #fff;
  border: none;
  color:#000;
}

/* login popup */
#login-popup {
  display:none;
}

.login-message {
	color:red;
}

.mobile-popup .popup-inner {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 0px;
  position:relative;
}

.fancybox-slide #login-popup {
	margin:30px 0px;
  padding:40px 50px;
  background:#fff;
  width:100%;
  max-width:420px;
  border-radius:0px;
  text-align:center;
  -webkit-box-shadow: 0px 2px 40px 8px rgba(0,0,0,0.08);
    box-shadow: 0px 2px 40px 8px rgba(0,0,0,0.08);
}

/* #login-popup .fancybox-close-small {
	display:none;
} */

#login-popup .title-small {
	margin-bottom: 40px;
  font-size:2em;
}

.fancybox-bg {
  background: #000;
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: none;
       -o-transition-timing-function: none;
          transition-timing-function: none;
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    -webkit-transition-timing-function: none;
         -o-transition-timing-function: none;
            transition-timing-function: none;
}

#login-popup form input {
/* 	height:50px;
  
    width:100%; */
  margin-bottom:10px;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  padding: 0px;
  height: 40px;
  background:transparent;
  width:100%;
}

#login-popup form input:last-child {
	margin-bottom:10px;
}

#login-popup .buttons {
	margin-top:30px;
}

#login-popup .buttons .btn {
	margin-bottom:10px;
  width:100%;
}

#login-popup .buttons .btn:last-child {
	margin-bottom:0;
}

#login-popup .options {
  margin-top: 20px;
  font-size: .9em;
  margin-bottom: 50px;
}

#login-popup .options .or {
	display:block;
  opacity:.85;
  margin:3px 0px;
}

#login-popup .options a {
	font-weight:bold;
}
/* end login popup */

#cart-page .cart-row {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
}

#cart-page .cart-body-col {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
}

#cart-page .cart-total-col {
	min-width:470px;
  max-width:470px;
  margin-left:60px;
}

#cart-page .total-block {
	padding:30px;
  position: relative;
  border:1px solid #ddd;
}

#cart-page .total-block:before {
  display: block;
  position: absolute;
  bottom: -1px;
  left: -1px;
  width:10px;
  height:10px;
  background:#fff;
  content: '';
  z-index:9;
}

#cart-page .total-block:after {
  display: block;
  position: absolute;
  right: -1px;
  top: -1px;
  width:10px;
  height:10px;
  background:#fff;
  content: '';
  z-index:9;
}

#cart-page .total-block > .corner-left {
  height: 10px;
  width: 1px;
  background: #ddd;
  display: block;
  position: absolute;
  left: 4px;
  bottom: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

#cart-page .total-block > .corner-right {
  height: 10px;
  width: 1px;
  background: #ddd;
  display: block;
  position: absolute;
  right: 4px;
  top: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

#cart-page .total-block .btn {
	width:100%;
  margin-bottom:20px;
}

#cart-page .total-block .payments ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content: flex-start;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  list-style:none;
  margin:0;
  padding:0;
  margin-top:20px;
}

#cart-page .total-block .payments ul img {
	max-width:58px;
}

#cart-page .total-block table {
	width:100%;
  margin-bottom:100px;
  font-size:1.14em;
}

#cart-page .total-block table td:last-child {
	text-align:right;
  font-weight:600;
}

#cart-page .total-block table tr:last-child td {
	padding-top:20px;
  border-top:1px solid #ddd;
  font-size:110%;
}

#cart-page .total-block table tr td {
	padding-bottom:20px;
}

#cart-page .total-block .total-title {
	margin-bottom:60px;
  text-align:center;
}

#cart-page .total-block .total-title  .title {
	font-size:2em;
}

#cart-page .total-block .total-title  .items {
  font-size: .95em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

#cart-page .cart-table {
	width:100%;
}

#cart-page .cart-table .image {
	margin-right:20px;
}

#cart-page .cart-table .image img  {
	width:135px;
}

#cart-page .cart-table td {
	padding:20px 0px;
  background:#f7f7f7;
}
#cart-page .cart-table td:first-child {
	padding-left:20px;
}
#cart-page .cart-table td:last-child {
	padding-right:20px;
}

#cart-page .cart-table .info-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
}

#cart-page .cart-table .info-wrap .info {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  padding:10px 0px;
}

.fixed-pages {
	padding-top:50px;
  padding-bottom:50px;
}

#cart-page .cart-table .info .brand {
  text-transform: uppercase;
  font-weight: 600;
  font-size:1.14em;
  margin-bottom:5px;
}

#cart-page .cart-table .info .title {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  font-size:1.5em;
}

#cart-page .cart-table .info .title .items {
	color:#aaa;
  font-size:70%;
}

#cart-page .cart-table .extra-info {
	margin-top:5px;
}

#cart-page .cart-table .extra-info ul {
	margin:0;
  padding:0;
  list-style:none;
}

#cart-page .cart-table .subtotal {
	font-weight:600;
  font-size:1.15em;
}

#cart-page .cart-table .option-icons {
	font-size:20px;
  color:#aaa;
}

#cart-page .cart-table .input-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  position:relative;
  overflow:hidden;
}

#cart-page .cart-table .input-wrap input {
	width:50px;
  height:50px;
  text-align:center;
  border-radius:0;
  border:1px solid #000;
}

#cart-page .cart-table .input-wrap .change {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -ms-flex-pack:distribute;
      justify-content:space-around;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  width:20px;
  background:#000;
  color:#fff;
  font-weight:bold;
  font-size:16px;
  position:relative;
}

#cart-page .cart-table .input-wrap .change:after {
  position: absolute;
  right: -2px;
  top: -2px;
  content: '';
  border-top: 10px solid #f7f7f7;
  border-left: 10px solid transparent;
}

#cart-page .cart-table .input-wrap:after {
  position: absolute;
  left: -2px;
  bottom: -2px;
  content: '';
  border-bottom: 10px solid #f7f7f7;
  border-right: 10px solid transparent;
}

#cart-page .cart-table .input-wrap:before {
  content:'';
  height: 10px;
  width: 1px;
  background: #000;
  display: block;
  position: absolute;
  left: 1px;
  bottom: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

#cart-page .cart-table th {
	padding:15px 0px;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
  line-height:normal;
  position:relative;
  font-size:1.14em;
}

#cart-page .cart-table th:first-child {
  border-left:1px solid #ddd;
	padding-left:20px;
}
#cart-page .cart-table th:last-child {
	padding-right:20px;
  border-right:1px solid #ddd;
}

#cart-page .cart-table th:first-child:after {
  content: '';
  display: block;
  height: 10px;
  width: 12px;
  border-right: 1px solid #ddd;
  height: 10px;
  background: #fff;
  display: block;
  position: absolute;
  left: -7px;
  bottom: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}
#cart-page .cart-table th:last-child:after {
  content: '';
  display: block;
  height: 10px;
  width: 12px;
  border-left: 1px solid #ddd;
  height: 10px;
  background: #fff;
  display: block;
  position: absolute;
  right: -7px;
  top: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}
tr.spacer {
	height:25px;
}
#cart-page .cart-table tr.spacer:last-child td {
  border-bottom:1px solid #eee;
  background:#fff;
  padding:0;
}
#cart-page .discount-block {
	padding-top:40px;
}
#cart-page .discount-block form {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#cart-page .discount-block .input-wrap {
	border:1px solid #000;
  margin-right:20px;
  position:relative;
  width:300px;
}
#cart-page .discount-block .input-wrap:before {
  content: '';
  display: block;
  height: 10px;
  width: 12px;
  border-right: 1px solid #000;
  height: 10px;
  background: #fff;
  display: block;
  position: absolute;
  left: -7px;
  bottom: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}
#cart-page .discount-block .input-wrap:after {
  content: '';
  display: block;
  height: 10px;
  width: 12px;
  border-left: 1px solid #000;
  height: 10px;
  background: #fff;
  display: block;
  position: absolute;
  right: -7px;
  top: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}
#cart-page .discount-block input {
	height:50px;
  border-radius:0;
  width:100%;
}
#cart-page .upsell-products {
	margin-top:50px;
  padding-top:50px;
  border-top:1px solid #eee; 
}
#cart-page .upsell-products .title-featured {
	margin-bottom:50px;
}
.title-small {
	font-size:1.5em;
  margin-bottom:20px;
}
#cart-page .non-eu {
  color: #aaa;
  font-size: 11px;
  display:block;
}

.status-bar {
	margin-bottom:30px;
}
.status-bar .bar {
	height:3px;
  background:#f7f7f7;
  margin:0px 50px;
  position:relative;
  margin-bottom:20px;
}
.status-bar .bar .dot {
	position:absolute;
  display:block;
  width:20px;
  height:20px;
  border:1px solid #eee;
  border-radius:100%;
  top:50%;
  margin-top:-10px;
  background:#fff;
  margin-left:-10px;
  text-align: center;
  font-size: 9px;
  line-height: 21px;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.status-bar .bar .dot.active {
	border-color:#000;
}
.status-bar .bar .dot.done {
  border-color:#000;
	background-color:#000;
}
.status-bar .bar .dot:nth-child(1) {
	left:0;
}
.status-bar .bar .dot:nth-child(2) {
	left:33.3333%;
}
.status-bar .bar .dot:nth-child(3) {
	left:66.6666%;
}
.status-bar .bar .dot:nth-child(4) {
	left:100%;
}
.status-bar .bar .active-bar {
	float:left;
	width:0;
  background:#000;
  height:3px;
  -webkit-transition: width .3s ease-in-out;
  -o-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
}
.status-bar .bar .active-bar.done-2 {
	width:33.3333%;
}
.status-bar .bar .active-bar.done-3 {
	width:66.6666%;
}
.status-bar .bar .active-bar.done-4,
.status-bar .bar .active-bar.done-all {
	width:100%;
}
.status-bar ul {
	margin:0;
  padding:0;
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}
.status-bar ul li {
	width:100px;
  text-align:center;
  opacity:.7;
}
.status-bar ul li.active {
	opacity:1;
}
.status-bar ul li.done {
	color:#000;
  opacity:1;
}
body .gui-progressbar {
	display:none;
}

.remove-shipping {
	margin-left:5px;
  color:#aaa;
}

#cart-page .total-block table small {
	color:#aaa;
  font-size: 11px;
  display: block;
}

.shipping-costs-block {
  padding: 20px;
  background: #f7f7f7;
  margin-bottom: 30px;
  display:none;
}

.shipping-costs-block .input-wrap {
  border: 1px solid #000;
  position: relative;
  -webkit-box-flex:10;
      -ms-flex-positive:10;
          flex-grow:10;
  margin-right:10px;
  z-index:0;
}

.shipping-costs-block .input-wrap:before {
  content: '';
  display: block;
  height: 10px;
  width: 12px;
  border-right: 1px solid #000;
  height: 10px;
  background: #f7f7f7;
  display: block;
  position: absolute;
  left: -7px;
  bottom: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

.shipping-costs-block .input-wrap:after {
  content: '';
  display: block;
  height: 10px;
  width: 12px;
  border-left: 1px solid #000;
  height: 10px;
  background: #f7f7f7;
  display: block;
  position: absolute;
  right: -7px;
  top: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

.shipping-costs-block .input-wrap input {
  height: 50px;
  border-radius: 0;
  width: 100%;
}

.shipping-costs-block .input-block {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

#cart-page .total-block .shipping-costs-block .btn {
	margin:0;
  width:auto;
}

.shipping-costs-block select {
	height:50px;
  opacity:0;
}

.ui.selection.dropdown {
	width:100%;
  height:50px;
  margin-bottom:10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index:99 !important;
}
.ui.search.selection.dropdown>input.search {
	height:100%;
}

.shipping-costs-block .radio-block {
	margin-top:20px;
  padding-top:10px;
  border-top:1px solid #ddd;
}

.shipping-costs-block .radio-block input {
	margin-right:5px;
}

.toggle-shipping-costs {
	display:block;
  margin-bottom:30px;
  text-decoration:underline;
}
.toggle-shipping-costs i {
	margin-left:7px;
}


#newsletter-popup {
	padding:0;
  display:none;
}

#newsletter-popup .text {
	padding:100px 50px;
  max-width:450px;
  position:relative;
}

#newsletter-popup .title-wrap {
  margin-bottom: 30px;
}

#newsletter-popup .title-wrap .title,
#newsletter-popup .success .title{
  font-size: 30px;
}

#newsletter-popup .title-wrap .subtitle,
 #newsletter-popup .success .subtitle{
  margin-top: 5px;
  font-size:15px;
}

#newsletter-popup  .input-wrap {
	margin-bottom:30px;
}

#newsletter-popup form input {
  border-bottom: 1px solid #eee;
  border-radius: 0;
  padding: 0px;
  height: 40px;
  background: transparent;
  width: 100%;
}

#newsletter-popup form input.error {
	border-color:red;
}

#newsletter-popup form .btn {
  width: 100%;
  text-align: center;
  padding: 0px 10px;
}

#newsletter-popup .image {
  background: url(newsletter-popup-image.jpg) no-repeat center center;
  background-size: cover;
  width:50%;
}

#newsletter-popup .success {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  bottom: 0;
  right: 0;
  z-index: 9;
/*   text-align: center; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
/*   justify-content: center; */
/*   font-size: 20px; */
  padding: 40px;
}

#newsletter-popup .error {
    margin-bottom: 10px;
    color: red;
    font-weight: 500;
}
  
#newsletter-popup .success .discount-code {
	font-size:40px;
  display:block;
  margin-top:20px;
}

.fancybox-container {
	font-family:inherit;
}

#brands-page .title-featured,
#catalog .title-featured,
#textpage .title-featured {
	margin-bottom:30px;
}

#brands-page,
#catalog,
#textpage {
	padding-bottom:50px;
}

#catalog .categories .category .category-title {
	margin-top: 10px;
}

.cart-side ::-webkit-scrollbar,
.cart-side .cart-body  ::-webkit-scrollbar,
.filter-side ::-webkit-scrollbar { 
    display: none; 
}

/* CART */ 
.body-wrap {
  position:relative;
  -webkit-transition: transform .2s linear;
  -o-transition: transform .2s linear;
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear, -webkit-transform .2s linear;
}

/* .body-wrap.cart-open {
  -ms-transform: translate(-600px, 0px) !important;
  -webkit-transform: translate(-600px, 0px) !important;
  transform: translate(-600px, 0px) !important;
} */
.cart-overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:9999999;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out;;
  -o-transition: opacity .2s ease-in-out, visibility .2s ease-in-out;;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out;;
}

.cart-overlay.cart-open {
  opacity:1;
  visibility:visible;
}

.cart-side {
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  -ms-transform: translate(500px, 0px);
  -webkit-transform: translate(500px, 0px);
  transform: translate(500px, 0px);
  -webkit-transition: transform .2s linear;
  -o-transition: transform .2s linear;
  -webkit-transition: -webkit-transform .2s linear;
  transition: -webkit-transform .2s linear;
  transition: transform .2s linear;
  transition: transform .2s linear, -webkit-transform .2s linear;
  overflow:hidden;
  font-size:1.1em;
}

.cart-side .cart-inner {
  overflow-y: scroll;
  overflow-x: hidden;
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
}

.cart-side.cart-open {
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.cart-side .cart-body {
	overflow-x:scroll;
}

.cart-inner {
  opacity:0;
  -ms-transform: translate(30px, 0px);
  -webkit-transform: translate(30px, 0px);
  transform: translate(30px, 0px);
  -webkit-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.cart-side.cart-open .cart-inner {
  opacity:1;
	-ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.cart-side .no-cart-products {
  font-size:13px;
  padding:20px;
  font-style:italic;
}

.cart-side table {
  width:100%;
}

.cart-side .cart-title-wrap {
  border-bottom:1px solid #eee;
  -webkit-transition: padding .2s ease-in-out;
  -o-transition: padding .2s ease-in-out;
  transition: padding .2s ease-in-out;
  position:relative;
}

.cart-side:hover .cart-title-wrap {
  padding-right:60px;
}

.cart-side .close-cart {
  position:absolute;
  height:100%;
  width:60px;
  right:0;
  top:0;
  text-align:center;
  background:#000;
  color:#fff;
  -webkit-transition: transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -ms-transform: translate(100%, 0px);
  -webkit-transform: translate(100%, 0px);
  transform: translate(100%, 0px);
  cursor:pointer;
}

.cart-side:hover .close-cart {
  -ms-transform: translate(0%, 0px);
  -webkit-transform: translate(0%, 0px);
  transform: translate(0%, 0px);
}

.cart-side .cart-title {
  padding:20px;
}

.cart-side .cart-title .title {
  font-size:18px;
  font-weight:700;
}

.cart-side .cart-title .items {
  font-size:12px;
  color:#aaa;
}

.cart-side .cart-products {
	padding:20px;
}

.cart-side .cart-products table {
  width:100%;
}

.cart-side .cart-products table td {
  padding:15px 10px;
/*   border-bottom:1px solid #eee; */
  background:#f7f7f7;
}

.cart-side .remove-product {
	color:#aaa;
}

.cart-side .cart-products table tr.spacer {
	height:15px;
}

.cart-side .cart-products table td:first-child {
  padding-left:15px;
}

.cart-side .cart-products table td:last-child {
  padding-right:15px;
}

.cart-side .cart-products .image-wrap {
  width:75px;
}

.cart-side .cart-products .image-wrap img {
  width:100%;
}

.cart-side .cart-products .info a.title {
  display:block;
  font-size:13px;
  text-transform:uppercase;
  margin:3px 0px;
  display: block;
  opacity: .5;
}

.cart-side .cart-products .info .brand {
  text-transform: uppercase;
  font-weight: 600;
  font-size: .9em;
}

.cart-side .cart-products .info a.title .qty {
	color: #959595;
  font-size:.85em;
}

.cart-side .cart-products .info .extra-info .var {
	margin-bottom: 3px;
  color: #959595;
}

.cart-side .cart-products .info .extra-info {
  font-size:12px;
}

.cart-side .cart-products .info .price {
  font-weight:bold;
}

.cart-side .cart-total {
/*   position:absolute;
  bottom:0;
  left:0; */
  width:100%;
  background:#fff;
/*   border-top:1px solid #eee; */
/*   height:70px; */
  padding:20px;
}

.cart-side .cart-total .inner:before {
  display: block;
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 10px;
  height: 10px;
  background: #fff;
  content: '';
  z-index: 9;
}

.cart-side .cart-total .inner:after  {
  display: block;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 10px;
  height: 10px;
  background: #fff;
  content: '';
  z-index: 9;
}

.cart-side .cart-total .inner {
	position:relative;
}

.cart-side .cart-total .corner-left {
  height: 10px;
  width: 1px;
  background: #ddd;
  display: block;
  position: absolute;
  left: 4px;
  bottom: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

.cart-side .cart-total .corner-right {
  height: 10px;
  width: 1px;
  background: #ddd;
  display: block;
  position: absolute;
  right: 4px;
  top: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

.cart-side .cart-total .btn {
  padding:0px 40px;
}

.cart-side .cart-total .price {
  font-weight:bold;
  font-size:16px;
}

.cart-side .cart-total .price .title {
  font-size:14px;
  font-weight:normal;
  margin-right:5px;
}

.cart-side .cart-total  .inner {
  padding: 20px;
  border: 1px solid #ddd;
}
.cart-side .cart-total .button {
	margin-top:20px;
}
.cart-side .cart-total  .btn {
	width:100%;
}

.cart-side .cart-total table {
	width:100%;
  font-size:.9em;
}

.cart-side .cart-total table td:last-child {
	text-align:right;
  font-weight:600;
}

.cart-side .cart-total table tr:last-child td {
	padding-top:10px;
  border-top:1px solid #ddd;
  font-size:110%;
}

.cart-side .cart-total table tr td {
	padding-bottom:10px;
}
.cart-side .non-eu {
    color: #aaa;
    font-size: 90%;
    display: block;
}

.checkout-title {
	margin-bottom:20px;
}
/* END CART */ 

.gui-account-links ul li:nth-child(2),
.gui-account-links ul li:nth-child(3),
.gui-account-links ul li:nth-child(4),
.gui-account-links ul li:nth-last-child(2){
	display:none;
}

body .gui-checkout .gui-form .gui-confirm-buttons a.gui-button-action {
	height: 50px;
  padding: 0px 30px;
  background: #000;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
  border-radius: 0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: relative;
  border: none;
  width: 100%;
}



body .gui-checkout .gui-form .gui-confirm-buttons a.gui-button-action:after {
  position: absolute;
  right: -2px;
  top: -2px;
  content: '';
  border-top: 10px solid white;
  border-left: 10px solid transparent;
}

body .gui-checkout .gui-form .gui-confirm-buttons a.gui-button-action:before {
  position: absolute;
  left: -2px;
  bottom: -2px;
  content: '';
  border-bottom: 10px solid white;
  border-right: 10px solid transparent;
}

/* .gui-col2-leftm .gui-col2-leftm-col2 {
	float:left !important;
} */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.3em;
  color: #fff;
  -webkit-transform: translateZ(0) translateY(calc(100% + 30px));
  transform: translateZ(0) translateY(calc(100% + 30px));
  visibility: hidden;
/*   -webkit-box-shadow: 0 0px 10px 2px rgba(0,0,0,0.05);
  box-shadow: 0 0px 10px 2px rgba(0,0,0,0.05); */
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  z-index: 999;
  margin-bottom:-2px;
}
.scroll-top:focus,
.scroll-top:active,
.scroll-top:hover {
	color:#fff;
}

.scroll-top.active {
	-webkit-transform: translateZ(0) translateY(0);
	        transform: translateZ(0) translateY(0);
  visibility: visible;
}

/* Responsive */
@media (min-width: 1200px) {
  .container {
  	width:100%;
    max-width:1960px;
    padding:0px 20px;
  }
  .standard-fixed-page .container {
  	width:100%;
    max-width:1400px;
    padding:0px 20px;
  }
}
@media(max-width: 1299px){
	#header .header-icons ul li{
  	margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  body {
  	font-size:13px;
  }
	/* header */
   /* header */
  #header .logo {
  	text-align:center;
  }
  #header .main-header {
  	padding:15px 0px;
  }
  #header .main-menu ul {
  	margin:0px -10px;
  }
  #header .main-menu ul li {
  	padding:0px 10px;
  }
  #header .header-icons ul li {
  	margin-left:20px;
  }
  /* index */
  .home-banner .text {
  	padding:30px 0px;
  }
  .home-block,
  .home-brands .title-featured {
  	margin-bottom:30px;
  }
  .title-featured .title {
  	font-size:1.7em;
  }
  #productpage .product-info {
  	padding-top:30px;
  }
  #productpage .product-info-col {
    margin-left: 30px;
    min-width: 400px;
    max-width: 400px;
	}
  #productpage .product-info .product-title,
  #productpage .product-info .price-sku{
  	margin-bottom:30px;
  }
  #cart-page .cart-total-col {
    min-width: 370px;
    max-width: 370px;
    margin-left: 30px;
	}
  #cart-page .total-block {
  	padding:25px;
  }
  #cart-page .cart-table .image img {
  	width:100px;
  }
  #cart-page .cart-table td,
  #cart-page .cart-table th {
  	padding-right:20px;
  }
  #cart-page .cart-table {
  	font-size:11px;
  }
  #cart-page .cart-table .input-wrap input {
    width: 45px;
    height: 45px;
    padding: 0;
  }
  #cart-page .cart-table .option-icons {
  	font-size:16px;
  }
  #cart-page .total-block table {
  	margin-bottom:50px;
  }
  tr.spacer {
    height: 15px;
	}
  #cart-page .discount-block {
  	padding-top:20px;
  }
  .title-small {
  	margin-bottom:15px;
    font-size:1.4em;
  }
  #footer .main-footer .inner .newsletter {
  	-webkit-box-ordinal-group:2;
  	    -ms-flex-order:1;
  	        order:1;
    width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    margin-bottom:30px;
  }
  #footer .main-footer .inner > div {
  	-webkit-box-ordinal-group:11;
  	    -ms-flex-order:10;
  	        order:10;
  }
}
@media(max-width: 991px){
  /* index */
  .home-block {
  	border:none;
    margin:0;
  }
  .home-banner {
  	border-bottom:1px solid #eee;
    margin-bottom:20px;
  }
  .productpage-row {
  	display:block;
  }
  #productpage .product-info-col {
    margin-left: 0px;
    min-width: 100%;
    max-width: 100%;
	}
  #cart-page .cart-row {
  	display:block;
  }
  #cart-page .cart-total-col {
  	margin:0;
    min-width:100%;
    max-width:100%;
    margin-top:30px;
  }
  .col-side {
    min-width: 0;
    max-width: 0;
    margin: 0;
	}
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 99999;
    padding: 30px;
    height: 100%;
    -webkit-transform: translate(-100%, 0%);
        -ms-transform: translate(-100%, 0%);
            transform: translate(-100%, 0%); 
    -webkit-transition: all .2s ease-in-out; 
    -o-transition: all .2s ease-in-out; 
    transition: all .2s ease-in-out;
    overflow-x:scroll;
  }
  .sidebar.active {
  	-webkit-transform: translate(0%, 0%);
  	    -ms-transform: translate(0%, 0%);
  	        transform: translate(0%, 0%); 
  }
  .sidebar .btn {
  	width:100%;
  }
  .sort-top-items {
  	margin:-5px;
  }
  .sort-top-items .item {
  	padding:5px;
  }
}

@media (max-width: 767px) {
  /* header */
  #sizeguide-popup { 
  	margin: 10px; 
  }
  #header .main-header .logo img {
    height:30px;
  }
  #header .main-header {
  	padding:10px 0px;
  } 
  #header .header-icons ul {
  	font-size:19px;
  }
  .home-banner .text {
  	padding:20px 0px;
  }
  .title-featured .title {
  	font-size:1.5em;
  }
  .title-featured .subtitle {
  	font-size:.95em;
    margin-top:5px;
  }
  .products .product .info {
  	font-size:.95em;
    margin-top:15px;
  }
  .products {
  	margin:-10px;
  }
  .products .product {
  	padding:10px;
  }
  .products .product .info .product-title,
  .products .product .info .price {
  	margin-top:7px;
  }
  .products .product .info .price .price-old {
  	margin-right:5px;
  }
  .products .product .info .price .discount {
  	margin-left:5px;
  }
  #productpage .product-info .product-configure {
  	margin-bottom:15px;
  }
  #productpage .product-info .cart .btn.add-wish {
  	margin-left:15px;
  }
  #cart-page .cart-table .image img {
  	width:65px;
  }
  #cart-page .cart-table .info-wrap {
  	-webkit-box-align:center;
  	    -ms-flex-align:center;
  	        align-items:center;
  }
  #cart-page .cart-table .info .title {
  	font-size:1.3em;
  }
  #cart-page .cart-table .subtotal {
  	margin-top:15px;
    font-size:1.4em;
  }
  #cart-page .cart-table td:first-child {
  	padding-left:10px;
  }
  #cart-page .cart-table td:last-child {
  	padding-right:10px;
  }
  #cart-page .cart-table .image {
  	margin-right:15px;
  }
  #cart-page .cart-table .input-wrap .change {
  	font-size:12px;
  }
  #cart-page .cart-table .input-wrap input {
    width: 40px;
    height: 40px;
    padding: 0;
	}
  tr.spacer:first-child {
  	height:0;
  }
  .fixed-pages {
  	padding:30px 0px;
  }
  #cart-page .upsell-products .title-featured,
  #cart-page .total-block .total-title,
  #cart-page .total-block table {
  	margin-bottom:30px;
  }
  #cart-page .upsell-products {
  	padding-top:30px;
    margin-top:30px;
  }
  .cart-side {
    width: 350px;
    -ms-transform: translate(350px, 0px);
    -webkit-transform:  translate(350px, 0px);
    transform:  translate(350px, 0px);
  }
  #footer .main-footer .inner > div {
  	width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    margin-bottom:20px;
  }
  #footer .main-footer .inner .newsletter {
  	display:none;
  }
  #footer .main-footer .inner .socials {
  	margin-bottom:0;
  }
  .wsa-cookielaw-button-green {
  	margin:0;
    margin:10px 0px;
  }
  body .wsa-cookielaw {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
  }
  body .wsa-cookielaw-link {
  	margin:0;
  }
  .banner-row {
  	margin:0;
  }
  .banner-col {
  	padding:0;
  }
  .home-banner {
  	margin:0px -15px;
  }
  .home-block:first-child {
  	margin-top:0;
  }
  #header .search-wrap .container {
  	padding:0;
  }
  #header .search-wrap .search-inner {
  	width:100%;
  }
  .brands-sec ul {
  	-webkit-column-count: 2;
  	   -moz-column-count: 2;
  	        column-count: 2;
  }
  .letter-overview {
  	font-size:1.3em;
  }
  .brands-sec .letter-title {
    min-width: 50px;
    max-width: 50px;
    font-size: 1.7em; 
  }
  .gui-table.gui-orders table tbody tr td.status {
    display: table-cell !important;
  }
  #footer .main-footer .footer-links ul {
  	-webkit-box-pack:center;
  	    -ms-flex-pack:center;
  	        justify-content:center;
  }
}

@media (max-width: 424px) {

}
/* Custom CSS */
#map {
  height: 400px;
  width: 100%;
}

#map div iframe {
	width: 100%;
  height: 400px;
}

.service-block {
  position: relative;
  padding: 30px;
  border: 1px solid #ddd;
  margin-top: 30px;
}

.service-block .service-row {
	margin: -15px;
}

.service-block .service-row .service-col {
	padding: 15px;
}

#service-page .title {
  text-transform: uppercase;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2em;
  margin-bottom: 25px;
}

.service-block:before {
	display: block;
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 10px;
  height: 10px;
  background: #fff;
  content: '';
  z-index: 9;
}

.service-block:after {
  display: block;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 10px;
  height: 10px;
  background: #fff;
  content: '';
  z-index: 9;
}

.service-block .corner-left {
  height: 10px;
  width: 1px;
  background: #ddd;
  display: block;
  position: absolute;
  left: 4px;
  bottom: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

.service-block .corner-right {
  height: 10px;
  width: 1px;
  background: #ddd;
  display: block;
  position: absolute;
  right: 4px;
  top: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

.service-block .corner-right {
  height: 10px;
  width: 1px;
  background: #ddd;
  display: block;
  position: absolute;
  right: 4px;
  top: -1px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  z-index: 99;
}

.service-block .contact-info {
	list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2em;
}

.service-block .contact-info li span {
  font-weight: 600;
}

.service-block table {
	width: 100%;
}

.service-block table tr td {
	padding: 5px 10px;
}

.service-block table tr td:first-child {
	font-weight: 600;
}

.service-block table tr td:last-child {
	text-align: right;
}

.service-block table tr:nth-child(odd) {
	background: #f7f7f7;
}

#contact-form .inputs .input input[type="text"],
#contact-form .inputs .input textarea {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  padding: 0px;
  height: 40px;
  background: transparent;
  width: 100%;
}

#contact-form .inputs .input textarea {
	height: 200px;
  outline: none;
  border: 0;
  border-bottom: 1px solid #eee;
  -webkit-appearance: none;
  margin-top: 10px;
}

#contact-form .inputs .input textarea::-webkit-input-placeholder {
  font-size: .95em;
  font-weight: 600;
  text-transform: uppercase;
  color: #aaa;
  color:rgba(0,0,0,0.4);
}

#contact-form .inputs .input textarea:-ms-input-placeholder {
  font-size: .95em;
  font-weight: 600;
  text-transform: uppercase;
  color: #aaa;
  color:rgba(0,0,0,0.4);
}

#contact-form .inputs .input textarea::-ms-input-placeholder {
  font-size: .95em;
  font-weight: 600;
  text-transform: uppercase;
  color: #aaa;
  color:rgba(0,0,0,0.4);
}

#contact-form .inputs .input textarea::-moz-placeholder {
  font-size: .95em;
  font-weight: 600;
  text-transform: uppercase;
  color: #aaa;
  color:rgba(0,0,0,0.4);
}

#contact-form .inputs .input textarea::placeholder {
  font-size: .95em;
  font-weight: 600;
  text-transform: uppercase;
  color: #aaa;
  color:rgba(0,0,0,0.4);
}

#service-page .service-content {
	margin-top: 30px;
}

@media (max-width: 991px) {
  .service-block .service-row {
  	margin: -25px;
  }
  
  .service-block .service-row .service-col {
  	padding: 25px;
  }
  
  #service-page .title {
  	margin-bottom: 10px;
  }
  
  #map {
  	height: 250px;
  }
  
  #map div iframe {
		height: 250px;
	}
}
/* End custom CSS */

/* newsletter custom */
#trengo-web-widget {
	position:relative;
  z-index:999;
}
.newsletter-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: #000;
  color: #fff;
  -webkit-transition:all .2s ease-in-out;
  -o-transition:all .2s ease-in-out;
  transition:all .2s ease-in-out;
  -webkit-transform:translate(0, 100%);
      -ms-transform:translate(0, 100%);
          transform:translate(0, 100%);
}
.newsletter-bottom.active {
	-webkit-transform:translate(0, 0);
	    -ms-transform:translate(0, 0);
	        transform:translate(0, 0);
}
.newsletter-bottom .inner {
  position:relative;
  padding: 40px 0px;
}
.newsletter-bottom .inner-row {
	margin:-10px -20px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-pack:distribute;
      justify-content:space-around;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.newsletter-bottom .text,
.newsletter-bottom .input {
	padding:10px 20px;
}
.newsletter-bottom .text {
	text-transform:uppercase;
}
.newsletter-bottom .title {
	font-size:1.4em;
  margin-bottom:5px;
}
.newsletter-bottom .input form {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.newsletter-bottom .input input {
	border-radius: 0;
  height: 50px;
  width: 300px;
  color: #000;
}
.newsletter-bottom .input-wrap {
	margin-right: 20px;
  position:relative;
}
.newsletter-bottom .input-wrap:before {
  position: absolute;
  left: -2px;
  bottom: -2px;
  content: '';
  border-bottom: 10px solid #000;
  border-right: 10px solid transparent;
}
.newsletter-bottom .input-wrap:after {
  position: absolute;
  right: -2px;
  top: -2px;
  content: '';
  border-top: 10px solid #000;
  border-left: 10px solid transparent;
}
.newsletter-bottom .close-newsletter {
  position: absolute;
  right: 0;
  top: 10px;
  text-transform: uppercase;
  font-size: 12px;
}
.newsletter-bottom .error {
	color:red;
  margin-top:5px;
}
.newsletter-bottom .discount-code {
  width: 300px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255,255,255,.2);
  letter-spacing: 3px;
}

@media(max-width:1199px) {
  .newsletter-bottom .inner-row {
		-ms-flex-wrap:wrap;
		    flex-wrap:wrap;
  }
}

@media(max-width:767px) {
  .newsletter-bottom .input input {
    width:100%;
  }
  .newsletter-bottom .input-wrap {
  	margin-right:10px;
  }
  .newsletter-bottom .title {
  	font-size:1.2em;
  }
}
/* end newsletter custom */

/* Live search */
.ul-reset {
	margin: 0;
  padding: 0;
  list-style: none;
}

.live-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  padding-top: 5%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.live-search.active {
  opacity: 1;
  visibility: visible;
}

.live-search .close-live-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 25px;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255,255,255,0.1);
}

.live-search .close-live-search i {
	font-size: 1.3em;
  margin-right: 10px;
}

.live-search .inner {
  max-width: 900px;
  width: 100%;
}

.live-search .top-wrap {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
}

.live-search.active .top-wrap {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.live-search .top-wrap .search-title {
  text-align: center;
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}

.live-search .top-wrap form {
  position: relative;
}

.live-search .top-wrap form input {
  width: 100%;
  height: 60px;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  border-radius: 0;
}

.live-search .top-wrap form input:focus {
  border-color: #fff;
}

.live-search .top-wrap form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #888;
}

.live-search .top-wrap form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #888;
  opacity: 1;
}

.live-search .top-wrap form input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #888;
  opacity: 1;
}

.live-search .top-wrap form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #888;
}

.live-search .top-wrap form input::-ms-input-placeholder { /* Microsoft Edge */
  color: #888;
}

.live-search .top-wrap form .icon {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 30px;
  color: #fff;
  width: 60px;
  height: 100%;
  opacity: 0.7;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.live-search .top-wrap form input:focus ~ .icon {
  opacity: 1;
}

.search-autocomplete {
  margin-top: 30px;
  color: #fff;
}

.search-autocomplete .results {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  margin: -25px;
}

.search-autocomplete .subtitle {
  font-weight: bold;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.search-autocomplete .search-list {
	padding: 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.search-autocomplete .search-list ul li {
  -webkit-transform: translateY(20%);
      -ms-transform: translateY(20%);
          transform: translateY(20%);
  opacity: 0;
  -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
  transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out, opacity .2s ease-in-out;
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
  transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.search-autocomplete .search-list ul li:nth-child(2) {
  -webkit-transition-delay: .10s;
       -o-transition-delay: .10s;
          transition-delay: .10s;
}

.search-autocomplete .search-list ul li:nth-child(3) {
  -webkit-transition-delay: calc(.10s * 2);
       -o-transition-delay: calc(.10s * 2);
          transition-delay: calc(.10s * 2);
}

.search-autocomplete .search-list ul li:nth-child(4) {
  -webkit-transition-delay: calc(.10s * 3);
       -o-transition-delay: calc(.10s * 3);
          transition-delay: calc(.10s * 3);
}

.search-autocomplete .search-list ul li:nth-child(5) {
  -webkit-transition-delay: calc(.10s * 4);
       -o-transition-delay: calc(.10s * 4);
          transition-delay: calc(.10s * 4);
}

.search-autocomplete .search-list ul li:nth-child(6) {
  -webkit-transition-delay: calc(.10s * 5);
       -o-transition-delay: calc(.10s * 5);
          transition-delay: calc(.10s * 5);
}

.search-autocomplete .search-list ul li:nth-child(7) {
  -webkit-transition-delay: calc(.10s * 6);
       -o-transition-delay: calc(.10s * 6);
          transition-delay: calc(.10s * 6);
}

.search-autocomplete .search-list ul li:nth-child(8) {
  -webkit-transition-delay: calc(.10s * 7);
       -o-transition-delay: calc(.10s * 7);
          transition-delay: calc(.10s * 7);
}

.search-autocomplete .search-list ul li.loaded {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.search-autocomplete .search-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-autocomplete .notfound {
  display: none;
  font-size: 14px;
  font-style: italic;
}

.search-autocomplete.noresults .notfound {
  display: block;
  padding: 25px;
}

@media (max-width: 1199px) {
  .search-autocomplete .products-livesearch ul li img {
    width: 60px;
  }
}

@media (max-width: 991px) {
	.live-search .close-live-search {
    padding: 0 20px;
    height: 50px;
  }
  
  .live-search .close-live-search i {
  	font-size: 1.1em;
  }
  
  .search-autocomplete .results {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
    margin: -20px 0;
  }

  .search-autocomplete.noresults .notfound,
	.search-autocomplete .search-list {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .live-search {
    padding-top: 20%;
  }
  
  .live-search .close-live-search {
    padding: 0 15px;
    height: 40px;
  }
  
  .live-search .close-live-search i {
  	font-size: 1em;
    margin-right: 7px;
  }
  
  .live-search .top-wrap .search-title {
    font-size: 1.4em;
  }
  
  .live-search .top-wrap form input {
    font-size: 16px;
  }
  
  .live-search .top-wrap form .icon {
    font-size: 22px;
  }
  
  .search-autocomplete .subtitle {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
}
/* End live search */

.price-filter {
  width: 100%;
}

.price-filter a {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.collection-filter-price {
  height: 5px;
  border: none;
  margin: 0px;
  padding: 0;
  position: relative;
  width: 100%;
}

.collection-filter-price .ui-slider-range {
  background-color: #000;
  border: none;
  margin: 0;
  position: absolute;
  height: 5px;
  top: 0;
  z-index: 1;
}

.collection-filter-price .ui-slider-handle {
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 0;
  top: -5px;
  cursor: col-resize;
  border: none;
  background-color: #000;
  border: 2px solid #000;
  outline: none;
  z-index:9;
}

.collection-filter-price .ui-slider-handle:last-child {
	margin-left:-10px;
}

.collection-filter-price:after {
	display:block;
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:#eee;
}

.price-filter-range {
  margin-top: 10px;
  font-size: .9em;
  display: flex;
  justify-content: space-between;
}

.price-filter-range .min,
.price-filter-range .max {
  display: inline-block;
}

.price-filter-range .min span,
.price-filter-range .max span {
  font-weight: 600;
}

.price-filter-range .max {
  margin-left: 15px;
}