html, body {
  margin: 0;
  padding: 0; }

/* Border Radius Mixin */
/* Placeholder Colors */
/* Header Adjustment */
.template.template-search {
  /* highlighted search terms */ }
  .template.template-search mark {
    color: #333333;
    font-weight: 700;
    background-color: yellow; }
  .template.template-search > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .template.template-search > .container > .main {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .template.template-search > .container > .side {
      display: none; }
  .template.template-search form.search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 120px 0; }
    .template.template-search form.search-form input.search-term {
      width: 350px;
      max-width: 100%;
      margin-right: 20px;
      padding: 4px 12px;
      text-indent: 15px;
      border: none;
      border-bottom: 2px solid #333333;
      background: transparent;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      overflow: visible; }
    .template.template-search form.search-form .submit-button {
      padding: 12px 25px;
      border: 2px solid #333333;
      text-transform: uppercase;
      cursor: pointer; }
  .template.template-search .search-results {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 100px; }
    .template.template-search .search-results .result {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .template.template-search .search-results .result:not(:last-child) {
        margin-bottom: 20px; }
      .template.template-search .search-results .result > .content {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; }
        .template.template-search .search-results .result > .content .classification {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          font-size: 20px;
          text-transform: uppercase; }
          .template.template-search .search-results .result > .content .classification .type {
            font-weight: 700; }
          .template.template-search .search-results .result > .content .classification .categories {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; }
            .template.template-search .search-results .result > .content .classification .categories:before {
              content: '|';
              margin-left: 10px;
              margin-right: 10px; }
            .template.template-search .search-results .result > .content .classification .categories .category:not(:first-child):before {
              content: ',';
              margin-right: 5px; }
        .template.template-search .search-results .result > .content a.title {
          font-size: 36px;
          font-weight: bold;
          text-decoration: none;
          opacity: 1;
          -webkit-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out; }
          .template.template-search .search-results .result > .content a.title:hover {
            opacity: 0.7; }
        .template.template-search .search-results .result > .content .excerpt {
          font-size: 26px; }
      .template.template-search .search-results .result .link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-left: 20px;
        padding: 20px 20px;
        font-size: 40px;
        line-height: 40px;
        text-decoration: none;
        color: #333333;
        background-color: rgba(0, 0, 0, 0);
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
        .template.template-search .search-results .result .link:hover {
          background-color: rgba(0, 0, 0, 0.1); }
  .template.template-search .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px; }
    .template.template-search .pagination > * {
      font-size: 25px;
      color: #333333; }
      .template.template-search .pagination > *:not(:last-child) {
        margin-right: 10px; }
    .template.template-search .pagination a {
      text-decoration: none;
      color: blue;
      opacity: 1;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
      .template.template-search .pagination a:hover {
        opacity: 0.7; }
    .template.template-search .pagination .current {
      font-weight: 700;
      font-weight: 900; }
  .template.template-search .no-results-display {
    text-align: center; }
  @media (max-width: 599px) {
      .template.template-search form.search-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 40px 20px; }
        .template.template-search form.search-form input.search-term {
          margin: 0 auto 40px; }
        .template.template-search form.search-form .submit-button {
          max-width: 300px;
          margin: 0 auto; }
            .template.template-search .search-results .result > .content .classification {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
                  -ms-flex-direction: column;
                      flex-direction: column; }
              .template.template-search .search-results .result > .content .classification .type {
                margin-bottom: 10px; }
                .template.template-search .search-results .result > .content .classification .categories:before {
                  display: none; }
            .template.template-search .search-results .result > .content .excerpt {
              font-size: 18px !important;
              line-height: 24px !important; }
          .template.template-search .search-results .result .link {
            display: none; } }
  @media (max-width: 1139px) {
      .template.template-search .search-results {
        width: auto;
        margin: 0 20px; } }

/*# sourceMappingURL=search.min.css.map */
