/* loading spinner */
.ld-ext-right {
    position: relative;
    transition: all .3s;
    transition-timing-function: ease-in;
}
.ld-ext-right.running {
    padding-right:  75px!important;
}
.ld.ld-spin-fast {
    animation: ld-spin-fast 1s infinite linear;
}
@keyframes ld-spin-fast {
    0% { animation-timing-function: cubic-bezier(0.5856,0.0703,0.4143,0.9297);
        transform: rotate(0); }
    100% { transform: rotate(1800deg); }
  }
.ld-ext-right>.ld {
    position: absolute;
    top: 45%;
    left: auto;
    right: 55px;
    width: 20px;
    height: 20px;
    margin: -0.5em;
    opacity: 0;
    z-index: -1;
    transition: all .3s;
    transition-timing-function: ease-in;
}
.ld-ring {
    color: inherit;
    display: inline-block;
    box-sizing: content-box;
}
.ld {
    transform-origin: 50% 50%;
    transform-box: fill-box;
}
.ld-ring:after {
    border-radius: 50%;
    border: 0.3em solid currentColor;
    border-left-color: transparent;
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    transform-origin: 0 0;
    transform: translateZ(0) scale(0.5);
    backface-visibility: hidden;
}
.ld-ext-right.running .ld-ring{
    opacity: 1;
    z-index: 1;
}
/* @media (min-width: 576px){
    .modal-dialog {
        max-width: 1000px;
        margin: 1.75rem 0.5rem;
    }
}
@media (min-width: 1024px){
    .modal-dialog {
        margin: 1.75rem auto;
    }
}
.modal-content {
    height: calc(100vh - 54px);
    overflow: scroll;
} */