@import url('https://fonts.googleapis.com/css?family=Lato');

@media (max-width: 767px) {
  .details{
      display: block;
      width: 100%;
  }
}
.details
{margin-top: -20px;
   
    padding-top: 10px;
    padding-right:5px ;
    padding-left: 7px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
   
   
    font-size: small;
    background-color: rgb(247, 243, 237);
    }
.details:hover {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
      }
      
  
     
   
   
 
 


 
  
 
  
/*  table design*/
.in[type="text"] {
    
    border: 2px solid #aaa;
    border-radius: 5px;
    margin: 8px 0;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
  display: block;
    height: 3vh;
    font-size:small ;
    
    margin-top: -3px;
  
  }
  
  .in[type="text"]:focus {
    border-color: dodgerBlue;
    box-shadow: 0 0 8px 0 dodgerBlue;
  }

  
  /* HEADING TAG*/
  h6{
    display: grid;
    grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
    align-items: center;
    text-align: center;
    gap: 40px;
    font-size: medium;
  }
  
  h6::before,
  h6::after {
    content: "";
    border-top: 6px double;
  }
 
  @media (max-width: 400px) {
    h6 { font-size: 1.5rem; }
  }


  h4{
    display: grid;
    grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
    align-items: center;
    text-align: center;
    gap: 40px;
    font-size: medium;
  }
  
  h4::before,
  h4::after {
    content: "";
    border-top: 6px double;
  }
 
  @media (max-width: 400px) {
    h4 { font-size: 1.5rem; }
  }

.fl-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.fl-table td,
.fl-table th {
    text-align: center;
    padding: 8px;
}

.fl-table td {
    border-right: 1px solid #f8f8f8;
    font-size: 12px;
}

.fl-table thead th {
    color: #ffffff;
    background: #2b6e6e;
}

.fl-table thead th:nth-child(odd) {
    color: #ffffff;
    background: #324960;
}

.fl-table tr:nth-child(even) {
    background: #f8f8f8;
}

/* Responsive */

@media (max-width: 767px) {
    .fl-table {
        display: block;
        width: 100%;
    }
    .table-wrapper:before {
        content: "Scroll horizontally >";
        display: block;
        text-align: right;
        font-size: 11px;
        color: white;
        padding: 0 0 10px;
    }
    .fl-table thead,
    .fl-table tbody,
    .fl-table thead th {
        display: block;
    }
    .fl-table thead th:last-child {
        border-bottom: none;
    }
    .fl-table thead {
        float: left;
    }
    .fl-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .fl-table td,
    .fl-table th {
        padding: 20px 0.625em 0.625em 0.625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 120px;
        font-size: 13px;
        text-overflow: ellipsis;
    }
    .fl-table thead th {
        text-align: left;
        border-bottom: 1px solid #f7f7f9;
    }
    .fl-table tbody tr {
        display: table-cell;
    }
    .fl-table tbody tr:nth-child(odd) {
        background: none;
    }
    .fl-table tr:nth-child(even) {
        background: transparent;
    }
    .fl-table tr td:nth-child(odd) {
        background: #f8f8f8;
        border-right: 1px solid #e6e4e4;
    }
    .fl-table tr td:nth-child(even) {
        border-right: 1px solid #e6e4e4;
    }
    .fl-table tbody td {
        display: block;
        text-align: center;
    }
}
/* toggle button */

  /* toggle button*/
  .on-off-toggle {
    width: 56px;
    height: 24px;
    position: relative;
    display: inline-block;
  }
  
  .on-off-toggle__slider {
    width: 56px;
    height: 24px;
    display: block;
    border-radius: 34px;
    background-color: #d8d8d8;
    transition: background-color 0.4s
    
  }
  
  .on-off-toggle__slider:before {
      content: '';
      display: block;
      background-color: #fff;
      box-shadow: 0 0 0 1px #949494;
      bottom: 3px;
      height: 18px;
      left: 3px;
      position: absolute;
      transition: .4s;
      width: 18px;
      z-index: 5;
      border-radius: 100%;
    }
  
  .on-off-toggle__slider:after {
      display: block;
      line-height: 24px;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: bold;
      content: 'N';
      color: #484848;
      padding-left: 26px;
      transition: all 0.4s;
    }
  
  .on-off-toggle__input {
    /*
      This way of hiding the default input is better 
      for accessibility than using display: none;
    */
    position: absolute;
    opacity: 0;
  }
  
  .on-off-toggle__input:checked + 
  .on-off-toggle__slider {
    background-color: rgb(212, 151, 60)
  }
  
  .on-off-toggle__input:checked + 
  .on-off-toggle__slider:before {
      transform: translateX(32px);
    }
  
  .on-off-toggle__input:checked + 
  .on-off-toggle__slider:after {
      content: 'Y';
      color: #FFFFFF;
      padding-left: 8px;
    }

      /* toggle button ECNS*/
  .on-off-toggle_cns {
    width: 106px;
    height: 34px;
    position: relative;
    display: inline-block;
  }
  
  .on-off-toggle__slider_cns {
    width: 106px;
    height: 34px;
    display: block;
    border-radius: 34px;
    background-color: #d8d8d8;
    transition: background-color 0.4s
    
  }
  
  .on-off-toggle__slider_cns:before {
      content: '';
      display: block;
      background-color: #fff;
      box-shadow: 0 0 0 1px #949494;
      bottom: 2px;
      height: 30px;
      left: 3px;
      position: absolute;
      transition: .10s;
      width: 30px;
      z-index: 10;
      border-radius: 100%;
    }
  
  .on-off-toggle__slider_cns:after {
      display: block;
      line-height: 34px;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: bold;
      content: 'Manual';
      color: #484848;
      padding-left: 40px;
      transition: all 0.10s;
    }
  
  .on-off-toggle__input_cns {
    /*
      This way of hiding the default input is better 
      for accessibility than using display: none;
    */
    position: absolute;
    opacity: 0;
  }
  
  .on-off-toggle__input_cns:checked + 
  .on-off-toggle__slider_cns {
    background-color: rgb(212, 151, 60)
  }
  
  .on-off-toggle__input_cns:checked + 
  .on-off-toggle__slider_cns:before {
      transform: translateX(75px);
    }
  
  .on-off-toggle__input_cns:checked + 
  .on-off-toggle__slider_cns:after {
      content: 'ECNS';
      color: #FFFFFF;
      padding-left: 8px;
    }

    
      /* toggle button EMR*/
  .on-off-toggle_MR {
    width: 120px;
    height: 34px;
    position: relative;
    display: inline-block;
  }
  
  .on-off-toggle__slider_MR {
    width: 120px;
    height: 34px;
    display: block;
    border-radius: 34px;
    background-color: #d8d8d8;
    transition: background-color 0.4s
    
  }
  
  .on-off-toggle__slider_MR:before {
      content: '';
      display: block;
      background-color: #fff;
      box-shadow: 0 0 0 1px #949494;
      bottom: 2px;
      height: 30px;
      left: 3px;
      position: absolute;
      transition: .10s;
      width: 30px;
      z-index: 10;
      border-radius: 100%;
    }
  
  .on-off-toggle__slider_MR:after {
      display: block;
      line-height: 34px;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: bold;
      content: 'Online MR';
      color: #484848;
      padding-left: 36px;
      transition: all 0.10s;
    }
  
  .on-off-toggle__input_MR {
    /*
      This way of hiding the default input is better 
      for accessibility than using display: none;
    */
    position: absolute;
    opacity: 0;
  }
  
  .on-off-toggle__input_MR:checked + 
  .on-off-toggle__slider_MR {
    background-color: rgb(212, 151, 60)
  }
  
  .on-off-toggle__input_MR:checked + 
  .on-off-toggle__slider_MR:before {
      transform: translateX(83px);
    }
  
  .on-off-toggle__input_MR:checked + 
  .on-off-toggle__slider_MR:after {
      content: 'Manual';
      color: #FFFFFF;
      padding-left: 8px;
    }

    /* switch */
    *{ 
      box-sizing: border-box;
    }
    :root {
      --switches-bg-color: rgb(230, 231, 233);
      --switches-label-color: rgb(136, 135, 135);
      --switch-bg-color: rgb(50, 66, 206);
      --switch-text-color: rgb(250, 253, 255);
    }
    
    body {
      font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    }
    
    .switches-container {
      width: 10rem;
      height: 2rem;
      position: relative;
      display: flex;
      padding: 0;
      position: relative;
      background: var(--switches-bg-color);
      line-height: 3rem;
      border-radius: 3rem;
      margin-left: auto;
      margin-right: auto;
      margin-top: -3px;
    }
    
    
    .switches-container input {
      visibility: hidden;
      position: absolute;
      margin-top: -4px;
      top: 0;
    }
    
    
    .switches-container .labla {
      width: 50%;
      padding: 0;
      margin-top: -8px;
      text-align: center;
      cursor: pointer;
      color: var(--switches-label-color);
    }
    
    
    .switch-wrapper {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 50%;
      padding: 0.15rem;
      z-index: 3;
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    
    }
    
    
    .switch {
      border-radius: 3rem;
      background: var(--switch-bg-color);
      height: 100%;
    }
    
    
    .switch .mont {
      width: 100%;
      text-align: center;
      opacity: 0;
      display: block;
      color: var(--switch-text-color);
      transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
      will-change: opacity;
      position: absolute;
      top: 0;
      left: 0;
      margin-top: -5px;
    }
    
    /* slide the switch box from right to left */
    .switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
      transform: translateX(0%);
    }
    
    /* slide the switch box from left to right */
    .switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
      transform: translateX(100%);
    }
    
    /* toggle the switch box labels - first checkbox:checked - show first switch div */
    .switches-container
      input:nth-of-type(1):checked
      ~ .switch-wrapper
      .switch
      div:nth-of-type(1) {
      opacity: 1;
    }
    
    /* toggle the switch box labels - second checkbox:checked - show second switch div */
    .switches-container
      input:nth-of-type(2):checked
      ~ .switch-wrapper
      .switch
      div:nth-of-type(2) {
      opacity: 1;
    }
    
  