html,
body {
  height: 100%;
  width: 830px;
}
body {
  margin: 0;
  font-family: sans-serif;
  font-weight: 100;
  width: 830px;

}
.container {
  width: 830px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.my-title{
  color: #222222;
  margin: 50px 0px;
}

.my-icon{
  color: #EF7D2D;
  font-size: 50px;
  padding-right: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
th,
td {
  padding: 6px;
  color: #999999;
}
th {
  text-align: left;
}
thead th {
  background-color: #222222;
  color: #fff;
}
tbody tr:hover {
  background-color: #0000000a;
}
tbody td {
  position: relative;
  transition: 0.3s ease-in-out;
}
tbody td:hover{
  font-weight: 300;
  color: #EF7D2D;
}
tbody td:hover:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: #0000000a;
  z-index: -1;
}
.larg{
  width: 340px;
}

.tab-profissional,
.tab-self-service {
  overflow: hidden;
  width: 100%;
  margin-bottom: 25px;
}
.tab-profissional button,
.tab-self-service button  {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.5s;
  font-size: 24px;
  color: #222222
}
.tab-profissional button{
  width: 33.333%;
}
.tab-self-service button {
  width: 50%;
}




.tab-profissional button:hover,
.tab-self-service button:hover {
  background-color: #EF7D2D;
  color: #fff;
}

.tab-profissional button.active,
.tab-self-service button.active {
  background-color: #222222;
  color: #EF7D2D;
}
.tabcontent {
  display: none;
  padding: 50px px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.text-center{
  text-align: center;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.pl-30{
  padding-left: 30px;
}

.obs{
  width: 800px;
  font-size: 14px;
  padding: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-top: 25px;


}