.ar {
  &__block {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &_open {
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #004225;
    background: transparent;
    border-radius: 8px;

    padding: 10px 15px;
    height: 57px;

    span {
      transition: all 0.2s;
      font-style: normal;
      font-weight: bold;
      font-size: 16px;
      line-height: 19px;
      color: #004225;
      max-width: 90px;
    }

    svg {
      margin-left: 5px;

      path {
        transition: all 0.2s;
      }
    }

    &:hover {
      background: #004225;

      span {
        color: #fff;
      }

      svg {
        path {
          stroke: #fff;
        }
      }
    }
  }
}

@media (max-width: 1024px) {
  .ar {
    &_open {
      padding: 4px 5px;
      height: auto;

      span {
        font-size: 10px;
        line-height: 12px;
        max-width: 60px;
      }
    }
  }
}
