.address-item{
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  position: relative;
  height: 100%;
}

.address-item__text a{
  color: var(--white_text_black);
  font-weight: 600;
}

.address-item__text a:hover{
  color: var(--fill_dark_light_hover)
}

.address-item-wrap{
  flex-basis: calc(25% - 15px);
}

.addresses-block-items{
  display: flex;
  gap: 15px;
  flex-direction: row;
  flex-wrap: wrap;
}

.address-item__schedule{
  color: var(--fill_dark_light);
  opacity: 0.7;
  font-size: 14px;
  /* margin-top: 10px; */
}

.addresses-block{
  padding-top: 80px;
  padding-bottom: 50px;
}

@media (max-width: 1200px) {
  .address-item-wrap{
    flex-basis: calc(33.333% - 15px);
  }
}

@media (max-width: 992px) {
  .address-item-wrap{
    flex-basis: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .address-item-wrap{
    flex-basis: 100%;
  }
}