/* Checkout */
.checkout-step {
    border-bottom: 2px solid #E8E8E8;
    padding-bottom: 20px;
}

.checkout-step .step-title {
    color: #DE058A;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
}

.checkout-step .step-title .spacer {
    flex: 1 1 auto;
}

.checkout-step .step-title .step-edit {
    color: #262626;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    flex: 0 0 auto
}

.checkout-step .step-title .step-number {
    display: inline-block;
    width: 30px;
}

.checkout-step .content {
    display: none;
}

.checkout-step.-current .content {display: block;}
.checkout-step.-unreachable .step-edit,
.checkout-step.-current .step-edit { display: none; }

.already-have-account {
    margin: 20px 0;
    box-shadow: 0 0 3px 0 #cccccc;
    padding: 20px;
}

.already-have-account a {
    color: #DE058A;
}

.checkout-step .step-title .edit-button {

}

.shipping-methods {
    /* display: flex; */
}

.shipping-methods .shipping-method {
    display: flex;
    padding: 20px;
    background: #FFEFF8;
    margin: 30px 0;
    align-items: center;
}

.nested-radio:checked + .shipping-method {
    background: #FFE2F3;
}

.shipping-method .method-icon {
    flex: 0 0 50px;
    text-align: center;
    margin-right: 20px;
}

.shipping-method .method-icon img {
    border-radius: 5px;
    max-width: 64px;
    margin-bottom: 10px;
}

.shipping-method .method-name {
    font-weight: bold;
    color: #DE058A;
}

.shipping-method .method-price {
    margin-top: 10px;
}

.addresses {
    display: flex;
    flex-direction: column;
}

.addresses > p { margin: 0; }

.addresses .address-item {
    background: #FFEFF8;
    color: #DE058A;
    padding: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.addresses .address-item .nested-radio-span {
    margin: 20px;
}

.addresses .nested-radio:checked + .address-item {
    background: #FFE2F3;
}
.addresses .address-info { flex: 1 1 auto; }
.addresses .address-actions { margin-top: 20px; }
.addresses .address-item .address-alias {
    font-weight: bold;
}

.payment-options {
    display: flex;
    flex-direction: column;
}

.payment-option {
    margin: 30px 0 0 0;
    display: flex;
    padding: 20px;
    background: #FFEFF8;
}

.payment-option-icon {
    display: flex;
    flex: 0 0 50px;
    margin-right: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-option-icon img {
    border-radius: 5px;
    margin: 0;
    width: 50px;
}

.payment-option-name {
    font-weight: bold;
    color: #DE058A;
}

.payment-option .additional-information {
    font-size: 0.9em;
}

.payment-option .modal-header { display: none; }

.nested-radio:checked + .payment-option {
    background: #FFE2F3;
}

.order-options label, .order-options #gift {
    margin: 1em 0;
    display: block;
}

#conditions-to-approve {
    margin: 30px 0;
}

.btn-cart-summary-gift-card {
    padding: 30px 0;
    display: block;
    background: #DE058A;
    color: white;
    text-align: center;
    text-decoration: none;
}
.btn-cart-summary-gift-card.mobile {
    margin-top: 20px;
}
.btn-cart-summary-gift-card i {
    margin-left: 10px;
}
#cart-summary-gift-card-wrapper { display: none; }
#cart-summary-gift-card-wrapper #promo-code { display: block; }
