.tab-list-outer{
  position: relative;
  z-index: 2;
}
.tab-list-mobile{
  display: none;
  align-items: center;
  border: 1px solid rgba(var(--black-hex),0.15);
  padding: 0 1.5rem;
  height: 4.8rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
  color: var(--black);
  position: relative;
  cursor: pointer;
  background: var(--white);
}
.tab-list-outer.open .tab-list-mobile {
  border-radius: 0.4rem 0.4rem 0 0;
}
.tab-list-mobile::after {
  position: absolute;
  content: "";
  right: 1.5rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/icon-dropdown-arrow.png);
  background-size: cover;
  background-position: center;
  transition-duration: 250ms;
}
.tab-list-outer.open .tab-list-mobile::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.tab-list{
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(var(--black-hex),0.15);
}
.tab-link{
  margin-right: 3.2rem;
  display: block;
  margin-bottom: 1.2rem;
  position: relative;
}
.tab-link:last-child{
  margin-right: 0;
}
.tab-link.active::after,
.tab-link:hover::after{
  position: absolute;
  content: "";
  left: 0;
  bottom: -1.3rem;
  z-index: 1;
  width: 100%;
  height: 0.4rem;
  background: var(--green);
}
.tab-info .d-flex.hide{
  display: none !important;
}
@media(min-width:992px) and (max-width:1199.98px){
  .tab-link {
    margin-right: 2.8rem;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  .tab-link {
    margin-right: 2.8rem;
  }
}
@media(max-width:767.98px){
  .tab-list-mobile {
    display: flex;
  }
  .tab-list {
    margin: 0;
    padding-bottom: 0;
    display: block;
    border: 1px solid rgba(var(--black-hex),0.15);
    border-top: 0;
    border-radius: 0 0 0.4rem 0.4rem;
    position: absolute;
    width: 100%;
    top: 100%;
    background: var(--white);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform-origin: 50% 0;
    transform: scaleY(0);
    transition-duration: 250ms;
  }
  .tab-list-outer.open .tab-list {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  .tab-link {
    margin-right: 0;
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(var(--black-hex),0.15);
  }
  .tab-link:last-child{
    border-bottom: 0;
  }
  .tab-link.active::after, 
  .tab-link:hover::after {
    bottom: -1px;
    height: 0.2rem;
  }
}