body{
    overflow-x: hidden;
}

header{
    height: 75px;
    background: white;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

header>h1{
    font-size: 20px;
    font-weight: bold;
}

header>img{
    height: 50px;
}

#percentage{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.loaderBox{
    width: 100vw;
    height: calc(100vh - 75px);
    position: fixed;
    left: 0;
    top: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader{
    width: 50%;
    height: auto;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loading {
    display: none;
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #DD3F22; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#myBar{
    height: 5px;
    width: 0;
    border-radius: 20px;
    background: #DD3F22;
}

#formTech{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
}

#formTech .search .input-group {
    width: 400px;
}

#formTech .ficheHeader {
    background-color: #6c757d;
}

#formTech .ficheHeader>a {
    color: white;
    font-size: 18px
}

#formTech .ficheHeader>.btn-secondary {
    border-color: rgb(73, 72, 72);
}

.btn-info{
    margin: 20px 0;
}

.refreshCustomers{
    display: flex;
    justify-content: center;
    margin: 20px 0;
    margin-left: 20px;
    border-radius: 5px;
    border: 1px solid gray;
    cursor: pointer;
    color: gray;
}

.custDeadStatus{
    display: flex;
    justify-content: center;
    margin: 20px 0;
    margin-left: 50px;
    border-radius: 5px;
    border: 1px solid gray;
    cursor: pointer;
}

.custStatus{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 10px;
    width: 79px;
}

.selectedCustStatus{
    background: gray;
    color: white;
}

.tableClient{
    display: none;
}

.tableClient, #ficheClient{
    width: 100%;
}

.table td{
    vertical-align: baseline;
}

.nameTable{
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #C8D9F1;
    color: #467FCF;
    font-weight: bold;
    text-align: center;
}

#formTech textarea {
    margin-top: 15px;
    height: 150px;
    background-color: #f2efef;
    width: 100%;
    padding: 5px;
}

#formTech .modal-header {
    color: white;
    font-size: 18px;
}

#ModalNewClient .modal-header {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.required{
    color: red;
}

.btn-light{
    border-color: #ced4da;
}

.subTitle{
    border-top: 1px solid #dee2e6;
    font-size: 20px;
    font-weight: bold;
    padding-top: 10px;
}

.avatar {
    vertical-align: middle;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #C8D9F1;
    color: #467FCF;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dataTables_wrapper{
    width: 100%;
}

@media (min-width:1024px){
  #formTech{
      flex-direction: row;
      justify-content: space-between;
      /* max-height: calc(100vh - 75px);
      overflow: hidden; */
  }
  
  .tableClient, #ficheClient{
      width: 50%;
  }

  /* #ficheClient{
    overflow-y: scroll;
    overflow-x: hidden;
  } */
}