@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  background-color: white;
  color: black;
}

a,
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}

a:visited {
  text-decoration: none;
  outline: none;
}

.row:after, .row:before {
  content: "";
  display: block;
}

/*	colors	*/
/*	font families	*/
/*	navbar 	*/
/*	forms	*/
/*	misc	*/
body {
  font-size: 14px;
  line-height: 1.4;
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
}
@media (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

h1 {
  font-size: 2.4em;
}

h2 {
  font-size: 2.1em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1.1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  margin: 1em 0 0.5em;
  font-weight: 500;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

ul, ol, p {
  margin-bottom: 0.5em;
}
ul:last-child, ol:last-child, p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 2em;
}

label {
  margin-bottom: 0.5em;
  font-weight: 400;
}

mark {
  background: none;
}

.color-primary {
  color: #261a17;
}

.color-secondary {
  color: #cebca5;
}

.color-accent {
  color: #21f4bb;
}

.color-4 {
  color: #959595;
}

.color-5 {
  color: #f0f0f0;
}

.color-text {
  color: #261a17;
}

html,
body {
  color: #261a17;
  background-color: #fff;
}

body {
  overflow-x: hidden;
  margin-top: 50px;
}
@media (min-width: 992px) {
  body {
    margin-top: 60px;
  }
}

main,
section {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  main,
section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

mark {
  background-color: transparent;
  color: #cebca5;
  padding: 0;
  display: inline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #261a17;
}
h1 mark,
h2 mark,
h3 mark,
h4 mark,
h5 mark,
h6 mark {
  color: #cebca5;
}

hr {
  border-top: 1px solid #f0f0f0;
}

.box {
  padding: 20px;
  background-color: white;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .box {
    margin-bottom: 0;
  }
}

.price-discounted {
  color: #3f93e6;
}

.price-striked {
  text-decoration: line-through;
  font-weight: 300;
  font-family: "Abril Fatface", Tahoma, SimSun, STXihei, sans-serif;
}

.price-big {
  font-size: 2.4em;
}

.tab-fake {
  text-transform: uppercase;
  margin-bottom: 1em;
  border-bottom: 1px solid #959595;
}
.tab-fake span {
  display: inline-block;
  background-color: #fff;
  border-top: 1px solid #959595;
  border-left: 1px solid #959595;
  border-right: 1px solid #959595;
  margin-bottom: -1px;
  padding: 5px 10px;
}

@media (min-width: 768px) {
  .text-right-sm {
    text-align: right;
  }
}

#map {
  height: 400px;
}

.card {
  background-color: white;
  padding: 15px;
}

.alert {
  border-radius: 0;
  border: 0;
  display: flex;
  align-items: center;
}
.alert i {
  flex-shrink: 0;
  font-size: 1.5em;
  margin-right: 0.5em;
  line-height: 1em;
}
.alert:empty {
  display: none;
}
.alert .close {
  float: none;
  order: 99;
  margin-left: auto;
}

.rating {
  display: flex;
}
.rating i + i {
  margin-left: 0.2em;
}
.rating .full {
  color: #21f4bb;
}
.rating .empty {
  color: #261a17;
  opacity: 0.4;
}

.btn-deco {
  border: 1px solid #21f4bb;
  color: white;
  position: relative;
  font-size: 0.8em;
  padding: 1em 1.5em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}
.btn-deco::before, .btn-deco::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 3em;
  top: 50%;
  background-color: white;
}
.btn-deco::before {
  left: -2em;
}
.btn-deco::after {
  right: -2em;
}
.btn-deco:hover {
  background-color: #21f4bb;
  color: white;
}

.dust-overlay {
  display: none;
}
@media (min-width: 768px) {
  .dust-overlay {
    display: block;
    background: transparent url("/assets/images/dust-overlay.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    mix-blend-mode: screen;
  }
}

details summary::-webkit-details-marker {
  display: none;
}

.mdi::before {
  font-size: 1em;
}

@media (max-width: 991px) {
  .navbar-header {
    float: none;
  }

  .navbar-left,
.navbar-right {
    float: none !important;
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }

  .navbar-nav {
    float: none !important;
    margin: 7.5px 0 0;
  }
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 15px;
    font-size: 0.9em;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    padding: 0 15px;
    line-height: 2em;
  }

  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .collapse.in {
    display: block !important;
  }

  .navbar .container,
.navbar .container-fluid {
    padding: 0;
  }

  .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
    overflow-x: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: auto !important;
  }
}
.navbar {
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  font-size: 1.2em;
  background-color: #261a17;
  color: white;
  font-weight: 400;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.025);
}
@media (min-width: 992px) {
  .navbar {
    font-size: 0.9em;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 0;
  }
}
.navbar .container,
.navbar .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .navbar .container,
.navbar .container-fluid {
    display: flex;
    align-items: center;
  }
}
.navbar .container .navbar-header,
.navbar .container-fluid .navbar-header {
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .navbar .container .navbar-header,
.navbar .container-fluid .navbar-header {
    padding: 0;
    float: none;
    order: 1;
    flex: 2;
  }
}
.navbar .container .navbar-header .navbar-brand,
.navbar .container-fluid .navbar-header .navbar-brand {
  margin-left: 0;
  height: auto;
  padding: 0;
  height: 40px;
}
@media (min-width: 992px) {
  .navbar .container .navbar-header .navbar-brand,
.navbar .container-fluid .navbar-header .navbar-brand {
    width: 100%;
    height: 80px;
    min-width: 200px;
    padding: 0 30px 10px;
    margin-bottom: -40px;
    background-color: #261a17;
    z-index: 15;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.025);
  }
}
.navbar .container .navbar-header .navbar-brand > img,
.navbar .container-fluid .navbar-header .navbar-brand > img {
  height: 40px;
}
@media (min-width: 992px) {
  .navbar .container .navbar-header .navbar-brand > img,
.navbar .container-fluid .navbar-header .navbar-brand > img {
    height: 70px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .nav > li,
.navbar-nav > li {
    margin: 0 0;
  }
}
.nav > li > a,
.navbar-nav > li > a {
  padding: 0 15px;
  line-height: 40px;
}
@media (min-width: 992px) {
  .nav > li > a,
.navbar-nav > li > a {
    padding: 0 3vw;
    line-height: 40px;
  }
}
.nav > li > a .flag,
.navbar-nav > li > a .flag {
  height: 20px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .nav > li > a .flag,
.navbar-nav > li > a .flag {
    height: 20px;
  }
}
.nav > li .dropdown-menu,
.navbar-nav > li .dropdown-menu {
  margin-top: 5px;
}
@media (min-width: 992px) {
  .nav > li .dropdown-menu,
.navbar-nav > li .dropdown-menu {
    margin-top: 1px;
  }
}
.nav > li .dropdown-menu .flag,
.navbar-nav > li .dropdown-menu .flag {
  height: 20px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .nav > li .dropdown-menu .flag,
.navbar-nav > li .dropdown-menu .flag {
    height: 20px;
  }
}

.dropdown-menu > li > a,
.nav > li > a {
  transition: all 0.3s ease-in-out;
  color: white;
}
.dropdown-menu > li.active > a,
.nav > li.active > a {
  background-color: transparent;
  color: #21f4bb;
  position: relative;
}
@media (min-width: 992px) {
  .dropdown-menu > li.active > a:after,
.nav > li.active > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background-color: currentColor;
  }
}
.dropdown-menu > li.active > a:focus, .dropdown-menu > li.active > a:hover,
.dropdown-menu > li a:focus,
.dropdown-menu > li a:hover,
.nav > li.active > a:focus,
.nav > li.active > a:hover,
.nav > li a:focus,
.nav > li a:hover {
  background-color: transparent;
  color: #cebca5;
}
.dropdown-menu > li.open > a, .dropdown-menu > li.open > a:focus, .dropdown-menu > li.open > a:hover,
.nav > li.open > a,
.nav > li.open > a:focus,
.nav > li.open > a:hover {
  background-color: transparent;
  color: white;
}

.navbar-fixed-top .navbar-collapse {
  margin: 0;
  max-height: 300px;
}

.navbar-toggle {
  padding: 0;
  line-height: 40px;
  width: 40px;
  margin: 0;
  border-radius: 0;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.navbar-toggle:hover {
  background-color: #261a17;
  color: white;
}

.dropdown-menu {
  border: 0;
  padding: 0;
  border-radius: 0;
  font-size: 1em;
  margin-top: 0;
  background-color: #261a17;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.025);
}
@media (min-width: 992px) {
  .dropdown-menu {
    right: 0;
  }
}
.dropdown-menu > li > a {
  padding: 0 15px;
  line-height: 3em;
}
.dropdown-menu > li > a > i {
  width: 1em;
  margin-right: 0.5em;
  text-align: center;
}
.dropdown-menu .divider {
  margin: 0;
  background-color: #f0f0f0;
}

.call-action {
  float: right;
  margin-right: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.call-action > i {
  line-height: 40px;
}
@media (min-width: 992px) {
  .call-action {
    display: none;
  }
}
.call-action:hover {
  background-color: #261a17;
}
.call-action:hover > i {
  color: white;
}

.navbar-user {
  float: right;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  list-style: none;
  align-items: center;
  margin-bottom: 0;
}
.navbar-user > li {
  position: relative;
}
.navbar-user > li > a {
  display: block;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
  width: 40px;
}
@media (min-width: 992px) {
  .navbar-user > li > a {
    width: auto;
    padding: 0 15px;
    line-height: 40px;
  }
  .navbar-user > li > a > i {
    font-size: 1.7em;
    display: block;
  }
}

@media (min-width: 992px) {
  #navbar-menu {
    padding: 0 15px;
    clear: both;
    width: 100%;
    color: white;
    text-transform: uppercase;
    order: 0;
    flex: 10 0;
  }
  #navbar-menu li.store {
    position: static;
  }
  #navbar-menu .store-button {
    position: static;
  }
}

#navbar-functions {
  display: none;
}
@media (min-width: 992px) {
  #navbar-functions {
    padding: 0 15px;
    flex: 5 0;
    order: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-transform: uppercase;
  }
}

#global-search-form {
  display: flex;
  position: relative;
  /*********************  TYPEHEAD *************/
}
#global-search-form:after {
  content: "\F349";
  font-family: "Material Design Icons";
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
#global-search-form .typeahead {
  max-height: 255px;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  display: block;
  /* left: 0; */
  z-index: 1000;
  display: none;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #959595;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1333333333), 0 0 6px rgba(0, 0, 0, 0.0166666667);
}
#global-search-form .typeahead > li > a {
  padding: 0;
  color: #333;
  font-size: 11px;
}
@media (min-width: 768px) {
  #global-search-form .typeahead > li > a {
    font-size: 12px;
  }
}
#global-search-form .typeahead > li > a > .search-item-full {
  padding: 5px;
  width: 100%;
  display: flex;
}
#global-search-form .typeahead > li > a > .search-item-short {
  padding: 5px;
  width: 100%;
  display: flex;
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-img,
#global-search-form .typeahead > li > a .search-item-short > .search-item-img {
  width: 60px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  #global-search-form .typeahead > li > a .search-item-full > .search-item-img,
#global-search-form .typeahead > li > a .search-item-short > .search-item-img {
    width: 90px;
  }
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-view-all,
#global-search-form .typeahead > li > a .search-item-short > .search-item-view-all {
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  font-size: 1.1em;
  background: #f0f0f0;
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-view-all:hover,
#global-search-form .typeahead > li > a .search-item-short > .search-item-view-all:hover {
  background: #f0f0f0;
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-txt,
#global-search-form .typeahead > li > a .search-item-short > .search-item-txt {
  flex-grow: 1;
  margin: 0 10px;
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-input,
#global-search-form .typeahead > li > a .search-item-short > .search-item-input {
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-input input,
#global-search-form .typeahead > li > a .search-item-short > .search-item-input input {
  max-width: 50px;
  padding: 0.5em;
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-input button,
#global-search-form .typeahead > li > a .search-item-short > .search-item-input button {
  background: #2b669a;
}
#global-search-form .typeahead > li > a .search-item-full > .search-item-input button i,
#global-search-form .typeahead > li > a .search-item-short > .search-item-input button i {
  font-size: 1.5em;
}
#global-search-form .typeahead > li.active {
  background-color: #cebca5 !important;
  color: #000;
}
#global-search-form .typeahead-menu-right {
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  #global-search-form .typeahead-menu-right {
    left: auto;
    right: 0;
    min-width: 400px;
  }
}

#global-search {
  background-color: transparent;
  cursor: pointer;
  border: 0;
  padding-right: 2em;
  text-align: right;
  flex-grow: 1;
  width: 0;
  border-bottom: 1px solid #cebca5;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  #global-search {
    border-bottom: 1px solid transparent;
  }
  #global-search:focus {
    border-bottom: 1px solid #cebca5;
  }
}
#global-search::-webkit-input-placeholder {
  color: white;
  text-transform: uppercase;
}
#global-search:-ms-input-placeholder {
  color: white;
  text-transform: uppercase;
}
#global-search::-ms-input-placeholder {
  color: white;
  text-transform: uppercase;
}
#global-search::placeholder {
  color: white;
  text-transform: uppercase;
}

#btn-global-search {
  color: white;
  background-color: transparent;
  border: 0;
  font-size: 1.4em;
  color: white;
}

@media (min-width: 992px) {
  #navbar-search-container {
    order: 2;
    flex: 5 0;
  }
}
#navbar-search-container.in {
  overflow-y: visible !important;
}

#navbar-search {
  padding: 20px;
  flex-grow: 99;
}
@media (min-width: 992px) {
  #navbar-search {
    display: block;
    padding: 0 3vw;
  }
}

#navbar-cart a > i {
  color: #21f4bb;
}

.cart-count {
  display: block;
  position: absolute;
  background-color: #fff;
  color: #261a17;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-size: 1em;
  top: 15%;
  right: 5px;
}
.cart-count:empty {
  display: none;
}

label.required:after {
  content: "\F069";
  font-family: "Material Design Icons";
  margin-left: 0.5em;
  color: #cebca5;
  font-weight: 400;
}

.form-group {
  margin-bottom: 1em;
}

.form-control {
  width: 100%;
  height: 3em;
  padding: 0.75em 1em;
  font-size: 1em;
  line-height: 1.5em;
  color: #261a17;
  background-color: #fff;
  background-image: none;
  border: 1px solid #cebca5;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s;
}
.form-control:focus {
  border-color: #21f4bb;
  outline: 0;
  box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  color: #959595;
}
.form-control:-ms-input-placeholder {
  color: #959595;
}
.form-control::-ms-input-placeholder {
  color: #959595;
}
.form-control::placeholder {
  color: #959595;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control,
textarea.form-control {
  line-height: 1.5em;
}

textarea {
  resize: vertical;
}

.form-checkbox,
.form-radio {
  position: relative;
  line-height: 2em;
  display: flex;
  margin-bottom: 0.5em;
}
.form-checkbox::before,
.form-radio::before {
  content: "";
  position: absolute;
  width: 2em;
  height: 2em;
  top: 0;
  left: 0;
  background-color: #fff;
  pointer-events: none;
  border: 1px solid #cebca5;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}
.form-checkbox::after,
.form-radio::after {
  content: "\F00C";
  font-family: "Material Design Icons";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0em;
  left: 0;
  text-align: center;
  color: #261a17;
  font-size: 2em;
  pointer-events: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.form-checkbox:hover::before,
.form-radio:hover::before {
  border-color: #21f4bb;
}
.form-checkbox.checked:after,
.form-radio.checked:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.form-checkbox input[type=checkbox],
.form-checkbox input[type=radio],
.form-radio input[type=checkbox],
.form-radio input[type=radio] {
  opacity: 0;
  height: 2em;
  width: 2em;
  vertical-align: middle;
  margin: 0;
  margin-right: 0.5em;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox label,
.form-radio label {
  display: inline-block;
  margin-bottom: 0;
}

.form-radio::before {
  border-radius: 50%;
}
.form-radio::after {
  content: "\F111";
}

.form-ghost {
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 5px;
  box-sizing: content-box;
  resize: none;
  margin: -5px -5px 5px;
  background-color: transparent;
  transition: background-color 0.5s;
}
.form-ghost:focus {
  background-color: rgba(0, 0, 0, 0.05);
}

input.form-ghost.inline {
  width: 150px;
  margin: 0;
}
input.form-ghost.inline[type=number] {
  width: 50px;
}

.input-group input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

form .row {
  display: flex;
  flex-wrap: wrap;
}
form .row > div {
  margin-bottom: 15px;
}

.btn {
  font-weight: 600;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0.5em 1em;
  height: 3em;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}
.btn:visited {
  color: #261a17;
}
.btn:hover, .btn.focus, .btn:active, .btn:active:hover {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.btn.btn-icon {
  background-color: #cebca5;
  border-color: #cebca5;
  border: 0;
  color: #fff;
}
.btn.btn-sm {
  letter-spacing: 0;
  font-size: 0.8em;
  border-width: 1px;
}
.btn.btn-lg {
  font-size: 1.2em;
  border-width: 1px;
}
.btn.with-icon {
  margin: 4px;
  padding-left: 10px;
  padding-right: 10px;
  width: 39px;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

.btn-default,
a.btn-default {
  color: #261a17;
  border-color: transparent;
  background-color: transparent;
}
.btn-default:visited,
a.btn-default:visited {
  color: #261a17;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default:active:hover,
a.btn-default:hover,
a.btn-default:focus,
a.btn-default:active,
a.btn-default:active:hover {
  color: #261a17;
  border-color: #261a17;
  background: white;
}
.btn-default.disabled, .btn-default[disabled],
a.btn-default.disabled,
a.btn-default[disabled] {
  color: #261a17;
  border-color: transparent;
  background-color: transparent;
}

.btn-primary,
a.btn-primary {
  color: white;
  border-color: #261a17;
  background-color: #261a17;
}
.btn-primary:visited,
a.btn-primary:visited {
  color: white;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:hover,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary:active:hover {
  color: #261a17;
  border-color: #261a17;
  background-color: white;
}
.btn-primary.disabled, .btn-primary[disabled],
a.btn-primary.disabled,
a.btn-primary[disabled] {
  color: white;
  border-color: #261a17;
  background-color: #855b51;
}

.btn-secondary,
a.btn-secondary {
  color: white;
  border-color: #cebca5;
  background-color: #cebca5;
}
.btn-secondary:visited,
a.btn-secondary:visited {
  color: white;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:active:hover,
a.btn-secondary:hover,
a.btn-secondary:focus,
a.btn-secondary:active,
a.btn-secondary:active:hover {
  color: #cebca5;
  border-color: #cebca5;
  background-color: white;
}
.btn-secondary.disabled, .btn-secondary[disabled],
a.btn-secondary.disabled,
a.btn-secondary[disabled] {
  color: white;
  border-color: #cebca5;
  background-color: white;
}

.btn-accent,
a.btn-accent {
  color: white;
  border-color: #21f4bb;
  background-color: #21f4bb;
}
.btn-accent:visited,
a.btn-accent:visited {
  color: white;
}
.btn-accent:hover, .btn-accent:focus, .btn-accent:active, .btn-accent:active:hover,
a.btn-accent:hover,
a.btn-accent:focus,
a.btn-accent:active,
a.btn-accent:active:hover {
  color: #21f4bb;
  border-color: #21f4bb;
  background-color: white;
}
.btn-accent.disabled, .btn-accent[disabled],
a.btn-accent.disabled,
a.btn-accent[disabled] {
  color: white;
  border-color: #21f4bb;
  background-color: #b3fbe8;
}

.input-group-btn {
  position: relative;
  font-size: 1em;
  white-space: nowrap;
}

.tabStyle1 {
  border: 0px solid #c1c1c1;
}
.tabStyle1 .nav-tabs {
  border-bottom: 1px solid #c1c1c1;
  font-size: 1.5rem;
}
.tabStyle1 .nav-tabs li a {
  color: #747474;
  border-radius: 0px;
  border: 0px;
  font-family: Arial, sans-serif;
  margin: 0px;
  padding: 13px 23px;
}
.tabStyle1 .nav-tabs li.active a {
  background-color: #928c8b;
  border: 0px;
  color: #ffffff;
}
.tabStyle1 .tab-content .tab-pane {
  color: #747474;
  font-size: 1.7rem;
  font-family: Arial, sans-serif;
  padding: 60px 65px;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding: 15px 0;
  margin-bottom: 0;
}
.breadcrumb li + li:before {
  content: "\F142";
  padding: 0;
  font-family: "Material Design Icons";
  color: inherit;
  font-size: 1.2em;
  font-weight: 400;
}
.breadcrumb li.active {
  color: #959595;
}
.breadcrumb li.active:before {
  color: #959595;
}

/***********  PAGER  ******************/
.pagination > li > a,
.pagination > li > span {
  color: #261a17;
  border: 0;
  padding: 0 10px;
  line-height: 2.5em;
  min-width: 2.5em;
  margin-left: 0;
  text-align: center;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  background-color: rgba(206, 188, 165, 0.25);
  color: #261a17;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span, .pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}
.pagination .active > a,
.pagination .active > a:hover,
.pagination .active > a:focus,
.pagination .active > span,
.pagination .active > span:hover,
.pagination .active > span:focus {
  background-color: #261a17;
  color: white;
}

#product-menu {
  width: 100%;
  color: white;
  background-color: #261a17;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  padding: 10px;
  text-transform: uppercase;
  font-weight: 400;
  z-index: 10;
  margin-top: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.025);
}
#product-menu ul {
  list-style: none;
  padding: 0;
}
#product-menu ul li a {
  display: block;
  padding: 0.5em 1em;
}
@media (min-width: 992px) {
  #product-menu {
    padding: 40px 50px;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  #product-menu {
    display: none !important;
  }
}

@media (min-width: 992px) {
  #product-menu-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .wrapper {
    display: flex;
    max-height: 55vh;
  }
  .wrapper .left {
    flex: 1;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #cebca5;
    overflow-y: auto;
  }
  .wrapper .right {
    flex: 3;
    overflow-y: auto;
  }
}
@media (min-width: 992px) {
  .wrapper .right {
    flex: 4;
  }
}

#menu-brands {
  color: #cebca5;
}
@media (min-width: 768px) {
  #menu-brands ul {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    -webkit-columns: 3;
            columns: 3;
  }
}
@media (min-width: 992px) {
  #menu-brands ul {
    -webkit-columns: 4;
            columns: 4;
  }
}

#menu-categories {
  color: #cebca5;
}
@media (min-width: 768px) {
  #menu-categories .right {
    flex: 2;
  }
}
@media (min-width: 992px) {
  #menu-categories .right {
    flex: 3;
  }
}

.product-menu-category,
.product-menu-group {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.product-menu-category:before,
.product-menu-group:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.product-menu-category.active, .product-menu-category:hover,
.product-menu-group.active,
.product-menu-group:hover {
  color: #21f4bb !important;
}
.product-menu-category.active, .product-menu-category:focus,
.product-menu-group.active,
.product-menu-group:focus {
  background-color: rgba(206, 188, 165, 0.2) !important;
}
.product-menu-category.active:before, .product-menu-category:focus:before,
.product-menu-group.active:before,
.product-menu-group:focus:before {
  background-color: currentColor;
}

.product-menu-group-items {
  display: none;
}

.product-menu-category-items {
  display: none;
  height: 100%;
}
.product-menu-category-items ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}
.product-menu-category-items ul li {
  width: 100%;
}
@media (min-width: 768px) {
  .product-menu-category-items ul li {
    width: 50%;
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .product-menu-category-items ul li {
    width: 33.333333%;
  }
}

.product-menu-category-items > ul > li > a,
.product-menu-group-items > ul > li > a {
  transition: all 0.3s ease-in-out;
}
.product-menu-category-items > ul > li > a:hover,
.product-menu-group-items > ul > li > a:hover {
  color: #21f4bb !important;
}

.product-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  transition: box-shadow 0.3s, background-color 0.3s;
  font-size: 0.9em;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.product-item:before, .product-item:after {
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  left: 0;
  right: 0;
  top: 20px;
  bottom: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.product-item::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  border-left: 1px solid #21f4bb;
  border-right: 1px solid #21f4bb;
}
.product-item::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-top: 1px solid #21f4bb;
  border-bottom: 1px solid #21f4bb;
}
.product-item > .image {
  padding: 10% 15%;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.product-item > .image:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #261a17;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.product-item > .image img {
  position: relative;
}
@media (min-width: 768px) {
  .product-item > .image {
    padding: 15% 20% 5%;
  }
}
.product-item > .image .label {
  position: absolute;
  font-weight: 400;
  bottom: 30%;
  margin-bottom: 0.2em;
}
.product-item > .image .label.label-new {
  left: 0;
  margin-left: 0.4em;
}
.product-item > .image .label.label-promo {
  right: 0;
  margin-right: 0.4em;
}
.product-item > .content {
  padding: 0 1em 1em;
  line-height: 1.1;
  flex-grow: 1;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .product-item > .content {
    padding: 0 2em 2em;
  }
}
.product-item > .content > .title {
  font-size: 1.25em;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.product-item > .content > .promo {
  color: #261a17;
  margin-top: auto;
  border-top: 1px solid #3f93e6;
  border-bottom: 1px solid #3f93e6;
  background-color: white;
  padding: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 768px) {
  .product-item > .content > .promo {
    font-size: 0.8em;
  }
}
.product-item > .buy {
  padding: 0 1em 1em;
  text-align: center;
}
@media (min-width: 768px) {
  .product-item > .buy {
    padding: 0 2em 2em;
  }
}
.product-item > .buy .price {
  font-weight: 500;
  margin: 0;
}
.product-item > .buy .price > span {
  display: inline-block;
}
.product-item > .buy .price > span.promo {
  color: #3f93e6;
  margin-right: 0.5em;
}
.product-item > .buy .price > span.regular {
  position: relative;
  font-weight: 400;
}
.product-item > .buy .price > span.regular:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #261a17;
}
.product-item.full-height {
  height: 100%;
}
.product-item:hover::before, .product-item:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.product-item-medium {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s, background-color 0.3s;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.product-item-medium > .image {
  background-color: #fff;
  padding: 1em 2em;
  position: relative;
  width: 100%;
}
.product-item-medium > .image .label {
  position: absolute;
  font-weight: 400;
  bottom: 0;
  margin-bottom: 0.2em;
}
.product-item-medium > .image .label.label-new {
  left: 0;
  margin-left: 0.4em;
}
.product-item-medium > .image .label.label-promo {
  right: 0;
  margin-right: 0.4em;
}
.product-item-medium > .details {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-item-medium > .details::before, .product-item-medium > .details::after {
  content: "";
  position: absolute;
  display: block;
  top: 1em;
  bottom: 1em;
  width: 0.5px;
  background-color: #cebca5;
}
.product-item-medium > .details::before {
  left: 0;
}
.product-item-medium > .details::after {
  right: 0;
}
@media (min-width: 768px) {
  .product-item-medium > .details::before, .product-item-medium > .details::after {
    content: "";
    position: absolute;
    display: block;
    top: 2em;
    bottom: 2em;
    width: 0.5px;
    background-color: #cebca5;
  }
}
.product-item-medium > .details > .content {
  padding: 1em;
  line-height: 1.1;
  flex-grow: 1;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .product-item-medium > .details > .content {
    padding: 2em;
  }
}
.product-item-medium > .details > .content > .title {
  font-size: 1.25em;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.product-item-medium > .details > .content > .promo {
  color: #261a17;
  margin-top: auto;
  border-top: 1px solid #3f93e6;
  border-bottom: 1px solid #3f93e6;
  background-color: white;
  padding: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 768px) {
  .product-item-medium > .details > .content > .promo {
    font-size: 0.8em;
  }
}
.product-item-medium > .details > .buy {
  padding: 0 1em 1em;
  text-align: center;
}
@media (min-width: 768px) {
  .product-item-medium > .details > .buy {
    padding: 0 2em 2em;
  }
}
.product-item-medium > .details > .buy .price {
  font-weight: 500;
  margin: 0;
}
.product-item-medium > .details > .buy .price > span {
  display: inline-block;
}
.product-item-medium > .details > .buy .price > span.promo {
  color: #3f93e6;
  margin-right: 0.5em;
}
.product-item-medium > .details > .buy .price > span.regular {
  position: relative;
  font-weight: 400;
}
.product-item-medium > .details > .buy .price > span.regular:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #261a17;
}
.product-item-medium.full-height {
  height: 100%;
}
.product-item-medium:hover::before, .product-item-medium:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.product-item-small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #f0f0f0;
  background-color: #fff;
  transition: box-shadow 0.3s, background-color 0.3s;
  font-size: 0.9em;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.product-item-small > .image {
  padding: 10px;
  background-color: white;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .product-item-small > .image {
    padding: 20px;
  }
}
.product-item-small > .image .tags {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .product-item-small > .image .tags {
    top: 20px;
    right: 20px;
  }
}
.product-item-small > .image .tags .tag {
  margin-bottom: 10px;
}
.product-item-small > .content {
  padding: 0 10px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .product-item-small > .content {
    padding: 0 15px 15px;
  }
}
.product-item-small > .content > .code {
  transition: all 0.3s ease-in-out;
}
.product-item-small > .content > .title {
  font-weight: 600;
  color: #261a17;
  letter-spacing: 0;
  word-break: break-word;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0.3em;
}
.product-item-small > .content > .title .full {
  display: none;
}
.product-item-small > .content > .description {
  display: none;
}
.product-item-small > .content > .promo {
  color: #261a17;
  margin-top: auto;
  border-top: 1px solid #3f93e6;
  border-bottom: 1px solid #3f93e6;
  background-color: white;
  padding: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 768px) {
  .product-item-small > .content > .promo {
    font-size: 0.8em;
  }
}
.product-item-small > .buy {
  display: flex;
  padding: 0 10px 10px;
  align-items: center;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .product-item-small > .buy {
    padding: 0 15px 15px;
  }
}
.product-item-small > .buy .price {
  font-size: 1.1em;
  font-weight: 600;
  margin: 0;
}
.product-item-small > .buy .price > span {
  display: inline-block;
}
.product-item-small > .buy .price > span.promo {
  color: #3f93e6;
  margin-right: 0.5em;
}
.product-item-small > .buy .price > span.regular {
  position: relative;
  font-weight: 400;
}
.product-item-small > .buy .price > span.regular:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #261a17;
}
.product-item-small > .buy .button {
  color: white;
  background-color: #cebca5;
  text-transform: uppercase;
  border-radius: 128px;
  height: 2em;
  font-size: 0.9em;
  padding: 0.5em;
  line-height: 1em;
  text-align: center;
  margin-left: auto;
  opacity: 0;
  flex-shrink: 0;
  display: block;
  transition: all 0.3s ease-in-out;
}
.product-item-small.full-height {
  height: 100%;
}
.product-item-small:hover {
  border-color: #261a17;
}
.product-item-small:hover .content .title {
  color: #cebca5;
}
.product-item-small:hover .content .code {
  color: #cebca5;
}
@media (min-width: 768px) {
  .product-item-small:hover .buy .button {
    opacity: 1;
  }
}

.products-horizontal .product-item-small {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (min-width: 768px) {
  .products-horizontal .product-item-small {
    flex-wrap: nowrap;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .products-horizontal .product-item-small {
    height: auto;
  }
}
.products-horizontal .product-item-small .image {
  padding: 15px 20px;
  background-color: transparent;
  position: relative;
  width: 30%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .products-horizontal .product-item-small .image {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .products-horizontal .product-item-small .image {
    width: 20%;
  }
}
.products-horizontal .product-item-small .image img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.025);
  padding: 10px;
  background-color: white;
}
.products-horizontal .product-item-small .content {
  padding: 10px;
  width: 70%;
  border-top: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .products-horizontal .product-item-small .content {
    width: auto;
  }
}
.products-horizontal .product-item-small .content > .title .short {
  display: none;
}
.products-horizontal .product-item-small .content > .title .full {
  display: block;
}
.products-horizontal .product-item-small .content > .code {
  display: block;
  margin-bottom: 0.3em;
  transition: all 0.3s ease-in-out;
}
.products-horizontal .product-item-small .content > .description {
  display: block;
}
.products-horizontal .product-item-small .content > .promo {
  width: 100%;
  margin: 0;
  border: 1px solid #3f93e6;
}
.products-horizontal .product-item-small .buy {
  width: 100%;
  margin-top: unset;
  margin-left: auto;
}
@media (min-width: 768px) {
  .products-horizontal .product-item-small .buy {
    display: block;
    width: auto;
  }
}
.products-horizontal .product-item-small .buy .button {
  margin-top: 10px;
  position: static;
  opacity: 1;
}
.products-horizontal .product-item-small .buy .button i {
  font-size: 1.5em;
  margin-left: 0.5em;
  display: inline-block;
}
.products-horizontal .product-item-small:hover {
  box-shadow: 0;
}
.products-horizontal .product-item-small:hover .content .title {
  color: initial;
}
.products-horizontal .product-item-small:hover .content .code {
  margin-bottom: 0.3em;
  color: initial;
}
.products-horizontal .product-item-small:hover .content .description {
  color: initial;
}
.products-horizontal .product-item-small:hover .buy .price {
  opacity: 1;
}
@media (min-width: 768px) {
  .products-horizontal .product-item-small:hover .buy {
    display: block;
  }
}

.product-carousel-title {
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  font-size: 1.75em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1em;
}

.product-carousel .owl-stage {
  display: flex;
}
.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
  position: absolute;
  font-size: 2em;
  color: white;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
}
.product-carousel .owl-nav .owl-prev {
  left: 5px;
}
.product-carousel .owl-nav .owl-next {
  right: 5px;
}
.product-carousel .product-item {
  height: 100%;
}

.product-carousel-medium {
  background-color: #f0f0f0;
  padding-bottom: 40px;
}
.product-carousel-medium .owl-stage {
  display: flex;
}
.product-carousel-medium .owl-nav .owl-prev,
.product-carousel-medium .owl-nav .owl-next {
  position: absolute;
  font-size: 2em;
  color: white;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
}
.product-carousel-medium .owl-nav .owl-prev {
  left: 5px;
}
.product-carousel-medium .owl-nav .owl-next {
  right: 5px;
}
.product-carousel-medium .product-item {
  height: 100%;
}

.product-carousel-small .owl-stage {
  display: flex;
}
.product-carousel-small .owl-nav .owl-prev,
.product-carousel-small .owl-nav .owl-next {
  position: absolute;
  font-size: 1em;
  color: white;
  background-color: #261a17;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.product-carousel-small .owl-nav .owl-prev:hover,
.product-carousel-small .owl-nav .owl-next:hover {
  background-color: #cebca5;
}
.product-carousel-small .owl-nav .owl-prev {
  left: 5px;
}
.product-carousel-small .owl-nav .owl-next {
  right: 5px;
}
.product-carousel-small .product-item {
  height: 100%;
}

#product-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}
#product-list > div {
  padding-left: 0;
  padding-right: 0;
}

.news-carousel .owl-stage {
  display: flex;
}
.news-carousel .news-item {
  height: 100%;
}

.news-item {
  background-color: black;
}
@media (min-width: 768px) {
  .news-item {
    position: relative;
  }
}
.news-item .dust-overlay {
  display: none;
}
@media (min-width: 768px) {
  .news-item .dust-overlay {
    display: block;
  }
}
.news-item .caption {
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 2em;
}
.news-item .caption .title {
  line-height: 1em;
  font-size: 2em;
  font-family: "Abril Fatface", Tahoma, SimSun, STXihei, sans-serif;
}
.news-item .caption .subtitle {
  line-height: 1em;
  margin-top: 1em;
  font-size: 1.25em;
  text-transform: uppercase;
}
.news-item .caption .link {
  margin-top: 3em;
}
@media (min-width: 768px) {
  .news-item .caption {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    text-shadow: 0 0 20px black;
    padding-bottom: 4em;
  }
  .news-item .caption .title {
    font-size: 4em;
  }
  .news-item .caption .subtitle {
    font-size: 1.75em;
  }
  .news-item .caption .link {
    margin-top: 3em;
  }
}

.social-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  font-size: 1.5em;
}
.social-list > li i {
  border-radius: 128px;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  display: block;
  color: white;
  border: 0;
  background-color: black;
  transition: all 0.3s ease-in-out;
}
.social-list > li i:hover {
  color: #261a17;
  background-color: #21f4bb;
}
.social-list > li + li {
  margin-left: 0.5em;
}

.tag {
  position: relative;
  color: white;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  height: 2em;
  padding: 0.5em;
  text-align: center;
  border-radius: 128px;
  font-size: 0.8em;
}
@media (min-width: 768px) {
  .tag {
    font-size: 1em;
  }
}
.tag.tag-low-stock {
  background-color: #e6bc3f;
  border-color: #e6bc3f;
}
.tag.tag-out-of-stock {
  background-color: #e63f3f;
  border-color: #e63f3f;
}
.tag.tag-new {
  background-color: #21f4bb;
  border-color: #21f4bb;
}
.tag.tag-promo {
  background-color: #3f93e6;
  border-color: #3f93e6;
}

.label {
  font-family: "Satisfy";
  line-height: 2em;
  font-size: 2em;
  line-height: 1em;
  padding: 0;
}
@media (min-width: 768px) {
  .label {
    font-size: 3em;
  }
}
.label.label-new {
  color: #21f4bb;
}
.label.label-promo {
  color: #3f93e6;
}

#form-newsletter {
  color: #959595;
}

#newsletter_email {
  background-color: transparent;
  color: white;
}

#btn-newsletter-subscribe i {
  font-size: 1.5em;
}

.threesixty {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.threesixty .threesixty_images {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.threesixty .threesixty_images img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}

.threesixty .threesixty_images img.previous-image {
  visibility: hidden;
  /*
           Do not put here any other styles.
           It causes massive recalc / repaints and image flickering,
           especially on Firefox.
        */
}

.threesixty .threesixty_images img.current-image {
  visibility: visible;
  /*
           Do not put here any other styles.
           It causes massive recalc / repaints and image flickering,
           especially on Firefox.
        */
}

.threesixty .spinner {
  width: 60px;
  display: block;
  margin: 0 auto;
  height: 30px;
  background: #333;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
}

.threesixty .spinner span {
  font-family: Arial, "MS Trebuchet", sans-serif;
  font-size: 12px;
  font-weight: bolder;
  color: #FFF;
  text-align: center;
  line-height: 30px;
  display: block;
}

.threesixty .nav_bar {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
}

.threesixty .nav_bar a {
  display: block;
  width: 32px;
  height: 32px;
  float: left;
  background: url(/assets/sprites.png) no-repeat;
  text-indent: -99999px;
}

.threesixty .nav_bar a.nav_bar_play {
  background-position: 0 0 !important;
}

.threesixty .nav_bar a.nav_bar_previous {
  background-position: 0 -73px !important;
}

.threesixty .nav_bar a.nav_bar_stop {
  background-position: 0 -37px !important;
}

.threesixty .nav_bar a.nav_bar_next {
  background-position: 0 -104px !important;
}

/* html */
.threesixty:-webkit-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}

.threesixty:-moz-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}

#turntable-navigation {
  display: flex;
  justify-content: center;
  font-size: 2em;
}
#turntable-navigation > * {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

#coupon-verify-icon {
  position: absolute;
  top: 50%;
  right: 0.5em;
  font-size: 2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#newsletter-modal {
  color: #261a17;
  text-align: center;
  width: 900px;
  max-width: 90%;
  max-height: 80%;
  padding: 0px;
}
@media (min-width: 992px) {
  #newsletter-modal {
    padding: 35px;
  }
}

#home-carousel {
  background-color: black;
  /*
  .owl-nav {
  	color: $color-primary;
  	font-size: 4em;
  	.owl-prev,
  	.owl-next {
  		position: absolute;
  		top: 50%;
  		transform: translateY(-50%);
  		width: 1em;
  		height: 1em;
  		line-height: 1em;
  		text-align: center;
  	}
  	.owl-prev {left: 0;}
  	.owl-next {right: 0;}
  }
  */
}
@media (min-width: 768px) {
  #home-carousel .item {
    position: relative;
  }
}
#home-carousel .item .dust-overlay {
  display: none;
}
@media (min-width: 768px) {
  #home-carousel .item .dust-overlay {
    display: block;
  }
}
#home-carousel .item .caption {
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2em;
}
#home-carousel .item .caption .intro {
  line-height: 1em;
  font-size: 1.2em;
  font-weight: 200;
  text-transform: uppercase;
}
#home-carousel .item .caption .title {
  line-height: 1em;
  font-size: 3em;
  font-family: "Abril Fatface", Tahoma, SimSun, STXihei, sans-serif;
}
#home-carousel .item .caption .description {
  line-height: 1em;
  font-size: 1.5em;
  margin-top: 1em;
}
#home-carousel .item .caption .link {
  margin-top: 3em;
}
@media (min-width: 768px) {
  #home-carousel .item .caption {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
  #home-carousel .item .caption .intro {
    text-shadow: 0 0 0.5em black;
    position: relative;
    font-size: 3em;
  }
  #home-carousel .item .caption .title {
    font-size: 5.75em;
    text-shadow: 0 0 0.5em black;
  }
  #home-carousel .item .caption .description {
    font-size: 2.3em;
    text-shadow: 0 0 0.5em black;
  }
  #home-carousel .item .caption .link {
    margin-top: 3em;
  }
}
#home-carousel .owl-dots {
  display: none;
}
@media (min-width: 768px) {
  #home-carousel .owl-dots {
    position: absolute;
    z-index: 3;
    font-size: 2em;
    bottom: 1em;
    left: 3em;
    display: flex;
  }
}
#home-carousel .owl-dots .owl-dot {
  margin-right: 0.3em;
  color: #f0f0f0;
  transition: all 0.3s ease-in-out;
}
#home-carousel .owl-dots .owl-dot.active {
  color: #21f4bb;
}
#home-carousel .owl-dots .owl-dot:before {
  content: "\F176";
  font-family: "Material Design Icons";
}

@media (min-width: 768px) {
  #home-products-highlight {
    padding: 100px 0;
  }
}
#home-products-highlight h3 {
  text-transform: uppercase;
  text-align: center;
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  margin-bottom: 1em;
}

#home-news {
  padding: 0;
}

#home-stories {
  background: #d6cabb url("/assets/images/fabric.jpg") repeat center center;
  padding: 100px 0;
}
#home-stories h4 {
  text-align: center;
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  text-transform: uppercase;
  margin-bottom: 2em;
}
#home-stories .stories-list {
  display: flex;
  flex-wrap: wrap;
  margin: -3px;
}
#home-stories .stories-list .story {
  padding: 3px;
  width: 50%;
  position: relative;
}
@media (min-width: 768px) {
  #home-stories .stories-list .story {
    width: 33.333333%;
  }
  #home-stories .stories-list .story:nth-child(10) {
    display: none;
  }
}
@media (min-width: 992px) {
  #home-stories .stories-list .story {
    width: 25%;
  }
  #home-stories .stories-list .story:nth-child(9) {
    display: none;
  }
}
@media (min-width: 1200px) {
  #home-stories .stories-list .story {
    width: 20%;
  }
  #home-stories .stories-list .story:nth-child(10) {
    display: block;
  }
  #home-stories .stories-list .story:nth-child(9) {
    display: block;
  }
}
#home-stories .stories-list .story .overlay {
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.45);
  font-weight: 300;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  #home-stories .stories-list .story .overlay {
    top: 3px;
    font-size: 2em;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
}
#home-stories .stories-list .story .overlay i {
  font-size: 1.5em;
  margin-left: 0.2em;
  color: #21f4bb;
}
#home-stories .stories-list .story img {
  width: 100%;
}
@media (min-width: 992px) {
  #home-stories .stories-list .story:hover .overlay {
    opacity: 1;
  }
}

#home-brands {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  #home-brands {
    flex-wrap: nowrap;
  }
}
#home-brands .brand {
  display: flex;
  flex-direction: column;
  max-width: 33%;
}
@media (min-width: 768px) {
  #home-brands .brand {
    max-width: auto;
  }
}
#home-brands .brand > .logo {
  margin-top: auto;
  margin-bottom: auto;
  padding: 10px;
}
#home-brands .brand > .logo img {
  display: block;
  width: 100%;
  max-width: 400px;
  max-height: 150px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
#home-brands .brand > .name {
  border-top: 1px solid #f0f0f0;
  position: relative;
  padding: 10px;
}
#home-brands .brand > .name:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  background-color: #261a17;
  display: block;
  transition: all 0.3s ease-in-out;
}
#home-brands .brand > .name h5 {
  text-align: center;
  margin: 0;
  opacity: 0;
  font-size: 0.9em;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
#home-brands .brand:hover > .logo img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
#home-brands .brand:hover > .name:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
#home-brands .brand:hover > .name h5 {
  opacity: 1;
}

#home-banners > .row {
  display: flex;
  flex-wrap: wrap;
}
#home-banners > .row > div {
  margin-bottom: 30px;
}
#home-banners img {
  display: block;
  max-width: 100%;
  border: 1px solid #f0f0f0;
}

.content .title {
  color: #261a17;
}
.content .text {
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
}
.content .text strong {
  color: #000000;
}

.events > .row {
  display: flex;
  flex-wrap: wrap;
}
.events article {
  margin-bottom: 30px;
  position: relative;
}
.events .headTitle {
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  color: #cebca5;
  font-size: 1.3rem;
  font-weight: 400;
}
.events .title {
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  height: 30px;
}
.events .list-info {
  font-size: 1.2rem;
  color: #959595;
}
.events .image {
  margin-bottom: 0.5em;
}
.events hr {
  border-top: 1px solid #f0f0f0;
  margin: 0.5em 0;
}
.events .text {
  font-family: Arial;
  font-size: 1.3rem;
  line-height: 23px;
  height: 135px;
}
.events .read-more {
  display: inline-block;
  padding: 4px 10px;
  text-transform: uppercase;
  color: black;
  border: 1px solid black;
  background-color: white;
  transition: background-color 0.3s, color 0.3s;
}
.events .read-more:hover {
  color: white;
  background-color: black;
}
.events .first .first-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.events .first .first-caption {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
}

.event-single {
  margin-bottom: 2em;
}
.event-single .headTitle {
  color: #cebca5;
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  font-weight: 400;
  position: relative;
}
.event-single .title {
  margin-top: 0;
}
.event-single .list-info {
  color: #959595;
}
.event-single .image {
  margin-bottom: 1em;
}
.event-single hr {
  border-top: 1px solid #ccc;
}
.event-single .text {
  font-family: Arial;
  font-size: 1.6rem;
  line-height: 23px;
}
.event-single .text img {
  margin-bottom: 15px;
}
.event-single .text img[style="float: left;"] {
  margin-right: 15px;
}
.event-single .text img[style="float: right;"] {
  margin-left: 15px;
}
.event-single #news-sharer {
  position: relative;
}
.event-single #news-sharer .share-links {
  padding-left: 15px;
  display: inline-block;
  background-color: white;
}
.event-single #news-sharer .share-links:after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  right: 0;
  z-index: -1;
  height: 13px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAYAAAB8OZQwAAAANUlEQVQIma2MuQ0AMBCD2H+lW8GzsMKliZSnSBVKCwwTtauq2UnS6hp/WgC3pTa3leSsnv8D9WZGuoY/40QAAAAASUVORK5CYII=);
}

.sidebar {
  background-color: #f3f3f3;
}
.sidebar form {
  position: relative;
}
.sidebar form input {
  display: block;
  padding: 10px 40px 10px 10px;
  height: auto;
  color: #746d6b;
  border: 1px solid #746d6b;
  background-color: #fafafa;
  width: 100%;
}
.sidebar form i {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #6a6a69;
}
.sidebar .borderBottom {
  border-bottom: 5px solid #261a17;
  display: inline-block;
}
.sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-transform: uppercase;
  font-size: 1.3em;
}
.sidebar ul li {
  background-color: #e1e2e3;
  padding: 10px 15px;
  margin-bottom: 1px;
}
.sidebar ul li.active {
  background-color: #cebca5;
}
.sidebar ul li.active a {
  color: white;
}
.sidebar article {
  border-bottom: 1px solid #bdc0c3;
}
.sidebar article:last-child {
  border-bottom: none;
}
.sidebar article .postTitle {
  color: #261a17;
  font-size: 1.3rem;
}
.sidebar article .date {
  color: #a7a7a7;
  font-family: Arial, sans-serif;
  font-size: 1.3rem;
}
.sidebar hr {
  border-top: 1px solid #261a17;
  margin: -11px 0 35px 0;
}
.sidebar #datepicker .datepicker-inline {
  width: 100%;
}
.sidebar #datepicker .datepicker-inline table {
  width: 100%;
}
.sidebar #datepicker .datepicker-inline table td,
.sidebar #datepicker .datepicker-inline table th {
  border-radius: 0px;
}
.sidebar #datepicker .datepicker-inline table td.today,
.sidebar #datepicker .datepicker-inline table td.active {
  background: #013a72;
  color: #ffffff;
}

.storeFilters {
  background-color: #f0f3f7;
}
.storeFilters .title {
  font-size: 2.2rem;
  margin: 6px 0 0 0;
}
.storeFilters .title small {
  color: #261a17;
  font-size: 1.4rem;
  font-family: Arial, sans-serif;
  text-transform: initial;
  vertical-align: super;
}
.storeFilters select.style1 {
  background-color: #ffffff;
  background-image: url("data:image/jpeg;base64,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");
  background-repeat: no-repeat;
  background-position: center right;
  border: 1px solid #c1c1c1;
  border-right: 0px;
  border-radius: 0px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 37px;
  width: 100%;
}

.productList {
  border: 1px solid #c1c1c1;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.productList .information {
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.productList .information .title {
  color: #261a17;
  font-size: 1.5rem;
  margin-bottom: 5px;
  min-height: 2.2em;
}
.productList .information .product_caption {
  min-height: 90px;
}
.productList .information small {
  min-height: 2.2em;
  display: inline-block;
}
.productList .information .description,
.productList .information .code {
  color: #747474;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
}
.productList .information .addToCart {
  margin-top: -34px;
  display: none;
}
.productList .information .addToCart .stock-unavailable {
  background-color: red;
  color: white;
}
.productList:hover, .productList:focus, .productList:active {
  border: 1px solid #261a17;
}
.productList:hover .information, .productList:focus .information, .productList:active .information {
  background-color: #f1f1f1;
}
.productList:hover .addToCart, .productList:focus .addToCart, .productList:active .addToCart {
  display: block;
}

.searchlist {
  border: 1px solid #c1c1c1;
  padding: 10px;
  position: relative;
}
.searchlist .image {
  margin-bottom: 10px;
}
.searchlist .information {
  min-height: 120px;
}
.searchlist:hover, .searchlist:focus, .searchlist:active {
  border: 1px solid #261a17;
}

.new-tag,
.sale-tag,
.oos-tag,
.restock-tag, .stock-tag {
  position: absolute;
  color: white;
  line-height: 3rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  width: 120px;
  text-align: center;
  text-transform: uppercase;
}

.new-tag {
  top: 4px;
  left: 4px;
  background-color: rgba(255, 255, 255, 0.8);
}

.stock-tag {
  top: 4px;
  left: 4px;
  background-color: rgba(255, 255, 255, 0.8);
}

.sale-tag {
  top: 4px;
  right: 4px;
  background-color: rgba(255, 255, 255, 0.8);
}

.oos-tag,
.restock-tag {
  bottom: 4px;
  right: 4px;
}

#product-main > .container-fluid > .row,
#product-main > .container > .row {
  position: relative;
}
@media (min-width: 992px) {
  #product-main > .container-fluid > .row,
#product-main > .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
#product-main > .container-fluid > .row > div + div,
#product-main > .container > .row > div + div {
  margin-top: 30px;
}
@media (min-width: 768px) {
  #product-main > .container-fluid > .row > div + div,
#product-main > .container > .row > div + div {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  #product-main {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #product-main:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    background: #f5f2ec url("/assets/images/dust-overlay.png") no-repeat center center;
    background-size: cover;
    background-blend-mode: screen;
  }
  #product-main > .container > .row {
    margin-left: -50px;
    margin-right: -50px;
  }
  #product-main > .container > .row > div {
    padding-left: 50px;
    padding-right: 50px;
  }
}
#product-main .breadcrumb {
  padding: 0;
  font-size: 0.8em;
}
@media (min-width: 992px) {
  #product-main .breadcrumb {
    font-size: 0.95em;
  }
}
#product-main h1 {
  font-size: 1.7em;
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  color: inherit;
  margin: 0.5em 0;
}
@media (min-width: 992px) {
  #product-main h1 {
    font-size: 2.1em;
  }
}
#product-main h2 {
  font-size: 1.2em;
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
}
@media (min-width: 768px) {
  #product-main h2 {
    font-size: 1.5em;
  }
}
#product-main .code {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
#product-main .brand {
  margin-bottom: 0.5em;
}
#product-main .brand > mark {
  color: #21f4bb;
  font-weight: 700;
}
#product-main .price {
  margin-top: 1em;
}
#product-main .price .full {
  font-size: 1.75em;
  display: inline-block;
}
#product-main .price .iva {
  font-size: 0.9em;
  display: inline-block;
}
#product-main .price .promo {
  font-size: 1.75em;
  color: #3f93e6;
}
#product-main .price.has-promo .full {
  font-size: 1em;
  position: relative;
  font-weight: 400;
}
#product-main .price.has-promo .full:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: currentColor;
}
#product-main .price .description {
  font-size: 0.8em;
}
#product-main .quantity {
  display: flex;
  align-items: flex-end;
  margin-top: 1em;
}
#product-main .quantity > .selector {
  margin-right: 1em;
}
@media (min-width: 992px) {
  #product-main .quantity > .selector {
    margin-right: 2em;
  }
}
#product-main .quantity > .selector > div {
  text-transform: uppercase;
  margin: 0 1em 0 0;
  font-size: 0.8em;
}
#product-main .quantity > .selector .form-control {
  border-color: #959595;
  font-size: 1.5em;
  height: 2em;
  text-align: center;
  max-width: 100px;
  padding: 0.2em 0.5em;
}
#product-main .quantity > .selector .btn {
  background-color: #959595;
  border-color: #261a17;
}
#product-main .quantity > .btn-addToCart {
  font-weight: 400;
}
#product-main .quantity > .btn-addToCart i {
  font-size: 1.5em;
  vertical-align: middle;
}
#product-main .quantity + .alert {
  margin-top: 1em;
}
#product-main .alternatives {
  display: flex;
}
#product-main .alternatives a + a {
  margin-left: 1em;
}
#product-main .product-image-main {
  position: relative;
}
@media (min-width: 768px) {
  #product-main .product-image-main {
    padding: 0 5px;
  }
}
@media (min-width: 992px) {
  #product-main .product-image-main {
    padding: 0 10px;
  }
}
#product-main .product-image-main a {
  margin: 0 auto;
  color: white;
  text-transform: uppercase;
  display: block;
  mix-blend-mode: exclusion;
}
#product-main .product-image-main a > i {
  color: #959595;
  line-height: 1.5em;
  font-size: 2em;
  vertical-align: middle;
}
#product-main hr {
  border-color: #938d8b;
}
#product-main .actions {
  display: flex;
  color: #cebca5;
  font-weight: 700;
}
#product-main .actions a i {
  border: 1px solid #261a17;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  font-size: 1.2em;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 0.5em;
  transition: all 0.3s ease-in-out;
}
#product-main .actions a:hover i {
  background-color: #261a17;
  color: white;
}
#product-main .product-details {
  position: relative;
  transition: all 0.3s ease-in-out;
}
#product-main .product-details[open] summary {
  display: none;
}

#product-image {
  position: relative;
}
@media (min-width: 768px) {
  #product-image {
    height: 100%;
  }
}
#product-image > img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  #product-image > img {
    height: auto;
  }
}
#product-image .img-responsive {
  margin: auto;
}
#product-image .tags {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 15;
}
#product-image .tags .tag {
  margin-bottom: 10px;
}
#product-image .row {
  margin-left: -5px;
  margin-right: -5px;
}
#product-image .row > div {
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 10px;
}
#product-image .ovvvport {
  border: 0 !important;
}

.orbitvu-container > div {
  padding-bottom: 75% !important;
}

#product-gallery {
  background: #d6cabb url("/assets/images/fabric.jpg") repeat center center;
  padding: 50px 0;
}
@media (min-width: 768px) {
  #product-gallery {
    padding: 100px 0;
  }
}
#product-gallery ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: -10px;
}
#product-gallery ul > li {
  padding: 10px;
  width: 50%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  #product-gallery ul > li {
    width: 33.333333%;
  }
}
#product-gallery ul > li a {
  display: block;
  cursor: pointer;
}
#product-gallery ul > li a img {
  width: 100%;
}
#product-gallery ul > li .caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: rgba(38, 26, 23, 0.7);
  color: white;
  padding: 1em 4em;
  font-size: 0.8em;
  text-transform: uppercase;
  overflow: hidden;
  text-align: center;
}

#product-tabs {
  margin-top: 4em;
  margin-bottom: 4em;
}
#product-tabs .nav {
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
}
@media (min-width: 768px) {
  #product-tabs .nav {
    display: block;
  }
}

@media (min-width: 768px) {
  #product-tech {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#product-tech h5 {
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}
#product-tech table {
  width: 100%;
}
#product-tech table tr + tr {
  border-top: 1px solid #f0f0f0;
}
#product-tech table tr td,
#product-tech table tr th {
  padding-top: 1em;
  padding-bottom: 1em;
}
#product-tech table tr th {
  padding-right: 1em;
  font-weight: 400;
}
#product-tech table tr td {
  padding-left: 1em;
  text-align: right;
  color: #959595;
}

#product-video {
  background-color: #f0f0f0;
}

#product-tabs-description {
  font-size: 0.9em;
  padding: 1em;
}
@media (min-width: 768px) {
  #product-tabs-description {
    padding: 2em;
  }
}

#product-tabs-reviews {
  padding: 1em;
}
@media (min-width: 992px) {
  #product-tabs-reviews {
    padding: 2em 5em;
  }
}
#product-tabs-reviews .review {
  background-color: #fff;
  padding: 15px;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review {
    padding: 30px;
    display: flex;
  }
}
#product-tabs-reviews .review > .header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review > .header {
    align-items: flex-start;
    margin-bottom: 0;
    border-right: 1px solid #959595;
  }
}
#product-tabs-reviews .review > .header > .image {
  flex-shrink: 0;
}
#product-tabs-reviews .review > .header > .image .avatar {
  border-radius: 50%;
  background-color: #21f4bb;
  padding: 4px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review > .header > .image .avatar {
    padding: 6px;
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  #product-tabs-reviews .review > .header > .image .avatar {
    margin-left: 20px;
  }
}
#product-tabs-reviews .review > .header > .image .avatar > * {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review > .header > .image .avatar > * {
    height: 50px;
    width: 50px;
  }
}
#product-tabs-reviews .review > .header > .image .avatar i {
  font-size: 30px;
  line-height: 30px;
  background-color: #959595;
  color: #261a17;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review > .header > .image .avatar i {
    font-size: 50px;
    line-height: 50px;
  }
}
#product-tabs-reviews .review > .content {
  width: 100%;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review > .content {
    margin-left: 20px;
    width: auto;
  }
}
@media (min-width: 992px) {
  #product-tabs-reviews .review > .content {
    margin-right: 20px;
  }
}
#product-tabs-reviews .review > .content .user {
  font-weight: 700;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review > .content .user {
    display: inline-block;
  }
}
#product-tabs-reviews .review > .content .date {
  color: #261a17;
}
@media (min-width: 768px) {
  #product-tabs-reviews .review > .content .date {
    display: inline-block;
  }
  #product-tabs-reviews .review > .content .date:before {
    content: " - ";
  }
}
#product-tabs-reviews .review > .content .rating {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#product-tabs-reviews .review > .content .text {
  margin-top: 1em;
}
#product-tabs-reviews .review + .review {
  margin-top: 15px;
}

#product-bought-together,
#product-recommended,
#product-related {
  padding-top: 40px;
}
@media (min-width: 768px) {
  #product-bought-together,
#product-recommended,
#product-related {
    padding-top: 80px;
  }
}
#product-bought-together .row,
#product-recommended .row,
#product-related .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}
#product-bought-together .row > div,
#product-recommended .row > div,
#product-related .row > div {
  padding-left: 0;
  padding-right: 0;
}

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

h1.comics_header {
  font-size: 2.1rem;
}

.comics_box {
  box-shadow: 0 1px 8px rgba(93, 93, 93, 0.5);
  margin-top: 0;
  margin-bottom: 5px;
  color: #251916;
  border: 1px solid #251916;
}
.comics_box a {
  color: #251916;
}
.comics_box .navi {
  position: absolute;
  border: 0 solid #251916;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
.comics_box .navi .mdi {
  font-size: 4em;
}
.comics_box .navi.left {
  left: -10px;
}
.comics_box .navi.right {
  right: -10px;
}

.strip-indicator {
  padding-left: 0;
  margin-left: 10px;
  margin-right: 10px;
  list-style: none;
  text-align: center;
}
.strip-indicator li {
  display: inline-block;
  padding: 0 2px;
}
.strip-indicator li a {
  color: #251916;
}
.strip-indicator li a:hover {
  color: #337ab7;
}

.strip-pager-box {
  text-align: center;
}

.inside-navi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
}

.page_tab {
  float: left;
  border: 2px solid #251916;
  margin-bottom: 1px;
  margin-left: -1px;
}
.page_tab.active, .page_tab:hover {
  background: #CDCAC9;
}
.page_tab a {
  color: #251916;
  padding: 2px 4px;
}

#comic-nav .mdi {
  font-size: 3em;
}

/***************** FAST CART  *******************/
#cart-fast-resume {
  color: white;
  min-width: 300px;
  font-size: 0.9em;
}
#cart-fast-resume ul {
  list-style: none;
  padding: 0;
}
#cart-fast-resume ul > li {
  padding: 10px;
  padding-right: 25px;
}
#cart-fast-resume ul > li.divider {
  background-color: #cebca5;
  padding: 0;
}
#cart-fast-resume ul > li h6 {
  color: white;
  font-family: "Poppins", Verdana, SimSun, STXihei, sans-serif;
}
#cart-fast-resume ul > li .details {
  display: flex;
  justify-content: space-between;
}
#cart-fast-resume ul > li .details .price {
  font-size: 1.3em;
}
#cart-fast-resume ul > li .details .total {
  font-size: 1.5em;
  color: #21f4bb;
}
#cart-fast-resume ul > li .details .total-label {
  font-size: 1.3em;
}
#cart-fast-resume ul > li .btn-delete-fast {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}
#cart-fast-resume ul > li .btn-delete-fast i {
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  display: block;
}

.pardot {
  font-size: 0.8em;
  display: none;
}

#pi_tracking_opt_in_yes {
  padding-right: 10px;
}

#pi_tracking_opt_in_no {
  padding-right: 10px;
}

footer {
  padding: 2em 0;
  background: #261a17 url("/assets/images/dust-overlay.png") no-repeat center center;
  background-size: cover;
  background-blend-mode: screen;
  color: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}
footer .logo {
  margin-bottom: 1.5em;
}

#footer-actions {
  margin-bottom: 2em;
}
#footer-actions h5 {
  font-size: 1.25em;
  color: white;
}
#footer-actions img {
  display: block;
  max-width: 128px;
  margin: 0 auto 2em;
}
#footer-actions label {
  font-size: 0.8em;
}

#footer-legal {
  font-size: 0.9em;
  letter-spacing: 0.02em;
  color: #cebca5;
  text-align: center;
}
#footer-legal .text {
  margin-bottom: 1em;
}
#footer-legal .text mark {
  color: white;
}
#footer-legal ul {
  padding: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
#footer-legal ul > li + li:before {
  color: #cebca5;
  content: "|";
  margin-left: 0.5em;
  margin-right: 0.5em;
}