.ms-hide-shipping-toggle #ship-to-different-address {
    display: none !important;
}

.tab-content-div .form-row.woocommerce-invalid .ms-step-error,
.checkout-step .form-row.woocommerce-invalid .ms-step-error {
    display: block;
    clear: both;
    color: #e2401c;
    font-size: 0.875em;
    line-height: 1.4;
    margin-top: 0.5em;
    background: none;
    padding: 0;
    border: 0;
}

.tab-content-div .form-row.woocommerce-invalid input.input-text,
.tab-content-div .form-row.woocommerce-invalid select,
.checkout-step .form-row.woocommerce-invalid input.input-text,
.checkout-step .form-row.woocommerce-invalid select {
    border-color: #e2401c;
}

body.ms-step-validating {
    cursor: wait;
}

body.ms-step-validating .tab_click {
    pointer-events: none;
}

.ms_next.ms-is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.75;
}

.ms_next.ms-is-loading::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: ms-step-spin 0.6s linear infinite;
}

.tab-content-div.ms-step-loading {
    position: relative;
}

.tab-content-div.ms-step-loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.tab-content-div.ms-step-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: ms-step-spin 0.7s linear infinite;
    z-index: 11;
}

@keyframes ms-step-spin {
    to {
        transform: rotate(360deg);
    }
}