/**Media Queries****************************************************/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*For my Son Colors*/
/**
 * 
 * Creates a container with the given aspect ratio. If you place a .content inside
 * the container, It will cover the entire container. Note: the container's width
 * is set to 100%. Overide if necessary.
 * 
 */
/*Blog entry item listing*/
span.request-screening {
  cursor: pointer;
  text-align: center;
  color: #ee4036;
  border: solid 2px #ee4036;
  font-size: 15px;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
}
span.request-screening:hover {
  background-color: #ee4036;
  color: #fff;
}
#screeningModal .wpcf7-not-valid-tip {
  text-align: center;
}
#screeningModal .modal-header {
  text-align: center;
}
#screeningModal .modal-body .content {
  width: 80%;
  margin: 0 auto;
}
#screeningModal .modal-body .input {
  width: 100%;
}
#screeningModal .modal-body .recaptcha {
  width: 80%;
  margin: 0 auto 30px auto;
}
#screeningModal .modal-body span {
  display: block;
  width: 100%;
}
#screeningModal .modal-body input[type="text"], #screeningModal .modal-body input[type="tel"], #screeningModal .modal-body input[type="email"], #screeningModal .modal-body select, #screeningModal .modal-body textarea {
  width: 80%;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 10px 10px;
  background: #f9f9f9;
  border: solid 1px #ccc;
}
#screeningModal .modal-body .submit {
  text-align: center;
}
#screeningModal .modal-body .submit input[type="submit"] {
  display: block;
  margin: 0 auto;
}
#screeningModal .modal-body .submit img {
  display: block;
}
#screeningModal .modal-body .sent-okay {
  border: 2px solid green;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}
