html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: 'Oswald', sans-serif;
}
.app-container {
  height: 100%;
  padding: 0;
  margin: 0;
}
.app-container > .row {
  margin-top: 0;
  margin-bottom: 0;
}
.app-menu-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 15;
}
@media screen and (min-width: 768px) {
  .app-menu-button {
    display: none !important;
  }
}
.app-menu {
  position: relative;
  min-height: 100vh;
  max-width: 340px;
  background-color: #204979;
  text-align: center;
  z-index: 20;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .app-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 95vw;
    box-shadow: 2px 0px 12px #0000008a;
    overflow-y: auto;
    -webkit-transform: translateX(-110%);
    -moz-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .app-menu.open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.app-menu .menu-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (min-width: 560px) {
  .app-menu .menu-close-button {
    display: none;
  }
}
.app-menu .menu-content {
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
}
.app-menu .menu-content::-webkit-scrollbar-button {
  display: none;
  height: 13px;
  border-radius: 0px;
  background-color: #a6b5c4;
}
.app-menu .menu-content::-webkit-scrollbar-button:hover {
  background-color: #a6b5c4;
}
.app-menu .menu-content::-webkit-scrollbar-thumb {
  background-color: #357aca;
  border-radius: 5px;
}
.app-menu .menu-content::-webkit-scrollbar-thumb:hover {
  background-color: #4a87cf;
}
.app-menu .menu-content::-webkit-scrollbar-track {
  background-color: #5e94d4;
}
.app-menu .menu-content::-webkit-scrollbar-track:hover {
  background-color: #72a2da;
}
.app-menu .menu-content::-webkit-scrollbar {
  width: 8px;
}
.app-menu .app-title-container {
  margin: 40px 0 20px 0;
  background-image: url('../img/haus-skraut.png');
  background-position: top;
  background-repeat: repeat-x;
  background-size: 31px 7px;
}
.app-menu .app-title-container .inner {
  background-image: url('../img/haus-skraut.png');
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 31px 7px;
}
.app-menu .app-title-container h1.app-title {
  margin: 15px 25px 0 30px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .app-menu .app-title-container h1.app-title {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .app-menu .app-title-container h1.app-title {
    font-size: 2.4rem;
  }
}
.app-menu .app-title-container h1.app-title img {
  max-width: 190px;
  width: 55%;
  margin: 60px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.app-menu .app-title-container h1.app-title a:hover {
  opacity: 1;
}
.app-menu .app-title-container h1.app-title a:hover img {
  -webkit-transform: scale(1.052);
  -moz-transform: scale(1.052);
  -ms-transform: scale(1.052);
  transform: scale(1.052);
}
.app-menu .app-title-container h2 {
  margin: 15px 25px 0 30px;
  color: #fff;
  font-size: 2.3rem;
  text-align: left;
}
.app-menu a {
  color: #fff;
}
.app-menu a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.app-menu .site-logo {
  display: block;
  padding-top: 23px;
  padding-bottom: 23px;
  margin: 0 30px;
}
.app-menu .site-logo .logo {
  max-width: 140px;
}
.app-menu .page-links {
  min-height: calc(100vh - 550px);
  margin: 50px 70px;
}
@media screen and (max-width: 768px) {
  .app-menu .page-links {
    margin-top: 40px;
  }
}
@media screen and (max-width: 560px) {
  .app-menu .page-links {
    margin-top: 20px;
  }
}
.app-menu .page-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.app-menu .page-links ul li {
  display: block;
  text-align: left;
}
.app-menu .page-links ul li.separator:before {
  content: ' ';
  display: block;
  width: 150px;
  height: 2px;
  margin: 1rem;
  background-color: #5e94d4;
}
.app-menu .page-links ul li a {
  position: relative;
  display: block;
  padding: 0.2rem 1rem;
  font-weight: bold;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .app-menu .page-links ul li a {
    padding: 0.4rem 1rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .app-menu .page-links ul li a {
    padding: 0.1rem 1rem;
  }
}
.app-menu .page-links ul li a:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 20px;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}
.app-menu .page-links ul li a.active:after {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.app-menu .page-links ul li a:hover:after {
  opacity: 0.4;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-header {
  display: none;
}
.mobile-header h1 {
  margin: 0;
  color: #204979;
  font-size: 2rem;
}
@media screen and (max-width: 560px) {
}
.btn-menu {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 5px 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
}
@media screen and (max-width: 560px) {
  .btn-menu {
    margin: 3px 0 0 0;
    background-color: #f3f3f37d;
  }
}
.btn-menu:active,
.btn-menu:focus {
  outline: 0;
}
.btn-menu:hover {
  background: #ffffff4f;
  border: 1px solid #6060604f;
}
.hamburger-icon {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
}
.hamburger-icon .icon-middle {
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 25px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.open.hamburger-icon .icon-middle {
  opacity: 0;
}
.black.hamburger-icon .icon-middle {
  background: #000;
}
.hamburger-icon .icon-before-after:before,
.hamburger-icon .icon-before-after:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.black.hamburger-icon .icon-before-after:before,
.black.hamburger-icon .icon-before-after:after {
  background: #000;
}
.hamburger-icon .icon-before-after:before {
  top: 0;
  left: 0;
}
.open.hamburger-icon .icon-before-after:before {
  transform: rotate(45deg);
}
.hamburger-icon .icon-before-after:after {
  top: 18px;
  left: 0;
}
.open.hamburger-icon .icon-before-after:after {
  transform: rotate(-45deg);
}
.column-content {
  max-width: 1200px !important;
}
.search-form {
  max-width: 1200px;
  background-color: #F3F3F3;
  z-index: 10;
  border-bottom: 1px solid #eaeef1;
  box-shadow: 0 0px 0px #00000000;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.search-form.sticky {
  box-shadow: 0 2px 6px #00000040;
}
.search-form.sticky .column-content {
  padding-top: 20px;
}
.search-form.sticky .column-content .form-check {
  margin-bottom: 5px;
}
.searchform-minimized .search-form {
  margin-top: -148px;
  -webkit-transform: translateY(-110%);
  -moz-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%);
}
.searchform-minimized .search-form.forced-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.search-form .column-content {
  padding: 30px 15px 0 15px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .search-form .column-content {
    padding: 20px 20px 1px 70px;
  }
}
.search-form input.form-control {
  padding: 0.375rem;
  border: 1px solid #c3d0de;
  border-radius: 3px;
  box-shadow: 0 1px 2px #00000014;
  background: #fff;
}
.search-form input.form-control:focus {
  box-shadow: none;
}
.search-form input.form-control::placeholder {
  color: #999;
}
.search-form .btn-primary {
  height: 38px;
  padding: 0 25px;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 38px;
  box-shadow: 0 0px 0px #00000000;
  border-color: #204979;
  background-color: #204979;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.search-form .btn-primary:hover {
  box-shadow: 0 2px 2px #0000005e;
}
@media screen and (max-width: 560px) {
  .search-form .btn-primary {
    padding: 0 10px;
  }
}
@media screen and (max-width: 560px) {
  .search-form .btn-primary .label {
    display: none;
  }
}
.search-form .btn-primary .icon {
  display: none;
}
.search-form .btn-primary .icon img {
  max-width: 20px;
}
@media screen and (max-width: 560px) {
  .search-form .btn-primary .icon {
    display: block;
  }
}
.search-form .btn-secondary {
  height: 38px;
  padding: 0 25px;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 38px;
  color: #000000;
  box-shadow: 0 0px 0px #00000000;
  border-color: #a9aeb3;
  background-color: #c9ced2;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.search-form .btn-secondary:hover {
  box-shadow: 0 2px 2px #0000005e;
}
@media screen and (max-width: 560px) {
  .search-form .btn-secondary {
    padding: 0 10px;
  }
}
.search-form .toggle-switch {
  float: right;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .search-form .toggle-switch {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
}
.search-form .loading-bar {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 0px;
  max-width: 1200px;
  background: #fff6;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.loading .search-form .loading-bar {
  height: 4px;
}
.search-form .loading-bar .indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #357aca;
  animation-name: loading-bar-animate;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.search-form .search-info {
  float: left;
  margin-top: 13px;
  color: #727272;
  font-size: 0.8rem;
}
.search-form .search-info a {
  padding: 0 10px 0 0;
  text-decoration: underline;
  cursor: pointer;
}
.search-form label {
  font-size: 80%;
}
.search-form label.form-heading {
  font-weight: bold;
  color: #204979;
  font-size: 80%;
}
.filter-card label,
.search-form label {
  font-size: 80%;
}
.filter-card label.form-heading,
.search-form label.form-heading {
  font-weight: bold;
  color: #204979;
  font-size: 80%;
}
@keyframes loading-bar-animate {
  0% {
    left: 0;
    right: auto;
    width: 0%;
  }
  49% {
    left: 0;
    right: auto;
    width: 100%;
  }
  50% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0%;
  }
}
.alert-results {
  padding: 25px;
  background-color: #F3F3F3;
  border: 1px solid #e5e5e5;
}
.alert-results .msg {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.alert-results .alt {
  font-size: 1.05rem;
}
.alert-results ul {
  margin-bottom: 0;
  padding-left: 0;
}
.alert-results ul li {
  list-style: none;
  font-size: 1.05rem;
}
.alert-results ul li:not(:first-child) {
  margin-top: 5px;
}
.alert {
  padding: 20px;
  font-size: 0.9rem;
  color: #000;
  border-radius: 3px;
}
.alert.alert-error {
  background-color: red;
}
.alert.alert-info {
  background-color: #F3F3F3;
  border-color: #F3F3F3;
}
.page-header {
  margin-bottom: 35px;
}
.page-header h2:after {
  content: ' ';
  display: block;
  width: 150px;
  height: 2px;
  margin-top: 20px;
  background-color: #5e94d4;
}
.page-content {
  padding: 40px;
}
.page-content .breadcrumb {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-content .breadcrumb {
    margin-top: 50px;
  }
}
.page-content h2 {
  position: relative;
  margin: 20px 0 20px 0;
  color: #3a4d60;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .page-content h2 {
    font-size: 1.6rem;
  }
}
.page-content h2:first-child {
  margin-top: 0;
  text-align: center;
}
.page-content h2:first-child:after {
  content: " ";
  display: block;
  height: 2px;
  width: 180px;
  margin: 50px auto;
  background-color: #a6b5c4;
}
@media screen and (max-width: 768px) {
  .page-content h2:first-child {
    margin-top: 5px;
    margin-left: 50px;
  }
}
.page-content .breadcrumb-nav + .html-content > h2 {
  margin-left: 0;
}
.page-content h3 {
  margin: 30px 0 10px 0;
  color: #597892;
  font-size: 1.3rem;
  font-weight: bold;
}
.page-content h4 {
  margin: 20px 0 10px 0;
  color: #597892;
  font-size: 1.1rem;
}
.page-content p,
.dict-entry p,
.alert p,
.page-content ul,
.dict-entry ul,
.alert ul,
.page-content ol,
.dict-entry ol,
.alert ol,
.page-content blockquote,
.dict-entry blockquote,
.alert blockquote {
  font-size: 1rem;
}
.page-content table td,
.dict-entry table td,
.alert table td {
  padding: 0.25rem 0.75rem;
}
.page-content br,
.dict-entry br,
.alert br {
  margin-top: 10px;
}
.page-content a,
.dict-entry a,
.alert a,
.page-content .highlight,
.dict-entry .highlight,
.alert .highlight {
  color: #204979;
}
.page-content b,
.dict-entry b,
.alert b,
.page-content i,
.dict-entry i,
.alert i {
  color: #333;
}
.page-content i,
.dict-entry i,
.alert i {
  font-style: italic;
}
.page-content b,
.dict-entry b,
.alert b,
.page-content strong,
.dict-entry strong,
.alert strong {
  font-weight: bold;
}
.page-content a,
.dict-entry a,
.alert a {
  color: #2172c4;
  border-bottom: 1px dashed #2172c42e;
}
.page-content a:hover,
.dict-entry a:hover,
.alert a:hover {
  border-bottom-style: solid;
  text-decoration: none;
}
.page-content .btn-primary,
.dict-entry .btn-primary,
.alert .btn-primary {
  color: #fff;
  border: 1px solid transparent;
}
.page-content blockquote,
.dict-entry blockquote,
.alert blockquote {
  margin-left: 20px;
}
.page-content .card,
.dict-entry .card,
.alert .card {
  margin-bottom: 20px;
}
.toggle-switch {
  position: relative;
  cursor: pointer;
}
.toggle-switch .label {
  display: inline-block;
  color: #727272;
  font-size: 0.8rem;
}
.toggle-switch:hover .label {
  color: #444;
}
.toggle-switch:hover .switch .button {
  background: #b4d7f4;
}
.toggle-switch .switch {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  width: 26px;
  height: 8px;
  background: #b2b2b2;
  box-shadow: inset 1px 1px 0px #0000001f;
  border-radius: 15px;
}
.toggle-switch .switch .button {
  display: block;
  position: absolute;
  top: -4px;
  left: 0px;
  width: 14px;
  height: 14px;
  background: #5aa7e8;
  border-radius: 100%;
  box-shadow: 1px 1px 1px #0000008f;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.toggle-switch .switch .button .icon {
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 5px;
  width: 5px;
  height: 7px;
  border-right: 2px solid #2071b5;
  border-bottom: 2px solid #2071b5;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.switch-on.toggle-switch .switch .button {
  left: 12px;
  background-color: #fff;
}
.switch-on.toggle-switch .switch .button .icon {
  opacity: 1;
}
.page-content img,
.front-banner img {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 0px 2px #0000003d;
}
.front-banner .col.col-12:not(:first-child) .column-content {
  padding-bottom: 0;
}
.front-banner .col.main-box .column-content {
  padding-top: 50px;
  background-color: #F3F3F3;
}
.front-banner .col.main-box .column-content h2 {
  margin-left: 0;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #3a4d60;
  text-align: center;
}
.front-banner .col.main-box .column-content h2:after {
  content: " ";
  display: block;
  height: 2px;
  width: 180px;
  margin: 50px auto;
  background-color: #a6b5c4;
}
.front-banner .col .column-content {
  height: 100%;
  padding: 40px;
}
.front-banner .col h2 {
  margin-left: 0;
  font-size: 1.3rem;
}
.front-banner .col h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.front-banner .col h3:after {
  content: " ";
  display: block;
  height: 2px;
  width: 180px;
  margin-top: 20px;
  background-color: #a6b5c4;
}
.front-banner .col h3:first-child {
  margin-top: 0;
}
.front-banner .col a.button {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #fafafa;
  color: #333;
}
.front-banner .expandable-box {
  position: relative;
  max-height: 160px;
  padding-bottom: 135px;
  overflow: hidden;
  -webkit-transition: max-height 300ms ease-in-out;
  -o-transition: max-height 300ms ease-in-out;
  transition: max-height 300ms ease-in-out;
}
.front-banner .expandable-box:after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f3f3f3+0,f3f3f3+100&0+0,1+55 */
  background: -moz-linear-gradient(top, rgba(243, 243, 243, 0) 0%, #f3f3f3 55%, #f3f3f3 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(243, 243, 243, 0) 0%, #f3f3f3 55%, #f3f3f3 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(243, 243, 243, 0) 0%, #f3f3f3 55%, #f3f3f3 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f3f3f3', endColorstr='#f3f3f3', GradientType=0);
  /* IE6-9 */
  -webkit-transition: max-height 300ms ease-in-out;
  -o-transition: max-height 300ms ease-in-out;
  transition: max-height 300ms ease-in-out;
}
.front-banner .expandable-box.expanded {
  max-height: 5000px;
  padding-bottom: 0px;
}
.front-banner .expandable-box.expanded:after {
  height: 0;
}
.front-banner .expandable-box.expanded .expand-button {
  display: none;
}
.front-banner .expandable-box .expand-button {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.main-column {
  padding-bottom: 105px;
}
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #F3F3F3;
}
.footer .footer-content {
  max-width: 1200px !important;
  padding: 40px;
  color: #777;
}
@media print {
  .app-menu,
  .app-menu-button {
    display: none;
  }
  html,
  body {
    width: 100%;
    max-width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }
  .column-content,
  .main-column {
    display: block !important;
    width: 100%;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .main-column {
    flex: 0 0 100% !important;
  }
  p {
    display: block !important;
  }
  .d-flex {
    display: block !important;
  }
  style,
  script,
  head {
    display: none !important;
  }
  .row,
  .card {
    display: block !important;
  }
  .footer .footer-content {
    padding: 20px;
  }
  * {
    overflow: visible !important;
  }
  #_sam_portal_menu {
    display: none;
  }
  .search-form {
    display: none !important;
  }
}
.search-results-info {
  padding: 12px 20px;
  background: #fafafa;
  border-bottom: 1px solid #cdd7e2;
  font-size: 0.8rem;
  font-weight: bold;
  color: #204979;
}
.results-list .result-item {
  position: relative;
  background: transparent;
  -webkit-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}
.results-list .result-item.item-highlight {
  background: #ffe882;
}
.results-list .result-item .close-link {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: bold;
  font-size: 0.7rem;
  color: #204979;
  cursor: pointer;
}
.results-list .result-item:not(:last-child) {
  border-bottom: 1px solid #F3F3F3;
}
.results-list .result-item.open {
  border-bottom: none;
}
.results-list .result-item .searchword {
  padding: 10px 40px;
}
.results-list .result-item .searchword a {
  border-bottom: 1px dotted;
  color: #204979;
}
.results-list .result-item .searchword a:hover {
  border-bottom-style: solid;
  text-decoration: none;
}
.results-list .pagination .btn-info {
  color: #204979;
}
.results-list .pagination .btn-info.active {
  background: #204979;
}
.dict-entry {
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.hover .dict-entry {
  background: #f8f8f8;
  cursor: pointer;
}
.dict-entry.expanded {
  margin-top: 5px;
  margin-left: 15px;
  border-radius: 3px;
  border: 1px solid #cdd7e2;
  box-shadow: 0 3px 3px #00000033;
  background: #f7f7f7;
}
.dict-entry .badge {
  display: inline;
  background: #f7f7f7;
  border: 1px solid #cbcbcb;
  color: black;
  font-size: 85%;
  font-family: 'Roboto';
}
.dict-entry .entry-tabs {
  margin-top: 10px;
  padding: 5px 20px 0 20px;
  border-bottom: 1px solid #cdd7e2;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.results-list .dict-entry .entry-tabs {
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
  opacity: 0;
}
.dict-entry .entry-tabs a {
  display: inline-block;
  position: relative;
  bottom: -1px;
  padding: 5px 10px;
  margin-right: 5px;
  border: none;
  border-top: 1px solid #cdd7e2;
  border-left: 1px solid #cdd7e2;
  border-right: 1px solid #cdd7e2;
  background: #dddddd4a;
  font-size: 0.8rem;
  color: #204979;
  cursor: pointer;
  -webkit-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}
.dict-entry .entry-tabs a:hover {
  background: rgba(205, 215, 226, 0.5);
}
.dict-entry .entry-tabs a.selected {
  background: #fff;
  border-top: 2px solid #204979;
  font-weight: 600;
}
.dict-entry .entry-content {
  padding: 20px;
}
.results-list .dict-entry .entry-content {
  padding: 12px 20px;
  text-indent: 1rem;
}
.dict-entry .entry-content p {
  margin-bottom: 0;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
}
.compact .dict-entry .entry-content p {
  font-size: 80%;
}
.dict-entry .entry-content p a {
  color: #33699f;
  border-bottom: 1px dashed #2172c42e;
}
.results-list .dict-entry .entry-content p a {
  text-decoration: none;
  color: inherit;
  border-bottom: none;
}
.dict-entry .entry-content p b,
.dict-entry .entry-content p strong {
  font-size: 1.2rem;
}
.dict-entry .entry-content p .highlight {
  box-shadow: 1px 0 #ffe882, -1px 0 #ffe882;
  background-color: #ffe882;
}
.dict-entry .entry-content .entry-image img {
  max-width: 600px;
  border-radius: 2px;
}
.dict-entry .entry-meta {
  padding: 10px 20px 10px 20px;
  font-size: 0.8rem;
  color: #2b61a1;
}
.results-list .dict-entry .entry-meta {
  display: none;
}
.dict-entry .entry-mouseover {
  position: fixed;
  max-width: 250px;
  padding: 4px 8px;
  font-size: 0.9rem;
  background: #f1f3f5;
  border-radius: 3px;
  border: 1px solid #e3e3e3;
  box-shadow: 0 2px 2px #0000000d;
  z-index: 200;
}
.index-column {
  padding-top: 45px;
  border-left: 1px solid #cdd7e2;
  box-shadow: inset 2px 0px 2px #0000000d;
  background: #fafafa;
}
.index-column li a {
  padding: 5px 12px;
  font-size: 0.8rem;
  color: #204979;
}
.index-column li a.f-group {
  background: #3a4d6008;
  text-indent: 20px;
  font-size: 0.9rem;
}
.index-column li a.active {
  margin-left: -4px;
  color: #fff;
  background-color: #204979 !important;
  border-radius: 2px;
}
hr {
  border-color: #cdd7e2;
}
.autocomplete-input {
  position: relative;
}
.autocomplete-input .error-message {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 7px;
  background: #b18c73cc;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  opacity: 0;
}
.autocomplete-input .error-message.visible {
  opacity: 1;
}
.autocomplete-input .autocomplete-list {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -4px;
  border-radius: 0.25rem;
  box-shadow: 0 2px 2px #0000001f;
  color: #474747;
  z-index: 10;
}
.autocomplete-input .autocomplete-list a {
  color: #474747;
}
.autocomplete-input .autocomplete-list a:hover {
  background: #F3F3F3;
}
.autocomplete-input .autocomplete-list a.active {
  background-color: #306db6;
  border-color: #306db6;
  color: #fff;
}
@media screen and (max-width: 550px) {
  .autocomplete-input.open {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F3F3F3;
    z-index: 10;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .autocomplete-input.open input.form-control,
  .autocomplete-input.open select.form-control {
    padding: 1.6rem;
  }
  .autocomplete-input.open .autocomplete-list {
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
  }
}
.card {
  background: #fafafa;
  border: 1px solid #e4e3e3;
  border-radius: 3px;
}
