@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=block');

@font-face {
    font-family: 'dinprobold';
    src: url('fonts/dinpro_bold-webfont.woff2') format('woff2'),
         url('fonts/dinpro_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'dinproregular';
    src: url('fonts/dinpro_regular-webfont.woff2') format('woff2'),
         url('fonts/dinpro_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html {
  scroll-behavior: smooth;
}

.lazy-hidden {
  background-color: transparent !important;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  line-height: 150%;
  padding: 0;
  margin: 0;
}

#page {
  overflow: hidden;
}

body.page,
body.post {
  margin: 0;
}

body p:last-child {
  margin-bottom: 0;
}

body a:hover {
  text-decoration: none;
}

sup {
  font-size: 60%;
  font-weight: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* BUTTONS */
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
a.btn-primary,
a.btn-primary:visited {
  position: relative;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: #ffec1b;
  border: none;
  transition: none;
  padding: 20px 40px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 100%;
  border-radius: 8px;
}

a.btn:hover {
  background: #383838;
  color: #fff;
}

a.btn-primary.skew,
.skew a.btn-primary{
  background: #ffec1b;
  border-radius: 0;
  color: #000000;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  transition: 0.1s ease-in-out;
}

a.btn-primary.skew:hover,
a.btn-primary.skew a:hover {
  background: #FFF15F;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  color: #000000;
}

a:focus {
  outline: none;
}

/* Font Management */
h1{
  font-family:'Roboto Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: -2px;
}

h2,
h3,
h4,
h5,
h6 {
  font-family:'Roboto Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}

p {
  font-size: 18px;
  line-height: 160%;
}

h1 {
  font-size: 28px;
}

body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5 h6 {
    margin-bottom: 40px;
  }

  p {
    font-size: 20px;
  }

  h1 {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }

  h1,
  h2,
  h3,
  h4,
  h5 h6 {
    margin-bottom: 50px;
  }

  h1 {
    font-size: 60px;
  }
}

a {
  color: #269e47;
}

a:hover,
a:visited {
  color: #000;
}

/* UTILITIES */
.custom-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000;
  position: relative;
}

.custom-list li {
  position: relative;
  padding: 5px 0 5px 45px;
  text-align: left;
}

.custom-list.text-white li {
  color: #fff;
}

.custom-list li:before {
  content: "";
  background: url(../images/common/tick-yellow.svg) top left/contain no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
}

.custom-list.red-tick li:before {
  background: url(../images/common/tick-red-1.svg) no-repeat center center/contain;
}

/* HEADER AREA */

/* SEARCH */
#search-wrap {
  position: fixed;
  background: black;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
}

#search-item {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  position: relative;
}

#search-wrap input {
  font-size: 18px;
  padding: 20px 20px 20px 40px;
  border: none;
  border-radius: 0;
  width: 80%;
  line-height: 100%;
}

#search-wrap form button {
  width: 20%;
  font-size: 18px;
  padding: 20px 20px;
  border: none;
  border-radius: 0;
  line-height: 100%;
  background: #ffec1b;
  color: #fff;
}

#search-item form {
  display: flex;
  flex-wrap: nowrap;
}

#search-wrap .btnClose {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 15px;
  position: absolute;
  top: -55px;
  right: 0;
  border-radius: 100px;
  line-height: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
}

#ac-results {
  max-height: 400px;
  overflow: hidden;
  overflow-y: scroll;
  margin-top: 5px;
}

#ac-results .product-entry {
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
  font-size: 18px;
}

#ac-results .product-entry a {
  display: flex;
  padding: 15px 20px;
  color: #000;
  align-items: center;
  line-height: 100%;
}

#ac-results .product-entry a:hover,
#ac-results .selected-product {
  background: #dddddd;
  cursor: pointer;
}

#ac-results div.product-image {
  width: 40px;
  display: inline-block;
  flex-shrink: 0;
}

#ac-results .product-name {
  display: inline-block;
  flex-grow: 1;
  padding-top: 5px;
  padding-left: 10px;
}

/* SEARCH RESULT */
.search #primary {
  margin-bottom: 40px;
}

.search #primary #main {
  padding: 40px 0;
}

.search-title {
  text-align: center;
}

.search-title span {
  color: #d4282f;
}

.warning-wrap {
  text-align: center;
  max-width: 280px;
  margin: 0 auto 20px;
}

.search-no-result .form-wrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.search-no-result .search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.search-no-result input.search-field {
  width: 100%;
  flex-shrink: 0;
  padding: 15px;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 20px;
  border-radius: 0;
}

.search-no-result input.search-submit {
  width: 50%;
  flex-shrink: 0;
  padding: 15px 40px;
  border-radius: 0;
  text-transform: uppercase;
  background: red;
  color: #fff;
  letter-spacing: 1px;
  font-family: "Futura Std Extra Bold Condensed";
  font-size: 16px;
  line-height: 100%;
  border: 2px solid red;
}

@media (min-width: 576px) {
  .search-no-result input.search-field {
    width: 70%;
    margin-bottom: 0;
  }

  .search-no-result input.search-submit {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .warning-wrap {
    max-width: 100%;
  }
  .warning-wrap p {
    margin-bottom: 5px;
  }

  .search #primary #main {
    padding: 80px 0;
  }
}

@media (min-width: 1200px) {
  .search-title {
    font-size: 60px;
  }
}

/* --- logo */

#header-wrap {
  position: relative;
  background-color: #000;
}

#masthead {
  padding: 15px 0 0;
}

.logo-area {
  padding: 10px 0;
}

.site-branding {
  display: flex;
  padding: 0 15px;
}

.site-branding img {
  max-width: 270px;
}

.site-branding button {
  width: 50px;
  flex-shrink: 0;
  background: #269e47;
  height: 45px;
  padding: 0;
}

.site-branding > a {
  flex-grow: 1;
  display: block;
}

.site-description {
  display: none;
  text-indent: 5000px;
  position: absolute;
}

/* --- navigation */
.main-navigation {
  float: none;
}
.main-navigation ul {
  display: flex;
}

.main-navigation li {
  border-bottom: 1px solid #282828;
  font-family: 'dinprobold';
}

.main-navigation li.outline a {
    background: #ffec1b;
	clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
    color: #000000;
    padding: 10px 20px;
    width: 130px;
}

.main-navigation li.outline a:hover{
	background: #FFF15F;
	color: #000000;
}

.navbar-nav .nav-link {
  color: #fff;
  padding-left: 15px;
  font-size: 18px;
}

.navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-nav .nav-link:hover {
  color: #269e47;
}

.main-navigation li.phone-num,
.main-navigation li.phone-num a {
  color: #fff;
  float: left;
  font-size: 12px;
  line-height: 1.5em;
  align-items: center;
  padding: 5px 0 5px 15px;
  width: 55%;
}

.main-navigation li.buy-btn a,
.main-navigation li.buy-btn a.active {
  font-weight: bold;
  background: #fff;
  border-radius: 5px;
  color: #ff0008;
}

.main-navigation li.buy-btn a:hover {
  background: #ff0008;
  color: #fff;
}

@media screen and (max-width: 991px) {
	
	.site-branding button{
		position: relative;
		top: -5px;
	}
	
	.site-branding img {
	  max-width: 200px;
	}
	
	.main-navigation li.promo {
        align-items: center;
        justify-content: flex-start;
        padding: 10px 0px 0px 10px;
    }

    .main-navigation li.promo label {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .main-navigation li.promo .prc {
        color: #fff;
        background: red;
        padding: 0 10px;
        font-size: 12px;
        margin-left: 10px;
        font-weight: 700;
    }
	
	.main-navigation li.buy-btn a, .main-navigation li.buy-btn a.active{
		background: none;
	}

}

@media screen and (max-width: 767px) {
	
	.main-navigation li.phone-num {
		color: #fff;
		float: left;
		font-size: 12px;
		line-height: 1.5em;
		align-items: center;
		padding: 0 0 0 10px;
		width: 100%;
	}
	
	.main-navigation li.phone-num a {
		color: #fff;
		float: left;
		font-size: 12px;
		line-height: 1.5em;
		align-items: center;
		padding: 0 0 0 10px;
	}
	
	.main-navigation li.buy-btn a, .main-navigation li.buy-btn a.active{
		background: none;
	}
	
}

/* --- hamburger */
.logo-area button:active,
.logo-area button:focus {
  border: none;
  outline: none;
}

.navbar-toggler svg path {
  fill: #fff;
}

/* --- additional menu item */
.mnu-wrap {
  display: flex;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  padding: 10px 15px;
  align-items: center;
  background: black;
}

.phone-num {
  width: 50%;
}

.mnu-wrap .phone-num {
  width: 60%;
  flex-shrink: 0;
}

.mnu-wrap .prc-wrap {
    width: 40%;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
}

.mnu-wrap a {
  display: inline-block;
}

.mnu-wrap span {
  display: block;
}

.mnu-wrap a {
  color: #fff;
}

.mnu-wrap .promo .prc {
  color: #fff;
  background: #ff0008;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.mnu-wrap .promo label {
  display: block;
  line-height: 150%;
  margin-bottom: 2px;
  margin-right: 5px;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  overflow: hidden;
  margin: 0 auto 0;
  max-width: 280px;
  padding: 20px 0;
}

.header-icons a {
  width: 50px;
  height: 40px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 10px;
}

.icon-search {
  display: none;
}

.icon-search a {
  background-image: url(../images/common/white-search-icon.svg);
  width: 25px;
  height: 30px;
}

.icon-chat a {
  background-image: url(../images/common/white-chat-icon.svg);
  width: 50px;
  height: 34px;
}

.icon-bag a {
  background-image: url(../images/common/white-bag-icon.svg);
  width: 30px;
  height: 30px;
}

.icon-shipping a {
  background-image: url(../images/common/white-shipping-icon.svg);
  width: 50px;
  height: 30px;
}

.icon-phone a {
  background-image: url(../images/common/white-phone-icon.svg);
  width: 30px;
  height: 30px;
}

.menu-right #cartIcon .itemCount {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  color: #ffec1b;
  border-radius: 100px;
}

.menu-right #cartIcon {
  position: relative;
}

.menu-right .ah-a {
  width: 100%;
  text-align: center;
  padding: 3px 0;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
  line-height: 120%;
}

.menu-right .ah-a span {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  max-width: 100%;
}

.menu-right span.ah-1-a {
  text-transform: uppercase;
  color: red;
}

/* transparent-header */
#header-wrap.transparent {
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center top;
}

.transparent #masthead {
  position: relative;
  z-index: 9;
}

.transparent .fold-content {
  margin-top: 0;
}

.transparent .fold-content > div {
  padding: 30px 0;
}

.header-icons {
  display: none;
}

@media (min-width: 420px) {
  .menu-right .ah-a span {
    font-size: 12px;
  }
}

@media (min-width: 520px) {
  .menu-right .ah-a span {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .menu-right .ah-a {
    display: none;
  }
}

@media (min-width: 992px) {
	
  #masthead {
    padding: 30px 0;
  }
	
  .main-navigation li.outline a{
	  width: 150px;
  }

  .transparent #masthead {
    background: transparent;
  }

  .transparent .fold-content {
    margin-top: -150px;
  }

  .transparent .fold-content > div {
    padding-top: 150px;
    padding-bottom: 30px;
  }

  .site-branding {
    padding: 0;
  }

  #masthead .container {
    display: flex;
    align-items: center;
  }

  #masthead .nav-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
  }

  .shop-mnu {
    background: #d4282f;
    overflow: hidden;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    margin-top: 5px;
  }

  .shop-mnu:hover {
    background: #000;
  }

  .shop-mnu:hover a {
    color: #d4282f !important;
  }

  .navbar-expand-lg .navbar-nav .shop-mnu a.nav-link {
    color: #000;
    font-weight: bold;
    padding: 10px 30px;
    line-height: 100%;
  }

  .header-icons {
    display: flex;
  }

  .icon-phone,
  .icon-shipping {
    display: none;
  }

  .icon-search {
    display: block;
  }

  #bs4navbar {
    flex-grow: 1;
    width: 100%;
    align-items: center;
    justify-content: end;
  }

  #bs4navbar ul {
    margin-right: 0px;
    display: block;
  }

  .header-icons {
    padding: 0;
  }

  .main-navigation li {
    border: none;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 30px;
    line-height: 120%;
  }

  .shop-mnu {
    margin-top: 0;
  }
	
  .main-navigation li {
    border: none;
    margin-left: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .navbar-expand-lg .navbar-nav .nav-link {  
	  margin: 0px 5px 0px 5px;
	  padding: 10px 15px;
	  text-align: center;
  }
	
  .navbar-expand-lg .navbar-nav .nav-link.outline{
	  padding: 10px 20px !important;
  }
	
}

@media (min-width: 768px) and (max-width: 991px) {
	
	.transparent #masthead {
		position: fixed;
		z-index: 9;
		background: #000000;
		border-top: solid 1px #ffffff;
		top: 81px;
		width: 100%;
		transition: 0.10s ease-in-out;
	}
	
	.logged-in .transparent #masthead {
		padding: 8px;
		top: 128px;
	}
	
	.transparent #masthead.fix-header {
		position: fixed;
		z-index: 999;
		top: 0;
	}
	
	.logged-in .transparent #masthead.fix-header {
		top: 45px;
	}
	
}

@media (max-width: 767px) {
	
	.transparent #masthead {
		position: relative;
		z-index: 9;
		background: #ffffff;
		padding-top: 8px;
		top: 0px;
		width: 100vw;
		transition: 0.10s ease-in-out;
	}
	
	.logged-in .transparent #masthead {
		padding: 8px;
		margin-top: 0px;
	}
	
	.transparent #masthead.fix-header {
		position: fixed;
		z-index: 999;
		top: 0;
    	width: 100vw;
	}
	
	.logged-in .transparent #masthead.fix-header {
		top: 0;
		margin-top: 0;
	}
	
	.transparent #masthead ul{
		background: #000000;
	}
	
	.main-navigation li.outline a{
		clip-path: none;
		margin: 10px 0px 10px 10px;
		padding: 5px;
		text-align: center;
	}
}

/* Above Header widget */
#above-header-widget-area {
  background-color: #ffffff;
  position: relative;
  z-index: 3;
}

#ah {
  text-transform: uppercase;
  display: none;
  flex-wrap: nowrap;
  font-size: 11px;
  color: #000000;
  line-height: 16px;

  padding: 12px 0px;
  position: relative;
  z-index: 10;
}

.ah-a {
  width: 420px;
  flex-shrink: 0;
}

.ah-b {
  flex-grow: 1;
}

.ah-c {
  display: flex;
  align-items: center;
}

.ah-a span,
.ah-2-a {
  display: block;
}

span.ah-1-a {
  color: #d4282f;
}

.ah-2-a {
  color: #999;
}

.ah-2 {
  color: #000000;
  font-size: 12px;
  flex-grow: 1;
  margin-bottom: 0;
  text-align: right;
}

.ah-2 a {
  font-weight: bold;
  color: #000000;
}

#ah .dot {
  margin: 0 10px;
  color: #7c7c7c;
  display: none;
}

#ah .promo {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1em;
  margin-left: 15px;
  text-transform: uppercase;
  color: #000000;
}

#ah .promo label {
  font-weight: 700;
  margin-bottom: 0;
}

#ah .promo .prc {
  font-weight: 700;
  margin-left: 5px;
}

@media (min-width: 768px) {
  #ah {
    display: flex;
    align-items: center;
  }
	
  #ah, #ah p{
    font-size: 11px;
  }
}

@media (min-width: 992px) {
  .ah-a span,
  .ah-2-a,
  #ah .dot {
    display: inline-block;
	margin: 0;
  }
}

@media (min-width: 1200px) {
  #ah .promo {
    display: flex;
  }
	
  #ah, #ah p{
    font-size: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1199px){
	
	#ah .col-md-5 > div{
		flex-direction: column;
	}

	
}

@media (min-width: 768px) and (max-width: 991px){
	
	#ah .promo {
		align-items: center;
		justify-content: flex-end;
		font-size: 11px;
		letter-spacing: 0px;
		line-height: 1.2em;
	}
	
}

/* END --- Above Header widget */

/* Header Callback */
.header-callout {
  background: #000;
  width: 100%;
  display: block;
}

.hc-1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  padding: 12px 0;
}

.hc-1 span {
  color: #d4282f;
}

@media (min-width: 450px) {
  .hc-1 {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .header-callout {
    display: none;
  }
}

@media (max-width: 767px) {
	
	.header-callout p{
		color: #fff;
		font-size: 14px;
		text-align: center;
		padding: 5px 0px 5px 0px;
	}
	
}

/* END - Header Callback */

/* FOOTER */
#footer-wrap {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
}

#footer-wrap ul {
  list-style: none;
  padding: 0;
}

#footer-wrap ul li a {
  color: #fff;
  font-size: 15px;
}

#footer-wrap ul li a :hover {
  color: #ffec1b;
}

#ft2 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-logo {
  max-width: 240px;
  margin: 0 auto;
}

/* social-icons */
#footer-wrap ul.social-icons li a {
  color: #fff;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
}

#footer-wrap ul.social-icons {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 280px;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0;
}

#footer-wrap ul.social-icons i {
  font-size: 30px;
  line-height: 37px;
}

/* FT2 */
#ft2 .container {
  display: flex;
}

.ft2-a,
.ft2-b {
  width: 100%;
}

.ft2-a {
  text-align: center;
}

.ft2-b {
  margin-bottom: 30px;
}

.ft2-b ul li {
  padding: 10px 0;
}

.copyr p.copr-2 {
  margin-bottom: 0px;
}

.ft2-c div.wpforms-container-full .wpforms-form input[type=email]{
	max-width: 100%;
}

.ft2-c div.wpforms-container-full {
    margin: 24px auto;
    width: 100%;
    text-align: left;
}

.ft2-c div.wpforms-container-full .wpforms-form button[type=submit],
.ft2-c div.wpforms-container-full .wpforms-form button[type=submit]:focus,
.ft2-c div.wpforms-container-full .wpforms-form button[type=submit]:visited,
.ft2-c div.wpforms-container-full .wpforms-form button[type=submit]:hover{
    background-color: #ffec1b;
    border: 1px solid #ffec1b;
    color: #000000;
    font-weight: 600;
}

.ft2-c div.wpforms-container-full .wpforms-form label.wpforms-error {
    color: yellow;
}

@media (min-width: 460px) {
  .ft2-b ul {
    display: flex;
    flex-wrap: wrap;
  }

  .ft2-b li {
    width: 33.33%;
  }
}

@media (min-width: 992px) {
	#ft2 .container {
		flex-wrap: nowrap;
	}

	.ft2-b ul li {
		padding: 5px 0;
	}

	.ft2-a {
		width: 380px;
		flex-shrink: 0;
	}

	.ft2-a > div {
		width: 320px;
	}

	.ft2-b {
		flex-grow: 1;
		width: 60%;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px){
	
	.ft2-a {
        width: 260px;
        padding-right: 30px;
    }
	
	.ft2-a > div {
        width: auto;
    }
	
	.footer-logo {
		max-width: 100%;
	}
	
	.ft2-b {
        width: auto;
    }
	
	.ft2-c{
		width: 290px;	
	}
	
	.ft2-c div.wpforms-container-full .wpforms-form .wpforms-field {
		padding: 5px 0;
	}
	
	.ft2-c div.wpforms-container-full .wpforms-form h3 {
		font-size: 24px;
		line-height: 1.2em;
	}
	
}

@media (min-width: 1200px) {
	
	.footer-logo {
		max-width: 300px;
		margin: 0 auto;
	}
	
	#ft2 {
		margin-bottom: 20px;
	}
	
}

@media (max-width: 767px) {
	.ft2-c div.wpforms-container-full {
		margin: 0px auto 24px auto;
	}
}

/* FT3 */
#ft3 .container {
  position: relative;
}

#ft3 .container .ft3-c {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ft3-a,
.ft3-b {
  width: 100%;
  flex-shrink: 0;
}

.ft3-a {
  margin: 0 auto 40px;
}

.ft3-b-a {
  display: flex;
  flex-wrap: nowrap;
  max-width: 330px;
  align-items: center;
  position: relative;
  right: 0;
  top: 0;
  margin: 0 auto 40px;
}

.ft3-b-a > div {
  margin: 0 10px;
}

.disclaimer p {
  color: #fff;
  font-size: 13px;
  line-height: 160%;
  max-width: 320px;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #fff;
  margin: 0 auto 30px;
}

.copyr p {
  color: #fff;
  font-size: 14px;
  line-height: 160%;
  margin: 0 auto 5px;
  text-align: center;
}

.copr-2 {
  margin-bottom: 30px;
}

.ft3-b.copyr {
  max-width: 330px;
  margin: 0 auto;
}

@media (min-width: 420px) {
  .ft3-b.copyr {
    max-width: 510px;
  }
}

@media (min-width: 992px) {
  .ft3-a {
    width: 380px;
    flex-shrink: 0;
    margin: 0;
  }

  .ft3-b.copyr {
    width: calc(100% - 380px);
  }

  .disclaimer p {
    margin: 0;
  }

  .copyr p {
    text-align: left;
  }

  .ft3-b.copyr {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .ft3-b-a {
    position: absolute;
  }
}

/* END FOOTER */

/* IG FEED */
#ig-feed .slider {
  display: flex;
  flex-wrap: wrap;
}

#ig-feed {
  margin-bottom: 60px;
}

#ig-feed .slider .slide {
  width: 49%;
  width: calc(50% - 10px);
  margin: 5px;
  position: relative;
}

.ig-a {
  text-align: center;
}

.ig-a i {
  font-size: 60px;
  color: red;
  margin-bottom: 20px;
}

.ig-a h2 {
  font-size: 30px;
}

.spop {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  color: #fff;
  opacity: 0;
}

.spop .metrics {
  width: 200px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.spop .metrics i {
  font-size: 30px;
  position: relative;
  margin-right: 5px;
  top: 5px;
}

.spop .metrics > div {
  width: 50%;
}

.spop .caption {
  width: 100%;
}

.slide:hover .spop {
  opacity: 1;
}

@media (min-width: 992px) {
  #ig-feed .slider .slide {
    width: 24%;
    width: calc(25% - 10px);
  }
}

@media (min-width: 1200px) {
  .home #ig-feed {
    margin-bottom: 50px;
  }

  #ig-feed {
    margin-bottom: 80px;
  }
}

/* Video Wrapper */
.videoWrapper {
  padding: 56.25% 0 0 0;
  position: relative;
}

.videoWrapper iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Guarantee */
#guarantee .guarantee-a {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

#guarantee img {
  margin-bottom: 25px;
  width: 200px;
}

#guarantee h2 {
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  #guarantee h2 {
    font-size: 48px;
    max-width: 430px;
    margin: 0 auto 40px;
  }
}

@media (min-width: 992px) {
  #guarantee h2 {
    font-size: 50px;
    max-width: 100%;
  }

  #guarantee {
    margin: 0 auto 60px;
  }
}

/* SMALL GUARANTEE */
.smg-wrap {
  max-width: 730px;
  margin: 0 auto;
}

.smg-a {
  width: 80px;
  float: left;
}

.smg-b {
  max-width: calc(100% - 100px);
  display: inline-block;
  margin: 12px 0 0 15px;
  text-align: left;
  font-size: 22px;
}

.smg-c {
  clear: both;
  margin-top: 20px;
  font-size: 15px;
  line-height: 150%;
}

@media (min-width: 375px) {
  .smg-b {
    margin: 5px 0 0 15px;
    font-size: 28px;
  }
}

@media (min-width: 499px) {
  .smg-c {
    margin: 10px 0 0 100px;
    clear: none;
  }

  .smg-b {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .smg-a {
    width: 130px;
    margin-top: 0;
  }

  .smg-b {
    font-size: 30px;
    margin-top: 15px;
  }

  .smg-c {
    margin-left: 150px;
  }
}

.couponInfo {
    background-color: #ffffb3;
    border: 2px dashed red;
    text-align: center;
    padding: .5em;
    margin: .5em 0em 1em 0em;
    font-size: 21px;
    font-family: 'Open Sans',sans-serif;
    font-weight: 800;
}

@media (max-width: 767px) {
	
	.couponInfo {
		background-color: #ffffb3;
		border: 2px dashed red;
		text-align: center;
		padding: 0.5em;
		margin: 0.5em 0.5em 1em 0.5em;
		font-size: 16px;
		font-family: 'Open Sans',sans-serif;
		font-weight: 800;
		line-height: 1.2em;
	}
	
}

/* FAQ */

#faq {
  max-width: 1140px;
  margin: 0 auto;
}

#faq .title {
  font-size: 42px;
  margin: 0 auto 50px;
  max-width: 870px;
  text-align: center;
}

#faq .card-header {
  background-color: transparent;
}

#faq .card-header a {
  display: block;
  border: none;
  transform: skew(15deg);
  padding: 22px 60px 22px 40px;
  font-size: 18px;
  color: #000;
}

#faq #faq-accordion .card-header,
#faq #faq-accordion .card {
  border: none;
}

#faq #faq-accordion .card-header h5 {
  background: #eee;
  font-family: 'dinprobold';
  margin: 0;
  transform: skew(-15deg);
  transition: 0.05s ease-in-out;
}

#faq #faq-accordion .show .card-header h5{
  background: #d9d9d9;
}

#faq div#faq-accordion {
  max-width: 1140px;
  margin: 0 auto;
}

#faq .card-header a:after {
	content: "\f068";
    display: block;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 32%;
    right: 30px;
    font-size: 21px;
    font-weight: 900;
}

#faq .card-header a.collapsed:after {
  content: "\f067";
}

#faq .card-body {
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 991px) {
	
  #faq .card-header a:after {
    right: 50px;
  }
	
  #faq .card-header a {
    padding: 22px 80px 22px 30px;
    font-size: 22px;
  }
	
}

@media (max-width: 767px) {
	
	#faq .card-header a {
		padding: 22px 80px 22px 30px;
		font-family: 'dinprobold';
		font-size: 18px;
	}
	
}

/* Page Template */
.page-template-default #guarantee .container {
  padding-bottom: 60px;
  border-bottom: 4px solid #efefef;
  margin-bottom: 60px;
}

/* Default fold-bg */
.fold-content {
  color: #000;
  background: #fcfcfc;
  position: relative;
}

/* DARK NAV */
@media (min-width: 992px) {
  .dark-nav .navbar-nav .nav-link {
    color: #fff;
  }
  .dark-nav .icon-search a {
    background-image: url(/wp-content/themes/lehcart/images/common/white-search-icon.svg);
  }

  .dark-nav .icon-bag a {
    background-image: url(/wp-content/themes/lehcart/images/common/white-bag-icon.svg);
  }

  .dark-nav .icon-chat a {
    background-image: url(/wp-content/themes/lehcart/images/common/white-chat-icon.svg);
  }

  .dark-nav .icon-shipping a {
    background-image: url(/wp-content/themes/lehcart/images/common/white-shipping-icon.svg);
  }

  .dark-nav .icon-phone a {
    background-image: url(/wp-content/themes/lehcart/images/common/white-phone-icon.svg);
  }
}

/* LOADER */
.loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #932c2c;
  box-shadow: 32px 0 #c72020, -32px 0 #9f2929;
  position: relative;
  animation: flash 0.5s ease-out infinite alternate;
  display: block;
  margin-left: 50px;
}

@keyframes flash {
  0% {
    background-color: #cacaca22;
    box-shadow: 32px 0 #fff2, -32px 0 #fff;
  }
  50% {
    background-color: #fff;
    box-shadow: 32px 0 #fff2, -32px 0 #fff2;
  }
  100% {
    background-color: #fff2;
    box-shadow: 32px 0 #fff, -32px 0 #fff2;
  }
}


/* IG FEED */
#ig-feed {
  background: #f2f2f2;
  padding: 30px 0;
}

#ig-feed a,
#ig-feed a:visited,
#ig-feed a:hover{
	color: #000000;
}

#ig-feed i {
  font-size: 60px;
}

.ig-icon h2 {
  margin-bottom: 60px;
}

.ig-icon h2 a,
.ig-icon h2 a:visited,
.ig-icon h2 a:hover{
	color: #000000;
}

#ig-feed #instagramFeedContainer > .slider .slide img {
  padding: 0;
  margin: 0;
  width: 100%;
}

#ig-feed .slick-track div:nth-child(even) {
  margin-top: 30px;
}

@media (min-width: 992px) {
  #ig-feed {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
	#ig-feed i, .ig-icon i{
		font-size: 42px;
	}
}

.wordplugHdpToggle{
	background: #000000;
}

.hdp-rightLabel{
	color: #ffffff;
}

.hdp-leftLabel{
	color: #ffffff;
}

.hdpWrap .wordplugHdpToggle{
	background: #000000;
	color: #1a1a1a;
	padding-bottom: 0;
}

.wordplugHdpToggle .btn-toggle.active {
    background-color: #269e47;
}

.modal.show .modal-dialog {
    max-width: 640px
}

.modal.show .modal-dialog img {
    width: 100%
}

#wordplugHdpPopup .image {
    position: relative;
    margin-bottom: -10px
}

#wordplugHdpPopup .buttons {
    position: absolute;
    width: 100%;
    height: 55px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

#wordplugHdpPopup .buttons .wordplugHdp-signup {
    color: #fff;
    text-decoration: none;
    background: transparent;
    padding: 0px;
    font-size: 14px;
    font-weight: 800;
    margin-right: 10px;
	max-width: 130px;
	width: 50%;
}

#wordplugHdpPopup .buttons .wordplugHdp-nothanks {
    color: #de0e16;
    text-decoration: none;
    background: transparent;
    font-weight: 400;
    padding: 2px 20px;
    font-size: 13px
}

@media (min-width:749px) {
    #wordplugHdpPopup .buttons {
        bottom: 25px;
        height: 90px
    }
    #wordplugHdpPopup .buttons .wordplugHdp-signup {
        font-size: 21px;
        margin-right: 20px;
		max-width: 225px;
        padding: 0px;
    }
    #wordplugHdpPopup .buttons .wordplugHdp-nothanks {
        font-size: 21px;
        margin-right: 20px;
        padding: 10px 30px
    }
}