/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.contact-box {
  display: inline-flex;
  align-items: center;
  background-color: #4391c3;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  gap: 10px;
  white-space: nowrap;
  max-height: 100%;
}

.contact-icon {
  background-color: #2c378e;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-title {
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
}

.contact-phone {
  color: red;
  font-weight: bold;
  font-size: 16px;
}


/*************** ADD MOBILE ONLY CSS HERE  ***************/
@media only screen and (max-width: 48em) {
  .contact-box {
    padding: 6px 10px;
    font-size: 13px;
  }

  .contact-title {
    font-size: 13px;
  }

  .contact-phone {
    font-size: 15px;
  }
}
