/* primary */
/* primary hover */
/* dark */
/* light */
/* light hover */
/* accent */
/* accent hover */
.checkout-page__header-container {
  display: flex;
  align-items: center;
}

.checkout-page__header-text-container,
.checkout-page__cart-link-container {
  margin-left: 30px;
  white-space: nowrap;
}
.checkout-page__header-text-container:first-child,
.checkout-page__cart-link-container:first-child {
  width: 100%;
  margin-left: 0;
  white-space: normal;
}

.checkout-page__steps-container {
  margin-bottom: 30px;
  padding-right: 13px;
}

.checkout-page__button-container {
  margin-top: 40px;
}

.checkout-page__cart-info {
  color: #686868;
  font-size: 13px;
}

.checkout-page__cart-total {
  font-size: 14px;
  font-weight: 500;
}

.checkout-page__back-button {
  float: right;
  margin-top: 7px;
}

.checkout-page__back-button-icon {
  transform: rotate(180deg);
}

.checkout-page__container {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.checkout-page__container-content {
  width: calc(100% - 410px);
}

.checkout-page__container-summary {
  width: 410px;
  flex-shrink: 0;
  padding-left: 60px;
}

.checkout-page__step-container {
  position: relative;
}

.checkout-page__spinner {
  color: var(--primary-color);
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  inset: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

.checkout-page__step-container_loading .checkout-page__spinner {
  display: flex;
}

@media (min-width: 1024px) {
  .checkout-page__responsive-step {
    display: none;
  }
}
@media (max-width: 1023px) {
  .checkout-page__container {
    flex-wrap: wrap;
  }
  .checkout-page__container-content {
    width: 100%;
  }
  .checkout-page__cart-link-container {
    display: none;
  }
  .checkout-page__steps-container {
    display: none;
  }
  .checkout-page__container-summary {
    display: none;
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
  .checkout-page__button {
    width: 100%;
  }
  .checkout-page__back-button {
    display: none;
  }
  .checkout-page__responsive-step {
    line-height: 1.2;
    padding: 22px 15px;
    margin: 0 -15px;
    font-weight: 500;
    background-color: #fafafa;
    color: #bdbdbd;
    position: relative;
    pointer-events: none;
    cursor: pointer;
  }
  .checkout-page__responsive-step::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background-color: #f2f2f2;
  }
  .checkout-page__responsive-step:last-child::after {
    content: none;
  }
  .checkout-page__responsive-step_current::after {
    content: none;
  }
  .checkout-page__responsive-step_current .checkout-page__responsive-step-arrow {
    transform: rotate(90deg);
  }
  .checkout-page__responsive-step_current,
  .checkout-page__responsive-step_done {
    color: #1b1b1b;
  }
  .checkout-page__responsive-step_done {
    pointer-events: auto;
  }
  .checkout-page__step-container {
    padding: 15px 0 25px;
  }
  .checkout-page__responsive-step-arrow-container {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    width: 6px;
    height: 10px;
    margin: auto 0;
  }
  .checkout-page__button-container {
    margin-top: 25px;
  }
}