@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.checkout-backdrop {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.checkout-backdrop .spinner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.checkout-backdrop .spinner-wrapper .spinner-border {
    display: inline-block;
    width: 100px;
    height: 100px;
    vertical-align: text-bottom;
    border: 5px solid #ef6325;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border;
}

.leLoadingModal--visible {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.leLoadingModal--hidden {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}