.containertb {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: center;
}

h2 {
  font-size: 26px;
  margin: 20px 0;
  text-align: center;
}

 h2 small {
    font-size: 0.5em;
  }

.responsive-table li{   
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
  }
.responsive-table .table-header {
    background-color: #ee5656;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
.responsive-table .table-header2 {
    background-color: #3ba6f9;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
.responsive-table .table-row {
    background-color: #f1f1f1;
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
  }
.responsive-table .col-1 {
    flex-basis: 40%;
	text-transform: uppercase;
  }
.responsive-table .col-2 {
    flex-basis: 35%;
  }
.responsive-table .col-3 {
    flex-basis: 25%;
  }
  
.search-box{
  width: fit-content;
  height: fit-content;
  position: relative;
  margin-left:45%;
  margin-bottom:2%;
}
.input-search{
  margin-left:-50%;
  height: 50px;
  width: 50px;
  border-style: none;
  padding: 10px;
  font-size: 18px;
  letter-spacing: 2px;
  outline: none;
  border-radius: 25px;
  transition: all .5s ease-in-out;
  background-color: transparent;
  padding-right: 40px;
  color:#000;
}
.input-search::placeholder{
  color:#000;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
}
.btn-search{
  width: 50px;
  height: 50px;
  border-style: none;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  color:#ffffff ;
  background-color:#3391da;
  pointer-events: painted;  
}
.btn-search:focus ~ .input-search{
  width: 150px;
  border-radius: 10px;
  background-color: rgba(0,0,0,.05);
  border-bottom:1px solid rgba(255,255,255,.5);
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.input-search:focus{
  width: 150px;
  border-radius: 10px;
  background-color: rgba(0,0,0,.05);
  border-bottom:1px solid rgba(255,255,255,.5);
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
  
  @media all and (max-width: 767px) {
.responsive-table {
      padding: 0;
    }
.responsive-table .table-header {
      font-size: 12px;
    }
.responsive-table .table-header2 {
      font-size: 14px;
    }
.responsive-table .table-row{
      font-size: 12px;
    }
.responsive-table li {
      text-align: center;
	  padding: 5px 20px;
    }
.responsive-table .col {      
      flex-basis: 0%;
    }

.responsive-table .col {
      display: inline-table;
      padding: 5px 0;      
    }
.responsive-table .col &:before {
        color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: right;
      }
	  
.col-1 {
	  flex: auto;
	}

.col-2 {
	  flex: auto;
	}

.col-3 {
	  flex: auto;
	}

}
  
