.twintag-labels {
  position: relative;
  width: 100%;
  padding: 0 $gutter;
  margin: 48px auto 120px;

  @include sm {
    padding: 0 $gutter-mobile;
    margin: 50px auto;
  }

  &__wrapper {
    width: 100%;
    max-width: $max-width;
    padding: 0 $gutter;
    margin: 0 auto;
  }

  &__container {
    width: 100%;
  }

  &__header {
    width: calc(100% / 12 * 10);
    margin: 0 auto 48px;

    @include md {
      width: 100%;
    }

    h2 {
      margin: 0;
    }
  }

  &__content {
    p {
      color: $primary-color;
      font-weight: 400;
      font-size: 1.8rem;
    }
  }

  &__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;

    @include sm {
      margin-top: 16px;
    }
  }

  &__label-image {
    position: relative;
    padding-top: 67.7%;
    border: 1px solid $gray-border;

    img {
      position: absolute;
      top: 15%;
      left: 15%;
      width: 70%;
      height: 70%;
      object-fit: contain;
    }
  }

  &__label {
    padding: 20px 18px;
    width: 25%;

    @include md {
      width: 50%;
    }

    @include sm {
      width: 100%;
    }

    h4 {
      margin: 2.4rem 0 0;
      padding: 0 1.6rem;
      font-size: 1.8rem;
    }
  }

  &__no-results {
    text-align: center;
    display: none;
  }

  &__loading {
    text-align: center;
    display: none;
  }

  &__more-list {
    text-align: center;
    margin-top: 48px;
    display: none;
  }

  &__filters {
    display: flex;
    justify-content: space-between;
    padding: 48px 18px;

    @include md {
      padding: 48px 0px;
      flex-direction: column;
      row-gap: 20px;
    }

    & > div {
      display: flex;
    }

    .articles-filter-block__filter {
      height: 46px;
      width: 200px;
    }
  }

  &__input-form {
    width: 290px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid $gray-border;

    @include md {
      width: 100%;
    }

    input {
      width: 100%;
      height: 44px;
      box-sizing: border-box;
      padding: 0 0 0 30px;

      &::placeholder {
        color: $primary-color;
        font-weight: 600;
      }
    }
  }

  &__icon-search {
    position: absolute;
    width: 22px;
    height: 22px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    svg path {
      fill: $primary-color;
    }
  }
}
