.tabs__items-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2rem;
}

.tabs__item-link {
  position: relative;
  padding: 5px 25px;
  text-decoration: underline;
  font-family: 'SuisseIntlBook',sans-serif;
  font-size: 16px;
}
.tabs__item-link--active {
  display: none;
}
.tabs__item-link--active::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 3px;
  width: 65px;
  background-color: #000;
} 
.tabs__item-link:hover {
  cursor: pointer;
}


.tabs__item-content {
  display: none;
}
.tabs__item-content--open {
  display: block;
}


.tabs__custom-link {
  color: #FFFFFF;
  text-decoration: underline;
}
.tabs__custom-link:hover {
  cursor: pointer;
  font-weight: bold;
}

.forgot-password-modal {
  font-family: 'SuisseIntlBook',sans-serif;
  text-decoration: underline;
}
@media screen and (min-width: 992px) {
  .content-form-account-paywall .form-connexion.login .button {
      margin-top: 0px;
  }
}