/*
/* Theme Name: PhonePasts
/* Author: Lachlan Hawthorne
/* Author URI: https://lachlan.cc/
/* Description: April '19
/*
/*  + + + +
/*
/* -- document config -- */
:root {
  --accent: #105cd4;
  --contrast: #0068ef;
  --background: ;
  --darktext: #14263b;
  --lighttext: #4a535d;
  --maxwidth: 1140px;
  --margin: 40px;
  --orange: #007cca;
  --orangehov: #0d336f;
}

@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,600,700");

@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 850px) {

  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

body {
  background: #f1f1f1;
  min-width: 300px;
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* -- custom elements -- */
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  outline: 0;
  font-size: inherit;
  font-family: inherit;
  border-radius: 3px;
}

button {}

button:hover {
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.25),
    inset 0 0 100px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.25),
    inset 0 0 100px 0 rgba(0, 0, 0, 0.1);
}

button.blue {
  background: #2069e2;
  color: white;
}

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

ul.ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

ul.ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 4px 0;
}

.product ul.ul li span{
    background: rgb(13, 155, 79);
    border-radius: 10px;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    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;
}

.product ul.ul li span:before{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: '';
    width: 3px;
    height: 6px;
	content: '';
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-color: white;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-top: -1px
}


ul.inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

ul li {
  display: inline;
}

/* -- flex classes -- */
.f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.f.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.f.expand {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.f.xy-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f.x-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f.y-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* -- grid classes -- */
.g {
  display: grid;
}

/* -- header -- */
body>header {
  position: fixed;
  width: 100vw;
  min-width: 320px;
  z-index: 999;
}

main {
  padding-top: 125px;
  min-height: 420px;
}

@media all and (max-width: 850px) {
  main {
    padding-top: 80px;
  }
}

header>div {
  width: 100%;
}

header>div>div {
  width: 100%;
  max-width: var(--maxwidth);
  margin: 0 var(--margin);
}

header .main {
  background: #2069e2;
  height: 80px;
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: white;
  font-size: 1.05rem;
}

header .main .drop {
  display: none;
  height: 58px;
  width: 55px;
}

header .main .drop li {
  background: white;
  height: 2px;
  width: 15px;
  margin: 2px 0;
  background: white;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

header .main .left>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .main .left svg {
  margin-right: 0;
}

header .main .left .logo {
  margin-right: 2rem;
}

header .main nav ul a:not(:last-child) {
  margin-right: 1.5rem;
}

header .main .left nav a {
  text-decoration: none;
  color: inherit;
}

header .main .left nav li {
  opacity: 0.7;
  padding: 0.5rem 0;
  border-bottom: 2px solid;
  border-color: transparent;
}

header .main .left nav li:hover {
  opacity: 1;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.3);
}

header .main .right nav li:not(:last-child) {
  margin-right: 1.5em;
}

header .main .right nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  opacity: 1;
  min-width: 35px;
}

header .main .right {
  height: 100%;
}

header .main .right nav li.search {
  display: none;
}

header .main .right nav li:hover {
  cursor: pointer;
  opacity: 1;
}

header .main .controls a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 35px;
}

header .main .controls p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: inherit;
  text-decoration: none;
}

header .main .controls li span {
  position: relative;
  height: 15px;
  width: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0.8rem;
}

header .main .controls li span:before,
header .main .controls li span:after {
  content: "";
  border: 2px solid;
}

header .main .controls li.bag span:before {
  height: 2px;
  width: 5px;
  border-radius: 3px 3px 0 0;
  border-bottom: 0;
}

header .main .controls li.bag.notEmpty:before {
  content: attr(value);
  color: white;
  font-size: 8px;
  font-weight: 600;
  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;
  background: #ff3400;
  height: 10px;
  padding: 1px 4px;
  z-index: 99;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.11);
  box-shadow: 0 1px rgba(0, 0, 0, 0.11);
  position: absolute;
  margin-top: -10px;
  margin-left: 12px;
}

header .main .controls li.bag span:after {
  height: 6px;
  width: calc(100% - 4px);
}

header .main .controls li.account span:before {
  height: 5px;
  width: 5px;
  border-radius: 100%;
}

header .main .controls li.account span:after {
  height: 3px;
  width: calc(100% - 4px);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  margin-top: 1px;
}

header .main .controls li.search span {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .main .controls li.search span:before {
  height: 8px;
  width: 8px;
  border-radius: 100%;
}

header .main .controls li.search span:after {
  height: 3px;
  width: 2px;
  border: 0;
  background: var(--darktext);
}

header .sub {
  background: #154492;
  color: white;
}

header .sub>div {
  padding: 0 1.1rem 0 0;
  margin: 0 var(--margin);
  border: 1px solid;
  border-top: 0;
  border-bottom: 0;
  border-color: #0f3471;
}

header .sub nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  width: 100%;
  margin-right: 1.4rem;
}

header .sub nav ul,
header .sub nav ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

header .sub nav ul li {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  height: 100%;
  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;
  letter-spacing: 0.03rem;
  border-right: 1px solid #0f3471;
}

header .sub nav ul li a {
  text-decoration: none;
  color: inherit;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  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;
}

header .sub nav ul li:hover {
  cursor: pointer;
  background: rgb(15, 52, 113);
  border-color: #154492;
}

header .search>span {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 15px;
  width: 15px;
  margin-left: 0.8rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .search span:before,
header .search span:after {
  content: "";
  color: var(--darktext);
}

header .search>span:before {
  height: 8px;
  width: 8px;
  border: 2px solid;
  border-radius: 100%;
}

header .search>span:after {
  background: var(--darktext);
  height: 3px;
  width: 2px;
}

header .sub .search input {
  letter-spacing: 0.03rem;
  padding: 0.7rem 1.3rem 0.7rem 2.5rem;
  margin: 0.4rem 0;
  border-radius: 0 !important;
  font-size: 0.9rem !important;
  background-size: 10px 10px;
  background-position: right 10px center !important;
  max-width: 192px;
}

header .sub .search input:focus::-webkit-input-placeholder {
  color: transparent;
}

header .sub .search input:focus:-ms-input-placeholder {
  color: transparent;
}

header .sub .search input:focus::-ms-input-placeholder {
  color: transparent;
}

header .sub .search input:focus::placeholder {
  color: transparent;
}

header .sub .search .yith-ajaxsearchform-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  max-width: 270px;
}

header .sub .search input#yith-searchsubmit {
  background: #062454;
  color: white;
  margin-left: calc(1rem / 2);
  padding: 5px 15px;
  border-radius: 3px !important;
  font-size: 0.9rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
}

header .sub .search input#yith-searchsubmit:hover {
  background: #152744;
  cursor: pointer;
}

header .search .autocomplete-suggestions {
  margin-left: -130px !important;
  min-width: 400px;
  margin-top: 10px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  -webkit-box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.03);
}

header .search .autocomplete-suggestion {
  background: transparent;
}

header .search .autocomplete-suggestion:hover {
  background: #f9f9f9;
  border-radius: 0;
  cursor: pointer;
}

header .search .autocomplete-suggestion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: 1px solid #e4e4e4;
  width: 100%;
  padding: 15px 20px;
}

header .search .autocomplete-suggestion .yith_wcas_result_content .title {
  line-height: 1rem;
  font-size: 1.1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding-right: 55px;
  line-height: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
  color: #7b7b7b;
}

header .search .autocomplete-suggestion .yith_wcas_result_content .title strong {
  color: black;
  font-weight: 600;
}

header .search .autocomplete-suggestion img {
  height: 70px;
  width: 70px;
  border: 1px solid #efefef;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
}

header .search .yith_wcas_result_content ins {
  text-decoration: none;
  color: black;
}

header .search .yith_wcas_result_content .amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-left: 5px;
}

.autocomplete-suggestion .yith_wcas_result_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: darkgrey;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding-left: 10px;
}

header .search .woocommerce .autocomplete-suggestion span.yith_wcas_result_on_sale,
header .search .autocomplete-suggestion span.yith_wcas_result_on_sale {
  background: transparent;
  border: 1px solid;
  color: #ff6500;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  border-radius: 3px;
  padding: px 8px;
  height: auto !important;
}

/* mobile dropdown */
header input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  margin: 0;
  height: 0;
  width: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
}

header input[id="searchControl"]:checked+label li:not(:first-child):not(:last-child) {
  display: none;
}

header input[id="searchControl"]:checked+label li:first-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 3px;
}

header input[id="searchControl"]:checked+label li:last-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -4px;
}

header label[for="searchControl"]:hover {
  cursor: pointer;
}

header .dropdown {
  display: none;
  padding: var(--margin);
  background: #25282f;
  color: white;
  position: absolute;
  top: 80px;
  height: calc(100vh - 80px);
}

header .dropdown ul.droplinks {
  margin-top: 25px !important;
}

header .dropdown ul.droplinks li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

header .dropdown ul.droplinks li {
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
  padding: 0 20px;
  border-left: 4px solid rgba(255, 255, 255, 0.2);
  height: 60px;
  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;
}

header .dropdown ul.droplinks li a {
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  color: white;
}

@media all and (min-width: 850px) {
  header .dropdown {
    display: none !important;
  }
}

header .dropdown>* {
  width: 100%;
  margin: 0 !important;
}

header .dropdown .search .yith-ajaxsearchform-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}

header .dropdown .search .yith-ajaxsearchform-container form {
  width: 100%;
}

header .dropdown .search #yith-ajaxsearchform .search-navigation {
  width: 100%;
  margin-right: 1rem;
}

header .dropdown .search input[type="search"] {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 45px;
  padding: 0 40px 0 40px;
  font-weight: 500;
  margin-bottom: 0 !important;
  background-size: 15px 15px;
  background-position: right 15px center !important;
}

header .dropdown .search input[type="submit"] {
  letter-spacing: 0.03rem;
  background: #ef7300;
  color: white;
  font-weight: 500;
  padding: 0 15px;
}

header .dropdown .search .autocomplete-suggestions {
  background: #414854;
  border-radius: 4px;
  width: calc(100% - (var(--margin) * 2)) !important;
  min-width: 0;
  margin-top: 1.5rem;
  margin: 1.5rem 0 0 0 !important;
  border: 0;
}

header .dropdown .search .autocomplete-suggestion:hover {
  background: #616875;
}

header .dropdown .search .autocomplete-suggestion {
  padding: 25px 20px;
  border-color: #30343c;
}

header .dropdown .search .autocomplete-suggestion .yith_wcas_result_content .title {
  color: rgba(255, 255, 255, 0.7);
}

header .dropdown .search .autocomplete-suggestion .yith_wcas_result_content .title strong {
  color: white;
}

header .dropdown .search .woocommerce .autocomplete-suggestion span.yith_wcas_result_on_sale,
header .dropdown .search .autocomplete-suggestion span.yith_wcas_result_on_sale {
  background: #ff6500;
  border-color: #ff6500;
  color: white;
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.9rem;
}

header .dropdown .search .yith_wcas_result_content {
  color: white !important;
  font-size: 1rem;
}

header .dropdown .search .yith_wcas_result_content .amount {
  color: white !important;
  font-weight: 600;
}

header .dropdown .account {
  width: 100%;
  margin-top: calc(var(--margin) / 1.3) !important;
  padding: 1.4rem 2rem !important;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  background: rgba(0, 0, 0, 0.5);
}

header .dropdown .account a {
  color: inherit;
  text-decoration: none;
}

header .dropdown .account h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

header .dropdown .account span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 15px;
  width: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1rem;
}

header .dropdown .account span:before,
header .dropdown .account span:after {
  content: "";
  border: 2px solid;
}

header .dropdown .account span:before {
  height: 5px;
  width: 5px;
  border-radius: 100%;
}

header .dropdown .account span:after {
  height: 3px;
  width: calc(100% - 4px);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  margin-top: 1px;
}

header .dropdown .account button {
  background: rgba(255, 255, 255, 1);
  color: #25262f;
  padding: 10px 15px;
  font-size: 1rem;
  letter-spacing: 0.01rem;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

@media all and (max-width: 850px) {
  :root {
    --margin: 30px;
  }

  main .carosuel>div {
    max-width: 380px !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  main .carosuel>div .right {
    margin-bottom: 50px;
    height: 222px !important;
    min-height: auto;
  }

  main .carosuel {
    padding: 50px var(--margin) !important;
  }

  main .carosuel .right img {
    max-width: 200px !important;
    max-height: 200px !important;
  }

  main .carosuel .left {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  main .carosuel .left * {
    text-align: center !important;
    padding: 0 var(--margin);
  }

  main .carosuel .controls {
    display: none;
  }

  main .carosuel .left a,
  main .carosuel .left button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
  }

  main .carosuel .left button {
    height: 60px;
    text-decoration: none;
  }

  main .carosuel .right img {
    max-height: 160px;
  }

  header .main {
    background: var(--accent);
    color: white;
  }

  header .main .drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: flex-start !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  header .main .left {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  header .main .left label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 49px;
    height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  header .main a {
    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;
    margin: 0 !important;
    width: auto;
  }

  header .main .left .logo {
    width: calc(100% - 50px);
    padding-left: 5px;
  }

  header .main a svg {
    max-height: 28px;
  }

  header .main svg path {
    fill: white;
  }

  header .main .left nav {
    display: none;
  }

  header .main .right nav {
    margin-right: 10px;
  }

  header .main .controls li {
    opacity: 1 !important;
  }

  header .main .controls li:not(:last-child) {
    margin-right: 1.5rem;
  }

  header .main .controls li span {
    margin: 0;
  }

  header .main .controls li span:before,
  header .main .controls li span:after {
    content: "";
    border: 2px solid;
  }

  header .main .controls li p {
    display: none;
  }

  header .main .controls li.account {
    display: none;
  }

  header .main .controls li.search {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  header .main .controls li.search span:before {
    color: white;
  }

  header .main .controls li.search span:after {
    background: white;
  }

  header .sub {
    display: none;
  }

  header .main .right nav {
    margin: 0px !important;
  }

  header input[type="checkbox"] {}

  header .main .left .logo {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  header .main .right nav li.search label,
  header .main .right nav li a {
    padding: 10px;
  }

  header .main .right nav li a {
    margin-right: -15px !important;
    position: absolute;
  }

  header .main .controls li.bag.notEmpty::before {
    margin: -12px 0 0 22px !important;
    line-height: 7px;
  }

  header .main .right nav li:not(:last-child) {
    margin-right: 5px !important;
  }
}

/* -- main -- */
main>div {
  width: 100vw;
}

main>.sidebar {
  background: white;
  width: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  padding-bottom: 50px;
}

main>.sidebar aside {
  /* width: 100%; */
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

main .shop {
  background: red;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

main .carosuel {
  max-height: none;
  height: auto;
  background-position: center;
  background: #151f2f;
  background-size: cover;
  background-blend-mode: multiply;
  text-shadow: 0 1px black;
  letter-spacing: 0.05rem;
  width: 100%;
  text-align: center;
  padding: 60px var(--margin) 65px var(--margin);
  text-shadow: none !important;
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px rgba(0, 0, 0, 0.05);
}

main .carosuel>div {
  max-width: calc(var(--maxwidth) - (var(--margin) * 6));
  width: 100%;
  padding: 0 10px;
}

main .carosuel .controls {
  color: red;
}

main .carosuel .controls ul {
  max-width: 195px;
  width: 100%;
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(25px, 1fr));
  grid-gap: 20px;
  margin-top: 15px;
}

main .carosuel .controls ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

main .carosuel .controls input {
  display: none;
}

main .carosuel .controls input:checked+label {
  background: #8795ab;
}

main .carosuel .controls label {
  background: rgb(45, 62, 88);
  height: 7px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  border-radius: 3px;
}

main .carosuel .controls label:hover {
  background: #51688c;
  cursor: pointer;
}

main .carosuel .left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  color: #282f3c;
}

main .carosuel .right {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 10px 0;
  min-height: 320px;
}

main .carosuel .left p {
  text-align: left;
  color: rgb(151, 162, 179);
  letter-spacing: 0.04rem;
  margin: 25px 0;
}

main .carosuel .right img {
  display: none;
  max-height: 300px;
  -webkit-transform: rotate(7deg);
  transform: rotate(7deg);
}

main>.content>div,
main>.content>section,
main .woocommerce,
main .shop {
  width: calc(100vw - (2 * var(--margin)));
  max-width: var(--maxwidth);
  margin: var(--margin) var(--margin) 0 var(--margin);
}

main .content .container .header {
  width: 100%;
  margin-bottom: 2.5rem;
}

main .carosuel h1 {
  margin: 0;
}

main .carosuel p {
  font-size: 1.3rem;
  max-width: 500px;
  text-align: center;
}

main .carosuel button {
  font-weight: 500;
  color: white;
  height: 60px;
  padding: 0 50px 2px 50px;
  letter-spacing: 0.7px;
  font-size: 1.2rem;
  box-shadow: inset 0 -2px 0 1px rgb(179, 78, 0);
  text-shadow: 0 -1px #984b0f;
  background: #ff6d21;
}

main .carosuel .partsLink {
  color: #b6c4da;
  font-weight: 400;
  letter-spacing: 0.6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-decoration: none;
  margin-bottom: 30px;
  font-size: 1.1rem;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  border-color: #a09c9c;
}

main .carosuel .partsLink:after {
  content: '';
  height: 6px;
  width: 6px;
  margin-left: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: 1px solid;
  border-right: 1px solid;
}

main .carosuel .partsLink:hover {
  opacity: 1;
  color: #ffffff;
}

main .carosuel button:hover {
  background: #e86019;
  box-shadow: inset 0 -2px #903f07;
}

main .container {
  background: white;
  padding: var(--margin);
  -webkit-box-shadow: 0px 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 1px 0 1px rgba(0, 0, 0, 0.03);
}

main .container * {
  margin: 0;
  color: var(--darktext);
}

main .container .header h4 {
  font-size: 1.4rem;
}

main .container .header a {
  text-decoration: none;
  color: inherit;
}

main .container .header p {
  background: white;
  color: #a9a9a9;
  font-size: 1rem;
  padding: 0.8rem 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  font-size: 0.9rem;
  border: 1px solid;
  text-align: center;
}

main .container .header p:hover {
  cursor: pointer;
  background: #e4e4e4;
  color: #505050;
  border-color: transparent;
}

main .container .header p:active {
  background: #dedede;
  border-color: transparent;
  color: #565656;
}

main .products.inline {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: var(--margin);
  margin-bottom: var(--margin);
}

main .products li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

main .products .image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 1px 0 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 0px rgba(0, 0, 0, 0.08);
}

main .products .image img {
  max-height: 180px;
}

main .products .desc h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01rem;
}

main .products .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .products .desc .about {
  margin-right: 20px;
  display: inline-block;
}

main .products .right {
  min-width: 65px;
}

main .products .desc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-right: inset 10px white;
  white-space: nowrap;
}

main .products .desc .about ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #83888e;
  white-space: nowrap;
  text-overflow: clip;
  padding-bottom: 8px;
}

main .products .desc .about ul li:not(:last-child) {
  margin-right: 15px;
}

main .products .desc .about ul li:not(:last-child):after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 5px;
  width: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  color: #d4d6d8;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 10px;
}

main .products .price {
  font-size: 1.2rem;
  text-align: right;
}

main .products .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .products .actions button {
  padding: 0.4rem 1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 50%;
  font-size: 11px;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--lighttext);
  border-radius: 2px;
  opacity: 0.5;
  -webkit-box-shadow: inset 0 0 0 1px;
  box-shadow: inset 0 0 0 1px;
}

main .products .actions button:hover {
  background: #185bf7;
  color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.9;
  -webkit-box-shadow: inset 0 -1px 0 1px #0000002b;
  box-shadow: inset 0 -1px 0 1px #0000002b;
}

main .products .actions button:active {
  opacity: 1;
}

main .multi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: var(--margin);
}

main .multi > div {
  height: 100%;
  letter-spacing: 0.3px;
  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;
  background: white;
  padding: var(--margin);
  text-align: center;
  color: var(--darktext);
  -webkit-box-shadow: 0px 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 1px 0 1px rgba(0, 0, 0, 0.03);
}

main .multi div>.f {
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: none;
  box-shadow: none;
}

main .multi div>.f img {
  max-width: 80px;
  max-height: 80px;
  padding: 0;
}

main .multi div h3 {
  margin: 1rem 0;
}

main .multi div p {
  margin: 0;
  max-width: 240px;
  line-height: 1.5rem;
}

main .multi div img {
  width: 100%;
  max-height: 50px;
  margin-bottom: 1rem;
}

main .multi.quicklinks h4 {
  color: #1f1f1f !important;
  font-size: 1.1rem;
  margin-bottom: 0;
}

main .multi.quicklinks p {
  margin: 15px 0 0px 0;
  max-width: 230px;
  font-weight: 400;
  color: var(--lighttext);
  font-size: 1rem;
  text-transform: lowercase;
  letter-spacing: 0.05rem;
}

main .multi.quicklinks a {
  color: #105cd4;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding-bottom: 2px;
  text-transform: none;
  display: block;
  border: 1px solid;
  padding: 15px 20px;
  margin-top: 1rem;
}

main .multi.quicklinks a:hover {
  background: #105cd4;
  border-color: transparent;
  color: white;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.05);
}

main .fivefive-fourfive {
  display: inline-grid;
  grid-template-columns: minmax(200px, 1fr) minmax(350px, 40%);
  grid-gap: var(--margin);
  margin-top: 0 !important;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

main .fivefive-fourfive>*:last-child {
  background: white !important;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  padding: var(--margin);
  letter-spacing: 0.02rem;
  color: var(--darktext);
}

main .fivefive-fourfive .summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

main .fivefive-fourfive .summary p:empty {
  display: none !important;
}

main .fivefive-fourfive .summary p span {
  color: var(--darktext) !important;
}

main .fivefive-fourfive .wcppec-checkout-buttons {
  display: none;
}

main nav.woocommerce-breadcrumb {
  width: calc(100% - (2 * var(--margin)));
  max-width: var(--maxwidth);
  display: -webkit-inline-box;
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: calc(var(--margin) / 2) var(--margin);
  padding: 20px 0;
  color: var(--lighttext);
  letter-spacing: 0.03rem;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0.6;
}

main nav.woocommerce-breadcrumb *:not(:last-child) {
  margin-right: 1.1rem;
  /* overflow: hidden; */
  text-overflow: ellipsis;
}

main nav.woocommerce-breadcrumb *:not(:last-child)::after {
  content: "";
  height: 5px;
  width: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0.5;
  margin-left: 1rem;
}

main nav.woocommerce-breadcrumb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none;
  color: var(--lighttext) !important;
}

main nav.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
  color: var(--darktext) !important;
}

main nav.woocommerce-breadcrumb * {
  /* overflow: hidden; */
  text-overflow: ellipsis;
  text-align: left;
}

main nav.woocommerce-breadcrumb p {
  margin: 0 !important;
}

main .breadcumbs {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .breadcumbs {
  color: var(--lighttext);
  letter-spacing: 0.03rem;
}

main .breadcumbs>ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .breadcumbs>ul li:hover {
  cursor: pointer;
  color: var(--darktext);
  text-decoration: underline;
}

main .breadcumbs>ul li:not(:last-child) {
  margin-right: 1.5rem;
}

main .breadcumbs>ul li:not(:last-child)::after {
  content: "";
  height: 5px;
  width: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0.5;
  margin-left: 1rem;
}

main .product aside .image {
  background: white;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .product aside img {
  display: block;
  margin: 0 auto;
  background: white;
  padding: var(--margin);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: calc(100% - 2 * var(--margin));
}

main .product article h1 {
  margin-right: var(--margin);
}

main .product article .models {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--lighttext);
  font-size: 1.1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .product article .models span {
  display: block;
  margin-right: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04rem;
}

main .product article .models ul li {
  border: 1px solid;
  padding: 6px calc(var(--margin) / 4);
  border-radius: 2px;
  font-size: 0.9rem;
}

main .product article .models ul li:not(:last-child) {
  margin-right: 15px;
}

main .product ul.ul {
  width: 100%;
  font-size: 1rem;
  margin: 1.2rem 0 1.5rem 0 !important;
  /* color: #17a943; */
  font-weight: 400;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2rem;
}

main .product .variations h5 {
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0 0 0.8rem 0;
  color: var(--lighttext);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  opacity: 0.8;
}

main .product table.variations,
main .product .single_variation_wrap {
  width: 100%;
}

main .product .variations ul {
  margin-bottom: 0.5rem;
}

main .product .variations ul input {
  display: none;
}

main .product .variations ul,
main .product .variations ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

main .product .variations ul li,
main .product .variations ul li label {
  min-width: 100px;
}

main .product .variations ul li {
  margin: 6px;
}

main .product .variations ul li label {
  border: 1px solid;
  border-radius: 3px;
  padding: 1rem 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
}

main .product .variations ul li label:hover {
  cursor: pointer;
}

main .product .variant input:checked+label {
  border-color: #008eff;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 75, 134, 0.15);
  box-shadow: 0 1px 1px 0 rgba(0, 75, 134, 0.15);
  opacity: 1;
}

main .product .priceBox {
  color: var(--dark);
  width: 100%;
  border: 1px solid #e6e6e6;
  padding: 0 calc(var(--margin) / 2);
  background: white;
}

main .product .priceBox * {
  margin: 0;
}

main .product .priceBox .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 25px 0;
}

main .product .priceBox .desc h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

main .product .priceBox .desc p {
  font-size: 0.9rem;
  margin-top: 5px;
  color: #8c8c8c;
  font-weight: 500;
}

main .product .priceBox div.price {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-left: 15px;
  border-left: 1px solid;
  padding: 0 0 0 20px;
  border-color: #e6e6e6;
}

main .product .priceBox .price span.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

main .product .priceBox .price del {
  color: #a2a2a2;
  margin-bottom: 5px;
}

main .product .priceBox .price ins {
  text-decoration: none !important;
}

main .product .product button {
  height: 55px;
  line-height: 55px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  background: #2069e2;
  color: white;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0 20px;
  /* margin: calc(var(--margin) / 2) 0; */
  border-radius: 3px;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.3);
}

main .product button:hover {
  background: #2661c3;
}

main .product button:active {
  background: #27436f;
}

@media all and (max-width: 850px) {
  .carosuel {
    padding: 0 40px !important;
  }

  .carosuel h1 {
    font-weight: 700 !important;
    letter-spacing: 0.5px;
  }

  .carosuel p {
    font-size: 1.3rem !important;
  }

  .carosuel button {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-shadow: 1px 1px #c55f00;
  }

  main .fivefive-fourfive>*:last-child {
    width: 100%;
  }

  main nav.woocommerce-breadcrumb {
    display: none !important;
  }

  main .fivefive-fourfive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: var(--margin) !important;
  }

  main .multi {
    max-width: 400px !important;
    grid-template-columns: 1fr;
  }

  main>.content>div,
  main>.content>section {
    max-width: 400px;
  }
}

main .multilist {
  background: white;
  color: var(--darktext);
  padding: var(--margin);
  width: 100%;
  max-width: calc(100% - var(--margin));
}

main .multilist h1 {
  font-size: 1.5rem;
  text-align: center;
  margin: 15px var(--margin) 0 var(--margin);
}

main .multilist>p {
  font-size: 1.1rem;
  margin: 15px 0 25px 0;
  font-weight: 500;
  color: var(--lighttext);
}

main .multilist .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main .multilist ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin: calc(var(--margin) / 2);
  width: 100%;
  max-width: 300px;
}

main .multilist ul li {
  padding: 15px 2rem;
  width: 100%;
  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;
}

main .multilist ul li a {
  text-decoration: none;
  color: var(--darktext);
}

main .multilist ul li a:hover {
  color: #2196f3;
  text-decoration: underline;
}

main .multilist ul li:nth-child(odd) {
  background: #f3f3f3;
}

main .multilist ul li:last-child {
  border-radius: 0 0 2px 2px;
}

main .multilist ul .top img {
  height: 80px;
  margin-top: var(--margin);
}

main .multilist ul .top h5 {
  font-size: 1.1rem;
}

main .fullwidth {
  width: 100%;
}

main .fullwidth.padding {
  background: #1b2433;
  letter-spacing: 0.05rem;
  padding: var(--margin);
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
}

main .fullwidth {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 1px rgba(0, 0, 0, 1);
}

main .carosuel h1 {
  font-size: 2rem !important;
  color: #ffffff !important;
}

main .carosuel p {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0px;
}

main .fullwidth h1 {
  font-weight: 600;
  font-size: 2rem;
  color: white;
}

main .fullwidth p {
  max-width: 400px;
  text-align: center;
}

main .page .multi {
  max-width: var(--maxwidth);
  width: calc(100vw - (var(--margin) * 2));
  margin: var(--margin);
}

main .page .standard {
  max-width: var(--maxwidth);
  width: calc(100vw - (var(--margin) * 2));
  margin: 0 var(--margin);
  background: white;
  padding: var(--margin);
  font-size: 1.1rem;
}

main .page .standard.margin-top {
  margin-top: var(--margin);
}

main .page .standard ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: var(--margin);
}

main .page .standard ul li {
  border: 1px solid #ececec;
  border-radius: 3px;
  margin: 10px;
  padding: calc(var(--margin) * 0.7);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.01);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.01);
  min-width: 250px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: var(--darktext);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

main .page .standard svg {
  max-height: 55px;
}

main .page .standard>* {
  margin: calc(var(--margin) / 2) 0;
}

main .page .standard h3 {
  margin: 1.3rem 0 0.1rem 0;
}

main .page .standard p {
  margin-bottom: 0;
}

main .page .standard button {
  margin-top: 2rem;
}

/* -- footer -- */
footer {
  background: white;
  -webkit-box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.02);
  box-shadow: 0 -1px 3px 0 rgba(0, 0, 0, 0.02);
  width: 100vw;
  margin-top: var(--margin);
}

footer>div {
  width: calc(100% - 2 * var(--margin));
  max-width: var(--maxwidth);
}

footer>div>ul {
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: var(--margin);
  width: 100%;
  margin: 60px 0;
}

footer>div>ul>li {
  color: #a0a0a0;
  letter-spacing: 0.02rem;
}

footer a {
  color: inherit;
  text-decoration: none !important;
}

footer a:hover {
  color: #1079f1;
  text-decoration: underline !important;
}

footer>div>ul>li>ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer>div>ul>li:first-child>ul>li:first-child {
  margin-bottom: 20px;
}

footer>div>ul>li:first-child>ul>li:last-child {
  letter-spacing: 0.05rem;
  line-height: 1.6rem;
}

footer h3 {
  margin: 0 0 15px 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f1f1f1;
  letter-spacing: 0.1rem;
}

footer a {
  margin: 10px 0;
}

footer>div>ul>li:not(:first-child)>ul>li:not(:first-child) {
  margin: 10px 0;
}

@media all and (max-width: 1000px) {
  footer>div>ul {
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }
}

@media all and (max-width: 600px) {
  footer>div>ul {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    /* max-width: 280px; */
    padding: 0 var(--margin);
  }

  footer a {
    font-size: 1.1rem;
    letter-spacing: 0px;
    font-weight: 500;
  }
}

/* --- Popup Anything on Click -  Custom Styles --- */
a.paoc-popup-close {
  width: 115px !important;
  height: auto !important;
  position: relative;
  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;
  background: black;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  bottom: 0px !important;
  padding: 10px 15px;
  border-radius: 22px;
  text-decoration: none !important;
  color: white;
  font-size: 1rem;
  margin: 0 auto var(--margin) auto;
}

a.paoc-popup-close:hover {
  background: black;
  -webkit-box-shadow: 0 0 0 2px #92929240;
  box-shadow: 0 0 0 2px #92929240;
}

a.paoc-popup-close::before,
a.paoc-popup-close::after {
  text-decoration: none !important;
}

a.paoc-popup-close::before {
  content: "";
  height: 4px;
  width: 4px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  font-size: 1.2rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

a.paoc-popup-close::after {
  content: "GO BACK";
  font-weight: 500;
  font-size: 0.8rem;
  margin-left: 14px;
  letter-spacing: 0.05rem;
}

.paoc-popup-modal-cnt {
  background: white;
  padding: var(--margin);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 3px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.paoc-popup-modal-cnt>* {
  margin: 0 !important;
  text-align: center;
}

.paoc-popup-modal-cnt>h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem !important;
  color: var(--darktext);
}

.paoc-popup-modal {
  width: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: transparent;
  /* display: -webkit-box !important; */
  display: -ms-flexbox !important;
  /* display: flex !important; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* --- Login Forms - Custom Styling --- */
.log_forms {
  width: 280px !important;
  border: 0 !important;
  text-align: left;
  padding: 0 !important;
}

.log_forms .log-form-group:not(:last-child) {
  margin-bottom: 5px;
}

.log_forms label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: grey;
}

.log_forms .log-form-group input.lw-error {
  margin-bottom: 8px !important;
}

.log_forms .log-form-group .lw-error {
  color: red;
  font-weight: 400;
}

.log_forms .log-form-group input[type="text"],
.log_forms .log-form-group input[type="password"] {
  margin-top: 8px !important;
  padding: 10px 15px !important;
}

.log_forms input[type="checkbox"] {
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
}

.log_forms input[type="submit"] {
  background: #1f71ff;
  color: white;
  border: 0 !important;
  outline: 0 !important;
  font-size: 1rem;
  padding: 15px 15px calc(15px + 2px) 15px !important;
  font-weight: 500;
  letter-spacing: 0.04rem;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.35);
}

.log_forms input[type="submit"]:hover {
  cursor: pointer;
  background: #105ad4 !important;
}

/* --- woocommerce product page --- */
main.site-main {
  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: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.woocommerce-notices-wrapper {
  margin: 0px !important;
}

main .product .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: white;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  padding: var(--margin);
  max-width: 100%;
  height: 100%;
}

main .product .img .images {
  max-width: 100%
}

main .product .img img {
  width: 100%;
}

main .product .woocommerce-product-gallery {
  height: 100%;
}

main .product .woocommerce-product-gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main .product .woocommerce-product-gallery__wrapper *:not(:first-child) {
  margin: 5px;
  border: 1px solid #dadada;
}

main .product .img img.wp-post-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  background: white;
  padding: var(--margin);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  height: auto !important;
  width: auto !important;
  max-height: 500px;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

main .product .product h1 {
  font-size: 1.5rem;
  margin-right: var(--margin);
  letter-spacing: 0.03rem;
}

main .product .product form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
}

main .product .product form.cart select {
  width: 100%;
  border: 1px solid #b7b7b7;
  border-radius: 0px !important;
  -webkit-appearance: none;
  outline: 0;
  padding: 15px 20px;
  background-color: white;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 6px), calc(100% - 15px) calc(1em + 6px);
  background-size: 5px 5px, 5px 5px, 1.5em 1.5em;
  background-repeat: no-repeat;
}

.product .product table.variations td.value{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 6px;
}

.product .product table.variations select:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  margin-left: -19px;
  margin-top: -2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #000000;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

main .product input.qty {
  margin: -;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 15px 10px 15px 20px;
  width: 100%;
  border: 1px solid #cecece;
  max-width: 150px;
  height: 100%;
  max-width: 100px;
}

main .product .product .quantity {
  margin: 0;
  margin-right: 1.5rem;
  min-width: 75px;
  height: 55px;
}

main .product .product .quantity label {
  display: none;
  height: auto !important;
  width: auto !important;
  clip: initial !important;
  font-weight: 400;
  font-size: 0.8rem;
  margin: 0 0 0.8rem 0;
  color: var(--lighttext);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  opacity: 0.8;
}

.woocommerce-message {
  border: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  color: var(--lighttext) !important;
  border-radius: 0 !important;
  padding: 14px 10px;
  width: 100%;
  border-top: 2px solid #434758 !important;
  background: white !important;
  -webkit-box-shadow: 0 1px 0 1px #d8d9dc !important;
  box-shadow: 0 1px 0 1px #d8d9dc !important;
}

.woocommerce-message a {
  background: #2dc348;
  padding: 0.8rem 1rem;
  justify-self: flex-end;
  text-transform: capitalize;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02rem;
  font-weight: 500;
  font-size: 0.9rem;
  margin-left: 3rem;
}

.woocommerce-message::before {
  display: none;
}

main .product .product .variables .variable-label {
  margin: 20px 0 10px 0 !important;
}

main .product .product .variables .variable-label label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--lighttext);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  opacity: 0.8;
}

main .product .product .variables .options>div:not(:last-child) {
  margin-right: 1rem;
}

main .product .product .variables .options>div {
  height: auto !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .product .product .variables .options input,
main .product .product .variables .options a {
  display: none;
}

main .product .product .variables .options label {
  border: 1px solid;
  border-radius: 3px;
  padding: 1rem 0.5rem;
  opacity: 0.4;
  font-weight: 400;
  font-size: 0.9rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

main .product .product .variables .options label:hover {
  cursor: pointer;
  opacity: 0.6;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}

main .product .product .variables .options input:checked+label {
  border-color: #008eff;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 75, 134, 0.15);
  box-shadow: 0 1px 1px 0 rgba(0, 75, 134, 0.15);
  opacity: 1;
}

main .product .product .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem 0 0 0;
}

main .product .product .stock {
  margin-bottom: 0 !important;
  margin-top: 2rem !important;
  text-transform: uppercase;
  font-weight: 500;
}

main .product .product .stock.in-stock {
  color: #179a2f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem !important;
  width: auto;
  padding: 10px 15px;
  border: 1px solid;
  font-size: 0.8rem;
}

main .product .product .stock.in-stock::before {
  content: "";
  display: block;
  height: 4px;
  width: 8px;
  margin-right: 1em;
  border-left: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -2px;
}

main .product .product .models {
  color: var(--lighttext);
  opacity: 0.6;
}

main .product .product .models span {
  margin-right: 1rem;
  font-weight: 500;
}

main .product .product .models ul li {
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 2px;
  font-weight: 400;
}

main .product .product .models ul li:not(:last-child) {
  margin-right: 1rem;
}

main .content .woocommerce-tabs .wc-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .content .woocommerce-tabs .wc-tabs li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  background: rgba(0, 0, 0, 0.02);
  color: rgba(0, 0, 0, 0.46);
  border: 2px solid #d6d6d6;
  border-bottom: 0px;
}

main .content .woocommerce-tabs .wc-tabs li:not(:last-child) {
  margin-right: calc(var(--margin) / 2);
}

main .content .woocommerce-tabs .wc-tabs li.active {
  background: white;
  /* box-shadow: 0px -1px 1px 0px #e2e2e2; */
  z-index: 2;
  color: var(--darktext);
  border-color: transparent;
}

main .content .woocommerce-tabs .wc-tabs li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: calc(var(--margin) / 2) var(--margin);
  font-weight: 500;
  letter-spacing: 0.03rem;
  font-size: 1.05rem;
  text-align: center;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel {
  background: white;
  color: var(--darktext);
  padding: calc(var(--margin) * 2) var(--margin);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* border-top: 2px solid #f1f1f1; */
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel * {
  max-width: 550px;
  margin: 1rem auto;
  text-align: center;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none;
  color: var(--lighttext);
  font-size: 1rem;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  opacity: 0.5;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel h3 {
  font-size: 1.5rem;
  padding: 0 var(--margin);
  margin: 0 auto;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel p {
  margin-top: 0 !important;
  font-size: 1.1rem;
  letter-spacing: 0.03rem;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  width: auto !important;
  max-width: 300px !important;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel table * {
  padding: 0;
  margin: 0;
  text-align: left;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel table p {
  margin-left: 1rem;
}

main .content .woocommerce-tabs .woocommerce-Tabs-panel table th,
main .content .woocommerce-tabs .woocommerce-Tabs-panel table td {
  padding-bottom: 15px;
}

main .content .related.products {
  background: white;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  padding: var(--margin);
}

main .content .related.products ul {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2rem;
}

main .content .related.products .columns-4 li {}

main .content .related.products>h2 {
  text-transform: capitalize;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 1.5rem;
}

main .content .related.products a h2 {
  font-size: 1.2rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  letter-spacing: 0.02rem;
  max-height: 80px;
}

main .content .related.products a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: var(--lighttext);
}

main .content .related.products a.button {
  padding: 12px 12px;
  text-align: center;
  max-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03rem;
  margin-top: 25px;
  background: #e2e2e2;
  border-radius: 3px;
  color: #737373;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.05);
}

main .content .related.products a.button:hover {
  text-decoration: none;
  color: white;
  background: #ff9533;
  border-color: transparent !important;
}

main .content .related.products a.button:active {
  background: #136ece;
}

main .content .related.products a img {
  border: 1px solid #e8e8e8;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 220px;
  border-radius: 0;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

main .content .related.products a .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 0;
  font-size: 1.1rem;
  padding-left: 2rem;
}

main .content .related.products a .price * {
  text-decoration: none;
  margin: 0 3px;
}

main .content .related.products a .price del {
  text-decoration: line-through;
  color: var(--lighttext);
  margin-bottom: 5px;
}

main .content .related.products a .price ins {
  color: var(--darktext);
}

main .content .related.products a:hover h2 {
  text-decoration: underline;
  color: #0474d8;
}

main .content .related.products a:hover {
  color: var(--darktext);
}

main .content .related.products a:hover img {
  -webkit-box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.05);
}

main .content .related.products a span.onsale {
  position: absolute;
  background: #ff6300;
  color: white;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05rem;
  font-size: 0.8rem;
  right: 15px;
  top: 15px;
  height: 25px;
  width: 60px;
  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;
  margin: 15px;
  z-index: 9;
}

main .product .img span.onsale {
  background: #fe4000 !important;
  color: white;
  justify-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0;
  padding: 5px 20px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

main .product .variation-prices span.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

table.variations input {
  -webkit-appearance: radio;
  background: red;
}

.priceBox .variable {
  display: none;
}

.priceBox .variable:first-child {
  display: block;
}

.product .product table.variations tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}


.product .product table.variations td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 3px 0;
}

.product .product table.variations tr.attribute-colour td.value {
  margin: 0;
  }

.product .product table.variations td>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 30%;
  margin: 6px;
}

.product .product table.variations td.label {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: #838383;
  margin: 20px 6px 10px 6px;
}

.product .product table.variations td input[type="radio"] {
  display: none;
}

.product .product table.variations td.value label {
  width: 100%;
  font-size: 1rem;
  padding: 15px 15px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #8e97a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #727e8a;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product .product table.variations td.value input:checked+label {
  white-space: nowrap;
  border: 1px solid #0263ff;
  background: white;
  color: #062454;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}

.product .product table.variations td.value input:disabled+label {
  background: #f1f1f1;
  border: 1px solid transparent;
  color: #8e8e8e;
}

.product .product table.variations td.value div:not(:first-child) {
  /* margin-left: 1rem; */
}

.product .product a.reset_variations {
  display: none !important;
}

/* --- bag page --- */
main .column .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: var(--margin);
  width: calc(100% - 2 * var(--margin));
  min-height: 250px;
  margin-bottom: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .woocommerce-cart-form img {
  width: auto;
  max-height: 100px !important;
  min-height: 100px;
}

.woocommerce a.remove {
  color: #9a9a9a !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 300;
  height: 20px;
  width: 20px;
  padding: 2px 6px 3px 6px;
  border: 1px solid;
}

.woocommerce a.remove:hover {
  background: grey;
}

.woocommerce table.shop_table {
  background: white;
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto;
}

.woocommerce dl.variation,
.woocommerce table.shop_table p {
  margin-top: 0 !important;
}

.woocommerce table.shop_table td.product-name {
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0 10px;
  max-width: 320px;
}

.woocommerce table.shop_table td.product-name a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.woocommerce table.shop_table input {
  border: 1px solid #e5e5e5;
  padding: 6px;
  height: 40px;
}

.woocommerce .cart_item {
  padding: 20px 0 !important;
  max-height: 200px;
}

.woocommerce>div>p {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03rem;
  color: #808080;
}

.woocommerce>div>p:not(:last-child) {
  margin: 10px 0 20px 0;
}

.woocommerce a.button {
  background: #434758;
  color: white;
  padding: 0 25px;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.3);
}

.woocommerce a.button:hover {
  background: #485177;
  color: white;
}

.woocommerce button.button {
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: capitalize;
  font-size: 1rem;
  height: 40px;
}

.woocommerce table.shop_table td {
  padding: 20px 25px;
}

.woocommerce table.shop_table th {
  color: var(--darktext);
  font-weight: 600;
}

.woocommerce>div.column {
  width: 100%;
}

.woocommerce .woocommerce-notices-wrapper {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.woocommerce .cart-collaterals .cart_totals p.woocommerce-shipping-destination {
  display: none;
}

.woocommerce form.woocommerce-shipping-calculator {
  display: none;
}

.woocommerce .coupon {
  display: none;
}

/* -- about us -- */
main>.content>div.fullwidth {
  background: #182a3a;
  margin: 0;
  max-width: 100vw !important;
  width: 100vw;
  padding: calc(var(--margin) * 1.5) var(--margin);
}

main>.content>div.fullwidth>* {
  margin: 0;
}

main>.content>div.fullwidth>h1 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

main .page .basic img {
  max-width: 50px;
  margin-bottom: 2rem;
}

main .page .basic h3 {
  max-width: 500px;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2rem;
}

main .page .basic p {
  max-width: 500px;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 2rem;
  color: var(--lighttext);
}

main .page .fullwidth h1 {
  font-size: 1.6rem;
  margin: 20px 0 0 0;
}

main .page .basic ul.quotes li * {
  text-align: left;
}

main .page .basic ul.quotes li p {
  margin-top: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

main .page .basic ul.quotes li h4 {
  margin-bottom: 5px !important;
}

main .page .basic ul.quotes li h5 {
  margin-top: 0 !important;
  font-weight: 500;
  opacity: 0.6;
  margin-bottom: 0;
}

/* -- contact us -- */
main .page .dynamic {
  background: white;
  margin: var(--margin);
  padding: var(--margin);
  max-width: var(--maxwidth);
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
}

main .page .contact form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--darktext);
}

main .page .contact form input,
main .page .contact form textarea {
  border: 1px solid #e0e0e0 !important;
  border-radius: 0px !important;
}

main .page .contact form input:focus,
main .page .contact form textarea:focus {
  border-color: #4393f9 !important;
}

main .page .contact div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
  font-size: 0.9rem;
  text-transform: capitalize;
  letter-spacing: 0.04rem;
  color: lightgrey;
}

main .page .wpforms-field-container>div>div,
main .page .wpforms-field-container>div>input {
  width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

main .page .wpforms-field-container .wpforms-required-label {
  color: var(--lighttext) !important;
}

main .page .wpforms-submit-container button {
  letter-spacing: 0.04rem;
  background: var(--orange) !important;
  font-weight: 500;
  letter-spacing: 0.6px;
  width: 100%;
  height: 50px !important;
  color: white !important;
  border: 0 !important;
  outline: 0;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
}

main .page .wpforms-submit-container button:hover {
  background: var(--orangehov) !important;
}

/* -- products display -- */
main .container .woocommerce {
  width: 100%;
  margin: 0px !important;
}

main .container .woocommerce ul.products li.product,
main .container .woocommerce-page ul.products li.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin: 0;
}

.woocommerce .products ul,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2.5rem;
  width: 100%;
  margin-bottom: 0;
}

.woocommerce ul.products:before {
  display: none;
}

main .container .woocommerce a.button {
  background: #f3f3f3;
  color: #888888;
  text-align: center;
  width: auto !important;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  font-size: 0.9rem;
  padding: 0 15px;
  height: 33px;
  line-height: 31px;
  -webkit-box-shadow: inset 0 -2px #ecebeb;
  box-shadow: inset 0 -2px #ecebeb;
}

main .container .woocommerce a.button:hover {
  background: #2069e2;
  color: white;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
}

main .container .woocommerce ul.products li.product .woocommerce-loop-category__title,
main .container .woocommerce ul.products li.product .woocommerce-loop-product__title,
main .container .woocommerce ul.products li.product h3 {
  font-size: 1.1rem !important;
}

main .container .woocommerce ul.products li.product .price {
  text-align: left;
  display: block;
}

main .container .woocommerce ul.products li.product .onsale,
main .shop ul.products li a span.onsale {
  background: white;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ff3300;
  border: 1px solid;
  border-radius: 0;
  height: auto;
  padding: 2px 8px;
  min-height: auto !important;
  line-height: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  font-weight: 400;
  font-size: 0.8rem;
  -webkit-box-shadow: 1px 1px rgba(255, 0, 0, 0.15);
  box-shadow: 1px 1px rgba(255, 0, 0, 0.15);
}

.woocommerce ul.products li.product .price {
  font-size: 1.1rem;
  margin-top: 5px;
  text-decoration: none !important;
}

main .container .woocommerce ul.products li.product a img {
  max-height: 170px;
  width: auto;
  margin: 0 auto;
  padding: 15px 30px;
  margin-bottom: 14px;
}

a.woocommerce-LoopProduct-link:hover h2 {
  text-decoration: underline !important;
  color: #175ef1;
}

main .container .woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
}

main .container .woocommerce ul.products li.product .price del {
  margin-right: 1rem;
  color: red !important;
  opacity: 0.5;
}

main .container .woocommerce ul.products li.product .price del span {
  color: red;
}

/* -- shop -- */
main .shop {
  background: white;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  margin-top: 0;
  padding: var(--margin);
}

main .shop>header {
  width: 100%;
}

main .shop ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .shop ul.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .shop ul.page-numbers {
  margin-top: var(--margin);
}

main .shop ul.page-numbers li a,
main .shop ul.page-numbers li span {
  color: #062454;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px !important;
  width: 30px !important;
  border-radius: 0;
  margin: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .shop ul.page-numbers li a {
  background: #dae0ea;
}

main .shop ul.page-numbers li span {
  color: #062454;
  border: 1px solid;
}

main .shop ul.page-numbers li a {
  text-decoration: none !important;
}

main .shop ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 2rem;
  width: 100%;
}

main .shop ul.products li {
  max-width: 250px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
}

main .shop ul.products li a img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
}

main .shop ul.products li a h2 {
  font-size: 1.2rem;
  color: var(--darktext);
  margin-top: var(--margin);
}

main .shop .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--lighttext);
  font-weight: 500;
  font-size: 1rem;
}

main .shop .price del {
  color: #ff3200;
  opacity: 0.8;
  -webkit-text-decoration: strike-through;
  text-decoration: strike-through;
}

main .shop .price ins {
  text-decoration: none;
}

main .shop .price *:not(:last-child) {
  margin-right: 1rem;
}

main .shop ul.products li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: calc(var(--margin) / 2);
  padding-bottom: 0;
}

main .shop ul.products li a.added_to_cart {
  background: #0f67fd !important;
  margin: 0 calc(var(--margin) / 2) 1rem calc(var(--margin) / 2);
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
}

main .shop ul.products li a span.onsale {
  justify-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  position: absolute;
}

main .shop h1 {
  font-size: 1.5rem;
  margin-right: 1.5rem;
}

main .shop header {
  margin-bottom: var(--margin);
}

main .shop header select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  border-radius: 0px !important;
  border: 0;
  outline: 0;
  font-size: 14px;
  border: 1px solid;
  color: #828282;
  height: 40px;
  border-color: #d2d2d2;
  padding-left: 15px;
  width: auto;
  min-width: 225px;
}

form.woocommerce-ordering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

form.woocommerce-ordering:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  height: 6px;
  width: 6px;
  z-index: 99;
  position: absolute;
  margin-left: -1.5rem;
  margin-top: -2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-color: rgba(0, 0, 0, 0.64);
}

main .shop header .woocommerce-result-count {
  display: none;
}

main .shop a.button {
  margin: calc(var(--margin) / 2);
  mabgin-top: 10px;
  padding: 10px 20px !important;
}

main .shop a.button {
  background: #f3f3f3;
  color: #888888;
  text-align: center;
  width: auto !important;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  height: 33px;
  line-height: calc(1rem - 2px);
  -webkit-box-shadow: inset 0 -2px #ecebeb;
  box-shadow: inset 0 -2px #ecebeb;
}

main .shop a.button:hover {
  background: #154492;
  color: white;
  -webkit-box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
}

@media all and (max-width: 850px) {
  main .shop {
    margin-top: var(--margin);
  }

  main .shop header {}

  main .shop header p.woocommerce-result-count {
    display: none;
  }

  main .shop header {
    min-width: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  main .shop nav {
    max-width: 100%;
  }

  main .shop nav ul li:not(:first-child):not(:last-child) {
    display: none;
  }
}

/*  -- added to cart fix -- */
a.added_to_cart {
  margin-top: 1rem;
  background: rgb(5, 108, 255) !important;
  padding: 1rem;
  text-transform: capitalize;
  color: white;
  font-weight: 700;
}

/* -- account page -- */
main .account nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 50px !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .account nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

main .account nav ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  background: #efefef;
  color: #505050;
}

main .account nav ul li.is-active {
  background: white !important;
  border: 1px solid #b9bcca;
  border-bottom: 0;
}

main .account nav ul li.is-active a {
  background: white !important;
  -webkit-box-shadow: 0 1px white;
  box-shadow: 0 1px white;
  z-index: 9;
}

main .account nav ul li:not(:last-child) {
  margin-right: 1rem;
}

main .account nav ul li a {
  font-weight: 500;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  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;
  text-decoration: none;
  text-transform: capitalize;
  color: #434758;
  background: #f0f1f5;
  text-align: center;
  padding: 5px;
}

main .account .woocommerce-MyAccount-content {
  background: white;
  border: 1px solid #b9bcca;
  width: 100%;
  padding: var(--margin);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main .account .woocommerce-MyAccount-content p {
  max-width: 400px;
  text-align: center;
  font-size: 1.1rem;
}

main .account .woocommerce-MyAccount-content a {
  color: #155bde;
}

main .account .woocommerce-MyAccount-content a.button {
  color: white;
  margin-left: 2rem;
}

main .account .woocommerce-MyAccount-content form {
  max-width: 400px;
}

main .account .woocommerce-MyAccount-content form input {
  background: white;
  height: 40px;
  padding: 15px 20px;
  border: 1px solid #d4d4d4 !important;
}

/* -- 404 page -- */
.fourohfour {
  max-width: var(--maxwidth);
  margin-top: var(--margin);
  padding: var(--margin);
  color: #566373;
}

.fourohfour h1 {
  font-size: 8rem !important;
  margin: 0;
}

.fourohfour p {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.7;
  text-align: center;
}

.fourohfour button {
  background: #324861;
  color: white;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  font-size: 1rem;
}

/* -- track order -- */
main .woocommerce .ordertracking {
  max-width: 400px;
  color: var(--darktext);
}

main .woocommerce .ordertracking img {
  max-width: 50px;
  margin-bottom: 1rem;
}

main .woocommerce .ordertracking h1 {
  font-size: 1.5rem;
}

main .woocommerce .ordertracking form {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.1rem;
}

main .woocommerce .ordertracking form p {
  width: 100%;
}

main .woocommerce .ordertracking form p:first-child {
  color: var(--lighttext);
}

main .woocommerce .ordertracking form input {
  height: 45px;
  padding: 20px;
  border: 1px solid;
  border-color: #d6d6d6;
}

main .woocommerce .ordertracking form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

main .woocommerce .ordertracking form button.button {
  background: var(--orange);
  -webkit-box-shadow: inset 0 -2px #0000001c;
  box-shadow: inset 0 -2px #0000001c;
  color: white;
  width: 100%;
  margin-top: 1rem;
  height: 50px;
}

main .woocommerce .ordertracking form button.button:hover {
  background: var(--orangehov);
}

/* -- cart -- */
main .cart {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .cart form {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 200px;
}

main .cart .cart-collaterals,
main .cart .cart-collaterals {
  width: auto !important;
  margin-left: var(--margin);
}

.cart .cart-collaterals .cart_totals,
.cart .cart-collaterals .cart_totals {
  width: 100%;
  min-width: 300px;
}

.cart .cart-collaterals .cart_totals h2 {
  color: #7b7b7b;
  margin-top: 0;
  text-transform: uppercase;
  font-size: 1rem;
}

.cart .wc-proceed-to-checkout a.button {
  background: #2bbd47;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  height: 50px;
  line-height: 50px;
}

.cart .wc-proceed-to-checkout a.button:hover {
  background: #219c39;
}

.cart table.shop_table td.product-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart table.shop_table td.product-thumbnail img {
  min-width: 60px;
  min-height: 60px;
}

@media all and (max-width: 1100px) {
  .woocommerce .cart{
    flex-direction: column !important;
  }
  
  main .product .product form.cart button {
    margin-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  main .product .product form.cart .quantity {
    width: auto !important;
    min-width: auto !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  main .cart .quantity {
    width: auto;
    min-width: 0 !important;
    margin: 0 !important;
  }

  main .cart .variations_button button {
    margin-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  main .cart .quantity input {
    max-width: none;
  }

  .woocommerce table.shop_table_responsive thead,
  .woocommerce-page table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    content: attr(data-title);
    font-weight: 700;
    float: left;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    display: block;
    text-align: right !important;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {}

  .cart table.shop_table td {
    padding: 10px 15px;
  }

  main .cart .cart-collaterals,
  main .cart .cart-collaterals {
    width: 100% !important;
    margin: 0 !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 350px;
  }

  .cart .cart-collaterals .cart_totals,
  .cart .cart-collaterals .cart_totals {
    min-width: 0 !important;
    width: 100% !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .woocommerce .cart_item {
    padding: 0 !important;
  }

  .cart table.shop_table td.product-thumbnail {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cart table.shop_table td.product-thumbnail:before {
    display: none;
  }

  .woocommerce table.shop_table td.product-name {
    height: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .woocommerce table.shop_table tbody {}

  form.woocommerce-cart-form table.shop_table tbody tr {
    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-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    min-width: 100%;
  }

  .woocommerce .cart_item {
    max-height: none !important;
  }

  .woocommerce table.shop_table tbody .cart_item td {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding: 10px;
  }

  .woocommerce table.shop_table .product-total {
    text-align: right;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    margin-right: 1rem;
  }
}

/* -- default page styling -- */
main .default {
  background: white;
  max-width: 600px;
  width: calc(100vw - (var(--margin) * 2));
  color: var(--darktext);
  padding: var(--margin);
  margin: var(--margin);
  margin-bottom: 0;
}

main .default img {
  max-width: 50px;
  margin-bottom: 1rem;
}

main .default h1 {
  font-size: 1.5rem;
}

/* -- my account -- */
main>.woocommerce {
  background: white;
  padding: var(--margin);
  width: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1px solid;
  height: 40px;
  border-color: #ccc;
  padding: 0 15px;
}

/* -- checkout -- */
.woocommerce-form-coupon-toggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.woocommerce-form-coupon-toggle>* {
  width: 100%;
  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;
}

.woocommerce-form-coupon-toggle a {
  margin-left: 1rem;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  font-weight: 500;
  border-top-color: #ff7e41;
  border-radius: 0;
  padding: 30px;
  margin: 0 0 2em;
  position: relative;
  background-color: #ffe8dd;
  color: #da591d;
  list-style: none outside;
  width: auto;
  -webkit-box-shadow: 0 1px 0 1px rgba(216, 70, 0, 0.15);
  box-shadow: 0 1px 0 1px rgba(216, 70, 0, 0.15);
}

.woocommerce-error {
  background: #ffe1dd;
  color: #b81c23;
  border-color: #b81c23;
}

.woocommerce-info::before {
  color: #f56825;
  position: initial;
  margin-right: 1rem;
}

.woocommerce-info a {
  color: inherit;
}

.woocommerce form[name="checkout"] input[type="checkbox"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-appearance: checkbox;
}

.select2-container--default .select2-results>.select2-results__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* test for middle logo header */
header .main>div:after,
.logo a:after {
  display: none;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px dotted #000000;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  z-index: 9;
}

/* -- checkout -- */
form.checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#customer_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 600px;
}

#customer_details div {
  width: auto !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#customer_details div:not(:last-child) {
  margin-right: var(--margin);
}

#customer_details input {
  height: 45px;
  padding: 0 15px;
}

#customer_details input:focus {
  border-color: #2c7eff;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
}

#customer_details input[type="checkbox"] {
  height: auto !important;
}

form.checkout #order_review_heading {
  display: none;
}

form.checkout #ship-to-different-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #cccccc;
  padding: 15px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 3px;
}

@media all and (max-width: 1100px) {
  form.checkout, form.checkout .f {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 400px;
  }

  #customer_details div:not(:last-child) {
    margin-right: 0 !important;
  }

  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-top: var(--margin);
    margin-bottom: 0;
  }

  .woocommerce-error a,
  .woocommerce-info a,
  .woocommerce-message a {
    margin: 0;
    margin-left: 1rem;
  }
}

form.checkout .form-row .required {
  color: #fe7e41;
}

form.checkout .form-row label {
  text-transform: capitalize;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lighttext);
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #105cd4;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
  border-bottom: 1px solid #d0dcea;
  color: #344150;
  margin-bottom: 0px;
}

#add_payment_method #payment ul.payment_methods a,
.woocommerce-cart #payment ul.payment_methods a,
.woocommerce-checkout #payment ul.payment_methods a,
#add_payment_method #payment div.form-row a,
.woocommerce-cart #payment div.form-row a,
.woocommerce-checkout #payment div.form-row a {
  color: inherit;
}

.product-quantity {
  white-space: nowrap;
  padding-left: 5px;
}

label[for="shipping_method_0_free_shipping1"] {
  color: #47a755;
  letter-spacing: 0.01rem;
}

/* -- sidebard -- */
.hasSidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: var(--maxwidth);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: var(--maxwidth);
  width: calc(100vw - (2 * var(--margin)));
  /* margin: 0 var(--margin); */
}

.hasSidebar .sidebar {
  min-width: 260px;
  max-width: 300px;
  background: white;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  padding: var(--margin);
}

.hasSidebar .sidebar aside {
  margin: 0 !important;
  width: 100%;
}

.widget_layered_nav_filters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-top: 10px;
}

.hasSidebar .sidebar h3 {
  font-size: 0.9rem;
  color: var(--lighttext);
  opacity: 0.5;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}

.hasSidebar .sidebar aside>ul>li>a {
  width: 100%;
  padding-left: 0;
}

.hasSidebar .sidebar a {
  color: #14263b;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
  height: auto;
  width: auto;
  letter-spacing: 0.01rem;
}

.hasSidebar .sidebar ul.children {
  padding-left: 1rem;
  border-left: 1px solid;
  border-color: #e2e2e2;
}

.hasSidebar .sidebar input[type="search"] {
  border-radius: 0;
  padding: 10px 14px;
  border: 1px solid #d6d6d6;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  width: auto;
  height: 45px;
}

.hasSidebar form.woocommerce-product-search {
  visibility: hidden;
  display: none;
}

.hasSidebar form.woocommerce-product-search button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 45px;
  background: #ebe9eb;
  color: white;
  font-weight: 500;
  max-width: 45px;
  margin-left: 1rem;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hasSidebar form.woocommerce-product-search button:before,
.hasSidebar form.woocommerce-product-search button:after {
  content: "";
  position: absolute;
  display: block;
  z-index: 99;
  border: 2px solid;
  border-color: #515151;
}

.hasSidebar form.woocommerce-product-search button:before {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  margin-top: 0;
  margin-left: 0;
}

.hasSidebar form.woocommerce-product-search button:after {
  height: 6px;
  width: 2px;
  border: 0;
  background: #515151;
  margin-top: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 6px;
}

.hasSidebar .shop {
  margin-right: 0;
}

.hasSidebar .sidebar .product-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hasSidebar .sidebar .product-categories li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.hasSidebar .price_slider_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
}

.price_slider {
  margin-bottom: 1em;
}

.price_slider_amount {
  text-align: right;
  line-height: 2.4em;
  font-size: 0.8751em;
}

.price_slider_amount .button {
  font-size: 1.15em;
}

.price_slider_amount .button {
  float: left;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 0.9em;
  height: 0.9em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background: #e7e7e7;
  outline: none;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 0 0px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 0px rgba(0, 0, 0, 0.03);
}

.ui-slider .ui-slider-handle:last-child {
  margin-left: -11px;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background: none repeat scroll 0 0 #ffffff;
  -moz-box-shadow: 1px 1px 1px 0.5px rgba(0, 0, 0, 0.25) inset;
  border-radius: 1em;
  border: 1px solid #d8d8d8;
}

.price_slider_wrapper .ui-widget-content {
  background: #e7e7e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 13px;
  margin: 20px 0;
}

.ui-slider-horizontal {
  height: 0.5em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

.hasSidebar .sidebar button.button {
  height: 35px;
}

@media all and (max-width: 1100px) {
  .hasSidebar .sidebar {
    display: none;
  }

  .hasSidebar .shop {
    margin: var(--margin) 0;
  }

  .feature {
    margin-top: var(--margin) !important;
    margin-bottom: 0px !important;
  }
}

/* -- feature -- */
.feature {
  background: white;
  max-width: var(--maxwidth);
  margin: var(--margin);
  margin-top: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-shadow: inset 0 -20px white, 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: inset 0 -20px white, 0 1px 0 1px rgba(0, 0, 0, 0.03);
}

.feature .cats {
  overflow-y: scroll;
  max-height: 350px;
  width: calc(100% - var(--margin));
  margin: calc(var(--margin) / 2);
  -webkit-overflow-scrolling: touch;
}

.feature .cats ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.feature .cats ul li {
  color: #4c515a;
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.01);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.01);
  font-size: 1rem;
  font-weight: 500;
  margin: 7px;
  flex-basis: 150px;
  flex-grow: 1;
}
.feature .cats ul li.placeholder{
  height: 0px;
  border: 0px solid transparent;
  margin: 0 7px;
}

.feature .cats ul li.placeholder:hover{
  box-shadow: none;
  border-color: transparent;
}

.feature .cats ul li:hover {
  border-color: #3482ff;
  -webkit-box-shadow: 0 1px 0 1px #3482ff14;
  box-shadow: 0 1px 0 1px #3482ff14;
  color: var(--darktext);
}

.feature .cats ul li img {
  max-height: 45px;
  margin-right: 0.5rem;
}

.feature .cats ul li h4 {
  font-weight: 600;
}

.feature .cats ul li a {
  color: inherit;
  text-decoration: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}

/* -- mobile fixes -- */
.woocommerce ul.products li.product a {
  width: 100%;
}

/* -- device desc --*/
.device-desc {
  margin-top: calc(var(--margin) * -0.5);
  margin-bottom: 2.5rem;
  width: 100%;
}

.device-desc p {
  font-weight: 400;
  color: var(--lighttext);
  font-size: 1rem;
  letter-spacing: 0.2px;
  margin: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e6e6e6;
}

/* -- checkout payment platforms -- */
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #ecf2f9;
  border-radius: 0px;
}

@media all and (max-width: 600px) {

  #add_payment_method #payment,
  .woocommerce-cart #payment,
  .woocommerce-checkout #payment {
    background: transparent;
  }

  #add_payment_method #payment ul.payment_methods,
  .woocommerce-cart #payment ul.payment_methods,
  .woocommerce-checkout #payment ul.payment_methods,
  #add_payment_method #payment div.form-row,
  .woocommerce-cart #payment div.form-row,
  .woocommerce-checkout #payment div.form-row {
    padding: 0px;
  }

  .wc_payment_method label {
    background: rgba(0, 0, 0, 0.04) !important;
  }

  input[name="payment_method"]:checked+label {
    background: white !important;
  }
}

.payment_methods.methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wc_payment_method input.input-radio {
  display: none !important;
}

.wc_payment_method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.wc_payment_method label {
  background: white;
  color: #707784;
  -webkit-box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.03);
  width: 100%;
  padding: 10px 25px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
}

.wc_payment_method:not(:first-child) label {
  margin-top: 1rem;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background: white;
  border-radius: 0px;
  color: #2a3b56;
  font-weight: 400;
  padding: 10px 25px 20px 25px;
  margin-top: 20px;
  border: 1px solid #cecece;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid white;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  margin-top: -17px;
  -webkit-box-shadow: 0 1px white;
  box-shadow: 0 1px white;
  z-index: 9;
}

#add_payment_method #payment div.payment_box::after,
.woocommerce-cart #payment div.payment_box::after,
.woocommerce-checkout #payment div.payment_box::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0px;
  margin-top: -30px;
  margin-left: -1px;
  padding: 2px;
  border: 1em solid #cecece;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: #30bd53;
  margin-top: 15px;
  height: 55px;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 1px #18bd40;
  -webkit-box-shadow: inset 0 -2px #00000045;
  box-shadow: inset 0 -2px #00000045;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt {
  background: #35c75a;
}

input[name="payment_method"]:checked+label {
  color: var(--darktext);
  background: white;
  border-color: #5094ff;
}

.sq-fieldset label {
  -webkit-box-shadow: 0px 0px red !important;
  box-shadow: 0px 0px red !important;
  padding: 0px;
  display: none !important;
}

.sq-input {
  background: white !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #cccccc;
}

/* view cart button fixed */
a.added_to_cart {
  background: #105cd4 !important;
  font-size: 0.9rem !important;
  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;
  height: 40px;
  line-height: 25px;
  text-align: center;
  padding: 0;
  -webkit-box-shadow: inset 0 -2px #0d336f;
  box-shadow: inset 0 -2px #0d336f;
}

a.added_to_cart:hover {
  background: #3379e6 !important;
}

/* new products desc fix */
.woocommerce-product-details__short-description{
    margin-bottom: 2rem;
    display: none;
}

/* qualityInfo */
.product .product .qualityInfo{
  display: none;
  background: #e6eff9;
  /* border: 1px solid; */
  border-radius: 5px;
  color: #365592;
  margin: 1.5rem 6px 0 6px !important;
  padding: 20px 25px;
  width: 100%;
}

/* product page fixes */
.woocommerce-variation.single_variation{
  display: none !important;
}

/* nav dropdown (non-mobile) */

header .navDrop{
  color: #1b2433;
}

header .navDrop > div {
  background: #ffffff;
  width: 100%;
  max-width: var(--maxwidth);
  padding: 30px 40px 25px 40px;
  flex-wrap: wrap;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}

header .navDrop > div > div {
  width: 100%;
  flex-wrap: wrap;
}

header .navDrop > div > div > ul {
  flex: 1;
  max-width: 250px;
}

header .navDrop h2{
  flex: 1 1 100%;
  margin: 0;
}

header .navDrop ul li h3{
  margin: 0 0 10px 0;
}

header .navDrop li{
  margin: 4px 0;
}

header .navDrop a{
  text-decoration: none;
  color: inherit;
}

header .navDrop a:hover{
  text-decoration: underline;
}

header .navDrop > div{
  display: none;
}

header .navDrop > div > div {
  display: none;
}

/* shop attributes link fix */
.shop_attributes a {
  color: inherit;
  opacity: 0.5;
}

.shop_attributes a:hover{
  opacity: 1;
}

/* blog */

.posts{
  width: 100%;
  max-width: var(--maxwidth);
  padding: var(--margin);
  padding-bottom: 0;
  flex-wrap: wrap;
}

.posts a{
  color: inherit;
  text-decoration: none;
}

.posts a:hover{
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.05);
}

.posts a:hover h4{
  text-decoration: underline;
  color: var(--accent);
}


.posts > a,
.posts > div{
  background: white;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 260px;
  margin: 10px;
  padding: calc(var(--margin) / 2) var(--margin);
  box-shadow: 0 1px 1px 0px rgba(0,0,0,0.05);
}

.posts > .placeholder{
  height: 0px;
  padding: 0;
  background: transparent;
}

.posts .thumbnail{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.posts .thumbnail img{
  width: 100%;
  height: auto !important;
}

.posts .title{
  display: flex;
  flex-direction: column;
}

.posts .title h4{
  font-size: 1.3rem;
  margin-bottom: 0px;
}

.posts .title p{
  opacity: 0.5;
}

.posts .title ul{
  width: 100%;
  opacity: 0.5;
}

.posts .title ul li{
  flex: 1;
}

.posts .title ul li p{
  margin-left: 0.5rem;
  opacity: 1;
  font-size: 0.89rem;
}

.posts .title ul img{
  max-width: 20px;
}

/* post */

.post{
  background: white;
  width: 100%;
  max-width: 800px;
  padding: var(--margin);
  margin: var(--margin) 0 0 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.post .image img{
  max-width: 100%;
  height: auto !important;
}

.post .title{
  margin-bottom: 2rem;
}

.post .comment-form-comment{
  display: flex;
  flex-direction: column;
}

.post .comment-form-comment label{
  margin-bottom: 10px;
  font-weight: 500;
  opacity: 0.5;
}

.post input[type="submit"]{
  background: #154492 !important;
  color: white;
  font-family: inherit;
  padding: 10px 20px;
}

.post h4{
  margin: 0;
}