
  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


  .demo{ font-family: 'Noto Sans', sans-serif; }
  body{
    background: linear-gradient(to right, #2980b9, #2c3e50);
  }
  .panel{
    margin-top: 100px;
      background: linear-gradient(to right, #2980b9, #2c3e50);
      padding: 0;
      border-radius: 10px;
      border: none;
      box-shadow: 0 0 0 5px rgba(0,0,0,0.05),0 0 0 10px rgba(0,0,0,0.05);
      width: 100vw;

      height: 100%;
  }
  .panel .panel-heading{
      padding: 20px 15px;
      border-radius: 10px 10px 0 0;
      margin: 0;
  }
  .panel .panel-heading .title{
      color: #fff;
      font-size: 28px;
      font-weight: 500;
      text-transform: capitalize;
      line-height: 40px;
      margin: 0;
  }
  .panel .panel-heading .btn{
      color: #fff;
     
      font-size: 16px;
      text-transform: capitalize;
      border: 2px solid #fff;
      border-radius: 50px;
      transition: all 0.3s ease 0s;
      font-weight: 800;
  }
  .panel .panel-heading .btn a{
    text-decoration: none;
    color: #fff;
  }
  .panel .panel-heading .btn a:hover{
     
      color: #fff;
  }
  .panel .panel-heading .form-control{
      color: #fff;
      background-color: transparent;
      width: 35%;
      height: 40px;
      border: 2px solid #fff;
      border-radius: 20px;
      display: inline-block;
      transition: all 0.3s ease 0s;
  }
  .panel .panel-heading .form-control:focus{
      background-color: rgba(255,255,255,0.2);
      box-shadow: none;
      outline: none;
  }
  .panel .panel-heading .form-control::placeholder{
      color: rgba(255,255,255,0.5);
      font-size: 15px;
      font-weight: 500;
  }
  .panel .panel-body{ padding: 0; }
  .panel .panel-body .table thead tr th{
      color: #fff;
      background-color: rgba(255, 255, 255, 0.2);
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      padding: 12px;
      border: none;
  }
  .panel .panel-body .table tbody tr td{
      color: #2c3e50;
      font-weight: 800;
      font-size: 15px;
      padding: 10px 12px;
      vertical-align: middle;
      border: none;
  }
  .panel .panel-body .table tbody tr:nth-child(even){ background-color: rgba(255,255,255,0.05); }
  .panel .panel-body .table tbody .action-list{
      padding: 0;
      margin: 0;
      list-style: none;
  }
  .panel .panel-body .table tbody .action-list li{
      display: inline-block;
      margin: 0;
  }
  .panel .panel-body .table tbody .action-list li a{
      color: #fff;
      font-size: 15px;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease 0s;
  }
  .panel .panel-body .table tbody .action-list li a:hover{ text-shadow: 3px 3px 0 rgba(255,255,255,0.3); }
  .panel .panel-body .table tbody .action-list li a:before,
  .panel .panel-body .table tbody .action-list li a:after{
      content: attr(data-tip);
      color: #fff;
      background-color: #111;
      font-size: 12px;
      padding: 5px 7px;
      border-radius: 4px;
      text-transform: capitalize;
      display: none;
      transform: translateX(-50%);
      position: absolute;
      left: 50%;
      top: -32px;
      transition: all 0.3s ease 0s;
  }
  .panel .panel-body .table tbody .action-list li a:after{
      content: '';
      height: 15px;
      width: 15px;
      padding: 0;
      border-radius: 0;
      transform: translateX(-50%) rotate(45deg);
      top: -18px;
      z-index: -1;
  }
  .panel .panel-body .table tbody .action-list li a:hover:before,
  .panel .panel-body .table tbody .action-list li a:hover:after{
      display: block;
  }
  .panel .panel-footer{
      color: #fff;
      background-color: transparent;
      padding: 15px;
      border: none;
  }
  .panel .panel-footer .col{ line-height: 35px; }
  .pagination{ margin: 0; }
  .pagination li a{
      color: #fff;
      background-color: transparent;
      border: 2px solid transparent;
      font-size: 18px;
      font-weight: 500;
      text-align: center;
      line-height: 31px;
      width: 35px;
      height: 35px;
      padding: 0;
      margin: 0 3px;
      border-radius: 50px;
      transition: all 0.3s ease 0s;
  }
  .pagination li a:hover{
      color: #fff;
      background-color: transparent;
      border-color: rgba(255,255,255,0.2);
  }
  .pagination li a:focus,
  .pagination li.active a,
  .pagination li.active a:hover{
      color: #fff;
      background-color: transparent;
      border-color: #fff;
  }
  .pagination li:first-child a,
  .pagination li:last-child a{
      border-radius: 50%;
  }
  @media only screen and (max-width:767px){
      .panel .panel-heading .title{
          text-align: center;
          margin: 0 0 10px;
      }
      .panel .panel-heading .btn_group{ text-align: center; }
  }
  .ajouter_demande{
    text-decoration: none;
  }
  button{
    background: #2980b9;
  }
  .custom-tooltip {
    position: relative;
    cursor: pointer;
}

.custom-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateX(5px) translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.custom-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}




/* <select> styles */
select {
  /* Reset */
  appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  color: #2c3e50;
  /* Personalize */
  width: 14em;
  height: 3em;
  padding: 0 4em 0 1em;
  background:transparent;
  border-radius: 0.25em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  /* <option> colors */
  option {
    color: inherit;
    background: linear-gradient(to right, #2980b9, #2c3e50)
  }
  /* Remove focus outline */


}
input[type=date] {
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    background-color: #fff;
    padding: 3px 5px;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.1);
    width: 190px;
  }
.filtrer{
          background-color: rgba(255,255,255,0.2);
}
.status button{
    width: 500px;
}
.status .btn{
    color: #fff;

    font-size: 16px;
    text-transform: capitalize;
    border: 2px solid #fff;
    
    transition: all 0.3s ease 0s;
    font-weight: 800;
}

#statusForm .btn.active {
    background-color: rgba(255,255,255,0.4);
  }
  .panel .panel-body .table tbody  .Nouveau{
    color: #00b8e6;
  }
  .panel .panel-body .table tbody  .En{
    color: #ff8c1a;
  }
  .panel .panel-body .table tbody  .Terminé{
    color: #248f24;
  }
  .panel .panel-body .table tbody  .Annulé{
    color: #ff0000;
  }
 input[type=search]{
    display: none;
 }
 #example_filter{
    display: none;
 }
 #example_wrapper .dt-buttons .buttons-html5{
    color: #fff;

    font-size: 16px;
    text-transform: capitalize;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
    font-weight: 800;
    margin: 10px ;
 }
 #example_wrapper .dt-buttons .buttons-html5:nth-child(1), #example_wrapper .dt-buttons .buttons-html5:nth-child(2){
    display: none;
 }
 #example_wrapper .dt-buttons .buttons-html5:nth-child(3){
background-color: #00b8e6;
 }
 #example_wrapper .dt-buttons .buttons-html5:nth-child(4){
    background-color:  #00cc00;
     }
 #example_wrapper .dt-buttons .buttons-print{
    display: none;
 }
 .dataTables_info{
    display: none;
 }
.dataTables_paginate{
    display: none;
}
.dataTables_empty{
    display: none;
}



@-webkit-keyframes borderBlink {    
    from, to {    
        border-color: transparent    
    }    
    50% {    
        border-color: black    
    }    
}    
@keyframes borderBlink {    
    from, to {    
        border-color: transparent    
    }    
    50% {    
        border-color: black    
    }    
}    
#statusForm .borderBlink{    
    border:none;
    /* add 'border-color: transparent' if you wish no border to show initially */  
}
#statusForm .borderBlink:hover {    
    -webkit-animation: borderBlink 1s step-end infinite;    
    animation: borderBlink 1s step-end infinite;    
}