@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 18px;
  outline: none;
}

a {
  color: #fff;
  text-decoration: none;
}

.btn {
  padding: 10px 25px 10px 25px;
  border-radius: 8px;
  gap: 12px;
  background: #212121;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_disabled {
  pointer-events: none;
}
.btn:hover {
  background: #fa5a08;
  color: #fff;
}
.btn_border {
  background: none;
  transition: 0.3s;
  border: 2px solid #fa5a08;
}
.btn_border:hover {
  background: #fa5a08;
}
.btn_active {
  background: #fa5a08;
  border: none;
  transition: 0.3s;
}
.btn_active:hover {
  background: rgb(253, 122, 58);
}
.btn_remove {
  height: 100%;
  padding: 0 10px;
  margin: 0 5px;
}
.btn_remove-border {
  margin: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn_link {
  line-height: 14px;
}
.btn_link:hover {
  background: #212121;
}
.btn_link:hover .btn_link-title {
  color: #fa5a08;
}
.btn_link-info {
  text-align: left;
  color: #ababab;
  font-size: 14px;
}
.btn_link-title {
  transition: 0.3s;
  text-align: left;
  font-size: 16px;
  color: #fff;
}
.btn_group-r {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.btn_group-l {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.btn-map {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-map::before {
  content: '';
  width: 0;
  position: absolute;
  bottom: -15px;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fa5a08;
}
.btn_radio {
  display: flex;
  flex-direction: column;
  min-height: 120px;
  width: 50%;
  align-items: flex-start;
  text-align: left;
}
.btn_descr {
  font-size: 14px;
  padding-top: 10px;
}

.main-filter {
  display: flex;
  flex-wrap: wrap;
}
.main-filter-mob {
  display: none;
}

.btn-icon {
  display: flex;
  align-items: center;
}
.btn-icon::before {
  content: '';
  margin-right: 5px;
  width: 24px;
  height: 24px;
  display: block;
}
.btn-icon-pay::before {
  background-image: url('../img/icn/Pickup.svg');
}
.btn-icon-card::before {
  background-image: url('../img/icn/card.svg');
}
.btn-icon-deliver::before {
  background-image: url('../img/icn/deliver.svg');
}
.btn-icon-cash::before {
  background-image: url('../img/icn/cash.svg');
}

.btn_lang {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  pointer-events: all;
  cursor: pointer;
  background: transparent;
  border: none;
}
.btn_lang::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #212121;
}
.btn_lang__active {
  pointer-events: none;
  cursor: default;
}
.btn_lang__active::after {
  background: #fa5a08;
}

select {
  min-width: 200px;
  padding: 13px;
  background: #212121;
  border: none;
  border-radius: 8px;
}
select:focus-visible {
  outline: none;
}
select option:checked {
  color: #fa5a08;
}

.custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  background-color: #6a6a6a;
  border-radius: 8px;
  z-index: 555;
}

.custom-option {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #212121;
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-select {
  display: flex;
  flex-direction: column;
  width: 40px;
  padding: 3px;
  border: 1px solid #fa5a08;
  border-radius: 4px;
}

.custom-select-icon {
  width: 100%;
  height: 3px;
  margin: 2.5px 0;
  border-radius: 2px;
  background: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type='number'] {
  -moz-appearance: textfield; /* Firefox */
}

input,
textarea {
  background: #212121 !important;
  min-height: 60px !important;
  border-radius: 8px;
  padding: 10px;
  border: none;
}

.quantity {
  display: flex;
  justify-content: flex-end;
}
.quantity input {
  width: 50px;
  border-radius: 0;
  text-align: center;
}

.form-row {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.form-row.notes {
  width: 100% !important;
}

.input-text {
  margin-top: 15px;
  width: 100%;
}

#coupon {
  border: 1px solid #fa5a08 !important;
}

#errorMaxAmount {
  color: #de2c2c;
  font-size: 14px;
  margin-bottom: 10px;
}

.susheff-item__title {
  font-size: 32px;
  font-weight: 500;
}
.susheff-item__size {
  font-weight: 500;
  color: #ababab;
}
.susheff-item__preview {
  position: relative;
}
.susheff-item__img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
}
.susheff-item__compound,
.susheff-item__additional {
  color: #ababab;
}
.susheff-item__compound span,
.susheff-item__additional span {
  color: #fff;
}

.woocommerce-billing-fields__field-wrapper {
  display: flex;
  gap: 10px;
}

.woocommerce-additional-fields h3,
.woocommerce-additional-fields [for='order_comments'] {
  display: none !important;
}

#billing_last_name_field,
#billing_company_field,
#billing_address_1_field,
#billing_city_field,
#billing_country_field,
#billing_address_2_field,
#billing_state_field,
#billing_postcode_field,
#billing_email_field {
  display: none !important;
}

.woocommerce-form__label-for-checkbox {
  display: none !important;
}

.woocommerce-terms-and-conditions-wrapper {
  margin: 0 !important;
}

.order-list {
  display: flex;
  align-items: center;
}
.order-list__img {
  width: 67px;
  height: 53px;
}
.order-list__img img {
  width: 100%;
  height: 100%;
}
.order-list__info {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}

#order_comments {
  background: #212121 !important;
  min-height: 60px !important;
  border-radius: 8px;
  padding: 10px;
  border: none;
}

.cart_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #212121;
}
.cart_item__view {
  width: 200px;
  height: 135px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart_item__view img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.cart_item__block {
  display: flex;
}
.cart_item__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 10px;
  align-items: flex-start;
  text-align: left;
}
.cart_item__qty {
  display: flex;
  align-items: center;
}
.cart_item__control {
  display: flex;
}
.cart_item__bonus {
  display: flex;
  width: 120px;
  justify-content: center;
}
.cart_item__price {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
}
.cart_item__count {
  border-radius: 0;
}
.cart_item__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2.5px 0;
}

.payment-result {
  position: relative;
  background: #212121;
  padding: 20px;
}
.payment-result::before,
.payment-result::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 25px;
  background-image: url('../img/payBorder.svg');
  background-repeat: repeat-x;
  left: 0;
}
.payment-result::before {
  top: -15px;
}
.payment-result::after {
  bottom: -15px;
  transform: rotate(180deg);
}

.delivery,
.payment_method {
  gap: 10px;
  display: flex;
}

.errorMessage {
  border: 1px solid #de2c2c;
  padding: 2.5px;
  font-size: 18px;
  text-align: center;
  border-radius: 8px;
}

.product__img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.product__img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.checkout-review {
  display: flex;
  flex-direction: column;
}
.checkout-review__item {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #6a6a6a;
}
.checkout-review__item:nth-last-child(1) {
  border: none;
}
.checkout-review__img {
  width: 120px;
  border-radius: 8px;
  padding: 0 10px;
}
.checkout-review__title {
  font-size: 15px;
}
.checkout-review__total {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.susheff_dark {
  background: #0e0e0e;
}

header {
  position: absolute;
  transition: 0.3s;
  top: 0;
  width: 100%;
  background: #0e0e0e;
  z-index: 999;
}

header.sticky {
  position: fixed;
}

main {
  padding-top: 90px;
}

.header__logo {
  display: flex;
  align-items: center;
}
.header__info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__time {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.sticky-filter {
  position: fixed;
  top: 90px;
  left: -10px;
  z-index: 999;
}

.menu_tel {
  padding: 0;
  margin: 0;
}
.menu_tel li {
  list-style: none;
  padding-bottom: 10px;
}

.gap-10 {
  gap: 10px;
}

.hover-item {
  transition: 0.3s;
  border: 1px solid transparent;
}
.hover-item:hover {
  background: #2e2e2e;
}

.price {
  font-size: 24px;
  font-weight: 500;
  cursor: default;
}

.status {
  padding: 2px 15px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 6px;
  cursor: default;
}
.status-hit {
  background: #fa5a08;
}
.status-new {
  background: #62c036;
}
.status-rating {
  background: #de2c2c;
}
.status-rating__hot {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  background: #fff;
}
.status-rating__hot-active {
  opacity: 1;
}

.sub-text {
  color: #ababab;
}

.set-grid__item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 100%;
  justify-content: space-between;
  border: 1px solid #fa5a0821;
}
.set-grid__item-img {
  width: 100%;
  height: 210px;
}
.set-grid__item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: inherit;
}
.set-grid__item-decr {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.item-status {
  position: absolute;
  top: 12px;
  left: 12px;
}

.dscr-count,
.dscr-sub_title {
  font-size: 14px;
}

.why-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-item img {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
}
.why-item img:hover {
  transition: 0.3s;
  opacity: 0.8;
}
.why-title {
  z-index: 2;
  font-size: 24px;
  font-weight: 500;
}

.underline {
  border-bottom: 1px solid #2e2e2e;
}

.separator {
  border-top: 1px solid #212121;
  margin: 10px 0;
  padding: 15px 0;
}

.h5 {
  font-size: 18px;
  padding-bottom: 10px;
}

.descr {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #ababab !important;
  padding-bottom: 5px;
}

.susheff-title {
  font-size: 32px;
  font-weight: 500;
  padding-left: 20px;
}

.footer__maps {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.wallet_m,
.woocommerce-notices-wrapper {
  display: none;
}
.btn.btn_border.load {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

#place_order.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.wc-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 990px) {
  .btn {
    padding: 5px 10px;
    min-height: 30px;
  }
  .header__info {
    flex-direction: column;
  }
  .payment-result__pay {
    border-top: 1px solid #6a6a6a;
    margin: 10px 0;
    flex-direction: column;
  }
  .payment-result__count {
    border-top: 1px solid #6a6a6a;
    margin: 10px 0;
  }
  .cart_item {
    flex-direction: column;
  }
  .cart_item__qty {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header__info {
    flex-direction: row;
  }
  .header__wallet,
  .main-filter {
    display: none;
  }
  .main-filter-mob {
    display: block;
  }
  .payment-result {
    margin-top: 50px;
  }
  .payment-result__count,
  .payment-result__pay {
    border: none;
    margin: 10px 0;
    flex-direction: row;
  }
  .wallet_m {
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    z-index: 777;
    bottom: 0;
    left: 0;
    background: #212121;
  }
  .payment-item {
    flex-direction: column;
  }
  .payment-item__group {
    padding-top: 10px;
    flex-direction: row-reverse;
    justify-content: space-around;
  }
}
@media (max-width: 576px) {
  .hide-m {
    display: none;
  }
  .btn_remove {
    height: 100% !important;
  }
  .btn-map {
    width: 70vw;
  }
  .set-grid__item {
    margin: 0 auto;
    width: 70%;
  }
  .title-mobile {
    margin-top: 25px;
  }
  .header__logo {
    flex-direction: column;
  }
  .header__time {
    padding: 0;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
@media (max-width: 400px) {
  .set-grid__item {
    margin: 0 auto;
    width: 100%;
  }
} /*# sourceMappingURL=style.css.map */
