/*
███████ ███████  █████  ██████   ██████ ██   ██
██      ██      ██   ██ ██   ██ ██      ██   ██
███████ █████   ███████ ██████  ██      ███████
     ██ ██      ██   ██ ██   ██ ██      ██   ██
███████ ███████ ██   ██ ██   ██  ██████ ██   ██
*/

/* Object: Search */
.o-search {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em 0 0 0;
  text-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}
  .o-search--item {
    box-sizing: border-box;
    flex: 0 0 auto;
    margin: 0 auto;
    max-width: 1120px;
    max-width: calc(1120px - 2em);
    width: 100%;
  }
  .o-search--header {
    padding: 2em 0;
  }
  .o-search--method {
    padding: 3em 0;
  }
  .o-search--method:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.15);
  }
  .o-search--methods {
    flex: 1 1 auto;
    max-width: calc(1120px + 6em);
  }

/* Component: Search Field */
.c-searchField {}
  .c-searchField--container {}
  .c-searchField--input {}
  .c-searchField--label {
    margin: 0 0 0.5em 0;
  }

/* Component: Search Form */
.c-searchForm {
  display: block;
  margin: 0 auto;
  max-width: 320px;
}
  .c-searchForm--container {}
  .c-searchForm--field {
    margin: 0 0 1.5em 0;
  }
  .c-searchForm--fields {}
  .c-searchForm--submit {}

/* Component: Search Input */
.c-searchInput {
  background-color: #FFFFFF;
  border: 0 none transparent;
  border-radius: 0.25em;
  box-sizing: border-box;
  color: #000000;
  display: block;
  font-size: 1em;
  height: 2.5em;
  margin: 0;
  padding: 0 0.5em;
  width: 100%;
}
  .c-searchInput--container {}

  .c-searchInput-select {}
  .c-searchInput-text {
    line-height: 2.5em;
  }

/* Component: Search Label */
.c-searchLabel {
  cursor: pointer;
  display: block;
  font-weight: 600;
  line-height: 1.25em;
  text-align: left;
}
  .c-searchLabel--container {}

  .c-searchLabel-required {}

/* Component: Search Method */
.c-searchMethod {
  padding: 0.5em;
  text-align: center;
}
  .c-searchMethod--container {}
  .c-searchMethod--item {
    box-sizing: border-box;
    padding: 0.5em;
  }
  .c-searchMethod--form {}
  .c-searchMethod--header {
    padding-bottom: 1em;
  }

/* Component: Search Method Header */
.c-searchMethodHeader {}
  .c-searchMethodHeader--container {
  }
  .c-searchMethodHeader--icon {
    color: #8D795A;
    font-size: 7em !important;
    font-weight: 600;
  }
  .c-searchMethodHeader--noun {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.06666667em;
    font-weight: 700;
  }
  .c-searchMethodHeader--title {
    padding: 1em 0 0 0;
    text-transform: uppercase;
  }
  .c-searchMethodHeader--verb {
    font-family: 'Montserrat', sans-serif;
    color: #8D795A;
    font-size: 0.8em;
    font-weight: 600;
  }

/* Component: Search Submit */
.c-searchSubmit {
  background-color: rgba(141, 121, 90, 0.5);
  border: 0.25em solid #8D795A;
  border-radius: 0.5em;
  box-sizing: border-box;
  box-shadow: 0.125em 0.125em 0.25em rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5em;
  margin: 0 auto;
  padding: 0.25em 1.25em;
  text-align: center;
  text-shadow: 0 0 0.25em rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  transition: background-color 0.35s ease;
}
  .c-searchSubmit--container {}

  .c-searchSubmit:active, .c-searchSubmit:focus, .c-searchSubmit:hover {
    background-color: rgba(141, 121, 90, 0.75);
  }

/*
 ██████  ███    ███ ███████ ██████  ██  █████
██    ██ ████  ████ ██      ██   ██ ██ ██   ██
██ ██ ██ ██ ████ ██ █████   ██   ██ ██ ███████
██ ██ ██ ██  ██  ██ ██      ██   ██ ██ ██   ██
 █ ████  ██      ██ ███████ ██████  ██ ██   ██
*/

@media (min-width: 768px), print {

  /* Object: Search */
  .o-search {
    padding: 2em 0;
  }
    .o-search--method {
      flex: 1 1 100%;
      padding: 1em;
    }
    .o-search--method:nth-child(even) {
      border-radius: 0.5em;
    }
    .o-search--methods {
      display: flex;
      justify-content: space-between;
      padding: 2em 1em;
    }

  /* Component: Search Form */
  .c-searchForm {
    max-width: none;
  }

  /* Component: Search Method */
  .c-searchMethod {}
    .c-searchMethod--form {}
    .c-searchMethod--header {}

}

@media print {

  /* Object: Search */
  .o-search {
    padding: 0;
    text-shadow: none;
  }
    .o-search--method:nth-child(even) {
      background: transparent;
    }
    .o-search--methods {
      padding: 0 1em;
    }

  /* Component: Search Form */
  .c-searchForm {}
    .c-searchForm--container {
      display: none;
    }

}
