@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
nav {
  width: 100%;
  padding: 36px 5% 0 5%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #0A0A0A;
}

nav .search input {
  width: 600px;
  height: 44px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  background-color: #1f1f1f;
  padding: 0 31px;
  border: none;
  outline: none;
  color: #626262;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 0;
}

nav .search button {
  width: 79px;
  height: 44px;
  background-color: #cb2c30;
  border: none;
  cursor: pointer;
  line-height: 0;
}

nav .search.mobile {
  display: none;
}

nav section.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav section.top .logo {
  height: 44px;
  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;
}

nav section.top .hamburger {
  display: none;
}

nav section.top .account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav section.top .account a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  margin-right: 18px;
  text-decoration: none;
}

nav section.top .account button {
  width: 64px;
  height: 44px;
  background-color: #cb2c30;
  border: none;
  position: relative;
  cursor: pointer;
}

nav section.top .account button span {
  position: absolute;
  top: 25%;
  right: -10px;
  background-color: #373737;
  width: 22px;
  height: 22px;
  color: #fff;
  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;
}

nav section {
  width: 100%;
}

nav section.bottom {
  padding: 15px 0;
  margin-top: 25px;
  border-top: 1px solid #1f1f1f;
}

nav section.bottom .all-products {
  width: 171px;
  height: 44px;
  line-height: 44px;
  background-color: #cb2c30;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-right: 37px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  text-align: center;
}

nav section.bottom .all-products:hover {
  background-color: #910004;
}

nav section.bottom .categories_scrollabe {
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

nav section.bottom .categories_wrapper {
  position: relative;
  overflow: hidden;
  width: calc(100% - 208px);
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

nav section.bottom .categories_wrapper .arrow {
  position: absolute;
  top: 5px;
  width: 34px;
  height: 34px;
  background-color: #0a0a0acb;
  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;
  z-index: 1;
}

nav section.bottom .categories_wrapper .arrow svg {
  width: 15px;
  fill: #fff;
}

nav section.bottom .categories_wrapper .left {
  left: 0;
  display: none;
}

nav section.bottom .categories_wrapper .right {
  right: 0;
}

nav section.bottom a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-right: 25px;
  line-height: 17.5px;
  display: inline-block;
  -webkit-transition: .5s;
  transition: .5s;
}

nav section.bottom a:hover {
  color: #858585;
}

nav section.bottom a:last-child {
  margin-right: 0;
}

nav section.bottom .divider {
  position: relative;
}

nav section.bottom .divider:before {
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  left: -12.5px;
  top: -2.5px;
  background-color: #cb2c30;
}

nav .mobile-background {
  position: fixed;
  background-color: #00000062;
  width: 100vw;
  height: 100vh;
  z-index: 8;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

nav .hamburger {
  cursor: pointer;
}

nav section.mobile-nav {
  -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  display: none;
  width: 328px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -328px;
  background-color: #171717;
  z-index: 10;
  padding: 31px 0;
}

nav section.mobile-nav .logo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 55px;
  padding: 0 15px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  position: relative;
  left: -50px;
  opacity: 0;
}

nav section.mobile-nav .logo svg {
  cursor: pointer;
}

nav section.mobile-nav .links {
  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;
}

nav section.mobile-nav .links a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  line-height: 17.5px;
  margin-bottom: 24px;
  font-weight: 600;
  padding: 0 15px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  position: relative;
  left: -50px;
  opacity: 0;
}

nav section.mobile-nav .links a.divider {
  padding-bottom: 21px;
  border-bottom: 1px solid #303030;
}

section#preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 20;
  background-color: #080808;
  top: -100vh;
  left: 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;
  -webkit-transition: 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 1s cubic-bezier(0.86, 0, 0.07, 1);
  color: #fff;
}

section#preloader .border {
  width: 182px;
  height: 182px;
  border: 2px solid #1B1B1B;
  border-radius: 50%;
  position: relative;
}

section#preloader .border::after {
  content: '';
  display: block;
  width: 190px;
  height: 91px;
  background-color: #080808;
  position: absolute;
  bottom: -2px;
  left: -5px;
}

section#preloader .border h5 {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: #fff;
  position: absolute;
  top: 38px;
  margin: 0;
  left: calc(50% - 35px);
  width: 70px;
  text-align: center;
}

section#preloader .border .arrow {
  width: 182px;
  height: 182px;
  border-radius: 50%;
  position: relative;
  -webkit-transform: rotate(-42deg);
          transform: rotate(-42deg);
  z-index: 2;
  -webkit-animation: 1.8s loader cubic-bezier(0.55, 0.055, 0.675, 0.19);
          animation: 1.8s loader cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

section#preloader .border .arrow svg {
  position: absolute;
  top: 15px;
  left: 15px;
}

#add-to-cart-pop-up {
  position: fixed;
  top: 200px;
  right: 0;
  background-color: #fff;
  z-index: 50;
  padding-bottom: 22px;
  max-width: 621px;
  display: none;
}

#add-to-cart-pop-up * {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#add-to-cart-pop-up h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0A0A0A;
  padding: 15px;
  border-bottom: 1px solid #E1E1E1;
  margin: 0;
  width: 100%;
  line-height: 11px;
}

#add-to-cart-pop-up h4 svg {
  float: right;
}

#add-to-cart-pop-up img {
  width: 132px;
  height: 104px;
  margin-top: 10px;
}

#add-to-cart-pop-up p {
  width: 225px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-right: 31px;
  margin-left: 23px;
}

#add-to-cart-pop-up span {
  font-size: 14px;
  font-weight: 600;
}

#add-to-cart-pop-up span .old {
  color: #9E9E9E;
  text-decoration: line-through;
  margin-right: 12px;
}

#add-to-cart-pop-up span .new {
  color: #CB2C30;
}

#add-to-cart-pop-up .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 21px;
}

#add-to-cart-pop-up button {
  width: 191px;
  height: 44px;
  line-height: 44px;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

#add-to-cart-pop-up button:first-child {
  background-color: #CB2C30;
  color: #fff;
  border: none;
  margin-bottom: 12px;
  -webkit-transition: .5s;
  transition: .5s;
}

#add-to-cart-pop-up button:first-child:hover {
  background-color: #910004;
}

#add-to-cart-pop-up button:last-child {
  background-color: transparent;
  border: 1px solid #CB2C30;
  color: #CB2C30;
}

#add-to-cart-pop-up .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 19px;
}

p.notification:not(.info .notification) {
  position: fixed;
  top: 20%;
  right: -100%;
  padding: 20px 15px;
  margin: 0;
  background-color: #0a0a0a;
  border-left: 2px solid #CB2C30;
  z-index: 100;
  color: #fff;
  font-size: 20px;
  max-width: 350px;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}

* {
  font-family: "Oxanium", sans-serif;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

.select-box.selected svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@-webkit-keyframes loader {
  from {
    -webkit-transform: rotate(-42deg);
            transform: rotate(-42deg);
  }
  to {
    -webkit-transform: rotate(133deg);
            transform: rotate(133deg);
  }
}

@keyframes loader {
  from {
    -webkit-transform: rotate(-42deg);
            transform: rotate(-42deg);
  }
  to {
    -webkit-transform: rotate(133deg);
            transform: rotate(133deg);
  }
}

@media (max-width: 1200px) {
  nav .search input {
    width: 370px;
  }
  nav section.top .logo img {
    width: 150px;
  }
}

@media (max-width: 900px) {
  nav .search input {
    width: 300px;
  }
  nav .search button {
    width: 70px;
  }
  nav section.top .logo img {
    width: 145px;
  }
}

@media (max-width: 800px) {
  nav {
    padding: 31px 5% 19px 5%;
  }
  nav .search.mobile {
    display: block;
    width: 100%;
    margin-top: 17px;
  }
  nav .search.mobile input {
    width: calc(100% - 64px);
    height: 40px;
  }
  nav .search.mobile button {
    width: 64px;
    height: 40px;
  }
  nav section.top .hamburger {
    display: block;
  }
  nav section.top .account p, nav section.top .account a {
    display: none;
  }
  nav section.top .account button {
    width: 50px;
    height: 30px;
  }
  nav section.top .account button svg {
    width: 20px;
    height: 15px;
  }
  nav section.top .account button span {
    width: 17px;
    height: 16px;
  }
  nav section.top .search {
    display: none;
  }
  nav section.bottom {
    display: none;
  }
  #add-to-cart-pop-up {
    width: 360px;
    right: calc( 50% - 180px);
    top: calc( 50% - 144,5px);
    background-color: #0000002c;
  }
  #add-to-cart-pop-up p {
    margin: 0;
  }
  #add-to-cart-pop-up .buttons {
    margin-right: 100px;
    margin-top: 10px;
    margin-left: 15px;
  }
}
/*# sourceMappingURL=nav.css.map */