

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/


@font-face {
  font-family: Poppins-Regular;
  src: url('fonts/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('fonts/Poppins-Bold.ttf'); 
}


.container-table100 {
  width: 100%;
  //min-height: 100vh;
  background: #fff;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 33px 30px;
}

.wrap-table100 {
  width: 98%;
  border-radius: 10px;
  overflow: hidden;
}

.table {
  width: 100%;
  display: table;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .table {
    display: block;
  }
}

.tblrow {
  display: table-row;
  background: #fff;
}

.tblrow.header {
  color: #ffffff;
  background: #69767f;
}

.tblrow.footer {
  color: #333333;
  background: #eeeeee;
}

@media screen and (max-width: 600px) {

  .tblrow {
    display: block;
  }

  .tblrow.header {
    padding: 0;
    height: 0px;
  }

  .tblrow.header .cell {
    display: none;
  }

  .tblrow .cell:before {
    font-family: Poppins-Bold;
    font-size: 12px;
    color: #808080;
    line-height: 1.2;
    //text-transform: uppercase;
    font-weight: unset !important;

    margin-bottom: 13px;
    content: attr(data-title);
    min-width: 98px;
    
    
    
    //display: block;
    
    
    
  }
}

.cell {
  display: table-cell;
}

@media screen and (max-width: 600px) {
  .cell {
    display: block;
  }
}

.tblrow .cell {
  font-family: Poppins-Regular;
  font-size: 1em;
  color: #666666;
  line-height: 1.2;
  font-weight: unset !important;

  padding: 8px 10px;

  border-bottom: 1px solid #f2f2f2;
}

.tblrow.header .cell {
  font-family: Poppins-Regular;
  font-size: .9em;
  color: #fff;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 10px;
  padding-bottom: 10px;
}

/*
.tblrow .cell:nth-child(1) {
  width: 360px;
  padding-left: 20px;
}

.tblrow .cell:nth-child(2) {
  width: 160px;
}

.tblrow .cell:nth-child(3) {
  width: 250px;
}

.tblrow .cell:nth-child(4) {
  width: 190px;
}
*/

.table, .tblrow {
  width: 100% !important;
}

.tblrow:hover {
  background-color: #dbeadd;
  cursor: pointer;
}

@media (max-width: 600px) {

  .tblrow {
    border-bottom: 2px solid #e2e2e2;
    padding: 5px 5px 10px 5px;
    margin: 0;
  }
  
  .tblrow .cell {
    border: none;
    //padding-left: 30px;
    //padding-top: 16px;
    //padding-bottom: 16px;
    padding: 4px 4px 4px 20px;
  }
  .tblrow .cell:nth-child(1) {
    padding-left: 30px;
  }
  
  .tblrow .cell {
    font-family: Poppins-Regular;
    font-size: 1em;
    color: #555555;
    line-height: 1.2;
    font-weight: unset !important;
  }

  .table, .tblrow, .cell {
    width: 100% !important;
  }
}