:root {
	--generalSpacing: 80px;
  --pageSpacing: 30px;
  --accentBlue: #0078A4;
  --accentYellow: #E4B125;
  --accentRed: #C25528;
  --accentGreen: #319d12;
  --rgb_accentBlue: 0, 120, 164;
  --rgb_accentYellow: 228, 177, 37;
  --rgb_accentRed: 194, 85, 40;
  --rgb_accentGreen: 49, 157, 18;
}

@font-face {
	font-display: auto;
}

body {
	color:#333;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px x(0,0,0,0.004);
  width:100%;
  font-size: 16px;
}

html.no-scroll {
  margin: 0; 
  height: 100%; 
  overflow: hidden;
}

div[class*=" col-"] {
	margin-left: -.5px;
}

.relative {
	position:relative;
}

.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);
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
}

.gui-page-title {
  text-transform: uppercase;
}

.line-height {
	line-height: 2em;
}

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: #555;
}

.general-content strong {
	color: #333;
}

.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: #333;
}

.general-content h1 {
	font-size:2.2em;
  margin-bottom: 20px;
}
.general-content h2 {
	font-size:2em;
  margin-bottom: 20px;
}
.general-content h3 {
	font-size:1.8em;
  margin-bottom: 20px;
}
.general-content h4 {
	font-size:1.6em;
  margin-bottom: 15px;
}
.general-content h5 {
	font-size:1.4em;
  margin-bottom: 10px;
}
.general-content h6 {
	font-size:1.2em;
  margin-bottom: 10px;
}

.general-content a,
.general-content a:visited,
.general-content a:active,
.general-content a:hover {
	text-decoration:none;
  color: var(--accentRed);
}

.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: #000;
  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%;
}

.page-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: 30px;
  width: 100%;
}

.page-title-wrap .title {
	text-transform: uppercase;
  font-weight: bold;
  font-size: 2.2em;
}

.page-title-wrap .breadcrumbs {
	white-space: nowrap;
  margin: 0;
  width: auto;
  margin-left: 20px;
}

.title-featured {
	margin-bottom: 50px;
}

.title-featured.small-spacing {
	margin-bottom: 30px;
}

.title-featured .title {
	font-weight: bold;
  text-transform: uppercase;
  font-size: 2.5em;
}

.title-featured .subtitle {
	opacity: .7;
  margin-top: 5px;
  line-height: 2em;
}

.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:35px;
  padding:0px 23px;
  background:var(--accentRed);
  color:#fff;
  font-weight:bold;
  font-size:1em;
  border-radius:4px;
  -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;
}

.standard-input {
	height: 45px;
  padding: 0px 15px;
  outline: none;
  border-radius: 4px;
  font-size: 1em;
  background: #fff;
  border: 1px solid #eee;
  -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: #aaa;
}

.standard-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #aaa;
  opacity: 1;
}

.standard-input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #aaa;
  opacity: 1;
}

.standard-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
}

.standard-input::-ms-input-placeholder { /* Microsoft Edge */
	color: #aaa;
}

.icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.icon:before {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.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(--generalSpacing);
  padding-bottom: var(--generalSpacing);
}

.block-padding-top {
	padding-top: var(--generalSpacing);
}

.block-padding-bottom {
  padding-bottom: var(--generalSpacing);
}

.block-margin {
	margin-top: var(--generalSpacing);
  margin-bottom: var(--generalSpacing);
}

.block-margin-top {
	margin-top: var(--generalSpacing);
}

.block-margin-bottom {
  margin-bottom: var(--generalSpacing);
}

.page-padding {
  padding-top: var(--pageSpacing);
  padding-bottom: var(--pageSpacing);
}

.page-padding-top {
  padding-top: var(--pageSpacing);
}

.page-padding-bottom {
  padding-bottom: var(--pageSpacing);
}

.page-margin {
  margin-top: var(--pageSpacing);
  margin-bottom: var(--pageSpacing);
}

.page-margin-top {
  margin-top: var(--pageSpacing);
}

.page-margin-bottom {
  margin-bottom: var(--pageSpacing);
}

.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: #f7f7f7;
}

.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.03);
}

.image-wrap img {
	width: 100%;
}

@media (min-width: 1200px) {
  .container {
  	width:100%;
    max-width:1460px;
    padding:0px 30px;
  }
  
  .btn:hover {
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
  }
}

@media (max-width: 1199px) {
	:root {
		--generalSpacing: 60px;
  }
  
  .title-featured .title {
    font-size: 2.2em;
  }
}

@media (max-width: 991px) {
  :root {
		--generalSpacing: 50px;
  }
  
	body {
    font-size: 14px;
  }
  
  .title-featured .title {
    font-size: 2em;
  }
}

@media (max-width: 767px) {
  .title-featured {
  	margin-bottom: 30px;
  }
  
  .title-featured .title {
    font-size: 1.8em;
  }
}
/* End general styles */

/* Header */
#header.fixed {
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header .main-header {
	background: #fff;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.07);
	        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.07);
}

#header .main-header .inner {
	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 0;
}

#header .main-header .logo img {
	height: 60px;
}

#header .main-header .main-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .main-header .main-menu li:not(:last-child) {
	margin-right: 40px;
}

#header .main-header .main-menu li a {
	font-weight: bold;
  display: inline-flex;
  text-align: center;
}

#header .main-header .main-menu li.active a:not(.btn),
#header .main-header .main-menu li a:not(.btn):hover {
	color: var(--accentBlue);
}

#header .main-header .main-menu li .cart-btn i {
	font-size: 20px;
  margin-right: 7px;
}

@media (max-width: 1199px) {
	#header .main-header .logo img {
    height: 50px;
  }
  
  #header .main-header .main-menu li .cart-btn {
  	padding: 0;
    width: 50px;
  }
  
  #header .main-header .main-menu li .cart-btn i {
  	margin: 0;
  }
}

@media (max-width: 991px) {
  #header .main-header .inner {
  	-webkit-box-pack: unset;
  	    -ms-flex-pack: unset;
  	        justify-content: unset;
    padding: 15px 0;
  }
  
  #header .main-header .header-col {
  	-webkit-box-flex: 1;
  	    -ms-flex: 1;
  	        flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  
  #header .main-header .header-col.logo-col {
  	-webkit-box-pack: center;
  	    -ms-flex-pack: center;
  	        justify-content: center;
  }
  
  #header .main-header .header-col.nav-col {
  	-webkit-box-pack: end;
  	    -ms-flex-pack: end;
  	        justify-content: flex-end;
  }
  
  #header .main-header .logo img {
    height: 45px;
  }
  
  #header .main-header .open-menu {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    font-size: 25px;
    padding: 15px;
    margin: -15px;
  }
}

@media (max-width: 767px) {
  #header .main-header .inner {
  	padding: 10px 0;
  }
  
  #header .main-header .logo img {
    height: 40px;
  }
  
  #header .main-header .main-menu li .cart-btn {
  	height: 40px;
    width: 40px;
    padding: 0;
    font-size: 18px;
  }
}
/* End header */

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  z-index: 9999;
  overflow-x: hidden;
  -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-overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: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 .logo 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;
  padding: 20px 80px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .logo img {
	width: 100%;
  height: auto;
}

.mobile-menu .login-wrap {
	padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .login-wrap ul {
  margin: -5px 0;
}

.mobile-menu .login-wrap ul li {
	padding: 5px 0;
}

.mobile-menu .login-wrap ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
  background: #f7f7f7;
  padding: 10px;
  font-weight: bold;
}

.mobile-menu .login-wrap ul li a .icon-wrap {
  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;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  margin-right: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.mobile-menu .login-wrap ul li.loggedin {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu .login-wrap ul li.loggedin a .icon-wrap.name {
	background: var(--accentYellow);
}

.mobile-menu .login-wrap ul li.loggedin a.account-link {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
}

.mobile-menu .login-wrap ul li.loggedin a.logout-link {
	padding: 0;
  background: none;
  margin-left: 15px;
}

.mobile-menu .login-wrap ul li.loggedin a.logout-link .icon-wrap {
	margin: 0;
}

.mobile-menu .categories-wrap {
	padding: 15px;
}

.mobile-menu .categories-wrap > ul {
	margin: -7px 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;
  font-weight: bold;
}

.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: 7px 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 > .cat-inner > a.more-cats {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
	-webkit-box-flex: unset;
	    -ms-flex-positive: unset;
	        flex-grow: unset;
  width: 30px;
}

.mobile-menu .categories-wrap a.more-cats i {
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.mobile-menu .categories-wrap li.active > .cat-inner > a.more-cats i {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.mobile-menu .categories-wrap ul.subs {
  display: none;
  padding-left: 15px;
  border-left: 2px solid #eee;
  font-size: .95em;
}

.mobile-menu .categories-wrap ul.subs.active {
	display: block;
}

.mobile-menu .categories-wrap ul.subs li {
	opacity: .8;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.mobile-menu .categories-wrap ul.subs li.active {
	opacity: 1;
}

.mobile-menu .categories-wrap ul.subs li.active > .cat-inner > a {
	font-weight: bold;
}

.mobile-menu .categories-wrap ul.subs li .cat-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu .categories-wrap ul.subs li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	padding: 5px 0;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}

.mobile-menu .categories-wrap ul.subs li a.more-cats {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
	-webkit-box-flex: unset;
	    -ms-flex-positive: unset;
	        flex-grow: unset;
  width: 30px;
}

.mobile-menu .extra-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  width: 100%;
  padding: 15px;
  border-top: 1px solid #eee;
  font-weight: bold;
}

.mobile-menu ul.shop-settings .flag {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #eee;
  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;
}

.mobile-menu ul.shop-settings .flag img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 30px;
  height: 30px;
}


.mobile-menu ul.shop-settings .icon-wrap {
  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;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  margin-right: 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.mobile-menu ul.shop-settings > li > .inner,
.mobile-menu ul.shop-settings > li > .inner .cur-option {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu ul.shop-settings .flag,
.mobile-menu ul.shop-settings .icon-wrap {
	margin-right: 10px;
}

.mobile-menu ul.shop-settings > li > .inner > a {
	font-weight: bold;
  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;
  width: 100%;
  padding: 15px;
  border-top: 1px solid #eee;
}

.mobile-menu ul.shop-settings > li > .inner .more-cats i {
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.mobile-menu ul.shop-settings > li.active > .inner .more-cats i {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.mobile-menu ul.shop-settings ul.subs {
	display: none;
  padding: 15px;
  padding-top: 0px;
}

.mobile-menu ul.shop-settings ul.subs li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}
/* End mobile menu */

/* Headline */
.headline {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.headline .inner {
	padding: 150px 0;
  background: rgba(0,0,0,0.6);
}

.headline .text-box {
	color: #fff;
  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;
}

.headline .text-box .title {
	font-weight: bold;
  font-size: 3.5em;
  text-transform: uppercase;
}

.headline .text-box .subtitle {
	font-size: 1.1em;
	margin-top: 10px;
  margin-bottom: 50px;
}

.headline .text-box .btn-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -5px;
}

.headline .text-box .btn-wrap .btn-col {
  padding: 5px;
}

.headline .text-box .btn-wrap .btn {
  min-width: 200px;
}

.headline .text-box .btn-wrap .btn-col:last-child .btn {
  background: var(--accentBlue);
}

@media (max-width: 1199px) {
  .headline .inner {
  	padding: 100px 0;
  }
  
  .headline .text-box .title {
  	font-size: 3em;
  }
}

@media (max-width: 991px) {
  .headline .inner {
  	padding: 80px 0;
  }
  
  .headline .text-box .title {
  	font-size: 2.5em;
  }
  
  .headline .text-box .subtitle {
  	margin-top: 5px;
    font-size: 1em;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .headline .text-box .title {
  	font-size: 2.2em;
  }
  
  .headline .text-box .btn-wrap {
   	-ms-flex-wrap: wrap;
   	    flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
	.headline .text-box .btn-wrap .btn {
  	min-width: unset;
    padding: 0 20px;
    height: 45px;
  }
}
/* End headline */

/* USP bar */
.usp-bar {
	padding: 30px 0;
}

.usp-bar .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;
}

.usp-bar .usp-wrap li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.usp-bar .usp-wrap li i {
  margin-right: 7px;
  font-size: 1.4em;
  color: var(--accentGreen);
}

@media (max-width: 1199px) {
  .usp-bar .usp-wrap.mobile-hidden {
  	height: 22px;
    opacity: 0;
  }
  
	.usp-bar .usp-wrap li {
  	-webkit-box-pack: center;
  	    -ms-flex-pack: center;
  	        justify-content: center;
  }
  
  .usp-bar .usp-wrap li i {
  	margin-right: 5px;
  }
}

@media (max-width: 991px) {
  .usp-bar .usp-wrap.mobile-hidden {
  	height: 20px;
  }
}
/* End USP bar */

/* Home banners */
.home-banners .banners-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -15px;
}

.home-banners .banners-wrap .banner-col {
	padding: 15px;
  width: 30%;
}

.home-banners .banners-wrap .banner-col:nth-child(2) {
	width: 40%;
}

.home-banners .banners-wrap .banner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 100%;
}

.home-banners .banners-wrap .banner-col:nth-child(2) .banner {
  -webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,0.1);
          box-shadow: 0 0 10px 5px rgba(0,0,0,0.1);
}

.home-banners .banners-wrap .banner:after {
	content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.20)), to(rgba(0,0,0,0.60)));
  background-image: -o-linear-gradient(top, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.60) 100%);
  background-image: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.60) 100%);
  z-index: -1;
}

@media (max-width: 1399px) {
  .home-banners .banners-wrap {
  	margin: -10px;
  }
  
  .home-banners .banners-wrap .banner-col,
  .home-banners .banners-wrap .banner-col:nth-child(2) {
  	width: calc(100% / 3);
    padding: 10px;
  }
}

@media (max-width: 991px) {
  .home-banners .banners-wrap {
    -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;
  }
  
  .home-banners .banners-wrap .banner-col,
  .home-banners .banners-wrap .banner-col:nth-child(2) {
  	width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .home-banners .banners-wrap .banner {
  	padding: 30px;
    padding-top: 100%;
  }  
}
/* End home banners */

/* Home text */
.home-text {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.home-text .inner {
	background: rgba(0,0,0,0.7);
}

.home-text .general-content {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  color: #fff;
}

@media (max-width: 1399px) {
	.home-text .general-content {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
}

@media (max-width: 1199px) {
	.home-text .general-content {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }
}
/* End home text */

/* Home reviews */
.home-reviews .reviews-wrap {
	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;
  margin: -15px;
}

.reviews-wrap .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 15px;
}

.reviews-wrap .review .review-inner {
  width: 100%;
	border-radius: 8px;
  background: #fff;
  padding: 25px;
  -webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,0.07);
          box-shadow: 0 0 5px 1px rgba(0,0,0,0.07);
}

.reviews-wrap .review .top-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;
}

.reviews-wrap .review .name {
  font-size: 1.1em;
  font-weight: bold;
}

.reviews-wrap .review .stars {
  color: var(--accentYellow);
  white-space: nowrap;
  margin-left: 10px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.reviews-wrap .review .general-content {
  font-size: 13px;
  margin-top: 30px;
  padding: 0 10px;
  position: relative;
}
.reviews-wrap .review .general-content:before,
.reviews-wrap .review .general-content:after {
  font-family: 'boxicons'!important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  color: rgba(0,0,0,0.1);
  font-size: 20px;
}

.reviews-wrap .review .general-content:before {
	content: '\ed67';
  top: -15px;
  left: -10px;
}

.reviews-wrap .review .general-content:after {
	content: '\ed68';
  bottom: -15px;
  right: -10px;
}

@media (max-width: 1399px) {
	.reviews-wrap {
    margin: -10px;
  }

  .reviews-wrap .review {
    padding: 10px;
  }
  
  .reviews-wrap .review .review-inner {
  	padding: 20px;
  }
  
  .reviews-wrap .review .name {
    font-size: 1em;
  }
}
/* End home reviews */

/* Home download */
.home-download {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.home-download .outer {
	background: rgba(0,0,0,0.8);
}

.home-download .inner {
	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;
}

.home-download .text-wrap {
  max-width: 800px;
  padding-right: 50px;
  color: #fff;
}

.home-download .text-wrap .title-featured .subtitle {
	max-width: 600px;
}

@media (min-width: 1200px) {
  .home-download .text-wrap .title-featured {
    margin: 0;
  }

  .home-download .btn {
    height: 70px;
    font-size: 1.2em;
    padding: 0 50px;
    border-radius: 6px;
  }
}

@media (max-width: 1199px) {
  .home-download .inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 991px) {
	.home-download .text-wrap {
    max-width: unset;
    padding-right: 0;
  }
}
/* End home download */

/* Products */
.products {
	margin: -10px;
}

.products .product {
	padding: 10px;
}

.products .product .info {
	margin-top: 15px;
}

.products .product .info .product-title {
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
}

.products .product .info .product-title:hover {
	color: var(--accentBlue);
}

.products .product .info .description {
  font-size: 13px;
  margin-top: 5px;
  opacity: .7;
}

.products .product .info .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: var(--accentRed);
  margin-top: 10px;
  font-size: 1.2em;
}

.products .product .info .price .price-old {
  margin-right: 7px;
  font-size: 0.8em;
  color: #aaa;
  text-decoration: line-through;
}

@media (max-width: 767px) {
	.products {
    margin: -7px;
  }

  .products .product {
    padding: 7px;
  }
  
  .products .product .info {
    margin-top: 10px;
  }
  
  .products .product .info .product-title {
    font-size: 1.1em;
  }
  
  .products .product .info .price {
    margin-top: 5px;
  }
}
/* End products */

/* Breadcrumbs */
.breadcrumbs {
  font-weight: 500;
  margin: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
  font-size: 14px;
}

.breadcrumbs i {
	font-size: 0.889em;
}

.breadcrumbs a.home,
.breadcrumbs .crumb {
  display: inline;
}

.breadcrumbs .crumb i {
	margin: 0 10px;
}
/* End breadcrumbs */

/* Collection page */
#collection .page-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#collection .page-wrap .col-sidebar {
	min-width: 380px;
  max-width: 380px;
  padding-right: 50px;
}

#collection .page-wrap .col-main {
	min-width: calc(100% - 380px);
  max-width: calc(100% - 380px);
}

.sidebar {
	border-radius: 8px; 
  background: #f7f7f7;
  padding: 25px;
}

.sidebar .sb-title {
	font-weight: bold;
  text-transform: uppercase;
  font-size: 1.3em;
  margin-bottom: 20px;
}

#collection .toggle-filters {
	margin-bottom: 20px;
}

#collection .toggle-filters i {
	margin-right: 6px;
}

#collection .sort {
	margin-top: 20px;
}

#collection .sort .custom-pager ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

#collection .sort .custom-pager ul li:not(:last-child) {
	margin-right: 3px;
}

#collection .sort .custom-pager ul li a {
  padding: 0 8px;
  background: #f7f7f7;
  border-radius: 3px;
  min-height: 45px;
  min-width: 27px;
  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;
}

#collection .sort .custom-pager ul li.disabled {
	opacity: .4;
  pointer-events: none;
}

#collection .sort .custom-pager ul li.active a {
	color: var(--accentRed);
  font-weight: bold;
}

@media (max-width: 1199px) {
	#collection .page-wrap .col-sidebar {
    min-width: 0px;
    max-width: 0px;
    padding-right: 0px;
  }

  #collection .page-wrap .col-main {
    min-width: 100%;
    max-width: 100%;
  }
  
  .sidebar {
    border-radius: 0;
    position: fixed;
    top: 0;
    left: 0;
  	width: 300px;
    height: 100%;
    overflow-y: scroll;
    z-index: 9999;
    background: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    -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%);
	}
  
  .sidebar.active {
  	-webkit-box-shadow: 5px 0 10px 1px rgba(0,0,0,0.06);
  	        box-shadow: 5px 0 10px 1px rgba(0,0,0,0.06);
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  
  .sidebar .sb-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;
  }
  
  .sidebar .sb-title .close-filters {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
    color: #aaa;
    font-size: 20px;
  }
  
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    -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;
  }

}
/* End collection page */

/* Collection filters */
.price-filter a {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.collection-filter-price {
  height: 5px;
  border: none;
  margin: 0px;
  padding: 0;
  position: relative;
  width: 100%;
}

.collection-filter-price .ui-slider-range {
  background-color: var(--accentBlue);
  border: none;
  margin: 0;
  position: absolute;
  height: 5px;
  top: 0;
  z-index: 1;
}

.collection-filter-price .ui-slider-handle {
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: 0;
  top: -5px;
  cursor: col-resize;
  border: none;
  background-color: #fff;
  border: 2px solid var(--accentBlue);
  outline: none;
  z-index:9;
}

.collection-filter-price .ui-slider-handle:last-child {
	margin-left:-10px;
}

.collection-filter-price:after {
	display:block;
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:#eee;
}

.price-filter-range {
  margin-top: 10px;
  font-size: .9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.price-filter-range .min,
.price-filter-range .max {
  display: inline-block;
}

.price-filter-range .min span,
.price-filter-range .max span {
  font-weight: 600;
}

.price-filter-range .max {
  margin-left: 15px;
}

.filter-wrap {
	margin-bottom: 30px;
}

.filter-wrap:last-child {
	margin-bottom: 0;
}

.filter-wrap .filter-title {
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.filter-wrap .filter-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -10px 0;
}
/* End collection filters */

/* Dropdown */
.ui.selection.dropdown {
	height: 40px;
  min-height: unset;
  border: 1px solid #eee;
  line-height: 40px;
  border-radius: 0px;
  padding: 0 20px;
}

.ui.selection.dropdown>.dropdown.icon {
  padding: 0;
  margin: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  height: 100%;
  width: 40px;
  background: #eee;
  font-weight: 700;
  font-size: 1em;
  color: #797979;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}

.ui.dropdown>.dropdown.icon:before {
	content: '\f107';
  font-family: "FontAwesome" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.ui.selection.dropdown:hover,
.ui.selection.active.dropdown,
.ui.selection.active.dropdown:hover,
.ui.selection.active.dropdown .menu,
.ui.selection.active.dropdown .menu:hover,
.ui.selection.active.dropdown:hover .menu,
.ui.selection.dropdown:focus {
	border-color: #eee;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ui.selection.dropdown .menu {
	width: 100%;
  margin: 0 -1px;
  border-radius: 0;
}

.ui.selection.dropdown .menu>.item {
  padding: 10px 20px !important;
  line-height: 2em;
  font-size: .8em;
}
/* End dropdown */

/* Checkbox */
.checkbox {
	margin: 0;
}

.ui.checkbox {
	font-size: .9em;
  display: block;
  padding: 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: #aaa !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(--accentYellow);
  border-color: var(--accentYellow) !important;
}

.ui.checkbox .box:hover:before,
.ui.checkbox label:hover:before {
	border-color: var(--accentYellow) !important;
}
/* End checkbox */

/* Productpage */
#productpage .grid-row {
	display: -ms-grid;
	display: grid;
  grid-gap: 20px;
  -ms-grid-columns: 2fr 20px 2fr 20px 2fr;
  grid-template-columns: 2fr 2fr 2fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

#productpage .grid-row .grid-col.col-stretch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#productpage .grid-row .grid-col-100 {
	-ms-grid-column: 1;
	    grid-column-start: 1;
  -ms-grid-column-span: 3;
  grid-column-end: 4;
}

#productpage .grid-row .grid-col-60 {
	-ms-grid-column: 1;
	    grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
}

#productpage .grid-row .grid-col-40 {
	-ms-grid-column: 3;
	    grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
}

#productpage .product-image {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

#productpage .product-image .text-box {
  width: 100%;
	padding: 100px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

#productpage .product-image .text-box .title-featured {
	max-width: 600px;
  margin: 0;
}

#productpage .content-block-padding {
	padding: 50px;
  width: 100%;
}

#productpage .block-grey {
	background: #f7f7f7;
  border-radius: 8px;
}

#productpage .block-shadow {
	background: #fff;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.05);
          box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.05);
  border-radius: 8px;
}

#productpage .specs-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#productpage .specs-block .block-inner {
	width: 100%;
}

#productpage .specs-block .specs-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

#productpage .specs-block .specs-wrap .spec {
  width: 25%;
  padding: 15px;
}

#productpage .specs-block .specs-wrap .spec .inner {
	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;
  text-align: center;
}

#productpage .specs-block .specs-wrap .spec .i-wrap {
	min-width: 70px;
  max-width: 70px;
  height: 70px;
  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: 30px;
  background: var(--accentYellow);
  margin-bottom: 15px;
}

#productpage .specs-block .specs-wrap .spec .title {
	font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
}

#productpage .specs-block .specs-wrap .spec .subtitle {
	margin-top: 2px;
  opacity: .7;
}

#productpage .price-box {
  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;
  width: 100%;
}

#productpage .price-box .price {
	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;
  font-size: 2em;
  line-height: 1;
}

#productpage .price-box .price .price-old {
	font-size: 16px;
  color: #aaa;
  font-weight: 600;
  text-decoration: line-through;
  margin-bottom: 7px;
}

#productpage .price-box .price .price-new {
  font-weight: bold;
}

#productpage .price-box .btn {
	margin-top: 30px;
}

#productpage .order-form {
	margin-bottom: 20px;
}

#productpage .product-variants .top-wrap {
  padding: 25px;
  background: #fff;
  font-weight: bold;
  font-size: 1.1em;
}

#productpage .product-variants .variants .variant {
  margin-bottom: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 3px;
  border: 3px solid #f7f7f7;
  cursor: pointer;
}

#productpage .product-variants .variants .variant.disabled {
	pointer-events: none;
  opacity: .6;
}

#productpage .product-variants .variants .variant:nth-child(even) {
	border: 3px solid #fbfbfb;
}

#productpage .product-variants .variants .variant.active {
	border: 3px solid var(--accentGreen);
}

#productpage .product-variants .variants .variant .toggle-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
  background: #f7f7f7;
}

#productpage .product-variants .variants .variant:nth-child(even) .toggle-wrap {
	background: #fbfbfb;
}

#productpage .product-variants .variants .variant .info {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
  padding-right: 25px;
}

#productpage .product-variants .variants .variant .day {
	font-weight: bold;
  font-size: 1em;
}

#productpage .product-variants .variants .variant .date {
	font-size: 13px;
  margin-top: 1px;
}

#productpage .product-variants .variants .variant .stock {
	margin-top: 10px;
}

#productpage .product-variants .variants .variant .stock .text {
	font-size: 12px;
  font-weight: 600;
}

#productpage .product-variants .variants .variant .stock .bar {
	width: 100%;
  border-radius: 3px;
  height: 6px;
  background: #eee;
  position: relative;
  margin-top: 5px;
  overflow: hidden;
}

#productpage .product-variants .variants .variant .stock .bar .stock-level {
	position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accentGreen);
}

#productpage .product-variants .variants .variant .arrow {
	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;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accentBlue);
  color: var(--accentBlue);
  font-size: 22px;
  -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;
}

#productpage .product-variants .variants .variant.open .arrow {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

#productpage .product-variants .variants .variant .data-wrap {
  display: none;
	padding: 15px 25px;
  background: rgba(var(--rgb_accentGreen), 0.1);
}

#productpage .product-variants .variants .variant .data-wrap table {
	border: none;
  font-size: 14px;
}

#productpage .product-variants .variants .variant .data-wrap table tr td {
	padding: 5px 0;
  border: none;
}

#productpage .product-variants .variants .variant .data-wrap .btn {
  margin-top: 20px;
  width: 100%;
}

.order-timer {
	display:-webkit-inline-box;
	display:-ms-inline-flexbox;
	display:inline-flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  margin:0px -3px;
  font-size:18px;
  font-weight:bold;
  padding-top: 30px;
  padding-bottom: 20px;
}

.order-timer .block {
	padding:0px 2px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  position:relative;
}

.order-timer .block .digit {
	width:20px;
  height:30px;
  background:#f7f7f7;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  margin:1.5px;
  border-radius:3px;
  padding-top:2px;
}

.order-timer .block .time-title {
	position:absolute;
  top:100%;
  left:0;
  width:100%;
  text-align:center;
  text-transform:uppercase;
  font-size:8px;
  margin-top:3px;
}

@media (max-width: 1199px) {
  #productpage .grid-row .grid-col.content-col {
  	-webkit-box-ordinal-group: 11;
  	    -ms-flex-order: 10;
  	        order: 10;
  }
  
	#productpage .grid-row .grid-col-60 {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
  }

  #productpage .grid-row .grid-col-40 {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
  }
  
  #productpage .product-image .text-box {
    padding: 70px 30px;
  }
  
  #productpage .content-block-padding {
    padding: 30px;
  }
  
  #productpage .specs-block .specs-wrap .spec .i-wrap {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  #productpage .product-image .text-box {
    padding: 50px 20px;
  }
  
  #productpage .specs-block .specs-wrap .spec {
    width: 50%;
  }
}

@media (max-width: 767px) {
  #productpage .product-image .text-box {
    padding: 40px 15px;
  }
  
  #productpage .content-block-padding {
    padding: 30px 15px;
  }
  
  #productpage .specs-block .specs-wrap .spec .i-wrap {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  #productpage .specs-block .specs-wrap .spec .title {
  	font-size: 1em;
  }
  
  #productpage .specs-block .specs-wrap .spec .subtitle {
  	font-size: 13px;
  }
  
  #productpage .product-variants .variants .variant .toggle-wrap,
  #productpage .product-variants .variants .variant .data-wrap,
  #productpage .product-variants .top-wrap {
  	padding: 15px;
  }
  
  #productpage .product-variants .top-wrap {
  	font-size: 1em;
  }
  
  #productpage .price-box .btn {
  	margin-top: 30px;
  }
}
/* End productpage */

/* Product configure */
#productpage .product-configure .product-configure-inner {
	margin: -15px 0;
}

#productpage .product-configure .product-configure-inner .option-wrap {
	padding: 15px 0;
}

#productpage .product-configure .ui.selection.dropdown {
	height: 50px;
  line-height: 50px;
  border: 2px solid rgba(0,0,0,.07) !important;
}

#productpage .product-configure .ui.selection.dropdown .text {
  font-size: 1.143em;
  font-weight: bold;
  color: #aaa;
}

#productpage .product-configure .ui.selection.dropdown>.dropdown.icon {
  font-size: 1.4em;
}

#productpage .product-configure .ui.selection.dropdown .menu>.item {
  height: 45px;
  font-size: 1em;
}

#productpage .product-configure label.label-title {
	font-size: 1.1em;
  margin-bottom: 10px;
}

#productpage .product-configure select {
	height: 50px;
  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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#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 */

/* Footer */
#footer .newsletter form {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .newsletter form input {
	-webkit-box-flex: 10;
	    -ms-flex-positive: 10;
	        flex-grow: 10;
  height: 50px;
  margin-right: 15px;
  padding: 0 20px;
}

#footer .newsletter form .btn span {
	margin-left: 6px;
}

#footer .main-footer .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

#footer .main-footer .footer-col {
	padding: 15px;
}

#footer .main-footer .footer-title {
	font-weight: bold;
  font-size: 1.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#footer .main-footer .footer-info ul li:not(:last-child) {
  margin-bottom: 15px;
}

#footer .main-footer .footer-info ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: .9em;
}

#footer .main-footer .footer-info ul li a:hover span {
	color: var(--accentBlue);
}

#footer .main-footer .footer-info ul li a .i-wrap {
	min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-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(--accentYellow);
  font-size: 18px;
  margin-right: 10px;
}

#footer .main-footer .footer-links li:not(:last-child) {
	margin-bottom: 10px;
}

#footer .main-footer .footer-links li a:hover {
	color: var(--accentBlue);
}

#footer .footer-bottom .inner {
	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: 15px 0;
}

#footer .footer-bottom .copyright {
	font-size: 14px;
  opacity: .7;
}

#footer .footer-bottom .payments {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -2px;
}

#footer .footer-bottom .payments li {
	padding: 2px;
}

#footer .footer-bottom .payments li a {
	display: inline-block;
}

#footer .footer-bottom .payments li a img {
	height: 35px;
}

@media (max-width: 1199px) {
	#footer .main-footer .footer-title {
    font-size: 1em;
    margin-bottom: 15px;
  }
  
  #footer .footer-bottom .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  #footer .footer-bottom .copyright {
    text-align: center;
    margin-bottom: 15px;
  }

  #footer .footer-bottom .payments {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 991px) {
  #footer .main-footer .footer-info ul li a {
  	font-size: 1em;
  }
  
  #footer .main-footer .footer-info ul li a .i-wrap {
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  #footer .main-footer .inner {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
    margin: 0;
  }
  
  #footer .main-footer .footer-col {
  	width: 100%;
    padding: 0;
  }
  
  #footer .main-footer .footer-col:first-child {
  	margin-bottom: 15px;
  }
  
  #footer .newsletter form .btn {
  	padding: 0;
    width: 50px;
    font-size: 20px;
  }
  
  #footer .main-footer .footer-links-wrap {
 	 border-bottom: 1px solid #eaeaea;
	}
  
  #footer .main-footer .footer-links-wrap .footer-title {
  	margin: 0;
    padding: 15px 0;
    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;
  }
  
  #footer .main-footer .footer-links-wrap .plusmin {
  	width: 10px;
    height: 10px;
    position: relative;
  }
  
  #footer .main-footer .footer-links-wrap .plusmin:before,
  #footer .main-footer .footer-links-wrap .plusmin:after {
  	content: '';
    position: absolute;
    top: 50%;
    left: 50;
    width: 100%;
    height: 2px;
    background: #000;
    -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;
  }
  
  #footer .main-footer .footer-links-wrap .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 .plusmin:after {
  	-webkit-transform: translate(-50%, -50%) rotate(0deg);
  	    -ms-transform: translate(-50%, -50%) rotate(0deg);
  	        transform: translate(-50%, -50%) rotate(0deg);
  }
  
  #footer .main-footer .footer-links-wrap .toggle-content {
  	display: none;
    padding-bottom: 15px; 
  }
  
  #footer .footer-bottom .payments li a img {
		height: 30px;
	}
}
/* End footer */

/* Categories */
.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	margin: -15px;
}

.categories .category {
	padding: 15px;
}

.categories .category.col-partners {
	width: calc(100% / 5);
}

.categories .category .image-wrap {
	border-radius: 8px;
  overflow: hidden;
}

.categories .category img {
	width:100%;
}

.categories .category .category-title {
  font-weight: bold;
  font-size: 1.5em;
  margin-top: 15px;
}

@media (max-width: 1399px) {
	.categories .category.col-partners {
    width: 25%;
  }
}

@media (max-width: 1199px) {
	.categories .category.col-partners {
    width: calc(100% / 3);
  }
}

@media (max-width: 991px) {
	.categories .category.col-partners {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .categories {
    margin: -10px;
  }

  .categories .category {
    padding: 10px;
  }
  
  .categories .category.col-partners {
    width: 100%;
  }
  
  .categories .category .image-wrap {
    border-radius: 5px;
	}
}
/* End categories */

/* Brands */
.brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	margin: -15px;
}

.brands .brand {
	padding: 15px;
}

.brands .brand .image-wrap {
	border-radius: 8px;
  overflow: hidden;
}

.brands .brand img {
	width:100%;
}

@media (max-width: 767px) {
  .brands {
    margin: -10px;
  }

  .brands .brand {
    padding: 10px;
  }
  
	.brands .brand .image-wrap {
		border-radius: 5px; 
  }
}
/* 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;
  border-radius: 3px;
}
/* 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 */

/* blog */
#blog {
	margin-top:40px;
}
.blog-articles {
	margin:-15px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}
.blog-articles .blog-article {
	padding:15px;
}
.blog-article .image-wrap .image {
	border-radius: 8px;
  overflow: hidden;
}

.blog-article .image-wrap .image:after {
	content:'';
  display:block;
  padding-top:60%;
}
#blog .headline-articles {
	padding-bottom:50px;
  margin-bottom:50px; 
  border-bottom:1px solid #f3f3f3;
}
.blog-article .info {
	margin-top:20px;
}
.blog-article .title {
	font-size:1.8em;
  font-weight:bold;
  margin-bottom:5px;
  display:block;
  line-height:1.1em;
}
.blog-article .summary {
	font-size: .9em;
}
.blog-article .summary a {
  font-weight: bold;
  text-decoration: underline;
  color: var(--accentRed);
}
.blog-spinner {
	margin-top:50px;
}
#blog .complete-article .article-title {
	font-size:2.5em;
  text-transform: uppercase;
  text-align:center;
  margin:0;
  font-weight:bold;
}
#blog .complete-article .image:after {
	display:block;
  padding-top:60%;
  content:'';
}
#blog .complete-article .image-wrap {
	max-width:1100px;
  margin:0 auto;
  border-radius: 8px;
  overflow: hidden;
}
#blog .complete-article .text-container.top-content {
  margin-bottom:40px;
}
#blog .complete-article .date-author,
.blog-article .date-author {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  color:#8a8a8a;
  margin-top:10px;
  font-size:12px;
}
.blog-article .date-author {
	margin-top:0;
  margin-bottom:10px;
}
#blog .complete-article .date-author {
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}
#blog .complete-article .author,
.blog-article .author {
	margin-right:10px;
  text-transform:lowercase;
}
#blog .complete-article .author span,
.blog-article .author span {
	text-decoration:underline;
  text-transform:none;
}
#blog .complete-article .date,
.blog-article .date {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
#blog .complete-article .date i,
.blog-article .date i {
	margin-right:5px;
}
#blog .complete-article .text-container {
	max-width:700px;
  margin:0 auto;
}
#blog .complete-article .article-text {
  margin-top:30px;
}
#blog .complete-article .share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -5px;
  margin-top: 15px;
}
#blog .complete-article .share ul li {
    padding: 5px;
}
#blog .complete-article .share ul li a {
  height: 40px;
  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: #aaa;
  color: #fff;
  padding: 0px 20px;
  min-width: 120px;
  font-weight: bold;
}
#blog .complete-article img {
	max-width:100%;
  height:auto;
}
#blog .complete-article .share ul li a i {
    margin-right: 10px;
}
#blog .complete-article .share ul li a.facebook {
	background:#3b5999;
}
#blog .complete-article .share ul li a.twitter {
	background:#55acee;
}
#blog .complete-article .share ul li a.pinterest {
	background:#bd081c;
}
#blog .recent-articles {
  margin:0 auto;
	margin-top:50px;
  padding-top:50px;
  border-top:1px solid #f3f3f3;
}
@media (max-width: 991px) {
  #blog .complete-article .article-title {
  	font-size:2em;
  }
}

@media (max-width: 767px) { 
  #blog {
  	margin-top:30px;
  }
  .blog-article .info {
  	margin-top:10px;
  }
  .blog-article .title {
  	font-size:1.7em;
  }
  #blog .headline-articles {
    border: none;
    padding: 0;
    margin-bottom: 10px;
	}
  #blog .complete-article .article-title {
  	font-size:1.8em;
  }
  #blog .complete-article .share ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -3px;
    margin-top: 15px;
  }
  #blog .complete-article .share ul li {
  	padding:3px;
  }
  #blog .complete-article .text-container.top-content {
  	margin-bottom:25px;
  }
  #blog .complete-article .share ul li a {
  	height:30px;
    font-size:12px;
  }
  #blog .complete-article .article-text {
  	font-size:1.1em;
  }
  #blog .recent-articles {
  	margin-top:30px;
    padding-top:30px;
  }
  #blog .complete-article .image-wrap {
  	margin:0 -15px;
    border-radius: 0px;
  }
  #blog {
  	margin-top:20px;
  }
  .blog-articles {
		margin:-10px;
  }
  .blog-articles .blog-article {
    padding:10px;
  }
}
/* end blog */

/* About page */
#about-page .form-wrap {
	width: 100%;
  max-width: 700px;
}

#about-page .form-wrap .inputs-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}

#about-page .form-wrap .inputs-wrap .input-col {
	padding: 5px;
  width: 100%;
}

#about-page .form-wrap .inputs-wrap .input-col.col-50 {
	width: 50%;
}

#about-page .form-wrap input,
#about-page .form-wrap textarea {
	min-width: 100%;
  max-width: 100%;
}

#about-page .form-wrap textarea {
	min-height: 150px;
}

#about-page .form-wrap .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about-page .form-wrap .btn-wrap .required-notification {
	margin-left: 20px;
  opacity: .7;
}

@media (max-width: 767px) {
	#about-page .form-wrap .inputs-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  #about-page .form-wrap .inputs-wrap .input-col.col-50 {
    width: 100%;
  }
  
  #about-page .form-wrap .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  #about-page .form-wrap .btn-wrap .required-notification {
    margin-left: 0px;
    margin-bottom: 10px;
  }
}
/* End about page */

/* Textpages */
#textpage .textpage-banner {
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 10% 0;
}

@media (max-width: 767px) {
  #textpage .textpage-banner {
  	padding: 15% 0;
  }
}
/* End textpage */
/* service page */
#service-page {
  padding-top: 50px;
}
#service-page .title-small{
	font-size: 1.6em;
  font-weight: bold;
}
.page-title h1 {
	font-size:2.3em;
  margin:0;
}
.page-title {
	margin-bottom:30px;
}

.service-blocks {
	margin: -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service-blocks .service-block-col {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
  min-width: 250px;
  padding: 12px;
}

a.service-block {
	padding:30px 20px;
  border:1px solid rgba(0,0,0,.07);
  border-radius:4px;
  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;
  text-decoration:none;
  width: 100%;
}
a.service-block .title {
	text-align: center;
}
.service-block .icon {
	width:80px;
  height:80px;
  font-size: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;
  border-radius:100%;
  margin-bottom:25px;
  background: var(--accentYellow);
  color: #333;
}
#service-page .service-blocks {
	margin-bottom:50px;
}
#service-page .flex-row{
  display: flex;
  margin: -15px;
}
#service-page .col-main{
  flex-grow: 10;
  padding: 15px;
}
#service-page .col-sidebar {
	min-width:400px;
  max-width:400px;
  margin-right: 0;
  margin-left: 20px;
  padding: 15px;
}
#service-page .contact-message-block{
  padding: 30px 25px;
  border-radius: 4px;
  margin-bottom: 20px;
}
#service-page .contact-info-block .title,
#service-page .contact-message-block .title {
	margin-bottom: 30px;
}
#service-page .contact-info-block{
	padding: 30px 25px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
  border-radius: 4px;
  margin-bottom: 20px;
  background: #fff;
}
#service-page .contact-info-block ul {
	list-style: none;
  margin: 0;
  padding: 0;
}

#service-page .contact-info-block ul li {
	margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#service-page .contact-info-block ul li:last-child {
	margin-bottom: 0;
}

#service-page .contact-info-block ul li .icon {
	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: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 13px;
  background: var(--accentYellow);
  color: #333;
}

#service-page .contact-message-block form input[type="text"] {
	width: 100%;
  border: 1px solid rgba(0,0,0,.07);
  margin-bottom: 15px;
}

#service-page .contact-message-block form textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.07);
  margin-bottom: 15px;
}

#service-page .contact-message-block form .btn-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;
}

#service-page .contact-message-block form .btn-wrap .btn {
	height: 40px;
}

#service-page .contact-message-block form .btn-wrap .required-notification {
	font-size: .9em;
  font-weight: 600;
  color: #aaa;
}

#service-page .faq {
	margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(0,0,0,.07);
}

#service-page .faq .title {
	margin-bottom: 30px;
}

#service-page .faq .faq-wrap {
	margin: -25px 0;
}

#service-page .faq .faq-wrap .faq-block {
  padding: 25px 0;
}

#service-page .faq .faq-block .faq-title {
  font-size: 1.1em;
  font-weight: 900;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  color: var(--accentYellow);
}

#service-page .faq .faq-block .faq-items .faq-item {
	border-bottom: 1px solid rgba(0,0,0,.07);
}

#service-page .faq .faq-block .faq-items .faq-item .tab {
	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;
  font-weight: 600;
  padding: 30px 0;
  cursor: pointer;
}

#service-page .faq .faq-block .faq-items .faq-item .tab i {
	font-size: 10px;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  margin-left: 15px;
}

#service-page .faq .faq-block .faq-items .faq-item.active .tab i {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

#service-page .faq .faq-block .faq-items .faq-item .page {
	padding: 30px;
  border-radius: 4px;
  background: rgba(0,0,0,0.03);
  margin-bottom: 30px;
  display: none;
}

#service-page .faq .faq-block .faq-items .faq-item .page p:last-child {
	margin-bottom: 0;
}
@media(max-width: 991px){
  #service-page{
  	padding-top: 30px;
  }
  #service-page .title-featured{
    margin-bottom: 30px;
  }
  #service-page .service-blocks {
  	margin-bottom: 15px;
  }
  #service-page .faq {
  	margin-top: 0px;
    padding-top: 30px;
  }
  #service-page .flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  }
  #service-page .col-main {
  	-webkit-box-ordinal-group: 3;
  	    -ms-flex-order: 2;
  	        order: 2;
    width: 100%;
  }
  #service-page .col-sidebar {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  	margin-left: 0;
    min-width: 100%;
    max-width: 100%;
    padding: 15px;
  }
  #service-page .textpage-content {
  	padding: 15px 0;
  }
  #service-page .contact-message-block {
  	margin-bottom: 0;
  }
  #service-page .contact-info-block,
  #service-page .contact-message-block{
  	padding: 20px;
  }
  a.service-block {
  	padding: 20px;
    text-align: center;
  }
}
@media(max-width: 767px){
  #service-page{
  	padding-top: 20px;
  }
  #service-page .title-small{
  	font-size: 1.4em;
  }
  #service-page .faq .faq-block .faq-items .faq-item .tab {
  	font-size: .95em;
    padding: 20px 0;
  }
  
  #service-page .faq .faq-block .faq-items .faq-item .page {
  	padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .service-blocks {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
    margin: -5px;
  }
  
  .service-blocks .service-block-col {
  	padding: 5px;
  }
  
  a.service-block {
  	padding: 8px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 5px;
  }
  
  .service-block .icon {
    margin-bottom: 0;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
/* End service page */