@font-face{
  font-family:'Material Design Icons';
  src: url(../materialdesignicons-webfont.ttf) format("woff2"),
  url(../materialdesignicons-webfont.woff) format("woff"),
  url(../materialdesignicons-webfont.ttf) format("truetype"),
  url(../fonts/unicons.svg?34404611#unicons) format("svg");
  font-weight:400;
  font-style:normal
}

body {
  font-family: 'Poppins', sans-serif !important;
  background-color: #f8fafb; }
  p {
    color: #3b3b3b;
    font-weight: 400;
}
td{
  color: #3b3b3b;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h6 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600;
 }
 
  .h5, h5   {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
  font-size: 20px;
 }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    text-decoration: none !important; }

.content {
  padding: 4rem 0; }

h2 {
  font-size: 20px;
  font-family: 'Poppins', sans-serif !important;
 }

.form-block {
  background: #fff;
  padding: 30px;
  
}
@media (max-width: 991.98px) {
  .content .bg {
    height: 500px; } }

@media (max-width: 1199.98px) {
  .content .contents, .content .bg {
    width: 100%; } }

.content .contents .form-group, .content .bg .form-group {
  position: relative; }
  .content .contents .form-group label, .content .bg .form-group label {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .content .contents .form-group input, .content .bg .form-group input {
    background: transparent;
    border-bottom: 1px solid #ccc; }
  .content .contents .form-group.first, .content .bg .form-group.first {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px; }
  .content .contents .form-group.last, .content .bg .form-group.last {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px; }
  .content .contents .form-group label, .content .bg .form-group label {
    font-size: 12px;
    display: block;
    margin-bottom: 0;
    color: #b3b3b3; }
  .content .contents .form-group.focus, .content .bg .form-group.focus {
    background: #fff; }
  .content .contents .form-group.field--not-empty label, .content .bg .form-group.field--not-empty label {
    margin-top: -25px; }

.content .contents .form-control, .content .bg .form-control {
  border: none;
  padding: 0;
  font-size: 20px;
  border-radius: 0; }
  .content .contents .form-control:active, .content .contents .form-control:focus, .content .bg .form-control:active, .content .bg .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; }

.content .bg {
  background-size: cover;
  background-position: center; }

.content a {
  color: #888;
  text-decoration: underline; }

.content .btn {
  height: 54px;
  padding-left: 30px;
  padding-right: 30px; }

.content .forgot-pass {
  position: relative;
  top: 2px;
  font-size: 14px; }

.content .btn-pill {
  border-radius: 30px; }

.social-login a {
  text-decoration: none;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 10px; }
  .social-login a span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .social-login a:hover {
    color: #fff; }
  .social-login a.facebook {
    background: #3b5998; }
    .social-login a.facebook:hover {
      background: #344e86; }
  .social-login a.twitter {
    background: #1da1f2; }
    .social-login a.twitter:hover {
      background: #0d95e8; }
  .social-login a.google {
    background: #ea4335; }
    .social-login a.google:hover {
      background: #e82e1e; }

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px; }
  .control .caption {
    position: relative;
    top: .2rem;
    color: #888; }

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px; }

.control--radio .control__indicator {
  border-radius: 50%; }

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc; }

.control input:checked ~ .control__indicator {
  background: #14b1b2; }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #14b1b2; }

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none; }

.control__indicator:after {
  font: "Material Design Icons";
  content: "\E87C";
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }

.control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff; }

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b; }

.control--checkbox input:disabled:checked ~ .control__indicator {
  background-color: #7e0cf5;
  opacity: .2; }
  .control__indicator:after {
    font-family: "Material Design Icons";

  }
  .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn-primary {
  color: #212529;
  background-color: #000;
  border-color: #000;
}
.btn-primary:hover {
  color: #fff;
  background-color: #3a3b45 !important;
  border-color: #3a3b45 !important;
}

.sidebar-brand-icon img {
  width: 150px !important;
  height: 112px !important;
  text-align: left;
}

.bg-kmarl{
  background-color: #F9FBFF !IMPORTANT;
}

.card-body a{
  color: #000 !IMPORTANT;
}

.bg-kmarl a{
   color: #000 !important;
}
.logo-login img{
  width: 250px !important;
  height: 175px !important;
}

.text-success { 
  color: #000 !important;
}

.card-body.main-dashboard-box {
  padding: 28px;
  min-height: 115px;
}

.mdi-set, .mdi:before {
 
  color: #72b6b7;
  
}
span.badge .mdi:before {
  color: #fff;
  padding-right: 3px;
  font-weight: normal;
}
ol.breadcrumb.m-0 a {
  color: #72b6b7;
}
 .btn.btn-primary {
  color: #fff !important;
  box-shadow: 2px 0px 1px #badfe3 !important;
}
.btn-primary {
  --ct-btn-color: #fff;
  --ct-btn-bg: #72b6b7;
  --ct-btn-border-color: #72b6b7;
  --ct-btn-hover-color: #fff;
  --ct-btn-hover-bg: #72b6b7;
  --ct-btn-hover-border-color: #72b6b7;
  --ct-btn-focus-shadow-rgb: 135, 144, 247;
  --ct-btn-active-color: #fff;
  --ct-btn-active-bg: #72b6b7;
  --ct-btn-active-border-color: #72b6b7;
  --ct-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --ct-btn-disabled-color: #fff;
  --ct-btn-disabled-bg: #72b6b7;
  --ct-btn-disabled-border-color: #72b6b7;
}
.text-primary {
  color: #72b6b7!important;
  font-size: 20px;
  font-weight: normal !important;
  padding-right: 0 !important;
}
.login-form  .form-block .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.login-form  .form-block  .form-control {
  text-align: left;
  padding-left: 0px;
  font-size: 14px;
}
.login-form  .form-block .form-control::placeholder{
  color: transparent;
}
.login-form  .form-block  label:not(.control--checkbox) {
  transform: translate(0px,-25px);
  transition: all .3s;
  font-weight: 400;
  color: #717171;
  transform-origin: left;
  min-width: 100%;
  position: static;
  text-align: left;
  font-size: 14px;
}

.login-form  .form-block .form-control:focus~label,
.login-form .form-control:valid~label,
.login-form  .form-block .form-control:not(:placeholder-shown)~label {
  transform: translate(0px,-50px) scale(.9);
  color: #000
}

.login-form  .form-block .control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff;
  width: 8px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 0px;
  border-left: 0px;
  transform: rotate(45deg) translate(-8px, -3px);
}

.textfields input{
  width: 115px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px; 
}
.table-responsive.table-scroll 
{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 300px;
  overflow-y: scroll;
}
a.btn.btn-warning.mb-2.me-3{
  color: #fff !important;
}
.mrgin-top-1
{
  margin-top:30px !important;
}
#mainerror{
  display: table;
  width: 100%;
  height: 100vh;
  text-align: center;
}

.fof{
  display: table-cell;
  vertical-align: middle;
}

.fof h1{
  font-size: 50px;
  display: inline-block;
  padding-right: 12px;
  animation: type .5s alternate infinite;
}

@media only screen and (max-width: 768px) {
  .sidebar-brand-icon img {
    width: 80% !important;
    height: auto !important;
    text-align: left;
}
}