/****** Page Loader ******/
.loading {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.5);
    display: none;
}
.loading .loader {
    position: absolute;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
}
.loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #50cd89;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
a.logout-me {
    position: absolute;
    right: 0px;
    top: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border: 1px solid;
    border-radius: 6px;
    font-size: 11px;
    z-index: 9999;
}
a.logout-me i {
    font-size: 24px;
    padding: 5px;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

}
.form-control.form-control-solid {
    border-color: #E4E6EF;
}
.form-control.form-control-solid:focus {
    border-color: #50cd89;
}