.cart-summary {
  padding: 15px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  background-color: #f8f8f8;
}

.cart-summary__title {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #000000;
}
@media (max-width: 767px) {
  .cart-summary__title {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.cart-summary__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.cart-summary__item.hidden {
  display: none;
}
@media (max-width: 767px) {
  .cart-summary__item {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.cart-summary__item--total {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .cart-summary__item--total {
    margin-top: 20px;
    font-size: 20px;
  }
}

.cart-summary__value {
  font-weight: 800;
}
.cart-summary__value--sale {
  font-weight: 400;
  color: #e41c1c;
}
.cart-summary__value--free {
  font-weight: 400;
  color: #28995e;
}

.cart-summary__wrapper {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cart-summary__wrapper {
    margin-bottom: 20px;
  }
}

.cart-summary__checkout {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  background: #28995e;
  border-radius: 999rem;
}
.cart-summary__checkout a {
  color: #ffffff;
}
.cart-summary__checkout:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .cart-summary__checkout {
    padding: 5px;
    font-size: 16px;
  }
}

.cart-summary__info {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}
.cart-summary__info a {
  color: #005f60;
}
.cart-summary__info a:hover {
  color: #000000;
}

/* .cart-summary-checkout-wrapper {
  width: 450px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .cart-summary-checkout-wrapper {
    flex-shrink: 1;
    min-width: 300px;
  }
}
@media (max-width: 1023px) {
  .cart-summary-checkout-wrapper {
    width: 100%;
    min-width: none;
  }
} */

.cart-summary--checkout {
  background-color: #fff;
}
.cart-summary--checkout .cart-summary__info {
  margin-top: 0;
  text-align: right;
}
.cart-summary--checkout .cart-summary__wrapper {
  margin-bottom: 15px;
}
