.legalContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    color: #333333;
    width: 100vw;
    -webkit-animation: animation-up-legal 0.6s 0s forwards;
    animation: animation-up-legal 0.6s 0s forwards;
    opacity: 0;
    z-index: 0;
    padding-top: var(--navbar-height);
}

.tab-bar-legal {
    overflow-x: hidden;
    position: fixed;
    background: white;
    display: flex;
    justify-content: center;
    width: 100%;
}

.tab-bar-legal button {
    color: #757575;
    display: block;
    -webkit-box-flex: 0;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    padding: 0 8px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    height: 50px;
    width: 32%;
}

.tab-bar-legal button.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

.tab-bar-legal-content-container {
    width: 100%;
    padding: 55px 15px 55px 15px;
    font-size: 13px;
    height: 100vh;
    overflow:scroll
  
  }

  @-webkit-keyframes animation-up-legal {
    0% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes animation-up-legal {
    0% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
 
.headerlegal{
  -webkit-animation: headerlegal .5s ease-in-out forwards;
  animation: headerlegal .5s ease-in-out forwards;
  transform: translateY(-10px);
  opacity:0;
}  

.legalContent{
  font-family: 'Poppins-Light';
  padding: 10px 20px 60px 10px;
  font-size: 14px;
}
.legalContent p{
  opacity: 0;
  -webkit-animation: legal .5s ease-in-out forwards;
  animation: legal .5s ease-in-out forwards;
  opacity:0;
  transform: scaleY(10px);
}
.legalContent svg{
  margin: 15px auto 5px;
  text-align: center;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  -webkit-animation: legal .5s ease-in-out forwards;
  animation: legal .5s ease-in-out forwards;
  opacity:0;
  transform: scaleY(10px);
}
.legalContent b{
color:#1F3DEB;
opacity: 0;
-webkit-animation: legal .5s ease-in-out forwards;
animation: legal .5s ease-in-out forwards;
opacity:0;
transform: scaleY(10px);
}
.legalContentheader__item{
  font-family: 'Poppins-Light';
  text-transform: uppercase;
  border-bottom: 0;
}
.legalContentheader__item--active span{
  border-bottom: 2px solid #1F3DEB;
  padding: 2px;
}
@-webkit-keyframes legal {
  0% {
    stroke-dashoffset: 1000;
    transform: translateY(10px);
    opacity:0;
  }
  70% {
    stroke-dashoffset: 0;

  }
  100% {
    stroke-dashoffset: 0;
    transform: translateY(0);
    opacity:1;
  }
}
@keyframes legal {
  0% {
    stroke-dashoffset: 1000;
    transform: translateY(10px);
       opacity:0;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
    transform: translateY(0);
    opacity:1;
  }
}
@keyframes headerlegal {
  0% {
    transform: translateY(-10px);
       opacity:0;
  }
  100% {
    transform: translateY(0);
    opacity:1;
  }
}



