
body{
   
    background-color: white;
    
}
.card{
    border-radius: 5px;
    background: transparent;

}
.notif{
    padding: 2%;
    text-align: center;
}
.card-requestform {
    max-width: 60rem;
    margin-bottom: 1%;
}
.p-info{
    color: dodgerblue;
    font-style: normal;
}
.medium{
    font-size: 14px;
}
.request-divider{height:0;margin-bottom:3%;overflow:hidden;border-top:1px solid #fff;}
.footer-divider{height:0;margin-bottom:1%;overflow:hidden;border-top:1px solid #fff;}
.btn-register{
    box-shadow: 1px 2px 2px 1px rgb(163, 35, 131);
    color: white;
    font-size: 20px;
    text-align: center;
    background-color: rgb(0,0,225,0.15);
    border-radius: 60px;
}
.modal-head{
    font-size: 16px;
    font-weight: bold;
    color: rgb(163, 35, 131);
}
.label-color{
    color: #444;
    font-size: 15px;
    font-family: Nunito-Regular;
}
#dataTable_filter {
    text-align: right;
}
.purple{
    color: rgb(163, 35, 131);
}
.nav-item {
    font-family: 'Nunito', sans-serif;
   /* border-bottom: 1px solid rgba(0,0,0,0.1);*/
  }
.red{
    color: red;
    font-style: normal;
}.blue{
    color: blue;
    font-style: normal;
}
.btn-special{
    border:1px solid #ddd;
    background-color: transparent;
}
.text-sp{
    color: #666;
    font-family: 'Nunito', sans-serif;
}
.text-spx{
    font-size: 17px;
    color: darkblue;
    font-family: 'Nunito', sans-serif;
}
.breadcrumb-item{
    padding: 0.5rem;
    border-right: 1px solid #ddd;
}
.text-bold{
    font-weight: bold;
}
.tcount{
    color: dodgerblue;
    font-style: normal;
    font-size: 5rem;
}
.td-actions{
    border: 1px double #ccc;
    margin-right: 1.5%;
}
.sidebar .nav-item .active .nav-link{
    background-color: green;
    color: red;
}
.menux{
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    text-align: center;
    margin-bottom: 2%;
}
.cardhead{
    padding-top: 2%;
    border-bottom: 1px solid #ccc;
    color: #ff4500;
    font-size: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: bolder;
    margin-bottom: 1%;

}
.msg_from{
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    color: dodgerblue;
}
.msg_body{
    font-family: 'Nunito', sans-serif;
    color: rgba(0,0,0,0.6);
}
.msg_time{
    font-family: 'Nunito', sans-serif;
    font-size: small;
}
.icona{
    color: rgba(243, 156, 18, 1);
    font-size: 1.8rem;
}.iconb{
     color: rgba(153, 102, 255, 1);
    font-size: 1.8rem;
}.iconc{
      color: rgb(100%, 0%, 100%);
    font-size: 1.8rem;
}
 .nav-item.active{
     background-color: rgba(0,0,0,0.1);
     color: green;
 }
.breadcrumb-item.active{
    background-color: rgba(0,0,0,0.1);

}
/* input for popup*/
.popup-container {
    display: inline-block;
  }
  .popup-container .popup-button {
    background: #333;
    line-height: 34px;
    color: #fff;
    padding: 0 20px;
    border-radius: 3px;
    display: block;
    cursor: pointer;
  }
  .popup-container .popup-button:hover {
    background: #444;
  }
  .popup-container .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 250ms all;
  }
  .popup-container .popup .popup-inner {
    width: 400px;
    box-sizing: border-box;
    padding: 20px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 150%;
    transition: 250ms all;
  }
  .popup-container .popup .popup-inner .popup-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .popup-container .popup .popup-inner .popup-title h6 {
    font-size: 18px;
    font-weight: 500;
  }
  .popup-container .popup .popup-inner .popup-title .popup-close-btn {
    cursor: pointer;
    background: #eee;
    display: block;
    line-height: 30px;
    padding: 0 15px;
    font-size: 14px;
    color: #222;
    border-radius: 3px;
  }
  .popup-container .popup .popup-inner .popup-content ul li {
    margin-bottom: 10px;
    list-style:none;
  }
  .popup-container .popup .popup-inner .popup-content ul li:last-child {
    margin-bottom: 0;
  }
  .popup-container .popup .popup-inner .popup-content ul li input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 14px;
    box-sizing: border-box;
  }
  .popup-container .popup .popup-inner .popup-content ul li button {
    width: 100%;
    line-height: 34px;
    background: #666;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    border: none;
    font-size: 14px;
  }
  .popup-container .popup .popup-inner .popup-content ul li button:hover {
    background: #444;
  }
  .popup-container .popup .transparent-label {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: pointer;
  }
  .popup-container > input {
    display: none;
  }
  .popup-container > input:checked + .popup {
    opacity: 1;
    visibility: visible;
  }
  .popup-container > input:checked + .popup .popup-inner {
    top: 50%;
  }
  /* end popup */

  /* Tablefill */
  .table-fill {
font-family: 'Nunito', sans-serif;
  background: white;
  border-radius:3px;
  border-collapse: collapse;
  margin: auto;
  max-width:100%;

  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}

.table-fill th {
  font-size:20px;
  text-align:left;
  vertical-align:middle;
  font-family: 'Nunito', sans-serif;
}

.table-fill th:first-child {
  border-top-left-radius:3px;
}

.table-fill th:last-child {
  border-top-right-radius:3px;
  border-right:none;
}

.table-fill tr {
  border-top: 1px solid #C1C3D1;
  border-bottom-: 1px solid #C1C3D1;
}

.table-fill tr:hover td {
  background:#eee;
  border-top: 1px solid #fff;
}

.table-fill tr:first-child {
  border-top:none;
}

.table-fill tr:last-child {
  border-bottom:none;
}

.table-fill tr:nth-child(odd) td {
  background:ghostwhite;
}

.table-fill tr:nth-child(odd):hover td {
  background:#eee;
}

.table-fill tr:last-child td:first-child {
  border-bottom-left-radius:3px;
}

.table-fill tr:last-child td:last-child {
  border-bottom-right-radius:3px;
}

.table-fill td {
  background:#FFFFFF;
  text-align:left;
  vertical-align:middle;

  border-right: 1px solid white;
}

.table-fill td:last-child {
  border-right: 0px;
}

.table-fill th.text-left {
  text-align: left;
}

.table-fill th.text-center {
  text-align: center;
}

.table-fill th.text-right {
  text-align: right;
}

.table-fill td.text-left {
  text-align: left;
}

.table-fill td.text-center {
  text-align: center;
}

.table-fill td.text-right {
  text-align: right;
}