:root {
  --block-spacing-100: 100px;
  --block-spacing-80: 60px;
  --block-spacing-60: 60px;
  --block-spacing-40: 40px;
  --block-spacing-20: 20px;
  --block-spacing-15: 15px;
	--accent: #F47211;
	--accent_dark: #EF580C;
	--accent_blue: #2D4751;
	--accent_dark_blue: #21363D;
  --accent_blue_grey: #2D4751;
	--light_grey: #F5F5F6;
	--dark_grey: #919191;
/* 	--accent_green: #00B456;
	--accent_dark_green: #009D4B; */
  --accent_green: #00ba00;
	--accent_dark_green: #2aa727;
	--accent_success: #00B456;
	--accent_error: #B40000;
	--accent_gradient: linear-gradient(45deg, #F47211 0%, #EF580C 100%);
  --accent_gradient_vertical: linear-gradient(0deg, #F47211 0%, #EF580C 100%);
	--border_radius: 5px;
  --fontsize_body: 16px;
  --fontsize_heading_large:2.500em;
  --fontsize_heading_medium: 2.222em;
  --fontsize_heading_small: 1.111em;
  --fontsize_heading_smaller: .888em;
  --fix_font: .2em !important;
}

@font-face {
	font-display: auto;
}

body {
  margin: 0 !important;
	color:var(--accent_blue);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-shadow: 1px 1px 1px x(0,0,0,0.004);
  width:100%;
  font-size: var(--fontsize_body);
  background: var(--light_grey);
}

html.no-scroll {
  margin: 0; 
  height: 100%; 
  overflow: hidden;
}

div[class*=" col-"] {
	margin-left: -.5px;
}

.owl-carousel {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.relative {
	position:relative;
}

.absolute {
	position:absolute;
}

.body-wrap {
  position:relative;
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  -o-transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1), -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
}

.body-wrap.cart-open {
  -webkit-transform: translate(-400px, 0px);
      -ms-transform: translate(-400px, 0px);
          transform: translate(-400px, 0px);
}
.main-content.home{
	padding-top: 20px;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
}

.line-height {
	line-height: 1.6em;
}

a,
a:hover,
a:visited,
a:focus {
	color:inherit;
  text-decoration:none;
  outline:none;
}

.ul-reset {
	list-style: none;
  margin: 0;
  padding: 0;
}

.general-content {
  font-size: 1em;
  color: var(--dark_blue);
}

.general-content strong {
	font-weight: bold;
}

.general-content *:first-child {
	margin-top: 0;
}

.general-content *:last-child {
	margin-bottom: 0;
}

.general-content h1,
.general-content h2,
.general-content h3,
.general-content h4,
.general-content h5,
.general-content h6 {
	font-weight: bold;
  color: var(--accent);
}

.general-content h1 {
	font-size: 2.5em;
  margin-bottom: 20px;
}
.general-content h2 {
	font-size:2em;
  margin-bottom: 20px;
}
.general-content h3 {
	font-size:1.5em;
  margin-bottom: 20px;
}
.general-content h4 {
	font-size:1.313em;
  margin-bottom: 15px;
}
.general-content h5 {
	font-size:1.125em;
  margin-bottom: 10px;
}
.general-content h6 {
	font-size:1.125em;
  margin-bottom: 10px;
}

.general-content a:not(.btn),
.general-content a:not(.btn):visited,
.general-content a:not(.btn):active,
.general-content a:not(.btn):hover {
	text-decoration: underline;
  color: var(--accent);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.general-content ul {
	padding-left: 25px;
}

.general-content ul li {
	list-style: none;
  position: relative;
}

.general-content ul li:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 15px;
}

.general-content ol {
	padding-left: 0;
  counter-reset: item;
}

.general-content ol li {
	list-style: none;
  position: relative;
  counter-increment: item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.2em;
}
.general-content ol li:before {
  content: counter(item);
  display: inline-block;
  min-width: 30px;
  height: 30px;
  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;
  padding-top: .2em;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 15px;
}

.general-content img,
.general-content video {
	height: auto;
}

.general-content img,
.general-content video,
.general-content iframe {
	max-width: 100%;
}

.general-content table {
	width: 100%;
}

.general-content table tr td {
	padding: 5px 15px;
}

.responsive-iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.responsive-iframe iframe,
.responsive-iframe object,
.responsive-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  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-align: center;
	height: 60px;
  padding: 0;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: var(--fix_font);
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: var(--border_radius);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn:active,
.btn:focus,
.btn:visited,
.btn:hover {
	color:#fff;
}

.btn.btn-gradient {
	background: var(--accent_gradient);
}

.btn.btn-open {
	background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.btn-open:active,
.btn.btn-open:focus,
.btn.btn-open:visited,
.btn.btn-open:hover {
	color: var(--accent);
}

.btn.btn-dark {
	background: var(--accent_blue);
}

.btn.btn-open.btn-dark {
	background: transparent;
  border: 1px solid var(--accent_blue);
  color: var(--accent_blue);
}

.btn.btn-open.btn-dark:active,
.btn.btn-open.btn-dark:focus,
.btn.btn-open.btn-dark:visited,
.btn.btn-open.btn-dark:hover {
	color: var(--accent_blue);
}

.btn.btn-white {
	background: #fff;
  color: initial;
}

.btn.btn-white:active,
.btn.btn-white:focus,
.btn.btn-white:visited,
.btn.btn-white:hover {
	color:#fff;
}

.btn.btn-open.btn-white {
	background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn.btn-open.btn-white:active,
.btn.btn-open.btn-white:focus,
.btn.btn-open.btn-white:visited,
.btn.btn-open.btn-white:hover {
	color: #fff;
}

.btn.btn-green {
	background: var(--accent_green);
}
.btn.btn-blue {
	background: var(--accent_blue);
}

.hide-image {
	opacity: 0;
}

.btn.icon-btn {
	padding:0;
  width:60px;
  font-size:25px;
}

.btn.icon-btn-green i {
	font-size:25px;
  margin-top: -.2em;
}

.btn.less-padding {
  padding-left:20px;
  padding-right:20px;
}

.arrow-text-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: var(--block-spacing-20);
  color: var(--accent) !important;
  font-weight: bold;
  z-index: 2;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.arrow-text-link.dummy {
	opacity: 0;
  visibility: hidden;
}

.arrow-text-link:hover {
	color: var(--accent_blue) !important;
}

.block-dark .arrow-text-link:hover {
	color: #fff !important;
}

.arrow-text-link i {
  font-size: .9em;
  margin-left: 15px;
  margin-top: -.2em;
}

.standard-input {
	height: 50px;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: var(--fix_font);
  outline: none;
  border-radius: 0;
  font-size: 1em;
  background: var(--light_grey);
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

textarea.standard-input {
	padding: 10px 15px;
}

.standard-input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: var(--dark_grey);
}

.standard-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: var(--dark_grey);
  opacity: 1;
}

.standard-input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: var(--dark_grey);
  opacity: 1;
}

.standard-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: var(--dark_grey);
}

.standard-input::-ms-input-placeholder { /* Microsoft Edge */
	color: var(--dark_grey);
}


/* focus */
.standard-input:focus::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: var(--accent_blue);
}

.standard-input:focus:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: var(--accent_blue);
  opacity: 1;
}

.standard-input:focus::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: var(--accent_blue);
  opacity: 1;
}

.standard-input:focus:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: var(--accent_blue);
}

.standard-input:focus::-ms-input-placeholder { /* Microsoft Edge */
	color: var(--accent_blue);
}

.icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.icon:before {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.icon-arrow-down.right {
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}

.icon-arrow-down.left {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.icon-arrow-down.upr {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.lazy-bg-cover {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.sm-fix-font {
	padding-top: var(--fix_font);
}

.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;
}

.block-padding {
	padding-top: var(--block-spacing-80);
  padding-bottom: var(--block-spacing-80);
}

.block-padding-top {
	padding-top: var(--block-spacing-80);
}

.block-padding-bottom {
  padding-bottom: var(--block-spacing-80);
}

.block-margin {
	margin-top: var(--block-spacing-80);
  margin-bottom: var(--block-spacing-80);
}

.block-margin-top {
	margin-top: var(--block-spacing-80);
}

.block-margin-bottom {
  margin-bottom: var(--block-spacing-80);
}

.block-padding-small {
	padding-top: var(--block-spacing-40);
  padding-bottom: var(--block-spacing-40);
}

.block-padding-small-top {
	padding-top: var(--block-spacing-40);
}

.block-padding-small-bottom {
  padding-bottom: var(--block-spacing-40);
}

.block-margin-small {
	margin-top: var(--block-spacing-40);
  margin-bottom: var(--block-spacing-40);
}

.block-margin-small-top {
	margin-top: var(--block-spacing-40);
}

.block-margin-small-bottom {
  margin-bottom: var(--block-spacing-40);
}

.block-border {
	border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.block-border-top {
	border-top: 1px solid #eee;
}

.block-border-bottom {
	border-bottom: 1px solid #eee;
}

.block-grey {
	background: var(--light_grey);
}

.image-wrap.grey {
	position: relative;
  background: #fff;
}

.image-wrap.grey:after {
	content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.04);
}

.image-wrap img {
	width: 100%;
}

.sm-tabs-block .page {
	display: none;
}

.sm-tabs-block .page.active {
	display: block;
}

.products-block {
	overflow: hidden;
}
/* 
.products-slider .owl-stage-outer {
	padding: 50px;
  margin: -50px;
} */

.products-slider .owl-stage,
.products-slider .owl-item,
.upsell-products-slider .owl-stage,
.upsell-products-slider .owl-item  {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.title-featured {
	margin-bottom: calc(var(--block-spacing-40) - .8em);
}

.title-featured .title {
	font-size: var(--fontsize_heading_medium);
  font-weight:bold;
  line-height: 1.1em;
}

.title-featured .title.large {
  font-size: var(--fontsize_heading_large);
}

.title-featured .title span {
	font-weight:100;
}

.title-featured .subtitle {
	font-size: var(--fontsize_heading_small);
  line-height: 1.1em;
  margin-bottom: var(--block-spacing-20);
}

.title-featured .subtitle span {
	font-weight: bold;
}

.title-featured .subtitle.large {
	font-size: var(--fontsize_heading_medium);
}

.text-accent {
	color: var(--accent);
}

.text-accent-dark {
	color: var(--accent_blue);
}

.text-white {
	color:#fff;
}

.block-dark {
	background: var(--accent_blue);
}

.block-padding-80 {
	padding: var(--block-spacing-80) 0;
}

.spacer-60 {
	height:var(--block-spacing-60);
}

.block-padding-top-80 {
	padding-top: var(--block-spacing-80);
}

@media (min-width: 1200px) {
  .container {
  	width:100%;
    max-width:1360px;
    padding:0px 30px;
  }
  
  .btn:not(.btn-gradient):hover {
    background: var(--accent_dark);
  }

  .btn.btn-white:hover {
  	color: #fff;
  }
  
  .btn.btn-open:hover {
    background: var(--accent_dark);
    color: #fff;
  }
  
  .btn.btn-dark:hover {
    background: var(--accent_dark_blue);
  }
  
  .btn.btn-open.btn-dark:hover {
    background: var(--accent_blue);
    color: #fff;
  }
  
  .btn.btn-green:hover {
    background: var(--accent_green);
    color: #fff;
  }
  
  .btn.btn-open.btn-white:hover {
    background: #fff;
    color: var(--accent);
  }
  
  .btn.btn-green:hover {
  	background: var(--accent_dark_green);
  }
}

@media (max-width: 1199px) {
	:root {
  	--fontsize_body: 14px;
    --block-spacing-100: 80px;
    --block-spacing-80: 60px;
    --block-spacing-60: 40px;
    --block-spacing-40: 30px;
    --fontsize_heading_large: 2.2em;
    --fontsize_heading_medium: 2em;
    --fontsize_heading_small: 1em;
    --fontsize_heading_smaller: .9em;
  }
  
  .title-featured {
    margin-bottom: var(--block-spacing-40);
  }
  
  .block-padding-small {
    padding-top: var(--block-spacing-60);
    padding-bottom: var(--block-spacing-60);
  }

  .block-padding-small-top {
    padding-top: var(--block-spacing-60);
  }

  .block-padding-small-bottom {
    padding-bottom: var(--block-spacing-60);
  }

  .block-margin-small {
    margin-top: var(--block-spacing-60);
    margin-bottom: var(--block-spacing-60);
  }

  .block-margin-small-top {
    margin-top: var(--block-spacing-60);
  }

  .block-margin-small-bottom {
    margin-bottom: var(--block-spacing-60);
  }
}

@media (max-width: 991px) {
	:root {
  	--fontsize_body: 14px;
    --block-spacing-100: 60px;
    --block-spacing-80: 40px;
    --block-spacing-60: 30px;
    --block-spacing-40: 20px;
    --fontsize_heading_large: 1.5em;
    --fontsize_heading_medium: 1.4em;
    --fontsize_heading_small: 1.2em;
    --fontsize_heading_smaller: 1em;
  }
  .main-content.home{
  	padding-top: 0;
  }
  
  .block-padding-small {
    padding-top: var(--block-spacing-80);
    padding-bottom: var(--block-spacing-80);
  }

  .block-padding-small-top {
    padding-top: var(--block-spacing-80);
  }

  .block-padding-small-bottom {
    padding-bottom: var(--block-spacing-80);
  }

  .block-margin-small {
    margin-top: var(--block-spacing-80);
    margin-bottom: var(--block-spacing-80);
  }

  .block-margin-small-top {
    margin-top: var(--block-spacing-80);
  }

  .block-margin-small-bottom {
    margin-bottom: var(--block-spacing-80);
  }
}

@media (max-width: 767px) {
  .arrow-text-link {
  	font-size: 1.1em;
  }
/*   .home-categories .arrow-text-link{
  	margin-top: 40px;
  } */
  .btn {
  	height: 50px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 14px;
  }
  
  .btn.icon-btn {
    width:50px;
    font-size:18px;
  }
  .app-style-block {
		overflow: hidden;
  }
  
  .app-style {
  	margin-right: -25%;
  }
  
  .app-style .owl-stage-outer {
    overflow: visible;
  }
  .title-featured .subtitle {
  	margin-bottom: 10px;
  }
  .upsell-fancybox .fancybox-slide--html {
  	padding: 0;
  }
  
  .upsell-fancybox .fancybox-slide--html {}
  .home-categories .owl-stage-outer,
  .home-categories .owl-stage,
  .home-categories .owl-item{
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .categories .category .inner{
  	height: 100%;
  }
}
/* End general styles */

/* Header */
#header {
	z-index: 999;
  position: relative;
}
/* #header.fixed{
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
} */

#header.fixed .header-fixed-wrap {
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-topbar {
  background: #fff;
  color: var(--dark_grey);
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}

.header-topbar .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	height: 40px;
}

.header-topbar .usp-wrap {
  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: space-between;
  font-size: 14px;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}
.header-topbar .usp-wrap li{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.header-topbar .usp-wrap li:not(:last-child) {
  margin-right: 65px;
}

.header-topbar .usp-wrap li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--accent_blue);
  white-space: nowrap;
}

.header-topbar .usp-wrap li a i {
	margin-right: 10px;
  font-size: 1.2em;
  color: var(--accent);
}
.header-topbar .usp-wrap li a img{
	height: 16px;
  width: auto;
  margin-right: 10px;
}
#header .main-header {
	padding: 12px 0;
  background: #fff;
}

#header .main-header .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .main-header .header-col.logo-col {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}

#header .main-header .search-wrap {
	width: 100%;
  max-width: 300px;
  padding-right: 35px;
}

#header .main-header .search-wrap form {
	width: 100%;
  position: relative;
}

#header .main-header .search-wrap form input {
	width: 100%;
  text-align: center;
  font-size: 18px;
}

#header .main-header .search-wrap form input:focus {
	border: 1px solid var(--dark_grey);
}

#header .main-header .search-wrap form input:focus::-webkit-input-placeholder {
  color: transparent;
}

#header .main-header .search-wrap form input:focus::-moz-placeholder {
  color: transparent;
}

#header .main-header .search-wrap form input:focus:-ms-input-placeholder {
  color: transparent;
}

#header .main-header .search-wrap form input:focus::-ms-input-placeholder {
  color: transparent;
}

#header .main-header .search-wrap form input:focus::placeholder {
  color: transparent;
}

#header .main-header .search-wrap form a {
	position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  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;
  font-size: 20px;
  cursor: pointer;
}

#header .main-header .logo img {
	height: 56px;
}

#header .main-header .contact-info {
	font-size: 14px;
  color: var(--dark_grey);
  margin-right: 80px;
}

#header .main-header .contact-info li:not(:last-child) {
	margin-bottom: 4px;
}

#header .main-header .contact-info li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .main-header .contact-info li a i {
	margin-right: 15px;
}

#header .main-header .header-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .main-header .header-icons li:not(:last-child) {
	margin-right: 25px;
}

#header .main-header .header-icons li,
#header .main-header .header-icons li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#header .main-header .header-icons li i {
	font-size: 28px;
  position: relative;
  z-index: 0;
}

#header .main-header .header-icons li.cart i {
	font-size: 30px;
}

#header .main-header .header-icons li.languages i {
	font-size: 24px;
}

#header .main-header .header-icons li a .i-wrap {
	position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .main-header .header-icons li a .i-wrap .qty {
	position: absolute;
	top: -11px;
  right: -11px;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  line-height: 26px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 13px;
}

#header .main-header .header-icons li.languages {
	position: relative;
}

#header .main-header .header-icons li.languages > ul {
	position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

#header .main-header .header-icons li.languages:hover > ul {
	opacity: 1;
  visibility: visible;
}

#header .main-header .header-icons li.languages:hover > ul li {
	margin-top: 5px;
}

#header .main-header .header-icons li.login .btn {
	padding-left: 20px;
  padding-right: 20px;
  height: 50px;
}

#header .main-menu {
  background: var(--accent_blue);
  position: relative;
  max-height: 48px;
}

#header .main-menu .main-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
/*   height: 80px; */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#header .main-menu .main-nav > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
/*   -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; */
  padding: 0 12px;
}

#header .main-menu .main-nav > li:first-child {
	padding-left: 0;
}

#header .main-menu .main-nav > li > a {
  text-align: center;
	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: #fff;
/*   font-weight: bold; */
  width: 100%;
  position: relative;
  white-space: nowrap;
  padding: 13px 0;
}

#header .main-menu .main-nav > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent);
  opacity: 0;
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

#header .main-menu .main-nav > li:hover > a:after,
#header .main-menu .main-nav > li.active > a:after {
	opacity: 1;
}

#header .subnav {
	position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 999;
  overflow: hidden;
}

.subnav-overlay {
	background: rgba(45,71,81,0.80);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#header .main-menu .main-nav.open-subnav > li:hover > .subnav,
.subnav-overlay.active {
	opacity: 1;
  visibility: visible;
}

#header .subnav .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#header .subnav .cats-wrap {
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}

#header .subnav .cats-wrap,
#header .subnav .cats-row,
#header .subnav .cats-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .subnav .cats-row {
	margin: -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

#header .subnav .cats-col {
	padding: 15px;
}

#header .subnav .sub-cats {
  padding: 20px 0 40px 0;
  position: relative;
  max-width: 260px;
  min-width: 260px;
}

#header .subnav .sub-cats > li:not(:last-child) {
  margin-bottom: 5px;
}
  
#header .subnav .sub-cats li a {
	padding: 13px 10px 10px 10px;
  border-radius: var(--border_radius);
}

#header .subnav .sub-cats > li > a {
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  color: var(--accent);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

#header .subnav .sub-cats li a:hover {
	background: var(--light_grey);
}

#header .subnav .sub-cats li a.toggle-subs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .subnav .sub-cats li a.toggle-subs i {
	margin-left: 5px;
  margin-top: -.15em;
}

#header .subnav .sub-cats > li.active > a,
#header .subnav .sub-cats > li:hover > a {
  color: var(--accent_dark);
}

#header .subnav .subs {
	margin-top: 10px;
  margin-bottom: 30px;
}

/* #header .subnav .subs {
  position: absolute;
  left: 100%;
  top: 0;
  padding: 60px 100px;
  background: var(--light_grey);
  min-height: 100%;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease-in-out;
}

#header .subnav .sub-cats li:hover > .subs {
	opacity: 1;
  visibility: visible;
} 

#header .subnav .subs:after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 5000px;
  height: 100%;
  background: var(--light_grey);
  z-index: -1;
}
*/

#header .subnav .subs li:not(:last-child) {
  margin-bottom: 15px;
}

#header .subnav .subs li.active a,
#header .subnav .subs li a:hover {
	color: var(--accent);
}

#header .subnav .cat-image {
	padding: 20px 0 40px 0;
  min-width: 260px;
  max-width: 260px;
}

#header .search-wrap-mobile {
  background: #f7f7f7;
}

#header .search-wrap-mobile form {
	position: relative;
}

#header .search-wrap-mobile form,
#header .search-wrap-mobile form input {
	width: 100%;
}

#header .search-wrap-mobile form a {
	position: absolute;
  top: 0;
  right: 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;
  font-size: 18px;
}

#header .main-header .header-icons li.search {
	display: none;
}

#header .main-header .header-icons li.menu i {
  width: 30px;
  font-size: 20px;
  color: var(--accent);
}

#header .main-header .header-icons li.menu .open-menu.active i:before {
	content: '\e908';
}

#header .alert-bar .text {
  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: 16px;
  padding: 8px 0px;
}

#header .alert-bar .text i {
  font-size: 1.5em;
  margin-right: 10px;
}

#header .alert-bar .text a {
	text-decoration: underline;
}

@media (min-width: 1200px) {
  #header .main-header .header-icons > li > a i:after {
    z-index: -1;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light_grey);
  	-webkit-transition: opacity .2s ease-in-out;
  	-o-transition: opacity .2s ease-in-out;
  	transition: opacity .2s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  
  #header .main-header .header-icons > li > a:hover i:after {
    opacity: 1;
    visibility: visible;
  }
}
@media(max-width: 1299px){
	#header .main-menu .main-nav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  /*   -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; */
    padding: 0 12px;
  }
}
@media (max-width: 992px) and (min-width: 599px) {
  #header .main-header .header-icons li.search {
    display: block;
  }
  
  #header .main-header .search-wrap {
  	display: none;
  }
}

@media (max-width: 1799px) {
/*   #header .main-menu .main-nav > li:not(:last-child) {
  	margin-right: 20px;
  } */
  
  #header .main-menu .main-nav > li > a {
  	font-size: .9em;
  }
}

@media (max-width: 1399px) {
	#header .subnav .sub-cats {
    max-width: 260px;
    min-width: 260px;
  }
}

@media (max-width: 1199px) {
  .header-topbar .usp-wrap {
  	display: block;
    width: calc(100% - 80px);
  }
  
  .header-topbar .inner {
  	-webkit-box-pack: start;
  	    -ms-flex-pack: start;
  	        justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 30px;
  }
  
  .header-topbar .usp-wrap.mobile-hidden {
  	height: 30px;
    opacity: 0;
  }
  
  .header-topbar .usp-wrap li a {
  	-webkit-box-pack: center;
  	    -ms-flex-pack: center;
  	        justify-content: center;
    text-align: center;
    height: 30px;
  }
  
  .header-topbar .contact-info {
  	width: 80px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  
  .header-topbar .contact-info,
  .header-topbar .contact-info li,
  .header-topbar .contact-info li a {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  }
  
  .header-topbar .contact-info li a {
  	background: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px;
  }
  
  #header .main-header .contact-info {
  	margin-right: 30px;
  }
  
  #header .main-header .logo img {
    height: 55px;
  }
  .header-topbar {
    background: var(--light_grey);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 991px) {
	#header .main-header .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  #header .main-header .search-col {
    width: 100%;
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  
  #header .main-header .search-wrap {
  	padding-right: 0;
    max-width: unset;
  }
  
  #header .main-header .search-wrap.shown {
  	margin-top: 20px;
  }
  
  #header .alert-bar .text {
  	font-size: 14px;
  }
}

@media (max-width: 767px) {
	#header .main-header .logo img {
    height: 45px;
  }
  
  #header .main-header {
  	padding: 10px 0;
  }
  
  #header .main-header .search-wrap.shown {
  	margin-top: 10px;
  }
  
  #header .main-header .header-icons li i {
  	font-size: 22px;
  }
  
  #header .main-header .header-icons li.cart i {
  	font-size: 24px;
  }
  
  #header .main-header .header-icons li.menu i {
  	font-size: 16px;
  }
  
  #header .main-header .header-icons li:not(:last-child) {
    margin-right: 15px;
  }
  
  #header .main-header .header-icons li a .i-wrap .qty {
    top: -6px;
    right: -8px;
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    line-height: 21px;
    font-size: 11px;
  }
}

@media (max-width: 499px) {
	#header .main-header .search-wrap {
  	margin-top: 10px;
  }
}
/* End header */

/* Live search */
.live-search-overlay {
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(244, 114, 17, 0.8);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}


.live-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  display: none;
}

.search-autocomplete .results {
  max-width: 680px;
  min-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--dark_grey);
  border-radius: var(--border_radius);
  overflow: hidden;
}

.search-autocomplete .top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid var(--light_grey);
}

.search-autocomplete .top-wrap .search-title {
  font-size: 1.111em;
  padding-top: var(--fix_font);
}

.search-autocomplete .top-wrap .close-live-search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  font-size: 18px;
}

.search-autocomplete .bottom-wrap {
  padding: 20px 40px;
  text-align: center;
}

.search-autocomplete .results .title-wrap {
  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: space-between;
	margin-bottom: 15px;
}

.search-autocomplete .results .title-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-size: 14px;
  text-decoration: underline;
}

.search-autocomplete .results .collections-wrap {
	padding: 30px 20px;
  font-weight: bold;
  color: var(--accent_blue);
  border-bottom: 2px solid var(--light_grey);
}

.search-autocomplete .results .collections-wrap ul li {
  margin-bottom: 15px;
}

.search-autocomplete .results .collections-wrap ul li:last-child {
	margin-bottom: 0;
}

.search-autocomplete .results .collections-wrap ul li a {
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.search-autocomplete .results .collections-wrap ul li a:hover {
	color: var(--accent);
}

.search-autocomplete .results .results-wrap {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}

.search-autocomplete .results .search-products,
.search-autocomplete .results .notfound {
	border-bottom: 2px solid var(--light_grey);
  padding: 20px;
}

.search-autocomplete .products-livesearch ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.search-autocomplete .products-livesearch ul li {
  width: 100%;
  -webkit-transform: translateY(20%);
      -ms-transform: translateY(20%);
          transform: translateY(20%);
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  -o-transition: transform .3s ease-in-out, opacity .3s ease-in-out;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  padding: 10px;
}

.search-autocomplete .products-livesearch ul li:nth-child(2) {
  -webkit-transition-delay: .15s;
       -o-transition-delay: .15s;
          transition-delay: .15s;
}

.search-autocomplete .products-livesearch ul li:nth-child(3) {
  -webkit-transition-delay: calc(.15s * 2);
       -o-transition-delay: calc(.15s * 2);
          transition-delay: calc(.15s * 2);
}

.search-autocomplete .products-livesearch ul li:nth-child(4) {
  -webkit-transition-delay: calc(.15s * 3);
       -o-transition-delay: calc(.15s * 3);
          transition-delay: calc(.15s * 3);
}

.search-autocomplete .products-livesearch ul li:nth-child(5) {
  -webkit-transition-delay: calc(.15s * 4);
       -o-transition-delay: calc(.15s * 4);
          transition-delay: calc(.15s * 4);
}

.search-autocomplete .products-livesearch ul li:nth-child(6) {
  -webkit-transition-delay: calc(.15s * 5);
       -o-transition-delay: calc(.15s * 5);
          transition-delay: calc(.15s * 5);
}

.search-autocomplete .products-livesearch ul li:nth-child(7) {
  -webkit-transition-delay: calc(.15s * 6);
       -o-transition-delay: calc(.15s * 6);
          transition-delay: calc(.15s * 6);
}

.search-autocomplete .products-livesearch ul li.loaded {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.search-autocomplete .products-livesearch ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-autocomplete .products-livesearch ul li img {
  width: 100px;
}

.search-autocomplete .products-livesearch ul li .info {
  padding-right: 15px;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}

.search-autocomplete .products-livesearch ul li .info .product-label {
	margin-bottom: 5px;
  font-size: 0.889em;
  color: var(--accent);
}

.search-autocomplete .products-livesearch ul li .info .title {
  font-size: 1.222em;
  font-weight: bold;
  color: var(--accent_blue);
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.search-autocomplete .products-livesearch ul li a:hover .info .title {
	color: var(--accent);
}

.search-autocomplete .notfound {
  display: none;
  font-size: 14px;
  font-style: italic;
}

.search-autocomplete.noresults .notfound {
  display: block;
}

@media (max-width: 1199px) {
  .search-autocomplete .products-livesearch ul li img {
    width: 60px;
  }
}

@media (max-width: 767px) {
  .search-autocomplete {
  	left: 0;
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  
  .search-autocomplete .results {
  	min-width: 100%;
    max-width: 100%;
  }
  
  .search-autocomplete .top-wrap,
  .search-autocomplete .bottom-wrap {
    padding: 15px 25px;
  }
  
  .search-autocomplete .results .results-wrap {
  	display: none;
  }
    
  .search-autocomplete.has-products .results .results-wrap {
  	display: block;
  }
  
  .search-autocomplete .products-livesearch ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -7px;
  }

  .search-autocomplete .products-livesearch ul li {
    padding: 7px;
  }
  
  .search-autocomplete .products-livesearch ul li img {
    width: 50px;
  }
  
  .search-autocomplete .products-livesearch ul li .info {
  	padding-right: 10px; 	
  }
  
  .search-autocomplete .products-livesearch ul li.final-link {
  	width: 100%;
  }
  
  .search-autocomplete .products-livesearch ul li.final-link .link {
  	margin: 0 auto;
  }
}
/* End live search */

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 125px;
  right: 0;
/*   height: calc(100% - 125px); */
  bottom: 0;
  width: 300px;
  background: var(--accent_gradient_vertical);
  color: #fff;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-transform: translate(300px, 0px);
      -ms-transform: translate(300px, 0px);
          transform: translate(300px, 0px);
  -webkit-transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  transition: -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
  -o-transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1);
  transition: transform .35s cubic-bezier(.29,.58,.32,1), -webkit-transform .35s cubic-bezier(.29,.58,.32,1);
}

.mobile-menu.mobile-menu-open {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

.body-wrap.mobile-menu-open {
  -webkit-transform: translate(-300px, 0px);
      -ms-transform: translate(-300px, 0px);
          transform: translate(-300px, 0px);
}

.mobile-menu .mobile-menu-inner {
	position: relative;
  z-index: 0;
}

.mobile-menu .languages-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10px 15px;
  padding-bottom: 0;
}

.mobile-menu.subs-active .languages-wrap {
	opacity: 0;
  visibility: hidden;
}

.mobile-menu .languages {
	position: relative;
}

.mobile-menu .languages i {
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: initial;
  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: 20px;
}

.mobile-menu .language-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
	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-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.mobile-menu .languages.active .language-dropdown {
	opacity: 1;
  visibility: visible;
}

.mobile-menu .language-dropdown i {
	margin-top: 5px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  font-size: 18px;
}

.mobile-menu-overlay {
  position:fixed;
  top:125px;
  left:0;
  bottom: 0;
  width:100%;
  background:rgba(0,0,0,0.3);
  z-index:9999;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  -webkit-transition: all .35s cubic-bezier(.29,.58,.32,1);
  -o-transition: all .35s cubic-bezier(.29,.58,.32,1);
  transition: all .35s cubic-bezier(.29,.58,.32,1);
}

.mobile-menu-overlay.mobile-menu-open {
  opacity:1;
  visibility:visible;
}

.mobile-menu .categories-wrap {
	padding: 25px;
  padding-bottom: 50px;
  font-size: 19px;
  font-weight: bold;
}

.mobile-menu .categories-wrap ul {
	margin: -9px 0;
}

.mobile-menu .categories-wrap ul > li > .cat-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.mobile-menu .categories-wrap > ul.extra-links > li:first-child > .cat-inner > a {
	color: var(--accent_dark_blue);
}

.mobile-menu .categories-wrap ul > li > .cat-inner > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9px 0;
}

.mobile-menu .categories-wrap ul > li > .cat-inner > a {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}

.mobile-menu .categories-wrap ul > li.active > a {
	font-weight: bold;
  color: var(--accent_blue);
}

.mobile-menu .categories-wrap > ul.extra-links {
  padding-top: 30px;
  font-size: 16px;
  font-weight: normal;
}
 
.mobile-menu .subs {
	position: absolute;
  top: 15px;
  left: 15px;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--accent);
  border-radius: 10px 0 0 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.mobile-menu.subs-active .subs:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: -1;
}


.mobile-menu .subs.active {
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}

.mobile-menu .subs .subs-back {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10px;
  border-bottom: 2px solid #f6f6f6;
  margin-bottom: 30px;
  font-weight: 400;
}

.mobile-menu .subs .subs-back i {
	margin-right: 25px;
}

.mobile-menu .subs .subs-back span {
	padding-top: var(--fix_font);
  font-size: 12px;
}

.mobile-menu .subs .subs-back .crumbs span:last-child {
  font-weight: bold;
}

.mobile-menu .subs > ul {
	padding-left: 55px;
}

.mobile-menu .subs ul {
	width: 100%;
  padding-right: 15px;
}

.mobile-menu .sub-subs {
	left: 55px;
}

.mobile-menu .sub-subs li:not(.active) a {
	font-weight: normal;
  color: var(--accent_dark_blue);
}

.mobile-menu .show-subs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: var(--fix_font);
}

@media (max-width: 991px) {
  .mobile-menu,
  .mobile-menu-overlay {
  	top: 195px;
  }
}

@media (max-width: 767px) {
  .mobile-menu,
  .mobile-menu-overlay {
  	top: 155px;
  }
  
	.mobile-menu {
    width: 100%;
    -webkit-transform: translate(100%, 0px);
        -ms-transform: translate(100%, 0px);
            transform: translate(100%, 0px);
  }

  .mobile-menu.mobile-menu-open {
    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  .body-wrap.mobile-menu-open {
    -webkit-transform: translate(-100%, 0px);
        -ms-transform: translate(-100%, 0px);
            transform: translate(-100%, 0px);
  }
  
  .mobile-menu .categories-wrap {
  	font-size: 16px;
  }
  
  .mobile-menu .categories-wrap > ul {
    margin: -7px 0;
  }

  .mobile-menu .categories-wrap > ul > li > .cat-inner > a {
    padding: 7px 0;
  }
}
/* End mobile menu */

/* Headlines */
.headlines-wrap .inner-wrap {
	position: relative;
}

.headlines {
	position: unset;
}

.headlines .owl-dots {
  position: absolute;
  bottom: -20px;
  left: 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;
  width: calc(100% - 350px);
}

.headlines .owl-dots .owl-dot {
	margin: 0 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent_blue);
  opacity: .4;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.headlines .owl-dots .owl-dot.active {
	opacity: 1;
}

.headlines-wrap .inner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.headlines-wrap .slider-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: -30px;
}

.headlines-wrap .product-wrap{
  min-width: 350px;
  max-width: 350px;
  padding-left: 20px;
}

.headlines-wrap .headlines .headline {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: var(--border_radius);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
   -moz-backface-visibility: hidden;
   -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
}

.headlines-wrap .headline .content {
  min-height: 450px;
	padding: 20px 40px;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
/*   background: rgba(45, 71, 81, 0.8); */
  color: #fff;
}

.headlines-wrap .headline .content .subtitle {
	margin-bottom: 20px;
  font-size: var(--fontsize_heading_small);
}

.headlines-wrap .headline .content .title {
	font-size: var(--fontsize_heading_large);
  line-height: 1.1em;
  font-weight: bold;
  margin-bottom: 20px;
  max-width: 70%;
}

.headlines-wrap .headline .content .btn-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.headlines-wrap .headline .content .btn-wrap li {
	padding: 10px;
}

.headlines-wrap .product-wrap,
.headlines-wrap .product-wrap .products,
.headlines-wrap .product-wrap .products .product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.headlines-wrap .product-wrap .products .product {
	height: 100%;
}

.headlines-wrap .banners-wrap{
  min-width: 350px;
  max-width: 350px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.headlines-wrap .banners-wrap .banners-col{
	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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  margin: -10px;
}
.headlines-wrap .banners-wrap .banner{
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}
.headlines-wrap .banners-wrap .banner .banner-inner{
	background-color: var(--light_grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  border-radius: var(--border_radius);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
@media (max-width: 1199px) {
	.headlines-wrap .inner-wrap {
  	padding-top: 15px;
  }
}

@media (max-width: 991px) {
  .headlines .owl-dots {
    width: 100%;
  }
  .headlines{
  	position: relative; 	
  }
  .headlines-wrap .inner-wrap{
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;  
	}
  .headlines-wrap .banners-wrap{
    min-width: unset;
    max-width: unset;
    padding-left: unset;
    padding-top: 30px;
  }
  .headlines-wrap .banners-wrap .banner .banner-inner{
  	min-height: 220px;
  }
}

@media (max-width: 767px) {
  
  .headlines-wrap .headline .content {
  	padding: 15px;
    min-height: 400px;
  }
  
  .headlines-wrap .headline .content .subtitle {
  	margin-bottom: 10px;
  }
  
  .headlines-wrap .headline .content .title {
  	max-width: unset;
  }
  
  .headlines-wrap .headline .content .btn-wrap {
    margin: -7px;
  }

  .headlines-wrap .headline .content .btn-wrap li {
    padding: 7px;
  }
  .headlines-wrap .banners-wrap .banner .banner-inner{
  	min-height: 180px;
  }
  .headlines-wrap .banners-wrap .banners-col{
  	margin: -7px;
  }
  .headlines-wrap .banners-wrap .banner{
  	padding: 7px;  
  }
} 
/* End headlines */

/* Products */
.products {
	margin: -10px;
}

.products .product {
	padding: 10px;
}
/* End products */

/* Breadcrumbs */
.breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
  color: var(--dark_grey);
}

.breadcrumbs i {
	font-size: 1.15em;
}

.breadcrumbs a.home,
.breadcrumbs .crumb {
  display: inline;
}

.breadcrumbs .crumb i {
	margin: 0 10px;
  font-weight: bold;
}

.breadcrumbs a {
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
} 

.breadcrumbs a:hover {
	color: var(--accent_blue);
}

@media (max-width: 991px) {
  .breadcrumbs {
  	font-size: 14px;
  }
}
/* End breadcrumbs */

/* Collection/catalog */
.overview-page .page-wrap {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}
@media(max-width: 767px){
/*   .categories .category{
    min-height: 219px;
  } */
/*   #catalog .categories .category{
    min-height: 210px;
  } */
  .overview-page .page-wrap {
  	width: 100%;
  }
}
.sidebar {
	min-width: 330px;
  max-width: 330px;
  padding-right: 100px;
  margin-right: 20px;
}

.sidebar .sb-filter-block {
	margin-top: var(--block-spacing-40);
}

.sidebar .sb-block .sb-title {
	margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--accent);
}

.sidebar .sb-cats .cats li a {
	color: var(--dark_grey);
}

.sidebar .sb-cats .cats li.active > a {
	color: var(--accent_blue);
}

.sidebar .sb-cats .cats > li > a {
	font-weight: bold;
}

.sidebar .sb-cats .cats  li.active > a,
.sidebar .sb-cats .cats  li a:hover {
	color: var(--accent_blue);
}

.sidebar .sb-cats .cats li:not(:last-child) {
  margin-bottom: 15px;
}

.sidebar .sb-cats .cats li .sub-cats {
  display: none;
	margin-top: 15px;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 2px solid #fff;
}

.sidebar .sb-cats .cats li .sub-cats.open,
.sidebar .sb-cats .cats li.active .sub-cats {
	display: block;
}

.sidebar .sb-filter li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar .sb-filter li label {
  font-weight: normal;
  margin: 0;
  cursor: pointer;
}

.sidebar .sb-filter li.active label {
	font-weight: bold;
}

.overview-page .page-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.overview-page .page-title-wrap .title {
  font-size: var(--fontsize_heading_medium);
  font-weight: bold;
  line-height: 1.1em;
}

.overview-page .page-title-wrap .sort-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  white-space: nowrap;
}

.overview-page .page-title-wrap .sort-wrap .count,
.overview-page .page-title-wrap .sort label {
	margin: 0;
  font-size: 16px;
  font-weight: normal;
  color: var(--dark_grey);
  padding-top: var(--fix_font);
  line-height: 1;
}

.overview-page .page-title-wrap .sort-wrap .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	margin-right: 30px;
  padding-right: 30px;
  border-right: 2px solid #fff;
}

.overview-page .page-title-wrap .sort label {
	margin-right: 10px;
}

.overview-page .page-title-wrap .sort .custom-select {
	position: relative;
  padding-right: 60px;
}

.overview-page .page-title-wrap .sort .custom-select select {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.overview-page .page-title-wrap .sort .custom-select i  {
	position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 25px;
}

.overview-page .page-content-top {
/* 	max-width: 680px; */
  margin-bottom: var(--block-spacing-40);
}

.overview-page .page-content-bottom {
	padding: var(--block-spacing-60) var(--block-spacing-100);
  padding-bottom: var(--block-spacing-40);
  background: #fff;
  -webkit-box-shadow: 0 0 50px 0 rgba(0,0,0,0.05);
          box-shadow: 0 0 50px 0 rgba(0,0,0,0.05);
  border-radius: var(--border_radius);
}

.overview-page .page-content-bottom .content-row {
	display: -ms-grid;
	display: grid;
  grid-auto-flow: column;
  grid-gap: 150px;
}

#collection .custom-pager {
  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: 100%;
  margin-top: var(--block-spacing-40);
}

#collection .custom-pager .prev a,
#collection .custom-pager .next a {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  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: var(--accent);
  color: #ffff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-size: 20px;
}

#collection .custom-pager .prev.disabled a,
#collection .custom-pager .next.disabled a {
	background: #eee;
  color: var(--dark_grey);
  pointer-events: none;
}

#collection .custom-pager .prev a:hover,
#collection .custom-pager .next a:hover {
	-webkit-filter: brightness(90%);
	        filter: brightness(90%);
}

#collection .custom-pager .prev {
	margin-right: 5px;
}

#collection .custom-pager .next {
	margin-left: 5px;
}

#collection .custom-pager .number {
  padding: 0 3px;
  margin: 0 3px;
  opacity: 0.5;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#collection .custom-pager .number:hover {
  opacity: 1;
}

#collection .custom-pager .number.active {
  opacity: 1;
  font-weight: 600;
}

@media (max-width: 1199px) {
	.overview-page .page-content-bottom .content-row {
    grid-auto-flow: row;
    grid-gap: 50px;
  }
  
  .sidebar-overlay {
    background: rgba(45,71,81,0.80);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  
  .sidebar-overlay.active {
  	opacity: 1;
    visibility: visible;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 99999;
    background: #fff;
    margin: 0;
    padding: 30px;
    overflow-y: scroll;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    max-width: 330px;
    min-width: 250px;
    width: 80%;
  }
  
  .sidebar.active {
  	-webkit-transform: translateX(0);
  	    -ms-transform: translateX(0);
  	        transform: translateX(0);
  }
  
  .sidebar .close-sidebar {
    position: absolute;
    top: 0;
    right: 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;
  }
  
  .overview-page .page-title-wrap .sort-wrap .toggle-sidebar {
  	margin-right: 20px;
  }
}

@media (max-width: 991px) {
	.overview-page .page-title-wrap .sort-wrap .count {
    margin-right: 15px;
    padding-right: 15px;
  }
  .overview-page .page-title-wrap .sort .custom-select i {
  	font-size: 20px;
  }
}

@media (max-width: 767px) {
  .overview-page .page-title-wrap .sort-wrap .toggle-sidebar {
    	margin-right: 10px;
  }
    
  .overview-page .page-title-wrap .sort .custom-select {
  	padding-right: 50px;
  }
  
  .overview-page .page-title-wrap .sort .custom-select i {
  	font-size: 16px;
  }
  .overview-page .page-content-bottom {
  	padding: 20px;
  }
  
  .overview-page .page-title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .overview-page .page-title-wrap form {
  	width: 100%;
  }
  
  .overview-page .page-title-wrap .sort-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
  
  .overview-page .page-title-wrap .btn {
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
  }
  
  .overview-page .page-title-wrap .sort label {
  	font-size: 13px;
  }
}
/* End collection */

/* 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: 8px 0;
}

.ui.checkbox .box,
.ui.checkbox label {
  padding-left: 1.8em;
  cursor: pointer;
  font-size: 15px;
  line-height: 18px;
  color: #000 !important;
	font-weight: 300;
}

.ui.checkbox input:checked ~ label,
.ui.checkbox label:hover,
.ui.checkbox+label:hover {
	color: #000 !important;
}

.ui.checkbox label span {
	font-size: 12px;
  color: #aaa;
}

.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: #fff !important;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
}

.ui.checkbox:not(.radio) .box:before, 
.ui.checkbox:not(.radio) label:before {
	border-radius: 2px !important;
}

.ui.checkbox label:before,
.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: var(--accent_blue) !important;
  width: 18px;
  height: 18px;
  line-height: 18px;
}

.ui.checkbox input:checked:focus~.box:before,
.ui.checkbox input:checked:focus~label:before,
.ui.checkbox input:checked~.box:before,
.ui.checkbox input:checked~label:before {
	background: var(--accent);
  border-color: var(--accent) !important;
}

.ui.checkbox .box:hover:before,
.ui.checkbox label:hover:before {
	border-color: var(--accent) !important;
}
/* End checkbox */

/* Brands */
.brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	margin: -15px;
}

.brands .brand {
	padding: 15px;
}
/* End brands */

/* Tags */
#tags-page .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	margin: -7px;
}

#tags-page .tags a {
	height: 35px;
  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-weight: 600;
  color: #333;
  padding: 0 20px;
  background: #f7f7f7;
  margin: 7px;
}
/* End tags */

/* messages */
.gui-messages {
	display:none !important;
}

.message-wrap {
	position:fixed;
  left:30px;
  bottom:30px;
  z-index:99999999999;
  display:none;
}

.message-wrap.active {
  display:block;
}

.message-wrap .message {
	background:#fff;
  border-radius:0px;
  padding:20px;
  width:350px;
  -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);
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  font-size:1.1em;
  opacity:0;
  visibility:hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.message-wrap.active .message {
	-webkit-animation: jump 1s ease 0s 1 normal ;
 	animation: jump 1s ease 0s 1 normal ;
  opacity:1;
  visibility:visible;
  -webkit-transform: translate(0px, 0);
      -ms-transform: translate(0px, 0);
          transform: translate(0px, 0);
}

.message-wrap .message .icon {
	min-width:40px;
  max-width:40px;
  height:40px;
  background:#000;
  color:#fff;
  border-radius:100%;
  text-align:center;
  line-height:40px;
  margin-right:20px;
  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;
}

.message-wrap .message.error .icon {
  background: #cd3b3b;
}
.message-wrap .message.success .icon {
  background: #2ecc71;
}
.message-wrap .message.info .icon {
  background: #3ca1cd;
}

.message-wrap .text ul {
	margin:0;
  padding:0;
  list-style:none;
}

@-webkit-keyframes jump {
  0%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  20%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  40%{
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
  }
  50%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  60%{
	-webkit-transform: translateY(-15px);
	transform: translateY(-15px);
  }
  80%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  100%{
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
}

@keyframes jump {
  0%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  20%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  40%{
	-webkit-transform: translateY(-30px);
	        transform: translateY(-30px);
  }
  50%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  60%{
	-webkit-transform: translateY(-15px);
	        transform: translateY(-15px);
  }
  80%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
  100%{
	-webkit-transform: translateY(0);
	        transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .message-wrap {
    top: auto;
    bottom: 10px;
    z-index: 99999999999;
    left: 0;
    padding: 0px 10px;
  }
  .message-wrap .message {
    padding: 15px;
    width:100%;
  }
  .message-wrap .message .icon {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    line-height:30px;
    margin-right: 15px;
    font-size: 10px;
  }
}
/* End messages */

/* Custom service */
#service-page .title-featured {
	margin-top: var(--block-spacing-60);
}

#service-page .content-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#service-page .content-col {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

#service-page .content-col.left {
	padding: 0 var(--block-spacing-100);
  margin-right: var(--block-spacing-100);
  border-right: 2px solid #fff;
}

#service-page .service-title {
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 1.3em;
  font-size: var(--fontsize_heading_medium);
}

#service-page .textpage-content {
	color: var(--accent_blue);
}

#service-page .textpage-content strong {
	color: var(--accent);
	width: 70px;
  display: inline-block;
}

#service-page .textpage-content a {
	color: var(--accent_blue);
  text-decoration: none;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

#service-page .textpage-content a:hover {
	color: var(--accent);
  text-decoration: underline;
}

#contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contact-form label{
	font-weight: normal;
  font-size: .9em;
  margin-bottom: 15px;
}

#contact-form input,
#contact-form textarea {
  border: 1px solid var(--dark_grey);
  height: 60px;
  margin-bottom: 25px;
  padding-left: 40px;
}

#contact-form input:focus,
#contact-form textarea:focus {
	border-color: var(--accent_blue);
}

#contact-form textarea {
  height: auto;
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  padding: 20px 40px;
}

@media (max-width: 767px) {
  #service-page .content-row {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  }
  
  #service-page .content-col.left {
    margin: 0;
    padding: 0;
    border: none;
    padding-bottom: var(--block-spacing-80);
    margin-bottom: var(--block-spacing-80);
    border-bottom: 2px solid #fff;
  }
  
  #contact-form input,
	#contact-form textarea {
    height: 50px;
    padding-left: 30px;
  }
  
  #contact-form textarea {
    min-height: 150px;
    padding: 20px 30px;
  }
}
/* End custom service */

/* About */
#about-page .page-content {
	max-width: 700px;
  margin: 0 auto;
}
/* End about */

/* Blog */
#blog .breadcrumbs {
	margin-bottom: 40px;
}

#blog .col-sidebar {
  min-width: 300px;
  max-width: 300px;
  margin-right: 50px;
}

#blog .col-main {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}

#blog .complete-article {
/* 	margin: 0 auto; */
  max-width: 730px;
  padding: 0 25px;
}

#blog .complete-article .image {
	padding-top: 75%;
	border-radius: var(--border_radius);
  margin-bottom: var(--block-spacing-40);
}

#blog .complete-article blockquote {
  padding: var(--block-spacing-60) 0;
  border: none;
  margin: 0;
  font-size: 2em;
  line-height: 1.4em;
  font-weight: bold;
  color: var(--accent);
  margin-left: -50px;
}

#blog .complete-article .title-wrap .date {
	font-size: var(--fontsize_heading_small);
/*   color: var(--accent); */
  color: #fff;
  margin-bottom: var(--block-spacing-20);
}

#blog .complete-article .title-wrap .title {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: var(--block-spacing-40);
}

@media (max-width: 1199px) {
	#blog .complete-article {
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  #blog .complete-article {
  	max-width: unset;
    padding: 0 15px;
  }
  
  #blog .complete-article blockquote {
  	margin-left: -15px;
  }
}
/* End blog */

/* CUSTOM CART */
#cart-page .cart-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin:0px -25px;
}
#cart-page .cart-body-col {
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
  padding:0px 25px;
  min-height:1px;
}
#cart-page .cart-total-col {
  min-width:500px;
  max-width: 500px;
  padding:0px 25px;
  min-height:1px;
}
#cart-page .cart-title,
.checkout-title,
#service-page .service-title{
  margin-bottom:20px;
}
#cart-page .cart-title .title,
.checkout-title .title,
#service-page .service-title .title {
  font-size:25px;
  margin:0;
}
#cart-page .cart-table {
  width:100%;
}
#cart-page .cart-table th {
  font-size:120%;
  text-align:center;
  padding-bottom:10px;
}
#cart-page .cart-table th:first-child {
  text-align:left;
}
#cart-page .cart-table td {
  padding:15px 15px;
  border-bottom:1px solid rgba(0,0,0,0.065);
}
#cart-page .cart-table td.image {
  width:100px;
}
#cart-page .cart-table td.image img {
  width:100%;
}
#cart-page .cart-table .image-wrap {
  position:relative;
}
#cart-page .cart-table .image-wrap.img-gray {
  padding: 12%;
}
#cart-page .cart-table .image-wrap.img-gray:after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.025);
}
#cart-page .cart-table .info .brand {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  color: #888;
}
#cart-page .cart-table .info .product-title {
  font-weight: 600;
  margin-top: 2px;
}
#cart-page .cart-table .info .extra-info {
  color:#888;
  margin-top:5px;
}
#cart-page .cart-table .option-icons {
  font-size: 20px;
  color: #ccc;
}
#cart-page .cart-table td:last-child {
  padding-right:0;
}
#cart-page .cart-table td:first-child {
  padding-left:0;
}
#cart-page .cart-table .extra-info ul {
  margin:0px;
  padding:0;
  list-style:none;
  font-size:13px;
}
#cart-page .cart-table .extra-info ul li.variant {
/*  font-size:120%; */
  margin-bottom:5px;
}
#cart-page .cart-table .extra-info ul li strong {
  color: #000;
}
#cart-page .cart-table .info a.title .items {
  font-size:80%;
  color:#777;
}
#cart-page .cart-table .subtotal {
  text-align:right;
  font-weight:bold;
}

#cart-page .cart-table .input-wrap {
  margin-top:10px;
}
#cart-page .total-block {
  font-size: 14px;
  padding: 30px;
  background: #fff;
  border-radius: var(--border_radius);
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.05);
          box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
#cart-page .total-block table {
  width:100%;
  font-weight:700;
}
#cart-page .total-block table td {
  padding:3px 0px;
}
#cart-page .total-block table td:last-child {
  text-align:right;
}
#cart-page .total-block table tr:last-child td {
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,0.06);
  font-size:120%;
}
#cart-page .total-block table tr:nth-last-child(2) td {
  padding-bottom:20px;
}
#cart-page .total-block table .delete-discount {
  font-size:70%;
  margin-left:5px;
}
#cart-page .total-block ul.payments {
  margin:-3px;
  margin-top:37px;
  padding:0;
  list-style:none;
  text-align:center;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}
#cart-page .total-block ul.payments li {
  margin:3px;
  padding:3px 5px;
  background:#fff;
  width:60px;
  border-radius:2px;
  display:inline-block;
  width:calc(16.6666% - 6px);
}
#cart-page .total-block ul.payments li a{
  border-radius: 2px;
}
#cart-page .total-block ul.payments li img {
  width: 100%;
  height:auto;
}
#cart-page .total-block .button  {
  margin-top:20px;
}
#cart-page .total-block .button .btn {
  width: 100%;
  background: var(--accent);
  margin-top:5px;
}
#cart-page .total-block .button .btn i {
  margin-right:7px;
}
#cart-page .total-block .button .btn:first-child {
  margin-top:0;
}
#cart-page .total-block .button .btn.paypal {
  background:#012169;
}
#cart-page .total-block .button .btn.fastcheckout {
  background:#1ba5de;
}
#cart-page .total-block .discount-block form {
  position:relative;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#cart-page .total-block .discount-block input {
  height:50px;
  font-size: 14px;
  padding:0px 20px;
  border:none;
  outline:none;
  background: var(--light_grey);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
/*   border-radius:var(--border_radius); */
  border-radius: 0;
  -webkit-box-flex:10;
      -ms-flex-positive:10;
          flex-grow:10;
}
#cart-page .total-block .discount-block .btn {
  width:50px;
  height:50px;
  padding:0;
  line-height:50px;
  background:var(--accent);
  margin-left:10px;
}
#cart-page .total-block .discount-block .btn i {
  font-size: 1.2em;
}
#cart-page .total-block .discount-block {
  margin-bottom:40px;
}
#cart-page .total-block .discount-block.shipping-active {
  margin-bottom:25px;
}
#cart-page .total-block .shipping-costs-block {
  margin-bottom:20px;
}
#cart-page .total-block .toggle-shipping-costs {
  font-weight:bold;
}
#cart-page .total-block .toggle-shipping-costs i {
  margin-left:7px;
}
#cart-page .total-block .shipping-costs-wrap {
  display:none;
  padding:10px 0px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 15px;
}
#cart-page .total-block .shipping-costs-wrap.used {
  display:block;
}
#cart-page .total-block .shipping-costs-wrap .ui.selection.dropdown {
  width: 100%;
  background-color: #fff;
  height: 40px;
  margin-bottom: 10px;
  padding: 0px 20px;
}
#cart-page .total-block .shipping-costs-wrap .ui.selection.dropdown .menu {
  max-height: 20.22857143rem;
}
#cart-page .total-block .shipping-costs-wrap .ui.search.selection.dropdown>input.search {
  padding:0px 20px;
  height:100%;
}
#cart-page .total-block .shipping-costs-wrap .ui.selection.dropdown>.dropdown.icon {
  height: 40px;
  line-height: 38px;
  width: 40px;
  color: #000;
}
#cart-page .total-block .shipping-costs-wrap .radio-block {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 5px 0px;
}
#cart-page .total-block .shipping-costs-wrap .radio-block .radio-wrap label {
  margin-left:7px;
}
.custom-cart-page .gui-progressbar {
  display:none;
}
.gui-input, .gui-text, .gui-select, .gui-number, .gui-select select {
  border: none !important;
  background: rgba(0,0,0,0.05)!important;
  border-radius: 0!important;
}
.gui-input input,
.gui-select select {
  height:40px !important;
}
.gui-checkout .gui-form a.gui-button-small {
  float: none;
  height: 40px;
  line-height: 42px;
  padding: 0px 25px;
  font-weight: bold;
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 12px;
  border-radius: 7px !important;
  text-transform: uppercase;
}
.gui-checkout .gui-form a.gui-button-primary, .gui-checkout .gui-form a.gui-button-action {
  padding: 0px 25px !important;
  background: var(--accent) !important;
  color:#fff !important;
  border-radius: var(--border_radius) !important);
}
.gui-checkout input:-webkit-autofill {
    background: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
}
.upsell-products {
  padding-top:70px;
}

#cart-page ul.cart-usp-wrap li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding:5px 0px;
}
#cart-page ul.cart-usp-wrap li i{
  font-size: 20px;
  margin-right: 10px;
  color: var(--accentHighlight);
}
#cart-page ul.cart-usp-wrap,
#cart-page .custom-widget {
  margin-top:20px;
}

@media (max-width: 1450px) {
  #cart-page .cart-total-col {
    min-width:450px;
    max-width:450px;
  }
}

@media (max-width: 1199px) {
  #cart-page .cart-row {
    margin:0px -15px;
  }
  #cart-page .cart-body-col {
    padding:0px 15px;
  }
  #cart-page .cart-total-col {
    min-width:400px;
    max-width:400px;
    padding:0px 15px;
  }
  #cart-page .total-block {
    padding:25px;
    font-size:13px;
  }
  #cart-page .cart-table {
    font-size:13px;
  }
  #cart-page .cart-table th {
    font-size:100%;
  }
  #cart-page .cart-table td {
    padding:15px 10px;
  }
  #cart-page .cart-table td.image {
    width:75px;
  }
} 
  
@media (max-width: 991px) {
  #cart-page .cart-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cart-page .cart-body-col {
    width: 100%;
  }
  #cart-page .cart-total-col {
    min-width: 100%;
    max-width: 100%;
    margin-top:30px;
  }
  #cart-page .total-block .payments ul li {
    width: calc(10% - 6px);
  }  
}
  
@media (max-width: 767px) {
  #cart-page .total-block .payments ul li {
    width:calc(16.6666% - 6px);
  }
  #cart-page .cart-table td {
    padding: 10px 5px;
  }
  #cart-page .cart-table td.image {
    width:70px;
  }
  #cart-page .cart-title .title, .checkout-title .title, #service-page .service-title .title {
    font-size:18px;
  }
  #cart-page .cart-table {
    font-size:12px;
  }
  #cart-page .cart-table .extra-info ul {
    font-size:11px;
  }
  #cart-page .total-block {
    border: none;
    padding:20px;
    margin:0 -15px;
    border-radius: 0;
  }
  #cart-page .cart-title, .checkout-title, #service-page .service-title {
    margin-bottom:20px;
  }
  #cart-page .total-block .discount-block {
    margin-bottom:20px;
  }
  #cart-page .total-block .payments ul {
    margin-top:17px;
  }
  #cart-page .total-block .payments img{
    height: 30px;
  }
  #cart-page .total-block table tr:last-child td{ 
    padding-top:10px;
  }
  #cart-page .total-block table tr:nth-last-child(2) td {
    padding-bottom:10px;
  }
  .upsell-products {
    padding-top:30px;
  }
  #cart-page .total-block .discount-block input {
    height:40px;
    padding:0px 15px;
  }
  #cart-page .total-block .discount-block .btn {
    width:40px;
    height:40px;
    line-height:40px;
  }
}
/* END CUSTOM CART */

/* Custom Checkout - Start */
.gui {
  font-size: 16px;
}
.gui-checkout {
  font-size: 16px;  
}

.gui-checkout .order-summary table tr:first-child td small {
  display: none;
}
.gui-payment-method-service .gui-payment-method-icon {
  opacity:0;
  background:#fff;
  border-radius:3px;
  border:1px solid rgba(0,0,0,.07);
}

.gui-payment-method-service .gui-payment-method-icon.updated {
  opacity:1;
}

.gui-form .gui-radio label,
.gui-form .gui-checkbox label {
  position: relative;
  padding-left: 30px !important;
  padding-top: 4px;
}

.gui-form .gui-radio label:before,
.gui-form .gui-checkbox label:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border:1px solid rgba(0,0,0,.07);
}

.gui-form .gui-checkbox label:before {
  border-radius:0;
}

.gui-form .gui-radio input,
.gui-form .gui-checkbox input {
  display:none;
}

.gui-form .gui-radio input:checked ~ label:after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 100%;
}

.gui-form .gui-checkbox input:checked ~ label:after {
  content: "\f00c";
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--accent) !important;
}

.gui-checkout-one-step .gui-payment-method-service > label {
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  margin: 0;
  margin-bottom: 10px;
  border: 2px solid transparent;
}
.gui-checkout-one-step .gui-payment-method-service > label input {
  display:none;
}

.gui-checkout .gui-form a.gui-button-small {
  height: 40px;
  line-height: 42px;
  padding: 0 20px;
}

.gui a.gui-button-large, .gui a.gui-button-small {
  color: #ffffff !important;
  font-weight: 700;   
  border-radius: var(--border_radius) !important;
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}

.gui-checkout-one-step .gui-block {
  padding: 7%;
  border-radius: 0px;
}

.gui-checkout-one-step .gui-block, .gui-checkout-one-step .gui-block {
  background: #fff;
  border: 1px solid #eee !important;
  border-radius: var(--border_radius);
}

.gui-input, .gui-text, .gui-select, .gui-number {
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
}

body .gui-block-subtitle, body .gui-content-subtitle {
  font-size:1.3em;
  font-weight: bold;
}

.gui-block-subtitle a {
  font-size:12px;
  line-height:2em;
  text-transform:none;
}

.gui-form .gui-checkout-steps {
  margin:-15px;
}

.gui-checkout-one-step .gui-checkout-steps {
  width:auto !important;
}

.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col1,
.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2,
.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col3 {
  width: 33.3333% !important;
  padding: 15px !important;
  margin: 0 !important;
}

.gui-form .gui-field > label {
  font-size:.9em;
}

.gui-checkout #gui-block-review .gui-product-image {
  display: block !important;
  border:none;
  border-radius:3px;
  overflow: hidden;
  margin-right:15px;
}

.order-summary .gui-table tbody tr td:first-child {
  padding-left:0;
}

.order-summary .gui-table tbody tr td:last-child {
  padding-right:0;
  color:#404040;
}

.order-summary .gui-table thead {
  display:none;
}
.order-summary .gui-table tbody tr td {
  font-size:14px;
}

.gui-cart-sum .gui-item .gui-desc {
  font-size: 12px;
  text-align:left !important;
}

.gui-cart-sum .gui-line {
  background:#eee !important;
}

body .gui-table tbody tr:last-child td {
  border-color:#eee;
}

.gui-checkout .gui-confirm-buttons a.gui-button-action {
  padding: 0px 40px !important;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  border-radius: 0 !important;
}

input#gui-form-discount_code {
  font-size: 1em;
}

.gui-select select {
  -webkit-appearance: none;
  -moz-appearance:none;
       appearance:none;
  background:transparent !important;
  padding:0px 10px !important;
}

body .gui-select {
  background:#fff !important;
  color:#000;
  font-size:13px;
  position:relative;
  z-index:0;
  border-radius: 5px;
  overflow: hidden;
}

body .gui-select:after {
  font-family: fontawesome;
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  z-index: -1;
  font-size: .9em;
}

.gui-form .gui-radio input {
  margin: 0;
  margin-right: 10px;
}

.gui-checkout .gui-form .gui-input,
.gui-checkout .gui-form .gui-text,
body .gui-select {
  border: none !important;
}

.gui-select select {
  height: 40px !important;
  -webkit-appearance: none;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07) !important;
}

.gui-checkout .gui-form input[type="text"],
.gui-checkout .gui-form input[type="email"],
.gui-checkout .gui-input input,
.gui-checkout .gui-form textarea {
  height:40px;
  padding:0px 15px;
  font-size: 14px;
  outline:none;
  border: 1px solid #efefef;
  border-radius:0px;
  background:#fff;
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
}

.gui-checkout .gui-form textarea {
  padding:13px 20px;
  max-width:100%;
  min-height: 100px;
}

.gui-checkout .gui-form input::-webkit-input-placeholder,
.gui-checkout .gui-form textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #aaa;
  color:rgba(0,0,0,0.4);
}

.gui-checkout .gui-form input:-moz-placeholder,
.gui-checkout .gui-form textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

.gui-checkout .gui-form input::-moz-placeholder,
.gui-checkout .gui-form textarea::-moz-placeholder{ /* Mozilla Firefox 19+ */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
   opacity:  1;
}

.gui-checkout .gui-form input:-ms-input-placeholder,
.gui-checkout .gui-form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

.gui-checkout .gui-form input::-ms-input-placeholder,
.gui-checkout .gui-form textarea::-ms-input-placeholder { /* Microsoft Edge */
   color:    #aaa;
  color:rgba(0,0,0,0.4);
}

body .gui-input.gui-focus,
body .gui-text.gui-focus,
.gui-input input:focus,
.gui-text textarea:focus {
  border:1px solid rgba(0,0,0,.07) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

body .gui-select.gui-focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.gui-checkout .gui-progressbar {
  display: none;
}

.gui-checkout .gui-form a.gui-button-action {
  width: 100%;
  height: 55px;
  line-height: 60px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  border-radius: var(--border_radius) !important;
}
.gui-input-phone-number .gui-input-phone-number-code-wrapper{
  margin: unset !important;
}
.gui-input-phone-number #gui-form-details-phone-number{
  padding-left: 80px !important;
}
.gui-delivery-time-checkout{
  display: none;
}
.gui-checkout .gui-form a.gui-button-action{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
.gui-form label em{
  color: var(--accent) !important;
}
.gui-form .gui-radio input:checked ~ label:after{
  background: var(--accent) !important;
}
.gui-checkout-one-step .gui-payment-method-service.gui-is-selected > label{
  border: 2px solid var(--accent) !important;
}
.gui-input-phone-number .gui-input-phone-number-code-placeholder {
  line-height: 40px !important;
}
.gui-input-phone-number .gui-input-phone-number-code-flag {
  top: 10px !important;
  left: 10px !important;
}
.gui-checkout.gui a {
    color: var(--black);
}
/* Responsive */
@media (max-width: 1199px) {
  .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col1,
  .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2,
  .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col3 {
    width: 100% !important;
  }
}
@media(max-width: 991px){
  .gui-checkout-one-step .gui-block{
    padding: 30px !important;
  }
  .gui-block-subtitle, .gui-content-subtitle{
    font-size: 1.3em;
  }
}
@media(max-width: 767px){
  .gui {
    font-size: 14px;
  }
  .gui-checkout {
    font-size: 14px;
  }
  .gui-block-subtitle, .gui-content-subtitle{
    font-size: 1.1em;
  }
  .gui-checkout-one-step .gui-block{
    padding: 20px !important;
  }
}
/* Custom checkout - End */

/* Login / register */
.gui-login .gui-input,
.gui-register .gui-input {
	border: 1px solid var(--light_grey) !important;
  -webkit-box-shadow:none !important;
          box-shadow:none !important;
  font-size: 14px;
}

.gui-login .gui-input input,
.gui-register .gui-input input {
	height:40px !important;
  padding:0px 12px !important;
  font-family:inherit;
  -webkit-box-shadow:none !important;
          box-shadow:none !important;
  border: none !important;
}

body .gui-input.gui-focus,
body .gui-text.gui-focus,
.gui-input input:focus,
.gui-text textarea:focus {
	border: 1px solid var(--light_grey) !important;
}

.gui-page-title {
	display:none;
}

.gui-login .gui-block-title,
.gui-login .gui-block,
.gui-register .gui-block-title,
.gui-register .gui-block {
	border-color: #F2F2F2 !important;
}

body .gui-login .gui-button-small,
body .gui-register .gui-button-small{
	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;
  padding:0px 40px;
  height:55px;
  font-size:16px;
  border-radius: var(--border-radius);
}

body .gui-login .gui-block,
body .gui-register .gui-block {
  -webkit-box-shadow: 4px 4px 25px 0px rgba(0,0,0,0.04);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.05);
  border: none;
  border-radius: var(--border_radius);
  overflow: hidden;
}

body .gui-login .gui-block-title,
body .gui-login .gui-content-title,
body .gui-register .gui-block-title,
body .gui-register .gui-content-title{
  border: none;
  font-size: 1.6em;
  font-weight: 700;
  font-family: inherit;
  padding: 30px;
}

body .gui-login .gui-content-title,
body .gui-register .gui-content-title {
	padding:0;
  padding-bottom:30px;
}

body .gui-login .gui-block-title strong,
body .gui-register .gui-block-title strong {
	font-weight:bold;
}

body .gui-login .gui-block-content,
body .gui-register .gui-block-content {
	padding:30px;
  padding-top:0;
  background: #fff;
}

body .gui p {
	line-height:150%;
  margin-bottom:20px;
}

body .gui-login label,
body .gui-register label,
body .gui-register .gui-form .gui-field > label,
body .gui-login .gui-form .gui-field > label {
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  margin: 0;
  display: block;
  margin-bottom: 5px;
  color: #303d43; 
}

body .gui a.gui-button-facebook {
  margin: 0;
  height: 55px;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: 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;
  padding: 0px 30px;
  height: 55px;
  font-size: 16px;
  background: #3C5A99;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--border_radius);
}

body .gui a.gui-button-facebook span {
  margin: 0;
  background: transparent;
  border: none;
  color: inherit;
  padding:0;
}

body .gui a.gui-button-facebook:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f082";
  font-size:22px;
  margin-right:10px;
}

.gui-account-loyalty-content {
	height: auto !important;
}
.gui-login .gui-col2-big-col1 .gui-buttons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  margin-top: 15px;
  padding: 0;
}

.gui-login .gui-col2-big-col1 .gui-buttons .gui-right {
	margin: 0;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .gui-login .gui-buttons {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  }
  .gui-col2-big .gui-col2-big-col1, .gui-col2-big .gui-col2-big-col2, .gui-col2-equal .gui-col2-equal-col1, .gui-col2-equal .gui-col2-equal-col2, .gui-col2-left .gui-col2-left-col1, .gui-col2-left .gui-col2-left-col2, .gui-col2-leftm .gui-col2-leftm-col1, .gui-col2-leftm .gui-col2-leftm-col2, .gui-col2-right .gui-col2-right-col1, .gui-col2-right .gui-col2-right-col2, .gui-col2-rightm .gui-col2-rightm-col1, .gui-col2-rightm .gui-col2-rightm-col2, .gui-col3-center .gui-col3-center-col3, .gui-col3-center .gui-col3-center-col2, .gui-col3-center .gui-col3-center-col3, .gui-col3-equal .gui-col3-equal-col1, .gui-col3-equal .gui-col3-equal-col2, .gui-col3-equal .gui-col3-equal-col3, .gui-col3-equal .gui-col3-equal-col2.gui-div-cart-coupons, .gui-col2-right-col1.gui-div-faq-questions, .gui-blog .gui-col2-right-col1, .gui-col2-right-col2.gui-div-faq-right, .gui-blog .gui-col2-right-col2, .gui-buttons .gui-right, .gui .gui-right a {
    float: none;
    margin: 0px;
    width: 100%;
  }
  
  .gui .gui-right a.gui-button-facebook {
    width: auto;
    margin: 15px 0px 0px 0px;
  }
  
  .gui-login .gui-login-registered {
  	margin-top: 30px;
  }
}
/* End login / register */

/* Signcreator page */
#creator-page .steps-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#creator-page .steps-wrap .step {
	width: 17.5%;
}

#creator-page .steps-wrap .step .title {
	font-size: var(--fontsize_heading_small);
  color: var(--accent);
  margin-top: var(--block-spacing-40);
}

#creator-page .steps-wrap .arrow {
	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: 10%;
}

#creator-page .steps-wrap .arrow i {
	font-size: 2em;
  color: var(--accent);
  -webkit-transform: translateY(-100%) rotate(-90deg);
      -ms-transform: translateY(-100%) rotate(-90deg);
          transform: translateY(-100%) rotate(-90deg);
}

#creator-page .editor-block .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#creator-page .editor-block .col {
	width: 50%;
}

#creator-page .editor-block .text-box {
	padding-right: var(--block-spacing-80);
}

#creator-page .editor-block .features {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -25px;
}

#creator-page .editor-block .features .feature {
	padding: 25px;
}

#creator-page .editor-block .features .feature .circle {
	min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 20px;
}

#creator-page .editor-block .features .feature .title {
	color: var(--accent);
  font-size: var(--fontsize_heading_small);
  font-weight: bold;
  margin-bottom: 10px;
}

#creator-page .editor-block .image {
	position: relative;
  overflow: hidden;
  margin-right: -30px;
}

#creator-page .editor-block .image .frame {
	width: 100%;
}

#creator-page .editor-block .image .bg {
  position: absolute;
  top: 3.9%;
  left: 3.6%;
  width: 97.9%;
  height: 92.3%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

#creator-page .editor-block .btn-wrap {
	margin-top: var(--block-spacing-100);
}

@media (max-width: 1199px) {
  #creator-page .steps-wrap .step .title {
    margin-top: var(--block-spacing-20);
  }
  
  #creator-page .editor-block .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  #creator-page .editor-block .col {
    width: 100%;
  }
  
  #creator-page .editor-block .image {
  	margin-top: var(--block-spacing-80);
  }
}

@media (max-width: 991px) {
  #creator-page .steps-wrap {
  	margin: 0 -30px;
  }
  
  #creator-page .steps-wrap .step {
    padding: 0 30px;
  	width: 100%;
  }
  
  #creator-page .editor-block .features .feature {
  	width: 50%;
  }
}

@media (max-width: 767px) {
  #creator-page .steps-wrap {
  	margin: 0 -15px;
  }
  
  #creator-page .steps-wrap .step {
    padding: 0 15px;
  }
  
  #creator-page .editor-block .image {
  	margin-right: -15px;
  }
  
  #creator-page .editor-block .features {
  	margin: -15px;
  }
  
  #creator-page .editor-block .features .feature {
  	width: 100%;
    padding: 15px;
  }
}
/* End signcreator page */

/* categories */
.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	margin:-10px;
}

.categories .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	padding:10px;
}

.categories .category .category-title {
	font-size: 1em;
  padding: 15px;
  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: space-between;
  color: var(--accent_blue);
  -webkit-transition: .15s all ease-in-out;
  -o-transition: .15s all ease-in-out;
  transition: .15s all ease-in-out;
  border-top: 1px solid var(--light_grey);
}
.categories .category .category-title i{
	font-size: 1.2em;
  font-weight: bold;
}
.categories .category .inner {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  color:#fff;
  padding-top:50px;
  width: 100%;
}
.categories .category .inner:hover .category-title {
	background-color: var(--accent_blue);
  color: #fff;
  border-bottom-left-radius: var(--border_radius);
  border-bottom-right-radius: var(--border_radius);
}
.categories .category .background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
	background: #fff;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
  border-radius: var(--border_radius); 
  -webkit-transition: all .15s ease-in-out; 
  -o-transition: all .15s ease-in-out; 
  transition: all .15s ease-in-out;
  width: 100%;
}

.categories .category .image-wrap {
  width:100%;
  text-align:right;
}

.categories .category .image-wrap img {
	max-width:250px;
  margin-top:-50px;
  width:100%;
  height:auto;  
  display:inline-block;
}

.categories .categories-slider .category {
	width: 100% !important;
}

.categories .categories-slider .category .category-title {
  padding: 15px 10px;
  font-size: 1.1em;
  word-break: break-word;
}

@media (max-width: 767px) {
	.categories {
    margin:-5px;
  }

  .categories .category {
    padding:5px;
  }
  
  .categories .category .category-title {
  	padding: 15px 10px;
    font-size: 1.1em;
    word-break: break-word;
  }
}
/* end categories */

/* home sign-creator */
.home-sign-creator {
	position: relative;
  overflow: hidden;
  z-index: 0;
}

.home-sign-creator .bg {
	position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-image: url('honeycomb.png');
  background-size: auto;
  background-repeat: repeat;
  z-index: -1;
}

.sign-creator-banner {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

.sign-creator-banner .image {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
}

.sign-creator-banner .image img {
	width:100%;
}

.sign-creator-banner .text-box {
  background: var(--accent_gradient);
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
  border-radius: var(--border_radius);
  padding: var(--block-spacing-80) var(--block-spacing-100);
  width:52%;
  margin-right: calc(var(--block-spacing-80) / 2);
}

.sign-creator-banner .text-box .buttons {
	margin:-10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.sign-creator-banner .text-box .buttons .button {
	padding:10px;
}

.sign-creator-banner .text-box .text {
	margin-bottom: var(--block-spacing-40);
}
@media (max-width:991px) {
  .sign-creator-banner {
  	-webkit-box-orient:vertical;
  	-webkit-box-direction:normal;
  	    -ms-flex-direction:column;
  	        flex-direction:column;
    -webkit-box-align:stretch;
        -ms-flex-align:stretch;
            align-items:stretch;
  }
  .sign-creator-banner .text-box {
  	width:100%;
    margin-bottom: calc(var(--block-spacing-80) / 2);
  }
}

@media (max-width: 767px) {
  .sign-creator-banner .text-box {
  	padding: var(--block-spacing-80) 15px;
  }
  
  .sign-creator-banner .text-box .buttons {
    margin:-7px;
  }

  .sign-creator-banner .text-box .buttons .button {
    padding:7px;
  }
  
  .app-style-block.in-container {
  	margin: 0 -15px;
    padding: 0 15px;
  }
}
/* end home sign-creator */

/* products */
.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	margin:-10px;
}
.products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	padding:10px;
}
.products .product .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
	background:#fff;
  border-radius: var(--border_radius);
  overflow:hidden;
  -webkit-box-shadow: 0 0 50px 0 rgba(0,0,0,0.05);
          box-shadow: 0 0 50px 0 rgba(0,0,0,0.05);
  border:1px solid transparent;
  position: relative;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.products-slider .product .inner{
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.products .product .inner .btn{
	height: 35px;
  line-height: 35px;
  font-size: 15px;
}
.products .product .inner .btn.less-padding{
	padding-left: 10px;
  padding-right: 10px;
}
.products .product .inner:hover {
	border-color:var(--accent);
}
.products .product .inner .btn i{
  padding: 0 3px;
}

.products .product .product-tags {
  position: absolute;
  top: 35px;
  left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 50%;
}

.products .product .product-tags .product-tag {
	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;
  padding: 0 10px;
  background: var(--accent_blue);
  border-radius: var(--border_radius);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  height: 30px;
  margin-right: 10px;
  margin-bottom: 5px;
  line-height: 1;
  padding-top: var(--fix_font);
}

.products .product .product-tags .product-tag.sale {
	background: var(--accent);
  border-radius: var(--border_radius) 5px 5px var(--border_radius);
  position: relative;
  z-index: 0;
}

.products .product .product-tags .product-tag.sale img{
  position: absolute;
  top: 0;
  left: calc(100% - 4px);
  width: auto; 
  height: 100%;
  z-index: -1;
}

.products .product .add-wish {
	background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.20);
          box-shadow: 0 0 20px 0 rgba(0,0,0,0.20);
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  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: 18px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.products .product .add-wish i {
  margin-right: -1px;
  margin-bottom: -1px;
}
.products .product .product-label {
	font-size: var(--fontsize_heading_smaller);
  color: var(--accent);
  margin-bottom:5px;
}
.products .product .image-wrap {
	padding:20px;
}
.products .product .main-info {
	padding:20px;
  padding-top:0;
}
.products .product .bottom-info {
  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:space-between;
	padding:20px;
  border-top:2px solid #F6F6F6;
  margin-top: auto;
}
.products .product .sold-out-text {
	font-weight: 600;
  color: var(--dark_grey);
}
.products .product .product-title,
.products .product .price {
	font-size: var(--fontsize_heading_small);
  font-weight:bold;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.products .product .price.sale{
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.products .product .price.sale .price-old{
  color: var(--accent_blue);
  margin-right: 10px;
  margin-top: 1px;
}
.products .product .price.sale .price-new{
	color: var(--accent);
}
.products .product .price .price-incl{
  font-size: 75%;
  color: #aaa;
  font-weight: normal;
}
.products .product .price.offer {
	font-size: 16px;
}
/* .products .product .price {
	display:flex;
  align-items:baseline;
} */
.products .product .price .price-old {
  color:var(--accent);
  text-decoration:line-through;
  font-weight:normal;
  font-size:80%;
}
.products .product .inner:hover .product-title {
	color:var(--accent);
}
.products .product .buttons {
	margin:-5px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.products .product .buttons .button {
	padding:5px;
}

.products .product .buttons .button .btn.btn-offer {
	max-width: 105px;
  padding: 0 10px;
}

.products .product .buttons {
	opacity: 0;
  -webkit-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
}

.products .product.product-all-loaded .buttons {
	opacity: 1;
}

@media (min-width: 1200px) {
	.products .product .inner:hover .add-wish {
    opacity: 1;
    visibility: visible;
  }
  .products .product .add-wish:hover i:before {
    content: "\e91f";
  }
  .products .product .add-wish:hover i{
    background: -o-linear-gradient(45deg, #F47211 0%, #EF580C 100%);
    background: linear-gradient(45deg, #F47211 0%, #EF580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 1199px) {
	.products .product .add-wish {
    opacity: 1;
    visibility: visible;
  }
  
  .products .product .product-tags {
    top: 30px;
    left: 30px;
  }
}

@media (max-width: 767px) {
  .products {
  	margin: -5px;
  }
  
  .products .product {
  	padding: 5px;
  }
  
  .products .product .product-title,
  .products .product .price {
  	font-size: 14px;
  }
  
  .products .product .product-tags {
    top: 5px;
    left: 5px;
  }
  
  .products .product .product-tags .product-tag {
  	font-size: 14px;
  }
  
  .products .product .add-wish {
  	top: 15px;
    right: 15px;
  }
  
  .products .product .main-info {
  	padding: 15px 10px;
    padding-top: 0;
  }
  
  .products .product .bottom-info {
  	padding: 15px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products .product .price{
  	margin-bottom: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .products .product .price.sale .price-old{
    margin-right: 0;
  }
  .products .product .inner .btn{
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    -webkit-box-flex: 10;
        -ms-flex-positive: 10;
            flex-grow: 10;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .products .product .buttons{
  	width: 100%;
  }
  .products .product .buttons .button .btn.btn-offer{
  	max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .products .product .buttons .button{
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    -webkit-box-flex: 10;
        -ms-flex-positive: 10;
            flex-grow: 10;
  }
  
  .products .product .image-wrap {
  	padding: 10px;
  }
  
  .products .product .btn {
  	padding: 0 15px;
    height: 40px;
    font-size: .9em;
  }
  
  .products .product .sold-out-text {
    font-size: 0.8em;
    margin-right: 5px;
  }
}

@media (max-width: 499px) {
	.products .product .btn {
    padding: 0 7px;
  }
}
/* end products */

/* blog articles */
.home-blog .button {
	margin-top: var(--block-spacing-60);
}
.blog-articles-slider .owl-stage,
.blog-articles-slider .owl-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.blog-articles {
	margin:-10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-articles .blog-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	padding:10px;
  color:#fff;
}
.blog-articles .blog-article .inner {
	background: var(--accent_dark_blue);
  border-radius: var(--border_radius);
  overflow:hidden;
  border: 1px solid transparent;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.blog-articles .blog-article .inner:hover{
	border: 1px solid var(--accent);
}
.blog-articles .blog-article .image-wrap {
  display:block;
	padding:20px;
}

.blog-articles .blog-article .image-wrap img {
	width:100%;
  border-radius: var(--border_radius);
}
.blog-articles .blog-article .date {
	text-transform: lowercase;
}
.blog-articles .blog-article .top-info {
	padding:20px;
  padding-top:0;
}

.blog-articles .blog-article .top-info .title {
	font-size: var(--fontsize_heading_small);
  font-weight:bold;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.blog-articles .blog-article .inner:hover .top-info .title {
	color: var(--accent);
}
.blog-articles .blog-article .bottom-info {
  margin-top: auto;
	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:space-between;
  padding:20px;
  border-top:2px solid var(--accent_blue);
}
/* end blog articles */

/* home banner */
.home-banner .content {
	background:var(--accent_gradient);
  border-radius: var(--border_radius);
  max-width:1030px;
  padding: var(--block-spacing-80) var(--block-spacing-100);
  margin-top:-200px;
  position:relative;
  overflow:hidden;
}
.home-banner .content .bg {
  font-size: 850px;
  color: var(--accent);
  position: absolute;
  right: 0;
  top: 75%;
  -webkit-transform: translate(0px, -40%);
      -ms-transform: translate(0px, -40%);
          transform: translate(0px, -40%);
  z-index: 0;
  font-weight:0;
  pointer-events:none;
  font-weight:bold;
}
.home-banner .content .inner {
	position:relative;
}
.home-banner .image {
	height:600px;
  background:#f7f7f7;
}
@media (max-width:1199px) {
  .home-banner .image {
  	height:60vh;
  }
}
@media (max-width:767px) {
	.home-banner .content {
  	padding: var(--block-spacing-80) 15px;
  }
  
  .home-banner .content .bg {
    font-size: 530px;
    right: -15%;
    top: 85%;
  }
}
/* end home banner */

/* Home contact */
.home-contact .inner {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  max-width:1030px;
  padding-left:var(--block-spacing-100);
}

.home-contact .intro {
	max-width:400px;
}

.home-contact .contact ul i {
	font-size:111%;
  margin-right:20px;
  width:50px;
  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;
}
.home-contact .contact ul li a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.home-contact .contact .button {
	margin-top: calc(var(--block-spacing-80) / 2);
}
@media (max-width:1199px) {
}
@media (max-width:991px) {
  .home-contact .intro {
  	max-width:50%;
  }
  .home-contact .inner {
  	padding-left:0;
  }
}
@media (max-width:767px) {
  .home-contact .contact ul i {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 1.5em;
  }
  .home-contact .inner {
  	-webkit-box-orient:vertical;
  	-webkit-box-direction:normal;
  	    -ms-flex-direction:column;
  	        flex-direction:column;
  }
  .home-contact .intro {
    max-width: 100%;
    margin-bottom: 20px;
	}
}
/* End home contact */


/* Footer */
#footer {
  background-color:#f6f6f6;
  position:relative;
}

#footer .footer-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#footer .footer-bg img {
  position: absolute;
  right: 10%;
  height: 100%;
  top: 0;
}

#footer .main-footer {
  padding: var(--block-spacing-80) 0;
  position:relative;
}

#footer .main-footer .footer-row {
	margin:-15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .main-footer .footer-col {
	padding:15px;
}

#footer .main-footer .footer-col.slogan-col {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#footer .main-footer .footer-col ul {
	line-height:2em;
}

#footer .main-footer ul.footer-links li a:hover {
	text-decoration: underline;
}

#footer .main-footer .logo img {
	height: 30px;
}

#footer .main-footer .payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px -7px;
}

#footer .main-footer .payments li {
	padding:5px 7px;
}

#footer .main-footer .payments li 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: 60px;
  height: 60px;
  background: #eee;
  border-radius: 100%;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

/* #footer .main-footer .payments li img {
	width:100%;
  height:100%;
  -o-object-fit:contain;
     object-fit:contain;
} */

#footer .main-footer .socials {
	margin:-5px -7px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  font-size:30px;
}

#footer .main-footer .socials li {
	padding:5px 7px;
}

#footer .main-footer .socials li 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:60px;
  height:60px;
  border-radius: 50%;
  position: relative;
  z-index: 0;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#footer .main-footer .socials li a:hover {
	color: #fff;
}

#footer .main-footer .socials li a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
	background: var(--accent);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#footer .main-footer .socials li a:hover:after {
	opacity: 1;
  visibility: visible;
}

#footer .main-footer .socials li a i.icon-twitter {
	font-size: 26px;
}

#footer .main-footer .footer-title {
  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: space-between;
  font-weight: bold;
  margin-bottom: 10px;
  font-size:  var(--fontsize_heading_small);
}

#footer .main-footer .footer-title .plusmin {
	width: 12px;
  height: 12px;
  position: relative;
}

#footer .main-footer .footer-title .plusmin:before,
#footer .main-footer .footer-title .plusmin:after {
	content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  background:var(--accent);
}

#footer .main-footer .footer-title .plusmin:after {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	    -ms-transform: translate(-50%, -50%) rotate(90deg);
	        transform: translate(-50%, -50%) rotate(90deg);
}

#footer .main-footer .footer-links-wrap.active .footer-title .plusmin:after {
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	    -ms-transform: translate(-50%, -50%) rotate(0deg);
	        transform: translate(-50%, -50%) rotate(0deg);
}

#footer .footer-bottom .slogan {
  font-size: var(--fontsize_heading_medium);
  font-weight: bold;
  font-style: italic;
  color: var(--accent);
}

#footer .footer-bottom .logo img {
	height:100px;
}

#footer .main-footer .footer-bottom ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  font-size:15px;
  margin:-7px;
  opacity:.5;
  line-height:normal;
}

#footer .footer-bottom ul li {
	padding:7px;
}

#footer .footer-bottom ul li a:hover {
	text-decoration: underline;
}

@media (max-width: 991px) {
  
  #footer .main-footer .footer-toggle {
  	margin:10px 0px;
  }
  
  #footer .main-footer .footer-links {
  	display: none;
  }
  #footer .main-footer .footer-col {
  	padding:5px;
  }
  #footer .main-footer .footer-row {
  	margin:-5px;
  }
  #footer .footer-bottom .slogan {
  	margin-bottom:10px;
  }
}

@media (max-width: 767px) {
  #footer .main-footer .payments li a {
    width: 40px;
    height: 40px;
  }
  #footer .footer-bottom .logo img {
  	height:70px;
  }
  #footer .footer-bottom .logo {
    margin-top:20px;
  	margin-bottom:10px;
  }
  #footer .main-footer .footer-bottom ul {
  	font-size:1em;
  }
  #footer .main-footer .socials li a {
    width:40px;
    height:40px;
  }
  #footer .main-footer .socials {
  	font-size: 20px;
    padding-bottom: 10px;
  }
  #footer .main-footer .socials li a i.icon-twitter {
    font-size: 16px;
  }
}
/* End footer */

/* Productpage */
#productpage .productpage-title {
	font-weight:bold;
  font-size: calc(var(--fontsize_heading_medium) * .9);
  margin-bottom:20px;
}

#productpage .product-code {
	color: var(--dark_grey);
  margin-bottom:20px;
}

#productpage .product-images .productpage-slider {
/*   margin-bottom: 20px; */
}
#productpage .product-images .productpage-slider-outer.slider-loading {
	width: 100%;
}
#productpage .product-images .productpage-slider-outer.slider-loading:after {
	content: '';
  display: block;
  padding-top: 100%;
}
#productpage .product-images .thumbs {
	margin: -10px;
}
#productpage .product-images .thumbs .thumb {
	padding: 10px;
  cursor: pointer;
}
#productpage .product-images .thumbs .thumb .image-wrap {
  border-bottom:8px solid transparent;
}
#productpage .product-images .thumbs .thumb.active .image-wrap {
	border-color: var(--accent_blue);
}

#productpage .product-images .main-images {
	background:#fff;
  border-radius: var(--border_radius); 
  overflow:hidden;
  margin-bottom: var(--block-spacing-40);
}

#productpage .product-info {
	margin-left: var(--block-spacing-100);
}

#productpage .product-usp i,
#productpage .product-info .stock-wrap i {
	font-size: .95em;
  margin-right:20px;
}
#productpage .product-info .product-label {
	margin-bottom: 10px;
  color: var(--accent);
}
#productpage .product-usp i {
	color:var(--accent);
}
#productpage .product-usp ul {
	line-height:1.7em;
}
#productpage .product-usp ul li {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#productpage .product-usp ul li p {
	margin: 0;
}
#productpage .product-info .stock-wrap {
	margin-top:10px;
}
#productpage .product-info .stock-wrap .stock {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  font-weight:bold;
}
#productpage .product-info .stock-wrap .available {
	color: var(--accent_success);
}
#productpage .product-info .stock-wrap .unavailable {
	color: var(--accent_error);
}
#productpage .product-info .price-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  padding-top: var(--block-spacing-40);
}
#productpage .product-info .price-wrap .price-main {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:baseline;
      -ms-flex-align:baseline;
          align-items:baseline;
}
#productpage .product-info .price-new {
	font-size: var(--fontsize_heading_medium);
  font-weight:bold;
}
#productpage .product-info .price .price-old {
	font-size: var(--fontsize_heading_smaller);
  color:var(--accent);
  text-decoration:line-through;
  margin-left:10px;
}
#productpage .product-info .price-wrap .price-bottom {
  font-size: var(--fontsize_heading_smaller);
}
#productpage .product-info .price-wrap .price-incl {
	color: var(--dark_grey);
}
#productpage .product-info .discounts .title {
	font-size: var(--fontsize_heading_small);
  font-weight:bold;
  margin-bottom:10px;
  color:var(--accent);
}
#productpage .product-info .discounts table td {
	padding-right:15px;
}
#productpage .product-info .discounts table tr td:last-child {
	padding-right:0;
}
#productpage .product-info .discounts table td .input-wrap input{
	height: 45px;
  width: 45px;
}
#productpage .product-info .discounts table td a.add-live{
	padding: 0 15px;
  height: 45px;
}
#productpage .product-info .discounts table tr td{
  padding-bottom: 10px;
}
#productpage .product-info .discounts .discount-label {
	color:var(--accent);
}
#productpage .product-info .cart {
	margin-top:30px;
  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:space-between;
}
.input-wrap {
	display:-webkit-inline-box;
	display:-ms-inline-flexbox;
	display:inline-flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
/*   border-radius: var(--border_radius); */
  border-radius: 0;
  overflow:hidden;
}
.input-wrap .change {
	width:37px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
}
.input-wrap .change 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;
  height: 50%;
  background: var(--accent_blue);
  color: #fff;
  font-weight: bold;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}
.change a:hover {
	background: var(--accent_dark_blue);
}
.input-wrap .change a.up:active {
	background: var(--accent_green);
}
.input-wrap .change a.down:active {
	background: var(--dark_grey);
}
.input-wrap input {
  width:60px;
  height:60px;
  border:none;
  background:#fff;
  text-align:center;
  border-radius:0;
  padding: 0;
  text-align: center;
}
#productpage .product-info .cart .input-wrap {
	margin-right: 20px;
}
#productpage .product-info .cart .add-cart {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
  margin-right: 20px;
  height: 45px;
}
#productpage .product-info .cart .input-wrap input{
	height: 45px;
  width: 45px;
}
#productpage .product-info .cart .add-wish{
	height: 45px;
  width: 45px;
  font-size: 1em;
}
#productpage .product-info .cart-bottom-usp{
	margin-top: 30px;
  margin-left: 102px;
  font-size: 95%;
}
#productpage .product-info .cart-bottom-usp.is-offerte{
	margin-left: unset;
}
#productpage .product-info .cart-bottom-usp .stock{
	color: var(--accent_blue);
  font-weight: normal;
  margin-top: unset;
}
#productpage .product-info .cart-bottom-usp .usp-wrap{
	padding-top: 5px;
}
#productpage .product-info .cart-bottom-usp i{
	font-size: .95em;
  margin-right: 20px;
  color: var(--accent_green);
}
#productpage .product-info .cart-bottom-usp li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 0;
}
#productpage .product-info .cart-bottom-usp li a{
	text-decoration: underline;
}
#productpage .product-tabs .general-content {
	max-width:950px;
}
#productpage .product-tabs {
  margin-top:var(--block-spacing-40);
	padding: var(--block-spacing-60) var(--block-spacing-100);
  padding-top:0;
  background:#fff;
  border-radius: var(--border_radius);
  overflow:hidden;
}
#productpage .product-tabs .tab-links {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  margin:0px calc(0px - var(--block-spacing-60));
  font-size: var(--fontsize_heading_small);
}
#productpage .product-tabs .tab-links li {
	padding:0px var(--block-spacing-60);
}
#productpage .product-tabs .tab-links li a {
  display:block;
	border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  padding:var(--block-spacing-40) 0;
  color:var(--dark_grey);
}
#productpage .product-tabs .tab-links li.active a {
	border-top-color: var(--accent);
  color:var(--accent);
}
.specs table {
  width: 100%;
  border: 1px solid var(--dark_grey);
  max-width:950px;
}
.specs table tr td:first-child {
	border-right: 1px solid var(--dark_grey);
}
.specs table tr td {
	padding:5px 20px;
  padding-top:7px;
}
.specs table tr:nth-child(odd) td {
	background:#f6f6f6;
}

.reviews-block {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  margin:-15px;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}
.reviews-block .col {
	max-width:500px;
  width:100%;
  padding:15px;
}
.reviews-block .title {
	font-size: var(--fontsize_heading_medium);
  color:var(--accent);
  font-weight:bold;
  margin-bottom:10px;
}
.reviews-block .inputs {
	margin:-10px;
}
.reviews-block .inputs .input {
	padding:10px;
}
.standard-input.styled {
	width:100%;
  border:1px solid var(--dark_grey);
  height:60px;
  background:#fff;
  font-size:var(--fontsize_heading_smaller);
}
textarea.standard-input.styled {
	height:120px;
}
.reviews-block .inputs .input label {
	font-weight:normal;
  font-size:var(--fontsize_heading_smaller);
  display:block;
  margin-bottom:7px;
}
.stars {
	color:var(--accent);
  margin:-1px;
}
.reviews-block .review-form .stars {
  margin-left:10px;
  margin-right:10px;
}
.stars .star-grey {
	color:var(--dark_grey);
}
.stars i {
	padding:1px;
}
.reviews-block .set-score-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.reviews-block .set-score-wrap .val {
	font-size:var(--fontsize_heading_smaller);
  color:var(--dark_grey);
}
.reviews {
	margin:-15px;
}
.reviews .review {
	padding:15px;
}
.reviews .review .name {
	font-weight:bold;
  margin-bottom:5px;
}
.reviews .review .name span {
	color:var(--dark_grey);
}
.reviews .review .stars {
	margin-top:10px;
}

.product-contact {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  margin:-15px;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
}
.product-contact .col {
	max-width:500px;
  width:100%;
  padding:15px;
}
.product-contact .title {
	font-size: var(--fontsize_heading_medium);
  color:var(--accent);
  font-weight:bold;
  margin-bottom:10px;
}

.product-contact .contact ul i {
	font-size:111%;
  margin-right:20px;
  width:50px;
  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;
}
.product-contact .contact ul li a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.product-contact .contact .button {
	margin-top: calc(var(--block-spacing-80) / 2);
}
#productpage .related-products {
	padding-bottom: 40px;
  margin-bottom: -40px;
}
/* End productpage */


/* Product configure */
#productpage .product-option {
	padding-top: var(--block-spacing-40);
}
#productpage .product-configure .product-configure-inner {
	margin: -15px 0;
}
#productpage .product-configure .product-configure-inner .option-wrap {
	padding: 15px 0;
}
#productpage .product-configure .linked-options.loading {
  opacity: 0;
}
#productpage .product-configure .linked-options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
#productpage .product-configure .linked-options .option {
	padding: 5px;
}
#productpage .product-configure .linked-options .option a {
	display: block;
}
#productpage .product-configure .linked-options .option.active a .image-wrap {
	border: 2px solid #000;
}
#productpage .product-configure .linked-options .option a .image-wrap {
	min-width: 80px;
  max-width: 80px;
}
#productpage .product-configure .linked-options .option a .image-wrap img {
	width: 100%;
}
#productpage .product-configure label.label-title {
  display: block;
	font-size: 1em;
  margin-bottom: 10px;
}
/* #productpage .product-configure select {
	height: 50px;
  opacity: 0;
} */
#productpage .product-configure .custom-select {
	position: relative;
  height:50px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  padding:0px 20px;
  background:#fff;
  border-radius: var(--border_radius); 
  -webkit-box-align:center; 
      -ms-flex-align:center; 
          align-items:center;
  -webkit-box-pack:justify;
      -ms-flex-pack:justify;
          justify-content:space-between;
  font-size: var(--fontsize_heading_smaller);
  font-weight:bold;
}

#productpage .product-configure .standard-input {
	padding:0px 20px;
  background:#fff;
  border-radius: var(--border_radius); 
  border:none;
  width:100%;
  font-size:var(--fontsize_heading_smaller);
}

#productpage .product-configure .custom-select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
/* 
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-text,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-textarea,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-date,
#productpage .product-configure .product-configure-inner .option-wrap.product-custom-datetime {
	display: flex;
  flex-direction: column;
} */
#productpage .product-configure .product-configure-inner .option-wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#productpage .product-configure .product-configure-inner .option-wrap label {
	width:100px;
  margin:0;
  margin-right:20px;
  font-size:var(--fontsize_heading_smaller);
  font-weight:normal;
  color: var(--dark_grey);
}
#productpage .product-configure .product-configure-inner .option-wrap .item {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
}
/* #productpage .product-configure input[type="text"],
#productpage .product-configure input[type="date"],
#productpage .product-configure input[type="datetime-local"],
#productpage .product-configure textarea {
	border: 2px solid rgba(0,0,0,0.07);
  height: 45px;
  border-radius: 3px;
  padding: 0 15px;
} */
#productpage .product-configure textarea {
	padding: 15px;
  height: auto;
  min-height: 100px;
  min-width: 100%;
  max-width: 100%;
}
/* End product configure */

#productpage .content-toggle {
  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: space-between;
  font-weight: bold;
  padding: 15px;
  font-size:  var(--fontsize_heading_small);
}

#productpage .content-toggle .plusmin {
	width: 12px;
  height: 12px;
  position: relative;
}

#productpage .content-toggle .plusmin:before,
#productpage .content-toggle .plusmin:after {
	content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  background:var(--accent);
}

#productpage .content-toggle .plusmin:after {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	    -ms-transform: translate(-50%, -50%) rotate(90deg);
	        transform: translate(-50%, -50%) rotate(90deg);
}

#productpage .mobile-tab.active .content-toggle .plusmin:after {
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	    -ms-transform: translate(-50%, -50%) rotate(0deg);
	        transform: translate(-50%, -50%) rotate(0deg);
}

@media (min-width: 1200px) {
	#productpage .product-info .cart .add-wish:hover {
    background: #fff;
  }
  #productpage .product-info .cart .add-wish:hover i:before {
    content: "\e91f";
  }
  #productpage .product-info .cart .add-wish:hover i{
    background: -o-linear-gradient(45deg, #F47211 0%, #EF580C 100%);
    background: linear-gradient(45deg, #F47211 0%, #EF580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 1199px) {
  #productpage .product-info {
  	margin-left:0;
  }
}

@media (max-width: 991px) {
  #productpage .product-info {
  	margin-top: var(--block-spacing-60);
  }
  #productpage .product-info .cart-bottom-usp{
    margin-left: unset;
    margin: 20px 0;
  }
}

@media (max-width: 767px) {
  #productpage .product-configure .product-configure-inner .option-wrap {
  	-webkit-box-orient:vertical;
  	-webkit-box-direction:normal;
  	    -ms-flex-direction:column;
  	        flex-direction:column;
    -webkit-box-align:stretch;
        -ms-flex-align:stretch;
            align-items:stretch;
  }
  #productpage .product-configure .product-configure-inner .option-wrap label {
  	margin:0;
    margin-bottom:5px;
  }
  #productpage .product-configure .product-configure-inner {
  	margin:-7px;
  }
  #productpage .product-configure .product-configure-inner .option-wrap {
  	padding:7px;
  }
  .input-wrap input {
  	width:50px;
    height:50px;
  }
  .input-wrap .change {
 		width:30px; 
  }
  #productpage .product-info .cart .input-wrap {
  	margin-right: 10px;
  }
  #productpage .product-info .cart .add-cart {
  	margin-right:10px;
  }
  #productpage .product-tabs {
  	padding:0;
  }
  #productpage .product-tabs .tab-links {
  	margin:0;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    font-size:1em;
  }
  #productpage .product-tabs .tab-links li {
  	padding:0;
    width:50%;
  }
  #productpage .product-tabs .tab-links li a {
  	padding: calc(var(--block-spacing-40) * .75) var(--block-spacing-40);
    border-width:3px;
  }
  #productpage .product-tabs .page {
  	padding: var(--block-spacing-40);
  }
  .reviews-block {
  	-webkit-box-orient:vertical;
  	-webkit-box-direction:normal;
  	    -ms-flex-direction:column;
  	        flex-direction:column;
    -webkit-box-align:stretch;
        -ms-flex-align:stretch;
            align-items:stretch;
  }
  .product-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
	}
  
  #productpage .mobile-tab .page.active,
  #productpage .mobile-tab .page {
  	display: none;
  }
  
  #productpage .mobile-tab.first-active .page.active,
  #productpage .mobile-tab.first-active .page {
  	display: block;
  }
  
  #productpage .mobile-tab .page {
  	padding: 0 15px;
    padding-bottom: 20px;
  }
  #productpage .product-info .discounts{
  	margin-top: 15px;
  }
  #productpage .product-info .price-wrap{
  	flex-wrap: wrap;
  }
}

/* Add to cart popup */
.fancybox-is-open .fancybox-bg, 
.fancybox-bg {
  background: var(--accent_blue);
}

.fancybox-is-open.white-bg .fancybox-bg,
.white-bg .fancybox-bg {
  background: rgba(255,255,255,0.95)!important;
}

#add-cart-popup {
	display: none;
  width: 100%;
  padding: 0;
  background: none;
}

#add-cart-popup .fancybox-close-small {
	display: none;
}

#add-cart-popup .popup-padding {
	padding: 20px;
}

#add-cart-popup .popup-wrap {
	background: #fff;
  border-radius: var(--border_radius);
  max-width: 680px;
  margin: 0 auto;
}

#add-cart-popup .top-wrap {
  border-bottom: 2px solid var(--light_grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#add-cart-popup .top-wrap .i-wrap {
  position: relative;
  margin-right: 20px;
}

#add-cart-popup .top-wrap .i-wrap .icon-cart {
	font-size: 30px;
}

#add-cart-popup .top-wrap .i-wrap .icon-check {
  position: absolute;
  top: -1px;
  right: -2px;
  font-size: 7px;
  width: 15px;
  height: 15px;
  background: var(--accent_green);
  color: #fff;
  border-radius: 50%;
  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;
  padding-top: 0.1em;
}

#add-cart-popup .top-wrap .title {
  color: var(--accent_green);
}

#add-cart-popup .top-wrap .close {
  margin-left: auto;
  color: var(--accent_blue);
  opacity: 1;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-autocomplete .top-wrap .close-live-search,
#add-cart-popup .top-wrap .close {
	position: relative;
  z-index: 0;
}

.search-autocomplete .top-wrap .close-live-search:after,
#add-cart-popup .top-wrap .close:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light_grey);
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.search-autocomplete .top-wrap .close-live-search:hover:after,
#add-cart-popup .top-wrap .close:hover:after {
	opacity: 1;
  visibility: visible;
}

#add-cart-popup .main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#add-cart-popup .main-wrap .info {
  padding-right: var(--block-spacing-80);
}

#add-cart-popup .main-wrap .info .product-label {
  font-size: var(--fontsize_heading_smaller);
  color: var(--accent);
  margin-bottom: 10px;
}

#add-cart-popup .main-wrap .info .product-title {
	font-weight: bold;
  font-size: var(--fontsize_heading_small);
}

#add-cart-popup .main-wrap .info .product-title:hover {
	color: var(--accent);
}

#add-cart-popup .main-wrap .image-wrap {
  border-radius: var(--border_radius);
  overflow: hidden;
  min-width: 160px;
  max-width: 160px;
}

#add-cart-popup .bottom-wrap {
  border-top: 2px solid var(--light_grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  #add-cart-popup .popup-wrap {
  	margin: 10px;
  }
	#add-cart-popup .popup-padding {
    padding: 20px 15px;
  }
  
  #add-cart-popup .bottom-wrap {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  }
  
  #add-cart-popup .bottom-wrap .btn {
  	width: 100%;
  }
  
  #add-cart-popup .bottom-wrap .btn:last-child {
  	margin-top: 10px;
  }
  
  #add-cart-popup .top-wrap .i-wrap .icon-cart {
    font-size: 20px;
  }
  
  #add-cart-popup .top-wrap .i-wrap .icon-check {
    top: -3px;
    right: -6px;
  }
  
  #add-cart-popup .top-wrap .close {
  	font-size: 16px;
  }
  
  #add-cart-popup .main-wrap .info .product-label {
  	margin-bottom: 6px;
  }
}
/* End add to cart popup */

/* Offer popup */
#offer-popup {
	display: none;
  max-width: 670px;
  width: 100%;
  border-radius: var(--border_radius);
  padding: var(--block-spacing-60);
}

#offer-popup .title {
  font-size: var(--fontsize_heading_medium);
  font-weight: bold;
  margin-bottom: var(--block-spacing-20);
}
/* End offer popup */

/* Cookies */
.wsa-cookielaw {
  display: none !important;
}

#cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  background: var(--accent_blue);
  color: #fff;
}

#cookies .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 55px 0;
}

#cookies .title {
  font-size: var(--fontsize_heading_medium);
  font-weight: bold;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

#cookies .text {
  font-size: 14px;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--dark_grey);
}

#cookies .cookies-btn-wrap {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  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;
  padding-left: 15px;
}

#cookies .cookies-btn-wrap .settings-btn {
  text-decoration: underline;
  margin-top: 15px;
  color: var(--dark_grey);
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 1199px) {
	#cookies .inner {
    padding: 45px 0;
  }
}

@media (max-width: 991px) {
	#cookies .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 30px 0;
  }
  
  #cookies .title {
  	width: 100%;
    margin-bottom: 15px;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

@media (max-width: 767px) {
  #cookies .text,
  #cookies .cookies-btn-wrap {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
  
  #cookies .text {
  	-webkit-box-pack: start;
  	    -ms-flex-pack: start;
  	        justify-content: flex-start;
  }
  
  #cookies .cookies-btn-wrap {
  	padding: 0;
    padding-top: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  
  #cookies .cookies-btn-wrap .settings-btn {
    margin: 0;
    margin-left: 15px;
    font-size: 14px;
  }
}
/* End cookies */

.products-slider .owl-prev,
.products-slider .owl-next,
.categories-slider .owl-prev,
.categories-slider .owl-next,
.blog-articles-slider .owl-prev,
.blog-articles-slider .owl-next,
.upsell-products-slider .owl-prev,
.upsell-products-slider .owl-next {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 50px;
  height: 50px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 5%);
          box-shadow: 0 0 5px 0 rgb(0 0 0 / 5%);
  border-radius: 50%;
  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: 14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.products-slider .owl-prev:hover,
.products-slider .owl-next:hover,
.categories-slider .owl-prev:hover,
.categories-slider .owl-next:hover,
.blog-articles-slider .owl-prev:hover,
.blog-articles-slider .owl-next:hover,
.upsell-products-slider .owl-prev:hover,
.upsell-products-slider .owl-next:hover {
	color: var(--accent);
}

.products-slider .owl-next,
.categories-slider .owl-next,
.blog-articles-slider .owl-next,
.upsell-products-slider .owl-next {
	left: auto;
  right: -15px;
}

.products-slider .owl-prev.disabled,
.products-slider .owl-next.disabled,
.categories-slider .owl-prev.disabled,
.categories-slider .owl-next.disabled,
.blog-articles-slider .owl-prev.disabled,
.blog-articles-slider .owl-next.disabled,
.upsell-products-slider .owl-prev.disabled,
.upsell-products-slider .owl-next.disabled {
	opacity: 0;
  visibility: hidden;
}

@media (max-width: 1429px) {
	.products-slider .owl-prev,
  .products-slider .owl-next,
  .categories-slider .owl-prev,
  .categories-slider .owl-next,
  .blog-articles-slider .owl-prev,
	.blog-articles-slider .owl-next,
  .upsell-products-slider .owl-prev,
	.upsell-products-slider .owl-next {
    left: -10px;
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .products-slider .owl-next,
  .categories-slider .owl-next,
	.blog-articles-slider .owl-next,
	.upsell-products-slider .owl-next {
    left: auto;
    right: -10px;
  }
}

@media (max-width: 767px) {
	.products-slider .owl-prev,
  .products-slider .owl-next,
  .categories-slider .owl-prev,
  .categories-slider .owl-next,
  .blog-articles-slider .owl-prev,
	.blog-articles-slider .owl-next,
  .upsell-products-slider .owl-prev,
	.upsell-products-slider .owl-next {
    left: 0px;
    background: rgba(255,255,255,0.9);
  }
  
  .products-slider .owl-next,
  .categories-slider .owl-next,
	.blog-articles-slider .owl-next,
	.upsell-products-slider .owl-next {
    left: auto;
    right: 0px;
  }
  
  .app-style .products-slider .owl-next,
  .app-style .categories-slider .owl-next,
	.app-style .blog-articles-slider .owl-next,
	.upsell-products-slider .owl-next {
    right: calc(25% - 25px);
  }
}

#textpage .general-content {
	max-width: 730px;
  margin: 0 auto;
}

/* New Blog */
#blog.dev .col-main-dev {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  padding: 15px;
}

#blog.dev .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: -15px;
}

#blog.dev .col-sidebar {
	min-width:330px;
  max-width:330px;
  padding:15px;
  margin-right:0;
  margin-left:40px;
}

.blog-articles-dev {
	margin:-15px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}
/* .regular-articles-dev .blog-articles-dev {
	display:block;
} */
.blog-articles-dev .blog-article-dev {
	padding:15px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
}
.regular-articles-dev .blog-articles-dev .blog-article-dev {
	display:block;
}
.blog-articles-dev .blog-article-dev .image-wrap {
	-webkit-box-flex:10;
	    -ms-flex-positive:10;
	        flex-grow:10;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:stretch;
  -ms-flex-align:stretch;
  align-items:stretch;
}

.blog-articles-dev .blog-article-dev .image {
	min-height:280px;
  border-radius:var(--border_radius);
  width:100%;
}
.blog-articles-dev .blog-article-dev .title {
	font-size:2.5em;
  text-decoration:none;
}
.blog-articles-dev .blog-article-dev .flex {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  width:100%;
}
.blog-articles-dev .blog-article-dev .title,
.blog-articles-dev .blog-article-dev .summary,
.blog-articles-dev .blog-article-dev .date,
.blog-articles-dev .blog-article-dev .image-wrap {
	-webkit-box-ordinal-group:3;
	    -ms-flex-order:2;
	        order:2;
}
.blog-articles-dev .blog-article-dev .image-wrap {
	margin-top:30px;
}
.blog-articles-dev .blog-article-dev:nth-child(even) .image-wrap,
.regular-articles-dev .blog-articles-dev .blog-article-dev .image-wrap {
	-webkit-box-ordinal-group:2;
	    -ms-flex-order:1;
	        order:1;
  margin-top:0;
  margin-bottom:30px;
}
.blog-articles-dev .blog-article-dev .date,
.complete-article .date{
  height: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 15px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  text-decoration: none;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 10px;
}
.blog-articles-dev .blog-article-dev .title {
	font-size: var(--fontsize_heading_medium);
  font-weight: bold;
}
.blog-articles-dev .blog-article-dev .summary {
	line-height:2em;
  font-size:.97em;
}
.blog-articles-dev .blog-article-dev .read-more {
	font-weight:bold;
  font-size:.9em;
}
.blog-articles-dev .blog-article-dev .read-more:hover {
	text-decoration:underline;
}
#blog .regular-articles-dev {
	margin-top:50px;
  padding-top:30px;
  border-top: 1px solid rgba(0,0,0,.07);
}

#blog .regular-articles-dev .blog-article-dev .title, .blog-sidebar .sidebar-title {
  font-size: 1.7em;
  font-weight: bold;
}

.blog-sidebar .sidebar-title {
  margin-bottom: 25px;
}



#blog.dev {
	padding-bottom:100px;
}

.recent-articles-dev {
	margin:-10px;
}
.recent-articles-dev .recent-article {
	padding:10px;
}
.recent-articles-dev .recent-article .flex {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.recent-articles-dev .recent-article .image-wrap {
	min-width:75px;
  max-width:75px;
  border-radius:5px;
  margin-right:15px;
  overflow:hidden;
  background:#fff;
}
.recent-articles-dev .recent-article .image-wrap .no-image {
	background:#f7f7f7;
}
.recent-articles-dev .recent-article .image-wrap .no-image:after {
	content:'';
  display:block;
  padding-top:100%;
}
.recent-articles-dev .recent-article .info .date {
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 5px;
}
.recent-articles-wrap {
	margin-bottom:30px;
}

@media (max-width: 991px) {
  .blog-articles-dev .blog-article-dev .image-wrap {
  	margin-top:0;
    margin-bottom:20px;
    -webkit-box-ordinal-group:2;
    -ms-flex-order:1;
    order:1;
  }
  #blog .regular-articles-dev .blog-article-dev .title, .blog-sidebar .sidebar-title {
    font-size: 1.4em;
    font-weight: bold;
  }
}
/* End New Blog */

/* Product upsells */
#product-upsells {
	padding-top: 30px;
  --tab_spacing_outer: 15px;
  --tab_spacing_inner: 18px;
  --product_image_width: 150px;
  --product_inner_spacing: 15px;
  --max_scroll_height: 600px;
}

#product-upsells .toggle-product-upsells {
	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: space-between;
  margin-bottom: 30px;
}

#product-upsells .toggle-product-upsells .title {
	font-size: 1.2em;
  font-weight: bold;
}

#product-upsells .toggle-product-upsells .toggle-upsells {
	margin: 0;
}

#product-upsells .toggle-product-upsells .toggle-upsells input {
	opacity: 0;
  width: 0;
  height: 0;
}

#product-upsells .toggle-product-upsells .toggle-upsells .toggle-slider {
  width: 60px;
  height: 30px;
  border-radius: 30px;
  background: #333;
  display: inline-block;
  margin: 0;
  position: relative;
  cursor: pointer;
}

#product-upsells .toggle-product-upsells .toggle-upsells input:checked ~ .toggle-slider {
	background: var(--accent);
}

#product-upsells .toggle-product-upsells .toggle-upsells input:checked ~ .toggle-slider .switch {
	-webkit-transform: translateX(30px);
	    -ms-transform: translateX(30px);
	        transform: translateX(30px);
}

#product-upsells .toggle-product-upsells .toggle-upsells .switch {
	content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  display: inline-block;
}

#product-upsells .toggle-product-upsells .toggle-upsells .switch:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 20%);
          box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 20%);
}

#product-upsells:not(.active) .upsell-tabs,
#product-upsells .upsell-tabs .upsell-tab .upsell-tab-content {
	display: none;
}

#product-upsells .upsell-tabs .upsell-tab:not(:first-child) {
	margin-top: var(--tab_spacing_outer);
}

#product-upsells .upsell-tabs .upsell-tab .upsell-tab-toggle {
	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: space-between;
  padding: var(--tab_spacing_inner);
  background: #fff;
  border-radius: var(--border_radius);
}

#product-upsells .upsell-tabs .upsell-tab.active .upsell-tab-toggle {
	border-radius: var(--border_radius) var(--border_radius) 0 0;
}

#product-upsells .upsell-tabs .upsell-tab .upsell-tab-toggle i {
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

#product-upsells .upsell-tabs .upsell-tab.active .upsell-tab-toggle i {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

#product-upsells .upsell-tabs .upsell-tab .upsell-tab-toggle span {
  line-height: 1;
  margin-bottom: -0.25em;
  font-weight: bold;
}

#product-upsells .upsell-tabs .upsell-tab .upsell-tab-content {
	background: #fff;
  border-radius: 0 0 var(--border_radius) var(--border_radius);
  max-height: var(--max_scroll_height);
  overflow-y: scroll;
}

/* width */
#product-upsells .upsell-tabs .upsell-tab .upsell-tab-content::-webkit-scrollbar,
#product-upsells .selected-upsells::-webkit-scrollbar {
  width: 10px;
  -webkit-appearance: none;
}

/* Track */
#product-upsells .upsell-tabs .upsell-tab .upsell-tab-content::-webkit-scrollbar-track,
#product-upsells .selected-upsells::-webkit-scrollbar-track {
  background: #e4e4e4;
}

/* Handle */
#product-upsells .upsell-tabs .upsell-tab .upsell-tab-content::-webkit-scrollbar-thumb,
#product-upsells .selected-upsells::-webkit-scrollbar-thumb {
  background: var(--accent_blue);
}

/* Handle on hover */
#product-upsells .upsell-tabs .upsell-tab .upsell-tab-content::-webkit-scrollbar-thumb:hover,
#product-upsells .selected-upsells::-webkit-scrollbar-thumb:hover {
  background: var(--accent_dark_blue);
}

#product-upsells .upsell-product,
#product-upsells .overview-product {
	padding: var(--product_inner_spacing);
}

#product-upsells .upsell-product:not(:last-child),
#product-upsells .overview-product {
	margin-bottom: var(--product_inner_spacing);
  border-bottom: 1px solid #e4e4e4;
}

#product-upsells .upsell-product .top-wrap,
#product-upsells .overview-product .top-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#product-upsells .upsell-product .image-wrap,
#product-upsells .overview-product .image-wrap {
	min-width: var(--product_image_width);
  max-width: var(--product_image_width);
  margin-right: var(--product_inner_spacing);
}

#product-upsells .upsell-product .info-wrap .title,
#product-upsells .overview-product .info-wrap .title {
	font-weight: bold;
  font-size: 1.1em;
  line-height: 1.4;
}

#product-upsells .overview-product .info-wrap  {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}

#product-upsells .overview-product .info-wrap .quantity,
#product-upsells .overview-product .info-wrap .variant {
	line-height: 1;
  margin-top: 5px;
}

#product-upsells .upsell-product .info-wrap .price,
#product-upsells .overview-product .bottom-wrap {
	margin-top: var(--product_inner_spacing);
  padding-top: calc(var(--product_inner_spacing) * 1.5);
  border-top: 1px solid #eee;
  line-height: 1;
}

#product-upsells .overview-product .bottom-wrap .price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

#product-upsells .overview-product .bottom-wrap .price .price-excl,
#product-upsells .upsell-product .info-wrap .price-excl {
	font-weight: bold;
}

#product-upsells .overview-product .bottom-wrap .price span {
  margin-left: 5px;
	font-size: .9em;
}

#product-upsells .upsell-product .info-wrap .price-incl {
	margin-top: 5px;
  font-size: .9em;
  color: var(--dark_grey);
}

#product-upsells .overview-product .delete-upsell-product {
  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;
	min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
}

#product-upsells .overview-product .delete-upsell-product:hover {
	-webkit-filter: brightness(90%);
	        filter: brightness(90%);
}

#product-upsells .upsell-product .options .option label {
  margin: 0;
  margin-bottom: 10px;
  font-size: var(--fontsize_heading_smaller);
  font-weight: normal;
  color: var(--dark_grey);
}

#product-upsells .upsell-product .options:empty {
	display: none;
}

#product-upsells .upsell-product .options .option {
	margin-top: var(--product_inner_spacing);
}

#product-upsells .upsell-product .options .option .custom-select {
  position: relative;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 15px;
  background: #f5f5f6;
  border-radius: var(--border_radius);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: var(--fontsize_heading_smaller);
  font-weight: bold;
}

#product-upsells .upsell-product .options .option .custom-select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

#product-upsells .upsell-product .bottom-wrap {
  margin-top: var(--product_inner_spacing);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#product-upsells .overview-product .bottom-wrap {
  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: space-between;
}

#product-upsells .upsell-product .bottom-wrap .input-wrap {
	margin-right: var(--product_inner_spacing);
}

#product-upsells .upsell-product .bottom-wrap .input-wrap input {
  height: 45px;
  width: 45px;
  background: #f5f5f6;
}

#product-upsells .upsell-product .bottom-wrap .btn {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  height: 45px;
}

#product-upsells .upsell-overview {
  padding-top: 30px;
}

#product-upsells .upsell-overview .title {
	font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
}

#product-upsells .selected-upsells {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: var(--border_radius);
  max-height: var(--max_scroll_height);
  overflow-y: scroll;
}

#product-upsells.popup {
  width: 100%;
  max-width: 700px;
  background: var(--light_grey);
}

#product-upsells .add-upsells-live {
	width: 100%;
  height: 45px;
  margin-top: 30px;
}

@media (max-width: 767px) {
	#product-upsells.popup {
  	padding-left: 20px;
  	padding-right: 20px;
  }
}

@media (max-width: 599px) {
	#product-upsells {
    --product_image_width: 100px;
    --max_scroll_height: 60vh;
  }
}
/* End product upsells */
.montage-wrap ul {
  padding-left: 20px;
}
.montage-wrap li {
  font-size: 14px;
}