



/*//////////////////////////////////////////////////////////////////
[ Table ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-table100 {
  width: 100%;

  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: 960px;
  border-radius: 10px; */
  overflow: hidden;
}

.table {
  width: 100%;
  display: table;
  margin: 0;
}


@media screen and (max-width: 768px) {
  .table {
    display: block;
  }
} 

.tablerow {
  display: table-row;
  background: #fff;
}

.tablerow.header {
  color: #ffffff;
  background: #2c98f0;
}


@media screen and (max-width: 768px) {
  .tablerow {
    display: block;
  }

  .tablerow.header {
    padding: 0;
    height: 0px;
  }

  .tablerow.header .cell {
    display: none;
  }

  .tablerow .cell:before {
    color: #808080;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 20px;
    content: attr(data-title) ": ";
    min-width: 98px;
    display: contents;
    text-align: left;
  }
} 

.cell {
  display: table-cell;
}


@media screen and (max-width: 768px) {
  .cell {
    display: block;
  }
} 


/*
.tablerow .cell {
  color: #666666;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}
*/
.tablerow.header .cell {
  color: #fff;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 19px;
  padding-bottom: 19px;
}

.tablerow .cell:nth-child(1) {
  width: 5%;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;



}

.tablerow .cell:nth-child(2) {
  width: 80%;
  padding-left: 10px;
  padding-right: 10px;  
}

.tablerow .cell:nth-child(3) {
  width: 5%;
  padding-left: 10px;
  padding-right: 10px;
}

.tablerow .cell:nth-child(4) {
  width: 5%;
  padding-left: 10px;
  padding-right: 10px;
}

.tablerow .cell:nth-child(5) {
  width: 5%;
  padding-left: 10px;
  padding-right: 10px;
}

.tablerow .cell:nth-child(6) {
  width: 5%;
  padding-left: 10px;
  padding-right: 10px;
}

.table, .tablerow {
  width: 100% !important;
}

/*
.tablerow:hover {
  background-color: #ececff;
  cursor: pointer;
} */

@media (max-width: 768px) {
  .tablerow.header {
    padding-bottom: 18px;
    padding-right: 15px;
  }
  
  .tablerow .cell {
    border: none;
    padding-left: 30px !important;

    /* TERPECA mod: only make the first data cell gray (below) */
    /* background-color: #f2f3f7; */
/*    padding-top: 16px;
    padding-bottom: 16px; */
  }

  .tablerow .cell:nth-child(1) {
    /* TERPECA mod: use margin instead of padding to avoid gray smush */
    /* padding-top: 20px; */
    margin-top: 20px;

    /* TERPECA mod: set the first data cell gray as a "header" */
    background-color: #f2f3f7;
  }
  
  .tablerow .cell {
    color: #555555;
    line-height: 1.2;
    font-weight: unset !important;
  }

  .table, .tablerow, .cell {
    width: 100% !important;
  }
}
