:root {
  color-scheme: light !important;
}

.footer {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-color: #e6b000;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 5px;
}

.footer .firstRow {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 80%;
  height: 50%;
}

.footer .firstRow .linkBox {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}

.footer .secondRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .secondRow .copyright {
  padding-top: 10px;
  margin: 1px 1px;
  padding: 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  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;
}

.footer .secondRow .copyright .vertLine {
  display: none;
}

.footer .secondRow .copyright a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-weight: 600;
}

.footer .secondRow .copyright a:hover {
  color: #000;
}

.footer .linkBox .link {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  color: #000;
}

.footer .up {
  position: fixed;
  bottom: 5px;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.603);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}

.footer .up i {
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
  display: none;
}

.footer .up svg {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  fill: #ffffff;
}

.footer .up.down,
.footer .up .down {
  fill: #000 !important;
  color: #000 !important;
  background-color: transparent;
  font-weight: 600;
}

#cookie-popup {
  display: none;
  text-align: center;
  background: #fff;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 9999;
  font-size: 14px;
  line-height: 20px;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

#cookie-popup a {
  color: black;
  text-decoration: underline;
  text-transform: uppercase;
}

#cookie-popup a:hover {
  color: #e6b000;
}

#cookie-popup button {
  cursor: pointer;
  margin-top: 5px;
  background-color: white;
  color: black;
  border: 1px solid #222222;
  border-radius: 15px;
  padding: 5px 10px;
  outline: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#cookie-popup button:hover {
  color: white;
  background-color: #222222;
}

@media screen and (min-width: 700px) {
  .footer {
    height: 90px;
    background-color: white;
    border-top: 2px solid #e6b000;
  }
  .footer .firstRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .firstRow .linkBox {
    margin: 0;
  }
  .footer .secondRow {
    height: 50%;
  }
  .footer .secondRow .copyright {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .footer .secondRow .copyright .vertLine {
    display: block;
  }
  .footer .secondRow .copyright a {
    color: #000;
    text-decoration: none;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    font-weight: 600;
  }
  .footer .secondRow .copyright a:hover {
    color: #000;
  }
  .footer .linkBox .link {
    font-weight: 600;
  }
  .footer .up {
    bottom: 10px;
    right: 15px;
  }
  .footer .up i {
    display: block;
  }
  .footer .up svg {
    margin-left: 10px;
  }
}

@media screen and (min-width: 980px) {
  .footer {
    padding: 5px 15%;
  }
  .footer .up {
    bottom: 15px;
    right: 25px;
  }
}

:root {
  color-scheme: light !important;
}

*,
html,
body {
  font-family: Helvetica, sans-serif !important;
  color: #000;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100%;
}

body {
  background-color: white;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.nav-bar {
  font-size: 18px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: 10px;
}

.nav-bar .navbar-toggle {
  position: relative;
  left: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
}

.nav-bar .navbar-toggle .menu-icon .bar {
  width: 27.5px;
  height: 3px;
  background-color: black;
  margin: 5px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
}

.nav-bar .navbar-toggle .menu-icon .change.bar1 {
  -webkit-transform: rotate(-45deg) translate(-4px, 2px);
  transform: rotate(-45deg) translate(-3.5px, 3px);
}

.nav-bar .navbar-toggle .menu-icon .change.bar2 {
  width: 0;
}

.nav-bar .navbar-toggle .menu-icon .change.bar3 {
  -webkit-transform: rotate(45deg) translate(-9px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

.nav-bar .main-nav {
  width: 100%;
  height: 0;
  position: absolute;
  list-style-type: none;
  display: block;
  top: 100%;
  -webkit-transition: height 1s ease-in-out;
  transition: height 1s ease-in-out;
  overflow: hidden;
  padding: 0;
  background-color: #ffffff;
  z-index: 2;
  -webkit-box-shadow: 0 15px 25px -20px black;
          box-shadow: 0 15px 25px -20px black;
}

.nav-bar .main-nav.active {
  height: 310px;
}

.nav-bar .main-nav .nav-links {
  text-decoration: none;
  color: #000;
}

.nav-bar .main-nav li {
  cursor: pointer;
  text-align: center;
  margin: 15px auto;
}

.nav-bar .right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-width: 48px;
  z-index: 5;
  margin-bottom: 10px;
}

.nav-bar .right-side .search {
  z-index: inherit;
  position: relative;
}

.nav-bar .right-side .search .input-wrapper {
  z-index: inherit;
  margin-top: 7.5px;
  position: absolute;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}

.nav-bar .right-side .search .input-wrapper .search-icon {
  z-index: inherit;
  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: 32px;
  width: 30px;
  z-index: 47;
  left: -10px;
  top: 8px;
  text-align: center;
  color: #000;
  cursor: pointer;
}

.nav-bar .right-side .search .input-wrapper .search-icon svg {
  display: inline-block;
  height: 20px;
  vertical-align: text-top;
  width: 20px;
}

.nav-bar .right-side .search .input-wrapper .search-icon svg.delete {
  display: none;
  width: 25px;
  height: 25px;
}

.nav-bar .right-side .search .input-wrapper .search-icon.active svg {
  display: none;
}

.nav-bar .right-side .search .input-wrapper .search-icon.active svg.delete {
  display: inline-block;
}

.nav-bar .right-side .search .input-wrapper .search_form {
  z-index: inherit;
  width: 150px;
  visibility: hidden;
}

.nav-bar .right-side .search .input-wrapper .search_form input {
  z-index: inherit;
  width: calc(150px - 10px);
  font-size: 16px;
  line-height: 32px;
  border: none;
  height: 32px;
  outline: none;
  color: #000;
  -webkit-transition: border 1s ease;
  transition: border 1s ease;
  padding-left: 10px;
  background-color: transparent;
}

.nav-bar .right-side .search .input-wrapper .search_form input::-webkit-input-placeholder {
  color: #4e4e4e;
}

.nav-bar .right-side .search .input-wrapper .search_form input:-ms-input-placeholder {
  color: #4e4e4e;
}

.nav-bar .right-side .search .input-wrapper .search_form input::-ms-input-placeholder {
  color: #4e4e4e;
}

.nav-bar .right-side .search .input-wrapper .search_form input::placeholder {
  color: #4e4e4e;
}

.nav-bar .right-side .search #search_results {
  display: none;
  position: absolute;
  top: 95%;
  width: 250px;
  left: -255px;
  list-style-type: none;
  background-color: #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}

.nav-bar .right-side .search #search_results.active {
  display: block;
}

.nav-bar .right-side .search #search_results a {
  text-decoration: none;
}

.nav-bar .right-side .search #search_results li {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(206, 206, 206, 0.604);
  cursor: pointer;
}

.nav-bar .right-side .search #search_results li.last {
  border-bottom: none;
}

.nav-bar .right-side .search #search_results li:hover {
  background-color: #e6e6e6;
}

.nav-bar .right-side .basket-nav {
  margin-top: -2px;
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.nav-bar .right-side .basket-nav svg {
  width: 30px;
  height: 30px;
  vertical-align: text-top;
  display: inline-block;
  cursor: pointer;
}

.nav-bar .right-side .basket-nav .cart-count {
  position: absolute;
  left: 60%;
  top: 10%;
  width: 17.5px;
  height: 17.5px;
  border-radius: 50%;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.nav-bar .right-side .basket-nav.active .cart-count {
  background-color: #e6b000;
  opacity: 0.9;
}

.nav-bar .right-side .basket-nav .basket {
  cursor: default;
  z-index: 55;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  width: 350px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 250px;
  max-height: calc(100vh - 150px);
  min-height: 100px;
  background-color: white;
  position: absolute;
  top: 120%;
  right: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.555);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.555);
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-property: visibility, opacity;
  transition-property: visibility, opacity;
}

.nav-bar .right-side .basket-nav .basket::before {
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  right: calc((48px / 2) - 10px);
  top: -20px;
  border: 10px solid transparent;
  border-bottom-color: white;
}

.nav-bar .right-side .basket-nav .basket .basket-empty {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.nav-bar .right-side .basket-nav .basket .basket-empty p {
  margin-bottom: 1rem;
}

.nav-bar .right-side .basket-nav .basket .basket-empty .empty-header {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
}

.nav-bar .right-side .basket-nav .basket .basket-empty .empty-text {
  text-align: center;
  width: 80%;
  font-size: 0.8rem;
  color: #505050;
}

.nav-bar .right-side .basket-nav .basket .basket-empty .empty-button {
  cursor: pointer;
  width: 80%;
  color: #000;
  text-decoration: none;
  outline: none;
  text-align: center;
  background-color: transparent;
  border: 1px solid #e6b000;
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 5px 10px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.nav-bar .right-side .basket-nav .basket .basket-empty .empty-button:hover {
  background-color: #e6b000;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-header {
  text-transform: uppercase;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  padding-bottom: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #000;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-header b {
  font-size: 1.2rem;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 380px;
  overflow-y: scroll;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div::-webkit-scrollbar {
  display: none;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent;
  border-bottom: 1px solid rgba(158, 158, 158, 0.541);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-image {
  width: 25%;
  position: relative;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-image img {
  width: 100%;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-image img.img_overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details {
  position: relative;
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 5px 10px 0 20px;
  font-size: 0.8rem;
  color: #505050;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-price {
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-description {
  color: inherit;
  margin-bottom: 2.5px;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  color: inherit;
  margin-bottom: 2.5px;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row.just-center {
  margin-bottom: 0;
  margin-top: 5px;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row span {
  color: inherit;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row .basket-item-color {
  color: inherit;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row .basket-item-pages-div {
  color: inherit;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row .basket-item-count-div {
  color: inherit;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row .basket-item-count-div .change-quantity {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(206, 206, 206, 0.603);
  border-radius: 50%;
  line-height: 1;
  -webkit-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row .basket-item-count-div .change-quantity:hover {
  background-color: rgba(206, 206, 206, 0.603);
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-row .basket-item-count-div .basket-quantity {
  border: 0.5px solid rgba(206, 206, 206, 0.603);
  padding: 0.5px 10px;
  border-radius: 10px;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-remove {
  position: absolute;
  top: -2.5px;
  right: 0;
  width: 6%;
  fill: black;
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items .basket-item-details .basket-item-remove:hover {
  fill: red;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-items-div .basket-items.new-item {
  background-color: rgba(0, 0, 0, 0.158);
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer {
  padding: 10px;
  text-align: center;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-total-div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-total-div .basket-footer-total-label {
  font-size: 0.9rem;
  font-weight: bold;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-total-div .basket-footer-total-label small {
  color: #8d8d8d;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-total-div .basket-footer-total {
  font-size: 1.1rem;
  font-weight: bold;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-checkout {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-checkout a {
  margin: 0 auto;
  margin-top: 10px;
  width: 50%;
  outline: none;
  border: 1px solid #e6b000;
  background-color: transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 7.5px 10px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-checkout a.basket-footer-checkout-link {
  width: 40% !important;
  background-color: #e6b000;
  border: none;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-checkout a.basket-footer-checkout-link:hover {
  background-color: #c09300;
}

.nav-bar .right-side .basket-nav .basket .basket-active .basket-footer .basket-footer-checkout a:hover {
  background-color: #e6b000;
}

.nav-bar .right-side .basket-nav .basket.show {
  visibility: visible;
  opacity: 1;
}

.nav-bar .right-side .basket-nav.mobile:active {
  background-color: rgba(141, 141, 141, 0.3);
}

.nav-bar .right-side .basket-nav:not(.mobile):hover .basket {
  visibility: visible;
  opacity: 1;
}

.nav-bar .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 130px;
}

.nav-bar .logo img {
  width: 100%;
  height: 100%;
}

.search_site_mobil {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  top: 0%;
  left: 100%;
  z-index: 5000;
  -webkit-transition: left 0.75s ease-in-out;
  transition: left 0.75s ease-in-out;
}

.search_site_mobil.active {
  left: 0%;
}

.search_site_mobil .input_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #e6b000;
  height: 50px;
  padding: 0 18px 0 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom: 1px solid #e6b000;
}

.search_site_mobil .input_form .back_icon {
  margin-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 24px;
  position: relative;
  width: 24px;
  min-width: 24px;
  cursor: pointer;
}

.search_site_mobil .input_form .back_icon img {
  width: 90%;
  height: 90%;
  display: block;
}

.search_site_mobil .input_form .mobile_search {
  width: 100%;
  display: block;
}

.search_site_mobil .input_form .mobile_search input {
  border: none;
  outline: none;
  background-color: inherit;
  color: #000;
  font-size: 17px;
}

.search_site_mobil .input_form .clear_search {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.search_site_mobil .input_form .clear_search span {
  cursor: pointer;
  display: none;
  font-size: 14px;
  opacity: 0.8;
  margin-right: 11px;
}

.search_site_mobil .search_results_mobil {
  margin-top: 20px;
  padding: 0 26px 50px 26px;
  display: none;
  max-height: calc(100% - 50px);
  overflow-y: scroll;
}

.search_site_mobil .search_results_mobil.active {
  display: block;
}

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

.search_site_mobil .search_results_mobil a {
  text-decoration: none;
}

.search_site_mobil .search_results_mobil li {
  cursor: pointer;
  border: none;
  line-height: 55px;
  margin-bottom: 0;
  list-style: none;
  position: relative;
}

.search_site_mobil .search_results_mobil li::after {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  background-image: url(/img/icons/arrowBack.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 20px 20px;
}

@media screen and (min-width: 600px) {
  .nav-bar .right-side .search .input-wrapper {
    background-color: #dfdfdf;
  }
  .nav-bar .right-side .search .input-wrapper .search_form {
    visibility: visible !important;
  }
  .search_site_mobil {
    display: none !important;
  }
}

@media screen and (min-width: 1130px) {
  .nav-bar {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 20px 0 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav-bar .main-nav {
    background-color: transparent;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    position: relative;
    width: auto;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .nav-bar .main-nav .nav-links {
    text-transform: uppercase;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: relative;
    font-size: 0.75rem;
  }
  .nav-bar .main-nav li {
    margin: 0 10px;
    text-align: center;
    position: relative;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .nav-bar .main-nav li.break {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
  .nav-bar .main-nav li::before {
    content: '';
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    -webkit-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
    background-color: #e6b000;
  }
  .nav-bar .main-nav li:hover::before {
    width: 100%;
  }
  .nav-bar .navbar-toggle {
    display: none;
  }
}

@media screen and (min-width: 1400px) {
  .nav-bar .main-nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 75px;
  }
  .nav-bar .main-nav .nav-links {
    font-size: 0.9rem;
  }
  .nav-bar .main-nav li {
    margin: 0 15px;
  }
}

@media screen and (min-width: 1550px) {
  .nav-bar .main-nav .nav-links {
    font-size: 0.9rem;
  }
  .nav-bar .logo {
    width: 10%;
  }
}

@media screen and (min-width: 1700px) {
  .nav-bar {
    padding-right: 50px;
  }
  .nav-bar .main-nav li {
    margin: 0 30px;
  }
}

:root {
  color-scheme: light !important;
}

*,
html,
body {
  font-family: Helvetica, sans-serif !important;
  color: #000;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100%;
}

body {
  background-color: white;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

#page {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
}

#page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#shop {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: -30px;
}

.shop_wrapper {
  width: 70%;
  margin: 0 auto 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.shop_wrapper p {
  font-size: 1rem;
}

.shop_wrapper .product_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shop_wrapper .product_row .product {
  width: calc((100% / 3.5) + 20px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 20px;
  cursor: pointer;
  z-index: 1;
}

.shop_wrapper .product_row .product:hover {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
  -webkit-box-shadow: 0px 0px 50px -20px rgba(70, 70, 70, 0.741);
          box-shadow: 0px 0px 50px -20px rgba(70, 70, 70, 0.741);
}

.shop_wrapper .product_row .product .product_header {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  width: 100%;
}

.shop_wrapper .product_row .product .product_header .product_header_image {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
}

.shop_wrapper .product_row .product .product_header .product_header_image.center img {
  margin: auto;
}

.shop_wrapper .product_row .product .product_header .product_header_image img {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop_wrapper .product_row .product .product_details {
  margin: 5px auto 20px 20px;
  width: 90%;
}

.shop_wrapper .product_row .product .product_details h4 {
  text-transform: uppercase;
  font-size: 0.95rem;
}

.shop_wrapper .product_row .product .product_details p {
  margin: 5px 0 10px;
  font-size: 0.9rem;
  text-align: justify;
}

.shop_wrapper .product_row .product .product_details .info_span {
  display: block;
  position: relative;
  outline: none;
  margin-top: 5px;
}

.shop_wrapper .product_row .product .product_details .info_span i {
  width: 17.5px;
  height: 17.5px;
  text-align: center;
  background-color: black;
  color: white;
  display: inline-block;
  vertical-align: top;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
  border-radius: 50%;
}

.shop_wrapper .product_row .product .product_details .info_span i::before {
  content: '\003f';
}

.shop_wrapper .product_row .product .product_details .info_span span {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 6px;
  background-color: #000;
  padding: 16px;
  width: 300px;
  z-index: 7;
  font-size: 14px;
  line-height: 1.3;
  color: white;
  left: 10px;
  right: auto;
  top: auto;
  bottom: 100%;
  margin: auto auto 10px -20px;
  z-index: 1;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  text-align: left;
}

.shop_wrapper .product_row .product .product_details .info_span span.show {
  visibility: visible;
  opacity: 1;
}

.shop_wrapper .product_row .product .product_details .info_span span::after {
  display: block;
  content: '';
  position: absolute;
  left: 12.5px;
  right: auto;
  top: 100%;
  bottom: auto;
  border-width: 6.5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.shop_wrapper .product_row .product .product_details .info_span span b {
  color: inherit;
  font-weight: bold;
}

@media screen and (max-width: 1400px) {
  .shop_wrapper {
    width: 90%;
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 1130px) {
  #page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #shop {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
    margin-top: 0px;
  }
  .shop_wrapper {
    width: 90%;
    margin: 20px auto 0;
  }
  .shop_wrapper .product_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
  }
  .shop_wrapper .product_row .product {
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px auto;
    border-radius: 0;
  }
  .shop_wrapper .product_row .product:hover {
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .shop_wrapper .product_row .product .product_header {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 50%;
  }
  .shop_wrapper .product_row .product .product_header .product_header_image {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .shop_wrapper .product_row .product .product_header .product_header_image img {
    position: relative;
    width: 100%;
  }
  .shop_wrapper .product_row .product .product_details {
    margin-bottom: 0;
    width: 50%;
  }
  .shop_wrapper .product_row .product .product_details p {
    text-align: justify;
  }
}

@media screen and (max-width: 750px) {
  .shop_wrapper .product_row .product {
    width: 100%;
  }
  .shop_wrapper .product_row .product .product_details .info_span span {
    width: 250px;
  }
}

@media screen and (max-width: 600px) {
  .shop_wrapper {
    width: 100%;
  }
  .shop_wrapper p {
    width: 75%;
    margin: 0 auto;
  }
  .shop_wrapper .product_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
  }
  .shop_wrapper .product_row .product {
    width: 75%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .shop_wrapper .product_row .product .product_header {
    width: 100%;
  }
  .shop_wrapper .product_row .product .product_details {
    margin-left: 0;
    width: 100%;
  }
  .shop_wrapper .product_row .product .product_details p {
    width: 100%;
    text-align: justify;
    word-break: break-word;
  }
}
/*# sourceMappingURL=products.css.map */