.scp-is-hidden {
  display: none;
}

.scp-toasts {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  display: grid;
  gap: 10px;
  max-width: min(420px, 100vw - 32px);
}

.scp-toast {
  background: #DFEDE8;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.scp-toast__content {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.35;
}
.scp-toast__title {
  font-weight: 700;
  margin: 0 0 2px 0;
  font-size: 14px;
  color: #0E4466;
}
.scp-toast__message {
  margin: 0;
  color: #0E4466;
}
.scp-toast--success .scp-toast__icon {
  background: rgba(46, 204, 113, 0.25);
}
.scp-toast--error .scp-toast__icon {
  background: rgba(231, 76, 60, 0.25);
}
.scp-toast__close {
  border: 0;
  background: transparent;
  color: #0E4466;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  margin-left: 6px;
}

.scp-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.scp-badge__count {
  position: relative;
  display: block;
  width: 24px;
  text-align: center;
  border-radius: 999px;
  font-size: 12.8px;
  line-height: 24px;
  font-weight: 700;
  background-color: #2CADB4;
  color: #fff;
}
.scp-badge__count.is-hidden {
  display: none;
}
@media (max-width: 1150px) {
  .scp-badge__count {
    top: -12px;
    margin-left: -8px;
  }
}
@media (min-width: 1151px) {
  .scp-badge__count {
    top: -10px;
    margin-left: 4px;
  }
}
.scp-badge__icon-box {
  border: 1px solid #B5DADE;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.scp-badge__icon-box__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 1150px) {
  .scp-badge__icon-box {
    width: 38px;
    height: 38px;
  }
}
@media (min-width: 1151px) {
  .scp-badge__icon-box {
    display: none;
  }
}

.scp-base-cart {
  margin: 0 !important;
  margin-bottom: 32px !important;
}

.scp-cart {
  box-sizing: border-box;
}
.scp-cart *,
.scp-cart *::before,
.scp-cart *::after {
  box-sizing: border-box;
}
.scp-cart__body {
  margin-bottom: 16px;
  container-type: inline-size;
}
.scp-cart__btn {
  --scp-qty-btn-padding: 10px;
  --scp-qty-btn-font-size: 16px;
  --scp-qty-btn-line-height: 1.2;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: calc((var(--scp-qty-btn-font-size) * var(--scp-qty-btn-line-height) + 2 * var(--scp-qty-btn-padding)) * 0.5);
  padding: var(--scp-qty-btn-padding);
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: var(--scp-qty-btn-font-size);
  line-height: var(--scp-qty-btn-line-height);
  text-align: center;
  color: #fff;
  background-color: #2CADB4;
}
.scp-cart__header {
  margin: 0 !important;
  margin-bottom: 16px !important;
}
.scp-cart__footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.scp-cart__clear-btn {
  margin-left: auto;
  padding-right: 26px;
  padding-left: 26px;
}
.scp-cart__row {
  border: solid 1px #DEEBF4;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  background-color: #fff;
}
@container (width < 440px) {
  .scp-cart__row .scp-cart__column-for-mobile {
    flex-direction: column;
    align-items: flex-start;
  }
}
.scp-cart__row:not(:last-child) {
  margin-bottom: 16px;
}
.scp-cart__row--missing-price {
  opacity: 0.5;
}
.scp-cart__image {
  width: 128px;
  height: 128px;
  object-fit: contain;
}
@container (width < 600px) {
  .scp-cart__image {
    width: 72px;
    height: 72px;
  }
}
.scp-cart__main {
  flex: 1;
}
.scp-cart__meta {
  font-size: 0.9em;
  opacity: 0.8;
}
.scp-cart__missing {
  font-weight: 700;
}
.scp-cart__qty {
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background-color: #2CADB4;
}
.scp-cart__qty-btn {
  aspect-ratio: 1/1;
  height: calc(var(--scp-qty-btn-font-size) * var(--scp-qty-btn-line-height) + 2 * var(--scp-qty-btn-padding));
}
.scp-cart__qty-value {
  min-width: 2ch;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: var(--scp-qty-btn-font-size);
  line-height: var(--scp-qty-btn-line-height);
  color: #fff;
}
.scp-cart__remove-btn {
  aspect-ratio: 1/1;
  height: calc(var(--scp-qty-btn-font-size) * var(--scp-qty-btn-line-height) + 2 * var(--scp-qty-btn-padding));
}
.scp-cart__total {
  display: flex;
  align-items: flex-end;
}
.scp-cart__total__heading {
  margin-bottom: 4px;
}
.scp-cart__total__price {
  display: block;
  margin-left: 4px;
  font-size: 24px;
  font-weight: bold;
  color: #2cadb4;
}
.scp-cart__column-for-mobile {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.scp-pharmacy-carts {
  margin-top: 16px;
}

.scp-pharmacy-cart {
  border: solid 1px #DEEBF4;
  border-radius: 18px;
  padding: 16px;
}
.scp-pharmacy-cart:not(:last-child) {
  margin-bottom: 16px;
}
.scp-pharmacy-cart__logo {
  width: 128px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

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