.checkout-layout:after {
  content: "";
  display: table;
  clear: both;
}
.checkout-layout__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.checkout-layout__container {
  width: 65%;
  float: left;
}
@media screen and (max-width: 992px) {
  .checkout-layout__container {
    width: 100%;
  }
}
.checkout-layout__aside {
  width: 35%;
  float: left;
  padding-left: 16px;
}
@media screen and (max-width: 992px) {
  .checkout-layout__aside {
    width: 100%;
    padding-left: 0;
  }
}

.checkout-panel {
  border: 1px solid #D5D7D9;
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: 0 4px 6px 0 rgba(25, 25, 27, 0.0901960784);
  padding: 24px;
  margin-bottom: 16px;
}
.checkout-panel--alert {
  border-color: #E58C83;
  box-shadow: 0 4px 6px 0 rgba(229, 140, 131, 0.0901960784);
}
.checkout-panel--alert > .checkout-panel__title {
  color: #D84B3B;
}
.checkout-panel__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 16px;
}
.checkout-summary__actions {
  margin-top: 16px;
}
.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.checkout-summary__item:first-child {
  margin-top: 0;
}
.checkout-summary__item--separator {
  border-top: 1px solid #D5D7D9;
  padding-top: 16px;
}
.checkout-summary__item-label {
  color: #999BA1;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}
.checkout-summary__item-label--total {
  color: #515151;
  font-weight: bold;
}
.checkout-summary__item-value {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
}
.checkout-summary__item-value--discount {
  color: #469C53;
}
.checkout-summary__item-value--tax {
  font-weight: normal;
}

.checkout-coupon__wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}
.checkout-coupon__label {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}
.checkout-coupon__label--applied {
  color: #51B560;
}
.checkout-coupon > .control {
  width: 200px;
}
.checkout-coupon__error {
  color: #FF5A1F;
  font-size: 12px;
  line-height: 14px;
}

.checkout__terms-item {
  margin-top: 14px;
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 530px) {
  .checkout__terms-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.checkout__terms-item__cell {
  flex-shrink: 0;
}
.checkout__terms-item__cell--large {
  width: 33%;
}
@media screen and (max-width: 530px) {
  .checkout__terms-item__cell--large {
    width: 100%;
  }
}
.checkout__terms-item__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #19191B;
}
.checkout__terms-item__description {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #999BA1;
}
.checkout__terms-item__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #468EEE;
  text-decoration: underline;
  position: relative;
  padding-right: 26px;
}
.checkout__terms-item__link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/link.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.checkout .select2-results {
  color: #5A5C62;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  border: 1.5px solid #EAEBEC;
  border-radius: 12px;
}
.checkout .select2-results__options {
  border-radius: 12px;
}
.checkout .select2-results li {
  position: relative;
  padding-left: 32px !important;
}
.checkout__payments-option {
  position: relative;
}
.checkout__payments-option__image {
  position: absolute;
  top: 5px;
  left: -9px;
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
.checkout__payments-option__text {
  padding-left: 48px;
  font-weight: 400;
  font-size: 14px;
  color: #3B3D41;
}
.checkout__payments-option__title {
  padding-left: 48px;
  font-weight: 700;
  font-size: 14px;
  color: #19191B;
}
.checkout-panel__select .select2-selection__placeholder::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/card.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}
