﻿.mrgn-top-30{
    margin-top: 30px;
}
.form-group.form-md-line-input {
    margin-bottom: 0px !important;
}
.modal-xl {
    width: 90% !important;
}

.block-loader-wrapper {
    position: relative;
}

.block-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    z-index: 99999999;
}

.loader-spinner {
    width: 35px;
    height: 35px;
    border: 4px solid #ccc;
    border-top: 4px solid #007bff;
    border-radius: 50% !important;
    animation: spin 1s linear infinite;
    margin-top:130px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}



