.tab-table td{
    border-top:1px solid rgba(255,255,255,0.3);
}
.tab-header .btn-tab:checked + .tab{
    opacity:1 !important;
}

.txt-splash span {
  opacity: 0;
  transform: scale(0);
  animation: fadeIn 3s forwards;
}
.txt-splash::before, .txt-splash::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: white;
  opacity: 0;
  transform: scale(0);
}
.txt-splash::before {
  left: 50%;
  animation: slideLeft 1.5s cubic-bezier(0.7, -0.6, 0.3, 1.5) forwards;
}
.txt-splash::after {
  right: 50%;
  animation: slideRight 1.5s cubic-bezier(0.7, -0.6, 0.3, 1.5) forwards;
}

.all-input{
  border: none;
  border-bottom: 2px solid #1985a1;
  background-color: rgba(53, 63, 73, 1);
  box-shadow: inset 0 0 27px 9px rgba(0, 0, 0, 0.3);
  color: #dcdcdd;
  padding: 5px 10px 2px 5px !important;
  outline: none;
}

.box-contact-support{
    position: absolute;
    box-sizing: border-box;
    width: 95%;
    height: 150px;
    top: -80px;
    right: 49%;
    transform: translateX(50%);
    background: #46494c;
    padding: 0 10px 10px;
    transition: 0.3s;
    border-radius: 5px;
    text-align: center;
}

.toggle-btn-box-suport{
    box-sizing: border-box;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 100%;
    top: 45px;
    right: 50%;
    transform: translateX(50%);
    margin: 0 auto;
    background: #46494c;
    color: #fff;
    padding: 20px 0 0;
    transition: 0.3s;
    cursor: pointer;
}

.check-btn-tgl-box{
    position: absolute;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.check-btn-tgl-box:checked + .toggle-btn-box-suport{
    top: 185px;
}

.check-btn-tgl-box:checked ~ .box-contact-support{
    top: 60px;
}

.box-contact-support .content-box-support{
    box-sizing: border-box;
    position: relative;
    top: 0;
    width: 95%;
    height: 95%;
    background: #4c5c68;
    border-radius: 5px;
    padding: 30px 5px 0;
    color: #fff;
    margin: 0 auto;
}

.content-box-support .btn-box-support{
    position: relative;
    width: 50% !important;
    bottom: -20px;
}

@keyframes fadeInImg {
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  to {
    bottom:5%;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideLeft {
  to {
    left: -6%;
    opacity: 1;
    transform: scale(0.9);
  }
}
@keyframes slideRight {
  to {
    right: -6%;
    opacity: 1;
    transform: scale(0.9);
  }
}