@import url(https://db.onlinewebfonts.com/c/50fdb00bd31f40c13c4fab9f1de2387e?family=Didot+Italic);
@font-face {
  font-family: "Didot Italic";
  src: url("https://db.onlinewebfonts.com/t/50fdb00bd31f40c13c4fab9f1de2387e.eot");
  src: url("https://db.onlinewebfonts.com/t/50fdb00bd31f40c13c4fab9f1de2387e.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/50fdb00bd31f40c13c4fab9f1de2387e.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/50fdb00bd31f40c13c4fab9f1de2387e.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/50fdb00bd31f40c13c4fab9f1de2387e.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/50fdb00bd31f40c13c4fab9f1de2387e.svg#Didot Italic")format("svg");
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-secondary); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-primary); 
}
.pull-right{
    float:right;
}
.pull-left{
    float:left;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.flex-centering{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flex-centering-row{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-lg{
  font-size: 1.3rem;
}
.p-md{
  font-size: 1rem;
}
.colorpri{
    color: var(--theme-primary);
}
.colorsec{
    color: var(--theme-secondary);
}
.coloroffbg{
    color: var(--theme-off-bg);
}
.join-page{
  margin-top:9.5rem;
}
.join-page .container.main{
  height: 75.8vh;
    /* overflow: auto; */
    padding-bottom: 10px;
}
.max-heading{
  font-size: 2.4rem;
}
.input-group-text.w-hun{
    width: 130px;
}
#overlay-banner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  /* background-color: #744516; */
  opacity: 0.6;
}
.login-page{
    display: flex;
    align-items: center;
    margin-top:10rem;
    margin-bottom: 5rem;
}
.bg-sec{
    background-color: var(--theme-secondary);
}
.login-page .left{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../img/mission.jpg');
    border-radius: 6px 0 0 6px;
    align-items: center;
    justify-content: center;
}
.login-card img{
    width: 100%;
    max-width: 200px;
    margin-bottom: 80px;
}
.login-page .left .wrapper{
    padding: 2rem;
}
.login-card{
    padding-left: 0;
}
.login-card .card{
    border-radius: 0 6px 6px 0;
    border:0;
}
/*OTP Form*/
.otp-wrapper{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}
.digit-group input{
		width: 30px;
		height: 50px;
		background-color: var(--theme-secondary);
		border: none;
		line-height: 50px;
		text-align: center;
		font-size: 24px;
		font-weight: 200;
		color: white;
		margin: 0 2px;
}
.digit-group input[type=text]:active{
    border: 2px solid var(--theme-primary);
}
.digit-group input[type=text]:focus{
    border: 2px solid var(--theme-primary);
}
.digit-group .splitter {
		padding: 0 5px;
		color: var(--theme-secondary);
		font-size: 30px;
	}

.prompt {
	margin-bottom: 20px;
	font-size: 20px;
	color: white;
}

  /* Progressbar */
  .prog-wrapper{
    position: sticky;
    display: flex;
    width: 100%;
    bottom: -5%;
    justify-content: center;
    background: #fff;
  }
  .progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
    width: 500px;
    max-width: 60vw
  }
  @media only screen and (max-width: 600px) {
    .progressbar {
        width: 300px;
    }
  }
  .progressbar::before,
  .progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: -1;
  }
  
  .progress {
    background-color: var(--theme-theme-btn);
    width: 0%;
    transition: 0.3s;
  }
  
  .progress-step {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .progress-step-active {
    background-color: var(--theme-btn);
    color: #f3f3f3;
  }
  .progress-step-active.spl{
    background-color: var(--theme-secondary);
  }
  /* Form */
  
  .form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
  }
  .form-step .unit{
    width: 350px;
  }
  .form-step .unit.spl{
    width: 300px;
  }
  .form-step-active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
   .form-step-active form{
       display: flex;
    flex-direction: column;
    align-items: center;
   }
  .form-step .unit input:hover{
      border-color: #ffe480;
  }
  .btns-group{
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  @keyframes animate {
    from {
      transform: scale(1, 0);
      opacity: 0;
    }
    to {
      transform: scale(1, 1);
      opacity: 1;
    }
  }
  .form-page-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  .form-page-nav a{
    font-size: 1rem;
    text-decoration: none;
  }
 .form-page-nav img{
    width: 100%;
    max-width: 200px;

 }
.cladding{    
    position: fixed;
    bottom: 0;
}
.cladding .rcol1{
    background-color: var(--theme-btn);
    width: 100vw;
    height: 8px;
}
.cladding .rcol2{
    background-color: var(--theme-secondary);
    width: 100vw;
    height: 40px;
}
.swal2-actions .swal2-confirm.swal2-styled{
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
}
.swal2-actions .swal2-confirm.swal2-styled:focus{
    box-shadow: 0 0 0 3px rgba(244,175,20,.5);
}
.faded{
    color: rgba(0, 0, 0, 0.6);
}

/*main slider*/
.hero-slider{
  margin-top: 5.6rem;
  background-color: var(--theme-secondary);
  position: relative;
}
.hero-slider .owl-carousel.owl-loaded{
  display: flex;
  padding: 5rem 0 0 0;
}
.hero-slider .owl-carousel img{
  max-width: 400px;
  margin: auto;
  height: 500px;
  object-fit:cover;
}
.owl-theme .custom-nav{
  position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}
.owl-theme .custom-nav .owl-prev,.owl-next{
position: absolute;
height: 100px;
      color: inherit;
      background: none;
      border: none;
      z-index: 100;
}
.owl-theme .custom-nav .owl-prev {
left: 6px;
font-size: 2.5rem;
color: #cecece;
}
.owl-theme .custom-nav .owl-next {
right: 6px;
font-size: 2.5rem;
color: #cecece;
}

.legacy-btn {
  display: flex;
  justify-content: end;
  margin-top: 1.5rem;
}
.legacy-btn a{
  background-color: var(--theme-off-bg);
  text-transform: uppercase;
}

.img-bend{
  border-radius: 200px 200px 0 0;
}
.login-card form{
    display: flex;
    flex-direction: column;
}
.login-main-wrapper{
    padding: 0;
    border-radius: 6px;
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
}
@media only screen and (max-width: 991px) {
    .login-main-wrapper{
        box-shadow: none;
        padding-left: 30px;
    }
}
.login-card .btn-secondary-base{
    border-radius: 0 6px 6px 0;
}

/*products*/
.product-wrapper{
  transition: 0.3s all;
}
.product-wrapper:hover{
  transform: scale(1.1);
}
@media only screen and (max-width: 600px){
  .product-wrapper{
    max-width: 300px;
    margin: auto;
  }
}
.product-top{
  text-align: center;
  word-wrap: break-word;
  background-image: url('../img/product-bg.webp');
  padding: 3rem 1rem 0.5rem 1rem;
  border-radius: 200px 200px 0 0;
}
.product-top .comm .e1{
  font-size: 1.3rem;
  color: var(--theme-secondary);
  text-transform: uppercase;
  text-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.product-top .comm .e2{
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--theme-primary);
}
.product-top .comm h6{
  color: var(--theme-primary);
}
.product-top .comm{
  background-color: var(--theme-off-bg);
  padding: 40px 10px;
  max-width: 250px;
  margin: auto;
  margin-bottom: 3rem;
  margin-top: 5rem;
}
.product-bt-card{
  padding: 1.5rem 3rem;
  background: url('../img/product-bt-card.webp');
}
.product-bt-card h1{
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  margin-bottom: 0;
}
.product-bt-card a.btn{
  width: 100%;
  background-color: var(--theme-secondary);
  color: #fff;
  transition: 0.3s all;
  font-weight: 600;
  padding: 1rem 0.5rem;
}
.product-bt-card a.btn:hover{
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}
.product-info{
  background-color: var(--theme-off-bg);
  text-align: center;
  padding: 1rem 0.5rem;
}
.product-info h6{
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.1rem;
  font-size: 1rem;
  font-weight: 600;
}
.product-info h3{
  color: var(--theme-secondary);
  margin-bottom: 0.5rem;
}
.product-btn .btn{
  width: 100%;
  background-color: var(--theme-secondary);
  color: #fff;
  transition: 0.3s all;
  font-weight: 600;
  padding: 1rem 0.5rem;
}
.product-btn .btn:hover{
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}

/*history*/
section.history{
  background: url(../img/history-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.history .item-wrapper{
  padding: 3rem 1rem;
  background-color: var(--theme-secondary);
  text-align: center;
}
.history .item-wrapper h1{
  font-size: 5rem;
  font-family: "Didot Italic";
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 500;
  border-bottom-style: solid;
    border-bottom-width: 3.1px;
}
.history .item-wrapper h1 span{
  font-size: 2.5rem;
}
.history .item-wrapper h6{
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 1px;
}
.history .btn{
  padding: 1rem 3rem;
}

/*commitment*/
.commitment .btn{
  padding: 1rem 0;
}
.commitment .writeup{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: justify;
}
.legacy .writeup{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: justify;
}

#comp-lk2wwict svg [data-color="1"]{
  fill: var(--theme-primary);
}

/*visitus*/
.visitus{
  background-color: var(--theme-secondary);
  /* padding: ; */
}
.visitus .col1{
  display: flex;
  justify-content: center;
}

/*chairman*/
.chairman .writeup{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.chairman .writeup span{
  font-size: 1.5rem;
  font-weight: 700;
}

/*empower*/
section.empower{
  background: url(../img/empower.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

/*footer*/
footer{
  padding: 4rem 1rem;
  padding-bottom: 0;
}
footer .r1 a{
  display: block;
  text-transform: uppercase;
  text-align: left;
  text-decoration: none;
  color: var(--theme-secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  
}
footer .r2 a{
  text-decoration: none;
}
hr.footer-rule{
  color: var(--theme-primary);
  border-top: 4px solid;
  opacity: 1;
  margin: 3rem 0;
}
footer ul{
  padding-left: 0;
}
footer ul h6{
  margin-bottom: 0;
}
footer ul li{
  list-style-type: none;
  margin-bottom: 0.5rem;
}
footer .r3{
  text-align: center;
  margin: 2rem 0 1rem 0;
}
footer .r3 a{
  text-decoration: none;
}
footer .r2 .social{
  margin-bottom: 2rem;
}

.banner{
  padding: 11rem 0 3rem 1rem;
  background-color: var(--theme-secondary);
}
.vision img{
  max-height: 500px;
  object-fit: cover;
  /* max-width: 450px; */
}

.values .heading h2{
  color: var(--theme-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: last baseline;
  margin-bottom: 2rem;
}
.values .heading span{
  font-size: 4rem;
  color: var(--theme-primary);
  margin-right: 2rem;
}

.transparency a{
  padding: 1rem 3rem;
}

.start{
  background-color: var(--theme-secondary);
}

.identity .wrapper{
  margin-top: 5rem;
}
.identity .wrapper .text{
  margin-top: 1rem;
  text-align: justify;
}
.identity .wrapper .text h2{
  color: rgb(89, 89, 89);
  margin-top: 2.5rem;
}
.identity .wrapper .text hr{
  border: 2px solid;
  color: var(--theme-primary);
  opacity: 1;
  z-index: -1;
  position: sticky;
  margin-left: -30px;
}
.identity .wrapper .text.alt hr{
  margin-left: 0;
  margin-right: -30px;
}
@media only screen and (max-width: 768px) {
  .identity .wrapper .text.alt hr{
    margin-right: 0px;
  }
  .identity .wrapper .text hr{
    margin-left: 0px;
  }
}

.privacy-policy h1{
  color: var(--theme-secondary);
}
.privacy-policy h2{
  color: var(--theme-secondary);
  margin: 2rem 0 1rem 0;
}
.privacy-policy p{
  font-size: 1.2rem;
}

.privacy-policy li{
  font-size: 1.2rem;
}
.privacy-policy ol ol{
  list-style-type: lower-roman;
}
.nav-item.spl button{
  padding-top: 5px;
}
.navbar-collapse.collapse.show .nav-item.spl{
  padding-bottom: 10px;
}
.arch-img{
  object-fit:cover;
  height: 500px;
  max-width: 350px;
  float: center;
}
.sec-hover-alt:hover{
  color: var(--theme-primary);
}
.btn-lg-pd{
  padding: 1rem 3rem;
}
.btn-lg{
  font-weight: 600;
}
.banner .container .max-heading{
  color: var(--theme-primary) !important;
  text-transform: uppercase;
}
.float-left{
  float: left!important;
}
.text-justify{
  text-align: justify;
}
.product-excerpt{
  background-color: var(--theme-secondary);
  padding: 1rem;
  height: 230px;
}
.product-excerpt p{
  color: var(--theme-off-bg)
}
.sub-btn{
  background-color: var(--theme-primary);
  transition: 0.3s all;
  color: #fff;
  border: 2px solid var(--theme-primary);
}
.sub-btn:hover{
  background-color: #fff;
  color: var(--theme-primary);
  border-color: var(--theme-primary);
}
.sub-btn-alt{
  background-color: var(--theme-secondary);
  transition: 0.3s all;
  color: #fff;
  border: 2px solid var(--theme-secondary);
}
.sub-btn-alt:hover{
  background-color: #fff;
  color: var(--theme-secondary);
  border-color: var(--theme-secondary);
}
.contact .info{
  background-color: var(--theme-secondary);
  padding: 3rem;
}
.contact .info h6{
  color: #fff;
}
.contact .info p{
  color: #fff;
}
.contact .info a{
  text-decoration: none;
}
.contact .info .social .btn-social{
  background-color: #fff;
  color: var(--theme-secondary);
}
.contact .info .social .btn-social:hover{
  background-color: rgba(255,255,255,0.7);
}
.contact .form .theme-bg{
  background-color: var(--theme-off-bg);
  border-color: var(--theme-primary);
}
.contact .form{
  padding: 2rem;
}
.careers{
  background-color: var(--theme-off-bg);
}
.careers .info{
  background-color: var(--theme-secondary);
  padding: 4rem;
  height: 100%;
}
.careers .info hr{
  color: #fff;
  opacity: 1;
  border-width: 3px;
  width: 60px;
}
.careers .info p{
  color: #fff;
}
.careers form{
  background-color: #fff;
  padding: 2rem;
}
@media only screen and (min-width: 991px){
  .careers form{
    padding: 6rem;
  }
}
.careers form .theme-bg{
  background-color: var(--theme-off-bg);
  border-color: var(--theme-primary);
}
.grievance form .theme-bg{
  background-color: var(--theme-off-bg);
  border-color: var(--theme-primary);
}
.grievance form .btn{
  max-width: 300px;
}

.star-rating-col{
  display: flex;
  align-items: center;
  gap: 15px;
}
.star-widget{
  display: flex;
}
.star-widget input {
  display: none;
}
.star-widget label {
  font-size: 22px;
  color: #444;
  padding: 6px;
  float: right;
  transition: all .2s ease;
}
.star-widget input:not(:checked) ~ label:hover,
.star-widget input:not(:checked) ~ label:hover ~ label {
  color: #fd4;
}
.star-widget input:checked ~ label {
  color: #fd4;
  
}
#rate-1:checked ~ .rating-desc:before {
  content: "Poor";
}
#rate-2:checked ~ .rating-desc:before {
  content: "Fair";
}
#rate-3:checked ~ .rating-desc:before {
  content: "Good";
}
#rate-4:checked ~ .rating-desc:before {
  content: "Very Good";
}
#rate-5:checked ~ .rating-desc:before {
  content: "Excellent";
}

.rating-desc {
  font-size: 1.2rem;
  transition: all .2s ease;
  text-align: right;
}

.gallery .unit{
  max-width: 800px;
  margin: auto;
}
.gallery .unit h1{
  margin-bottom: 2rem;
  opacity: 0.75;
}
.gallery hr{
  border-top: 5px solid;
  color: var(--theme-primary);
  opacity: 1;
  margin: 4rem 0;
}
.gallery .unit .thumb-img{
  width: 100%;
  margin-bottom: 1rem;
}

.currentchits .title h1{
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.currentchits hr{
  border-top: 5px solid var(--theme-primary);
  margin: 4rem 0;
  opacity: 1;
}

.currentchits .wrapper hr{
  border-top: 2px solid var(--theme-primary);
  opacity: 1;
  margin: 1rem 0;
}
.currentchits .wrapper{
  background-color: var(--theme-secondary);
  color: #fff;
  padding: 2rem;
}
.currentchits button.sub-btn{
  border-top: 0;
  text-transform: uppercase;
  font-size: 1.2rem;
}

/*************CHIT CRAD****************/
.card-chit {
  box-Shadow: 0 6px 5px -3px rgb(209 209 214) !important;
  border: 2px solid #c78425;
  min-height: 277px !important;
  background:#f4f4f8 !important;
}
/* .card-chit:hover {
  background-color: #f4f4f8 !important;
  border: 2px solid #c78425 !important;
  transition: background-color 0.8s;
  cursor:pointer;
  color: #131414;
} */
.card-chit:hover a {
  color: #2e3092;
}
.card-chit.register-card {
  background: #f4f4f8  !important
 }
 /* .card-chit:hover{
  background-color: #dbaf6f !important;
 } */
.chit-btn .chit-nav.active, .chit-btn .chit-nav:hover {
  color: #c78425;
  border: 2px solid #222324;
  cursor: pointer;
}


.half-year-chit table .badge.text-bg-success{
  animation: blink 1s linear infinite;
}
@keyframes blink{
  0%{opacity: 0;}
  50%{opacity: 1;}
  100%{opacity: 0;}
  }

  .half-year-chit table thead tr{
    background-color: var(--theme-secondary);
  }
  .half-year-chit table thead tr th{
    color: var(--theme-primary);
    font-size: small;
  }
  .main-form {
    width: 100%;

  }

  
.material-switch>input[type="checkbox"] {
  display: none;
}

.material-switch>label {
    cursor: pointer;
    height: 0px;
    position: relative;
    top: 5px;
}

.material-switch>label::before {
    background: rgb(0, 0, 0);
    border-radius: 8px;
    content: '';
    height: 10px;
    margin-top: -8px;
    position: absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 28px
}

.material-switch>label::after {
    background: rgb(255, 255, 255);
    border-radius: 14px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 16px;
    left: 0px;
    margin-top: -6px;
    position: absolute;
    top: -5px;
    transition: all 0.3s ease-in-out;
    width: 16px;
}

.material-switch>input[type="checkbox"]:checked+label::before {
    background: inherit;
    opacity: 0.5;
}

.material-switch>input[type="checkbox"]:checked+label::after {
    background: inherit;
    left: 14px;
}

.material-switch>span {
    color: #26408A !important;
    font-size: 14px !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem;
    display: inline-block
}
.ngx-datatable.material {
  box-shadow: none !important;
  /*0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12) !important; */
  /* background: #fff; */
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .12);
  /* box-shadow: 0 5px 5px -3px rgba(0,0,0,.2),
   0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12) !important; */
}

.ngx-datatable.material .datatable-footer .page-count {
  line-height: 50px;
  height: 50px;
  padding: 0 1.2rem;
}

.ngx-datatable.material .datatable-footer {
  border-top: none !important;
}

.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell,
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-group-cell {
  text-align: left;
  padding: .9rem 1.2rem;
  vertical-align: top;
  border-top: 0;
  color: rgba(0, 0, 0, .87);
  transition: width .3s ease;
  font-size: 12px !important;
  font-weight: 400;
  /* border-right: 1px solid #d7dddc; */
}


/* .ngx-datatable.material .datatable-header .datatable-header-cell {
  /* color: rgba(0,0,0,.87); *
  font-size: 13px !important;
} */

.ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* min-width: 150px; */
}

.ngx-datatable.material .datatable-header,
.datatable-row-center .datatable-row-group {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.ngx-datatable.material .datatable-header .datatable-header-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* min-width: 150px; */
  text-align: left;
  padding: .9rem 1.2rem;
  background-color: #f5fcfa;
  color: #162246 !important;
  vertical-align: bottom;
  font-size: 13px;
  font-weight: 500;
}

.ngx-datatable .datatable-body-row {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.ngx-datatable.material .empty-row {
  text-align: center !important;
  padding: 50px !important;
}

.datatable-row-group.datatable-row-left {
  z-index: 99 !important;
  background: #f5fcfa;
}
.ngx-datatable .datatable-footer .selected-count .datatable-pager {
  flex: 1 1 100% !important;
}
.ngx-datatable.material.single-selection .datatable-body-row.active,
.ngx-datatable.material.single-selection .datatable-body-row.active .datatable-row-group,
.ngx-datatable.material.multi-selection .datatable-body-row.active,
.ngx-datatable.material.multi-selection .datatable-body-row.active .datatable-row-group,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active .datatable-row-group,
.ngx-datatable.material.single-selection .datatable-body-row.active span {
    background: #007bff !important;
    color: #fff;
}
.ngx-datatable.material .datatable-body .datatable-group-header {
  backface-visibility: hidden !important;
  transform: translate3d(0px, 0px, 0px) !important;
  padding: 10px !important;
}

.ngx-datatable .datatable-body .datatable-scroll,
.datatable-body-row {
  min-width: 100% !important;
}
.ngx-datatable input[type="checkbox"],
.ngx-datatable input[type="radio"] {
    margin: -7px 0px;
}
.material-switch>input[type="checkbox"] {
  display: none;
}

.material-switch>label {
  cursor: pointer;
  height: 0px;
  position: relative;
  top: 5px;
}

.material-switch>label::before {
  background: rgb(0, 0, 0);
  border-radius: 8px;
  content: '';
  height: 10px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  width: 28px
}

.material-switch>label::after {
  background: rgb(255, 255, 255);
  border-radius: 14px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: '';
  height: 16px;
  left: 0px;
  margin-top: -6px;
  position: absolute;
  top: -5px;
  transition: all 0.3s ease-in-out;
  width: 16px;
}

.material-switch>input[type="checkbox"]:checked+label::before {
  background: inherit;
  opacity: 0.5;
}

.material-switch>input[type="checkbox"]:checked+label::after {
  background: inherit;
  left: 14px;
}

.material-switch>span {
  color: #26408A !important;
  font-size: 14px !important;
  font-family: 'Lato', sans-serif !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem;
  display: inline-block
}

.mn-display {
  margin-top: 6px;
    margin-right: 0px;
    z-index: 9;
    background: #57370a;
    padding: 7px 11px;
    border-radius: 5px;
    color: #fff !important;
    position: absolute;
}

@media only screen and (max-width: 600px) {
  .mobile-fixed-nav {
    border-bottom: 1px solid #ccc;
  }
  .login-page {
    height: auto !important;
    margin-top: 5rem !important;
  }
  .navbar-nav {
    background: #acacac;
    padding: 40px;
  }
  .join-chit {
    width: 50%;
  }
  .mobile-login .join-chit {
    width: fit-content;
    padding: 5px 20px;
    position: absolute;
    right: 15px;
}
  .join-chit a{
   color: #fff !important;
  }
  .breadcumb-content h1 {
      margin-top: 0px !important;
      padding-top: 0px !important;
  }
} 

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}


