@media screen and (max-width: 1130px){
  .contact_address_list.container{
    padding: 0!important;
  }
}
.contact_address_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
    @media screen and (max-width: 1130px){
      grid-template-columns: 1fr;
    }

  .address_list {
    width: 100%;
    max-width: 444px;
    min-width: 300px;
    height: 600px;
    border-radius: 32px 0 0 32px;
    background: var(--grey-FA);
    overflow-y: scroll;
    @media screen and (max-width: 1130px){
      border-radius: 0;
      max-width: 100%;
      margin-bottom: 30px;
    }
    .block_left__address_list {
      cursor: pointer;
      display: flex;
      padding: 16px 30px;
      flex-direction: column;
      border-bottom: 1px solid var(--grey-EB);

      .title {
        color: var(--black-21);
        font-size: 18px;
        margin: 18px 0 10px 0;
        font-weight: 500;
      }

      .address {
        color: var(--black-21);
        font-size: 16px;
        margin-bottom: 6px;
        text-wrap: balance;
      }

      .phone {
        color: var(--black-21);
        font-size: 16px;
        margin-bottom: 6px;
      }

      .time_work {
        color: var(--grey-93);
        font-size: 14px;
      }
    }
  }

  .maps_list {
    .block_right__maps {
      width: 100%;
      max-width: 796px;
      min-width: 300px;
      display: block;
      &:not(:first-child) {
        display: none;
      }
      .bx-yandex-view-layout{
        .bx-yandex-view-map{
          .bx-yandex-map{
            width: 800px !important;
            max-width: 800px !important;
            height: 600px !important;
          }
        }
      }
    }
  }
}
