main.cart {
  min-height: calc(100vh - 665px);
}

body.checkout .header {
  padding: 22px 12px;
}

.btn-coupon {
  height: 40px;
  line-height: 1;
}

.coupon-cont input {
  height: 40px;
}

.empty-cart-icon {
  left: -15px;
}

.cart-empty {
  position: absolute;
  top: calc(50% - 27px);
  left: calc(50% + 2px);
  right: 0;
}

.maxw800 {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-cont {
  padding: 0 24px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}

.checkout-item {
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

.checkout-item:last-of-type {
  border-bottom: none;
}

.cart-item {
  padding: 24px 0;
}

.pb-24 {
  padding-bottom: 24px;
}

.btn-qty-wrapper {
  border: 1px solid #e1e1e1;
  max-width: 121px;
}

.cart-info {
  margin-top: 12px;
  color: var(--darkgray);
}

.btn-qty {
  border: none;
  width: 42px;
  height: 46px;
  background: #fff;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 1;
  user-select: none;
}

.btn-plus {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-min {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-qty:hover {
  background: var(--primary);
}

.inp-qty {
  width: 48px;
  height: 46px;
  border: none;
  padding: 8px 5px;
  line-height: 1;
}

.inp-qty:focus {
  border: none;
}

.btn-add {
  padding: 7px 44px;
}

.btn-qty.disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background: #fff;
}

.coupon-wrapper {
  display: none;
  padding-top: 15px;
}

.coupon-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.coupon-toggle .arr-down {
  transition: transform 0.2s ease;
}

.coupon-toggle.active .arr-down {
  transform: rotate(-180deg);
}

.cart-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(253, 253, 253, 0.4392156863);
  z-index: 2;
  cursor: not-allowed;
}

.cart-loader-img {
  width: 80px;
  height: 60px;
}

@media (max-width: 767px) {
  .auth-box {
    max-width: 100%;
  }
  .service-circle {
    margin-right: 0;
  }
  .service-txt {
    font-size: 14px;
  }
  .empty-cart-icon {
    left: -8px;
  }
  .empty-cart-icon svg {
    width: 100px;
    height: 100px;
  }
  .cart-empty {
    top: calc(50% - 25px);
    left: calc(50% + 1px);
  }
  .mt-md-80 {
    margin-top: 80px;
  }
}
.checkout-steps-wrapper {
  max-width: 730px;
  width: 100%;
}

.step-item-circle {
  width: 23px;
  min-width: 23px;
  height: 23px;
  border-radius: 50%;
  background: rgb(248, 248, 248);
  padding: 5px;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  border: 1px solid #c6c6c6;
}

.step-item.done .step-item-circle,
.step-item.current .step-item-circle,
.step-item-title {
  background: #fff;
  border: 1px solid var(--border-color);
}

.step-item-number,
.step-item.done .step-item-done,
.step-item.current .step-item-number {
  display: flex;
}

.step-item-done,
.step-item.current .step-item-done,
.step-item.done .step-item-number {
  display: none;
}

.step-item-name {
  font-size: 14px;
  margin: 0 14px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.step-item:last-of-type .step-item-line {
  display: none;
}

.step-item {
  padding-left: 0;
  padding-right: 0;
}

body.checkout .header.sticky {
  position: relative;
  padding: 22px 12px;
  box-shadow: none;
  -webkit-animation: none;
  animation: none;
}

main.checkout {
  min-height: calc(100vh - 209px);
}

.checkout-container {
  max-width: 1075px;
}

.checkout-right-cont {
  max-width: 435px;
}

.checkout-login-title {
  max-width: 824px;
}

@media (max-width: 991px) {
  body.checkout .logo-img {
    width: 150px;
  }
  .step-item {
    max-width: 75px;
  }
  .step-item-name {
    display: none;
  }
  .checkout-right-cont {
    max-width: 100%;
  }
}
.checkout-block-checked {
  position: absolute;
  top: calc(50% - 11.5px);
  right: -12px;
  width: 23px;
  min-width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #e9e9e9;
  padding: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  border: 1px solid var(--primary);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.checkout-block-checked svg {
  width: 12px;
}

.checkout-block {
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}

.block-radio:checked {
  border-color: var(--primary);
}

.block-radio:checked + .checkout-block-checked {
  opacity: 1;
}

.block-radio {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  z-index: 10;
  border-radius: 5px;
}

.block-radio:hover {
  border-color: var(--primary);
}

.step-item-title {
  min-width: 29px;
  width: 29px;
  height: 29px;
  font-size: 18px;
}

.checkout-block-desc {
  padding-top: 16px;
}

.checkout-edit-del-data {
  max-width: 250px;
}

.-unreachable {
  display: none;
}

.checkout-content {
  min-height: calc(100vh - 404px);
}

.block-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.checkout-products-summ {
  padding-top: 12px;
  padding-bottom: 12px;
}

.checkout-block-summ {
  height: 100%;
}

.auth-box {
  border: 1px solid #ddd;
}

.maxw848 {
  max-width: 848px;
}

.checkout-register-btn {
  max-width: 500px;
}

.checkout-back-btn {
  display: flex;
}

.mt-30 {
  margin-top: 30px;
}

.checkout-block_img {
  height: 42px;
}

.checkout-block.payment-no-image {
  padding: 28px 24px;
}

.invoice-wrapper {
  display: none;
}

.footer-mini {
  padding: 24px 0;
  background: #fff;
}

@media (min-width: 992px) {
  .checkout-block-sticky {
    position: sticky;
    top: 35px;
    left: 0;
    right: 0;
  }
  .checkout-block.payment-no-image {
    padding: 37px 24px;
  }
  .pl-8 {
    padding-left: 8px;
  }
  .pr-8 {
    padding-right: 8px;
  }
}
@media (max-width: 991px) {
  .checkout-block-checked {
    right: 24px;
  }
}
@media (max-width: 767px) {
  body.checkout .header {
    padding: 16px 0;
  }
  .step-item {
    max-width: 45px;
  }
}
@media (max-width: 575px) {
  .checkout-block {
    padding: 15px 24px;
  }
  .checkout-block.py24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .checkout-edit-del-data {
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .checkout-item-desc {
    max-width: 205px;
  }
}
@media (max-width: 430px) {
  .checkout-btn-wrapper {
    flex-direction: column-reverse;
    width: 100%;
  }
  .checkout-btn-wrapper .btn {
    width: 100%;
  }
  .checkout-btn-wrapper .btn:first-of-type {
    margin-top: 20px;
  }
}
@media (max-width: 350px) {
  .checkout-block-checked {
    right: 8px;
  }
}
.checkout-block.no-img {
  padding: 30px 24px;
}

/*# sourceMappingURL=checkout.css.map */
