/*
Theme Name: RT-Theme 18 Child
Template: rttheme18
*/

.top_content .heading h1, .top_content .heading h2 {
    font-size: 29px;
    line-height: 100%;
    padding: 0;
    color: #888;
}
/* Style the form - display items horizontally */
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
/* Add some margins for each label */
.form-inline label {
  margin: 5px 10px 5px 0;
  font-weight: 700;
  font-size: inherit;
  color: #888;
}
/* Style the input fields */
.form-inline input {
  vertical-align: middle;
  margin: 5px 10px 5px 0;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.stextarea {
    height: 160px !important;
    width: 100% !important;
}
/* Style the submit button */
.form-inline button {
  padding: 10px 20px;
  background-color: dodgerblue;
  border: 1px solid #ddd;
  color: white;
}
.form-inline button:hover {
  background-color: royalblue;
}
/* Add responsiveness - display the form controls vertically instead of horizontally on screens that are less than 800px wide */
@media (max-width: 800px) {
  .form-inline input {
    margin: 10px 0;
  }
  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }
}
