body {
  overflow-x: hidden;
}

.separator {
  opacity: 0.5;
}

nav .dropdown-item:hover {
  color: white;
  background-color: #dc3545;
}

nav .dropdown:hover > .dropdown-menu {
  display: block;
}

nav {
  background-color: white;
  position: -webkit-sticky;
  position: sticky;
  z-index: 1000;
  top: 0;
}

nav > * {
  border-bottom: 1px solid var(--border);
}

nav a {
  color: black;
  text-decoration: none !important;
}

nav a:hover {
  color: var(--main-bg-color);
}

.nav-information {
  padding-top: 3px;
  padding-bottom: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f3f4f5;
  font-size: 0.9em;
}

.nav-information section > * {
  opacity: 0.5;
}

.nav-header {
  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-header .logo {
  grid-area: logo;
  font-size: 2em;
}

.nav-header .logo img {
  width: 50px;
}

.nav-header .logo label {
  font-family: "Arima Madurai", cursive;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 0;
  color: var(--main-bg-color);
}

.nav-header .logo label:hover {
  opacity: 0.5;
}

.form-search {
  -webkit-box-flex: 0.8;
      -ms-flex-positive: 0.8;
          flex-grow: 0.8;
  padding: 0px 10px;
}

.form-search .btn {
  margin-left: 2px;
  background-color: var(--main-bg-color);
  border: 1px solid white;
  color: white;
}

.form-search .btn:hover {
  opacity: 0.8;
}

.form-search input[name="s"] {
  border-radius: var(--radius) !important;
}

.form-search input::-webkit-input-placeholder {
  /* Most modern browsers support this now. */
  opacity: 0.5;
}

.form-search input:-ms-input-placeholder {
  /* Most modern browsers support this now. */
  opacity: 0.5;
}

.form-search input::-ms-input-placeholder {
  /* Most modern browsers support this now. */
  opacity: 0.5;
}

.form-search input::placeholder {
  /* Most modern browsers support this now. */
  opacity: 0.5;
}

.nav-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
}

.nav-header ul li:not(:nth-last-child(1)) {
  padding: 0 20px;
}

.nav-header ul li.close {
  display: none;
}

.shopping-cart:hover {
  opacity: 0.5;
  color: black;
}

.fa-shopping-cart.has-item:after {
  content: attr(value);
  font-size: 12px;
  background: var(--main-bg-color);
  color: white;
  border-radius: 50%;
  padding: 3px 5px;
  position: relative;
  left: -5px;
  top: -10px;
}

.nav-shortcut {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 2px 2px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 2px 2px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.15);
}

.nav-shortcut .category-menu,
.nav-shortcut .brand-menu {
  max-height: 250px;
  overflow-y: auto;
}

.nav-shortcut .category-menu.dropdown-menu-right,
.nav-shortcut .brand-menu.dropdown-menu-right {
  left: 2.5em !important;
}

.nav-shortcut ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

.nav-shortcut li {
  padding: 0 5px;
}

.menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.menu-toggle input {
  position: absolute;
  width: 40px;
  height: 28px;
  opacity: 0;
  left: -5px;
  top: -3px;
  cursor: pointer;
  z-index: 100000;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* Responsive */
@media screen and (min-width: 576px) {
  .hide-from-tablet {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .nav-header .logo label {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .custom-container {
    padding: 8px;
  }
  nav {
    font-size: 0.8em;
  }
  .nav-header .logo img {
    width: 40px;
    height: 40px;
  }
  .nav-header ul li:not(:nth-last-child(1)) {
    padding: 0 5px;
  }
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-mobile {
    display: none;
  }
}

/* End Responsive */
/*# sourceMappingURL=navbar.css.map */