@charset "UTF-8";
:root {
  --theme-color: #000;
  --theme-black-color: #000;
  --theme-background-color: #fff;
  --theme-text-color: #2fb5c3;
  --theme-border-color: #efefef;
  --theme-blue-color: #2fb5c3;
  --theme-sky-color: #2fb5c3;
  --theme-yellow-color: #faba2f;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

*{
  margin:0px; 
  padding:0px; 
  outline:none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html{ 
  line-height: 1.15;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #000;
  background-color: var(--theme-background-color) !important;  
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.navbar-white{
  background-color: var(--theme-background-color) !important;  
}
.main-footer{
  font-size: 10px;
  padding: 5px;
  background-color: var(--theme-background-color);
  border-top: 1px dashed var(--theme-border-color);
}
.main-footer a{
  color: #869099;
}

/* Scroll Bar */
::-webkit-scrollbar {
  width: 5px !important;
  cursor:pointer;
  transition:all 0.4s;
  -webkit-transition:all 0.4s;
  -moz-transition:all 0.4s;
  -o-transition:all 0.4s;
  -webkit-overflow-scrolling: touch;
}
/* Track */
::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  cursor:pointer;
  background:#fff !important;
}
/* Handle */
::-webkit-scrollbar-thumb { 
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background:var(--theme-black-color); 
  cursor:pointer;
}

.ft-s-9{ font-size: 9px; }
.ft-s-10{ font-size: 10px; }
.ft-s-12{ font-size: 12px; }
.ft-s-13{ font-size: 13px; }
.ft-s-14{ font-size: 14px; }
.ft-s-15{ font-size: 15px; }
.ft-s-16{ font-size: 16px; }
.ft-s-18{ font-size: 18px; }
.ft-s-20{ font-size: 20px; }
.ft-s-22{ font-size: 22px; }
.ft-s-24{ font-size: 24px; }
.ft-s-26{ font-size: 26px; }
.ft-s-30{ font-size: 30px; }

.ft-w-600{ font-weight: 600 !important; }

.mt-13{ margin-top: 13px; }
.mt-15{ margin-top: 15px; }
.mt-20{ margin-top: 20px; }
.mt-28{ margin-top: 28px; }
.mt-35{ margin-top: 35px; }
.mt-5r{ margin-top: 5rem; }
.mt-6r{ margin-top: 6rem; }

.ml-25{margin-left: 25px;}

.h-w-15{height: 15px; width: 15px;}
.w-30{width: 20%;}

.position-relative { position: relative !important; }
.position-static { position: static !important; }
.d-inline-block{ display: inline-block !important; }
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-block{ display: block !important; }
.d-none{ display: none !important; }
.v-mid{vertical-align: middle !important;}

.content-wrapper{
  min-height: calc(100vh - 83px);
}
.content-wrapper>.content {
  padding: 10px 7px;
}

.list-inline li{
  list-style: none;
  display: inline-block;
  margin-bottom: 3px;
}

.list-block li{
  list-style: none;
  display: block;
  margin-bottom: 3px;
}

.breadcrumb{
  padding: 0px;
  background-color: transparent;
}
.breadcrumb a, .breadcrumb a:hover{
  color: var(--theme-color);
}

.badge {
    display: inline-block;
    padding: 2px 5px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}
.badge.rounded-pill{
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}
.badge-theme{
  background-color: var(--theme-blue-color);
  color: #fff;
}
.bg-label-dark {
    border: 1px solid #000 !important;
    color: #000 !important;
}
.bg-label-primary {
    color: #696cff !important;
    border: 1px solid #696cff !important;
}
.bg-label-danger {
    border: 1px solid #ff3e1d !important;
    color: #ff3e1d !important;
}
.bg-label-warning {
    border: 1px solid #ffab00 !important;
    color: #ffab00 !important;
}
.bg-label-info {
   border: 1px solid #03c3ec !important;
    color: #03c3ec !important;
}
.bg-label-success {
    border: 1px solid #28a745 !important;
    color: #28a745 !important;
}
.bg-label-secondary {
    border: 1px solid #8592a3 !important;
    color: #8592a3 !important;
}
.bg-primary {
    background-color: #696cff !important;
    color: #fff !important;
}
.bg-danger {
    background-color: #ff3e1d !important;
    color: #fff !important;
}
.bg-warning {
    background-color: #ffab00 !important;
    color: #fff !important;
}
.bg-info {
    background-color: #03c3ec !important;
    color: #fff !important;
}
.bg-secondary {
    background-color: #8592a3 !important;
    color: #fff !important;
}
.rounded-pill {
    border-radius: 50rem !important;
}

.breadcrumb-item{ font-size: 14px; }
.breadcrumb-item.active{
  /*font-weight: 600;*/
  color: var(--theme-sky-color);
}

.lds-ellipsis-parent{display: none; position: fixed; top: 0px; left: 0px; width: 100%;  height: 100%; background: rgb(0 0 0 / 82%); z-index: 1000000;}
.lds-ellipsis {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50% , -50%);
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--theme-sky-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.back-link, .back-link:hover{
  float: right;
  color: var(--theme-color);
  font-size: 14px;
}

.card {
  background-clip: padding-box;
  /*box-shadow: 0 2px 6px 0 rgb(67 89 113 / 12%);*/
  box-shadow: none !important;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff !important;
  background-clip: border-box !important;
  border-radius: 4px !important;
  border: 1px dashed var(--theme-border-color) !important;
}
.card-header{
  border-bottom: 1px dashed var(--theme-border-color) !important;
}
.card-information .card-header{
  padding: 10px 1.8rem;
}

.card-primary.card-outline{
  border-top: 2px solid #007bff !important;
}
.card-info.card-outline{
  border-top: 2px solid #17a2b8 !important;
}
.card-success.card-outline{
  border-top: 2px solid #28a745 !important;
}
.card-warning.card-outline{
  border-top: 2px solid #ffc107 !important;
}

/**=====================
    Header Start
==========================**/
.colapse-nav-option i {
  font-size: 17px;
}
[class*="sidebar-dark-"] {
    background-color: var(--theme-color);
}
[class*="sidebar-dark"] .brand-link {
    border-bottom: 1px solid var(--theme-border-color);
}
.brand-link{
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 1.03rem 0.5rem;
}
[class*="sidebar-dark"] .brand-link {
  border-bottom: 1px dashed var(--theme-border-color);
}
.main-header {
  border-bottom: 1px dashed var(--theme-border-color);
}
.logo-text{
  text-transform: uppercase;
  font-size: 16px;
}
[class*="sidebar-dark-"] .sidebar a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.nav-sidebar .nav-item>.nav-link{
  display: flex;
  align-items: center;
}
.sidebar .user-panel {
  border-bottom: 1px dashed #4f5962;
}
.sidebar .user-panel .image{
  padding-left: 7px;
}
.sidebar .user-panel img{
  height: 2.5rem;
  width: 2.5rem;
}
.sidebar .user-panel .info{
  color: #fff;
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active,
.sidebar-light-primary .nav-sidebar>.nav-item>.nav-link.active {
  background-color: #fff;
  color: var(--theme-color);
  border-radius: 5px !important;
}

.sidebar-dark-primary .nav-sidebar.nav-legacy>.nav-item>.nav-link.active,
.sidebar-light-primary .nav-sidebar.nav-legacy>.nav-item>.nav-link.active {
  border-color: var(--theme-color);
}

.sidebar{
  height: calc(100vh - (3.5rem + 1px));
}
.side-footer{
  border-top: 1px solid #fff;
}

.side-footer ul {
  margin-bottom: 5px !important;
  display: flex;
  justify-content: space-around;
}
.side-footer ul li{
  padding: 5px 10px 10px;
}

.side-footer ul li a {
  color: #fff;
  font-size: 15px;
}
.sidebar-collapse .side-footer{
  display: none;
}

.card .nav-pills{
  border-bottom: 1px solid var(--theme-border-color);
}
.border-bottom-dashed{
  border-bottom: 1px dashed var(--theme-border-color);
}
.nav-pills .nav-link {
  border-radius: 5px;
  color: #000;
}
[class*="sidebar-dark-"] .nav-sidebar>.nav-item>.nav-treeview {
  /*background-color: transparent*/
  background-color: rgb(0 0 0 / 33%);
  border-radius: 0px;
  /*margin-top: -3px;*/
}
/*[class*="sidebar-dark-"] .nav-sidebar>.nav-item.menu-open>.nav-link{
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}*/

.nav-treeview .nav-link{
  padding: 0px 1rem 5px;
}

.nav-treeview .nav-link.active{
  background-color: transparent !important;
  color: #fff !important;
}

.nav-treeview .nav-link .nav-icon{ font-size: 13px; }

.nav-treeview .nav-item:first-child .nav-link{
  padding-top: 10px;
}
.nav-treeview .nav-item:last-child .nav-link{
  padding-bottom: 10px;
}

.header-search-group{
  width: 400px;
}
.header-search-form{
  width: 100%;
  position: relative;
  padding-right: 1rem;
  padding-left: 1rem;
}
.header-search-form .input {
  width: 100%;
  height: 40px;
  border-radius: 40px !important;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1) !important;
  padding: 0px 25px;
  font-size: 14px;
}
.header-search-form .input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b0adad;
}
.header-search-form .input::-moz-placeholder { /* Firefox 19+ */
   color: #b0adad;
}
.header-search-form .input:-ms-input-placeholder { /* IE 10+ */
   color: #b0adad;
}
.header-search-form .input:-moz-placeholder { /* Firefox 18- */
   color: #b0adad;
}
.header-search-form .search_icon {
  position: absolute;
  top: 14px;
  right: 25px;
  width: 18px;
}

.navbar-light .navbar-nav .link-custom{
  color: #333;
  font-weight: 600;
}

.right-nav a i {
  font-size: 17px;
  color: #000;
}

.right-nav .navbar-badge {
  font-size: .6rem;
  font-weight: 300;
  padding: 4px 4px;
  position: absolute;
  right: 4px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.profile-dropdown .profile-btn {
  border-radius: 8px;
  background-color: #fff;
  border: none;
  height: 40px;
  margin-right:1rem;
  margin-left:1rem;
  padding: 0px 10px 0px 5px;
}
.profile-dropdown .profile-btn span{ color:#000 !important;}
.profile-dropdown .avtar img{float: left; width: 35px;}
.profile-dropdown .avt-name {color: #fff; font-size: 15px;}
.profile-dropdown .dropdown-menu {margin-top: 15px; border-radius: 8px;}
.profile-dropdown .dropdown-menu li {padding: 5px 10px; color: #3c4858; text-align: left; line-height: 1.5; margin:0px !important;}
.profile-dropdown .dropdown-menu li a {/*padding: 5px 0px 5px 10px;*/ color: #000;}
.profile-dropdown .dropdown-menu li a:hover {color: #000; background-color: #fff; transition: all 0.02 ease-in-out;}
.profile-dropdown .dropdown-menu li i{color: #000; padding-right: 5px; font-size: 20px; width: 25px; text-align: left; vertical-align: middle;}
.profile-dropdown .dropdown-menu li span{font-weight: 500; font-size: 15px;}
.profile-dropdown .dropdown-menu:before {content: " "; background: #fff; height: 16px; width: 16px; position: absolute; opacity: 1; transform: rotate(-45deg) translateY(1rem) !important; margin-top: -28px; margin-left: 107px; border-top: 1px solid #cec5c5; border-right: 1px solid #cec5c5;}
}
.profile-dropdown .dropdown-menu .user-name {font-weight: 600; padding-bottom: 8px; color: #3c4858; text-align: center !important; font-size: 15px;}
.profile-dropdown .user-name { text-align: left; padding-left:25px; font-size: 16px;}
.profile-dropdown .navbar-white {
  background-color: var(--theme-background-color) !important;
  color: #1f2d3d
}
/**=====================
    Header End
==========================**/

/**=====================
    Form Start
==========================**/
label {
    display: inline-block;
    font-weight: 400;
    margin-bottom: 0.2rem;
}
.form-control {
  display: block;
  width: 100%;
  font-size: 14px;
  border-radius: 6px;
  color: #000000 !important;
  height: 40px;
}
.required-label{
  color: red;
}

.form-control:focus{
  outline: 0;
  box-shadow: none !important;
  border-color: var(--theme-color) !important;
  border: 2px solid;
}

.form-group-floating{ position:relative; margin-bottom: 1rem!important;}
.form-group-floating .placeholder{ 
  position:absolute; 
  bottom:6px; 
  left:10px; 
  width:max-content; 
  transition:all 0.2s; 
  pointer-events:none; 
  font-size:14px;
  color:rgba(0,0,0,0.8); 
  font-weight:500; 
  display:block; 
  padding:0px 5px;
  font-weight: 400 !important;
}
.form-group-floating .placeholder.up{
  bottom: 27px;
  color: #000;
  font-size: 12px;
  z-index: 1;
}
.form-group-floating .placeholder.up:before{
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  top: 8px;
  left: 0px;
  background: #fff;
  z-index: -1;
}

.form-group-floating .placeholder.pl-up{
  bottom: 27px;
  color: #000;
  font-size: 12px;
  z-index: 1;
}
.form-group-floating .placeholder.pl-up:before{
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  top: 8px;
  left: 0px;
  background: #fff;
  z-index: -1;
}

.form-group-floating .placeholder.pl-up-textarea{bottom:41px; color:#000; font-size:11px; z-index:1;}
.form-group-floating .placeholder.pl-up-textarea:before{ content:''; width:100%; height:3px; position:absolute; top:7px; left:0px; background:#fafafa; z-index:-1;}

.contact-group span{
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top:1px;
  font-size: 13px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 0.6rem 0.75rem;
}
.contact-group input[data-mask]{
  padding-left: 45px;
}

.iti--allow-dropdown{width: 100% !important;}

.theme-btn{
  background: var(--theme-black-color);
  height: auto !important;
  color: #fff !important;
  border-style: none;
  border-radius: 8px;
  padding: 8px 0px;
  font-size: 17px;
}
.text-blk, .text-blk:hover{
  color: #000;
  text-decoration: none;
}
.padding0{ padding: 0px !important; }
.margin0{margin: 0px !important;}
.card-body .card-title{
  margin-bottom: 0px !important;
  font-size: 14px;
}
.card-body .card-header{
  border-bottom: 0px !important;
  padding: 10px 10px !important;
  background-color: #e7e7e7;
}
.table th{
  font-weight: 600 !important;
}
.table td, .table th {
    padding: 7px 10px !important;
    font-size: 14px;
}
.form-table{margin-bottom: 0px !important;}
.form-table td, .form-table th {
  padding: 10px 10px !important;
}
.form-table .form-group-floating{
  margin-bottom: 0px !important;
}
.form-table tr:hover { background: transparent !important; }

.form-table tr:first-child td{border-top: 0px !important;}
.form-table tr:last-child td{border-bottom: 0px !important;}

.card-body>.table {
  margin-bottom: 0;
  width: 100%;
}
.card-body>.table>thead>tr>td,
.card-body>.table>thead>tr>th {
    border-top-width: 0
}
.select2{
  width: 100% !important;
}
.select2-selection{
  min-height: 40px !important;
  /*padding: 0.375rem 0.75rem !important;*/
  border-radius: 8px !important;
  background-color: #fff !important;
  background-clip: padding-box;
  border: 1px solid #ced4da !important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  color: #000 !important;
  line-height: 29px !important;
  font-size: 14px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  padding-left: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  margin-top: 3px !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field, .select2-dropdown{
  border: 1px solid #ced4da !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 30px !important;
    border-radius: 8px !important;
}

.select2-container--disabled .select2-selection{
  background-color: #E9ECEF !important;
}

#map-input {
    height: 40px !important;
    background-color: #fff !important;
    font-family: Roboto !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    margin-left: 7px !important;
    margin-top: 10px !important; 
    padding: 0 11px 0 13px !important;
    text-overflow: ellipsis !important;
    max-width: 300px !important;
    position: absolute !important;
    z-index: 1 !important;
    border: solid 2px #000 !important;
}
#map-input:focus {
    border-color: #4d90fe;
}
#map{
  height: 350px;
}
/**=====================
    Form End
==========================**/


/**=====================
   Auth Page Start
==========================**/
.login-box{
  width: 27%;
}
.login-card-body{
  padding: 2.25rem 4rem;
  background-image: url(../images/watermark.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-img{
  width: 250px;
  height: 53px;
}
.link-color, .link-color:hover{color: var(--theme-text-color); text-decoration: none;}
.authentication-page{
  background-color: #000 !important;
  display: flex;  
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  /*background-image: url(../images/bg-pattern.png);
  background-size: cover;
  background-position: center;*/
}
.authentication-page .logo{
  width: 63%;
}
.authentication-page .feature-list {
  padding-left: 0;
  list-style: none;
}
.authentication-page .card{
  height: 100vh;
  border-radius: 0px !important;
  border: 0px !important;
  border-left: 2px dashed #000 !important;
  border-right: 2px dashed #000 !important;
}
.app-icons a{
  margin-right: 20px;
  /*justify-content: space-around;*/
  /*padding: 0px 20px;*/
}

/**=====================
    Auth Page End
==========================**/


/**=====================
    Dashboard Start
==========================**/
.background-white{
  background-color: #fff;
}
.dashboard-card-list{
  list-style: none;
  text-align: center;
  background-color: var(--theme-color);
  padding: 15px 0px 5px;
  margin-bottom: 0px !important;
}
.dashboard-card-list-item{
  border-radius: 15px;
  background-color: #fff;
  width: 30%;  
  /*border: 1px dashed var(--theme-blue-color);*/
  padding: 1px;
  margin-bottom: 10px !important;
}
.dashboard-card-list-item:not(:last-child){
  margin-right: 5px;
}
.dashboard-card-list-item .blue-border{
  border-radius: 15px;
  border: 1px solid var(--theme-sky-color);
}
.dashboard-card-list-item .inner-block{
  padding: 15px;
  justify-content: center;
}
.dashboard-card-list-item .dash-icons{
  background-color: var(--theme-background-color);
  padding: 4px 11px;
  border-radius: 25px;
  color: #5c5c5c;
  font-size: 25px;
  font-weight: 600;
}
.dashboard-card-list-item .dash-card-heading{ color: #000; font-size: 15px; font-weight: 600; }
.dashboard-card-list-item .dash-card-count{ color: #000; font-size: 15px; font-weight: 600; }

.dbox {
    position: relative;
    /*background: -moz-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 86, 65, 1) 0%, rgba(253, 50, 97, 1) 100%);*/
    background: #fff;
    border-radius: 4px;
    text-align: center;
    margin: 45px 0 50px;
    box-shadow: 0 2px 6px 0 rgb(67 89 113 / 12%);
}
.dbox__icon {
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
}
.dbox__icon:before {
    width: 75px;
    height: 75px;
    position: absolute;
    background: #fda299;
    background: rgba(253, 162, 153, 0.34);
    content: '';
    border-radius: 50%;
    left: -17px;
    top: -17px;
    z-index: -2;
}
.dbox__icon:after {
    width: 60px;
    height: 60px;
    position: absolute;
    background: #f79489;
    background: rgba(247, 148, 137, 0.91);
    content: '';
    border-radius: 50%;
    left: -10px;
    top: -10px;
    z-index: -1;
}
.dbox__icon > i {
    background: #ff5444;
    border-radius: 50%;
    line-height: 40px;
    color: #FFF;
    width: 40px;
    height: 40px;
  font-size:22px;
}
.dbox__bodyicon{
  position: absolute;
    top: 70px;
    left: 5px;
}
.dbox__bodyicon i{
  font-size: 80px;
    color: #e9e9e9;
}
.dbox__body {
    padding: 40px 20px;
}
.dbox__count {
    display: block;
    font-size: 30px;
    color: #000;
    font-weight: 400;
}
.dbox__title {
    font-size: 16px;
    color: #000;
}
.dbox__action {
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    left: 50%;
}
.dbox__action__btn {
    border: none;
    background: #FFF;
    border-radius: 19px;
    padding: 7px 16px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .5px;
    color: #000;
    box-shadow: 0 3px 5px #d4d4d4;
    border: 1px solid #dcdcdc;
}
.dbox--color-2 {
    /*background: -moz-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: -webkit-linear-gradient(top, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);
    background: linear-gradient(to bottom, rgba(252, 190, 27, 1) 1%, rgba(248, 86, 72, 1) 99%);*/
    background: #fff;
}
.dbox--color-2 .dbox__icon:after {
    background: #fee036;
    background: rgba(254, 224, 54, 0.81);
}
.dbox--color-2 .dbox__icon:before {
    background: #fee036;
    background: rgba(254, 224, 54, 0.64);
}
.dbox--color-2 .dbox__icon > i {
    background: #fb9f28;
}

.dbox--color-3 {
    /*background: -moz-linear-gradient(top, rgba(183,71,247,1) 0%, rgba(108,83,220,1) 100%);
    background: -webkit-linear-gradient(top, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);
    background: linear-gradient(to bottom, rgba(183,71,247,1) 0%,rgba(108,83,220,1) 100%);*/
    background: #fff;
}
.dbox--color-3 .dbox__icon:after {
    background: #b446f5;
    background: rgba(180, 70, 245, 0.76);
}
.dbox--color-3 .dbox__icon:before {
    background: #e284ff;
    background: rgba(226, 132, 255, 0.66);
}
.dbox--color-3 .dbox__icon > i {
    background: #8150e4;
}

.dbox--color-4 {
    /*background: -moz-linear-gradient(top, rgba(247 71 112,1) 0%, rgba(220 83 197,1) 100%);
    background: -webkit-linear-gradient(top, rgba(247 71 112,1) 0%,rgba(220 83 197,1) 100%);
    background: linear-gradient(to bottom, rgb(247 71 112) 0%,rgb(220 83 197) 100%);*/
    background: #fff;
}
.dbox--color-4 .dbox__icon:after {
    background: rgb(70 245 83 / 76%);
}
.dbox--color-4 .dbox__icon:before {
    background: rgb(140 255 132 / 66%);
}
.dbox--color-4 .dbox__icon > i {
    background: #2a9332;
}

/** second section **/

.dashboard-section .card{
  background-clip: padding-box !important;
  box-shadow: none !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  word-wrap: break-word !important;
  background-color: #fff !important;
  background-clip: border-box !important;
  border: 1px dashed var(--theme-border-color) !important;
  border-radius: 4px !important;
}

.dashboard-section .card-header{
  background: #fff;
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
  border-bottom: none !important;
}

.dashboard-section .card-body {
    flex: 1 1 auto !important;
    padding: 1.5rem 1.5rem !important;
}

.income-section .avatar img {
    width: 100% !important;
    height: 100% !important;
}
.income-section .rounded {
    border-radius: 0.375rem !important;
}
.income-section .avatar {
    position: relative !important;
    width: 2.375rem !important;
    height: 2.375rem !important;
    cursor: pointer !important;
}

.income-section .flex-shrink-0 {
    flex-shrink: 0 !important;
}

.fw-semibold{
  font-size: 15px !important;
}

.income-section .inc-heading{
  font-size: 18px !important;
}

.income-section .report-list-item {
    background-color: #f5f5f9 !important;
}

.income-section .report-list-item {
    padding: 0.75rem !important;
}
.income-section .rounded-2 {
    border-radius: 0.375rem !important;
}

.income-section .report-list-icon {
    background-color: #fff !important;
    border-radius: 0.375rem !important;
}

.income-section .report-list-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    min-width: 44px !important;
}

.income-section .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgb(161 172 184 / 40%) !important;
}

.income-section .gap-2 {
  margin-left: 10px !important;
}

/** second section **/

.timeline {
    position: relative !important;
    height: 100% !important;;
    width: 100% !important;
    padding: 0 !important;
    list-style: none !important;
}
.timeline::before {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    height: 100% !important;
    width: 1px !important;
    border: 0;
    border-left: 1px solid #d9dee3;
    content: "";
}
.timeline .timeline-item {
    position: relative;
    padding-left: 3rem;
}
.timeline .timeline-point-primary {
    background-color: #696cff !important;
    box-shadow: 0 0 0 0.1875rem rgb(105 108 255 / 16%);
}
.timeline .timeline-item .timeline-point {
    position: absolute;
    left: -0.312rem;
    top: 0;
    z-index: 2;
    display: block;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 50%;
    background-color: #696cff;
}
.timeline .timeline-item .timeline-event {
    position: relative;
    top: -1rem;
    width: 100%;
    min-height: 4rem;
    background-color: #fff;
    border-radius: 0.375rem;
    padding: 1.25rem 1.5rem;
}
.timeline .timeline-item.timeline-item-transparent .timeline-event {
    top: -1.4rem;
    background-color: transparent;
}
html:not([dir=rtl]) .timeline .timeline-item.timeline-item-transparent .timeline-event {
    padding-left: 0;
}
.timeline .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.timeline .timeline-header>*:first-child {
    margin-right: 0.5rem;
}
.text-muted {
    --bs-text-opacity: 1;
    color: #878787 !important
}
.timeline .timeline-item .timeline-event:after {
    position: absolute;
    top: 0.75rem;
    left: -17px;
    width: 0;
    height: 0;
    border-top: 1rem solid transparent;
    border-right: 1rem solid;
    border-left: 0 solid;
    border-bottom: 1rem solid transparent;
    border-left-color: #fff;
    border-right-color: #d9dee3;
    z-index: -1;
    content: "";
}
.timeline .timeline-point-warning {
    background-color: #ffab00 !important;
    box-shadow: 0 0 0 0.1875rem rgb(255 171 0 / 16%);
}
.timeline .timeline-point-info {
    background-color: #03c3ec !important;
    box-shadow: 0 0 0 0.1875rem rgb(3 195 236 / 16%);
}

.timeline .avatar {
    position: relative;
    width: 2.375rem;
    height: 2.375rem;
    cursor: pointer;
}
.timeline .avatar img {
    width: 100%;
    height: 100%;
}
.timeline .rounded-circle {
    border-radius: 50% !important;
}
html:not([dir=rtl]) .me-3 {
    margin-right: 1rem !important;
}
.pull-up {
    transition: all .25s ease !important;
}
.avatar-group .avatar {
    transition: all .25s ease !important;
}
.avatar-group .avatar {
    margin-left: -0.8rem !important;
}
.avatar-group .avatar:first-child {
    margin-left: 0 !important;
}
.avatar-group .avatar img, .avatar-group .avatar .avatar-initial {
    border: 2px solid #fff !important;
}
.avatar-group .avatar:hover {
    z-index: 30 !important;
    transition: all .25s ease !important;
}
.timeline .timeline-end-indicator {
    position: absolute !important;
    bottom: -1.35rem !important;
    left: -0.65rem !important;
}
.timeline .timeline-end-indicator i {
    font-size: 1.5rem !important;
    color: #d9dee3 !important;
}

.visits-tabs.nav-tabs, .visits-tabs.nav-tabs .nav-link, .visits-tabs.nav-tabs .nav-link:focus, .visits-tabs.nav-tabs .nav-link:hover{
  border:none !important;
}

.visits-tabs.nav-tabs .nav-item .nav-link{
  color:#000 !important;
  background: #f5f5f9;
    margin-right: 5px;
}

.visits-tabs.nav-tabs .nav-item .nav-link.active{
  background: #5f61e6 !important;
  color:#fff !important;
}

.visits-tabs.nav-tabs .nav-link{
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}


.drating-card .rating-count {
    font-size: 50px !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
}
.drating-card .text-lighter {
    color: #c7cdd4 !important;
}
.drating-card .ratings i{
  font-size: 25px !important;
}
.drating-card .gap-3 {
    gap: 1rem !important;
}

.card .card-separator {
    border-right: 1px solid #d9dee3 !important;
}
.gap-1 {
    gap: 0.25rem !important;
}
.pe-4 {
    padding-right: 1.5rem !important;
}

/**=====================
    Dashboard End
==========================**/

/**=====================
    List Start
==========================**/
.card-stats{
  position: absolute;
  top: 9px;
  display: inline-block;
  width: max-content;
  left: 50%;
  transform: translate(-50%,-50%);
}
.card-stats li{
  background-color: var(--theme-color);
    color: #fff;
    padding: 8px 0px;
    min-width: 130px;
    border-radius: 4px;
    box-shadow: 0 2px 6px 0 rgb(67 89 113 / 12%);
}
.card-stats .list-inline-item:not(:last-child){
  margin-right: 0px;
}
.card-stats li .head-text{
 display: block;
 font-size: 13px;
 font-weight: 600;
}
.card-stats li .desc-text{
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.line-spacer{margin-bottom: 40px;}

.card-datatable{ padding: 0px; padding-bottom: 1rem; }
.card-datatable .dataTables_info { padding-left: 10px !important; font-size: 13px; }
.card-datatable .dataTables_paginate { padding-right: 10px !important; font-size: 13px;}
.card-datatable .dataTables_filter{
  position: absolute;
  top: 0px;
  left: 10px;
  font-size: 13px;
}

.card-datatable .search-32 .dataTables_filter{
  top: -32px;
}

.dataTables_filter .form-control{
  position: absolute !important;
  left: -8px !important;
  border-radius: 8px !important;
  width: 200px !important;
  border-radius: 8px !important;
  padding-left: 29px !important;
  background: url(../images/search_icon.png) no-repeat top 8px left 6px #fff !important;
}

.table-abs-actions{
  padding: 0px 10px;
  /*position: absolute;
  width: 100%;*/
}
.table-action-icons{
  white-space: nowrap;
  margin-bottom: 0px;
}
.table-action-icons .btn-black, .table-action-icons .btn-black:hover{
  background-color: var(--theme-black-color);
  color: #fff;
  border-radius: 8px;
  outline: none;
}
.table-action-icons .btn-white, .table-action-icons .btn-white:hover{
  background-color: #fff;
  border-color: 1px solid var(--theme-black-color);
  border-radius: 8px;
  outline: none;
}

.table-load-more{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;  
}

.btn-black, .btn-black:hover{
  background-color: var(--theme-black-color);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  padding: 8px 15px 8px;
}
.btn-black.small-btn, .btn-black.small-btn:hover{
  background-color: var(--theme-black-color);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  padding: 2px 10px 2px;
  margin-top: 5px;
}
.btn-white, .btn-white:hover {
  background-color: #fff;
  border-color: 1px solid var(--theme-black-color);
  border-radius: 8px;
  font-size: 15px;
  padding: 8px 15px 8px;
}
.fixed-btn{
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 1040;
  /*box-shadow: 0 1px 20px 1px var(--theme-black-color);*/
  /*box-shadow: 0 2px 6px 0 rgb(28 28 28);*/
  padding: 6px 10px 7px;
}
/*.fixed-btn:hover {
  box-shadow: none;
  padding: 6px 10px 7px;
}*/
.fixed-btn-list{
  position: fixed !important;
  bottom: 2rem !important;
  right: 1.5rem !important;
  z-index: 1040 !important;
}
.fixed-btn-list li button, .fixed-btn-list li a{ padding: 8px 15px 8px; }



.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}
.pagination .page-link {
    position: relative;
    display: block;
    color: #697a8d;
    background-color: #f0f2f4;
    border: 0px solid #d9dee3;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.pagination .page-link {
    padding: 0.625rem 0.5125rem;
}
.pagination .page-link, .page-link>a {
    border-radius: 0.375rem;
    line-height: 1;
    text-align: center;
    min-width: calc( 2.1875rem + 0px );
}
.pagination .page-item .page-link {
    border-radius: 8px;
}
.pagination .page-item.disabled .page-link {
    border-color: #d9dee3;
}
.pagination{
  margin-top: 0px !important;
}
.pagination li{
  margin-right: 5px;
}
.pagination li a{
  padding: 8px !important;
}
.pagination li.disabled a{
  background: #e9ecef !important;
}
.pagination li a:hover {
    z-index: 2;
    color: #697a8d;
    background-color: #e1e4e8;
    border-color: rgba(67,89,113,.3);
}
.pagination li.active a{
  z-index: 3;
    color: #fff;
    background-color: var(--theme-color) !important;
    border-color: #007bff;
}

.dt-buttons{
  position: absolute !important;
    margin-left: 10px !important;
    top: 5px;
}
div.dt-button-collection button.active{
  background: var(--theme-color) !important;
}

.table thead {
  background-color: #f5f5f9;
}
.table thead th {
  border-bottom: 0px solid var(--theme-border-color);
}
.table tbody tr:last-child td{
  border-bottom: 1px solid var(--theme-border-color);
}
.table tr:hover{
  background-color: #f5f5f9;
}


table.dataTable.fixedHeader-floating{
  z-index: 1000;
}

.panel {
  margin-left: 5%;
  margin-right: 5%;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}
.panel-default {
    border-color: #ddd;
}
.panel-body{
  padding: 20px 20px;
}

.dropdown-filter{
  width: 30rem;
  padding: 3px 0px;
}
.dropdown-filter-label{
  font-size: 15px;
  font-weight: 500 !important;
}
.form-dropdown-panel-ul li{
  margin-right: 7px;
  vertical-align: middle;
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 0px;
}
.dropdown-divider {
  overflow: hidden;
  border-top: 1px solid #e9ecef;
  margin: 2px 0px;
}

.list-actions .btn-icon {
  margin-right: 8px;
}

.list-actions .dropdown-toggle::after, .dropdown-toggle::after{
  display: none !important;
}
.list-actions.show a{
  color: #111111;
  font-size: 13px;
}
.list-action-btn, .list-action-btn:hover{
  color: #6a6a6a;
  text-decoration: none;
  cursor: pointer;
  /*margin-right: 10px;*/
}
.list-action-btn-na, .list-action-btn-na:hover{
  color: #ffbcbc;
  text-decoration: none;
}
/**=====================
    List End
==========================**/


/**=====================
    Step Form Start
==========================**/
#msform {
  /*  margin-top: 10px;*/
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}
/*progressbar*/
#progressbar {
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 13px;
    width: 25%;
    float: left;
    position: relative;
    text-align: center;
    font-weight: 600;
}

/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 24px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
    text-align: center;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: var(--theme-color);
}
/**=====================
   Step Form End
==========================**/


/**=====================
    CONFIRM MODAL CSS Start
==========================**/
.custom-modal .modal-dialog{top:60px;}
.custom-modal .modal-dialog .modal-content {
    border: 0;
    border-radius: 0.125rem;
    -webkit-box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
}
.custom-modal .modal-dialog .modal-header {
    padding: 13px 15px;
    /*margin: -1.5rem 1rem 1rem 1rem;*/
    text-align: center;
    border: 0;
    /*border-radius: 0.125rem;*/
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
    /*-webkit-box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);*/
    background-color: var(--theme-color) !important;
    color: #fff;
    align-items: center;
}
.custom-modal .modal-dialog .modal-header .close{
  padding: 5px !important;
}
.custom-modal .modal-dialog .modal-header .close:hover{
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
.custom-modal .modal-dialog .modal-title {
  font-size: 16px !important;
}
.custom-modal .modal-dialog .close{
  text-shadow: none !important;
  font-size: 18px !important;
  color: #fff !important;
  opacity: 1 !important;
  padding: 0px !important;
  margin: 0px !important;
}

.custom-modal .modal-dialog .modal-footer{
  border-top: none;
  padding: 0px 10px 10px 10px;
}

.modal-confirm .modal-dialog{
  top:60px;
}
.modal-confirm .modal-content {
    padding: 0px;
    border-radius: 0.125rem;
    border: none;
    text-align: center;
    font-size: 14px;
}
.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
}
.modal-confirm .icon-box {
    /*width: 80px;
    height: 80px;*/
    margin: 0 auto;
    border-radius: 50%;
    z-index: 9;
    text-align: center;
    /*border: 3px solid #f15e5e;*/
}
.modal-confirm .icon-box i {
    color: var(--theme-color);
    font-size: 100px;
    display: inline-block;
    margin-top: 13px;
}
.modal-confirm h4 {
    text-align: center;
    font-size: 26px;
    margin: 5px 0 -20px;
}
.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    padding: 0px 15px 20px;
}
.flex-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.align-items-center {
  align-items: center;
}
/**=====================
    CONFIRM MODAL CSS End
==========================**/


/**=====================
  PROFILE PAGE START
==========================**/
.profile-user-img{
  /*border: 3px solid var(--theme-color) !important;*/
}
.profile-username{
  font-size: 16px;
  margin-bottom: 2px;
}

label:not(.form-check-label):not(.custom-file-label){
  font-weight: 600;
}

.contact-info span{font-size: 14px;}
.profile-about-header{
  background-color: var(--theme-color) !important;
  padding: 10px 20px !important;
}
.profile-about-header .card-title{font-size: 16px;}
.nav-pills .nav-link:not(.active):hover{
  color: var(--theme-blue-color);
}
.content-wrapper .nav-pills .nav-link{
  font-weight: 600;
}
.content-wrapper .nav-pills .nav-link.active, .content-wrapper .nav-pills .show>.nav-link {
  color: var(--theme-blue-color);
  background-color: transparent;
  border-bottom: 2px solid var(--theme-blue-color);
  border-radius: 0px !important;
  font-weight: 600;
  margin-bottom: -2px;
}

/**=====================
  PROFILE PAGE END
==========================**/


/**=====================
  CALENDAR & DATEPICKER
==========================**/
.datepicker-days .day{
  display: table-cell;
  float: none;
} 

.job-preview li {margin-right: 15px;}
.job-preview a, .job-preview label{ color: #000 !important; font-weight: normal !important; }
.job-preview .custom-control-label::before {top:1px !important;}
.job-preview .custom-switch .custom-control-label::after{top: 3px !important;}

.flex_col .card:first-child{
  margin-left: 7.5px;
  margin-right: 15px;
  max-width: 24.5% !important;
}
.flex_col .card:last-child{
  max-width: 73% !important;
}
.no-border-list{ border: none !important; padding: 5px 0px;}
.v-mid{vertical-align: middle;}

.small-icon-button, .small-icon-button:hover{
  color: #6a6a6a;
  padding: 2px 4px;
  text-decoration: none;
  display: inline-block;
  background: #fff;
  box-shadow: inset 0 0 0 1px #cbcccd, 0 1px 2px rgb(38 41 44 / 8%);
  padding: 4px 4px;
  border-radius: 4px;
}

.panel-custom-overlay{ width:100%; height:150%; position:fixed; top:0px; left:0px; z-index:10000; background:rgba(0,0,0,0.5); 
  cursor:url(../images/close2.png), auto; display:none;}
.panel-custom-overlay.no-pointer{pointer-events: none !important; cursor: default !important; }
.panel-custom{ width:65%; height:150%; position:fixed; top:0px; right:-100%; transition:all 0.3s; opacity:0; background:#fff;  z-index:10000; box-shadow:0 5px 15px rgba(0,0,0,0.5); -webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);  transition:all 0.3; -webkit-transition:all 0.3s; -moz-transition:all 0.3s; -o-transition:all 0.3s;}


.panel-custom.open{right:0px; opacity:1;}
.panel-custom.full-size{width:100%;}
.panel-header{ background:var(--theme-color); padding:15px 15px; height:50px; position:relative; margin-bottom:15px;}
.panel-custom .panel-header h3{ font-size:18px; /*margin-top:3px;  padding-bottom:10px; margin-bottom:10px;*/ font-weight: 400; margin-top: 0px; color: #fff;}
.panel-custom .panel-header h2{ font-size:22px; margin-top:0px; padding-bottom:10px; margin-bottom:10px;}
.panel-custom  .panel-header ol{ float:right; margin-top:-29px;}
.panel-custom  .panel-header ol li{ margin:0px 7px;}
.panel-custom  .panel-header ol li:last-child{ margin-right:0px;}
.panel-custom  .panel-header ol .icon{width:15px; opacity:0.7;  cursor:pointer; }
.panel-custom  .panel-header ol .cancel{}
.panel-custom  .panel-header ol .icon:hover{ opacity:1;}
.panel-content{ 
  width:100%; 
  padding:0px 15px; 
  background:#fff; 
  margin:0px auto; 
  max-height: calc(100vh - 70px);
  overflow-y:scroll; 
  overflow-x:hidden;
}
.panel-content::-webkit-scrollbar{ width:5px !important;}
.panel-content::-webkit-scrollbar-thumb{ background:#333 !important;}
.panel-content form .text-sml{ margin-bottom:5px;}
.panel-custom  .panel-content .rows{ margin-bottom:10px;}

/** Card Loader Start **/
.pre-load{ display: none; position: absolute; background: rgba(255, 255, 255, 0.77); width: 100%; height: 100%; z-index: 1000; }
.pre-load span{position: absolute; margin: 0 auto; left: 0; right: 0; text-align: center; top: 50%; bottom: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); width: 100px;}
.pre-load i{-webkit-animation-name: spin; -webkit-animation-duration: .8s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-name: spin; -moz-animation-duration: .8s; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; -ms-animation-name: spin; -ms-animation-duration: .8s; -ms-animation-iteration-count: infinite; -ms-animation-timing-function: linear; -o-transition: rotate(3600deg); font-size: 70px !important; color: #3c8dbc !important;}
.pre-load img{width: 50%;}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
/** Card Loader End **/

.header-search-group .dropdown-menu {
  border: 0px;
  width: 650px;
  padding: 8px 15px;
}
.header-search-dropdown{
  max-height: 350px;
  overflow-y: auto;
}

.border-right {
  border-right: 1px solid #f2f2f2;
}
.header-search-dropdown li a {
  padding: 5px 0px 5px 10px;
  color: #000;
}
.search-block .search-list a {
  padding-left: 0px;
  font-weight: 400 !important;
  font-size: 14px;
}
.header-search-dropdown li i {
  color: #3c4858;
  padding-right: 5px;
  font-size: 20px;
  width: 25px;
  text-align: left;
  vertical-align: middle;
}
.search-block .search-list a i {
    font-size: 16px !important;
}
.header-search-dropdown li {
    padding: 5px 10px;
    color: #3c4858;
    text-align: left;
    line-height: 1.5;
    margin: 0px !important;
}
.search-block .search-list a img{ margin-right: 5px; }
.search-list {list-style: none; padding-left: 0px;}
.search-list li {padding-left: 0px;}
.search-block { border-bottom: 1px solid #f2f2f2; }
.search-block:last-child { border-bottom: none; }
.search-block h3{margin: 10px 0px; font-size: 14px;}
.search-block .search-list a img{ margin-right: 5px; width: 20px;height: 20px;}
.rounded-circle.my-n1{width: 20px;height: 20px;}
.header-search-dropdown .table-striped tr td {background-color: #fff; border:none;}
.search-text {
  color: #333;
  font-weight: 600;
}
.header-search-dropdown table tr td a{
  color:var(--theme-color) !important; ;
}

.modal .modal-body.scroll {
  max-height: 420px;
  overflow: scroll;
  overflow-x: hidden;
}

.border-bottom-dotted{
  border-bottom: 1px solid var(--theme-border-color);
  border-bottom-style: dashed;
  margin: 10px 0px;
}

.leftSideBar {
  background: #fff;
  border-right: 1px solid var(--theme-border-color);
  border-right-style: dashed;
  height: calc(100vh - 83px);
}

.rightSideBar{
  padding: 10px;
}

.fixedpanel {
  position: sticky;
  top: 0px;
}

.leftSideBar .profile-section{
  display: inline-flex;
  padding: 50px;
  align-items: center;
  border-bottom: 1px solid var(--theme-border-color);
  border-bottom-style: solid;
  width: 100%;
}

.leftSideBar .profile-section .profile-user-img{
  border: none;
  padding: 0px;
  width:100%; 
  height: 100%;
  cursor: pointer;
}

.leftSideBar .profile-section .img-sec {
  width: 120px;
  height: 120px;
}

.leftSideBar .user-sec{
  /*margin-left: 10px;
  width: 80%;*/
  margin-top: 15px;
}
.leftSideBar .user-sec .username {
  font-size: 1.25rem;
  font-weight: 600;
}

.leftSideBar .profile-actions{

}

.leftSideBar .profile-actions a i{
  font-size: 15px;
}

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}

.fade-scale.show {
  opacity: 1;
  transform: scale(1);
}
#zoom-popup .modal-dialog{
  top: 0px;
}
#zoom-popup .modal-content{
  width: fit-content;
  margin: 0 auto;
}
#zoom-popup .modal-body{
  padding: 0px;
}
#zoom-popup .modal-body img{
  width: 100%;
}
#zoom-popup .close{
  color: #fff;
  position: absolute;
  right: -10%;
}

.leftSideBar .menu-section .menu-option{
  cursor: pointer;
  padding: 6px 10px;
  font-size: 15px;
  margin: 5px;
  list-style: none;
}
.leftSideBar .menu-section .menu-option.active{
  border: 1px solid var(--theme-text-color);
  border-style: solid;
  border-radius: 4px;
  color: var(--theme-text-color);
}

.video-box{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.video-inner{
  width: 25%;
}

.doc-list{
  background-color: var(--theme-color);
  color: #fff;
  width: 20%;
  padding: 5px 10px;
  text-align: center;
  margin: 10px 5px;
  border-radius: 10px !important;
  cursor: pointer;
}
.doc-list .doc-icon {
  font-size: 30px;
}
.doc-list .doc-title {
  font-size: 13px;
  font-weight: 600;
}
.doc-list .doc-sub-title {
  font-size: 9px;
}
.doc-list .doc-delete{
  position: absolute;
    right: 10px;
    background: #fff;
    color: #000;
    padding: 3px 5px 2px 4px;
    border-radius: 25px;
    font-size: 8px;
}
.doc-list .file{
  z-index: 999;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    left: 0px;
    margin-right: auto;
    margin-left: auto;
    top: 0px;
    cursor: pointer;
}

.doc-list .dashboard-title, .doc-list .dashboard-count {
  font-size: 14px;
  font-weight: 600;
}

.trimChar{
  border-bottom: 1px dashed;
}
.tooltip { pointer-events: none; z-index: 100000000 !important; }
.popover{
  z-index: 10000 !important;
}
.popover-body{
  max-height: 400px;
  overflow-y: auto;
}
.page-card .card-header {
  border-bottom: 0px !important;
  padding: 10px 10px !important;
  background-color: #e7e7e7;
}
.page-card .card-title {
  margin-bottom: 0px !important;
  font-size: 14px;
  font-weight: 600;
}
.page-card .card-body{
  padding: 8px;
}

.job-detail-card .profile-section{
  display: inline-flex;
  padding: 10px 5px;
  align-items: center;
  width: 100%;
}

.job-detail-card .profile-section .profile-user-img{
  border: none;
  padding: 0px;
  width: 55px; 
  height: 55px;
  cursor: pointer;
}

.job-detail-card .profile-section .img-sec {
  width: 55px;
  min-width: 55px;
}

.job-detail-card .user-sec{
  margin-left: 10px;
  width: 80%;
}
.job-detail-card .user-sec .username {
  font-size: 16px;
}

.job-detail-card .address-list{
  list-style: none;
  padding: 0px 5px;
  font-size: 14px;
  margin-bottom: 0px;
}

.job-detail-card .dot-box{
  border: 1px dashed #0eefce;
  background-color: #d6fff9;
  padding: 10px;
}

.border-blue-dot-right{
  border-right: 1px dashed #0eefce;
}

.job-detail-card .job-spec{
  list-style: none;
  padding: 0px 5px;
  font-size: 13px;
  margin-bottom: 0px;
}

.dot-box .one-dot{
  background: #fff;
  position: absolute;
  height: 17px;
  width: 17px;
  left: -11px;
  top: -6px;
  border-radius: 10px;
}

.dot-box .two-dot{
  background: #fff;
  position: absolute;
  height: 17px;
  width: 17px;
  left: -11px;
  bottom: -6px;
  border-radius: 10px;
}

.dot-box .three-dot{
  background: #fff;
  position: absolute;
  height: 17px;
  width: 17px;
  right: -11px;
  top: -6px;
  border-radius: 10px;
}

.dot-box .four-dot{
  background: #fff;
  position: absolute;
  height: 17px;
  width: 17px;
  right: -11px;
  bottom: -6px;
  border-radius: 10px;
}

.mid-one-dot{
  background: #fff;
  position: absolute;
  height: 17px;
  width: 17px;
  left: -10px;
  top: -19px;
  border-radius: 10px;
}

.mid-two-dot{
  background: #fff;
  position: absolute;
  height: 17px;
  width: 17px;
  left: -10px;
  bottom: -19px;
  border-radius: 10px;
}

.list-unstyled li {
  font-size: 13px;
  font-weight: 400;
  padding: 3px 0px 0px 0px;
  position: relative;
  color: rgba(0,0,0,0.7);
  font-style: italic;
}

.smal-img{
  border: none;
  padding: 0px;
  width: 25px; 
  height: 25px;
  cursor: pointer;
  border-radius: 25px;
}

.text-orange{color: #ff6500;}
.text-red{color: #ff0000;}
.text-grey{color: #a6aba9;}
.text-theme-color{color:var(--theme-color) !important;}

.availablity_row {
  margin: 10px 0px;
}
.cursor{
  cursor: pointer;
}
.rounded-circle-cal {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    display: flex;
    align-content: center;
    justify-content: center;
}
.rounded-circle-cal.available {
  background: var(--theme-sky-color);
}
.rounded-circle-cal.pending {
  background: #faba2f;
}
.rounded-circle-cal.confirmed {
  background: #1f9433;
}
.rounded-circle-cal.completed {
  background: #e0dede;
}
.availablity_row .font-14 {
  font-size: 14px;
  line-height: 20px;
}

.tags-list{list-style: none; text-align: center; margin: 15px;}
.tags-list .tags-item {
  border: 1px solid #c5c4c4;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 8px;
}
.tags-list .tags-item a {
  color: #000;
  font-size: 10px;
}

#toastsContainerBottomRight .toast{
  min-width: 350px;
  margin-right: 10px !important;
  border-radius: 0px !important;
}
.toast .close:hover{
  opacity: 1 !important;
}
.toast-header strong{font-weight: 600; color: #fff;}
.toast-header small{color: #fff;}

.toast.bg-danger{
  background-color: #C20000 !important;
  box-shadow: 0 0 20px 5px rgb(194 0 0 / 30%);
}
.toast.bg-danger .toast-header{
  background-color: #C20000 !important;
}
.toast.bg-danger .close, .toast.bg-danger .mailbox-attachment-close {
  color: #fff;
  text-shadow: none;
  position: absolute;
  color: #C20000 !important;
  opacity: 1;
  right: 1px;
  background: #fff;
  padding: 0px 4px;
  border-radius: 17px;
  border: 2px solid #C20000;
  margin-top: 30px;
  font-size: 18px;
}

.toast.bg-dark{
  background-color: #101010 !important;
  box-shadow: 0 0 20px 5px rgb(22 22 22 / 30%);
}
.toast.bg-dark .toast-header{
  background-color: #101010 !important;
}
.toast.bg-dark .close {
  color: #fff;
  text-shadow: none;
  position: absolute;
  color: #101010 !important;
  opacity: 1;
  right: 1px;
  background: #fff;
  padding: 0px 4px;
  border-radius: 17px;
  border: 2px solid #101010 !important;
  margin-top: 30px;
  font-size: 18px;
}

.toast.bg-warning{
  background-color: #007bff !important;
  box-shadow: 0 0 20px 5px rgb(0 156 231 / 30%);
}
.toast.bg-warning .toast-header{
  background-color: #007bff !important;
}
.toast.bg-warning .close {
  color: #fff;
  text-shadow: none;
  position: absolute;
  color: #007bff !important;
  opacity: 1;
  right: 1px;
  background: #fff;
  padding: 0px 4px;
  border-radius: 17px;
  border: 2px solid #007bff !important;
  margin-top: 30px;
  font-size: 18px;
}

.notification-list{
  list-style: none;
}
.notification-item.unread-notification{
  background-color: #f0fbfc;
}
.notification-item{
  padding: 10px 1.25rem;
}
/*.notification-item:hover {
  background-color: #e7f4ff;
}*/
.notification-action ul li a {
  color: #000;
  padding: 0px 5px;
}
.notification-item {
  border-bottom: 1px solid #cbcaca;
  border-bottom-style: dashed;
}
.notification-title a {
  font-weight: 600;
  font-size: 14px;
  color: var(--theme-color);
}
.notification-item .task-count {
  font-size: 13px;
  color: var(--theme-color);
  font-weight: 600;
}
.notification-subtitle{
  font-weight: 600;
}
.notification-message{
  margin-top: 2px;
}
.notification-time{
  margin-top: 2px;
  color: #686868;
  font-style: italic;
  font-size: 12px;
}
.notification-action {
  left: 0px;
  position: absolute;
  top: -5px;
  background-color: #fff;
  padding: 5px 10px 0px;
  border-radius: 5px;
}
.to-do-popover-card{
  border: 1px solid #d1d1d1;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.right { float: right; }
.job-grid-container{
  list-style: none;
  padding: 0px 40px;
}
.job-grid-item{
  border: 1px solid var(--theme-border-color);
  border-radius: 8px;
  background-color: #fff;
  padding: 10px 20px;
  margin-bottom: 12px;
}
.job-grid-item a {
  color: #000;
}
.job-grid-item .job-head{
  justify-content: space-between;
}
.job-grid-item .job-info{ /*width: 20%;*/ flex: 1 }
.job-grid-item .dot-box{
  border: 1px dashed var(--theme-blue-color);
  /*background-color: #e7f4ff;*/
  padding: 10px;
  /*width: 45%;*/
  border-radius: 4px;
  flex: 2
}
.job-grid-item .job-schedule{ /*width: 25%;*/ flex: 1}
.job-grid-item .border-blue-dot-right{
  border-right: 1px dashed var(--theme-blue-color);
}
/*.job-grid-item:hover, .job-grid-item:hover .mid-one-dot, .job-grid-item:hover .mid-two-dot {
  background-color: #e7f4ff;
}
.job-grid-item:hover .job-grid-action{
  border: 1px dashed var(--theme-border-color);
}*/
.job-grid-item .job-grid-action {
    position: absolute;
    top: -9px;
    background-color: #fff;
    padding: 2px 10px 0px;
    border-radius: 5px;
    left: -45px;
}
.job-grid-item .job-grid-action a {
    color: #000;
    padding: 0px 10px;
    font-size: 18px;
}
.job-grid-item .img-box, .user-panel .img-box{ width: 60px; }
.job-grid-item .profile-image, .user-panel .profile-image{
  border: none;
  padding: 0px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 50%;
}
.job-grid-item .job-info{
  width: 40%;
}
.job-grid-item .job-summary{
  width: 60%;
  /*padding: 10px 10px 10px 35px;
  background: #e2fffa;
  border-radius: 5px;*/
}
/*.job-grid-item:nth-child(even) {
  background: #f7f7f7;
}*/
.no-data-img{ width: 15%; }
.pull-right{float: right;}
.font-italic{font-style: italic;}

.preferred-badge-warning {
  display: inline-block;
  padding: 3px 10px 3px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 25px;
  background-color: var(--theme-yellow-color);
}

.preferred-badge {
  display: inline-block;
  padding: 3px 10px 3px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 25px;
  background-color: var(--theme-blue-color);
}
.preferred-badge i{
  position: absolute;
  margin-top: 1px;
  margin-left: 5px;
  color: #fff;
}

.table.card-table tr td, .table.card-table tr th {
  border: none;
  border-color: #e9e6e1 !important;
  color: #000;
  padding: 0.8rem 0.6rem !important;
  background-color: #fff;
}
.table.card-table tr{
  border: none !important;
}
.table.card-table tr:hover{
  background-color: var(--theme-background-color) !important;
}
.table.card-table tr td:first-child, .table.card-table tr th:first-child {
  border-left: 0 !important;
}
.table.card-table tr td:last-child, .table.card-table tr th:last-child {
  border-radius: 0 0.25rem 0.25rem 0;
}
.table.card-table tr:last-child td {
  border-bottom: 0 !important;
}
.table.card-table tr:first-child td {
  border-top: 0 !important;
}
.table.card-table tr td, .table.card-table tr th {
  vertical-align: middle;
  white-space: nowrap;
  padding-left: 1rem;
  padding-right: 1rem;
  border-right: 0 !important;
  border-bottom: 1px dashed #e9e6e1 !important;
  border-left: 1px dashed #e9e6e1 !important;
}

.filter-btn-group{
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 1000;
}
.filter-btn-group .filter-btn{
  border-radius: 25px;
  background-color: #000;
  border: none;
  color: #FFFFFF;
  text-align: center;
  padding: 12px 15px 11px 15px;
  transition: all 0.5s;
  cursor: pointer;
}
.dropdown-filter-box{
  width: 400px;
  padding: 0px;
}
.dropdown-filter-box h3{
  padding: 10px 10px 4px;
}
.select2-container--open.up,.daterangepicker { z-index:100000000000000000 !important;}
.datepicker-dropdown.up{ z-index: 100000000000 !important; }
.flex-1{
  flex-grow: 1; flex-basis: 0;
}

.table-responsive::-webkit-scrollbar{ height:5px !important;}
.table-responsive::-webkit-scrollbar-thumb{ background:#333 !important;}

.cal-container{
  height: 600px; justify-content: center; flex-direction: column; align-items: center;
}
.cal{
  width: 80%;
}
.cal .calendar-wrapper{height: 100%;}


.mobile-width{
  padding: 0px !important;
  width: 50% !important;
  margin: 0 auto !important;
  min-height: calc(100vh - 83px);
  background-color: #fff;
}
.mobile-width .container-fluid{
  padding: 0px !important;
}

.job-grid-item-new{
  padding: 15px 10px 0px;
}
.job-card-item{
  padding: 10px;
  border: 1px solid var(--theme-border-color);
  border-radius: 10px;
}
.job-information-box{
  padding: 10px;
  padding: 2px 0px;
}
.key-heading{
  font-weight: 600;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered{
  margin: 5px 0 -2px 0 !important;
}
.select2-selection__choice img{display: none;}

.swal2-container{
  z-index: 10000000000;
}


.icheck-primary>input:first-child:checked+label::before, .icheck-primary>input:first-child:checked+input[type="hidden"]+label::before{
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
[class*=icheck-]>input:first-child:checked+input[type=hidden]+label::after, [class*=icheck-]>input:first-child:checked+label::after{

}

.main-footer{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}