@charset "UTF-8";
/* ================================== */
/* == SEARCH RESULTS -------------------------- */
.SearchDialog .form-horizontal {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1.5em;
}
.SearchDialog .form-group {
  position: relative;
}
.SearchDialog .form-group:first-child {
  flex: 1 0 200px;
}
.SearchDialog .form-group .editing-form-label-cell {
  position: absolute;
  margin-top: -1.5em;
}
.SearchDialog .form-group .editing-form-value-cell {
  height: 100%;
}
.SearchDialog .form-group .editing-form-value-cell input {
  width: 100%;
  height: 100%;
}
.SearchDialog .form-group .btn {
  height: 100%;
  display: block;
  padding: 1em 1.25em;
  transition: all 0.15s ease-in-out;
  font-family: "hypatia-sans-pro", sans-serif;
  font-size: 0.85em;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  background-color: #e7ded1;
  color: #0a0a0a;
}
.SearchDialog .form-group .btn:hover, .SearchDialog .form-group .btn:focus {
  background-color: #471f6e;
  color: #fff;
}

.SearchResults {
  margin-top: 30px;
}

.search-result {
  margin-bottom: 1.5em;
  border-bottom: #e7ded1 1px solid;
}
.content ul:not(.accordion):not(.pagers):not(.toggle-content) > .search-result:not(.card):not(.tile) {
  padding-left: 0;
}
.content ul:not(.accordion):not(.pagers):not(.toggle-content) > .search-result:not(.card):not(.tile)::before {
  display: none;
}
.search-result:last-of-type {
  margin-bottom: 2em;
}
.search-result a {
  display: block;
  margin-bottom: 0.25em;
}
.search-result a:hover h2, .search-result a:focus h2 {
  color: #471f6e;
}
.search-result a:hover h2::after, .search-result a:focus h2::after {
  animation: pulse 1s infinite alternate ease-in-out;
  opacity: 1;
}
.search-result a h2 {
  position: relative;
  margin-bottom: 0.15em;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .search-result a h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.search-result a h2::after {
  display: inline-block;
  margin-left: 0.25em;
  content: "»";
  font-family: "prenton", sans-serif;
  font-size: 1.25em;
  line-height: 1;
  vertical-align: baseline;
  position: absolute;
  color: #b79257;
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}
.search-result cite {
  display: block;
  font-weight: 400;
  color: #0a0a0a;
  font-size: 1.125em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result .result-url {
  display: block;
  word-break: break-all;
  line-height: 1.25;
}
@media only screen and (max-width: 767px) {
  .search-result .result-url {
    margin-bottom: 0.25em;
  }
}
@media only screen and (min-width: 768px) {
  .search-result .result-url {
    font-size: 0.9375em;
    margin-bottom: 0.125em;
  }
}
.search-result p {
  color: #0a0a0a;
  margin-bottom: 0.25em;
}
.search-result p:empty {
  display: none;
}
.search-result .time-stamp {
  color: #0a0a0a;
}
.search-result .highlight {
  display: inline-block;
  position: relative;
  background-color: rgba(212, 204, 223, 0.65);
  padding-bottom: 2px;
}
.search-result .highlight::after {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(71, 31, 110, 0.35);
  display: block;
  left: 0;
}