.contact-info-bar {
  background-color: #eee;
  padding: 10px;
  border-radius: 10px;
}
.contact-info-bar__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-info-bar__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C32030;
}
.contact-info-bar__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
}
.contact-info-bar__label br {
  display: block;
}

@media (min-width: 992px) {
  .contact-info-bar__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .contact-info-bar__item:not(:last-child) {
    border-right: 1px solid #D9D9D9;
    padding-right: 30px;
  }
}

/*# sourceMappingURL=contact-info-bar.css.map */
