/* SecureForm Default CSS Style File */
/* For SecureForm Form Builder */

table {
  border: 0;
}
tr {
  vertical-align: top;
}
td,
th {
  padding: 5px;
}
th {
  font-weight: bold;
  text-align: left;
}

blockquote {
  margin: 10px 10px 10px 25px;
  border-left: 2px solid #ccc;
  padding-left: 0 0 0 5px;
}

dt {
  font-weight: bold;
  margin-left: 32px;
  text-indent: -32px;
}

dd {
  font-weight: normal;
  margin: 5px 0 10px 25px;
  border-left: 2px solid #ccc;
  padding-left: 5px;
}

h1 {
  font-size: 24px;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 16px;
}
h4,
h5,
h6,
h7 {
  font-size: 14px;
}

form,
img {
  padding: 0;
  margin: 0;
}

input,
select {
  border: 2px solid #ddd;
  color: #000;
  padding: 4px;
  border-radius: 3px;
}
textarea {
  background: #fff;
  border: 2px solid #ddd;
  font-family: "Courier New", Courier, monospace;
  font-weight: normal;
  padding: 4px;
  border-radius: 5px;
  color: black;
}

input:focus,
select:focus,
textarea:focus {
  background: #eee;
  border: 2px solid #ccc;
  color: black;
}

/* Css + bootstrap-buttons */
input[type="button"],
input[type="submit"] {
  cursor: pointer;
  border: 1px solid #979797;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background-color: #eeeeee;
  background-image: -o-linear-gradient(bottom, #ccc 40%, #ffffff);
  background-image: -moz-linear-gradient(bottom, #ccc 40%, #ffffff);
  background-image: -webkit-linear-gradient(bottom, #ccc 40%, #ffffff);
  background-image: -ms-linear-gradient(bottom, #ccc 40%, #ffffff);
  text-shadow: 1px 1px 1px #ffffff;
}

/* Bootstrap reversions */
input.btn {
  border: 1px solid transparent;
  background-image: none;
  text-shadow: none;
  color: #fff;
}
input.btn-primary {
  background-color: #337ab7;
  border-color: #002242;
}
input.btn-success {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
input.btn-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
input.btn-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
input.btn-danger {
  background-color: #d9534f;
  border-color: #d9534f;
}
input.btn-default {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000;
}

/* for IE<9 HTML5 compatibility */
nav,
article,
header,
footer {
  display: block;
}

/* ********************************* */
/* BEGIN FORM VALIDATION CSS */

/* Z-INDEX */
.formError {
  z-index: 990;
}
.formError .formErrorContent {
  z-index: 991;
}
.formError .formErrorArrow {
  z-index: 996;
}
.ui-dialog .formError {
  z-index: 5000;
}
.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}
.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #fff;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}
body[dir="rtl"] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #fff;
}

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

/* END FORM VALIDATION CSS */
/* ********************************* */

/* ********************************* */
/* Ink Signatures */

.x_inksig {
  border: 1px inset #ccc;
  border-radius: 5px;
}

/* End Ink Signatures */
/* ********************************* */

/* ********************************* */
/* GeoLocation */

.x_getgeo {
  border: 1px solid #ccc;
  background-color: #eee;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  padding: 2px;
  background-image: url(https://d4hm2u4pioc0c.cloudfront.net/icons/png/o/blue_dark_grey/16x16/earth2.png);
}

/* End GetLocation */
/* ********************************* */

/* SECUREFORM DEFAULT CSS */

/* Do not edit the contents of this block, it will */
/* be auto-regenerated each time you update your form */

body {
	padding: 10px;
	margin: 0;
	background-color: #FFFFFF;
	color: #333333;
   font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	}

td, th, p, li, blockquote, a, dt, dd {
	color: #333333;
   font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	}

h1,h2,h3,h4,h5,h6,h7 {
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	}

input, select, textarea {
	font-family: Arial, Helvetica, sans-serif;
   font-size: 13px;
	}

.x_getgeo {
   border: 1px solid #CCC;
   background-color: #EEE;
   border-radius:5px;
   padding:2px;
   }	
/* SECUREFORM DEFAULT CSS */





body,
p,
li {
  font: 450 16px Lato, sans-serif;
  line-height: 1.5;
  color: #818181;
}

a {
  font: 450 16px Lato, sans-serif;
  color: blue;
}

.sform_sig {
  overflow: hidden;
}

legend {
  font: 450 18px Lato, sans-serif;
  line-height: 1.5 !important;
  color: #818181 !important;
}

input[type="radio"],
.radio-inline,
.radio,
.radio input[type="radio"],
.radio-inline input[type="radio"],
input[type="checkbox"],
.checkbox,
.checkbox-inline,
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  line-height: normal;
}

.reqLabel::after {
  content: " *";
  color: #5465a1;
  font-weight: bold;
  font-size: large;
  vertical-align: top;
  padding-left: 1px;
}

footer {
  text-align: center;
  margin: 2rem 0 2rem 0;
  background-color: #5465a1;
  border-radius: 0 0 1em 1em;
  padding: 2rem;
  font-size: larger;
  color: white;
}

div.tableContainer > div:nth-of-type(odd) {
  background: #e4e4e4;
}

.control-label {
  display: block;
  font-weight: bold;
  padding-left: 0px;
}

.tableRow {
  padding: 1rem;
}

/* background-color: #5fbde1; */

/* for heading */
.heading-container {
  border-radius: 1em 1em 0 0;

  margin-top: 2rem;
  text-align: center;
  font-size: larger;
  color: black;
}

.heading-subtext {
  text-align: center;
  color: white;
  font-size: 0.85em;
  line-height: 1.1em;
  font-family: Rockwell;
}

/* for heading- end */

/* General  */
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.isHidden {
  display: none;
}

.border-bottom {
  border-bottom: 1px solid LightGray;
  margin-bottom: 1rem;
}
.border-bottomX {
  margin-bottom: 1rem;
}

.border-bottom2 {
  border-bottom: 3px solid grey;
  margin-top: 2rem;
}

.notebox {
  border: 2px solid grey;
  padding: 2rem;
  margin-left: 5%;
  margin-right: 5%;
  box-shadow: 5px 5px grey;
}
/* General - end */

/* for Birth History yes no  */

.apgarHidden {
  display: none;
}
.nciuHidden {
  display: none;
}
.nciuVentHidden {
  display: none;
}
.nciuInfectionHidden {
  display: none;
}
.jaundiceHidden {
  display: none;
}
.congenitalHidden {
  display: none;
}
/* for Medical History yes no  */

.scansHidden {
  display: none;
}

/* for Medical History yes no  */

.HHhearinglossHidden {
  display: none;
}
.HHamplificationHidden {
  display: none;
}

.familyHistoryHidden {
  display: none;
}
.screenedAtBirthHidden {
  display: none;
}
.concernsAboutChildHidden {
  display: none;
}
.anotherLanguageHidden {
  display: none;
}

.currentIEPHidden {
  display: none;
}
.schoolHidden {
  display: none;
}

/* yes no - end */

/* other to test */
.signatureBox {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}

/* responsive tables  */

.table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}

.cell-label-title {
  vertical-align: bottom;
}

@media screen and (min-width: 970px) {
  .table {
    display: table;
  }

  .table-row {
    display: table-row;
  }

  .table-cell {
    display: table-cell;
    border-top: 1px solid lightgrey;
    padding: 8px;
  }

  .cell-label {
    display: none;
  }

  .cell-label-title {
    font-weight: 600;
    border-top: 0px solid lightgrey;
    font-size: 16px;
  }

  .cell-width-15 {
    width: 15%;
  }
  .cell-width-25 {
    width: 25%;
  }
}

@media screen and (max-width: 970px) {
  .labelBlock {
    display: block;
    margin-top: 10px;
  }
  .cell-label-title {
    display: none;
  }
  .table-row {
    border-bottom: 1px solid #f18a00;
    padding-bottom: 20px;
    padding-top: 10px;
  }
  .header-row {
    border-bottom: 0px solid #f18a00;
    padding-bottom: 0;
    padding-top: 0;
    margin: 0;
  }
  .cell-width-15 {
    width: 100%;
  }
  .cell-width-25 {
    width: 100%;
  }
}
/* end responsive tables  */

/* for panels  */

.panel:hover {
  box-shadow: 5px 0px 40px rgba(0, 0, 0, 0.2);
  /* box-shadow: 5px 0px 40px rgba(146,201,107); */
}
.test:hover {
  box-shadow: 5px 0px 40px rgba(146, 201, 107);
}

.pheading {
  background-color: #5fbde1 !important;
}
.pheading_green {
  background-color: #92c96b !important;
}

.ptitle {
  color: white;
  font-weight: bold;
  font-size: large;
}

.panel-heading-subtext {
  font-weight: normal;
  font-style: italic;
  display: block;
}

/* for panels = end  */

/* for inputs */

.label-desciptive-text {
  font-weight: normal;
  font-style: italic;
}

.label-sub {
  font-weight: normal;
}

.radio-label {
  display: block;
}
.radio-inline-label {
  margin-right: 10px;
}

.radio-inline label {
  font-weight: normal;
}

/* for inputs - end */

/* for flex and flex item used in signature (see module) */
.flex-container {
  display: flex;
  flex-direction: row;
}

.flex-item {
  align-self: center;
  margin-right: 1rem;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 1000px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-item {
    align-self: flex-start;
  }
}

/* for signature */
.flex-sig-container {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.flex-sig-item {
  align-self: flex-end;
  margin-bottom: 1rem;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 1000px) {
  .flex-sig-container {
    flex-direction: column;
  }
  .flex-sig-item {
    align-self: flex-start;
  }
}

.main-panel {
  margin-top: 30px;
}
.main-panel .panel-heading {
  background-color: #337ab7 !important;
  color: #fff !important;
}
h4 {
  margin-top: 20px;
}
.scheduling-options .radio {
  margin-bottom: 10px;
}
.form-horizontal .control-label {
  text-align: left;
}
.signature-section {
  margin-top: 30px;
}
.signature-section h4 {
  margin-top: 0;
}
