.address_section .info_card {
    background: #f5f5f5;
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    height: 100%;
}

.address_section .info_card .card_body {
  padding: 12px 15px;
}

.address_section .info_card .card_body .top_row {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.address_section .info_card .card_body .name_row {
    margin: 0;
    display: flex;
    align-items: flex-start;
    width: 85%;
}

.address_section .info_card .card_body .data {
    margin: 6px 0;
    font-size: 14px;
    color: #343434;
    display: flex;
}

.address_section .info_card .card_body .name_row .label {
    width: 40%;
}

.address_section .info_card .card_body .label {
    display: inline-block;
    width: 30%;
    font-weight: 500;
    color: #343434;
    font-size: 14px;
    margin-bottom: 0px;
}

.address_section .info_card .card_body .value {
    font-size: 14px;
    margin-bottom: 0px;
    color: #343434;
    font-weight: 500;
    width: 70%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: break-word;
word-break: normal;
}

.address_section .info_card .edit-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
}

.address_section .info_card .icon_wrapper {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.address_section .info_card .icon_wrapper .edit-icon {
  width: 100%;
  height: 100%;
}
@media (min-width: 0px) and (max-width: 574px) {
  .address_section .info_card .card_body strong {
    font-size: 13px;
    display: unset;
  }
  .address_section .info_card .card_body span {
    font-size: 13px;
  }
}

@media (min-width: 575px) and (max-width: 767.98px) {
  .address_section .info_card .card_body strong {
    font-size: 14px;
  }
  .address_section .info_card .card_body span {
    font-size: 14px;
  }
}
