/*@import "./custom-shop-common.css";*/

/* Header */
.cart-step-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px 28px 14px;
  row-gap: 16px;
  justify-items: start;
  z-index: 100;
}

.cart-step-header--dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.cart-step-header--light {
  background-color: var(--gray-light);
  color: var(--brand-blue);
}

.cart-step-header-cart-button-wrapper {
  margin-left: auto;
}

.cart-step-header-cart-button-placeholder,
.cart-step-header-cart-button {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.cart-step-header-cart-button-wrapper svg {
  width: 32px;
}

.cart-step-header--dark .cart-step-header-cart-button-wrapper svg {
  color: var(--white);
}

.cart-step-header--light .cart-step-header-cart-button-wrapper svg {
  color: var(--brand-blue);
}

.cart-step-header-cart-button-placeholder {
  display: none;
}

@media (min-width: 1024px) {
  .cart-step-header {
    display: flex;
    grid-column: span 2;
    align-items: center;
    padding: 16px 28px;
    gap: 16px;
  }

  .cart-step-header-cart-button {
    display: none;
  }

  .cart-step-header-cart-button-placeholder {
    display: flex;
  }
}

.cart-step-header-steps {
  display: flex;
  align-items: center;
  grid-row: 2;
  grid-column: span 2;
  justify-self: end;
}

@media (min-width: 1024px) {
  .cart-step-header-steps {
    grid-column: span 2;
    grid-row-start: 1;
    grid-column-start: 2;
    justify-self: start;
    margin: 0;
  }
}

.cart-step-step-indicator {
  display: flex;
  align-items: center;
}

.cart-step-step-circle {
  width: 30px;
  height: 30px;
  font-size: var(--font-body-xsmall);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-dark);
  color: var(--white);
  border: 1px solid var(--gray-dark);
}

button.cart-step-step-circle {
  cursor: pointer;
}

.cart-step-step-circle.active {
  background: var(--white);
  color: var(--brand-blue);
  border: 1px solid var(--white);
}

.cart-step-step-line {
  height: 1px;
  width: 44px;
  background: var(--gray-dark);
}

.cart-step-cart-icon {
  width: 28px;
  height: 24px;
}

.cart-step-cart-counter {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

.cart-step-header-logo-wrapper {
  min-width: 100px;
  display: flex;
  align-items: center;
}

/* Logo */
.cart-step-header-logo {
  position: relative;
  z-index: 100;
  display: inline-flex;
}

.cart-step-header-logo svg {
  width: 40px;
  height: 40px;
  color: var(--brand-yellow);
}
