/*
 * Breakpoint mixin. See: http://css-tricks.com/conditional-media-query-mixins/
 *
 * Use:
 * .row {
 *  @include bp(mobile, min) {
 *    //mobile styles
 *  };
 * }
 *
 * Breakpoints are set in _config.scss e.g. $bp1
 */
.mobile-only {
  display: none;
}
@media (max-width: 37.625em) {
  .mobile-only {
    display: block;
  }
}

@media (max-width: 37.625em) {
  .hidden-on-mobile {
    display: none !important;
  }
}

/**
 * Mixins for doing CSS3 cross-browser stuff:
 */
/**
 * Special grayscale mixin to support IE rather than using
 *	@include filter(grayscale(100%)) 
 * which IE does not support
*/
#vetlab-contact .introduction-heading {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0;
}

#vetlab-contact h2 {
  font-size: 1.75em;
}

.vetlab-contact-block {
  width: 100%;
  float: left;
  clear: both;
  text-align: center;
  margin: 2.5em 0;
  min-height: 120px;
}
@media (min-width: 37.625em) {
  .vetlab-contact-block {
    width: 49.5%;
    clear: none;
  }
}

.vetlab-contact-block h4,
#vetlab-contact .opening-hours h4 {
  font-size: 1.5em;
}

.vetlab-contact-block h4 {
  margin-top: 1.3em;
}

#vetlab-contact .vetlab-contact-block:first-of-type {
  border-right: 1px solid #cbcfd0;
}

#vetlab-contact .phone-container {
  display: inline-block;
  margin: 0 auto;
}

#vetlab-contact a.phone-no.graphic {
  margin-bottom: 0;
}

#vetlab-contact .vetlab-email {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
  margin: 0 auto;
  padding: 5px 18px;
}

#vetlab-contact .fax {
  clear: both;
  display: block;
  font-size: 1.25em;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 1em;
}

#vetlab-contacts {
  border-bottom: 1px solid #cbcfd0;
  margin-bottom: 1.5em;
}

#vetlab-contact .opening-hours {
  clear: both;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.5em;
  padding-bottom: 3em;
  overflow: auto;
}

#vetlab-contact .opening-hours table {
  width: 80%;
  margin: 1em 0 0 0;
}

#vetlab-contact .opening-hours td {
  padding: 5px;
}

#vetlab-contact .opening-hours td:first-child {
  width: 33%;
}

#vetlab-contact .opening-hours tr {
  background: #fafafa;
}

#vetlab-contact .opening-hours tr:nth-child(even) {
  background: #ddd;
}

#vetlab-contact .vetlab-email a {
  color: white;
}

#vetlab-contact label {
  float: left;
  padding-top: 0.6em;
  width: 26%;
}

#vetlab-contact form .Actions {
  float: left;
  margin-left: 26%;
}
