/*** VARIABLES ***/
/*** NOTE: These are in front of the Bootstrap build so Bootstrap variables can/should be overriden here ***/
/* COLORS */
/* LINKS */
/* BUTTON */
/* FONTS */
/* PADDING */
/* TABLES */
/* THEME */
/*(Design has #ECECEC for login page, #F0F0F0 in others)*/
/* TABLES */
/* LINKS */
/* DIRECTORIES */
.contactsGridBLE > .container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1200px) {
  .contactsGridBLE > .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contactsGridBLE .single-contact .contact-name {
  display: none;
}
.contactsGridBLE .contact-block {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .contactsGridBLE .contact-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contactsGridBLE .contact-name {
  margin-bottom: 20px;
}
.contactsGridBLE .contact-details {
  border-radius: 15px;
  background-color: #FFF;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.0784313725);
  padding: 30px;
  height: 100%;
  display: flex;
  font-size: 18px;
}
@media (max-width: 767px) {
  .contactsGridBLE .contact-details {
    height: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .contactsGridBLE .contact-details {
    flex-direction: column;
    align-items: center;
  }
}
.contactsGridBLE .contact-details .icon {
  width: 65px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
@media (max-width: 991px) {
  .contactsGridBLE .contact-details .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.contactsGridBLE .contact-details.contact-phone .icon {
  background-image: url(/dist/img/icons/grey-phone.svg);
}
.contactsGridBLE .contact-details.contact-phone a {
  text-decoration: none;
}
.contactsGridBLE .contact-details.contact-hours .icon {
  background-image: url(/dist/img/icons/grey-clock.svg);
}
.contactsGridBLE .contact-details.contact-address .icon {
  background-image: url(/dist/img/icons/grey-location-pin.svg);
}
@media (min-width: 992px) {
  .contactsGridBLE .contact-details .detail-wrapper {
    max-width: 60%;
  }
}