.checkout,
.checkout *,
.checkout *::before,
.checkout *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.checkout {
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
    text-align: center;
}
.checkout__wrapper {
    padding: 32px 16px 0;
}
.checkout__heading {
    color: #234864;
    text-transform: uppercase;
    font-size: 40px;
}
.checkout__section {
    margin: 0 auto;
    margin-top: 32px;
}
.checkout__package {

}
.checkout__package-txt {
    font-size: 20px;
    text-align: left;
}
.checkout__package-txt:not(:last-child) {
    margin-bottom: 4px;
}
.checkout__section-heading {
    color: #234864;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 12px;
}
.checkout__section-heading-additional {
    margin-top: 24px;
}
.checkout__customer-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 16px;
}
.checkout__customer-info-input-block {
    display: flex;
    flex-direction: column;
}
.checkout__text-input-label {
    align-self: flex-start;
    margin-bottom: 4px;
    font-size: 14px;
}
.checkout__text-input {
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    border: .0625rem solid #234864;
    padding: 7.5px 10px;
    max-height: none;
    border-radius: 0;
}
.checkout__payments {
    max-width: 340px;
    width: 100%;
}
.checkout__agreements {
    max-width: 340px;
    width: 100%;
}
.checkout__input-box-block {
    display: flex;
    align-items: center;
}
.checkout__input-box-block:not(:last-child) {
    margin-bottom: 4px;
}
.checkout__box-input {
    cursor: pointer;
}
.checkout__box-input-label {
    margin-left: 4px;
    cursor: pointer;
}
.checkout__link {
    color: inherit;
    text-decoration: none;
}
.checkout__link:hover {
    text-decoration: underline;
}
.checkout__link--visible {
    text-decoration: underline;
}
.checkout__package {
    text-align: left;
}
.btn.checkout__submit-btn {
    background: #ff9800;
    color: #234864;
    width: max-content;
    margin: 0 auto;
}
.btn {
    display: block;
    border: none;
    border-radius: 4px;
    border-radius: 100px;
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 50px;
    cursor: pointer;
}

.btn:active {
    transform: translateY(2px);
    border: none;
    outline: none;
}
@media screen and (min-width: 360px) {
    .checkout__box-input-label {
        margin-left: 8px;
    }
}
@media screen and (min-width: 480px) {
    .checkout__customer-info {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, max-content);
        grid-gap: 16px 32px;
    }
    .checkout__customer-info-input-block--wide {
        grid-column: 1 / -1;
    }
}

.checkout__error-box {
    border: 1px solid #b9b9b9;
    border-left: 4px solid #dc3232;
    background-color: #fff;
    padding: 12px;
    padding-right: 32px;
    margin-left: 0;
    width: max-content;
    max-width: 512px;
}
.checkout__payment-logo {
    height: 24px;
    margin-bottom: 8px;
}

.checkout__payment-logo:not(:last-child) {
    margin-right: 8px;
}

.coupon-feedback {
    margin-top: 5px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    display: none;
}

.coupon-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.coupon-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.coupon-feedback.loading {
    background-color: #e2e3e5;
    color: #495057;
    border: 1px solid #d6d8db;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.discount-info {
    color: green;
    font-size: 0.9em;
    display: inline-block;
    margin-top: 2px;
}

.upsell-checkbox {
position: relative;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  color: #234864;
  padding: 15px 15px 15px 55px;
  border: 1px dashed #234864;
  width: 100%;
}

.upsell-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 15px;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: 0.3s;
}

.upsell-checkbox input:checked ~ .checkmark {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.upsell-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.upsell-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.package__checkbox-wrapper{
    margin-top: 15px;
}