/* tab css */
@-webkit-keyframes 
fake {  from {
 opacity: 1;
}

to { opactity: 1; }
}
@keyframes 
fake {  from {
 opacity: 1;
}

to { opactity: 1; }
}

@media only screen and (max-width: 2000px) {

}
@media only screen and (max-width: 600px) {
  .responsive-tabs .flex-tabs .tab {
    font-size: 1em;
  }
  .responsive-tabs2 .flex-tabs2 .tab2 {
    font-size: 1em;
  }
  .responsive-tabs3 .flex-tabs3 .tab3 {
    font-size: 1em;
  }
  .responsive-tabs4 .flex-tabs4 .tab4 {
    font-size: 1em;
  }
}

*{box-sizing: border-box;}
/* body {
  -webkit-animation: fake 1s infinite;
  animation: fake 1s infinite;
  background-color: #fafafa;
  font-family: 'Open Sans';
  background-color: blueviolet;

} */

.tabcontainer{
  width: 1110px;
  max-width: 100vw;
  margin: 50px auto;


}

.responsive-tabs {
  margin: 0px;
  width: 100%;
  margin: auto;
}

.responsive-tabs .state {
  position: absolute;
  left: -10000px;
}

.responsive-tabs .flex-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.responsive-tabs .flex-tabs .tab {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-height: 40px;  text-align: left;
}

.responsive-tabs .flex-tabs .panel {
  background-color: #fcfcfc;
  padding: 20px;
  min-height: 300px;
  display: none;
  width: 100%;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-radius: 0px 0px 20px 20px;
}

.responsive-tabs .tab {
  display: inline-block;
  padding: 25px;
  vertical-align: top;
  background-color: #eee;
  cursor: hand;
  cursor: pointer;
  border-left: 10px solid #ccc;

}
.responsive-tabs label{
  font-size: 18px; line-height: 6px;
}

.responsive-tabs .tab:hover { background-color: #fff; }


.tabcontainer2{
  width: 1110px;
  max-width: 100vw;
  margin: 50px auto;


}

.responsive-tabs2 {
  margin: 0px;
  width: 100%;
  margin: auto;
}

.responsive-tabs2 .state {
  position: absolute;
  left: -10000px;
}

.responsive-tabs2 .flex-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.responsive-tabs2 .flex-tabs .tab {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-height: 40px;  text-align: left;
}

.responsive-tabs2 .flex-tabs .panel {
  background-color: #fcfcfc;
  padding: 20px;
  min-height: 300px;
  display: none;
  width: 100%;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-radius: 0px 0px 20px 20px;
}

.responsive-tabs2 .tab {
  display: inline-block;
  padding: 25px;
  vertical-align: top;
  background-color: #eee;
  cursor: hand;
  cursor: pointer;
  border-left: 10px solid #ccc;

}
.responsive-tabs2 label{
  font-size: 18px; line-height: 6px;
}

.responsive-tabs2 .tab:hover { background-color: #fff; }

#tab-one:checked ~ .tabs #tab-one-label, 
#tab-two:checked ~ .tabs #tab-two-label, 
#tab-three:checked ~ .tabs #tab-three-label, 
#tab-four:checked ~ .tabs #tab-four-label, 
#tab-four2:checked ~ .tabs #tab-four2-label {
  background-color: #fff;
  cursor: default;
  border-left-color: #ff6801; 
}

#tab-one:checked ~ .tabs #tab-one-panel, 
#tab-two:checked ~ .tabs #tab-two-panel, 
#tab-three:checked ~ .tabs #tab-three-panel, 
#tab-four:checked ~ .tabs #tab-four-panel, 
#tab-four2:checked ~ .tabs #tab-four2-panel 
{ display: block; }

@media only screen and (max-width: 575px) {
    .responsive-tabs {
    margin: 0px;
    padding: 0px;
    width: 90%;
    margin: auto;
  }
  .responsive-tabs .flex-tabs .panel {

    border-radius: 0px 0px 0px 0px;
  }

  .flex-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-tabs .tab {
    background: #fff;
    border-bottom: 1px solid #ccc;
  }

  .flex-tabs .tab:last-of-type { border-bottom: none; }

  .flex-tabs #tab-one-label {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .flex-tabs #tab-two-label {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .flex-tabs #tab-three-label {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }

  .flex-tabs #tab-four-label {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }

  .flex-tabs #tab-four2-label {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }

  .flex-tabs #tab-one-panel {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .flex-tabs #tab-two-panel {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }

  .flex-tabs #tab-three-panel {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }

  .flex-tabs #tab-four-panel {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }

  .flex-tabs #tab-four2-panel {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }

  #tab-one:checked ~ .tabs #tab-one-label,  
  #tab-two:checked ~ .tabs #tab-two-label,  
  #tab-three:checked ~ .tabs #tab-three-label,  
  #tab-four:checked ~ .tabs #tab-four-label,  
  #tab-four2:checked ~ .tabs #tab-four2-label 
  { border-bottom: none; }

  #tab-one:checked ~ .tabs #tab-one-panel,  
  #tab-two:checked ~ .tabs #tab-two-panel,  
  #tab-three:checked ~ .tabs #tab-three-panel,  
  #tab-four:checked ~ .tabs #tab-four-panel,  
  #tab-four2:checked ~ .tabs #tab-four2-panel 
  { border-bottom: 1px solid #ccc; }
}










/* tab 7-8 */
.responsive-tabs2 {
  margin: 0px;
  width: 100%;
  margin: auto;
}

.responsive-tabs2 .state2 {
  position: absolute;
  left: -10000px;
}

.responsive-tabs2 .flex-tabs2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.responsive-tabs2 .flex-tabs2 .tab2 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-height: 40px;  text-align: left;
}

.responsive-tabs2 .flex-tabs2 .panel2 {
  background-color: #fcfcfc;
  padding: 20px;
  min-height: 300px;
  display: none;
  width: 100%;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-radius: 0px 0px 20px 20px;
}

.responsive-tabs2 .tab2 {
  display: inline-block;
  padding: 25px;
  vertical-align: top;
  background-color: #eee;
  cursor: hand;
  cursor: pointer;
  border-left: 10px solid #ccc;

}
.responsive-tabs2 label{
  font-size: 18px; line-height: 6px;
}

.responsive-tabs2 .tab2:hover { background-color: #fff; }

#tab-five:checked ~ .tabs #tab-five-label, 
#tab-six:checked ~ .tabs #tab-six-label, 
#tab-seven:checked ~ .tabs #tab-seven-label, 
#tab-eight2:checked ~ .tabs #tab-eight2-label, 
#tab-eight:checked ~ .tabs #tab-eight-label {
  background-color: #fff;
  cursor: default;
  border-left-color: #ff6801; 
}

#tab-five:checked ~ .tabs #tab-five-panel, 
#tab-six:checked ~ .tabs #tab-six-panel, 
#tab-seven:checked ~ .tabs #tab-seven-panel, 
#tab-eight2:checked ~ .tabs #tab-eight2-panel, 
#tab-eight:checked ~ .tabs #tab-eight-panel { 
  display: block; 
}

@media only screen and (max-width: 575px) {
  .responsive-tabs2 {
  margin: 0px;
  padding: 0px;
  width: 90%;
  margin: auto;
}
.responsive-tabs2 .flex-tabs2 .panel2 {

  border-radius: 0px 0px 0px 0px;
}

.flex-tabs2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-tabs2 .tab2 {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.flex-tabs2 .tab:last-of-type { border-bottom: none; }

.flex-tabs2 #tab-five-label {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.flex-tabs2 #tab-six-label {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}

.flex-tabs2 #tab-seven-label {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9;
}

.flex-tabs2 #tab-eight-label {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
  -ms-flex-order: 11;
  order: 11;
}

.flex-tabs2 #tab-eight2-label {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13;
}

.flex-tabs2 #tab-five-panel {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.flex-tabs2 #tab-six-panel {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8;
}

.flex-tabs2 #tab-seven-panel {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

.flex-tabs2 #tab-eight-panel {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
  -ms-flex-order: 12;
  order: 12;
}

.flex-tabs2 #tab-eight2-panel {
  -webkit-box-ordinal-group: 15;
  -webkit-order: 14;
  -ms-flex-order: 14;
  order: 14;
}

#tab-five:checked ~ .tabs #tab-five-label,  
#tab-six:checked ~ .tabs #tab-six-label,  
#tab-seven:checked ~ .tabs #tab-seven-label,  
#tab-eight2:checked ~ .tabs #tab-eight2-label,  
#tab-eight:checked ~ .tabs #tab-eight-label { 
  border-bottom: none; }

#tab-five:checked ~ .tabs #tab-five-panel,  
#tab-six:checked ~ .tabs #tab-six-panel,  
#tab-seven:checked ~ .tabs #tab-seven-panel,  
#tab-eight2:checked ~ .tabs #tab-eight2-panel,  
#tab-eight:checked ~ .tabs #tab-eight-panel { 
  border-bottom: 1px solid #ccc; }
}

/* end tab 7-8 */




















/* table2 tab 1-5 */
.responsive-tabs3 {
  margin: 0px;
  width: 100%;
  margin: auto;
}

.responsive-tabs3 .state3 {
  position: absolute;
  left: -10000px;
}

.responsive-tabs3 .flex-tabs3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.responsive-tabs3 .flex-tabs3 .tab3 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-height: 40px;  text-align: left;
}

.responsive-tabs3 .flex-tabs3 .panel3 {
  background-color: #fcfcfc;
  padding: 20px;
  min-height: 300px;
  display: none;
  width: 100%;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-radius: 0px 0px 20px 20px;
}

.responsive-tabs3 .tab3 {
  display: inline-block;
  padding: 25px;
  vertical-align: top;
  background-color: #eee;
  cursor: hand;
  cursor: pointer;
  border-left: 10px solid #ccc;

}
.responsive-tabs3 label{
  font-size: 18px; line-height: 6px;
}

.responsive-tabs3 .tab3:hover { background-color: #fff; }

#tab2-one:checked ~ .tabs #tab2-one-label, 
#tab2-two:checked ~ .tabs #tab2-two-label, 
#tab2-three:checked ~ .tabs #tab2-three-label, 
#tab2-four:checked ~ .tabs #tab2-four-label, 
#tab2-four2:checked ~ .tabs #tab2-four2-label {
  background-color: #fff;
  cursor: default;
  border-left-color: #ff6801; 
}

#tab2-one:checked ~ .tabs #tab2-one-panel, 
#tab2-two:checked ~ .tabs #tab2-two-panel, 
#tab2-three:checked ~ .tabs #tab2-three-panel, 
#tab2-four:checked ~ .tabs #tab2-four-panel, 
#tab2-four2:checked ~ .tabs #tab2-four2-panel { 
  display: block; 
}

@media only screen and (max-width: 575px) {
  .responsive-tabs3 {
  margin: 0px;
  padding: 0px;
  width: 90%;
  margin: auto;
}
.responsive-tabs3 .flex-tabs3 .panel3 {

  border-radius: 0px 0px 0px 0px;
}

.flex-tabs3 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-tabs3 .tab3 {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.flex-tabs3 .tab:last-of-type { border-bottom: none; }

.flex-tabs3 #tab2-one-label {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.flex-tabs3 #tab2-two-label {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}

.flex-tabs3 #tab2-three-label {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9;
}

.flex-tabs3 #tab2-four-label {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
  -ms-flex-order: 11;
  order: 11;
}

.flex-tabs3 #tab2-four2-label {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13;
}

.flex-tabs3 #tab2-one-panel {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.flex-tabs3 #tab2-two-panel {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8;
}

.flex-tabs3 #tab2-three-panel {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

.flex-tabs3 #tab2-four-panel {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
  -ms-flex-order: 12;
  order: 12;
}

.flex-tabs3 #tab2-four2-panel {
  -webkit-box-ordinal-group: 15;
  -webkit-order: 14;
  -ms-flex-order: 14;
  order: 14;
}

#tab2-one:checked ~ .tabs #tab2-one-label,  
#tab2-two:checked ~ .tabs #tab2-two-label,  
#tab2-three:checked ~ .tabs #tab2-three-label,  
#tab2-four2:checked ~ .tabs #tab2-four2-label,  
#tab2-four:checked ~ .tabs #tab2-four-label { 
  border-bottom: none; }

#tab2-one:checked ~ .tabs #tab2-one-panel,  
#tab2-two:checked ~ .tabs #tab2-two-panel,  
#tab2-three:checked ~ .tabs #tab2-three-panel,  
#tab2-four2:checked ~ .tabs #tab2-four2-panel,  
#tab2-four:checked ~ .tabs #tab2-four-panel { 
  border-bottom: 1px solid #ccc; }
}

/* end table2 tab 1-5 */

















/* table 2 tab 7-8 */
.responsive-tabs4 {
  margin: 0px;
  width: 100%;
  margin: auto;
}

.responsive-tabs4 .state4 {
  position: absolute;
  left: -10000px;
}

.responsive-tabs4 .flex-tabs4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.responsive-tabs4 .flex-tabs4 .tab4 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-height: 40px;  text-align: left;
}

.responsive-tabs4 .flex-tabs4 .panel4 {
  background-color: #fcfcfc;
  padding: 20px;
  min-height: 300px;
  display: none;
  width: 100%;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  border-radius: 0px 0px 20px 20px;
}

.responsive-tabs4 .tab4 {
  display: inline-block;
  padding: 25px;
  vertical-align: top;
  background-color: #eee;
  cursor: hand;
  cursor: pointer;
  border-left: 10px solid #ccc;

}
.responsive-tabs4 label{
  font-size: 18px; line-height: 6px;
}

.responsive-tabs4 .tab4:hover { background-color: #fff; }

#tab2-five:checked ~ .tabs2 #tab2-five-label, 
#tab2-six:checked ~ .tabs2 #tab2-six-label, 
#tab2-seven:checked ~ .tabs2 #tab2-seven-label, 
#tab2-eight2:checked ~ .tabs2 #tab2-eight2-label, 
#tab2-eight:checked ~ .tabs2 #tab2-eight-label {
  background-color: #fff;
  cursor: default;
  border-left-color: #ff6801; 
}

#tab2-five:checked ~ .tabs2 #tab2-five-panel, 
#tab2-six:checked ~ .tabs2 #tab2-six-panel, 
#tab2-seven:checked ~ .tabs2 #tab2-seven-panel, 
#tab2-eight2:checked ~ .tabs2 #tab2-eight2-panel, 
#tab2-eight:checked ~ .tabs2 #tab2-eight-panel { 
  display: block; 
}

@media only screen and (max-width: 575px) {
  .responsive-tabs2 {
  margin: 0px;
  padding: 0px;
  width: 90%;
  margin: auto;
}
.responsive-tabs4 .flex-tabs4 .panel4 {

  border-radius: 0px 0px 0px 0px;
}

.flex-tabs4 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-tabs4 .tab4 {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.flex-tabs4 .tab:last-of-type { border-bottom: none; }

.flex-tabs4 #tab-five-label {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.flex-tabs4 #tab-six-label {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}

.flex-tabs4 #tab-seven-label {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9;
}

.flex-tabs4 #tab-eight-label {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
  -ms-flex-order: 11;
  order: 11;
}

.flex-tabs4 #tab-eight2-label {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13;
}

.flex-tabs4 #tab-five-panel {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.flex-tabs4 #tab-six-panel {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8;
}

.flex-tabs4 #tab-seven-panel {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

.flex-tabs4 #tab-eight-panel {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
  -ms-flex-order: 12;
  order: 12;
}

.flex-tabs4 #tab-eight2-panel {
  -webkit-box-ordinal-group: 15;
  -webkit-order: 14;
  -ms-flex-order: 14;
  order: 14;
}

#tab2-five:checked ~ .tabs #tab2-five-label,  
#tab2-six:checked ~ .tabs #tab2-six-label,  
#tab2-seven:checked ~ .tabs #tab2-seven-label,  
#tab2-eight2:checked ~ .tabs #tab2-eight2-label,  
#tab2-eight:checked ~ .tabs #tab2-eight-label { 
  border-bottom: none; }

#tab2-five:checked ~ .tabs #tab2-five-panel,  
#tab2-six:checked ~ .tabs #tab2-six-panel,  
#tab2-seven:checked ~ .tabs #tab2-seven-panel,  
#tab2-eight2:checked ~ .tabs #tab2-eight2-panel,  
#tab2-eight:checked ~ .tabs #tab2-eight-panel { 
  border-bottom: 1px solid #ccc; }
}

/* end table 2 tab 7-8 */












/* css table resize */
.tableresize table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
    text-align: left;
}

.tableresize table caption {
  font-size: 18px;
  margin: .5em 0 .75em;
  
}

.tableresize table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
  
}

.tableresize table th,
.tableresize table td {
  padding: .625em;
  text-align: center;
  line-height: 1.3;
}

.tableresize table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #0056ff;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .tableresize table {
    border: 0;
  }

  .tableresize table caption {
    font-size: 1.3em;
  }
  
  .tableresize table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .tableresize table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  .tableresize table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  .tableresize table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .tableresize table td:last-child {
    border-bottom: 0;
  }
}