/* Scroll Bar */
::selection {
  color: white;
  background: #308efe;
}
html::-webkit-scrollbar {
  position: absolute;
  width: 0.5vw;
}
html::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #151414;
}
html::-webkit-scrollbar-thumb:hover {
  background-color: var(--primaryBg);
}
html::-webkit-scrollbar-track {
  background-color: white;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Common CSS */

/* Variable List */
:root {
  --primaryBg: rgba(219, 5, 82, 1);
  --secondaryBg: rgba(17, 17, 17, 1);
  --thirdBg: #f5f5f5;
  --primaryGrad: linear-gradient(
    90deg,
    #f8733b 0%,
    #db0552 80.17%,
    #db0552 80.17%
  );
  --largeFont: 60px;
  --mediumFont: 34px;
  --normalFont: 14px;
  --textColor: #111111;
  --textColor2: #666666;
  --textColor3: #fff;
  --fontFamily: "Poppins", sans-serif;
  --sectionPadding: 35px 0px;
  --transition: all 0.4s;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

body {
  font-size: var(--normalFont);
  color: var(--textColor);
  font-family: var(--fontFamily);
  font-weight: 400;
  background: #f5f5f5;
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--fontFamily);
  color: var(--textColor);
  font-weight: 500;
  margin: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: var(--textColor);
  transition: var(--transition);
}

a:hover {
  color: var(--primaryBg);
  text-decoration: none;
}
img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.btn {
  transition: var(--transition);
  padding: 6px 20px 6px 24px;
  background: #111111;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: #ffffff;
}
.btn span {
  margin-left: 12px;
  transform: translateY(6px);
  font-size: 24px;
}

.btn-main {
  background: var(--primaryGrad);
  font-size: 12px;
  border: none;
  line-height: 35px;
}

.section-title h2 {
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
}

.section-title {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title .title-link a {
  font-weight: 600;
  font-size: 14px;
  line-height: 40px;
  color: var(--primaryBg);
  text-decoration: underline;
}
.section-padding {
  padding: var(--sectionPadding);
}
.one-padding {
  padding-top: 60px;
}
@media (min-width: 1366px) {
  .container {
    max-width: 1320px;
  }
}
.contact_form .form-group {
  margin-bottom: 15px;
}
.input-group-form {
  position: relative;
}
#search .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0 !important;
  z-index: 1000;
  display: none;
  float: left;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: white;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  max-height: 365px;
  overflow: auto;
  border-radius: 5px;
  margin: 0;
  padding: 0;
  border-left: 0;
  width: calc(100% - 10px);
}
#search .dropdown-menu .search-item {
  border-bottom: 1px solid #e1e4e7;
}
#search .dropdown-menu .search-item a {
  display: inline-block;
  width: 100%;
  padding: 15px;
  white-space: normal;
}
#search .dropdown-menu .search-item .image {
  float: left;
  width: 60px;
  background: #fafafa;
}
#search .dropdown-menu .search-item .image img {
  max-width: 60px;
}

#search .dropdown-menu .search-item .name {
  margin-left: 70px;
  font-size: 12px;
  line-height: 14px;
  padding-bottom: 5px;
  color: #2b2828;
}
#search .dropdown-menu .search-item .price {
  font-size: 14px;
  margin-left: 70px;
  font-weight: 600;
  color: #222;
}

#search .dropdown-menu .search-item.remainder-count a {
  text-align: center;
  background: #f1f5f7;
  font-size: 13px;
  color: #777;
}

.dropdown-menu::-webkit-scrollbar {
  position: absolute;
  width: 0.7vw;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color:var(--primaryBg);
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color:  #151414;;
}
.dropdown-menu::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
/*endregion*/

.mini-cart {
  position: fixed;
  right: -360px;
  top: 0;
  background: white;
  height: 100%;
  width: 360px;
  z-index: 999999;
  max-width: 360px;
  transition: all 300ms ease;
  box-shadow: 0 0 20px rgba(0,0,0,.3)
}

.mini-cart.open {
  right: 0
}

.mini-cart .loader {
  position: absolute;
  top: 47%;
  left: 42%
}

.header-title {
  background: var(--primaryBg);
  display: flex;
  padding: 7px
}

.close-icon {
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  line-height: initial
}

.mini-cart p {
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-weight: 600
}

.mini-cart .cart-empty p {
  color: var(--primaryBg);
  margin: 10px 0;
}

.mini-cart .content {
  overflow-y: auto;
  height: 100%
}

.mini-cart .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(55,73,187,.1)
}

.promotion-code {
  padding: 7px 10px
}

.promotion-code input {
  width: 75%;
  padding: 10px;
  margin-right: 4px;
  font-weight: 700;
  border: none
}

.promotion-code button {
  margin-left: -4px;
  width: calc(25% - 4px);
  background: var(--primaryGrad);
  padding: 10px 20px;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
  font-weight: 700
}

.mini-cart .total {
  background: #fff;
  color: #000;
  padding: 9px;
  border-bottom: 1px solid #bfbebe52
}

.mini-cart:last-child .total {
  border: none
}

.mini-cart .title {
  float: left;
  width: 50%
}

.mini-cart .amount {
  text-align: right
}

.checkout-btn button {
  background: var(--primaryGrad);
  width: 100%;
  padding: 12px;
  border: 0;
  color: #fff;
  font-weight: 700;
  cursor: pointer
}

.item-wrap:last-child {
  margin-bottom: 220px
}

.item-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.14);
  position: relative
}

.item-wrap .item {
  width: 75%;
  position: relative;
  padding: 10px;
  font-size: 13px
}

.amount-item {
  font-weight: 700;
  align-items: center;
  display: flex;
  border-left: 1px solid hsl(11deg 80% 45% / 58%);
  padding-left: 5px
}

.item-cancel {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer
}

.item-wrap .image {
  float: left;
  margin-right: 5px;
  width: 20%
}

.item-wrap .name {
  line-height: 18px;
  float: right;
  width: 75%
}

.cart-price {
  margin-top: 10px
}

.item-wrap .price {
  float: left;
  width: 42%;
  margin-top: 3px;
  font-weight: 500
}

.item-wrap .price .symbol {
  margin-right: 3px
}

.quantity-wrapper {
  display: flex;
  float: right
}

.quantity-btn .value {
  width: 26px;
  background: var(--primaryGrad);
  display: inline-block;
  text-align: center;
  line-height: 25px;
  color: #fff;
  font-size: 20px;
  padding-bottom: 0;
  cursor: pointer
}

.quantity-btn span.add-down.value {
  border-radius: 50px 0 0 50px
}

.quantity-btn span.add-up.value {
  border-radius: 0 50px 50px 0;
  font-size: 15px
}

.multiplication-item {
  float: right
}

.quantity-btn .value[disabled] {
  background: rgba(0,0,0,.41)
}

.quantity-btn .quantity {
  width: 28px;
  border: none;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid hsl(11deg 80% 45%);
  border-bottom: 1px solid hsl(11deg 80% 45%);
  border-radius: 0;
  height: 26px
}
.cart-btn {
  position: fixed;
  bottom: 20%;
  right: 20px;
  z-index: 99999;
  background: var(--primaryGrad);
  color: #fff;
  font-weight: 700;
  padding: 10px;
  height: 60px !important;
  width: 60px !important;
  text-align: center !important;
  border: none;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%), -5px 5px 10px rgb(0 0 0 / 10%) !important;
  border-radius: 4px !important;
  cursor: pointer;
}
span.buy-num.value.count {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  background-color: #000 !important;
  color: #fff !important;
  height: 25px !important;
  width: 25px !important;
  font-size: 11px !important;
  line-height: 25px !important;
  border-radius: 100% !important;
  font-weight: 500 !important;
}
.cart-name {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-transform: uppercase !important;
}

.alert {
  background: none repeat scroll 0 0 transparent;
  border: 2px solid #0b2851;
  border-radius: 0;
  font-family: raleway,sans-serif;
  font-size: 13px;
  margin: 20px 0;
  padding: 8px 14px;
  position: relative
}

.alert button.close {
  background-color: rgb(11 40 81);
  color: #fff;
  font-weight: 300;
  line-height: 10px;
  opacity: 1;
  padding: 5px 4px;
  position: absolute;
  right: 10px;
  top: 7px;
  border: none;
  outline: none
}

.alert .close {
  float: right;
  font-size: 21px;
  text-shadow: 0 1px 0 #fff
}

.alert.alert-danger span {
  color: #fff
}

.alert.alert-danger {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  background: #c83d3d;
  color: #fff;
  border-radius: 5px;
  border: none
}

.text-danger {
  color: red
}

.notification {
  position: fixed;
  top: 0;
  width: 100%;
  height: 0;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  background: var(--primaryGrad);
  overflow: hidden;
  transition: height .2s;
  z-index: 9999999999999999999;
  line-height: initial
}
.item-cancel .fa.fa-times-circle:before {
  content: "\e5cd";
  font-family: 'Material Symbols Outlined';
  font-weight: 600;
  position: absolute;
  right: 2px;
  font-size: 16px;
  top: -2px;
}

.notification.active {
  padding: 15px 0;
  height: 50px
}

.notification.active.error {
  margin-top: 0;
  background: red
}

.notification a {
  color: #fff;
  font-weight: 700
}
.overlay.open {
  display: block
}

.overlay {
  content: "";
  position: fixed;
  left: 0;
  top: 72px;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.4);
  z-index: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: none
}
.store-header {
  margin-bottom: 15px
}

.store-header h2 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
}

.stores {
  padding-top: 15px;
  border-top: 2px solid #e7e7e7;
}

.search-store {
  text-align: right
}

.search-store input {
  border-radius: 0;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #eee;
  outline : none;
}

.stores .store {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 70px
}

.stores .store .location {
  padding: 15px;
  display: flex;
  flex: 25%;
  max-width: 25%;
  align-content: flex-start;
  position: relative;
}
.stores .store .location .marker {
  position: absolute;
  background: var(--primaryBg);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  padding: 2px 10px;
  border-radius: 0px 20px 20px 0px;
  color: white;
  top: 30px;
  left: 15px;
  z-index: 2;
}
.select-by-district {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
}

.select-by-district label {
  margin: 0;
}

.select-by-district select {
  border-color: var(--primaryBg);
  padding: 5px 6px;
  border-radius: 20px;
  outline: none;
}
.stores .store .location.hide {
  display: none !important;
}
.show-store input {
  border-radius: 0;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #eee;
  outline: none;
}

.show-store {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
}
.stores .store .location-inner {
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  position: relative;
  text-align: left;
  border-radius: 10px;
  width: 100%;
  background: white;
}

.stores .store .image {
  text-align: center
}

.stores .store .image img {
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 120px;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  background-color: whitesmoke;
}

.stores .store .phone i {
  margin-right: 5px;
  font-size: 20px;
  transform: translateY(4px);
  width: 20px;
  height: 20px;
}

.stores .location h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}

.stores .store_footer .closed-day {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px
}
.stores .store .location hr {
  color: #666666;
}

.location-details p {
  font-size: 13px;
}

.stores .store .location-inner .phone {
  letter-spacing: 1px;
  font-size : 13px;
}


/*region Popup*/
.popup {
  width: 100%;
  height: 100%;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.popup:before {
  content: '';
  display: inline-block;
  height: 100%;
  margin-right: -4px;
  vertical-align: middle;
}

.popup-inner {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  max-width: 90%;
  text-align: center;
}

.popup-inner h1 {
  font-weight: 700;
}

.popup-inner p {
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
}

.popup-close {
  width: 34px;
  height: 34px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 100%;
  border: solid 4px #f00;
  background: #f00;
  cursor: pointer;
}

.popup-close:after,
.popup-close:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 5px;
  height: 4px;
  width: 16px;
  border-radius: 30px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup-close:hover {
  -webkit-transform: translate(50%, -50%) rotate(180deg);
  transform: translate(50%, -50%) rotate(180deg);
  background: #f00;
  text-decoration: none;
  border-color: #ff4e19;
}

.popup-close:hover:after,
.popup-close:hover:before {
  background: #fff;
}

.lb-body img {
  max-width: 100%;
}
.popup-inner .lb-footer {
  color: #fff;
  text-align: left;
  margin-top: 10px;
}

.popup-inner .lb-footer .title {
  float: left;
}

.popup-inner .lb-footer .counter {
  text-align: right;
}

.popup .button {
  position: absolute;
  top: 50%;
  margin-top: -50px;
  cursor: pointer;
  background: none;
  left: 20px;
  line-height: 0;
  opacity: .9;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}

.popup .button.prev {
  border-right: 30px solid #3f3f3f;
  z-index: 99;
}

.popup .button.next {
  border-left: 30px solid #3f3f3f;
  right: 20px;
  left: auto;
}

.popup .button:after {
  content: "";
  position: absolute;
  top: -12px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.popup .button.prev:after {
  right: -27px;
  border-right: 22px solid #fff;
}

.popup .button.next:after {
  left: -27px;
  border-left: 22px solid #fff;
}

.popup span.button i {
  line-height: 0;
}
.f-out {
  visibility: hidden!important;
  transition: visibility 0s linear 500ms,opacity 500ms;
  opacity: 0
}

.f-in {
  transition: visibility 0s linear 500ms,opacity 500ms;
  visibility: visible!important;
  opacity: 1
}

@media (max-width: 480px){
  .popup .button {
    transform: scale(0.65);
  }
  .popup-inner .lb-footer .counter {
    text-align: inherit;
  }
  .popup-close {
    top: -5px;
    right: 5px;
  }
}
/*endregion */
.loader {
  width: 10px;
  height: 10px;
  color: var(--primaryBg);
  box-shadow: -20px -20px 0 10px,
  -20px -20px 0 10px,
  -20px -20px 0 10px,
  -20px -20px 0 10px;
  animation: loader-38 6s infinite;
}

@keyframes loader-38 {
  0% {
    box-shadow: -20px -20px 0 10px,
    -20px -20px 0 10px,
    -20px -20px 0 10px,
    -20px -20px 0 10px;
  }
  8.33% {
    box-shadow: -20px -20px 0 10px,
    20px -20px 0 10px,
    20px -20px 0 10px,
    20px -20px 0 10px;
  }
  16.66% {
    box-shadow: -20px -20px 0 10px,
    20px -20px 0 10px,
    20px 20px 0 10px,
    20px 20px 0 10px;
  }
  24.99% {
    box-shadow: -20px -20px 0 10px,
    20px -20px 0 10px,
    20px 20px 0 10px,
    -20px 20px 0 10px;
  }
  33.32% {
    box-shadow: -20px -20px 0 10px,
    20px -20px 0 10px,
    20px 20px 0 10px,
    -20px -20px 0 10px;
  }
  41.65% {
    box-shadow: 20px -20px 0 10px,
    20px -20px 0 10px,
    20px 20px 0 10px,
    20px -20px 0 10px;
  }
  49.98% {
    box-shadow: 20px 20px 0 10px,
    20px 20px 0 10px,
    20px 20px 0 10px,
    20px 20px 0 10px;
  }
  58.31% {
    box-shadow: -20px 20px 0 10px,
    -20px 20px 0 10px,
    20px 20px 0 10px,
    -20px 20px 0 10px;
  }
  66.64% {
    box-shadow: -20px -20px 0 10px,
    -20px -20px 0 10px,
    20px 20px 0 10px,
    -20px 20px 0 10px;
  }
  74.97% {
    box-shadow: -20px -20px 0 10px,
    20px -20px 0 10px,
    20px 20px 0 10px,
    -20px 20px 0 10px;
  }
  83.3% {
    box-shadow: -20px -20px 0 10px,
    20px 20px 0 10px,
    20px 20px 0 10px,
    -20px 20px 0 10px;
  }
  91.63% {
    box-shadow: -20px -20px 0 10px,
    -20px 20px 0 10px,
    -20px 20px 0 10px,
    -20px 20px 0 10px;
  }
  100% {
    box-shadow: -20px -20px 0 10px,
    -20px -20px 0 10px,
    -20px -20px 0 10px,
    -20px -20px 0 10px;
  }
}


@media (max-width: 991px) {
  .stores .store .location {
    flex: 50%;
    max-width: 50%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cart-btn {
    width: 45px !important;
    height: 45px !important;
    padding: 8px !important;
    right: 5px;
  }

  .cart-btn span.material-symbols-outlined {
    font-size: 18px;
  }

  span.buy-num.value.count {
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    font-size: 10px !important;
  }

  .cart-name {
    font-size: 10px !important;
    margin-top: -5px;
  }
  #search .dropdown-menu {
    width: 100%;
  }
  .dropdown-menu::-webkit-scrollbar {
    position: absolute;
    width: 5px;
  }
  fieldset {padding: 15px;}

  .form-control {
    font-size: 12px;
  }

  .email {
    margin: 0;
  }

  .contact_form .form-group textarea {
    height: 100px !important;
  }

  .main_content.contact-info {
    margin-bottom: 30px;
  }

  .contact-info .contact {
    margin: 15px 0;
    display: flex;
    align-items: center;
    font-size: 12px;
  }
  .contact-info .contact .info-text {
    width: 100%;
  }

  .contact-info .contact .icon {
    margin: 0px 10px 0px 0px !important;
    max-width: 40px;
    width: 35px !IMPORTANT;
  }

  .notification.active {
    padding: 18px 0;
    height: auto;
    font-size: 12px;
  }
  .show-store {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    margin-top: 19px;
  }

  .store-header .col-6 {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .stores .store {
    justify-content: center;
  }
  .stores .store .location {
    flex: 80%;
    max-width: 100%;
  }
  .search-store input {
    width: 100%;
  }
}