/* ========================= [ FONT ] ================================*/

/* @font-face {
  font-family: Poppins-Medium;
  src: url('../poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../poppins/Poppins-SemiBold.ttf'); 
} 

@font-face {
  font-family: Poppins-Regular;
  src: url('../poppins/Poppins-Regular.ttf'); 
} */


/* """""""""""""""""""""""""""  Overriding Bootstrap Class  """"""""""""""""""""""""""""""""""" */
.iconCrumb .Form{
  display: none;
}
.scroll{
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll::-webkit-scrollbar{
  display: none;
}
.table{
  margin: 10px auto;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 2px rgb(124, 124, 124);
  width: 98%;
  margin: 10px auto;
}
.table thead tr th,
.table tbody tr th,
.table thead tr td,
.table tbody tr td{
 text-align: center;
 vertical-align: middle;
}
table span.labelYes{
  padding: 3px 5px;
  border-radius: 5px;
  background-color: rgb(41, 145, 41);
  color: white;
  font-size: 11px;
}
table span.labelNo{
  padding: 3px 5px;
  border-radius: 5px;
  background-color: rgb(177, 94, 0);
  color: white;
  font-size: 11px;
}
.secColor{
  background:teal;
}
.priColor{
  border: 1px solid teal;
}
a.back{
  padding: 8px 10px;
  border-radius: 0 30px 30px 0;
  font-size: 14px;
  color: rgb(233, 233, 233);
  cursor: pointer;
}
.form-control{
  font-size: 15px!important;
}
select.form-control{
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  -ms-appearance: menulist !important;
  -o-appearance: menulist !important;
}
.btn{
  padding: 3px 10px !important;
  font-size: 13px !important;
}
.modal-header{
  background-color: rgba(173, 207, 245, 0.26);
}
.modal-body{
  padding: 10px 15px;
}
.modal-body .form-group label{
  font-size: 14px;
  line-height: .9em;
  color: rgb(85, 84, 84);
} 
.main-card{
  width: 100%;
  height: 90%;
  overflow: hidden;
}
.main-card .card-body label{
  font-size: 15px;
  line-height: .9em;
}
.table-responsive::-webkit-scrollbar{
  display: none;
} 
.table-responsive{
  -ms-overflow-style: none;
  scrollbar-width: none;
} 
table th, table td{
  font-size: 14px;
} 
.page__inner table tr td.special, 
.table thead tr td.special,{
    text-align: left;
    padding: 3px 0;
    padding-left: 90px;
    vertical-align: middle;
}
table tr td.special i.fa{
  font-size: 35px;
  margin:0 7px 0 0;
  color: rgb(49, 130, 161)
}
/* """""""""""""""""""""""""""  Overriding Bootstrap Class Ends""""""""""""""""""""""""""""""""""" */
* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    font-family: "Poppins", sans-serif;
  }
body{
    letter-spacing: 0.05em;
    /* overflow: hidden; */
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-family: "Poppins", sans-serif;
    color:#0e0e0e;
    background-color: rgba(255, 255, 255, 0.95);
    height: 100vh;
    overflow-y: hidden;
}
.body{
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
}
.content {
    width: 100%;
    display: flex;
    height:87vh;
    filter: blur(0);
    transition: all
}
.content.blur{
  filter: blur(5px) 
} 
.popup-outer.show {
  opacity: 1;
  display: block;
  pointer-events: auto;
  transform: scale(1);
} 
.popup-outer{
    /* display: flex;
    align-items: center;
    justify-content: center;  */
    position: absolute; 
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(85, 83, 83, 0.877);
    opacity: 0;
    display: none;
    pointer-events: none;
    /* box-shadow: 0 10px 15px rgba(71, 71, 71, 0.692); */
    transform: scale(.5);
    transition: all 0.6s ease-in-out;
    z-index: 2000;
  }
 
  .popup-box { 
    position: relative;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    margin: 0 auto;
    /* left: 10%; */
    top: 150px;

    padding: 30px 10px 20px;
    width: 40%;
    background: #eeeeee;
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(71, 71, 71, 0.692);
  }
  .popup-box .close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    color: #b4b4b4; 
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .popup-box .close:hover {
    color: #333;
  }
 .popup-box .popUp-display {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .popIcon{
    margin: 10px;
    border-style: solid;
    border-width: 3px;
    border-radius: 50%;
    font-size: 100px;
  }
  .popIcon.success{
    border: 3px solid green;
    /* background-color: green; */
  }
  .popIcon.error{
    border: 3px solid rgb(219, 40, 40);
    /* background-color: rgb(219, 40, 40); */
  }
  .popUp-display span{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 10px; 
  }
  .popUp-display p.text{
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    color: rgb(50, 58, 58);
  }
  .popUp-display i.fa{
    font-size: 60px;
  }
  .popup-box .button {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: inherit;
  }
  .popup-box .button button {
    outline: none;
    border: none;
    width: 50%;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 6px;
    background: #197a92;
    margin-left: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .popup-box .button a {
    text-align: center;
    outline: none;
    border: none;
    width: 50%;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 6px;
    background: inherit;
    margin-left: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .popup-box .button button.cancel {
    background: #c44e7b;
  }
  .popup-box .button button.cancel:hover {
    background: #971f4d;
  }
  .popup-box .button button.Ok:hover {
    background: #1d9dcf;
  }
  .quesAction{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 5px;
    width: inherit
  }
  .quesAction button[type="button"]{ 
    margin-left: 10px;
  }

  /* FOR MEDIUM SCREEN DISPLAY*/
  @media only screen and (max-width:800px) and (min-width:520px) {
      .card-wrapper{
          display: flex;
          justify-content: space-between;
          box-sizing: border-box;
          width: 100%;
          margin: 30px 0;
      }
  }

  /* FOR SMALL SCREEN DISPLAY */
  @media only screen and (max-width: 519px) { 
    .sm-none{
      display: none;
    }
    .iconCrumb .Form{
      display: block;
    }
    a.back{
      padding: 4px 5px;
      font-size: 13px;
      border: 0;
      box-shadow: 0 0 0 grey;
      color: rgb(12, 66, 73);
      cursor: pointer;
    } 
     .popup-box { 
      top: 150px;
  
      padding: 30px 30px 20px;
      width: 90%;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 0 5px rgba(71, 71, 71, 0.692);
    }

    table span.labelYes{
      font-size: 10px;
    }
    table span.labelNo{
      font-size: 10px;
    }
.page__inner table tr td.special, 
.table thead tr td.special,{
    text-align: left;
    padding-left: 20px;
    vertical-align: middle;
}
    table tr td.special i.fa{
      font-size: 27px;
    }

  }