html,
body {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #333;
  font-weight: 400;
}

body.my-login-page {
  background-color: #f7f9fb;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.headingFont {
  font-family: "Poppins", sans-serif;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-18 {
  font-size: 18px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  outline: none;
}

/* preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eff3f6;
  z-index: 9999999;
}

#status {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}

.spinner {
  position: absolute;
  width: 78px;
  height: 78px;
  left: 50%;
  margin-left: -39px;
  margin-top: -39px;
}

.spinner:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  top: 50%;
  margin-top: -23px;
  left: 50%;
  margin-left: -23px;
  border-width: 2px 1px;
  border-style: solid;
  border-color: #0097a7 rgba(0, 151, 167, 0.3);
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: spin 3.45s infinite;
  -o-animation: spin 3.45s infinite;
  -ms-animation: spin 3.45s infinite;
  -webkit-animation: spin 3.45s infinite;
  -moz-animation: spin 3.45s infinite;
}

.spinner:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  margin-top: -6px;
  left: 50%;
  margin-left: -6px;
  background-color: #0097a7;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -o-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -ms-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -webkit-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
  -moz-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
}

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

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(1080deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  50% {
    -o-transform: rotate(360deg);
  }

  100% {
    -o-transform: rotate(1080deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  50% {
    -ms-transform: rotate(360deg);
  }

  100% {
    -ms-transform: rotate(1080deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(360deg);
  }

  100% {
    -webkit-transform: rotate(1080deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  50% {
    -moz-transform: rotate(360deg);
  }

  100% {
    -moz-transform: rotate(1080deg);
  }
}

@keyframes pulse {
  0% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  13% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  15% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  28% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  30% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  43% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  45% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  70% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  74% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  100% {
    background-color: rgba(0, 151, 167, 0.9);
  }
}

@-o-keyframes pulse {
  0% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  13% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  15% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  28% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  30% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  43% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  45% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  70% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  74% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  100% {
    background-color: rgba(0, 151, 167, 0.9);
  }
}

@-ms-keyframes pulse {
  0% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  13% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  15% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  28% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  30% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  43% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  45% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  70% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  74% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  100% {
    background-color: rgba(0, 151, 167, 0.9);
  }
}

@-webkit-keyframes pulse {
  0% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  13% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  15% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  28% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  30% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  43% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  45% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  70% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  74% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  100% {
    background-color: rgba(0, 151, 167, 0.9);
  }
}

@-moz-keyframes pulse {
  0% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  13% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  15% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  28% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  30% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  43% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  45% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  70% {
    background-color: rgba(0, 151, 167, 0.9);
  }

  74% {
    background-color: rgba(0, 151, 167, 0.2);
  }

  100% {
    background-color: rgba(0, 151, 167, 0.9);
  }
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(0, 151, 167, 0.8);
  }

  40% {
    box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(0, 151, 167, 0.8);
  }

  80% {
    box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(0, 151, 167, 0.8);
  }
}

@-o-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(0, 151, 167, 0.8);
  }

  40% {
    box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(0, 151, 167, 0.8);
  }

  80% {
    box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(0, 151, 167, 0.8);
  }
}

@-ms-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(0, 151, 167, 0.8);
  }

  40% {
    box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(0, 151, 167, 0.8);
  }

  80% {
    box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(0, 151, 167, 0.8);
  }
}

@-webkit-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(0, 151, 167, 0.8);
  }

  40% {
    box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(0, 151, 167, 0.8);
  }

  80% {
    box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(0, 151, 167, 0.8);
  }
}

@-moz-keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 white, 0 0 0 1px rgba(0, 151, 167, 0.8);
  }

  40% {
    box-shadow: 0 0 0 1px white, 0 0 0 2px rgba(0, 151, 167, 0.8);
  }

  80% {
    box-shadow: 0 0 0 3px #ffffff, 0 0 1px 3px rgba(0, 151, 167, 0.8);
  }
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* header */
.gr-navbar {
  background: #25628f;
}

.header:after,
.header:before {
  content: "";
  display: table;
  clear: both;
}

.header .navbar-brand {
    float: left;
    margin-right: 10px;
    padding: 10px 20px;
    height: 50px;
    width: 220px;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
}

.header.navbar-default .brand,
.header.navbar-default .navbar-brand {
  color: #fff;
}

.header .navbar-nav>li .dropdown-toggle,
.header .navbar-nav>li>a {
  display: block;
  text-decoration: none;
  line-height: 20px;
  padding: 15px;
  border: none;
  color: #fff;
}

.header .navbar-user .image,
.header .navbar-user .image.image-icon,
.header .navbar-user img {
  width: 30px;
  margin: -5px 10px -5px 0;
  border-radius: 30px;
  height: 30px;
  float: left;
}

.dropdown-menu.media-list {
  max-width: 360px;
  padding: 0;
}

.header .navbar-nav>li>.dropdown-menu {
  margin-top: 0;
  border-top: 1px solid #f2f3f4;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dropdown-item,
.dropdown-menu>li>a {
  display: block;
  padding: 5px 15px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
  background: #f2f3f4;
}

.navbar-user .dropdown-menu {
  width: 100%;
}

.gr-navbar .dropdown-header {
  padding: 5px 15px;
  color: #255bc7;
}

.gr-navbar .media-list {
  width: 200px;
}

.header .navbar-nav>li .dropdown-toggle .label,
.header .navbar-nav>li>a .label {
  position: absolute;
  top: 5px;
  right: 15px;
  display: block;
  background: #00acac;
  line-height: 12px;
  font-weight: 600;
  color: #fff;
  padding: 3px 6px;
  border-radius: 20px;
}

.header .dropdown .ti-bell {
  font-size: 18px;
}

.header .dropdown.notificaion .nav-link {
  padding: 15px 25px;
}

.header .dropdown.notificaion .dropdown-toggle:after {
  content: none;
}

.gr-navbar .nav-item.gr-active,
.gr-navbar .nav-item.show,
.gr-navbar .nav-item:hover {
  background: #21577f;
}

/* navbar-horizontal */
.dropdown-toggle::after {
  content: "\e64b";
  border: none;
  font-family: 'themify';
  vertical-align: middle;
  width: auto;
  height: auto;
  font-size: 11px;
}

.navbar-horizontal {
  background-color: #f5f6fa;
  border-bottom: 1px solid #dee0e1;
}

.navbar-horizontal .nav-item {
  margin: 0;
  padding: 0;
}

.navbar-horizontal .nav-item>.nav-link {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.navbar-horizontal .nav-item .nav-link {
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.2px;
  font-weight: 500;
  padding: 5px 10px 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  white-space: nowrap;
}

.navbar-horizontal.nav-icons-top .nav-link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.navbar-horizontal .nav-item .nav-link {
  color: #333;
}

.navbar-horizontal .nav-item .nav-link.active {
  position: relative;
}

.navbar-horizontal .nav-item .nav-link.active,
.navbar-horizontal .nav-item .nav-link:focus,
.navbar-horizontal .nav-item .nav-link:hover {
  color: #25628f;
  background: #fff;
}

.navbar-horizontal .nav-item .nav-link.active,
.navbar-horizontal .nav-item .nav-link.nav-active {
  border-left: 1px solid #dee0e1;
  border-right: 1px solid #dee0e1;
}

.navbar-horizontal .nav-item .nav-link>.nav-icon {
  font-size: 16px;
  font-weight: 400;
  margin-right: 5px;
  position: relative;
}

.navbar-horizontal.nav-icons-top .nav-link .nav-icon {
  display: block;
  margin-bottom: 5px;
  position: relative;
  margin-right: 0;
  font-size: 16px;
}

.navbar-horizontal .nav-item .nav-link>.nav-icon {
  color: #333;
}

.navbar-horizontal .nav-item .nav-link.active .nav-icon,
.navbar-horizontal .nav-item .nav-link:focus .nav-icon,
.navbar-horizontal .nav-item .nav-link:hover .nav-icon {
  color: #25628f;
}

.navbar-horizontal .nav-item .nav-link.active::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.navbar-horizontal .nav-item .nav-link.active::before {
  background: #25628f;
}

.navbar-horizontal.nav-icons-top .nav-link.dropdown-toggle {
  padding-right: 35px;
}

.navbar-horizontal.nav-icons-top .nav-link.dropdown-toggle:after {
  position: absolute;
  right: 15px;
  top: 34px;
}

.navbar-horizontal .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #25628f;
  background: #fff;
}

.navbar-horizontal .nav-pills>.nav-item>.dropdown-menu {
  margin-top: 0;
  border-top: 1px solid #dadde1;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 200px;
}

.navbar-horizontal.nav-icons-top.fixed-on-scroll {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* page header */
.page-header {
  position: relative;
  z-index: 1;
}

.page-header span.badge {
  margin-left: 10px;
}

.page-header>.title-and-subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  height: 60px;
  padding: 0 30px;
  border-bottom: 1px solid #dee0e1;
  position: relative;
  background: #fff;
}

.page-header>.title-and-subtitle .title-block .main-title {
  margin: 0;
  margin-top: 2px;
  font-weight: 500;
  font-size: 17px;
  line-height: 17px;
}

.page-header>.title-and-subtitle .title-block .sub-title {
  margin-top: 3px;
  color: #858585;
}

/* page-content */
.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.card {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: solid 1px #ced4da;
}

/* company-logo */
.company-logo {
  margin-bottom: 30px;
}

.company-logo-img {
  border: solid 1px #dee0e1;
  padding: 10px;
}

.company-logo-img figure {
  margin-bottom: 0px;
}

.company-logo-img img {
  margin-bottom: 8px;
}

.mem-list-group {
  margin: 1.25rem -1.25rem 0;
  border-top: solid 1px #dee0e1;
}

.mem-list-group ul {
  margin-top: 1rem;
  margin-bottom: 0
}

.mem-list-group li a {
  color: #575962;
  display: block;
  padding: 10px 20px;
  font-weight: 500;
}

.mem-list-group li a i {
  line-height: 1.5;
}

.mem-list-group li a:hover,
.mem-list-group li a:focus {
  background-color: #f5f6fa;
  color: #444444;
}

.mem-profile-img {
  padding: 7px;
  display: inline-block;
  margin: 1.25rem auto;
  border-radius: 100%;
}

.mem-profile-img {
  border: 2px solid #f4f5f8;
}

.mem-profile-img img {
  text-align: center;
  max-width: 130px !important;
  margin: 0 auto !important;
  border-radius: 100%;
}

.mem-profile-details span {
  display: block;
  font-size: 12px;
  color: #7b7e8a;
  font-weight: 500;
}

.mem-profile-details .mem-name {
  font-size: 20px;
  font-weight: 500;
  color: #1b1c1e;
}

.row+.row {
  margin-top: 30px;
}

.card-title {
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1.35rem;
}

.emp-name,
.list-name {
  font-weight: 500;
  color: #333;
}

.list-name {
  font-size: 12px;
  color: #777;
}

.emp-dob,
.list-total {
  text-transform: uppercase;
  color: #2196F3;
  font-weight: 600;
}

.list-total {
  font-size: 12px;
}

.img-sm {
  width: 35px;
  height: 35px;
}

.card-widget .card-header {
  margin: 0;
  background: #fff;
  border-bottom: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 0px 15px;
  font-size: 14px;
  color: #343a40;
  font-weight: 500;
}

.card-widget-2 .card-header {
  padding: 26px 30px 10px 30px;
  font-size: 18px;
  color: #343a40;
  font-weight: 500;
}

.card-icon-box {
  width: 54px;
  height: 54px;
  -webkit-border-radius: 32px;
  border-radius: 32px;
  text-align: center;
  line-height: 54px;
  display: block;
  font-size: 22px;
}

.card-icon-1 .card-icon-box {
  background-color: #eff1fc;
  color: #4e54a8;
}

.card-icon-2 .card-icon-box {
  background-color: rgba(129, 193, 89, .15);
  color: #81c159;
}

.card-icon-3 .card-icon-box {
  background-color: rgba(255, 61, 0, .1);
  color: #df538b;
}

.card-icon-4 .card-icon-box {
  background-color: rgba(248, 238, 62, .2);
  color: #f88528;
}

/* .page-content{
  min-height: 90vh;
} */
.ks-total {
  font-size: 26px;
  font-weight: 600;
  display: block;
  line-height: 30px;
}

.ks-description {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.75px;
  text-align: right;
  color: #777;
}

.card-widget-2 .card-block {
  padding: 0 30px 30px 30px;
}

.card-widget-2 .card-widget-datetime {
  margin-bottom: 20px;
  line-height: 1.67;
  color: #858585;
}

.card-widget-2 .card-widget-datetime .font-weight-bold {
  color: #333
}

.card-widget-2 .payment-earnings-amount {
  font-size: 36px;
  font-weight: 500;
  color: #171717;
  margin-bottom: 12px;
}

.card-widget-2 .payment-earnings-chart {
  height: 155px;
  margin-left: -36px;
  margin-right: -36px;
  margin-bottom: -39px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.card-widget-2 .payment-earnings-amount-description {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(23, 23, 23, .8);
  margin-bottom: 22px;
}

#svg circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  stroke: #cfd8dc;
  stroke-width: 0.5rem;
}

#svg #bar {
  stroke: #7ace4c;
}

#cont {
  display: block;
  height: 200px;
  width: 200px;
  margin: 0px auto 10px;
  border-radius: 100%;
  position: relative;
}

#cont:after {
  position: absolute;
  display: block;
  height: 160px;
  width: 160px;
  left: 50%;
  top: 50%;
  content: attr(data-pct)"%";
  margin-top: -80px;
  margin-left: -80px;
  border-radius: 100%;
  line-height: 160px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.svgChart-description span {
  color: #777;
  font-weight: 600;
}

.new-badge {
  width: 2rem;
  height: 0.45rem;
  display: inline-block;
  border-radius: 1.1rem;
  margin-bottom: 0.12rem;
  margin-right: 0.8rem;
}

.kr-bg-win {
  background-color: #7ace4c;
}

.kr-bg-lost {
  background-color: #cfd8dc;
}

.card.panel-table .card-block .table-bordered {
  border: none;
  margin-bottom: 0px;
}

.card.panel-table .card-header {
  background-color: transparent;
}

/* contact list */
.light {
  background-color: #F6FAFB;
}

.search-input,
.contact-view .contact-header {
  margin: 0 -15px;
  padding: 8px 10px;
  border-bottom: 1px solid #dee0e1;
  border-right: 1px solid #dee0e1;
  position: relative;
  background: #fbfbfb;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.search-input.search-input-2 {
  border: 1px solid #dee0e1;
  padding: 0px;
  box-shadow: none;
}

.contact-view .contact-header {
  margin: 0px;
  border-right: none;
  height: 46px;
}

.search-input input[type="search"] {
  width: 100%;
  box-shadow: none;

  background-color: transparent;
  outline: none;
  border: none;
  padding: 5px 45px 5px 35px;

}

.search-input.search-input-2 input[type="search"] {
  height: 36px;
}

.search-input span,
.search-input a.filter {
  position: absolute;
  left: 15px;
  top: 6px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
}

.search-input.search-input-2 span {
  left: 8px;
  top: 2px;
}

.search-input a.filter {
  left: initial;
  position: absolute;
  right: 0px;
  top: -1px;
  bottom: -1px;
  border-left: 1px solid #dee0e1;
  width: 50px;
  display: block;
  line-height: 42px;
  text-align: center;
  background: #60b9eb;
  color: #fff;

}

.sidebarFilter {
  max-width: 8.333333%;
}

.filter-box {
  left: 0;
  right: 0;
  z-index: 999;
}

.filter-box:not(.position-absolute) {
  margin: 0px -15px;
}

.filter-box .card {
  border-left: none;
  border-top: none;
}

.filter-box .dropdown-menu {
  max-height: 50vh;
  overflow: hidden;
  overflow-y: auto;
}

.filter-box .dropdown-item,
.filter-box .dropdown-header {
  padding: 2px 15px;
  cursor: pointer;
}

.filter-box .dropdown-item label {
  cursor: pointer;
}

.contact-list,
.contact-view .contact-body .custom-height {
    overflow-y: scroll !important;
    /* height:90vh; */
    max-height: 572px;
    min-height: 500px;
    overflow-x: hidden !important;
}

.contact-list-item {
  display: block;
  padding: 12px 12px;
  border-bottom: 1px solid #E0E0E0;

}

.contact-list-item:hover,
.contact-list-item:focus {
  background-color: rgba(0, 0, 0, 0.04);
}

.contact-list-item.active {
  background-color: rgba(33, 150, 243, 0.15);
}

/* .contact-list li:last-child a.contact-list-item{
  border-bottom: none;
} */
.contact-list-item .client-name {
  font-size: 14px;
}

.contact-list-item .client-comp {
  font-size: 12px;
}

.index-scroller a {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  line-height: 22px;
}

.index-scroller a.active {
  color: rgba(0, 0, 0, 1);
}

.contact-left {
  padding-top: 10px;
  padding-bottom: 10px;
}

.contact-left h3.label {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
  color: rgba(0, 0, 0, 0.8);
}

.contact-left .label-circle {
  padding: .25em .5em;
  font-size: 75%;
  line-height: 1;
  vertical-align: baseline;
  font-weight: 700;
  background-color: rgba(120, 130, 140, .6);
  color: #fff;
  border-radius: .2rem;
  display: inline-block;
}

.contact-left .label-circle.label-xs {
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
}

.contact-left .primary {
  background-color: #4BC0C0;
}

.contact-left .warn {
  background-color: #b07cdd;
}

.contact-left .success {
  background-color: #22b66e;
}

.contact-left nav ul li a {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.contact-left nav ul li a:hover,
.contact-left nav ul li a:focus {
  color: rgba(0, 0, 0, 0.75)
}

.contact-left nav ul li a.active {
  color: #0076d4;
}

.contact-view .contact-header {
  padding: 8px 30px 8px 15px;
}

.contact-view .contact-header h3 {
  margin-bottom: 0px;
  line-height: 30px;
}

.contact-view .contact-body .contact-body-inner {
  padding: 30px;
}

.form-control:hover {
  border-color: #ced4da;
}

.form-control.active,
.form-control.active:hover,
.form-control:focus,
.form-control:focus:hover {
  border-color: #25628f;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-group {
  margin-bottom: 10px
}

.form-group.row+.form-group.row {
  margin-top: 0px;
}

.form-group:last-child {
  margin-top: 10px !important;
}

textarea.form-control {
  height: auto;
}

.form-group .select2-container.select2-container--default .select2-selection--single,
.form-group .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow,
.form-group .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 32px;
  line-height: 32px;
    border-color: #ced4da;
}

.form-group .select2-container.select2-container--default .select2-selection--single {
   border-color: #ced4da;
}

.form-group .select2-container.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #25628f;
}

.input-icon {
  position: relative;
}

.input-icon .icon-addon {
  position: absolute;
  padding: 0;
  color: rgba(58, 82, 155, .6);
  font-size: 12px;
  width: 36px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.input-icon.icon-right .icon-addon {
  top: 0;
  right: 0;
  color: #b1b1b1;
  font-size: 14px;
  padding-right: 6px;
}

.flatpickr-input:read-only {
  border: solid 1px #dedede;
  background-color: #fff !important;
}

.form-control:disabled,
.form-control:disabled:active,
.form-control:disabled:hover {
  background-color: #fafafa;
  border: solid 1px #e8e8e8;
}

.form-control:read-only {
  background-color: #fafafa;
}

.checkbox-switch {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  width: 61px;
  min-width: 61px;
  height: 24px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
}

.checkbox-switch.status {
  width: 80px;
  min-width: 80px;
}

.checkbox-switch.disabled {
  opacity: .75;
}

.checkbox-switch input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  width: 100%;
}

.checkbox-switch>.ks-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
}

.checkbox-switch>.ks-off,
.checkbox-switch>.ks-on {
  color: #fff;
  line-height: 25px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  z-index: 1;
}

.checkbox-switch>.ks-on {
  display: none;
  left: 15px;
}

.checkbox-switch>.ks-off {
  left: 27px;
}

.checkbox-switch input[type=checkbox]:checked+.ks-indicator {
  background: #fff;
  left: calc(100% - 21px);
}

.checkbox-switch input[type=checkbox]:checked+.ks-indicator+.ks-on+.ks-off {
  display: none;
}

.checkbox-switch input[type=checkbox]:checked+.ks-indicator+.ks-on {
  display: inline-block;
}

.form-group .custom-file-label,
.form-group .custom-file-label::after {
  height: 32px;
  line-height: 22px;
  font-weight: 400;
}

.contact-body-inner .row+.row {
  margin-top: 0px;
}

.contact-body-inner label {
    font-size: 12px;
    font-weight: 500;
    /* text-transform: uppercase !important; */
    color: #333;
    margin-bottom: 4px;
}

.contact-body-inner label.col-form-label {
  margin-bottom: 0px;
  font-size: 11px;
}

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

/*  */
.overflow-hidden {
  overflow: hidden;
}

.js-scrollable:focus {
  outline: none;
}

.profile-img {
  padding-right: 15px;
}

.profile-img .cover {
  height: 150px;
  overflow: hidden;
  position: relative;
  width: 150px;
  margin: 0px auto;
  margin-bottom: 15px;
}

.profile-img .cover.cover-sm {
  width: 65px;
  height: 65px;
  margin-bottom: 0px;
}

.profile-img .cover img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 150px;
}

.loader .layer,
.layer-2 {
  background-color: rgba(0, 0, 0, 0.25);
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.contact-list-box .layer,
.layer-2 {
  background-color: rgba(255, 255, 255, 0.85);
}

.loader .layer.visible,
.layer-2.visible {
  display: block;
}

.upload-input {
  margin-top: 20px;
  position: relative;
  padding: 10px;
  background-color: #4CAF50;
  text-align: center;
}

.upload-input .hidden-input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.profile-img .cover.cover-sm .upload-input {
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  padding: 2px;
  transition: all 0.3s ease-in-out;
}

.profile-img .cover.cover-sm:hover .upload-input {
  bottom: 0px;

}

.upload-input label {
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  margin: 0px;
  display: block;
  z-index: 1;
  position: relative;
}

.profile-img .cover.cover-sm .upload-input label {
  color: #fff !important;
  margin-bottom: 0px;

}

@-webkit-keyframes spin-1 {
  0% {
    -webkit-transform: rotate(0deg) translate(-50%);
    transform: rotate(0deg) translate(-50%);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-50%);
    transform: rotate(360deg) translate(-50%);
  }
}

@keyframes spin-1 {
  0% {
    -webkit-transform: rotate(0deg) translate(-50%);
    transform: rotate(0deg) translate(-50%);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-50%);
    transform: rotate(360deg) translate(-50%);
  }
}

.img-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-animation: spin-1 0.35s infinite linear;
  animation: spin-1 0.35s infinite linear;
  border: 2px solid #707070;
  border-radius: 50%;
  border-top-color: white;
  height: 25px;
  -webkit-transform-origin: left;
  transform-origin: left;
  top: 45%;
  width: 25px;
}

.profile-img .cover.cover-sm .img-loader {
  top: 34%;
}

.layer-2 .text-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 5px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 35px;
  line-height: 50px;
  font-weight: 600;
  font-family: 'Poppins';
}

.contact-view .contact-body.full-height {
  max-height: 100% !important;
}

/* section */
.section-heading {
  border-bottom: 1px solid #e9e9e9;
}

.section-heading h4 {
  font-size: 16px;
}

.section-body {
  padding: 10px 0px;
}

.myDataTable td,
.myDataTable th {
  font-size: 13px;
}

.myDataTable thead th {
  background-color: #333;
  border-bottom: 1px solid #dcdee6;
  color: #fff;
}

.myDataTable.fixed-table {
  table-layout: fixed;
}

.myDataTable thead th a {
  color: initial;
}

.myDataTable tbody td {
  border-bottom: 1px dotted #dedede;
  vertical-align: middle;
  padding: 5px;
}

.tw-30 {
  width: 50px;
}

.tw-50 {
  width: 50px;
}

.tw-80 {
  width: 80px;
}

.tw-100 {
  width: 100px;
}

.tw-150 {
  width: 150px;
}

.tw-180 {
  width: 180px;
}

.tw-200 {
  width: 200px;
}

.tw-220 {
  width: 220px;
}

.tw-250 {
  width: 250px;
}
.tw-280 {
  width: 280px;
}
.tw-300 {
  width: 300px;
}

.rotate-90 {
  transform: rotate(-90deg);
}

.modal label {
  font-weight: 500;
}

.modal .custom-control label {
  font-weight: normal;
}

body.modal-open {
  padding-right: 0px !important;
}

/* filter-section */
.filter-section .search-input.search-input-2 {
  margin: 0px;
  border: none;
}

.filter-section .actionItem {
  padding: 0px 10px;
}

.filter-section .actionItem .search-input.search-input-2 input[type="search"] {
  height: 30px;
  border: 1px solid #dee0e1;
}

.filter-section .actionItem .search-input span {
  font-size: 16px;
  /* top: 8px; */
  top: 2px;
}

.filter-section .actionItem .btn {
  height: 30px;
  line-height: 1;
}

.filter-section .actionItem .select2-selection {
  height: 30px;
  border-color: rgb(195, 195, 195);
}

.filter-section .actionItem .select2-selection .select2-selection__rendered,
.filter-section .actionItem .select2-selection .select2-selection__arrow {
  line-height: 28px !important;
}

.filter-section .actionItem .select2-selection .select2-selection__arrow {
  height: 30px;
}

/* leadForm */
.leadForm .contact-body-inner label {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.75px;
  margin-bottom: 7px;
}

.leadForm .headingFont {
  margin-top: 5px;
  margin-bottom: 10px;
}

.leadForm .form-group:last-child {
  margin-top: 0px !important;
}

.modal-md {
  max-width: 650px;
}

.imp_exp_Contact .modalheading {
  margin-bottom: 30px;
}

/* action-anchor */
.action-anchor a {
  margin-right: 10px;
}

.action-anchor a i {
  margin-right: 10px;
}

.action-anchor a:focus,
.action-anchor a:active:focus {
  box-shadow: none;
  outline: none;
}

.action-anchor-2 a {
  margin-right: 20px;
  border: solid 1px #c4c4c4;
  padding: 5px 8px;
  color: #333;
  display: inline-block;
  margin-bottom: 10px;
}

.action-anchor-2 a i {
  margin-right: 5px;
}

/* login page */
.my-login-page .card-wrapper {
  width: 400px;
}

.my-login-page .card .card-title {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.my-login-page .brand {
    width: 120px;
    /* height: 10px; */
    overflow: hidden;
    /* border-radius: 50%; */
    margin: 0 auto;
    margin: 60px auto;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, .05); */
    /* position: relative; */
    /* z-index: 1; */
}

.my-login-page .card {
  border-color: transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}

.my-login-page label {
  display: block;
}

.my-login-page .form-control {
  height: auto;
  padding: 10px 15px;
}

.my-login-page .btn.btn-block {
  padding: 12px 10px;
}

#eye-password-0 {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

/* footer */
.footer {
  height: 40px;
  min-height: 40px;
  line-height: 40px;
  background-color: #313131;
  color: #fff;
}

.nav-tabs>li>a {
  /* margin-right: 2px; */
  border: 1px solid #a7a7a7cc;
  border-radius: 2px;
  position: relative;
  display: block;
  padding: 5px 10px;
  color: black;
  font-weight: 900;

}

.nav-tabs>li>a.active {
  background-color: #25628f !important;
  color: white !important;
  background: transparent;
}

.nav-tabs {

  border: none;
}

.contact-tabs>li>a {

  border: 1px solid #d8e3eb;
  border-radius: 5px;
  position: relative;
  display: block;
  padding: 10px 0px 10px 0px;
  color: black;
  /* font-weight: 500; */
  text-transform: capitalize;
  color: black !important;


}

.contact-tabs>li>a.active {
  color: #555;
  cursor: default;
  font-weight: 700;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  background-color: #d8e3eb7a;
}

.contact-tabs>li>a.active::before {
  background: #42a5f5;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;

}

.contact-tabs {

  border: none;
}



.add-lable {
  background-color: #25628f2e;
  color: black;
  text-align: left;
  margin: auto;
  /* width: 100%; */
  padding: 3%;
  width: 60%;
  box-shadow: 0 0 3px 0px #00000073;
}



.contact-tabs {
  border-bottom: 1px solid #ddd;
}

.contact-tabs>li {
  float: left;
  margin-bottom: -1px;
  width: 20%;
  text-align: center;

}

.add-button:hover {

  color: #fff;
  background-color: #25628f;
  border-color: #25628f;
}

.add-button {

  color: #fff;
  background-color: #25628f;
  border-color: #25628f;
}

fieldset {
  min-width: 0;
  padding: 18px;
  margin: 0;
  border: 0;
  border: 1px solid #abaaaa;
}

legend {
  display: block;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 14px;
  line-height: inherit;
  color: inherit;
  white-space: normal;
  font-weight: 500;
}

.tab-icon {
  font-size: 12px;
  font-weight: bolder;
  padding-right: 5px;
}

.custom-progress-bar {
  background-color: #17a2b8;
}

.loader-h {
  height: 200px;
}

.profile-nav {
  border-bottom: 1px solid rgba(57, 80, 155, .2);
  padding: 0px 30px;
}

.profile-nav .nav-link,
.gr-profile-submenu .nav-link {
  font-size: 14px;
  padding: 15px 20px;
  font-weight: 500;
  line-height: 14px;
  position: relative;
  color: #333;
}

.profile-nav .nav-link.active::before,
.profile-nav .nav-link.active:hover::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  display: block;
  background: #42a5f5;
  z-index: 1;
}

.breadcrumb-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 17px 1px 5px 1px;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0.25rem;
}

.checkbox-switch.switch-sm {
  width: 35px;
  height: 19px;
  min-width: 26px;
}

.checkbox-switch.switch-sm>.ks-indicator {
  width: 13px;
  height: 13px;
  top: 3px;
}

.checkbox-switch.switch-sm input[type=checkbox]:checked+.ks-indicator {
  background: #fff;
  left: calc(100% - 16px);
}

.table-user-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.complete {
  display: none;
}

.custom-hr {
  margin-top: 0rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}



/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */

.ms-parent {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.ms-choice {
  display: block;
  width: 100%;
  height: 26px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #aaa0;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #25628f2b;
  box-shadow: 0 0 4px 0px #0000004f;
}

.ms-choice.disabled {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.ms-choice>span {
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding-left: 8px;
}

.ms-choice>span.placeholder {
  color: #999;
}

.ms-choice>div {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 25px;
  background: url('multiple-select.png') left top no-repeat;
}

.ms-choice>div.open {
  background: url('multiple-select.png') right top no-repeat;
}

.ms-drop {
  width: 100%;
  overflow: hidden;
  display: none;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  z-index: 1000;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ms-drop.bottom {
  top: 100%;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.ms-drop.top {
  bottom: 100%;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.ms-search {
  display: inline-block;
  margin: 0;
  min-height: 26px;
  padding: 4px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 10000;
}

.ms-search input {
  width: 100%;
  height: auto !important;
  min-height: 24px;
  padding: 0 20px 0 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #fff url('multiple-select.png') no-repeat 100% -22px;
  background: url('multiple-select.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  background: url('multiple-select.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url('multiple-select.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url('multiple-select.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  background: url('multiple-select.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background: url('multiple-select.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}

.ms-search,
.ms-search input {
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.ms-drop ul {
  overflow: auto;
  margin: 0;
  padding: 5px 8px;
}

.ms-drop ul>li {
  list-style: none;
  display: block;
  background-image: none;
  position: static;
}

.ms-drop ul>li .disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
}

.ms-drop ul>li.multiple {
  display: block;
  /* float: left; */
  width: 100% !important;
}

.ms-drop ul>li.group {
  clear: both;
}

.ms-drop ul>li.multiple label {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ms-drop ul>li label {
  font-weight: normal;
  display: block;
  white-space: nowrap;
  position: relative;
  width: 100%;
  cursor: pointer;
}

.ms-drop ul>li label:before {
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #ccc;
  position: absolute;
  left: 0;
  top: 2px;
}

.ms-drop ul>li label::after {
  width: 15px;
  height: 15px;
  content: "\e64c";
  position: absolute;
  left: 2px;
  top: 3px;
  display: block;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  font-family: 'themify';
  opacity: 0;
  filter: alpha(0);
}

.ms-drop ul>li label.optgroup {
  font-weight: bold;
}

.ms-drop input[type="checkbox"] {
  vertical-align: middle;
}

.ms-drop .ms-no-results {
  display: none;
}

.ms-drop ul>li label span {
  padding: 6px 10px;
  padding-left: 25px;
}

.ms-drop ul>li label input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.ms-drop ul>li.selected label::before {
  background-color: #4da4f9;
  border-color: #4da4f9;
}

.ms-drop ul>li.selected label::after {
  color: #fff;
  opacity: 1;
  filter: alpha(100%);
}

/* .ms-choice:hover {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #42a5f5;
} */
.upload-input-custom {
  margin-top: 0px;
  text-align: center;
  color: black;
  background-color: transparent;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: red;
}

.container:hover .overlay {
  opacity: 1;
}

.icon {
  color: white;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.cutom-table td,
.cutom-table th {
  padding: 0.45rem;
  border: 1px solid #dee2e682;
}

.cutom-table thead {

  background-color: rgba(0, 0, 0, 0.075);
}

.cutom-table a::after {
  content: "|";
  padding-right: 0px;
  color: #000;
  display: none;
  padding-left: 10px;
}

.cutom-table a :last-child::after {
  content: "";
  padding-right: 0px;
  color: #000;

  padding-left: 10px;
}

.cutom-table i:hover {
  color: #fff;
}

.cutom-table i {
  color: #fff;
}

.cutom-search {
  /* margin: 0 -15px; */
  padding: 2px 7px !important;
  border-bottom: 1px solid #dee0e1;
  border-right: 1px solid #dee0e1;
  position: relative;
  background: #fbfbfb;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #dee0e1;
  border-radius: 12px;
}

.cutom-search span {
  top: 1px !important;
}

.fs-8 {
  font-size: 8px;
}

.checkbox-custom .selected label::before {
  background-color: #4da4f9;
  border-color: #4da4f9;
}

.ms-drop ul>li label:before {
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #ccc;
  position: absolute;
  left: 0;
  top: 2px;
}

.single-table td {
  padding-bottom: 0px;
}

/* timeline */
ul.timeline {
  list-style-type: none;
  position: relative;
}

ul.timeline:before {
  content: ' ';
  background: #d4d9df;
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 100%;
  z-index: 400;
}

ul.timeline>li {
  margin: 20px 0;
  padding-left: 20px;
}

ul.timeline>li:before {
  content: ' ';
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 2.5px solid #22c0e8;
  left: 22px;
  width: 15px;
  height: 15px;
  z-index: 400;
}

ul.timeline>li>div.card>div.card-body {
  padding: 20px;
}

ul.timeline>li>div.card>div.card-body span.reScheduleDateTime span i,
ul.timeline>li>div.card>div.card-body span.reScheduleDateTime span {
  margin-right: 5px;
}

.tags>a {
  background-color: #e1f3f7;
  border: 1px solid #14849e;
  border-radius: 3px;
  color: #14849e;
  font-weight: 500;
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  padding: 6px 10px;
  display: inline-block;
}

.tags>a i {
  line-height: 1;
  vertical-align: middle;
  margin-right: 5px;
}

/* input */
.text-only[readonly] {
  border: none;
  padding: 0 !important;
  height: auto;
  background-color: transparent;
  font-size: 13px;
}

.max-w-250,
.text-only,
.selectBox select {
  max-width: 250px;
}

textarea.text-only {
  max-width: 93%;
}

.selectBox .select2-selection {
  height: 32px !important;
  border-color: #dedede !important;
}

.selectBox .select2-selection__rendered {
  line-height: 32px !important;
}

.selectBox .select2-selection__arrow {
  height: 32px !important;
}

.table-text-middle td {
  vertical-align: middle;
}

.modal .flatpickr-calendar {
  top: 35px !important;
  left: 15px !important;
}

/* radio */

.onoffswitch {
  position: relative;
  width: 66px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  display: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  width: 75%;
  height: 20px;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "";
  padding-left: 10px;
  background-color: #17a2b8;
  color: #FFFFFF;
  font-size: 11px;
}

.onoffswitch-inner:after {
  content: "";
  padding-right: 2px;
  background-color: #949494;
  color: #ffffff;
  text-align: right;
  font-size: 11px;
}

.onoffswitch-switch {
  display: block;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #FFFFFF;
  border-radius: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 44px;
  -moz-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
  right: 18px;
}
.input {
    position: relative;
    display: block;
}
.phone-box .code {
    position: absolute;
    left: 0px;
    display: block;
    width: 65px;
    top: 0px;
    height: 34px;
}
.phone-box .code span {
    display: block;
    width: 100%;
    padding: 6px 12px;
    position: relative;
}
.phone-box .code span:after {
    content: "|";
    position: absolute;
    right: 0px;
    top: 6px;
}
.phone {
    padding-left: 70px;
}
table.fixedTable {
  table-layout: fixed;
  width: auto;
}
table.fixedTable td, table.fixedTable th {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  white-space: nowrap;
}
table.fixedTable th {
  padding-right: 30px;
  position: relative;
}
table.fixedTable th span{
  position: absolute;
  right: 8px;
}


span.nav-icon.ti-layout-grid2 {
    color: #ed5565 !important;
}
span.nav-icon.ti-id-badge {
    color: #f8ac59 !important;
}
span.nav-icon.ti-agenda {
    color: #23c6c8 !important;
}
span.nav-icon.ti-package {
    color: #1ab394 !important;
}
span.nav-icon.ti-bar-chart-alt {
    color: #1c84c6 !important;
}
span.nav-icon.ti-location-arrow {
    color: #f44242 !important;
}
span.nav-icon.ti-stats-up {
    color: #fba257 !important;
}
span.nav-icon.ti-write {
    color: #0e367c !important;
}

.navbar-brand img {
    width: 80px;
}