#wc-checkout-root {
    position: relative;
}
#wc-checkout-root .order-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
#wc-checkout-root .order-side {
    max-width: 600px;
    width: 100%;
}
#wc-checkout-root .form-group.form-row {
    display: flex;
    justify-content: space-between;
}
#wc-checkout-root .form-row .form-group {
    width: 47%;
    margin-bottom: 0;
}
#wc-checkout-root .form-group.form-row::before,
#wc-checkout-root .form-group.form-row::after {
    display: none;
}
#wc-checkout-root .form-group {
    margin-bottom: 40px;
}
#wc-checkout-root .submit-btn {
    max-width: 100%;
    width: 100%;
    line-height: 45px;
    background-color: #000;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 25px;
    display: block;
}

#wc-checkout-root .order-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
}
#wc-checkout-root input.invalid, #wc-checkout-root select.invalid {
    border-color: red;
}
#wc-checkout-root .error {
    color: red;
    font-size: 12px;
}
.checkout-cart-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.checkout-cart-item .inner {
    display: flex;
}
.checkout-cart-item .item__info {
    width: 100%;
}

.checkout-cart-item .item__name__row {
    display: flex;
    justify-content: space-between;
}
.checkout-cart-item .item__name__row .delete-icon {
    width: 25px;
    min-width: 25px;
    height: 25px;
    margin-left: 25px;
    cursor: pointer;
}
.checkout-cart-item .item__name__row .delete-icon svg {
    width: 100%;
    height: 100%;
    stroke: #FFB2B2;
}

.checkout-cart-item .item__image {
    max-width: 150px;
    width: 150px;
    min-width: 150px;
    margin-right: 20px;
}
.checkout-cart-item .item__name {
    font-size: 16px;
    margin-bottom: 20px;
}
.checkout-cart-item .item__desc {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}
.checkout-cart-item .item__prices {
    display: flex;
    font-size: 16px;
}
.checkout-cart-item .price-row {
    display: flex;
}
.checkout-cart-item .item__price {
    margin-right: 25px;
}
.checkout-cart-item .item__total {
    font-weight: 600;
}
.checkout-cart-item .item__quantity {
    display: flex;
    align-items: center;
    margin-right: 25px;
}
.checkout-cart-item .item__quantity input {
    width: 40px;
    padding: 5px !important;
    border-radius: 5px;
    margin: 0 7px;
    text-align: center;
}
.checkout-cart-item .quantity__item {
    font-size: 25px;
    font-weight: 400;
    cursor: pointer;
}
.checkout-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}
.checkout-cart-total .total__num {
    display: flex;
}
#wc-checkout-root .form-group.form-row input[type="radio"] {
    width: auto;
}
.form-group.form-shipping .form-row, .form-group.checkout-payment-methods .form-row {
    justify-content: flex-start !important;
}
.form-group.form-shipping input[type="radio"],
.form-group.checkout-payment-methods input[type="radio"] {
    margin-right: 15px;
}

.loader {
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.3);
    position: absolute;
    top: 0;
    left: 0;
}
.go-to-checkout {
    margin-top: 50px;
}