.content-region {
    &__title {
        margin-bottom: 0.5rem;
        font-size: 16px;
        color: #666666;
    }

    &__list {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        margin: 0;

        &:not(.opened) .item {
          display: none;
        }

        .item {
            line-height: 1.2;
            margin-bottom: 5px;
            margin-right: 5px;

            &:first-child {
              margin-left: 0;
            }

            &:nth-child(1),
            &:nth-child(2),
            &:nth-child(3),
            &:nth-child(4) {
              display: inline-block;
            }
        }
        a {
            font-size: 12px;
            text-decoration: underline;
        }
    }

    &__opener {
      display: flex;
      align-items: center;
      width: 100%;
      font-weight: 400;
      font-size: 11px;
      margin-top: 5px;
      cursor: pointer;
      transition: color 300ms;

      &:hover {
        color: #E22B00;

        &::after {
          border-color: #E22B00;
        }
      }

      &::after {
        display: inline-block;
        content: '';
        border-left: 1px solid #333333;
        border-bottom: 1px solid #333333;
        height: 6px;
        width: 6px;
        margin-left: 7px;
        margin-top: -4px;
        transform: rotate(-45deg);
        transition: border-color 300ms;
      }

      &::before {
        display: inline-block;
        content: 'Все регионы';
      }

      .opened & {
        color: #E22B00;

        &::before {
          content: 'Свернуть';
        }

        &::after {
          border-color: #E22B00;
          margin-top: 2px;
          margin-left: 5px;
          transform: rotate(-225deg);
        }
      }
    }
}
