/**
* Template Name: NiceAdmin
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --body-primary-color: #2573ba;
  --body-secondary-color: #b0b0b0;
  --body-font-color: #747474;
  --body-danger-color: #FF0303;
  --font-Inter: "Inter", sans-serif;
  --dashboard-font-color: #898989;
  --fontweight-300: 300;
  --fontweight-400: 400;
  --fontweight-500: 500;
  --fontweight-600: 600;
  --fontweight-700: 700;
  --fontweight-800: 800;
  --fontweight-900: 900;
  --fontsize-10: 10px;
  --fontsize-11: 11px;
  --fontsize-12: 12px;
  --fontsize-13: 13px;
  --fontsize-14: 14px;
  --fontsize-15: 15px;
  --fontsize-16: 16px;
  --fontsize-18: 18px;
  --fontsize-20: 20px;
  --fontsize-22: 22px;
  --fontsize-24: 24px;
  --fontsize-26: 26px;
  --fontsize-28: 28px;
  --fontsize-30: 30px;
}

body {
  font-family: var(--font-Inter);
  font-weight: var(--fontweight-400);
  font-size: var(--fontsize-12);
}

a {
  color: #535353;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-Inter);
  font-weight: var(--fontweight-500);
  font-size: var(--fontsize-14);
}

.btn-primary {
  background-color: var(--body-primary-color);
  border-color: var(--body-primary-color);
}
.btn-outline-primary {
  color: var(--body-primary-color);
  border-color: var(--body-primary-color);
}
.text-primary {
  color: var(--body-primary-color)!important;
}
.form-control {
  font-size: var(--fontsize-12);
}
.btn-sm, .btn {font-size: var(--fontsize-12);}
.btn-lg {
  font-size: var(--fontsize-14);
  padding: .2rem 1rem;
}
.text-danger {
  color: var(--body-danger-color)!important;
}

.fs-12 {
  font-size: var(--fontsize-12) !important;
}

.fw-400 {
  font-weight: var(--fontweight-400) !important;
}

.fw-600 {
  font-weight: var(--fontweight-600) !important;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 40px;
  padding: 20px 0px;
  transition: all 0.3s;
  min-height: calc(100vh - 40px);
}

/*datepicker position calculated based on body margin*/
/*margin-top: 40px;*/
.datepicker {
  margin-top: 5px;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: var(--fontsize-24);
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--body-primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: var(--fontsize-24);
  color: var(--white-font-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--body-primary-color);
  color: var(--white-font-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: var(--fontsize-15);
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-family: var(--font-Rubik);
  font-weight: var(--fontweight-400);
  font-size: var(--fontsize-12);
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: var(--fontsize-18);
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: 1px solid #D7DADA;
  border-radius: 15px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  overflow: hidden;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  /* background-color: #fff; */
  color: #798eb3;
  padding: 15px;
}

.card-header {
  background-color: #fff;
  border-bottom: none;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: var(--fontsize-14);
  font-weight: var(--fontweight-500);
  color: #012970;
}

.card-title span {
  color: #899bbd;
  font-size: var(--fontsize-14);
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-size: var(--fontsize-20);
  font-weight: var(--fontweight-500);
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: var(--fontsize-15);
}

/* Breadcrumbs */
.breadcrumb {
  color: #899bbd;
  font-size: var(--fontsize-16);
  font-weight: var(--fontweight-600);
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: var(--fontsize-16);
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: var(--fontsize-14);
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: var(--fontsize-28);
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: var(--fontsize-30);
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: var(--fontsize-14);
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: var(--fontsize-11);
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: var(--fontsize-15);
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: var(--fontsize-14);
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: var(--fontsize-14);
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: var(--fontsize-14);
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: var(--fontsize-12);
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: var(--fontsize-24);
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: var(--fontsize-18);
}

.profile .profile-card .social-links a {
  font-size: var(--fontsize-20);
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: var(--fontsize-15);
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: var(--fontsize-18);
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: var(--fontsize-20);
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: var(--fontsize-14);
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: var(--fontsize-14);
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: var(--fontsize-24);
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 10px 0;
  font-size: var(--fontsize-12);
  transition: all 0.3s;
  border-top: 1px solid var(--light-blue-font-color);
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: var(--fontsize-12);
  color: #012970;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file2 {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file],
.btn-file2 input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
  padding: 0px;
}

.btn-file input[type=file]::-webkit-file-upload-button {
  display: none;
}

.img-circle {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.agentunilogo {height: 36px; margin-left: 10px;}
.agentcarlogo {height: 55px;}
.form-group.floating{position: relative;}
.form-group.floating>label {
  top: 6px;
  left: 15px;
  position: absolute;
  background-color: white;
  padding: 0px 5px 0px 5px;
  font-size: var(--fontsize-12);
  transition: 0.1s;
  pointer-events: none;
  font-weight: 400 !important;
  transform-origin: bottom left;
  color: #212529;
  
}

.form-group.floating>label.error{
  color: red;
	font-style: italic;
  display: block;
  position: relative;
  left: 0;
  top: 0;
  padding: 0;
  transform: translate(1px, -19%) scale(0.80) !important;
}

.form-control.floating:focus~label{
  transform: translate(1px,-85%) scale(0.80);
  opacity: .9;
  color: #005ebf;
}
.form-control.floating:disabled~label{
  transform-origin: bottom left;
  transform: translate(1px,-85%) scale(0.80);
  opacity: .9;
}
.form-control.floating:valid~label{
  transform-origin: bottom left;
  transform: translate(1px,-85%) scale(0.80);
  opacity: .9;
}
form.cmxform span.error, span.error {
	color: red;
	font-style: italic;
  display: block;
  width: 100%;
}

.form-group.floating select.form-control {padding: .375rem .75rem .375rem .35rem; appearance: auto;}

#agentOnboardingnav ul.nav-tabs{
  border-bottom: 1px solid var(--box-border-color);
  margin-bottom: -1px;
}
#agentOnboardingnav ul.nav-tabs li.nav-item {margin-right: 20px;}
#agentOnboardingnav ul.nav-tabs li.nav-item a.nav-link {
  border-width: 0 0 2px 0;
  border-color: transparent;
  padding: 5px 17px 2px;
  color: var(--box-border-color);
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: var(--fontsize-14);
  cursor: pointer;
}
#agentOnboardingnav ul.nav-tabs li.nav-item a.nav-link.active {
  color: var(--card-heading-font-color); 
  border-width: 0 0 2px 0;
  border-color: var(--card-heading-font-color);
}

#agentOnboarding .tab-content {font-size: var(--fontsize-12);}
#agentOnboarding .tab-content table a {color: var(--card-heading-font-color);}
.detailsView h5 {display: block; margin: 0;}
.detailsView h5 a {display: inline-block;
  margin-left: 10px;}
.detailsView span {display: block;}
.detailsView span a {display: inline-block;
  margin-left: 10px; text-decoration: underline;}
.detailsView .rmuserview {display: block; font-size: var(--fontsize-10); color: var(--body-secondary-color);}
.detailsView .rmuserview span {display: inline-block; color: var(--card-heading-font-color);}
.detailsView b {display: block; font-weight: normal;}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}
.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}
#agentOnboardingModalHtml .form-control{
  padding: .375rem .75rem;
  font-size: var(--fontsize-12);
  font-weight: 400;
}
.table-agent-onboarding thead {
  background: var(--body-primary-color);
  color: var(--white-font-color);
}
.table-agent-onboarding tbody tr:hover td{
  background: var(--bs-table-hover-bg) !important;
}
.table-agent-onboarding.dataTable thead th, .table-agent-onboarding tbody tr td, .table-agent-onboarding.dataTable tbody tr td{
  border-bottom-width: 0;
  padding: .5rem .5rem;
}
.table-agent-onboarding.dataTable{
  border-bottom-width: 0 !important;
}
.page-item .page-link{
  color: var(--body-primary-color);
}
.page-item.active .page-link{
  color: var(--white-font-color);
  background-color: var(--body-primary-color);
  border-color: var(--body-primary-color);
}
.form-select {
  background-color: var(--white-font-color);
  border-radius: 0rem;
  font-weight: var(--fontweight-400);
  font-size: var(--fontsize-12);
  padding: 6px 16px 6px 6px;
  /*background-position: right 2px center;
  background-size: 14px 10px;*/
  cursor: pointer;
}
#frm_inquiry .form-select {
    /*background-color: var(--white-font-color);
    border-radius: .2rem;*/
    font-weight: var(--fontweight-400);
    font-size: var(--fontsize-12);
    padding: 6px 16px 6px 5px;
    /*background-position: right 2px center;
    background-size: 14px 10px;
     height: 40px !important; */
}

ul#myUL {
  margin: 4px 0 0;
  padding: 0;
}

/* Style the list items */
ul#myUL li {
  cursor: pointer;
  position: relative;
  padding: 5px 34px 5px 5px;
  list-style-type: none;
  background: #eee;
  transition: 0.2s;
  /* make the list items unselectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Set all odd list items to a different color (zebra-stripes) */
ul#myUL li:nth-child(odd) {
  background: #f9f9f9;
}

/* Darker background-color on hover */
ul#myUL li:hover {
  background: #ddd;
}
ul#myUL li .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
}

ul#myUL li .close:hover {
  background-color: #f44336;
  color: white;
}

.dashbordBox {list-style-type: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap;}
.dashbordBox li {width: 50%; flex: 0 0 auto; padding: 0px 10px 10px; margin-bottom: 15px;}
.dashbordBox li a {
  display: block; 
  border: 1px solid var(--pagefilterbox-bordercolor); 
  border-radius: 6px; 
  padding: 10px; 
  text-align: end; 
  font-size: var(--fontsize-24); 
  font-weight: var(--fontweight-600); 
  color: var(--pagesubtitle-color);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
.dashbordBox li a span {display: block; text-transform: uppercase; color: var(--card-heading-font-color); font-weight: var(--fontweight-800);}
.dashbordBox li a:hover {color: var(--pagesubtitle-color); box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);}
.dashbordBox li a:hover span {color: var(--card-heading-font-color);}

.lightbluBG .card,
.lightorengBG .card,
.darlbluBG .card {border: 0px solid #D7DADA; border-radius: 10px; box-shadow: 3px 6px 7px rgba(1, 41, 112, 0.2); min-height: 180px;}

.lightbluBG .card h3,
.lightorengBG .card h3 {color: var(--card-heading-font-color); font-size: var(--fontsize-20); font-weight: var(--fontweight-600); text-transform: uppercase; position: relative; margin: 20px 0;}
.darlbluBG .card h3 {font-size: var(--fontsize-28); font-weight: var(--fontweight-800); text-transform: uppercase; position: relative; margin: 20px 0;}
.lightbluBG .card h3 img,
.lightorengBG .card h3 img,
.darlbluBG .card h3 img {position: absolute;right: -7px;top: -10px;height: 40px; width: 40px;}

.lightbluBG .card a,
.lightorengBG .card a,
.darlbluBG .card a {color: var(--card-heading-font-color);}

.lightbluBG .card .btn,
.lightorengBG .card .btn,
.darlbluBG .card .btn {margin: 0; padding: 3px 10px; font-size: var(--fontsize-12); color: var(--white-font-color);}

.lightbluBG .card .card-body,
.lightorengBG .card .card-body,
.darlbluBG .card .card-body {
  padding: 0 20px 15px 20px;
}

.lightbluBG .card.lightbluBGStep1{background-color: #CDEEFF;}
.lightbluBG .card.lightbluBGStep2{background-color: #E2FFDA;}
.lightbluBG .card.lightbluBGStep3{background-color: #FFE8C8;}
.lightbluBG .card.lightbluBGStep4{background-color: #FBFFDC;}

.lightorengBG .card.lightorengBGStep1{background-color: #fef9f5;}
.lightorengBG .card.lightorengBGStep2{background-color: #fff1e4;}
.lightorengBG .card.lightorengBGStep3{background-color: #ffebd8;}
.lightorengBG .card.lightorengBGStep4{background-color: #ffe1c5;}

.darlbluBG .card.darlbluBGStep1{background-color: #0a8dd1;}
.darlbluBG .card.darlbluBGStep2{background-color: #097dba;}
.darlbluBG .card.darlbluBGStep3{background-color: #22a9ed;}
.darlbluBG .card.darlbluBGStep4{background-color: #7ccdf8;}

#agentOnboarding {position: relative;}
#agentOnboarding .totalLeads {position: absolute; left: 30px; top: 18px; /*bottom: 1.5rem;*/}

.right-sidebar .form-select {
  /*background-color: var(--white-font-color);*/
  border-radius: 0rem;
  font-weight: var(--fontweight-400);
  font-size: var(--fontsize-12);
  padding: 6px 16px 6px 5px;
  background-position: right 2px center;
  background-size: 14px 10px;
}

.reInviteAll .form-check-input{width: 1.5em; height: 1.5em; margin-right: 10px;}
.reInviteAll .btn{font-size: var(--fontsize-12); margin: 0; padding: 2px 10px;}
.reInviteAll .form-check-input:checked {
  background-color: var(--body-primary-color);
  border-color: var(--body-primary-color);
}
.reInviteAll label.form-check-label{
  margin-top: 3px;
}
.reInviteAll label.form-check-label i {font-size: var(--fontsize-14); color: var(--body-primary-color);}
.sendVPReview {white-space: nowrap; color: #537E0B;}

.chatinfoview {/*border-bottom: 1px solid var(--card-border-color);*/ padding-bottom: .5rem;}
.chatinfoview .avatarimage {width:40px; height:40px; border-radius: 50%;}

.daterangepicker .range_inputs .btn-success {
  background-color: var(--body-primary-color);
  border-color: var(--body-primary-color);
}

.headings_thead {
  background-color: var(--body-primary-color);
  font-weight: var(--fontweight-400);
  font-size: var(--fontsize-14);
  color: var(--white-font-color);
}

.modal-body#agentOnboardingModalHtml a.viewbutton {
  color: var(--body-primary-color);
  text-decoration: underline;
}
/*--------------------------------------------------------------
# Dashboard 898989
--------------------------------------------------------------*/
.dashbordInfo {
  font-weight: var(--fontweight-600);
  font-size: var(--fontsize-15);
  color: var(--dashboard-font-color);
  flex: 0 0 auto;
  width: 20%;
  padding: 0 10px 0 0;
  margin: 0 0 25px 0;
}
.dashbordInfo.wid-25 {width: 25%;}
.dashbordInfo.wid-15 {width: 15%;}
.dashbordInfo h3 {margin-bottom: 4px; text-transform: uppercase;font-weight: var(--fontweight-600);font-size: var(--fontsize-15);}
.dashbordInfo span {background-color: #E1EFFB; border: 1px solid #1467BB; border-radius: 5px; display: inline-block; width: 30px; height: 30px;vertical-align: middle;}
.dashbordInfo span img {width: 100%;}
.dashbordInfo strong {color: #1467BB;font-size: var(--fontsize-24); display: inline-block; margin-left: 10px; height: 30px; line-height: 30px;vertical-align: middle;}