.tcl-tabs-with-line {
  position: relative;
}
@media (max-width: 1199px) {
  .tcl-tabs-with-line::before, .tcl-tabs-with-line::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 30px;
    z-index: 3;
  }
  .tcl-tabs-with-line::before {
    left: -5px;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(0, #f7f5f3), color-stop(50%, #f7f5f3), to(transparent));
    background: linear-gradient(to right, transparent, #f7f5f3 0, #f7f5f3 50%, transparent);
  }
  .tcl-tabs-with-line::after {
    right: -5px;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(0, #f7f5f3), color-stop(50%, #f7f5f3), to(transparent));
    background: linear-gradient(to left, transparent, #f7f5f3 0, #f7f5f3 50%, transparent);
  }
}
@media (max-width: 1199px) {
  .tcl-tabs-with-line__scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
  }
  .tcl-tabs-with-line__scroll::-webkit-scrollbar {
    display: none;
  }
}
.tcl-tabs-with-line__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 0;
}
@media (max-width: 1199px) {
  .tcl-tabs-with-line__container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.tcl-tabs-with-line__item {
  font-weight: 700;
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  white-space: nowrap;
}
.tcl-tabs-with-line__item:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #023c7a;
}
.tcl-tabs-with-line__item:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -2px;
  width: calc(100% - 40px);
  height: 5px;
  border-radius: 1px;
  background-color: #023c7a;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.tcl-tabs-with-line__item.active:after {
  opacity: 1;
}