/* Global CSS */
md-content{
    background: none;
    height: auto;
}
input.ng-invalid, select.ng-invalid, textarea.ng-invalid {
    border: 1px solid #df2027!important;
}
/* --- General Utilities and Layout --- */
* {
    font-family: 'Mulish', sans-serif;
}
input, textarea, select{
    border: 1px solid #ccc;

}
input[type=checkbox]{
    margin: 0 !important;
}
.dp-none{
    display: none;
}
button[disabled],
button:disabled{
    cursor: not-allowed;
    pointer-events: none;
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
    font-family: Mulish;
    font-style: normal;
    line-height: 18px;
}
html, body {
    height: 100%;
    background: #FAFAFA;
    --default-body-color: #FAFAFA;
}
.content-default-wrapper{
    padding: 60px 30px 0 30px;
    overflow-y: auto;
    background: var(--default-body-color) !important;
    min-height: 700px!important;
}
.fz-9{
    font-size: 9px;
}
.fz-10{
    font-size: 10px;
}
.fz-12{
    font-size: 12px;
}
.fz-13{
    font-size: 13px;
}
.fz-14{
    font-size: 14px;
}
.fz-15{
    font-size: 15px;
}
.fz-16{
    font-size: 16px;
}
.fz-17{
    font-size: 17px;
}
.fz-18{
    font-size: 18px;
}
.fz-19{
    font-size: 19px;
}
.fz-20{
    font-size: 20px;
}

.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    color: black!important;
    font-weight: bold!important;
}
.txa-center{
    text-align: center;
}

.h-default-color{
    color: #2F1C6A;
}
.p-default-color{
    color: #36344D;
}
.p-default-content-color{
    color: #3F80FF;
}

.flx{
    display: flex;
}
.flx-cr{
    align-items: center;
}
.flx-cc{
    justify-content: center;
}
.flx-clm{
    flex-direction: column;
}
.flx-rw{
    flex-direction: row;
}
.flx-alg-left{
    align-items: flex-end;
}

.grd{
    display: grid;
}
.grd-clm-sp-2{
    grid-column: span 2;
}

.mg-0{
    margin: 0;
}

.mtp-5{
    margin-top: 5px;
    margin-bottom: 5px;
}
.mtp-10{
    margin-top: 10px;
    margin-bottom: 10px;
}
.mtp-15{
    margin-top: 15px;
    margin-bottom: 15px;
}

.mtp-30{
    margin: 30px 0;
}

.button-default{
    background: white;
    color: #3F80FF;
    border: 1px solid #3F80FF;
    border-radius: 4px;
}
.button-red{
    background: white;
    color: #DC143C;
    border: 1px solid #DC143C;
    border-radius: 4px;
}
.button-green{
    background: white;
    color: #0BDA51;
    border: 1px solid #0BDA51;
    border-radius: 4px;
}
.button-default:hover{
    color: white;
    background: #3F80FF;
}
.button-red:hover{
    color: white;
    background: #DC143C;
}
.button-green:hover{
    color: white;
    background: #0BDA51;
}
.status-wrapper{
    width: fit-content;
    height: fit-content;
    padding: 5px;
    border-radius: 8px;
}
.status-approved{
    background: #E5FFF1;
    color: #00B151;
}
.status-reject{
    background: #FFE3E8;
    color: #E21E41;
}
.status-pending{
    background: #fff1e3;
    color: #E36D00;
}
.status-deleted {
    background: #FFE3E8;
    color: #E21E41;
}
.sub-header{
    color: #4B4A65;
}
#loaderContainer {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: rgba(0,0,0,0.8);
    z-index:2000;
    /*display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 70px;
    height: 70px;
    display: inline-block;
    position: relative;
    background-size: cover;

    background: #FFF radial-gradient(ellipse at center, #3F80FF 0%, #3F80FF 14%, #FFF 15%, #FFF 100%) center;
    border-radius: 50%;
}
.loader::after,
.loader::before {
    content: '';
    position: absolute;
    height: 25px;
    width: 4px;
    background: #3F80FF;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: 25% 0;
    box-sizing: border-box;
    animation: rotation 10s linear infinite;
}
.loader::before {
    height: 30px;
    width: 2px;
    transform: translateX(-50%) rotate(0deg);
    animation-duration: 1s;
}
@keyframes rotation {
    0%    { transform: rotate(0deg)}
    100%  { transform: rotate(360deg)}
}
/* End General*/

