/*! ============================================================================= */
/*! Radio switchers list (used to filter some kinds of content) */
/*! ============================================================================= */
.site-radio-list {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.site-radio-list__label {
  opacity: 0.5;
  padding-right: 30px;
}

.site-radio-list__switchers {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}

.site-radio-list__single-switcher {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  color: #000000;
  white-space: nowrap;
}

.site-radio-list__single-switcher:after {
  content: '';
  height: 1px;
  background: currentColor;
  opacity: 0;
  display: block;
  transition: opacity 250ms;
}

.site-radio-list__single-switcher:hover, .site-radio-list__single-switcher--active {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}

.site-radio-list__single-switcher:hover:after {
  opacity: 0.1;
}

.site-radio-list__single-switcher--active:after, .site-radio-list__single-switcher--active:hover:after {
  opacity: 0.3;
}

.site-radio-list__select {
  display: none;
  max-width: 100%;
}

/*! ================================= modification for small screens */
@media (max-width: 767.98px) {
  .site-radio-list {
    flex-direction: column;
  }
  .site-radio-list__label, .site-radio-list__switchers {
    display: none;
  }
  .site-radio-list__select {
    display: block;
  }
}
