@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.blog-actions {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
@media (min-width: 1600px) {
  .blog-actions {
    gap: 24px;
  }
}
.blog-actions__item {
  flex-shrink: 0;
}
.blog-actions__indicator {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  position: relative;
  align-items: center;
  border: none;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  font-weight: 400;
}
.blog-actions__indicator .indicator__icon {
  display: inline-block;
  position: relative;
  margin-right: 8px;
  width: 22px;
  height: 22px;
  color: transparent;
}
.blog-actions__indicator .indicator__text {
  line-height: 22px;
  font-size: 14px;
  color: #808080;
}
.blog-actions__indicator.is-active .indicator__icon {
  color: #c7c7c7;
}
.blog-actions__indicator:focus-visible, .blog-actions__indicator:focus {
  outline: none;
  border: none;
}
