.loader-wrapper {
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background-color: #F0F0F0;
    opacity:0.2;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
    position: fixed;
    left: 48%;
    top: 45%;
    z-index: 9999;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mr-5 {
    margin-right: 5px;
}

.row-middle {
    padding: 0.45rem 0.9rem;
    display: block;
}

.txt-right {
    text-align: right;
}

table, th, td {
    border: 1px solid #E0E0E0;
    border-collapse: collapse;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 110% !important;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 solid transparent;
    border-radius: .2rem;
    outline: 0;
}