/******************
* Joseph Simpson 2018 The Home Slice Group
*******************/
/*
* @include triangle within a pseudo element and add positioning properties (ie. top, left)
* $direction: up, down, left, right
*/
/******************
*
* General Styles Below
*
*******************/
b, strong {
  font-weight: bold; }

i {
  font-style: italic; }

ol {
  list-style: decimal; }
  ol li {
    margin-bottom: 15px; }

.orange-text {
  /*  color: $orange;
    background: $lightBrown;*/
  color: #ffffff;
  background: #353434;
  padding: 0 7px;
  display: inline-block;
  margin-bottom: 7px; }

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .flex-box--vert-centered {
    align-items: center; }

.flex-1 {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

.flex-2 {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2; }

.flex-3 {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3; }

.flex-4 {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-flex: 4;
  -ms-flex-positive: 4;
  flex-grow: 4; }

.flex-half {
  flex-basis: 46%; }

.flex-third {
  flex-basis: 30%; }

.flex-quarter {
  flex-basis: 23%; }

.flex-fifth {
  flex-basis: 18%; }

.white-section {
  background-color: white;
  background-image: url(../img/dark-background.jpg?ver=2.4);
  background-size: cover;
  background-position: center;
  padding: 1px 10px 0 10px;
  margin: -1px auto 0 auto;
  overflow: hidden; }

.brown-section {
  background-color: #b3a89e;
  background-image: url("../img/brown-texture.jpg");
  color: white;
  overflow: hidden; }

/*****************
* ADA Skip Nav Styles Below
******************/
.skip-to-content {
  transform: translateY(-200%);
  position: absolute;
  top: 15px;
  left: 15px; }

.skip-to-content:focus {
  transform: translateY(100%);
  font-size: 30px;
  visibility: visible;
  color: black;
  background-color: white;
  padding: 15px;
  z-index: 23; }

.contents {
  max-width: 1365px;
  margin-left: auto;
  margin-right: auto; }
  .contents--white-background {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1px;
    box-sizing: border-box;
    margin-bottom: 14px;
    margin-top: 14px; }

/*****************
* Header Styles Below
*************************/
header {
  border-top: #463d31 solid 12px;
  border-bottom: #231f20 solid 8px;
  z-index: 5; }
  header .contents {
    margin-top: 15px;
    padding-top: 15px;
    max-width: 1365px;
    margin-left: auto;
    margin-right: auto;
    border-right: solid 5px;
    border-left: solid 5px;
    background: rgba(255, 255, 255, 0.73); }
    header .contents .logo {
      align-self: flex-start;
      margin-left: auto;
      margin-right: auto;
      width: 47%;
      min-width: 270px;
      max-width: 550px;
      margin-bottom: 15px; }
      @media screen and (min-width: 1074px) {
        header .contents .logo {
          margin-left: 27%; } }
      header .contents .logo img {
        width: 100%; }
    header .contents .contact {
      margin-left: auto;
      margin-right: auto;
      font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
      font-style: italic;
      font-weight: bold;
      text-align: right; }
      @media screen and (min-width: 1074px) {
        header .contents .contact {
          margin-right: 15px; } }
      header .contents .contact a {
        color: #222222; }
  header nav .hamburger-button {
    position: sticky;
    top: 0;
    font-family: "Fjalla One", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #463d31;
    text-transform: uppercase;
    font-size: 1.2em;
    height: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none; }
    @media all and (min-width: 1074px) {
      header nav .hamburger-button {
        display: none; } }
    header nav .hamburger-button span {
      margin-left: auto; }
    header nav .hamburger-button img {
      margin-right: auto;
      margin-left: 10px;
      display: block;
      width: 21px; }
  header nav a {
    font-family: "Fjalla One", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #463d31;
    text-transform: uppercase;
    font-size: 1.2em;
    height: 100%;
    padding-bottom: 5px;
    display: block; }
  header nav .menu {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    height: 720px;
    transition: height 1s; }
    @media all and (min-width: 1074px) {
      header nav .menu {
        height: 100%; } }
    header nav .menu li {
      padding-left: 1%;
      padding-right: 1%;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-top: 5px;
      border-top: transparent solid 2px;
      transition: border 1s, background .5s; }
      @media all and (min-width: 1074px) {
        header nav .menu li {
          width: 75px; } }
    header nav .menu li:hover, header nav .menu .current_page_item {
      border-top: #463d31 solid 2px;
      background: #ECECEC; }

/*****************
* Footer Styles Below
*************************/
footer {
  background-color: #c4a97f;
  background-image: url(../img/cloud-texture.png);
  color: black;
  border-top: #4a0e0d solid 7px;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  text-transform: uppercase;
  line-height: 1.6;
  padding: 0 14px; }
  footer .contents {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 100%;
    width: 975px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.17); }
    footer .contents .full-width {
      width: 100%; }
    footer .contents img {
      max-width: 100%;
      width: 400px;
      display: block;
      margin: 14px auto 2em; }
    footer .contents .col {
      margin-left: auto;
      margin-right: auto;
      width: 283px;
      overflow: hidden; }
      footer .contents .col .row {
        margin-bottom: 2em; }
    footer .contents .col:last-child {
      align-self: center; }
    footer .contents a {
      color: black;
      text-decoration: none; }
    footer .contents a:hover, footer .contents a:focus {
      color: #323232;
      text-decoration: underline; }

/******************************
*
*
*     Page Styles Below
*
*
******************************/
#main {
  font-family: "Fjalla One", Helvetica, Arial, sans-serif;
  background: #faf8f8; }
  #main h2 {
    font-size: 3em;
    text-align: center;
    margin-top: 21px;
    margin-bottom: 15px;
    text-transform: uppercase; }
  #main .non-home-page {
    padding: 10px;
    max-width: 1050px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
  #main .main-page-header {
    font-size: 1.8em;
    font-family: "Fjalla One", Helvetica, Arial, sans-serif;
    margin-bottom: 15px; }
  #main .upcoming-market-links {
    font-size: 1.1em;
    line-height: 1.4;
    min-width: 280px;
    color: black;
    display: block;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 25px; }
  #main a.upcoming-market-links:focus, #main a.upcoming-market-links:hover {
    color: #764b1b; }
  #main .white-section p {
    line-height: 1.8;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px; }

/***************
* Home page styles below
**********/
#upcoming-sales {
  padding-top: 10px; }

.lma-container {
  display: flex;
  margin-bottom: 15px; }
  .lma-container .lma-list {
    margin-left: auto;
    margin-right: auto;
    list-style: disc; }
    .lma-container .lma-list li {
      margin-bottom: 10px; }

#main .home-page-slide-show-container {
  position: relative;
  border-bottom: #231f20 solid 8px; }
  #main .home-page-slide-show-container .slide-show-overlay {
    background: rgba(35, 31, 32, 0.83);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    font-family: "Fjalla One", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    color: white;
    text-align: center;
    padding: 5px 10px; }
    @media screen and (min-width: 480px) {
      #main .home-page-slide-show-container .slide-show-overlay {
        width: 482px; } }
    #main .home-page-slide-show-container .slide-show-overlay a {
      color: white;
      text-decoration: none;
      border: 2px solid white;
      margin-left: auto;
      margin-right: auto;
      display: block;
      transition: color 1s, border 1s;
      padding-top: 11px; }
      #main .home-page-slide-show-container .slide-show-overlay a .smaller-text {
        font-size: 1.2em; }
      #main .home-page-slide-show-container .slide-show-overlay a p {
        font-size: 1.5em; }
        @media screen and (min-width: 480px) {
          #main .home-page-slide-show-container .slide-show-overlay a p {
            font-size: 2.5em; } }
      #main .home-page-slide-show-container .slide-show-overlay a polyline {
        stroke: white;
        stroke-width: 5;
        transition: stroke 1s; }
    #main .home-page-slide-show-container .slide-show-overlay a:hover {
      color: #cd7163;
      border: solid 2px #cd7163; }
      #main .home-page-slide-show-container .slide-show-overlay a:hover polyline {
        stroke: #cd7163; }
    @media screen and (min-width: 500px) {
      #main .home-page-slide-show-container .slide-show-overlay {
        padding-top: 25px;
        padding-bottom: 25px; }
        #main .home-page-slide-show-container .slide-show-overlay p {
          margin-bottom: .35em;
          white-space: nowrap; } }
    #main .home-page-slide-show-container .slide-show-overlay .arrow_container {
      padding: 5px 15px 2px 15px;
      display: block;
      position: absolute;
      bottom: .2%;
      left: 50%;
      transform: translate(-50%, 100%);
      background: rgba(35, 31, 32, 0.83);
      border-bottom-left-radius: 18px;
      border-bottom-right-radius: 18px; }
#main .upcoming-sales-home-container {
  display: flex;
  flex-wrap: wrap; }
  #main .upcoming-sales-home-container .upcoming-sales-home-box {
    min-width: 295px;
    color: #231f20;
    background: #dbb795;
    width: 23%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    display: block;
    text-decoration: none;
    min-height: 465px;
    position: relative;
    transition: background-color .5s; }
    #main .upcoming-sales-home-container .upcoming-sales-home-box .sales-date-home {
      background: white;
      color: #231f20;
      height: 55px;
      width: 93px;
      display: flex;
      align-content: center;
      font-size: 1.7em;
      line-height: 55px;
      text-align: center; }
      #main .upcoming-sales-home-container .upcoming-sales-home-box .sales-date-home p {
        margin-left: auto;
        margin-right: auto; }
    #main .upcoming-sales-home-container .upcoming-sales-home-box h2 {
      margin-top: 25px;
      margin-bottom: 25px; }
    #main .upcoming-sales-home-container .upcoming-sales-home-box .subheading {
      text-align: center;
      font-size: 1.5em;
      padding-right: 50px;
      padding-left: 50px;
      font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
      font-style: italic; }
    #main .upcoming-sales-home-container .upcoming-sales-home-box .sales-times-home {
      font-size: 2em;
      text-align: center;
      margin-top: 15px;
      padding-bottom: 50px; }
    #main .upcoming-sales-home-container .upcoming-sales-home-box img {
      position: absolute;
      bottom: 7px;
      left: 44%; }
  #main .upcoming-sales-home-container .upcoming-sales-home-box:focus, #main .upcoming-sales-home-container .upcoming-sales-home-box:hover {
    background-color: white; }
    #main .upcoming-sales-home-container .upcoming-sales-home-box:focus .sales-date-home, #main .upcoming-sales-home-container .upcoming-sales-home-box:hover .sales-date-home {
      background: #dbb795; }
#main .home-market-reports-section {
  background: url("../img/feed-lot.jpg");
  background-size: cover;
  background-position: center;
  overflow-y: hidden;
  min-height: 560px;
  box-shadow: rgba(0, 0, 0, 0.45) 4px 6px 4px; }
  #main .home-market-reports-section .interior_container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.88);
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 15px; }
  #main .home-market-reports-section h2 {
    color: black; }
  #main .home-market-reports-section h3 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.88);
    padding-top: 5px;
    padding-bottom: 5px; }
  #main .home-market-reports-section .form-and-label {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 900px;
    max-width: 100%; }
    #main .home-market-reports-section .form-and-label .label {
      align-self: flex-start;
      margin-top: 15px;
      margin-bottom: 15px;
      margin-right: auto;
      font-size: 1.3em;
      margin-left: auto;
      color: black;
      text-transform: uppercase; }
      @media screen and (min-width: 374px) {
        #main .home-market-reports-section .form-and-label .label {
          margin-right: 16px; } }
    #main .home-market-reports-section .form-and-label form {
      width: 62%;
      margin-right: auto;
      margin-left: auto;
      min-width: 300px; }
      @media screen and (min-width: 374px) {
        #main .home-market-reports-section .form-and-label form {
          margin-left: 0; } }
    #main .home-market-reports-section .form-and-label form > * {
      width: 100%; }
    #main .home-market-reports-section .form-and-label form select {
      color: #4c393b;
      margin-bottom: 15px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      padding: 10px;
      font-size: 1.1em;
      text-transform: uppercase;
      border-radius: 9px;
      background-image: url(../img/drop-down.png);
      background-position: calc(100% - 18px) calc(1em + -8px), calc(100% - 15px) calc(1em + 2px), calc(100% - .5em) 0.5em;
      background-size: 18px 16px;
      background-repeat: no-repeat;
      border: none;
      padding-left: 20px;
      -webkit-box-shadow: inset 0px -22px 58px -34px #858585;
      -moz-box-shadow: inset 0px -22px 58px -34px #858585;
      box-shadow: inset 0px -22px 58px -34px #858585; }
      @media screen and (min-width: 650px) {
        #main .home-market-reports-section .form-and-label form select {
          font-size: 1.8em; } }
    #main .home-market-reports-section .form-and-label form select::-ms-expand {
      display: none; }
    #main .home-market-reports-section .form-and-label form input {
      border: none;
      padding: 13px;
      background: rgba(0, 0, 0, 0.64);
      color: white;
      font-size: 1.3em;
      text-transform: uppercase;
      border-radius: 8px;
      font-family: "Fjalla One", Helvetica, Arial, sans-serif; }
    #main .home-market-reports-section .form-and-label form input:hover {
      cursor: pointer;
      background: black; }
#main .sunset-container {
  background: url("../img/philip-livestock-auction.jpg");
  background-size: cover;
  background-position: center; }
#main .load-more-button {
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
  text-transform: uppercase;
  font-size: 1.5em;
  text-align: center;
  transition: background-color .5s; }
#main .load-more-button:focus, #main .load-more-button:hover {
  background: white;
  color: #231f20;
  cursor: pointer; }
#main .double-img-container {
  display: flex;
  max-width: 100%;
  width: 1365px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  margin-bottom: 35px; }
  #main .double-img-container img:first-child {
    width: 48%;
    margin-right: auto;
    align-self: center;
    -webkit-box-shadow: 1px 5px 51px -4px #5c5c5c;
    -moz-box-shadow: 1px 5px 51px -4px #5c5c5c;
    box-shadow: 1px 5px 51px -4px #5c5c5c; }
  #main .double-img-container img:last-child {
    width: 48%;
    margin-left: auto;
    align-self: center;
    -webkit-box-shadow: 1px 5px 51px -4px #5c5c5c;
    -moz-box-shadow: 1px 5px 51px -4px #5c5c5c;
    box-shadow: 1px 5px 51px -4px #5c5c5c; }

.three-col-container {
  display: flex;
  flex-wrap: wrap; }
  .three-col-container a, .three-col-container div {
    width: 31%;
    margin-left: auto;
    margin-right: auto;
    min-width: 180px; }

.quarter {
  min-width: 260px;
  width: 23%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  flex-basis: 23%;
  margin-right: 2%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

.trucker-section {
  white-space: nowrap;
  margin-bottom: 23px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: #222222 solid 1px; }

.trucker-heading {
  position: sticky;
  top: 0;
  background: #463d31;
  color: white;
  padding: 21px 7px 7px 7px; }

.sales-container div {
  border: solid 2px black; }

.sales-container p {
  border: solid 2px black; }

/****************
* Individual Sales Style Below
**************/
#main .individual-sales-container {
  text-align: center;
  font-family: "Fjalla One", Helvetica, Arial, sans-serif; }
  #main .individual-sales-container h2 {
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 15px; }
  #main .individual-sales-container h3 {
    font-size: 1.3em; }
  #main .individual-sales-container .hide-mobile {
    display: none; }
  #main .individual-sales-container .individual-sales-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 15px; }
    #main .individual-sales-container .individual-sales-section .sales-section-header {
      width: 100%;
      text-align: center; }
    #main .individual-sales-container .individual-sales-section .row {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      border: 1px solid #cd7163; }
      #main .individual-sales-container .individual-sales-section .row .cell {
        display: block;
        width: 100%;
        min-width: 175px;
        padding-top: 10px;
        padding-bottom: 10px; }
    #main .individual-sales-container .individual-sales-section .col {
      width: 25%;
      min-width: 175px;
      margin-left: auto;
      margin-right: auto; }
    @media screen and (min-width: 718px) {
      #main .individual-sales-container .individual-sales-section .hide-mobile {
        display: block; }
      #main .individual-sales-container .individual-sales-section .row .cell {
        width: 25%; } }

/*
Market Report styles below
*/
#main .market-report-section {
  margin-bottom: 25px; }
  #main .market-report-section h3 {
    background: #463d31;
    color: white;
    width: 100%;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-top: 5px;
    padding-bottom: 5px; }
  #main .market-report-section .upcoming-market-links {
    width: 20%; }

/*
Bull Sales
*/
#main .bull-sales-section {
  width: 48%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding-top: 5px;
  padding-bottom: 5px; }
  #main .bull-sales-section h4 {
    font-size: 1.5em;
    width: 100%;
    margin-bottom: 5px; }

/****************
* Receiving stations Styles Below
**************/
#main .non-home-page .receiving-station-message {
  font-size: 1.5em;
  background: #463d31;
  color: white;
  padding: 15px 35px;
  text-align: left; }
#main .non-home-page .receiving-stations-container {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.8); }
  #main .non-home-page .receiving-stations-container .receiving-station-section {
    width: 325px;
    min-width: 35%;
    padding-left: 5px;
    margin: 15px auto;
    line-height: 1.4;
    text-align: center; }
    #main .non-home-page .receiving-stations-container .receiving-station-section h3 {
      font-size: 1.3em; }
    #main .non-home-page .receiving-stations-container .receiving-station-section a {
      color: black; }

/****************
* contact Styles Below
**************/
.contact-container {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px; }
  .contact-container .col-1, .contact-container .col-2 {
    width: 48%;
    margin-left: auto;
    margin-right: auto;
    min-width: 260px; }
  .contact-container .contact-section {
    line-height: 1.4;
    margin-bottom: 15px; }
    .contact-container .contact-section h3 {
      font-size: 1.2em; }

/****************
* Staff Styles Below
**************/
.staff-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.2;
  font-size: 1.1em;
  align-items: center; }
  .staff-container .individual-staff-container {
    width: 30%;
    min-width: 212px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px; }
    .staff-container .individual-staff-container img {
      width: 100%;
      max-width: 100%;
      display: block; }
    .staff-container .individual-staff-container h3 {
      font-size: 1.5em;
      margin-top: .5em;
      margin-bottom: .5em; }
  .staff-container a {
    color: black; }

/****************
* Superior Styles Below
**************/
#main .superior-link {
  width: 30%;
  background: #463d31;
  color: white;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  font-size: 1.2em;
  margin-bottom: 15px;
  transition: background-color 1s; }
#main .superior-link:focus, #main .superior-link:hover {
  background: white;
  color: #463d31; }
#main .superior-reps {
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-wrap: wrap;
  max-width: 1002px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px; }
  #main .superior-reps h3 {
    width: 100%; }
  #main .superior-reps p {
    font-size: 1.2em;
    width: 40%;
    margin: 15px auto;
    min-width: 140px; }
    #main .superior-reps p a {
      color: black;
      white-space: nowrap; }

/*print styles below*/
.btn-print {
  cursor: pointer;
  font-weight: bold;
  font-size: 1.5em;
  width: 250px;
  padding: 15px;
  border: #d27644 1px solid;
  box-shadow: #dadada 2px 3px 3px 0px;
  transition: color .4s, background-color .4s;
  color: white;
  background: #cd7163; }

.btn-print:hover, .btn-print:active {
  background: white;
  color: #cd7163; }

@media print {
  #main .individual-sales-container .individual-sales-section .hide-mobile {
    display: block; }

  #main .individual-sales-container .individual-sales-section .row .cell {
    width: 25%; }

  #main .individual-sales-container .individual-sales-section .row {
    border: 1px solid black; }

  header {
    display: none; }

  footer {
    display: none; }

  .btn-print {
    display: none; }

  #main .home-market-reports-section {
    box-shadow: none;
    background: transparent; } }
.online_form_container {
  background: rgba(255, 255, 255, 0.9);
  line-height: 1.4; }
  .online_form_container > * {
    width: 90%;
    padding: 5px;
    margin-left: auto;
    margin-right: auto; }
    .online_form_container > * input[type=button] {
      cursor: pointer;
      font-weight: bold;
      font-size: 1.5em;
      width: 200px;
      padding: 15px;
      border: #d27644 1px solid;
      box-shadow: #dadada 2px 3px 3px 0px;
      transition: color .4s, background-color .4s;
      color: white;
      background: #cd7163; }
    .online_form_container > * input[type=button]:hover, .online_form_container > * input[type=button]:focus {
      background: none;
      color: #cd7163;
      cursor: pointer; }

.bordered_box {
  padding: 3px;
  border: solid 1px; }

.form_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  .form_group .form_sub_group {
    width: 420px;
    min-width: 30%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 5px;
    margin-bottom: 15px;
    border: solid gray 1px; }
  .form_group input {
    margin-bottom: 5px; }

/*# sourceMappingURL=styles.css.map */
