.responsive-tab-content__title {
  margin-bottom: 20px;
}
.responsive-tab-content__tabs {
  position: relative;
}
.responsive-tab-content__tabs .tabs {
  position: relative;
  white-space: nowrap;
}
.responsive-tab-content__tabs .tabs__tab {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.responsive-tab-content__content > .title {
  margin-top: calc(2 * var(--spacing-mobile));
}
@media (min-width: 768px) {
  .responsive-tab-content__content > .title {
    margin-top: calc(2 * var(--spacing-tablet));
  }
}
@media (min-width: 992px) {
  .responsive-tab-content__content > .title {
    margin-top: calc(2 * var(--spacing-desktop));
  }
}
@media (min-width: 1200px) {
  .responsive-tab-content__content > .title {
    margin-top: calc(2 * var(--spacing-large));
  }
}
@media (min-width: 768px) {
  .responsive-tab-content__tabs {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: calc(var(--spacing) * -.5);
  }
  .responsive-tab-content__tabs .title,
.responsive-tab-content__tabs .form-group,
.responsive-tab-content__tabs .tabs {
    margin: calc(var(--spacing) * .5);
  }
  .responsive-tab-content__tabs .title {
    margin-right: var(--spacing);
  }
  .responsive-tab-content__tabs > .form-group {
    display: none;
  }
  .responsive-tab-content__tabs:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .responsive-tab-content__tabs > .form-group ~ .tabs {
    display: none;
  }
}