.linked-tabs.no-margin-bottom .linked-tabs__tab-bar {
  margin-bottom: 0px;
}
.linked-tabs.bg-white .linked-tabs__tab-bar {
  background-color: #ffffff;
}
.linked-tabs.bg-white .linked-tabs__tab-bar .linked-tabs__tab:not(.linked-tabs__tab--active ) {
  border-bottom: 1px solid black;
}
.linked-tabs__tab-bar {
  background-color: #f5f5f5;
  margin-bottom: 30px;
  transition: all 0.7s;
}
@media (min-width: 768px) {
  .linked-tabs__tab-bar {
    margin-bottom: 50px;
  }
}
.linked-tabs__tab-bar--fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 750;
}
.linked-tabs__tablist {
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  list-style: none;
  overflow: auto;
  position: relative;
  /*    &::after {
            width: var(--width);
            content: '';
            position: absolute;
            bottom: 0px;
            left: var(--left);
            transition: left 0.2s ease-in-out;

            height: @tabBorder-size;
            background-color: @rojo-04;
        } */
}
.linked-tabs__tablist::-webkit-scrollbar {
  display: none;
}
.linked-tabs__tab {
  font-size: 20px;
  line-height: 28px;
  /* 140% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  width: 100%;
  text-align: center;
  padding: 16px;
  padding-bottom: calc(16px - 4px);
  border-bottom-width: 4px;
  border-color: #f5f5f5;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: min-content;
}
.linked-tabs__tab:hover {
  cursor: pointer;
}
.linked-tabs__tab--active {
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
  border-bottom: 4px solid #d52b1e;
}
