 
/*  classes for the grid type form */
/* ********************************* */

  .legend {
    color: white;
    font-size: 14px;
    letter-spacing: 0.03em;
    height: 40px;
    background-color: darkblue;
  }
 
  .ul-form-container {
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: 1fr 1fr; 
    row-gap: 5px;
    column-gap: 1px; 
    border-bottom: 1px solid darkblue;
    background-color: #2196F3;
    padding: 2px;
    color: darkblue;
    font-weight:normal;
 }
 .ul-form-container-mini {
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: 1fr; 
    row-gap: 5px;
    column-gap: 1px; 
    border-bottom: 1px solid darkblue;
    background-color: #2196F3;
    padding: 2px;
    color: darkblue;
    font-weight:normal;
 }
 

 .grid-li {
	border-bottom: 4px solid darkblue; 
 } 

.grid-form-item1 {
    background-color: lightgray;
    font-size: 14px;
    color:black;
    background-color: lightgray; 
}

.grid-form-item2 {
    font-size: 14px;
    color: black;
    border-bottom: 4px solid darkblue;
    
 } 
  
 .unit_name  {
	font-size: 14px;
    color: black;
 }
 .flex-checkbox {
	display: flex;
	flex-flow: row;
	flex: 10;
	width: 400px;
	justify-content: space-around;
	z-index: 0;
	background-color: grey;
    font-size: 14px; 
    vertical-align:left;
     
} 

.flex-checkbox-label {
	flex: 7;
	margin: 5px 5px;
	padding: 7px;
	height: auto;
	order: 1;
	background-color: silver;
}

.flex-checkbox-option {
	flex: 3;
	margin: 5px 5px;
	padding: 7px;
	height: auto;
	order: 2;
	background-color: blue;
}
 /* ******* end of css for the grid type form ********** */
 
 /* ******* css for the grid list ********************** */ 

.title-color {
   background-color: darkblue;
 }
 
.table-header {
    color: white;
    font-size: 14px;
    letter-spacing: 0.03em;
    height: 40px;
    background-color: darkblue;
 }
 
 .grid-list-container {
    display: grid;
    justify-content: space-evenly;
    row-gap: 15px;
    column-gap: 1px; 
    background-color: #2196F3;
    padding: 5px;
 }
 
 .grid-temp1 {
    grid-template-columns: 1fr;  
 }
 
 .grid-temp2 {
	grid-template-columns: 1fr 1fr;  
 }
 
 .grid-temp3 {
	grid-template-columns: 1fr 1fr 1fr;  
 }
 
 .grid-temp4 {
	grid-template-columns: 1fr 1fr 1fr 1fr;  
 }
 
 .grid-temp5 {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;  
 }
 
 .grid-temp6 {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;  
 }
 
 .grid-temp7 {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;  
 }
 
 .grid-temp8 {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;  
 }
  
.table-row {
   box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
   height: 40px;
   letter-spacing: 0.03em;
 } 
 
.header-color {
   background-color: blue;
   color: white;
 }

.oddrow {
   background-color: lightgrey;
 }
.evenrow {
   background-color: grey;
 }

.button {
   height: 30px;
   color: white;
   background-color: cadetblue;
   margin-right: 4px;
   border-width: 0px;
 }
 
 /* ******* end of css for the grid list *************** */ 
 
 /* ******* cell fones and ipads *********************** */   
 @media all and (max-width: 600px) {
    .table-header {
      display: none;
      height: 120px;
    }
    .table-row {
      background-color: grey;
      margin-right: 35px;
      margin-bottom: 30px;
      height: 120px;
    }
    .grid-list-container {
      display: block;
      padding: 10px 10px;
      margin-bottom: 30px;     
    }
    
    /* form gid */
    .ul-form-container {
      display: block;
      padding: 10px 10px;
      margin-bottom: 5px;   		 
    }
    .grid-li {
      background-color: grey;
      margin-right: 10px;
	  margin-top: 5px;
      margin-bottom: 2px;
      height: 30px;
    }
    .grid-form-item1 {
      border-color: #2196F3;
    } 	
    .grid-form-item2 {
      border-bottom-width: 20px;
      border-color: #2196F3;
    } 		 
  }
 
 
  
 /*
 .log-cases-container {
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; 
    row-gap: 15px;
    column-gap: 1px; 
    background-color: #2196F3;
    padding: 5px;
 }
 
   .grid-wrapper {
    display: inline-grid;
    grid-template-columns: 50px 50px 50px 50px;
    border: 1px solid black;
    grid-gap: 1px;
    background-color: black;
  }

  .grid-column {
    background-color: white;
    padding: 15px;
    text-align: center;
  }
  
.grid-smallform-container {
    width: auto;
    font-size: 15px;
    color: darkblue;
    background-color: lightgray;
    border: 5px solid darkblue;
    justify-content: space-between;
    font-weight:normal;
}

.flex-smallform-container {
    display: flex;
    flex-direction: row;
    width: 400px;
    font-size: 15px;
    background-color: Silver;
    border: 1px solid #8888bb;
    text-align: center;
    justify-content: space-between;
  
}

 
 .grid-box {
	padding: 1em; 
 }
 
 .list-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
 } 
 
.list-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: left;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  height: 400px;
}
.list-box li {
  max-width: 400px;
  height: 300px;
  margin-right: 10px;
}
.list-box h3 {
  max-width: 400px;
  height: 40px;
  margin-right: 10px;
}
.list-box div {
  max-width: 400px;
  height: 300px;
  margin-right: 10px;
}
.title-color {
    background-color: darkblue;
}

.header-color {
    background-color: blue;
    color: white;
}

.table-header {
    color: white;
    font-size: 14px;
    letter-spacing: 0.03em;
    height: 40px;
    background-color: darkblue;
}
.table-header2 {
    color: white;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
    height: 35px;
    background-color: darkblue;
}
.col {
	justify-content: flex-start;

}

.table-row {
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
    height: 40px;
    letter-spacing: 0.03em;
}

.odd-row {
    background-color: lightgrey;
}
.even-row {
    background-color: grey;
}

.button {
    height: 30px;
   
}

.list-container ul li {
	border-radius: 3px;
	padding: 10px 0px;
	justify-content: space-between;
	margin-bottom: 0px;
    display: flex;
}

.col-1 {
    flex-basis: 10%;
}
.col-2 {
    flex-basis: 30%;
}
.col-3 {
    flex-basis: 20%;
}
.col-4 {
  flex-basis: 20%;
}
.col-5 {
  flex-basis: 10%;
}
.col-6 {
  flex-basis: 10%;
}

.administrator-col-1 {
  flex-basis: 10%;
}
.administrator-col-2 {
  flex-basis: 35%;
}
.administrator-col-3 {
  flex-basis: 35%;
}
.administrator-col-4 {
  flex-basis: 10%;
}
.administrator-col-5 {
  flex-basis: 10%;
}
.client-col-1 {
  flex-basis: 10%;
}
.client-col-2 {
  flex-basis: 35%;
}
.client-col-3 {
  flex-basis: 35%;
}
.client-col-4 {
  flex-basis: 10%;
}
.client-col-5 {
  flex-basis: 10%;
}

.cases-col-1 {
  flex-basis: 5%;
}
.cases-col-2 {
  flex-basis: 20%;
}
.cases-col-3 {
  flex-basis: 5%;
}
.cases-col-4 {
  flex-basis: 20%;
}
.cases-col-5 {
  flex-basis: 45%;
}
.cases-col-6 {
  flex-basis: 5%;
}
.cases-col-7 {
  flex-basis: 5%;
}
.cases-col-8 {
  flex-basis: 5%;
}

.signature-col-1 {
  flex-basis: 5%;
}
.signature-col-2 {
  flex-basis: 10%;
}
.signature-col-3 {
  flex-basis: 15%;
}
.signature-col-4 {
  flex-basis: 26%;
}
.signature-col-5 {
  flex-basis: 12;
}
.signature-col-6 {
  flex-basis: 12%;
}
.signature-col-7 {
  flex-basis: 10%;
}
.signature-col-8 {
  flex-basis: 5%;
}

.signing-col-1 {
  flex-basis: 5%;
}
.signing-col-2 {
  flex-basis: 10%;
}
.signing-col-3 {
  flex-basis: 15%;
}
.signing-col-4 {
  flex-basis: 26%;
}
.signing-col-5 {
  flex-basis: 12;
}
.signing-col-6 {
  flex-basis: 12%;
}
.signing-col-7 {
  flex-basis: 10%;
}
.signing-col-8 {
  flex-basis: 5%;
}
@media all and (max-width: 500px) {
    .table-header {
      display: none;
      height: 120px;
    }
    .table-row {
      background-color: grey;
      margin-right: 35px;
      margin-bottom: 30px;
      height: 120px;
    }
    .list-container ul li {
      display: block;
      padding: 10px 10px;
      margin-bottom: 30px;     
    }
    .col {
      display: flex;
      padding: 0px 0px;
    }  
    col::before {
      color: #6C7A89;
      padding-right: 10px;
      content: attr(data-label);
      flex-basis: 70%;
    }
  }
*/
