:root {
    --primary-color: rgb(9, 59, 130);
    --primary-hover-color: rgba(9, 59, 130, 0.80);
    --theme-color: rgb(13, 10, 46);
    --theme-fade-color: rgba(13, 10, 46, 0.8);
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
}
body {
    font-family: "Poppins", sans-serif;
    background: #f6f7f8;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
.mb-3 {
    position: relative;
}
.status {
    margin: 10px 0;
}
form .btn{
    background: var(--primary-color);
    color: #fff;
}
form .btn:hover{
    color: #fff;
    background: var(--primary-hover-color);
}
label span{
    color: #ff0000;
}
.form-control::placeholder { 
    color: rgba(0, 0, 0, 0.4) !important;
    font-size: 15px !important;
}


/*******************************************
    Auth Pages
********************************************/
.authdiv {
    background: #fff;
    padding: 30px 30px;
    margin-top: 100px;
    border-radius: 8px;
    box-shadow: rgba(9, 37, 64, 0.10) 0px 5px 24px, rgba(9, 37, 64, 0.15) 0px 1px 8px;
}
.authdiv h1 {
    text-align: center;
    padding-bottom: 10px;
    margin-top: 0px;
    font-size: 23px;
    font-weight: bold;
    border-bottom: 1px solid #f1f1f1;
}
.authdiv .form-control {
    padding-left: 35px;
}
.showuser, .showpadlock {
    position: absolute;
    left: 10px;
    top: 43px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    cursor: pointer;
}
.showpwd {
    position: absolute;
    right: 12px;
    top: 44px;
    color: rgba(0, 0, 0, 0.45);
    font-size: 13px;
    cursor: pointer;
}
.authdiv a {
    font-size: 14px;
}
.authdiv .back {
    margin-top: 10px;
}
.nav-link {
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}
.nav-item .active {
    background: #f6f7f8 !important;
}


/*******************************************
    Menu
********************************************/
.sidebar {
    position: relative;
    float: left;
}
.sidebar {
    width: 20%;
    background: var(--theme-color);
    padding: 0;
}
.sidebar .logo {
    height: 56px;
    background: var(--theme-color);
    overflow: hidden;
    width: 100%;
}
.sidebar .logo img {
    max-height: 55px;
    padding: 5px;    
}
.mobilemenu {
    position: fixed;
    top: 15px;
    right: 20px;
    display: none;
}
.mobilemenu .fa-bars {
    position: relative;
    margin: auto;
    font-size: 25px;
    color: #fff;
    background: #262651;
    border-radius: 7px;
    padding: 3px 8px;
    cursor: pointer;
}
.sidebar .menu {
    list-style: none;
    padding: 10px 7px !important;
    margin-bottom: 0;
    overflow: auto;
}
.sidebar li{
    padding: 8px 15px;
    margin: 2px 0;
}
.sidebar a, .hassub{
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}
.sidebar .active, .sidebar li:hover{
    background: var(--primary-color);
    color: rgba(255, 255, 255, 1.0);
}
.sidebar .menu li .toggle {
    float: right;
    margin-right: 5px;
}
.sidebar .menu .submenu {
    background: var(--theme-color);
    border-left: 1px solid var(--primary-color);
    margin-left: 20px;
    padding: 5px 10px;
    list-style: none;
}
.sidebar .menu .submenu a {
    font-size: 14px;
}
@media screen and (max-width:767px){
    .sidebar{
        width: 100%;
    }
    .sidebar .logo {
        position: fixed;
        border-bottom: 1px #ddd;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.20);
        z-index: 5;
    }
    .mobilemenu {
        display: block;
    }
    .sidebar ul {
        display: none;
    }
}


/*******************************************
    Main Page Div Content
********************************************/
.content {
    position: relative;
    float: left;
    width: 80%;
    padding: 0;
}
.main {
    overflow: auto;
}
.header{
    padding: 5px 15px;
    background: #fcfcfc;
    box-shadow: 1px 1px 3px #d8d7d7;
}
.navigator{
    color: #555;
    font-size: 25px;
    cursor: pointer;
}
.navigator .fas{
    margin-bottom: -25px !important;
}
.header .title {
    margin-top: -13px !important;
    font-weight: bold;
    margin-left: 10px;
}
.header .navigator .header .dropdown {
    position: relative;
}
.header .dropdown {
    float: right;
    padding: 3px 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    cursor: pointer;
}
.header img {
    height: 30px;
}
.header .dropdown-menu{
    background: #fafafa;
    border: 1px solid #eee;
    margin-top: 20px !important;
}
.header .dropdown-menu a:hover {
    background: var(--primary-color);
    color: #fff;
}
@media screen and (max-width:767px){
    .content {
        top: 56px;
        width: 100%;
    }
    .header {
        display: none;
    }
}


.breadcrumb {
    padding: 10px 15px;
    color: #555;
}
.breadcrumb li {
    font-size: 14px;
}
.breadcrumb .active {
    font-weight: bold;
}
.nav-tabs {
    background: #fff;
    padding-top: 10px;
    margin-top: -15px;
}
.top-btns {
    margin-top: -20px;
    padding: 10px 15px;
}
.top-btns .btn {
    padding: 3px 10px;
    font-size: 15px;
    background-image: linear-gradient(to bottom, var(--primary-color) , var(--primary-hover-color));
    color: #fff;
}
.dashboard {
    width: 99%;
    margin: auto;
    margin-bottom: 10px;
}
.summary {
    padding: 0.6rem;
    border-radius: 0.5rem;
    position: relative;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(5, 27, 44, 0.12) 0px 1px 8px -1px, rgba(5, 27, 44, 0.08) 0px 3px 4px -1px;
    border: medium;
    margin-bottom: 20px;
}
.summary p {
    font-size: 13px !important;
    line-height: 1.5rem !important;
    color: rgb(66, 77, 87) !important;
}
.summary span {
    font-size: 17px;
    line-height: 20px;
    color: rgb(5, 27, 44) !important;
    margin: 0px;
}
.prof {
    width: 97%;
    margin: auto;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: rgba(5, 27, 44, 0.12) 0px 1px 8px -1px, rgba(5, 27, 44, 0.08) 0px 3px 4px -1px;
}
.contentdiv {
    width: 97%;
    margin: auto;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: rgba(5, 27, 44, 0.12) 0px 1px 8px -1px, rgba(5, 27, 44, 0.08) 0px 3px 4px -1px;
}
.section-title {
    font-size: 22px;
    line-height: 35px;
    color: rgb(49, 61, 71);
}

.btn-export {
  background: #093b82 !important;
  border: none !important;
  color: #fff !important;
  font-size: 13px !important;
  padding: 2px 5px !important;
  border-radius: 7px;
  margin: 0 5px -20px 0;
}

.table.dataTable > tbody .even td {
    background-color: #fafafa !important;
}
.table th, .table.dataTable th {
    color: rgb(28, 38, 43);
}
.table td {
    color: rgb(68, 68, 68);
    font-size: 15px !important;
}
.table .btn-sm {
    font-size:13px;
    padding: 2px 4px;
}
.table .outline-success, .table .outline-danger {
    border: 1px solid;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 12px;
}
.table .outline-success {
    border-color: green;
}
.table .outline-danger {
    border-color: red;
}
.table .sorting{
    background: #f6f7f8;
    font-weight: 450;
}
.table img {
    max-height: 35px;
}

.products h3 {
    font-size: 23px;
}
.products h5 {
    font-size: 18px;
}


.select2-selection__rendered {
    line-height: 35px !important;
}
.select2-container .select2-selection--single {
    height: 38px !important;
}
.select2-selection__arrow {
    height: 37px !important;
}

.modal-header {
    background: #efeded;
    padding: 7px 15px !important;
}
#deletionModal h4 {
    font-size: 20px;
}
.modal-dialog .title-div {
    padding: 10px;
}
.title-div p{
    padding: 5px 0;
    font-size: 17px;
    font-weight: bold;
    border-bottom: 1px dashed #ccc;
}



#reset {
    display: none;
}
.imgdiv {
    max-width: 200px;
    position: relative;
    margin: auto;
}
.imgdiv .btn {
    position: absolute;
    top: 5px;
    right: 5px;
}
#imagemodal .cropit-preview {
    background-color: #f8f8f8;
    background-size: cover;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 202px;
    height: 202px;
}
#imagemodal .modal-dialog{
    width: 230px;
}


.logodiv, .logo2div, .favdiv {
    border: 1px solid #eee;
    border-radius: 7px;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
}
.logodiv h4, .logo2div h4,.favdiv h4 {
    font-size: 18px;
}
.logodiv img, .logo2div img,.favdiv img {
    max-height: 65px;
    max-width: 100%;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4);
    background: #eee;
    margin: auto;
}
.logodiv #logo-img, .logo2div #logo2-img,.favdiv #favicon-img {
    display: none;
}

.info-pages .heading {
    margin-top: 25px;
}
.info-pages .heading:first-child {
    margin-top: 0;
}
.info-pages .heading h4 {
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ccc;
}
.tabs {
    display: none;
    margin-top: 15px;
}
.details, .info-pages .email {
    display: block;
}
.info-table td {
    border: none;
}
.info-table tr td:first-child {
    max-width: 170px !important;
    font-weight: bold;
}
.columns {
    background: #eee;
    padding: 5px;
    width: 100%;
    overflow: auto;
}
#drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}
.drop-text {
    margin: 0;
    margin-bottom: 15px;
}
#drop-area.highlight {
    border-color: #2196F3;
}
#file-input {
    display: none;
}
.upload-btn {
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 7px 10px;
    border-radius: 50%;
    color: #777;
    font-size: 20px;
}
.dob, .kin_dob, .commencement_date, .datetime {
    padding-left: 35px;
}
.showcalendar {
    position: absolute;
    left: 10px;
    top: 42px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    /*#customerModal .modal-content, #loanModal .modal-content {
      width: 800px !important;
      display: block !important;
      margin: auto !important;
   }*/
}


