* {
    font-family: 'Lato', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#mTop {
    width: 100%;
    border: 0;
    height: 50px;
}

#mBottom {
    width: 100%;
    border: 0;
    height: 50px;
}

#mBottom_2 {
    width: 100%;
    border: 0;
    height: 50px;
}

#mContent {
    width: 100%;
    border: 0;
}

.h-5  { height:  5% !important; }
.h-10 { height: 10% !important; }
.h-15 { height: 15% !important; }
/*.h-20 { height: 15% !important; }*/
/*.h-25 { height: 15% !important; }*/
.h-45 { height: 45% !important; }
.h-55 { height: 55% !important; }
.h-80 { height: 80% !important; }
.h-90 { height: 90% !important; }

.overflow-y-auto {
    overflow-y: auto !important;
}

.border-radius-0 {
    border-radius: 0;
}

.hidden {
    display: none !important;
}

table {
    border: 0 !important;
}

.modal-content {
    padding: 5px;
    border: 1px solid #FFFFFF;
    overflow: hidden;
}

.modal-content button {
    color: #fffffa !important;
}

.modal-content .modal-header {
    height: 48px;
}

.modal-content .modal-header button {
    background-color: transparent !important;
}

.mTopCol button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #000000;
    border: 0;
}

.mTopCol button i {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF;
}

.w-49 {
    width: 49% !important;
}


.loader {
    width: 128px;
    height: 128px;
    border: 3px dotted #000;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}
.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #FF3D00;
    border-style: solid solid dotted;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}