html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}











/* !!-------------- CUSTOM CSS --------------- */
/* .auth-card {
  margin: 0 auto;
} */
.helper-text p{
  color: #DA1F26;
}

.edit-table{
  color: #00365a ;
}
.edit-table:hover{
  text-decoration: underline;
}
.delete-table{
  color: #DA1F26;
}
.delete-table:hover{
  text-decoration: underline;
  color: #DA1F26;
}


.btn-grey{
  background-color: #d8d8d8;
  border-color: #d8d8d8;
}
.btn-grey:hover{
  background-color: #afafaf;
  border-color: #afafaf;
}
.table-background{
  background-color: #fff;
}

.table_id a{
  color: #00365a;
  text-decoration: underline;
}
.table_id a:hover{
  color: #001e31;
  text-decoration: underline;
}




  /* 18th August 2021 By Hassaan Khan */

  .logo-side {
    margin: auto;
    text-align: center;
  }
  .mt-30 {
    margin-top: 30px;
  }

  .action_input {
    border: 3px #00365a dashed;
    padding: 10px;
    background: #f2f2f2;
}


.table_total{
  min-width: 300px;
  margin-top: 10px;
  
}

.table_total thead{
  background: #00365a;
  color: #fff;
}

.table_total thead tr th{
  padding: 6px 0 0 10px;
}
.table_total tbody tr td{
  border: 1px solid #00365a;
  padding: 4px;
}
.bootstrap-tagsinput, .form-control{
  height: calc(1.2em + 0.8rem);
}
.select2-container--bootstrap .select2-selection--single {
  height: calc(1.2em + 0.8rem);
  padding: 0.2rem 0.75rem;
}
.form-group {
  margin-bottom: 0.3rem;
}
label {
  margin-bottom: 0;
}
input, .select2-container--bootstrap {
  /* border: 1px solid #888 !important; */
}

.card .card-body {
  background: #F9F9F9;
  background: #e6e6e6;
  border: 2px solid #00365a;
  border-radius: 10px;
}

table tbody tr td {
  padding: 2px 0 !important;
}
table tbody tr td {
  border-bottom-color: rgba(58,91,109,0.25) !important;
  /* 3a5b6d */
}

.home_card{
  width: 16%;
  margin-right: 1%; 
  font-size: 11px;
}

.home_card table td p {
  font-size: 12px;
}
.home_card .card-body{
  padding: 0.75rem !important;
}

.home_card table td p  a{
  color: #00365a !important ;
}
.card .card-body {
  padding: 1rem;
}
table thead {
  background: #00365a;
  color: #fff;
}
.datepicker-days table thead tr th {
  color: #fff !important;
}
span.input-group-text.input-group-append.input-group-addon {
  padding: 0.05rem 0.75rem 0.05rem 0.75rem !important;
}
.req_field{
  background: #001e31;
  color: white;
  padding: 0 10px;
}

@media (max-width: 576px){
  .custom_col_4{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    margin-right: 0%;
  }
  .custom_col_6{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-right: 0%;
  }

}

