/* offside-js 1.4.0 26-03-2018
* Minimal JavaScript kit without library dependencies to push things off-canvas using just class manipulation
* https://github.com/toomuchdesign/offside.git
*
* by Andrea Carraro
* Available under the MIT license
*/

/* Off-canvas element CSS */
.offside {
    position: fixed; /* Does not play well with some old browsers (see: README) */
    width: 200px;
    height: 100%;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

/* Left off-canvas elements default status: out of the page */
.offside,
.offside--left {
    left: -200px;
}

/* Right off-canvas elements default status: out of the page */
.offside--right {
    left: auto;
    right: -200px;
}

/*
 * Left off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--left.is-open,
.offside-js--is-left .offside-sliding-element {
    -webkit-transform: translate3d(200px, 0, 0);
    -moz-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    -o-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
}

/*
 * Right off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--right.is-open,
.offside-js--is-right .offside-sliding-element {
    -webkit-transform: translate3d(-200px, 0, 0);
    -moz-transform: translate3d(-200px, 0, 0);
    -ms-transform: translate3d(-200px, 0, 0);
    -o-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
}

/* Elements Transitions */
.offside-js--interact .offside,
.offside-js--interact .offside-sliding-element {
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
    
    /* improves performance issues on mobile*/
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

/* Body overflow */
.offside-js--init {
    overflow-x: hidden;
}



/* Fallback movements for browser not supporting CSS 3d Transitions
----------------------------------------------- */

/* Modernizr false negative csstransforms3d fix, reset CSS 3d Transitions */
.no-csstransforms3d .offside {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.no-csstransforms3d .offside-sliding-element {
    overflow-x: hidden;
    position: relative;
}

/* Element is open: off-canvas element slides in */
.no-csstransforms3d .offside--left.is-open {
    left: 0;
}

.no-csstransforms3d .offside--right.is-open {
    right: 0;
}

/* Element is open: container elements slide out */
.no-csstransforms3d > .offside-js--is-left .offside-sliding-element {
    right: -200px;
}

.no-csstransforms3d > .offside-js--is-right .offside-sliding-element {
    left: -200px;
}@charset "UTF-8";

/** Import Bootstrap functions */

/**
  * @section	Fonts
  */

/**
  * @section	Header
  */

/**
  * @section	collage
  */

/**
  * @section section layout
  */

/** Import everything from autoload */

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #990f71;
  --pink: #e83e8c;
  --red: #ee0000;
  --orange: #fd7e14;
  --yellow: #ffff00;
  --green: #00CB00;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #ee0000;
  --secondary: #ced4da;
  --success: #00CB00;
  --info: #0f9999;
  --warning: #ffff00;
  --danger: #ee0000;
  --light: #e9ecef;
  --dark: #343a40;
  --white: #fff;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Sparkasse", arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Sparkasse", arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #343a40;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: inherit;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #ee0000;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #a20000;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 2.2rem;
}

h3,
.h3 {
  font-size: 1.65rem;
}

h4,
.h4 {
  font-size: 1.65rem;
}

h5,
.h5 {
  font-size: 1.375rem;
}

h6,
.h6 {
  font-size: 1.1rem;
}

.lead,
.blogpost__body > p:first-of-type:first-child {
  font-size: 1.375rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled,
.homepage-preview-buttons,
.widget_categories ul,
.widget_tag_cloud ul,
.module--posts-branch .branch-posts,
.module--magazine-listical .module__body,
.comment-list,
.direct-branch__content ul {
  padding-left: 0;
  list-style: none;
}

.list-inline,
.sharebar,
.module--card .post-categories,
.module--event .module__body .event-details {
  padding-left: 0;
  list-style: none;
}

.list-inline-item,
.sharebar li,
.module--card .post-categories li,
.module--event .module__body .event-details__item {
  display: inline-block;
}

.list-inline-item:not(:last-child),
.sharebar li:not(:last-child),
.module--card .post-categories li:not(:last-child),
.module--event .module__body .event-details__item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

.img-fluid,
.wp-caption img {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

.figure,
.wp-caption {
  display: inline-block;
}

.figure-img,
.wp-caption img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption,
.wp-caption-text {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.branch-header .infobox-holder,
.branch-header .slide__content,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .branch-header .infobox-holder,
  .branch-header .slide__content,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .branch-header .infobox-holder,
  .branch-header .slide__content,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .branch-header .infobox-holder,
  .branch-header .slide__content,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .branch-header .infobox-holder,
  .branch-header .slide__content,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

.row,
.homepage-preview-buttons,
.module--event > a,
.module--event > .event__holder,
.register-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.module--event .module__header,
.col-4,
.module--employeeslider .employee__thumbnail,
.col-5,
.col-6,
.col-7,
.col-8,
.module--employeeslider .employee__info,
.col-9,
.module--event .module__body,
.col-10,
.col-11,
.col-12,
.register-nav .nav-item,
.register-nav .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .register-nav li,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.module--employeeslider.employees-small .employee__thumbnail,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.homepage-preview-buttons li,
.district-events .event-wrapper,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.module--employeeslider.employees-small .employee__info,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3,
.module--event .module__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4,
.module--employeeslider .employee__thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8,
.module--employeeslider .employee__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9,
.module--event .module__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12,
.register-nav .nav-item,
.register-nav .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .register-nav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last,
.blog.home-data .sidebar,
.archive.category .sidebar {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2,
  .module--employeeslider.employees-small .employee__thumbnail,
  .module--event .module__header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3,
  .register-nav .nav-item,
  .register-nav .sitewide-footer .footer__nav li,
  .sitewide-footer .footer__nav .register-nav li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6,
  .homepage-preview-buttons li,
  .district-events .event-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10,
  .module--employeeslider.employees-small .employee__info,
  .module--event .module__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #343a40;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #343a40;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #fab8b8;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #f67a7a;
}

.table-hover .table-primary:hover {
  background-color: #f8a0a0;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #f8a0a0;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #f1f3f5;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #e6e9ec;
}

.table-hover .table-secondary:hover {
  background-color: #e2e6ea;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #e2e6ea;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #b8f0b8;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #7ae47a;
}

.table-hover .table-success:hover {
  background-color: #a3eca3;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #a3eca3;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bce2e2;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #82caca;
}

.table-hover .table-info:hover {
  background-color: #aadada;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #aadada;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffffb8;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffff7a;
}

.table-hover .table-warning:hover {
  background-color: #ffff9f;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffff9f;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #fab8b8;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #f67a7a;
}

.table-hover .table-danger:hover {
  background-color: #f8a0a0;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f8a0a0;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #f9fafb;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #f4f5f7;
}

.table-hover .table-light:hover {
  background-color: #eaedf1;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #eaedf1;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-white,
.table-white > th,
.table-white > td {
  background-color: white;
}

.table-white th,
.table-white td,
.table-white thead th,
.table-white tbody + tbody {
  border-color: white;
}

.table-hover .table-white:hover {
  background-color: #f2f2f2;
}

.table-hover .table-white:hover > td,
.table-hover .table-white:hover > th {
  background-color: #f2f2f2;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control,
.sidebar input[type="text"][class*="facet"],
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.facetwp-sort-select,
.search-form .search-field,
.facetwp-dropdown,
.fs-label,
.facetwp-autocomplete,
.community-login-form p input:not(#rememberme),
.frm_forms input,
.frm_forms textarea,
.frm_forms select,
.facetwp-facet-branches_archiv input,
.local-facets .facetwp-type-search .facetwp-search-wrap input,
.arts-facets .facetwp-type-search .facetwp-search-wrap input {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control,
  .sidebar input[type="text"][class*="facet"],
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea,
  .facetwp-sort-select,
  .search-form .search-field,
  .facetwp-dropdown,
  .fs-label,
  .facetwp-autocomplete,
  .community-login-form p input:not(#rememberme),
  .frm_forms input,
  .frm_forms textarea,
  .frm_forms select,
  .facetwp-facet-branches_archiv input,
  .local-facets .facetwp-type-search .facetwp-search-wrap input,
  .arts-facets .facetwp-type-search .facetwp-search-wrap input {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand,
.sidebar input[class*="facet"][type="text"]::-ms-expand,
.comment-form input[type="text"]::-ms-expand,
.comment-form input[type="email"]::-ms-expand,
.comment-form input[type="url"]::-ms-expand,
.comment-form textarea::-ms-expand,
.facetwp-sort-select::-ms-expand,
.search-form .search-field::-ms-expand,
.facetwp-dropdown::-ms-expand,
.fs-label::-ms-expand,
.facetwp-autocomplete::-ms-expand,
.community-login-form p input:not(#rememberme)::-ms-expand,
.frm_forms input::-ms-expand,
.frm_forms textarea::-ms-expand,
.frm_forms select::-ms-expand,
.facetwp-facet-branches_archiv input::-ms-expand,
.local-facets .facetwp-type-search .facetwp-search-wrap input::-ms-expand,
.arts-facets .facetwp-type-search .facetwp-search-wrap input::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus,
.sidebar input:focus[type="text"][class*="facet"],
.comment-form input:focus[type="text"],
.comment-form input:focus[type="email"],
.comment-form input:focus[type="url"],
.comment-form textarea:focus,
.facetwp-sort-select:focus,
.search-form .search-field:focus,
.facetwp-dropdown:focus,
.fs-label:focus,
.facetwp-autocomplete:focus,
.community-login-form p input:focus:not(#rememberme),
.frm_forms input:focus,
.frm_forms textarea:focus,
.frm_forms select:focus,
.facetwp-facet-branches_archiv input:focus,
.local-facets .facetwp-type-search .facetwp-search-wrap input:focus,
.arts-facets .facetwp-type-search .facetwp-search-wrap input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #ff6f6f;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.form-control::-webkit-input-placeholder,
.sidebar input[class*="facet"][type="text"]::-webkit-input-placeholder,
.comment-form input[type="text"]::-webkit-input-placeholder,
.comment-form input[type="email"]::-webkit-input-placeholder,
.comment-form input[type="url"]::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder,
.facetwp-sort-select::-webkit-input-placeholder,
.search-form .search-field::-webkit-input-placeholder,
.facetwp-dropdown::-webkit-input-placeholder,
.fs-label::-webkit-input-placeholder,
.facetwp-autocomplete::-webkit-input-placeholder,
.community-login-form p input:not(#rememberme)::-webkit-input-placeholder,
.frm_forms input::-webkit-input-placeholder,
.frm_forms textarea::-webkit-input-placeholder,
.frm_forms select::-webkit-input-placeholder,
.facetwp-facet-branches_archiv input::-webkit-input-placeholder,
.local-facets .facetwp-type-search .facetwp-search-wrap input::-webkit-input-placeholder,
.arts-facets .facetwp-type-search .facetwp-search-wrap input::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder,
.sidebar input[class*="facet"][type="text"]::-moz-placeholder,
.comment-form input[type="text"]::-moz-placeholder,
.comment-form input[type="email"]::-moz-placeholder,
.comment-form input[type="url"]::-moz-placeholder,
.comment-form textarea::-moz-placeholder,
.facetwp-sort-select::-moz-placeholder,
.search-form .search-field::-moz-placeholder,
.facetwp-dropdown::-moz-placeholder,
.fs-label::-moz-placeholder,
.facetwp-autocomplete::-moz-placeholder,
.community-login-form p input:not(#rememberme)::-moz-placeholder,
.frm_forms input::-moz-placeholder,
.frm_forms textarea::-moz-placeholder,
.frm_forms select::-moz-placeholder,
.facetwp-facet-branches_archiv input::-moz-placeholder,
.local-facets .facetwp-type-search .facetwp-search-wrap input::-moz-placeholder,
.arts-facets .facetwp-type-search .facetwp-search-wrap input::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder,
.sidebar input[class*="facet"][type="text"]::-ms-input-placeholder,
.comment-form input[type="text"]::-ms-input-placeholder,
.comment-form input[type="email"]::-ms-input-placeholder,
.comment-form input[type="url"]::-ms-input-placeholder,
.comment-form textarea::-ms-input-placeholder,
.facetwp-sort-select::-ms-input-placeholder,
.search-form .search-field::-ms-input-placeholder,
.facetwp-dropdown::-ms-input-placeholder,
.fs-label::-ms-input-placeholder,
.facetwp-autocomplete::-ms-input-placeholder,
.community-login-form p input:not(#rememberme)::-ms-input-placeholder,
.frm_forms input::-ms-input-placeholder,
.frm_forms textarea::-ms-input-placeholder,
.frm_forms select::-ms-input-placeholder,
.facetwp-facet-branches_archiv input::-ms-input-placeholder,
.local-facets .facetwp-type-search .facetwp-search-wrap input::-ms-input-placeholder,
.arts-facets .facetwp-type-search .facetwp-search-wrap input::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder,
.sidebar input[class*="facet"][type="text"]::placeholder,
.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder,
.facetwp-sort-select::placeholder,
.search-form .search-field::placeholder,
.facetwp-dropdown::placeholder,
.fs-label::placeholder,
.facetwp-autocomplete::placeholder,
.community-login-form p input:not(#rememberme)::placeholder,
.frm_forms input::placeholder,
.frm_forms textarea::placeholder,
.frm_forms select::placeholder,
.facetwp-facet-branches_archiv input::placeholder,
.local-facets .facetwp-type-search .facetwp-search-wrap input::placeholder,
.arts-facets .facetwp-type-search .facetwp-search-wrap input::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.sidebar input:disabled[type="text"][class*="facet"],
.comment-form input:disabled[type="text"],
.comment-form input:disabled[type="email"],
.comment-form input:disabled[type="url"],
.comment-form textarea:disabled,
.facetwp-sort-select:disabled,
.search-form .search-field:disabled,
.facetwp-dropdown:disabled,
.fs-label:disabled,
.facetwp-autocomplete:disabled,
.community-login-form p input:disabled:not(#rememberme),
.frm_forms input:disabled,
.frm_forms textarea:disabled,
.frm_forms select:disabled,
.facetwp-facet-branches_archiv input:disabled,
.local-facets .facetwp-type-search .facetwp-search-wrap input:disabled,
.arts-facets .facetwp-type-search .facetwp-search-wrap input:disabled,
.form-control[readonly],
.sidebar input[readonly][type="text"][class*="facet"],
.comment-form input[readonly][type="text"],
.comment-form input[readonly][type="email"],
.comment-form input[readonly][type="url"],
.comment-form textarea[readonly],
.facetwp-sort-select[readonly],
.search-form .search-field[readonly],
.facetwp-dropdown[readonly],
.fs-label[readonly],
.facetwp-autocomplete[readonly],
.community-login-form p input[readonly]:not(#rememberme),
.frm_forms input[readonly],
.frm_forms textarea[readonly],
.frm_forms select[readonly],
.facetwp-facet-branches_archiv input[readonly],
.local-facets .facetwp-type-search .facetwp-search-wrap input[readonly],
.arts-facets .facetwp-type-search .facetwp-search-wrap input[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type="date"].form-control,
.sidebar input[type="date"][type="text"][class*="facet"],
.comment-form input[type="date"][type="text"],
.comment-form input[type="date"][type="email"],
.comment-form input[type="date"][type="url"],
input.facetwp-sort-select[type="date"],
.search-form input.search-field[type="date"],
input.facetwp-dropdown[type="date"],
input.fs-label[type="date"],
input.facetwp-autocomplete[type="date"],
.community-login-form p input[type="date"]:not(#rememberme),
.frm_forms input[type="date"],
.facetwp-facet-branches_archiv input[type="date"],
.local-facets .facetwp-type-search .facetwp-search-wrap input[type="date"],
.arts-facets .facetwp-type-search .facetwp-search-wrap input[type="date"],
input[type="time"].form-control,
.sidebar input[type="time"][type="text"][class*="facet"],
.comment-form input[type="time"][type="text"],
.comment-form input[type="time"][type="email"],
.comment-form input[type="time"][type="url"],
input.facetwp-sort-select[type="time"],
.search-form input.search-field[type="time"],
input.facetwp-dropdown[type="time"],
input.fs-label[type="time"],
input.facetwp-autocomplete[type="time"],
.community-login-form p input[type="time"]:not(#rememberme),
.frm_forms input[type="time"],
.facetwp-facet-branches_archiv input[type="time"],
.local-facets .facetwp-type-search .facetwp-search-wrap input[type="time"],
.arts-facets .facetwp-type-search .facetwp-search-wrap input[type="time"],
input[type="datetime-local"].form-control,
.sidebar input[type="datetime-local"][type="text"][class*="facet"],
.comment-form input[type="datetime-local"][type="text"],
.comment-form input[type="datetime-local"][type="email"],
.comment-form input[type="datetime-local"][type="url"],
input.facetwp-sort-select[type="datetime-local"],
.search-form input.search-field[type="datetime-local"],
input.facetwp-dropdown[type="datetime-local"],
input.fs-label[type="datetime-local"],
input.facetwp-autocomplete[type="datetime-local"],
.community-login-form p input[type="datetime-local"]:not(#rememberme),
.frm_forms input[type="datetime-local"],
.facetwp-facet-branches_archiv input[type="datetime-local"],
.local-facets .facetwp-type-search .facetwp-search-wrap input[type="datetime-local"],
.arts-facets .facetwp-type-search .facetwp-search-wrap input[type="datetime-local"],
input[type="month"].form-control,
.sidebar input[type="month"][type="text"][class*="facet"],
.comment-form input[type="month"][type="text"],
.comment-form input[type="month"][type="email"],
.comment-form input[type="month"][type="url"],
input.facetwp-sort-select[type="month"],
.search-form input.search-field[type="month"],
input.facetwp-dropdown[type="month"],
input.fs-label[type="month"],
input.facetwp-autocomplete[type="month"],
.community-login-form p input[type="month"]:not(#rememberme),
.frm_forms input[type="month"],
.facetwp-facet-branches_archiv input[type="month"],
.local-facets .facetwp-type-search .facetwp-search-wrap input[type="month"],
.arts-facets .facetwp-type-search .facetwp-search-wrap input[type="month"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring,
select.facetwp-sort-select:-moz-focusring,
.search-form select.search-field:-moz-focusring,
select.facetwp-dropdown:-moz-focusring,
select.fs-label:-moz-focusring,
select.facetwp-autocomplete:-moz-focusring,
.frm_forms select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value,
select.facetwp-sort-select:focus::-ms-value,
.search-form select.search-field:focus::-ms-value,
select.facetwp-dropdown:focus::-ms-value,
select.fs-label:focus::-ms-value,
select.facetwp-autocomplete:focus::-ms-value,
.frm_forms select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.375rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.9625rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #343a40;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg,
.facetwp-facet-branches_archiv input.form-control-plaintext {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.9625rem;
  line-height: 1.5;
  border-radius: 0;
}

.form-control-lg,
.facetwp-facet-branches_archiv input {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.375rem;
  line-height: 1.5;
  border-radius: 0;
}

select.form-control[size],
select.facetwp-sort-select[size],
.search-form select.search-field[size],
select.facetwp-dropdown[size],
select.fs-label[size],
select.facetwp-autocomplete[size],
.frm_forms select[size],
select.form-control[multiple],
select.facetwp-sort-select[multiple],
.search-form select.search-field[multiple],
select.facetwp-dropdown[multiple],
select.fs-label[multiple],
select.facetwp-autocomplete[multiple],
.frm_forms select[multiple] {
  height: auto;
}

textarea.form-control,
.comment-form textarea,
textarea.facetwp-sort-select,
.search-form textarea.search-field,
textarea.facetwp-dropdown,
textarea.fs-label,
textarea.facetwp-autocomplete,
.frm_forms textarea {
  height: auto;
}

.form-group,
.comment-form p,
.search-form label,
.facetwp-sort,
.community-login-form p {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #00CB00;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.9625rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(0, 203, 0, 0.9);
  border-radius: 5px;
}

.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.was-validated .sidebar input:valid[type="text"][class*="facet"],
.sidebar .was-validated input:valid[type="text"][class*="facet"],
.was-validated .comment-form input:valid[type="text"],
.comment-form .was-validated input:valid[type="text"],
.was-validated .comment-form input:valid[type="email"],
.comment-form .was-validated input:valid[type="email"],
.was-validated .comment-form input:valid[type="url"],
.comment-form .was-validated input:valid[type="url"],
.was-validated .comment-form textarea:valid,
.comment-form .was-validated textarea:valid,
.was-validated .facetwp-sort-select:valid,
.was-validated .search-form .search-field:valid,
.search-form .was-validated .search-field:valid,
.was-validated .facetwp-dropdown:valid,
.was-validated .fs-label:valid,
.was-validated .facetwp-autocomplete:valid,
.was-validated .community-login-form p input:valid:not(#rememberme),
.community-login-form p .was-validated input:valid:not(#rememberme),
.was-validated .frm_forms input:valid,
.frm_forms .was-validated input:valid,
.was-validated .frm_forms textarea:valid,
.frm_forms .was-validated textarea:valid,
.was-validated .frm_forms select:valid,
.frm_forms .was-validated select:valid,
.was-validated .facetwp-facet-branches_archiv input:valid,
.facetwp-facet-branches_archiv .was-validated input:valid,
.was-validated .local-facets .facetwp-type-search .facetwp-search-wrap input:valid,
.local-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:valid,
.was-validated .arts-facets .facetwp-type-search .facetwp-search-wrap input:valid,
.arts-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:valid,
.form-control.is-valid,
.sidebar input.is-valid[type="text"][class*="facet"],
.comment-form input.is-valid[type="text"],
.comment-form input.is-valid[type="email"],
.comment-form input.is-valid[type="url"],
.comment-form textarea.is-valid,
.is-valid.facetwp-sort-select,
.search-form .is-valid.search-field,
.is-valid.facetwp-dropdown,
.is-valid.fs-label,
.is-valid.facetwp-autocomplete,
.community-login-form p input.is-valid:not(#rememberme),
.frm_forms input.is-valid,
.frm_forms textarea.is-valid,
.frm_forms select.is-valid,
.facetwp-facet-branches_archiv input.is-valid,
.local-facets .facetwp-type-search .facetwp-search-wrap input.is-valid,
.arts-facets .facetwp-type-search .facetwp-search-wrap input.is-valid {
  border-color: #00CB00;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2300CB00' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.was-validated .sidebar input:valid:focus[type="text"][class*="facet"],
.sidebar .was-validated input:valid:focus[type="text"][class*="facet"],
.was-validated .comment-form input:valid:focus[type="text"],
.comment-form .was-validated input:valid:focus[type="text"],
.was-validated .comment-form input:valid:focus[type="email"],
.comment-form .was-validated input:valid:focus[type="email"],
.was-validated .comment-form input:valid:focus[type="url"],
.comment-form .was-validated input:valid:focus[type="url"],
.was-validated .comment-form textarea:valid:focus,
.comment-form .was-validated textarea:valid:focus,
.was-validated .facetwp-sort-select:valid:focus,
.was-validated .search-form .search-field:valid:focus,
.search-form .was-validated .search-field:valid:focus,
.was-validated .facetwp-dropdown:valid:focus,
.was-validated .fs-label:valid:focus,
.was-validated .facetwp-autocomplete:valid:focus,
.was-validated .community-login-form p input:valid:focus:not(#rememberme),
.community-login-form p .was-validated input:valid:focus:not(#rememberme),
.was-validated .frm_forms input:valid:focus,
.frm_forms .was-validated input:valid:focus,
.was-validated .frm_forms textarea:valid:focus,
.frm_forms .was-validated textarea:valid:focus,
.was-validated .frm_forms select:valid:focus,
.frm_forms .was-validated select:valid:focus,
.was-validated .facetwp-facet-branches_archiv input:valid:focus,
.facetwp-facet-branches_archiv .was-validated input:valid:focus,
.was-validated .local-facets .facetwp-type-search .facetwp-search-wrap input:valid:focus,
.local-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:valid:focus,
.was-validated .arts-facets .facetwp-type-search .facetwp-search-wrap input:valid:focus,
.arts-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:valid:focus,
.form-control.is-valid:focus,
.sidebar input.is-valid:focus[type="text"][class*="facet"],
.comment-form input.is-valid:focus[type="text"],
.comment-form input.is-valid:focus[type="email"],
.comment-form input.is-valid:focus[type="url"],
.comment-form textarea.is-valid:focus,
.is-valid.facetwp-sort-select:focus,
.search-form .is-valid.search-field:focus,
.is-valid.facetwp-dropdown:focus,
.is-valid.fs-label:focus,
.is-valid.facetwp-autocomplete:focus,
.community-login-form p input.is-valid:focus:not(#rememberme),
.frm_forms input.is-valid:focus,
.frm_forms textarea.is-valid:focus,
.frm_forms select.is-valid:focus,
.facetwp-facet-branches_archiv input.is-valid:focus,
.local-facets .facetwp-type-search .facetwp-search-wrap input.is-valid:focus,
.arts-facets .facetwp-type-search .facetwp-search-wrap input.is-valid:focus {
  border-color: #00CB00;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
}

.was-validated select.form-control:valid,
.was-validated select.facetwp-sort-select:valid,
.was-validated .search-form select.search-field:valid,
.search-form .was-validated select.search-field:valid,
.was-validated select.facetwp-dropdown:valid,
.was-validated select.fs-label:valid,
.was-validated select.facetwp-autocomplete:valid,
.was-validated .frm_forms select:valid,
.frm_forms .was-validated select:valid,
select.form-control.is-valid,
select.is-valid.facetwp-sort-select,
.search-form select.is-valid.search-field,
select.is-valid.facetwp-dropdown,
select.is-valid.fs-label,
select.is-valid.facetwp-autocomplete,
.frm_forms select.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
.was-validated .comment-form textarea:valid,
.comment-form .was-validated textarea:valid,
.was-validated textarea.facetwp-sort-select:valid,
.was-validated .search-form textarea.search-field:valid,
.search-form .was-validated textarea.search-field:valid,
.was-validated textarea.facetwp-dropdown:valid,
.was-validated textarea.fs-label:valid,
.was-validated textarea.facetwp-autocomplete:valid,
.was-validated .frm_forms textarea:valid,
.frm_forms .was-validated textarea:valid,
textarea.form-control.is-valid,
.comment-form textarea.is-valid,
textarea.is-valid.facetwp-sort-select,
.search-form textarea.is-valid.search-field,
textarea.is-valid.facetwp-dropdown,
textarea.is-valid.fs-label,
textarea.is-valid.facetwp-autocomplete,
.frm_forms textarea.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #00CB00;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2300CB00' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #00CB00;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #00CB00;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #00CB00;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #00CB00;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #00fe00;
  background-color: #00fe00;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #00CB00;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #00CB00;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #00CB00;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #ee0000;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.9625rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(238, 0, 0, 0.9);
  border-radius: 5px;
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.was-validated .sidebar input:invalid[type="text"][class*="facet"],
.sidebar .was-validated input:invalid[type="text"][class*="facet"],
.was-validated .comment-form input:invalid[type="text"],
.comment-form .was-validated input:invalid[type="text"],
.was-validated .comment-form input:invalid[type="email"],
.comment-form .was-validated input:invalid[type="email"],
.was-validated .comment-form input:invalid[type="url"],
.comment-form .was-validated input:invalid[type="url"],
.was-validated .comment-form textarea:invalid,
.comment-form .was-validated textarea:invalid,
.was-validated .facetwp-sort-select:invalid,
.was-validated .search-form .search-field:invalid,
.search-form .was-validated .search-field:invalid,
.was-validated .facetwp-dropdown:invalid,
.was-validated .fs-label:invalid,
.was-validated .facetwp-autocomplete:invalid,
.was-validated .community-login-form p input:invalid:not(#rememberme),
.community-login-form p .was-validated input:invalid:not(#rememberme),
.was-validated .frm_forms input:invalid,
.frm_forms .was-validated input:invalid,
.was-validated .frm_forms textarea:invalid,
.frm_forms .was-validated textarea:invalid,
.was-validated .frm_forms select:invalid,
.frm_forms .was-validated select:invalid,
.was-validated .facetwp-facet-branches_archiv input:invalid,
.facetwp-facet-branches_archiv .was-validated input:invalid,
.was-validated .local-facets .facetwp-type-search .facetwp-search-wrap input:invalid,
.local-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:invalid,
.was-validated .arts-facets .facetwp-type-search .facetwp-search-wrap input:invalid,
.arts-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:invalid,
.form-control.is-invalid,
.sidebar input.is-invalid[type="text"][class*="facet"],
.comment-form input.is-invalid[type="text"],
.comment-form input.is-invalid[type="email"],
.comment-form input.is-invalid[type="url"],
.comment-form textarea.is-invalid,
.is-invalid.facetwp-sort-select,
.search-form .is-invalid.search-field,
.is-invalid.facetwp-dropdown,
.is-invalid.fs-label,
.is-invalid.facetwp-autocomplete,
.community-login-form p input.is-invalid:not(#rememberme),
.frm_forms input.is-invalid,
.frm_forms textarea.is-invalid,
.frm_forms select.is-invalid,
.facetwp-facet-branches_archiv input.is-invalid,
.local-facets .facetwp-type-search .facetwp-search-wrap input.is-invalid,
.arts-facets .facetwp-type-search .facetwp-search-wrap input.is-invalid {
  border-color: #ee0000;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ee0000' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ee0000' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.was-validated .sidebar input:invalid:focus[type="text"][class*="facet"],
.sidebar .was-validated input:invalid:focus[type="text"][class*="facet"],
.was-validated .comment-form input:invalid:focus[type="text"],
.comment-form .was-validated input:invalid:focus[type="text"],
.was-validated .comment-form input:invalid:focus[type="email"],
.comment-form .was-validated input:invalid:focus[type="email"],
.was-validated .comment-form input:invalid:focus[type="url"],
.comment-form .was-validated input:invalid:focus[type="url"],
.was-validated .comment-form textarea:invalid:focus,
.comment-form .was-validated textarea:invalid:focus,
.was-validated .facetwp-sort-select:invalid:focus,
.was-validated .search-form .search-field:invalid:focus,
.search-form .was-validated .search-field:invalid:focus,
.was-validated .facetwp-dropdown:invalid:focus,
.was-validated .fs-label:invalid:focus,
.was-validated .facetwp-autocomplete:invalid:focus,
.was-validated .community-login-form p input:invalid:focus:not(#rememberme),
.community-login-form p .was-validated input:invalid:focus:not(#rememberme),
.was-validated .frm_forms input:invalid:focus,
.frm_forms .was-validated input:invalid:focus,
.was-validated .frm_forms textarea:invalid:focus,
.frm_forms .was-validated textarea:invalid:focus,
.was-validated .frm_forms select:invalid:focus,
.frm_forms .was-validated select:invalid:focus,
.was-validated .facetwp-facet-branches_archiv input:invalid:focus,
.facetwp-facet-branches_archiv .was-validated input:invalid:focus,
.was-validated .local-facets .facetwp-type-search .facetwp-search-wrap input:invalid:focus,
.local-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:invalid:focus,
.was-validated .arts-facets .facetwp-type-search .facetwp-search-wrap input:invalid:focus,
.arts-facets .facetwp-type-search .facetwp-search-wrap .was-validated input:invalid:focus,
.form-control.is-invalid:focus,
.sidebar input.is-invalid:focus[type="text"][class*="facet"],
.comment-form input.is-invalid:focus[type="text"],
.comment-form input.is-invalid:focus[type="email"],
.comment-form input.is-invalid:focus[type="url"],
.comment-form textarea.is-invalid:focus,
.is-invalid.facetwp-sort-select:focus,
.search-form .is-invalid.search-field:focus,
.is-invalid.facetwp-dropdown:focus,
.is-invalid.fs-label:focus,
.is-invalid.facetwp-autocomplete:focus,
.community-login-form p input.is-invalid:focus:not(#rememberme),
.frm_forms input.is-invalid:focus,
.frm_forms textarea.is-invalid:focus,
.frm_forms select.is-invalid:focus,
.facetwp-facet-branches_archiv input.is-invalid:focus,
.local-facets .facetwp-type-search .facetwp-search-wrap input.is-invalid:focus,
.arts-facets .facetwp-type-search .facetwp-search-wrap input.is-invalid:focus {
  border-color: #ee0000;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.was-validated select.form-control:invalid,
.was-validated select.facetwp-sort-select:invalid,
.was-validated .search-form select.search-field:invalid,
.search-form .was-validated select.search-field:invalid,
.was-validated select.facetwp-dropdown:invalid,
.was-validated select.fs-label:invalid,
.was-validated select.facetwp-autocomplete:invalid,
.was-validated .frm_forms select:invalid,
.frm_forms .was-validated select:invalid,
select.form-control.is-invalid,
select.is-invalid.facetwp-sort-select,
.search-form select.is-invalid.search-field,
select.is-invalid.facetwp-dropdown,
select.is-invalid.fs-label,
select.is-invalid.facetwp-autocomplete,
.frm_forms select.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
.was-validated .comment-form textarea:invalid,
.comment-form .was-validated textarea:invalid,
.was-validated textarea.facetwp-sort-select:invalid,
.was-validated .search-form textarea.search-field:invalid,
.search-form .was-validated textarea.search-field:invalid,
.was-validated textarea.facetwp-dropdown:invalid,
.was-validated textarea.fs-label:invalid,
.was-validated textarea.facetwp-autocomplete:invalid,
.was-validated .frm_forms textarea:invalid,
.frm_forms .was-validated textarea:invalid,
textarea.form-control.is-invalid,
.comment-form textarea.is-invalid,
textarea.is-invalid.facetwp-sort-select,
.search-form textarea.is-invalid.search-field,
textarea.is-invalid.facetwp-dropdown,
textarea.is-invalid.fs-label,
textarea.is-invalid.facetwp-autocomplete,
.frm_forms textarea.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #ee0000;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ee0000' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ee0000' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #ee0000;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #ee0000;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #ee0000;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #ee0000;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #ff2222;
  background-color: #ff2222;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ee0000;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ee0000;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #ee0000;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.form-inline,
.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-inline .form-check,
.search-form .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label,
  .search-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group,
  .search-form .form-group,
  .form-inline .comment-form p,
  .comment-form .form-inline p,
  .search-form .comment-form p,
  .comment-form .search-form p,
  .form-inline .search-form label,
  .search-form .form-inline label,
  .search-form label,
  .form-inline .facetwp-sort,
  .search-form .facetwp-sort,
  .form-inline .community-login-form p,
  .community-login-form .form-inline p,
  .search-form .community-login-form p,
  .community-login-form .search-form p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control,
  .search-form .form-control,
  .form-inline .sidebar input[type="text"][class*="facet"],
  .sidebar .form-inline input[type="text"][class*="facet"],
  .search-form .sidebar input[type="text"][class*="facet"],
  .sidebar .search-form input[type="text"][class*="facet"],
  .form-inline .comment-form input[type="text"],
  .comment-form .form-inline input[type="text"],
  .search-form .comment-form input[type="text"],
  .comment-form .search-form input[type="text"],
  .form-inline .comment-form input[type="email"],
  .comment-form .form-inline input[type="email"],
  .search-form .comment-form input[type="email"],
  .comment-form .search-form input[type="email"],
  .form-inline .comment-form input[type="url"],
  .comment-form .form-inline input[type="url"],
  .search-form .comment-form input[type="url"],
  .comment-form .search-form input[type="url"],
  .form-inline .comment-form textarea,
  .comment-form .form-inline textarea,
  .search-form .comment-form textarea,
  .comment-form .search-form textarea,
  .form-inline .facetwp-sort-select,
  .search-form .facetwp-sort-select,
  .search-form .search-field,
  .form-inline .facetwp-dropdown,
  .search-form .facetwp-dropdown,
  .form-inline .fs-label,
  .search-form .fs-label,
  .form-inline .facetwp-autocomplete,
  .search-form .facetwp-autocomplete,
  .form-inline .community-login-form p input:not(#rememberme),
  .community-login-form p .form-inline input:not(#rememberme),
  .search-form .community-login-form p input:not(#rememberme),
  .community-login-form p .search-form input:not(#rememberme),
  .form-inline .frm_forms input,
  .frm_forms .form-inline input,
  .search-form .frm_forms input,
  .frm_forms .search-form input,
  .form-inline .frm_forms textarea,
  .frm_forms .form-inline textarea,
  .search-form .frm_forms textarea,
  .frm_forms .search-form textarea,
  .form-inline .frm_forms select,
  .frm_forms .form-inline select,
  .search-form .frm_forms select,
  .frm_forms .search-form select,
  .form-inline .facetwp-facet-branches_archiv input,
  .facetwp-facet-branches_archiv .form-inline input,
  .search-form .facetwp-facet-branches_archiv input,
  .facetwp-facet-branches_archiv .search-form input,
  .form-inline .local-facets .facetwp-type-search .facetwp-search-wrap input,
  .local-facets .facetwp-type-search .facetwp-search-wrap .form-inline input,
  .search-form .local-facets .facetwp-type-search .facetwp-search-wrap input,
  .local-facets .facetwp-type-search .facetwp-search-wrap .search-form input,
  .form-inline .arts-facets .facetwp-type-search .facetwp-search-wrap input,
  .arts-facets .facetwp-type-search .facetwp-search-wrap .form-inline input,
  .search-form .arts-facets .facetwp-type-search .facetwp-search-wrap input,
  .arts-facets .facetwp-type-search .facetwp-search-wrap .search-form input {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext,
  .search-form .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .search-form .input-group,
  .form-inline .custom-select,
  .search-form .custom-select {
    width: auto;
  }

  .form-inline .form-check,
  .search-form .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input,
  .search-form .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control,
  .search-form .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .form-inline .custom-control-label,
  .search-form .custom-control-label {
    margin-bottom: 0;
  }
}

.btn,
.homepage-preview-buttons a,
.sharebar-singlepost a,
.comment-form input[type="submit"],
.sidebar--post .facetwp-autocomplete-update,
.search-form .search-submit,
.community-login-form p .button,
.frm_forms .frm_button_submit {
  display: inline-block;
  font-weight: 400;
  color: #343a40;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 5px;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .homepage-preview-buttons a,
  .sharebar-singlepost a,
  .comment-form input[type="submit"],
  .sidebar--post .facetwp-autocomplete-update,
  .search-form .search-submit,
  .community-login-form p .button,
  .frm_forms .frm_button_submit {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn:hover,
.homepage-preview-buttons a:hover,
.sharebar-singlepost a:hover,
.comment-form input:hover[type="submit"],
.sidebar--post .facetwp-autocomplete-update:hover,
.search-form .search-submit:hover,
.community-login-form p .button:hover,
.frm_forms .frm_button_submit:hover {
  color: #343a40;
  text-decoration: none;
}

.btn:focus,
.homepage-preview-buttons a:focus,
.sharebar-singlepost a:focus,
.comment-form input:focus[type="submit"],
.sidebar--post .facetwp-autocomplete-update:focus,
.search-form .search-submit:focus,
.community-login-form p .button:focus,
.frm_forms .frm_button_submit:focus,
.btn.focus,
.homepage-preview-buttons a.focus,
.sharebar-singlepost a.focus,
.comment-form input.focus[type="submit"],
.sidebar--post .focus.facetwp-autocomplete-update,
.search-form .focus.search-submit,
.community-login-form p .focus.button,
.frm_forms .focus.frm_button_submit {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.btn.disabled,
.homepage-preview-buttons a.disabled,
.sharebar-singlepost a.disabled,
.comment-form input.disabled[type="submit"],
.sidebar--post .disabled.facetwp-autocomplete-update,
.search-form .disabled.search-submit,
.community-login-form p .disabled.button,
.frm_forms .disabled.frm_button_submit,
.btn:disabled,
.homepage-preview-buttons a:disabled,
.sharebar-singlepost a:disabled,
.comment-form input:disabled[type="submit"],
.sidebar--post .facetwp-autocomplete-update:disabled,
.search-form .search-submit:disabled,
.community-login-form p .button:disabled,
.frm_forms .frm_button_submit:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled),
.homepage-preview-buttons a:not(:disabled):not(.disabled),
.sharebar-singlepost a:not(:disabled):not(.disabled),
.comment-form input:not(:disabled):not(.disabled)[type="submit"],
.sidebar--post .facetwp-autocomplete-update:not(:disabled):not(.disabled),
.search-form .search-submit:not(:disabled):not(.disabled),
.community-login-form p .button:not(:disabled):not(.disabled),
.frm_forms .frm_button_submit:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
.homepage-preview-buttons a.disabled,
.sharebar-singlepost a.disabled,
.sidebar--post a.disabled.facetwp-autocomplete-update,
.search-form a.disabled.search-submit,
.community-login-form p a.disabled.button,
.frm_forms a.disabled.frm_button_submit,
fieldset:disabled a.btn,
fieldset:disabled .homepage-preview-buttons a,
.homepage-preview-buttons fieldset:disabled a,
fieldset:disabled .sharebar-singlepost a,
.sharebar-singlepost fieldset:disabled a,
fieldset:disabled .sidebar--post a.facetwp-autocomplete-update,
.sidebar--post fieldset:disabled a.facetwp-autocomplete-update,
fieldset:disabled .search-form a.search-submit,
.search-form fieldset:disabled a.search-submit,
fieldset:disabled .community-login-form p a.button,
.community-login-form p fieldset:disabled a.button,
fieldset:disabled .frm_forms a.frm_button_submit,
.frm_forms fieldset:disabled a.frm_button_submit {
  pointer-events: none;
}

.btn-primary,
.homepage-preview-buttons a,
.frm_forms .frm_button_submit {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-primary:hover,
.homepage-preview-buttons a:hover,
.frm_forms .frm_button_submit:hover {
  color: #fff;
  background-color: #c80000;
  border-color: #bb0000;
}

.btn-primary:focus,
.homepage-preview-buttons a:focus,
.frm_forms .frm_button_submit:focus,
.btn-primary.focus,
.homepage-preview-buttons a.focus,
.frm_forms .focus.frm_button_submit {
  color: #fff;
  background-color: #c80000;
  border-color: #bb0000;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
}

.btn-primary.disabled,
.homepage-preview-buttons a.disabled,
.frm_forms .disabled.frm_button_submit,
.btn-primary:disabled,
.homepage-preview-buttons a:disabled,
.frm_forms .frm_button_submit:disabled {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-primary:not(:disabled):not(.disabled):active,
.homepage-preview-buttons a:not(:disabled):not(.disabled):active,
.frm_forms .frm_button_submit:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.homepage-preview-buttons a:not(:disabled):not(.disabled).active,
.frm_forms .frm_button_submit:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.homepage-preview-buttons .show > a.dropdown-toggle,
.frm_forms .show > .dropdown-toggle.frm_button_submit {
  color: #fff;
  background-color: #bb0000;
  border-color: #ae0000;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.homepage-preview-buttons a:not(:disabled):not(.disabled):active:focus,
.frm_forms .frm_button_submit:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.homepage-preview-buttons a:not(:disabled):not(.disabled).active:focus,
.frm_forms .frm_button_submit:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.homepage-preview-buttons .show > a.dropdown-toggle:focus,
.frm_forms .show > .dropdown-toggle.frm_button_submit:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
}

.btn-secondary,
.comment-form input[type="submit"],
.search-form .search-submit {
  color: #212529;
  background-color: #ced4da;
  border-color: #ced4da;
}

.btn-secondary:hover,
.comment-form input:hover[type="submit"],
.search-form .search-submit:hover {
  color: #212529;
  background-color: #b8c1ca;
  border-color: #b1bbc4;
}

.btn-secondary:focus,
.comment-form input:focus[type="submit"],
.search-form .search-submit:focus,
.btn-secondary.focus,
.comment-form input.focus[type="submit"],
.search-form .focus.search-submit {
  color: #212529;
  background-color: #b8c1ca;
  border-color: #b1bbc4;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
}

.btn-secondary.disabled,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.btn-secondary:disabled,
.comment-form input:disabled[type="submit"],
.search-form .search-submit:disabled {
  color: #212529;
  background-color: #ced4da;
  border-color: #ced4da;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.comment-form input:not(:disabled):not(.disabled):active[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.comment-form input:not(:disabled):not(.disabled).active[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle,
.comment-form .show > input.dropdown-toggle[type="submit"],
.search-form .show > .dropdown-toggle.search-submit {
  color: #212529;
  background-color: #b1bbc4;
  border-color: #aab4bf;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.comment-form input:not(:disabled):not(.disabled):active:focus[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.comment-form input:not(:disabled):not(.disabled).active:focus[type="submit"],
.search-form .search-submit:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus,
.comment-form .show > input.dropdown-toggle:focus[type="submit"],
.search-form .show > .dropdown-toggle.search-submit:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #00CB00;
  border-color: #00CB00;
}

.btn-success:hover {
  color: #fff;
  background-color: #00a500;
  border-color: #009800;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #00a500;
  border-color: #009800;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 211, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 211, 38, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #00CB00;
  border-color: #00CB00;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #009800;
  border-color: #008b00;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 211, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 211, 38, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #0f9999;
  border-color: #0f9999;
}

.btn-info:hover {
  color: #fff;
  background-color: #0c7676;
  border-color: #0a6b6b;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #0c7676;
  border-color: #0a6b6b;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 168, 168, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 168, 168, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #0f9999;
  border-color: #0f9999;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #0a6b6b;
  border-color: #095f5f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 168, 168, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 168, 168, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffff00;
  border-color: #ffff00;
}

.btn-warning:hover {
  color: #212529;
  background-color: #d9d900;
  border-color: #cccc00;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #d9d900;
  border-color: #cccc00;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 222, 6, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffff00;
  border-color: #ffff00;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #cccc00;
  border-color: #bfbf00;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 222, 6, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c80000;
  border-color: #bb0000;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c80000;
  border-color: #bb0000;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bb0000;
  border-color: #ae0000;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(241, 38, 38, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-light:hover {
  color: #212529;
  background-color: #d3d9df;
  border-color: #cbd3da;
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #d3d9df;
  border-color: #cbd3da;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(203, 206, 209, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(203, 206, 209, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #cbd3da;
  border-color: #c4ccd4;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(203, 206, 209, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(203, 206, 209, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-white {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
}

.btn-white:focus,
.btn-white.focus {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.btn-white.disabled,
.btn-white:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-white:not(:disabled):not(.disabled):active,
.btn-white:not(:disabled):not(.disabled).active,
.show > .btn-white.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #dfdfdf;
}

.btn-white:not(:disabled):not(.disabled):active:focus,
.btn-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-white.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.btn-outline-primary {
  color: #ee0000;
  border-color: #ee0000;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #ee0000;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
}

.btn-outline-secondary {
  color: #ced4da;
  border-color: #ced4da;
}

.btn-outline-secondary:hover {
  color: #212529;
  background-color: #ced4da;
  border-color: #ced4da;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #ced4da;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #ced4da;
  border-color: #ced4da;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
}

.btn-outline-success {
  color: #00CB00;
  border-color: #00CB00;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #00CB00;
  border-color: #00CB00;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #00CB00;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #00CB00;
  border-color: #00CB00;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.5);
}

.btn-outline-info {
  color: #0f9999;
  border-color: #0f9999;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #0f9999;
  border-color: #0f9999;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(15, 153, 153, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(15, 153, 153, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #0f9999;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #0f9999;
  border-color: #0f9999;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(15, 153, 153, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(15, 153, 153, 0.5);
}

.btn-outline-warning {
  color: #ffff00;
  border-color: #ffff00;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffff00;
  border-color: #ffff00;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffff00;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffff00;
  border-color: #ffff00;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.5);
}

.btn-outline-danger {
  color: #ee0000;
  border-color: #ee0000;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #ee0000;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
}

.btn-outline-light {
  color: #e9ecef;
  border-color: #e9ecef;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #e9ecef;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-white:focus,
.btn-outline-white.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-white.disabled,
.btn-outline-white:disabled {
  color: #fff;
  background-color: transparent;
}

.btn-outline-white:not(:disabled):not(.disabled):active,
.btn-outline-white:not(:disabled):not(.disabled).active,
.show > .btn-outline-white.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-white:not(:disabled):not(.disabled):active:focus,
.btn-outline-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-white.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #ee0000;
  text-decoration: none;
}

.btn-link:hover {
  color: #a20000;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn,
.homepage-preview-buttons .btn-group-lg > a,
.sharebar-singlepost .btn-group-lg > a,
.comment-form .btn-group-lg > input[type="submit"],
.sidebar--post .btn-group-lg > .facetwp-autocomplete-update,
.search-form .btn-group-lg > .search-submit,
.community-login-form p .btn-group-lg > .button,
.frm_forms .btn-group-lg > .frm_button_submit,
.homepage-preview-buttons a {
  padding: 0.5rem 1rem;
  font-size: 1.375rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm,
.btn-group-sm > .btn,
.homepage-preview-buttons .btn-group-sm > a,
.sharebar-singlepost .btn-group-sm > a,
.comment-form .btn-group-sm > input[type="submit"],
.sidebar--post .btn-group-sm > .facetwp-autocomplete-update,
.search-form .btn-group-sm > .search-submit,
.community-login-form p .btn-group-sm > .button,
.frm_forms .btn-group-sm > .frm_button_submit,
.sharebar-singlepost a {
  padding: 0.25rem 0.5rem;
  font-size: 0.9625rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block,
.homepage-preview-buttons a {
  display: block;
  width: 100%;
}

.btn-block + .btn-block,
.homepage-preview-buttons a + .btn-block,
.homepage-preview-buttons .btn-block + a,
.homepage-preview-buttons a + a {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  -o-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1.1rem;
  color: #343a40;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ee0000;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.9625rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.homepage-preview-buttons .btn-group > a,
.sharebar-singlepost .btn-group > a,
.comment-form .btn-group > input[type="submit"],
.sidebar--post .btn-group > .facetwp-autocomplete-update,
.search-form .btn-group > .search-submit,
.community-login-form p .btn-group > .button,
.frm_forms .btn-group > .frm_button_submit,
.btn-group-vertical > .btn,
.homepage-preview-buttons .btn-group-vertical > a,
.sharebar-singlepost .btn-group-vertical > a,
.comment-form .btn-group-vertical > input[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update,
.search-form .btn-group-vertical > .search-submit,
.community-login-form p .btn-group-vertical > .button,
.frm_forms .btn-group-vertical > .frm_button_submit {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.btn-group > .btn:hover,
.homepage-preview-buttons .btn-group > a:hover,
.sharebar-singlepost .btn-group > a:hover,
.comment-form .btn-group > input:hover[type="submit"],
.sidebar--post .btn-group > .facetwp-autocomplete-update:hover,
.search-form .btn-group > .search-submit:hover,
.community-login-form p .btn-group > .button:hover,
.frm_forms .btn-group > .frm_button_submit:hover,
.btn-group-vertical > .btn:hover,
.homepage-preview-buttons .btn-group-vertical > a:hover,
.sharebar-singlepost .btn-group-vertical > a:hover,
.comment-form .btn-group-vertical > input:hover[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update:hover,
.search-form .btn-group-vertical > .search-submit:hover,
.community-login-form p .btn-group-vertical > .button:hover,
.frm_forms .btn-group-vertical > .frm_button_submit:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.homepage-preview-buttons .btn-group > a:focus,
.sharebar-singlepost .btn-group > a:focus,
.comment-form .btn-group > input:focus[type="submit"],
.sidebar--post .btn-group > .facetwp-autocomplete-update:focus,
.search-form .btn-group > .search-submit:focus,
.community-login-form p .btn-group > .button:focus,
.frm_forms .btn-group > .frm_button_submit:focus,
.btn-group > .btn:active,
.homepage-preview-buttons .btn-group > a:active,
.sharebar-singlepost .btn-group > a:active,
.comment-form .btn-group > input:active[type="submit"],
.sidebar--post .btn-group > .facetwp-autocomplete-update:active,
.search-form .btn-group > .search-submit:active,
.community-login-form p .btn-group > .button:active,
.frm_forms .btn-group > .frm_button_submit:active,
.btn-group > .btn.active,
.homepage-preview-buttons .btn-group > a.active,
.sharebar-singlepost .btn-group > a.active,
.comment-form .btn-group > input.active[type="submit"],
.sidebar--post .btn-group > .active.facetwp-autocomplete-update,
.search-form .btn-group > .active.search-submit,
.community-login-form p .btn-group > .active.button,
.frm_forms .btn-group > .active.frm_button_submit,
.btn-group-vertical > .btn:focus,
.homepage-preview-buttons .btn-group-vertical > a:focus,
.sharebar-singlepost .btn-group-vertical > a:focus,
.comment-form .btn-group-vertical > input:focus[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update:focus,
.search-form .btn-group-vertical > .search-submit:focus,
.community-login-form p .btn-group-vertical > .button:focus,
.frm_forms .btn-group-vertical > .frm_button_submit:focus,
.btn-group-vertical > .btn:active,
.homepage-preview-buttons .btn-group-vertical > a:active,
.sharebar-singlepost .btn-group-vertical > a:active,
.comment-form .btn-group-vertical > input:active[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update:active,
.search-form .btn-group-vertical > .search-submit:active,
.community-login-form p .btn-group-vertical > .button:active,
.frm_forms .btn-group-vertical > .frm_button_submit:active,
.btn-group-vertical > .btn.active,
.homepage-preview-buttons .btn-group-vertical > a.active,
.sharebar-singlepost .btn-group-vertical > a.active,
.comment-form .btn-group-vertical > input.active[type="submit"],
.sidebar--post .btn-group-vertical > .active.facetwp-autocomplete-update,
.search-form .btn-group-vertical > .active.search-submit,
.community-login-form p .btn-group-vertical > .active.button,
.frm_forms .btn-group-vertical > .active.frm_button_submit {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.homepage-preview-buttons .btn-group > a:not(:first-child),
.sharebar-singlepost .btn-group > a:not(:first-child),
.comment-form .btn-group > input:not(:first-child)[type="submit"],
.sidebar--post .btn-group > .facetwp-autocomplete-update:not(:first-child),
.search-form .btn-group > .search-submit:not(:first-child),
.community-login-form p .btn-group > .button:not(:first-child),
.frm_forms .btn-group > .frm_button_submit:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.homepage-preview-buttons .btn-group > a:not(:last-child):not(.dropdown-toggle),
.sharebar-singlepost .btn-group > a:not(:last-child):not(.dropdown-toggle),
.comment-form .btn-group > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.sidebar--post .btn-group > .facetwp-autocomplete-update:not(:last-child):not(.dropdown-toggle),
.search-form .btn-group > .search-submit:not(:last-child):not(.dropdown-toggle),
.community-login-form p .btn-group > .button:not(:last-child):not(.dropdown-toggle),
.frm_forms .btn-group > .frm_button_submit:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.homepage-preview-buttons .btn-group > .btn-group:not(:last-child) > a,
.sharebar-singlepost .btn-group > .btn-group:not(:last-child) > a,
.comment-form .btn-group > .btn-group:not(:last-child) > input[type="submit"],
.sidebar--post .btn-group > .btn-group:not(:last-child) > .facetwp-autocomplete-update,
.search-form .btn-group > .btn-group:not(:last-child) > .search-submit,
.community-login-form p .btn-group > .btn-group:not(:last-child) > .button,
.frm_forms .btn-group > .btn-group:not(:last-child) > .frm_button_submit {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.homepage-preview-buttons .btn-group > a:not(:first-child),
.sharebar-singlepost .btn-group > a:not(:first-child),
.comment-form .btn-group > input:not(:first-child)[type="submit"],
.sidebar--post .btn-group > .facetwp-autocomplete-update:not(:first-child),
.search-form .btn-group > .search-submit:not(:first-child),
.community-login-form p .btn-group > .button:not(:first-child),
.frm_forms .btn-group > .frm_button_submit:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.homepage-preview-buttons .btn-group > .btn-group:not(:first-child) > a,
.sharebar-singlepost .btn-group > .btn-group:not(:first-child) > a,
.comment-form .btn-group > .btn-group:not(:first-child) > input[type="submit"],
.sidebar--post .btn-group > .btn-group:not(:first-child) > .facetwp-autocomplete-update,
.search-form .btn-group > .btn-group:not(:first-child) > .search-submit,
.community-login-form p .btn-group > .btn-group:not(:first-child) > .button,
.frm_forms .btn-group > .btn-group:not(:first-child) > .frm_button_submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split,
.homepage-preview-buttons .btn-group-sm > a + .dropdown-toggle-split,
.sharebar-singlepost .btn-group-sm > a + .dropdown-toggle-split,
.comment-form .btn-group-sm > input[type="submit"] + .dropdown-toggle-split,
.sidebar--post .btn-group-sm > .facetwp-autocomplete-update + .dropdown-toggle-split,
.search-form .btn-group-sm > .search-submit + .dropdown-toggle-split,
.community-login-form p .btn-group-sm > .button + .dropdown-toggle-split,
.frm_forms .btn-group-sm > .frm_button_submit + .dropdown-toggle-split,
.sharebar-singlepost a + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split,
.homepage-preview-buttons .btn-group-lg > a + .dropdown-toggle-split,
.sharebar-singlepost .btn-group-lg > a + .dropdown-toggle-split,
.comment-form .btn-group-lg > input[type="submit"] + .dropdown-toggle-split,
.sidebar--post .btn-group-lg > .facetwp-autocomplete-update + .dropdown-toggle-split,
.search-form .btn-group-lg > .search-submit + .dropdown-toggle-split,
.community-login-form p .btn-group-lg > .button + .dropdown-toggle-split,
.frm_forms .btn-group-lg > .frm_button_submit + .dropdown-toggle-split,
.homepage-preview-buttons a + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-group-vertical > .btn,
.homepage-preview-buttons .btn-group-vertical > a,
.sharebar-singlepost .btn-group-vertical > a,
.comment-form .btn-group-vertical > input[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update,
.search-form .btn-group-vertical > .search-submit,
.community-login-form p .btn-group-vertical > .button,
.frm_forms .btn-group-vertical > .frm_button_submit,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.homepage-preview-buttons .btn-group-vertical > a:not(:first-child),
.sharebar-singlepost .btn-group-vertical > a:not(:first-child),
.comment-form .btn-group-vertical > input:not(:first-child)[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update:not(:first-child),
.search-form .btn-group-vertical > .search-submit:not(:first-child),
.community-login-form p .btn-group-vertical > .button:not(:first-child),
.frm_forms .btn-group-vertical > .frm_button_submit:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.homepage-preview-buttons .btn-group-vertical > a:not(:last-child):not(.dropdown-toggle),
.sharebar-singlepost .btn-group-vertical > a:not(:last-child):not(.dropdown-toggle),
.comment-form .btn-group-vertical > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update:not(:last-child):not(.dropdown-toggle),
.search-form .btn-group-vertical > .search-submit:not(:last-child):not(.dropdown-toggle),
.community-login-form p .btn-group-vertical > .button:not(:last-child):not(.dropdown-toggle),
.frm_forms .btn-group-vertical > .frm_button_submit:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.homepage-preview-buttons .btn-group-vertical > .btn-group:not(:last-child) > a,
.sharebar-singlepost .btn-group-vertical > .btn-group:not(:last-child) > a,
.comment-form .btn-group-vertical > .btn-group:not(:last-child) > input[type="submit"],
.sidebar--post .btn-group-vertical > .btn-group:not(:last-child) > .facetwp-autocomplete-update,
.search-form .btn-group-vertical > .btn-group:not(:last-child) > .search-submit,
.community-login-form p .btn-group-vertical > .btn-group:not(:last-child) > .button,
.frm_forms .btn-group-vertical > .btn-group:not(:last-child) > .frm_button_submit {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.homepage-preview-buttons .btn-group-vertical > a:not(:first-child),
.sharebar-singlepost .btn-group-vertical > a:not(:first-child),
.comment-form .btn-group-vertical > input:not(:first-child)[type="submit"],
.sidebar--post .btn-group-vertical > .facetwp-autocomplete-update:not(:first-child),
.search-form .btn-group-vertical > .search-submit:not(:first-child),
.community-login-form p .btn-group-vertical > .button:not(:first-child),
.frm_forms .btn-group-vertical > .frm_button_submit:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.homepage-preview-buttons .btn-group-vertical > .btn-group:not(:first-child) > a,
.sharebar-singlepost .btn-group-vertical > .btn-group:not(:first-child) > a,
.comment-form .btn-group-vertical > .btn-group:not(:first-child) > input[type="submit"],
.sidebar--post .btn-group-vertical > .btn-group:not(:first-child) > .facetwp-autocomplete-update,
.search-form .btn-group-vertical > .btn-group:not(:first-child) > .search-submit,
.community-login-form p .btn-group-vertical > .btn-group:not(:first-child) > .button,
.frm_forms .btn-group-vertical > .btn-group:not(:first-child) > .frm_button_submit {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.homepage-preview-buttons .btn-group-toggle > a,
.sharebar-singlepost .btn-group-toggle > a,
.comment-form .btn-group-toggle > input[type="submit"],
.sidebar--post .btn-group-toggle > .facetwp-autocomplete-update,
.search-form .btn-group-toggle > .search-submit,
.community-login-form p .btn-group-toggle > .button,
.frm_forms .btn-group-toggle > .frm_button_submit,
.btn-group-toggle > .btn-group > .btn,
.homepage-preview-buttons .btn-group-toggle > .btn-group > a,
.sharebar-singlepost .btn-group-toggle > .btn-group > a,
.comment-form .btn-group-toggle > .btn-group > input[type="submit"],
.sidebar--post .btn-group-toggle > .btn-group > .facetwp-autocomplete-update,
.search-form .btn-group-toggle > .btn-group > .search-submit,
.community-login-form p .btn-group-toggle > .btn-group > .button,
.frm_forms .btn-group-toggle > .btn-group > .frm_button_submit {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.homepage-preview-buttons .btn-group-toggle > a input[type="radio"],
.sharebar-singlepost .btn-group-toggle > a input[type="radio"],
.comment-form .btn-group-toggle > input[type="submit"] input[type="radio"],
.sidebar--post .btn-group-toggle > .facetwp-autocomplete-update input[type="radio"],
.search-form .btn-group-toggle > .search-submit input[type="radio"],
.community-login-form p .btn-group-toggle > .button input[type="radio"],
.frm_forms .btn-group-toggle > .frm_button_submit input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.homepage-preview-buttons .btn-group-toggle > a input[type="checkbox"],
.sharebar-singlepost .btn-group-toggle > a input[type="checkbox"],
.comment-form .btn-group-toggle > input[type="submit"] input[type="checkbox"],
.sidebar--post .btn-group-toggle > .facetwp-autocomplete-update input[type="checkbox"],
.search-form .btn-group-toggle > .search-submit input[type="checkbox"],
.community-login-form p .btn-group-toggle > .button input[type="checkbox"],
.frm_forms .btn-group-toggle > .frm_button_submit input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.homepage-preview-buttons .btn-group-toggle > .btn-group > a input[type="radio"],
.sharebar-singlepost .btn-group-toggle > .btn-group > a input[type="radio"],
.comment-form .btn-group-toggle > .btn-group > input[type="submit"] input[type="radio"],
.sidebar--post .btn-group-toggle > .btn-group > .facetwp-autocomplete-update input[type="radio"],
.search-form .btn-group-toggle > .btn-group > .search-submit input[type="radio"],
.community-login-form p .btn-group-toggle > .btn-group > .button input[type="radio"],
.frm_forms .btn-group-toggle > .btn-group > .frm_button_submit input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.homepage-preview-buttons .btn-group-toggle > .btn-group > a input[type="checkbox"],
.sharebar-singlepost .btn-group-toggle > .btn-group > a input[type="checkbox"],
.comment-form .btn-group-toggle > .btn-group > input[type="submit"] input[type="checkbox"],
.sidebar--post .btn-group-toggle > .btn-group > .facetwp-autocomplete-update input[type="checkbox"],
.search-form .btn-group-toggle > .btn-group > .search-submit input[type="checkbox"],
.community-login-form p .btn-group-toggle > .btn-group > .button input[type="checkbox"],
.frm_forms .btn-group-toggle > .btn-group > .frm_button_submit input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.sidebar .input-group > input[type="text"][class*="facet"],
.comment-form .input-group > input[type="text"],
.comment-form .input-group > input[type="email"],
.comment-form .input-group > input[type="url"],
.comment-form .input-group > textarea,
.input-group > .facetwp-sort-select,
.search-form .input-group > .search-field,
.input-group > .facetwp-dropdown,
.input-group > .fs-label,
.input-group > .facetwp-autocomplete,
.community-login-form p .input-group > input:not(#rememberme),
.frm_forms .input-group > input,
.frm_forms .input-group > textarea,
.frm_forms .input-group > select,
.facetwp-facet-branches_archiv .input-group > input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.sidebar .input-group > input[type="text"][class*="facet"] + .form-control,
.comment-form .input-group > input[type="text"] + .form-control,
.comment-form .input-group > input[type="email"] + .form-control,
.comment-form .input-group > input[type="url"] + .form-control,
.comment-form .input-group > textarea + .form-control,
.input-group > .facetwp-sort-select + .form-control,
.search-form .input-group > .search-field + .form-control,
.input-group > .facetwp-dropdown + .form-control,
.input-group > .fs-label + .form-control,
.input-group > .facetwp-autocomplete + .form-control,
.community-login-form p .input-group > input:not(#rememberme) + .form-control,
.frm_forms .input-group > input + .form-control,
.frm_forms .input-group > textarea + .form-control,
.frm_forms .input-group > select + .form-control,
.facetwp-facet-branches_archiv .input-group > input + .form-control,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .form-control,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .form-control,
.sidebar .input-group > .form-control + input[type="text"][class*="facet"],
.sidebar .input-group > input[type="text"][class*="facet"] + input[type="text"][class*="facet"],
.comment-form .sidebar .input-group > input[type="text"] + input[type="text"][class*="facet"],
.sidebar .comment-form .input-group > input[type="text"] + input[type="text"][class*="facet"],
.comment-form .sidebar .input-group > input[type="email"] + input[type="text"][class*="facet"],
.sidebar .comment-form .input-group > input[type="email"] + input[type="text"][class*="facet"],
.comment-form .sidebar .input-group > input[type="url"] + input[type="text"][class*="facet"],
.sidebar .comment-form .input-group > input[type="url"] + input[type="text"][class*="facet"],
.comment-form .sidebar .input-group > textarea + input[type="text"][class*="facet"],
.sidebar .comment-form .input-group > textarea + input[type="text"][class*="facet"],
.sidebar .input-group > .facetwp-sort-select + input[type="text"][class*="facet"],
.search-form .sidebar .input-group > .search-field + input[type="text"][class*="facet"],
.sidebar .search-form .input-group > .search-field + input[type="text"][class*="facet"],
.sidebar .input-group > .facetwp-dropdown + input[type="text"][class*="facet"],
.sidebar .input-group > .fs-label + input[type="text"][class*="facet"],
.sidebar .input-group > .facetwp-autocomplete + input[type="text"][class*="facet"],
.community-login-form p .sidebar .input-group > input:not(#rememberme) + input[type="text"][class*="facet"],
.sidebar .community-login-form p .input-group > input:not(#rememberme) + input[type="text"][class*="facet"],
.frm_forms .sidebar .input-group > input + input[type="text"][class*="facet"],
.sidebar .frm_forms .input-group > input + input[type="text"][class*="facet"],
.frm_forms .sidebar .input-group > textarea + input[type="text"][class*="facet"],
.sidebar .frm_forms .input-group > textarea + input[type="text"][class*="facet"],
.frm_forms .sidebar .input-group > select + input[type="text"][class*="facet"],
.sidebar .frm_forms .input-group > select + input[type="text"][class*="facet"],
.facetwp-facet-branches_archiv .sidebar .input-group > input + input[type="text"][class*="facet"],
.sidebar .facetwp-facet-branches_archiv .input-group > input + input[type="text"][class*="facet"],
.local-facets .facetwp-type-search .facetwp-search-wrap .sidebar .input-group > input + input[type="text"][class*="facet"],
.sidebar .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="text"][class*="facet"],
.arts-facets .facetwp-type-search .facetwp-search-wrap .sidebar .input-group > input + input[type="text"][class*="facet"],
.sidebar .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="text"][class*="facet"],
.comment-form .input-group > .form-control + input[type="text"],
.sidebar .comment-form .input-group > input[type="text"][class*="facet"] + input[type="text"],
.comment-form .sidebar .input-group > input[type="text"][class*="facet"] + input[type="text"],
.comment-form .input-group > input[type="text"] + input[type="text"],
.comment-form .input-group > input[type="email"] + input[type="text"],
.comment-form .input-group > input[type="url"] + input[type="text"],
.comment-form .input-group > textarea + input[type="text"],
.comment-form .input-group > .facetwp-sort-select + input[type="text"],
.search-form .comment-form .input-group > .search-field + input[type="text"],
.comment-form .search-form .input-group > .search-field + input[type="text"],
.comment-form .input-group > .facetwp-dropdown + input[type="text"],
.comment-form .input-group > .fs-label + input[type="text"],
.comment-form .input-group > .facetwp-autocomplete + input[type="text"],
.community-login-form p .comment-form .input-group > input:not(#rememberme) + input[type="text"],
.comment-form .community-login-form p .input-group > input:not(#rememberme) + input[type="text"],
.frm_forms .comment-form .input-group > input + input[type="text"],
.comment-form .frm_forms .input-group > input + input[type="text"],
.frm_forms .comment-form .input-group > textarea + input[type="text"],
.comment-form .frm_forms .input-group > textarea + input[type="text"],
.frm_forms .comment-form .input-group > select + input[type="text"],
.comment-form .frm_forms .input-group > select + input[type="text"],
.facetwp-facet-branches_archiv .comment-form .input-group > input + input[type="text"],
.comment-form .facetwp-facet-branches_archiv .input-group > input + input[type="text"],
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + input[type="text"],
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="text"],
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + input[type="text"],
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="text"],
.comment-form .input-group > .form-control + input[type="email"],
.sidebar .comment-form .input-group > input[type="text"][class*="facet"] + input[type="email"],
.comment-form .sidebar .input-group > input[type="text"][class*="facet"] + input[type="email"],
.comment-form .input-group > input[type="text"] + input[type="email"],
.comment-form .input-group > input[type="email"] + input[type="email"],
.comment-form .input-group > input[type="url"] + input[type="email"],
.comment-form .input-group > textarea + input[type="email"],
.comment-form .input-group > .facetwp-sort-select + input[type="email"],
.search-form .comment-form .input-group > .search-field + input[type="email"],
.comment-form .search-form .input-group > .search-field + input[type="email"],
.comment-form .input-group > .facetwp-dropdown + input[type="email"],
.comment-form .input-group > .fs-label + input[type="email"],
.comment-form .input-group > .facetwp-autocomplete + input[type="email"],
.community-login-form p .comment-form .input-group > input:not(#rememberme) + input[type="email"],
.comment-form .community-login-form p .input-group > input:not(#rememberme) + input[type="email"],
.frm_forms .comment-form .input-group > input + input[type="email"],
.comment-form .frm_forms .input-group > input + input[type="email"],
.frm_forms .comment-form .input-group > textarea + input[type="email"],
.comment-form .frm_forms .input-group > textarea + input[type="email"],
.frm_forms .comment-form .input-group > select + input[type="email"],
.comment-form .frm_forms .input-group > select + input[type="email"],
.facetwp-facet-branches_archiv .comment-form .input-group > input + input[type="email"],
.comment-form .facetwp-facet-branches_archiv .input-group > input + input[type="email"],
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + input[type="email"],
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="email"],
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + input[type="email"],
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="email"],
.comment-form .input-group > .form-control + input[type="url"],
.sidebar .comment-form .input-group > input[type="text"][class*="facet"] + input[type="url"],
.comment-form .sidebar .input-group > input[type="text"][class*="facet"] + input[type="url"],
.comment-form .input-group > input[type="text"] + input[type="url"],
.comment-form .input-group > input[type="email"] + input[type="url"],
.comment-form .input-group > input[type="url"] + input[type="url"],
.comment-form .input-group > textarea + input[type="url"],
.comment-form .input-group > .facetwp-sort-select + input[type="url"],
.search-form .comment-form .input-group > .search-field + input[type="url"],
.comment-form .search-form .input-group > .search-field + input[type="url"],
.comment-form .input-group > .facetwp-dropdown + input[type="url"],
.comment-form .input-group > .fs-label + input[type="url"],
.comment-form .input-group > .facetwp-autocomplete + input[type="url"],
.community-login-form p .comment-form .input-group > input:not(#rememberme) + input[type="url"],
.comment-form .community-login-form p .input-group > input:not(#rememberme) + input[type="url"],
.frm_forms .comment-form .input-group > input + input[type="url"],
.comment-form .frm_forms .input-group > input + input[type="url"],
.frm_forms .comment-form .input-group > textarea + input[type="url"],
.comment-form .frm_forms .input-group > textarea + input[type="url"],
.frm_forms .comment-form .input-group > select + input[type="url"],
.comment-form .frm_forms .input-group > select + input[type="url"],
.facetwp-facet-branches_archiv .comment-form .input-group > input + input[type="url"],
.comment-form .facetwp-facet-branches_archiv .input-group > input + input[type="url"],
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + input[type="url"],
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="url"],
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + input[type="url"],
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input[type="url"],
.comment-form .input-group > .form-control + textarea,
.sidebar .comment-form .input-group > input[type="text"][class*="facet"] + textarea,
.comment-form .sidebar .input-group > input[type="text"][class*="facet"] + textarea,
.comment-form .input-group > input[type="text"] + textarea,
.comment-form .input-group > input[type="email"] + textarea,
.comment-form .input-group > input[type="url"] + textarea,
.comment-form .input-group > textarea + textarea,
.comment-form .input-group > .facetwp-sort-select + textarea,
.search-form .comment-form .input-group > .search-field + textarea,
.comment-form .search-form .input-group > .search-field + textarea,
.comment-form .input-group > .facetwp-dropdown + textarea,
.comment-form .input-group > .fs-label + textarea,
.comment-form .input-group > .facetwp-autocomplete + textarea,
.community-login-form p .comment-form .input-group > input:not(#rememberme) + textarea,
.comment-form .community-login-form p .input-group > input:not(#rememberme) + textarea,
.frm_forms .comment-form .input-group > input + textarea,
.comment-form .frm_forms .input-group > input + textarea,
.frm_forms .comment-form .input-group > textarea + textarea,
.comment-form .frm_forms .input-group > textarea + textarea,
.frm_forms .comment-form .input-group > select + textarea,
.comment-form .frm_forms .input-group > select + textarea,
.facetwp-facet-branches_archiv .comment-form .input-group > input + textarea,
.comment-form .facetwp-facet-branches_archiv .input-group > input + textarea,
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + textarea,
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + textarea,
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input + textarea,
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + textarea,
.input-group > .form-control + .facetwp-sort-select,
.sidebar .input-group > input[type="text"][class*="facet"] + .facetwp-sort-select,
.comment-form .input-group > input[type="text"] + .facetwp-sort-select,
.comment-form .input-group > input[type="email"] + .facetwp-sort-select,
.comment-form .input-group > input[type="url"] + .facetwp-sort-select,
.comment-form .input-group > textarea + .facetwp-sort-select,
.input-group > .facetwp-sort-select + .facetwp-sort-select,
.search-form .input-group > .search-field + .facetwp-sort-select,
.input-group > .facetwp-dropdown + .facetwp-sort-select,
.input-group > .fs-label + .facetwp-sort-select,
.input-group > .facetwp-autocomplete + .facetwp-sort-select,
.community-login-form p .input-group > input:not(#rememberme) + .facetwp-sort-select,
.frm_forms .input-group > input + .facetwp-sort-select,
.frm_forms .input-group > textarea + .facetwp-sort-select,
.frm_forms .input-group > select + .facetwp-sort-select,
.facetwp-facet-branches_archiv .input-group > input + .facetwp-sort-select,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .facetwp-sort-select,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .facetwp-sort-select,
.search-form .input-group > .form-control + .search-field,
.sidebar .search-form .input-group > input[type="text"][class*="facet"] + .search-field,
.search-form .sidebar .input-group > input[type="text"][class*="facet"] + .search-field,
.comment-form .search-form .input-group > input[type="text"] + .search-field,
.search-form .comment-form .input-group > input[type="text"] + .search-field,
.comment-form .search-form .input-group > input[type="email"] + .search-field,
.search-form .comment-form .input-group > input[type="email"] + .search-field,
.comment-form .search-form .input-group > input[type="url"] + .search-field,
.search-form .comment-form .input-group > input[type="url"] + .search-field,
.comment-form .search-form .input-group > textarea + .search-field,
.search-form .comment-form .input-group > textarea + .search-field,
.search-form .input-group > .facetwp-sort-select + .search-field,
.search-form .input-group > .search-field + .search-field,
.search-form .input-group > .facetwp-dropdown + .search-field,
.search-form .input-group > .fs-label + .search-field,
.search-form .input-group > .facetwp-autocomplete + .search-field,
.community-login-form p .search-form .input-group > input:not(#rememberme) + .search-field,
.search-form .community-login-form p .input-group > input:not(#rememberme) + .search-field,
.frm_forms .search-form .input-group > input + .search-field,
.search-form .frm_forms .input-group > input + .search-field,
.frm_forms .search-form .input-group > textarea + .search-field,
.search-form .frm_forms .input-group > textarea + .search-field,
.frm_forms .search-form .input-group > select + .search-field,
.search-form .frm_forms .input-group > select + .search-field,
.facetwp-facet-branches_archiv .search-form .input-group > input + .search-field,
.search-form .facetwp-facet-branches_archiv .input-group > input + .search-field,
.local-facets .facetwp-type-search .facetwp-search-wrap .search-form .input-group > input + .search-field,
.search-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .search-field,
.arts-facets .facetwp-type-search .facetwp-search-wrap .search-form .input-group > input + .search-field,
.search-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .search-field,
.input-group > .form-control + .facetwp-dropdown,
.sidebar .input-group > input[type="text"][class*="facet"] + .facetwp-dropdown,
.comment-form .input-group > input[type="text"] + .facetwp-dropdown,
.comment-form .input-group > input[type="email"] + .facetwp-dropdown,
.comment-form .input-group > input[type="url"] + .facetwp-dropdown,
.comment-form .input-group > textarea + .facetwp-dropdown,
.input-group > .facetwp-sort-select + .facetwp-dropdown,
.search-form .input-group > .search-field + .facetwp-dropdown,
.input-group > .facetwp-dropdown + .facetwp-dropdown,
.input-group > .fs-label + .facetwp-dropdown,
.input-group > .facetwp-autocomplete + .facetwp-dropdown,
.community-login-form p .input-group > input:not(#rememberme) + .facetwp-dropdown,
.frm_forms .input-group > input + .facetwp-dropdown,
.frm_forms .input-group > textarea + .facetwp-dropdown,
.frm_forms .input-group > select + .facetwp-dropdown,
.facetwp-facet-branches_archiv .input-group > input + .facetwp-dropdown,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .facetwp-dropdown,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .facetwp-dropdown,
.input-group > .form-control + .fs-label,
.sidebar .input-group > input[type="text"][class*="facet"] + .fs-label,
.comment-form .input-group > input[type="text"] + .fs-label,
.comment-form .input-group > input[type="email"] + .fs-label,
.comment-form .input-group > input[type="url"] + .fs-label,
.comment-form .input-group > textarea + .fs-label,
.input-group > .facetwp-sort-select + .fs-label,
.search-form .input-group > .search-field + .fs-label,
.input-group > .facetwp-dropdown + .fs-label,
.input-group > .fs-label + .fs-label,
.input-group > .facetwp-autocomplete + .fs-label,
.community-login-form p .input-group > input:not(#rememberme) + .fs-label,
.frm_forms .input-group > input + .fs-label,
.frm_forms .input-group > textarea + .fs-label,
.frm_forms .input-group > select + .fs-label,
.facetwp-facet-branches_archiv .input-group > input + .fs-label,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .fs-label,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .fs-label,
.input-group > .form-control + .facetwp-autocomplete,
.sidebar .input-group > input[type="text"][class*="facet"] + .facetwp-autocomplete,
.comment-form .input-group > input[type="text"] + .facetwp-autocomplete,
.comment-form .input-group > input[type="email"] + .facetwp-autocomplete,
.comment-form .input-group > input[type="url"] + .facetwp-autocomplete,
.comment-form .input-group > textarea + .facetwp-autocomplete,
.input-group > .facetwp-sort-select + .facetwp-autocomplete,
.search-form .input-group > .search-field + .facetwp-autocomplete,
.input-group > .facetwp-dropdown + .facetwp-autocomplete,
.input-group > .fs-label + .facetwp-autocomplete,
.input-group > .facetwp-autocomplete + .facetwp-autocomplete,
.community-login-form p .input-group > input:not(#rememberme) + .facetwp-autocomplete,
.frm_forms .input-group > input + .facetwp-autocomplete,
.frm_forms .input-group > textarea + .facetwp-autocomplete,
.frm_forms .input-group > select + .facetwp-autocomplete,
.facetwp-facet-branches_archiv .input-group > input + .facetwp-autocomplete,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .facetwp-autocomplete,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .facetwp-autocomplete,
.community-login-form p .input-group > .form-control + input:not(#rememberme),
.sidebar .community-login-form p .input-group > input[type="text"][class*="facet"] + input:not(#rememberme),
.community-login-form p .sidebar .input-group > input[type="text"][class*="facet"] + input:not(#rememberme),
.comment-form .community-login-form p .input-group > input[type="text"] + input:not(#rememberme),
.community-login-form p .comment-form .input-group > input[type="text"] + input:not(#rememberme),
.comment-form .community-login-form p .input-group > input[type="email"] + input:not(#rememberme),
.community-login-form p .comment-form .input-group > input[type="email"] + input:not(#rememberme),
.comment-form .community-login-form p .input-group > input[type="url"] + input:not(#rememberme),
.community-login-form p .comment-form .input-group > input[type="url"] + input:not(#rememberme),
.comment-form .community-login-form p .input-group > textarea + input:not(#rememberme),
.community-login-form p .comment-form .input-group > textarea + input:not(#rememberme),
.community-login-form p .input-group > .facetwp-sort-select + input:not(#rememberme),
.search-form .community-login-form p .input-group > .search-field + input:not(#rememberme),
.community-login-form p .search-form .input-group > .search-field + input:not(#rememberme),
.community-login-form p .input-group > .facetwp-dropdown + input:not(#rememberme),
.community-login-form p .input-group > .fs-label + input:not(#rememberme),
.community-login-form p .input-group > .facetwp-autocomplete + input:not(#rememberme),
.community-login-form p .input-group > input:not(#rememberme) + input:not(#rememberme),
.frm_forms .community-login-form p .input-group > input + input:not(#rememberme),
.community-login-form p .frm_forms .input-group > input + input:not(#rememberme),
.frm_forms .community-login-form p .input-group > textarea + input:not(#rememberme),
.community-login-form p .frm_forms .input-group > textarea + input:not(#rememberme),
.frm_forms .community-login-form p .input-group > select + input:not(#rememberme),
.community-login-form p .frm_forms .input-group > select + input:not(#rememberme),
.facetwp-facet-branches_archiv .community-login-form p .input-group > input + input:not(#rememberme),
.community-login-form p .facetwp-facet-branches_archiv .input-group > input + input:not(#rememberme),
.local-facets .facetwp-type-search .facetwp-search-wrap .community-login-form p .input-group > input + input:not(#rememberme),
.community-login-form p .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input:not(#rememberme),
.arts-facets .facetwp-type-search .facetwp-search-wrap .community-login-form p .input-group > input + input:not(#rememberme),
.community-login-form p .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input:not(#rememberme),
.frm_forms .input-group > .form-control + input,
.sidebar .frm_forms .input-group > input[type="text"][class*="facet"] + input,
.frm_forms .sidebar .input-group > input[type="text"][class*="facet"] + input,
.comment-form .frm_forms .input-group > input[type="text"] + input,
.frm_forms .comment-form .input-group > input[type="text"] + input,
.comment-form .frm_forms .input-group > input[type="email"] + input,
.frm_forms .comment-form .input-group > input[type="email"] + input,
.comment-form .frm_forms .input-group > input[type="url"] + input,
.frm_forms .comment-form .input-group > input[type="url"] + input,
.comment-form .frm_forms .input-group > textarea + input,
.frm_forms .comment-form .input-group > textarea + input,
.frm_forms .input-group > .facetwp-sort-select + input,
.search-form .frm_forms .input-group > .search-field + input,
.frm_forms .search-form .input-group > .search-field + input,
.frm_forms .input-group > .facetwp-dropdown + input,
.frm_forms .input-group > .fs-label + input,
.frm_forms .input-group > .facetwp-autocomplete + input,
.community-login-form p .frm_forms .input-group > input:not(#rememberme) + input,
.frm_forms .community-login-form p .input-group > input:not(#rememberme) + input,
.frm_forms .input-group > input + input,
.frm_forms .input-group > textarea + input,
.frm_forms .input-group > select + input,
.facetwp-facet-branches_archiv .frm_forms .input-group > input + input,
.frm_forms .facetwp-facet-branches_archiv .input-group > input + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + input,
.frm_forms .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + input,
.frm_forms .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.frm_forms .input-group > .form-control + textarea,
.sidebar .frm_forms .input-group > input[type="text"][class*="facet"] + textarea,
.frm_forms .sidebar .input-group > input[type="text"][class*="facet"] + textarea,
.comment-form .frm_forms .input-group > input[type="text"] + textarea,
.frm_forms .comment-form .input-group > input[type="text"] + textarea,
.comment-form .frm_forms .input-group > input[type="email"] + textarea,
.frm_forms .comment-form .input-group > input[type="email"] + textarea,
.comment-form .frm_forms .input-group > input[type="url"] + textarea,
.frm_forms .comment-form .input-group > input[type="url"] + textarea,
.comment-form .frm_forms .input-group > textarea + textarea,
.frm_forms .comment-form .input-group > textarea + textarea,
.frm_forms .input-group > .facetwp-sort-select + textarea,
.search-form .frm_forms .input-group > .search-field + textarea,
.frm_forms .search-form .input-group > .search-field + textarea,
.frm_forms .input-group > .facetwp-dropdown + textarea,
.frm_forms .input-group > .fs-label + textarea,
.frm_forms .input-group > .facetwp-autocomplete + textarea,
.community-login-form p .frm_forms .input-group > input:not(#rememberme) + textarea,
.frm_forms .community-login-form p .input-group > input:not(#rememberme) + textarea,
.frm_forms .input-group > input + textarea,
.frm_forms .input-group > textarea + textarea,
.frm_forms .input-group > select + textarea,
.facetwp-facet-branches_archiv .frm_forms .input-group > input + textarea,
.frm_forms .facetwp-facet-branches_archiv .input-group > input + textarea,
.local-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + textarea,
.frm_forms .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + textarea,
.arts-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + textarea,
.frm_forms .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + textarea,
.frm_forms .input-group > .form-control + select,
.sidebar .frm_forms .input-group > input[type="text"][class*="facet"] + select,
.frm_forms .sidebar .input-group > input[type="text"][class*="facet"] + select,
.comment-form .frm_forms .input-group > input[type="text"] + select,
.frm_forms .comment-form .input-group > input[type="text"] + select,
.comment-form .frm_forms .input-group > input[type="email"] + select,
.frm_forms .comment-form .input-group > input[type="email"] + select,
.comment-form .frm_forms .input-group > input[type="url"] + select,
.frm_forms .comment-form .input-group > input[type="url"] + select,
.comment-form .frm_forms .input-group > textarea + select,
.frm_forms .comment-form .input-group > textarea + select,
.frm_forms .input-group > .facetwp-sort-select + select,
.search-form .frm_forms .input-group > .search-field + select,
.frm_forms .search-form .input-group > .search-field + select,
.frm_forms .input-group > .facetwp-dropdown + select,
.frm_forms .input-group > .fs-label + select,
.frm_forms .input-group > .facetwp-autocomplete + select,
.community-login-form p .frm_forms .input-group > input:not(#rememberme) + select,
.frm_forms .community-login-form p .input-group > input:not(#rememberme) + select,
.frm_forms .input-group > input + select,
.frm_forms .input-group > textarea + select,
.frm_forms .input-group > select + select,
.facetwp-facet-branches_archiv .frm_forms .input-group > input + select,
.frm_forms .facetwp-facet-branches_archiv .input-group > input + select,
.local-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + select,
.frm_forms .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + select,
.arts-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + select,
.frm_forms .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + select,
.facetwp-facet-branches_archiv .input-group > .form-control + input,
.sidebar .facetwp-facet-branches_archiv .input-group > input[type="text"][class*="facet"] + input,
.facetwp-facet-branches_archiv .sidebar .input-group > input[type="text"][class*="facet"] + input,
.comment-form .facetwp-facet-branches_archiv .input-group > input[type="text"] + input,
.facetwp-facet-branches_archiv .comment-form .input-group > input[type="text"] + input,
.comment-form .facetwp-facet-branches_archiv .input-group > input[type="email"] + input,
.facetwp-facet-branches_archiv .comment-form .input-group > input[type="email"] + input,
.comment-form .facetwp-facet-branches_archiv .input-group > input[type="url"] + input,
.facetwp-facet-branches_archiv .comment-form .input-group > input[type="url"] + input,
.comment-form .facetwp-facet-branches_archiv .input-group > textarea + input,
.facetwp-facet-branches_archiv .comment-form .input-group > textarea + input,
.facetwp-facet-branches_archiv .input-group > .facetwp-sort-select + input,
.search-form .facetwp-facet-branches_archiv .input-group > .search-field + input,
.facetwp-facet-branches_archiv .search-form .input-group > .search-field + input,
.facetwp-facet-branches_archiv .input-group > .facetwp-dropdown + input,
.facetwp-facet-branches_archiv .input-group > .fs-label + input,
.facetwp-facet-branches_archiv .input-group > .facetwp-autocomplete + input,
.community-login-form p .facetwp-facet-branches_archiv .input-group > input:not(#rememberme) + input,
.facetwp-facet-branches_archiv .community-login-form p .input-group > input:not(#rememberme) + input,
.frm_forms .facetwp-facet-branches_archiv .input-group > input + input,
.facetwp-facet-branches_archiv .frm_forms .input-group > input + input,
.frm_forms .facetwp-facet-branches_archiv .input-group > textarea + input,
.facetwp-facet-branches_archiv .frm_forms .input-group > textarea + input,
.frm_forms .facetwp-facet-branches_archiv .input-group > select + input,
.facetwp-facet-branches_archiv .frm_forms .input-group > select + input,
.facetwp-facet-branches_archiv .input-group > input + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .facetwp-facet-branches_archiv .input-group > input + input,
.facetwp-facet-branches_archiv .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .facetwp-facet-branches_archiv .input-group > input + input,
.facetwp-facet-branches_archiv .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .form-control + input,
.sidebar .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="text"][class*="facet"] + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .sidebar .input-group > input[type="text"][class*="facet"] + input,
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="text"] + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input[type="text"] + input,
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="email"] + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input[type="email"] + input,
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="url"] + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input[type="url"] + input,
.comment-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > textarea + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > textarea + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .facetwp-sort-select + input,
.search-form .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .search-field + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .search-form .input-group > .search-field + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .facetwp-dropdown + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .fs-label + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .facetwp-autocomplete + input,
.community-login-form p .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input:not(#rememberme) + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .community-login-form p .input-group > input:not(#rememberme) + input,
.frm_forms .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + input,
.frm_forms .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > textarea + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > textarea + input,
.frm_forms .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > select + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > select + input,
.facetwp-facet-branches_archiv .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .facetwp-facet-branches_archiv .input-group > input + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.local-facets .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .form-control + input,
.sidebar .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="text"][class*="facet"] + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .sidebar .input-group > input[type="text"][class*="facet"] + input,
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="text"] + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input[type="text"] + input,
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="email"] + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input[type="email"] + input,
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input[type="url"] + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > input[type="url"] + input,
.comment-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > textarea + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .comment-form .input-group > textarea + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .facetwp-sort-select + input,
.search-form .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .search-field + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .search-form .input-group > .search-field + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .facetwp-dropdown + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .fs-label + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .facetwp-autocomplete + input,
.community-login-form p .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input:not(#rememberme) + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .community-login-form p .input-group > input:not(#rememberme) + input,
.frm_forms .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > input + input,
.frm_forms .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > textarea + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > textarea + input,
.frm_forms .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > select + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .frm_forms .input-group > select + input,
.facetwp-facet-branches_archiv .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .facetwp-facet-branches_archiv .input-group > input + input,
.local-facets .arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + input,
.input-group > .form-control + .custom-select,
.sidebar .input-group > input[type="text"][class*="facet"] + .custom-select,
.comment-form .input-group > input[type="text"] + .custom-select,
.comment-form .input-group > input[type="email"] + .custom-select,
.comment-form .input-group > input[type="url"] + .custom-select,
.comment-form .input-group > textarea + .custom-select,
.input-group > .facetwp-sort-select + .custom-select,
.search-form .input-group > .search-field + .custom-select,
.input-group > .facetwp-dropdown + .custom-select,
.input-group > .fs-label + .custom-select,
.input-group > .facetwp-autocomplete + .custom-select,
.community-login-form p .input-group > input:not(#rememberme) + .custom-select,
.frm_forms .input-group > input + .custom-select,
.frm_forms .input-group > textarea + .custom-select,
.frm_forms .input-group > select + .custom-select,
.facetwp-facet-branches_archiv .input-group > input + .custom-select,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .custom-select,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .custom-select,
.input-group > .form-control + .custom-file,
.sidebar .input-group > input[type="text"][class*="facet"] + .custom-file,
.comment-form .input-group > input[type="text"] + .custom-file,
.comment-form .input-group > input[type="email"] + .custom-file,
.comment-form .input-group > input[type="url"] + .custom-file,
.comment-form .input-group > textarea + .custom-file,
.input-group > .facetwp-sort-select + .custom-file,
.search-form .input-group > .search-field + .custom-file,
.input-group > .facetwp-dropdown + .custom-file,
.input-group > .fs-label + .custom-file,
.input-group > .facetwp-autocomplete + .custom-file,
.community-login-form p .input-group > input:not(#rememberme) + .custom-file,
.frm_forms .input-group > input + .custom-file,
.frm_forms .input-group > textarea + .custom-file,
.frm_forms .input-group > select + .custom-file,
.facetwp-facet-branches_archiv .input-group > input + .custom-file,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .custom-file,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.sidebar .input-group > .form-control-plaintext + input[type="text"][class*="facet"],
.comment-form .input-group > .form-control-plaintext + input[type="text"],
.comment-form .input-group > .form-control-plaintext + input[type="email"],
.comment-form .input-group > .form-control-plaintext + input[type="url"],
.comment-form .input-group > .form-control-plaintext + textarea,
.input-group > .form-control-plaintext + .facetwp-sort-select,
.search-form .input-group > .form-control-plaintext + .search-field,
.input-group > .form-control-plaintext + .facetwp-dropdown,
.input-group > .form-control-plaintext + .fs-label,
.input-group > .form-control-plaintext + .facetwp-autocomplete,
.community-login-form p .input-group > .form-control-plaintext + input:not(#rememberme),
.frm_forms .input-group > .form-control-plaintext + input,
.frm_forms .input-group > .form-control-plaintext + textarea,
.frm_forms .input-group > .form-control-plaintext + select,
.facetwp-facet-branches_archiv .input-group > .form-control-plaintext + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .form-control-plaintext + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .form-control-plaintext + input,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.sidebar .input-group > .custom-select + input[type="text"][class*="facet"],
.comment-form .input-group > .custom-select + input[type="text"],
.comment-form .input-group > .custom-select + input[type="email"],
.comment-form .input-group > .custom-select + input[type="url"],
.comment-form .input-group > .custom-select + textarea,
.input-group > .custom-select + .facetwp-sort-select,
.search-form .input-group > .custom-select + .search-field,
.input-group > .custom-select + .facetwp-dropdown,
.input-group > .custom-select + .fs-label,
.input-group > .custom-select + .facetwp-autocomplete,
.community-login-form p .input-group > .custom-select + input:not(#rememberme),
.frm_forms .input-group > .custom-select + input,
.frm_forms .input-group > .custom-select + textarea,
.frm_forms .input-group > .custom-select + select,
.facetwp-facet-branches_archiv .input-group > .custom-select + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .custom-select + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .custom-select + input,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.sidebar .input-group > .custom-file + input[type="text"][class*="facet"],
.comment-form .input-group > .custom-file + input[type="text"],
.comment-form .input-group > .custom-file + input[type="email"],
.comment-form .input-group > .custom-file + input[type="url"],
.comment-form .input-group > .custom-file + textarea,
.input-group > .custom-file + .facetwp-sort-select,
.search-form .input-group > .custom-file + .search-field,
.input-group > .custom-file + .facetwp-dropdown,
.input-group > .custom-file + .fs-label,
.input-group > .custom-file + .facetwp-autocomplete,
.community-login-form p .input-group > .custom-file + input:not(#rememberme),
.frm_forms .input-group > .custom-file + input,
.frm_forms .input-group > .custom-file + textarea,
.frm_forms .input-group > .custom-file + select,
.facetwp-facet-branches_archiv .input-group > .custom-file + input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > .custom-file + input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > .custom-file + input,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.sidebar .input-group > input:focus[type="text"][class*="facet"],
.comment-form .input-group > input:focus[type="text"],
.comment-form .input-group > input:focus[type="email"],
.comment-form .input-group > input:focus[type="url"],
.comment-form .input-group > textarea:focus,
.input-group > .facetwp-sort-select:focus,
.search-form .input-group > .search-field:focus,
.input-group > .facetwp-dropdown:focus,
.input-group > .fs-label:focus,
.input-group > .facetwp-autocomplete:focus,
.community-login-form p .input-group > input:focus:not(#rememberme),
.frm_forms .input-group > input:focus,
.frm_forms .input-group > textarea:focus,
.frm_forms .input-group > select:focus,
.facetwp-facet-branches_archiv .input-group > input:focus,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input:focus,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:first-child),
.sidebar .input-group > input:not(:first-child)[type="text"][class*="facet"],
.comment-form .input-group > input:not(:first-child)[type="text"],
.comment-form .input-group > input:not(:first-child)[type="email"],
.comment-form .input-group > input:not(:first-child)[type="url"],
.comment-form .input-group > textarea:not(:first-child),
.input-group > .facetwp-sort-select:not(:first-child),
.search-form .input-group > .search-field:not(:first-child),
.input-group > .facetwp-dropdown:not(:first-child),
.input-group > .fs-label:not(:first-child),
.input-group > .facetwp-autocomplete:not(:first-child),
.community-login-form p .input-group > input:not(:first-child):not(#rememberme),
.frm_forms .input-group > input:not(:first-child),
.frm_forms .input-group > textarea:not(:first-child),
.frm_forms .input-group > select:not(:first-child),
.facetwp-facet-branches_archiv .input-group > input:not(:first-child),
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group > input:not(:first-child),
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group > input:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group:not(.has-validation) > .form-control:not(:last-child),
.sidebar .input-group:not(.has-validation) > input:not(:last-child)[type="text"][class*="facet"],
.comment-form .input-group:not(.has-validation) > input:not(:last-child)[type="text"],
.comment-form .input-group:not(.has-validation) > input:not(:last-child)[type="email"],
.comment-form .input-group:not(.has-validation) > input:not(:last-child)[type="url"],
.comment-form .input-group:not(.has-validation) > textarea:not(:last-child),
.input-group:not(.has-validation) > .facetwp-sort-select:not(:last-child),
.search-form .input-group:not(.has-validation) > .search-field:not(:last-child),
.input-group:not(.has-validation) > .facetwp-dropdown:not(:last-child),
.input-group:not(.has-validation) > .fs-label:not(:last-child),
.input-group:not(.has-validation) > .facetwp-autocomplete:not(:last-child),
.community-login-form p .input-group:not(.has-validation) > input:not(:last-child):not(#rememberme),
.frm_forms .input-group:not(.has-validation) > input:not(:last-child),
.frm_forms .input-group:not(.has-validation) > textarea:not(:last-child),
.frm_forms .input-group:not(.has-validation) > select:not(:last-child),
.facetwp-facet-branches_archiv .input-group:not(.has-validation) > input:not(:last-child),
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group:not(.has-validation) > input:not(:last-child),
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group:not(.has-validation) > input:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n + 3),
.sidebar .input-group.has-validation > input:nth-last-child(n + 3)[type="text"][class*="facet"],
.comment-form .input-group.has-validation > input:nth-last-child(n + 3)[type="text"],
.comment-form .input-group.has-validation > input:nth-last-child(n + 3)[type="email"],
.comment-form .input-group.has-validation > input:nth-last-child(n + 3)[type="url"],
.comment-form .input-group.has-validation > textarea:nth-last-child(n + 3),
.input-group.has-validation > .facetwp-sort-select:nth-last-child(n + 3),
.search-form .input-group.has-validation > .search-field:nth-last-child(n + 3),
.input-group.has-validation > .facetwp-dropdown:nth-last-child(n + 3),
.input-group.has-validation > .fs-label:nth-last-child(n + 3),
.input-group.has-validation > .facetwp-autocomplete:nth-last-child(n + 3),
.community-login-form p .input-group.has-validation > input:nth-last-child(n + 3):not(#rememberme),
.frm_forms .input-group.has-validation > input:nth-last-child(n + 3),
.frm_forms .input-group.has-validation > textarea:nth-last-child(n + 3),
.frm_forms .input-group.has-validation > select:nth-last-child(n + 3),
.facetwp-facet-branches_archiv .input-group.has-validation > input:nth-last-child(n + 3),
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group.has-validation > input:nth-last-child(n + 3),
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group.has-validation > input:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn,
.input-group-prepend .homepage-preview-buttons a,
.homepage-preview-buttons .input-group-prepend a,
.input-group-prepend .sharebar-singlepost a,
.sharebar-singlepost .input-group-prepend a,
.input-group-prepend .comment-form input[type="submit"],
.comment-form .input-group-prepend input[type="submit"],
.input-group-prepend .sidebar--post .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .facetwp-autocomplete-update,
.input-group-prepend .search-form .search-submit,
.search-form .input-group-prepend .search-submit,
.input-group-prepend .community-login-form p .button,
.community-login-form p .input-group-prepend .button,
.input-group-prepend .frm_forms .frm_button_submit,
.frm_forms .input-group-prepend .frm_button_submit,
.input-group-append .btn,
.input-group-append .homepage-preview-buttons a,
.homepage-preview-buttons .input-group-append a,
.input-group-append .sharebar-singlepost a,
.sharebar-singlepost .input-group-append a,
.input-group-append .comment-form input[type="submit"],
.comment-form .input-group-append input[type="submit"],
.input-group-append .sidebar--post .facetwp-autocomplete-update,
.sidebar--post .input-group-append .facetwp-autocomplete-update,
.input-group-append .search-form .search-submit,
.search-form .input-group-append .search-submit,
.input-group-append .community-login-form p .button,
.community-login-form p .input-group-append .button,
.input-group-append .frm_forms .frm_button_submit,
.frm_forms .input-group-append .frm_button_submit {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-prepend .homepage-preview-buttons a:focus,
.homepage-preview-buttons .input-group-prepend a:focus,
.input-group-prepend .sharebar-singlepost a:focus,
.sharebar-singlepost .input-group-prepend a:focus,
.input-group-prepend .comment-form input:focus[type="submit"],
.comment-form .input-group-prepend input:focus[type="submit"],
.input-group-prepend .sidebar--post .facetwp-autocomplete-update:focus,
.sidebar--post .input-group-prepend .facetwp-autocomplete-update:focus,
.input-group-prepend .search-form .search-submit:focus,
.search-form .input-group-prepend .search-submit:focus,
.input-group-prepend .community-login-form p .button:focus,
.community-login-form p .input-group-prepend .button:focus,
.input-group-prepend .frm_forms .frm_button_submit:focus,
.frm_forms .input-group-prepend .frm_button_submit:focus,
.input-group-append .btn:focus,
.input-group-append .homepage-preview-buttons a:focus,
.homepage-preview-buttons .input-group-append a:focus,
.input-group-append .sharebar-singlepost a:focus,
.sharebar-singlepost .input-group-append a:focus,
.input-group-append .comment-form input:focus[type="submit"],
.comment-form .input-group-append input:focus[type="submit"],
.input-group-append .sidebar--post .facetwp-autocomplete-update:focus,
.sidebar--post .input-group-append .facetwp-autocomplete-update:focus,
.input-group-append .search-form .search-submit:focus,
.search-form .input-group-append .search-submit:focus,
.input-group-append .community-login-form p .button:focus,
.community-login-form p .input-group-append .button:focus,
.input-group-append .frm_forms .frm_button_submit:focus,
.frm_forms .input-group-append .frm_button_submit:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .homepage-preview-buttons a + .btn,
.homepage-preview-buttons .input-group-prepend a + .btn,
.input-group-prepend .sharebar-singlepost a + .btn,
.sharebar-singlepost .input-group-prepend a + .btn,
.input-group-prepend .comment-form input[type="submit"] + .btn,
.comment-form .input-group-prepend input[type="submit"] + .btn,
.input-group-prepend .sidebar--post .facetwp-autocomplete-update + .btn,
.sidebar--post .input-group-prepend .facetwp-autocomplete-update + .btn,
.input-group-prepend .search-form .search-submit + .btn,
.search-form .input-group-prepend .search-submit + .btn,
.input-group-prepend .community-login-form p .button + .btn,
.community-login-form p .input-group-prepend .button + .btn,
.input-group-prepend .frm_forms .frm_button_submit + .btn,
.frm_forms .input-group-prepend .frm_button_submit + .btn,
.input-group-prepend .homepage-preview-buttons .btn + a,
.homepage-preview-buttons .input-group-prepend .btn + a,
.input-group-prepend .homepage-preview-buttons a + a,
.homepage-preview-buttons .input-group-prepend a + a,
.input-group-prepend .sharebar-singlepost .homepage-preview-buttons a + a,
.homepage-preview-buttons .sharebar-singlepost .input-group-prepend a + a,
.input-group-prepend .comment-form .homepage-preview-buttons input[type="submit"] + a,
.homepage-preview-buttons .input-group-prepend .comment-form input[type="submit"] + a,
.comment-form .input-group-prepend .homepage-preview-buttons input[type="submit"] + a,
.homepage-preview-buttons .comment-form .input-group-prepend input[type="submit"] + a,
.input-group-prepend .sidebar--post .homepage-preview-buttons .facetwp-autocomplete-update + a,
.homepage-preview-buttons .input-group-prepend .sidebar--post .facetwp-autocomplete-update + a,
.sidebar--post .input-group-prepend .homepage-preview-buttons .facetwp-autocomplete-update + a,
.homepage-preview-buttons .sidebar--post .input-group-prepend .facetwp-autocomplete-update + a,
.input-group-prepend .search-form .homepage-preview-buttons .search-submit + a,
.homepage-preview-buttons .input-group-prepend .search-form .search-submit + a,
.search-form .input-group-prepend .homepage-preview-buttons .search-submit + a,
.homepage-preview-buttons .search-form .input-group-prepend .search-submit + a,
.input-group-prepend .community-login-form p .homepage-preview-buttons .button + a,
.homepage-preview-buttons .input-group-prepend .community-login-form p .button + a,
.community-login-form p .input-group-prepend .homepage-preview-buttons .button + a,
.homepage-preview-buttons .community-login-form p .input-group-prepend .button + a,
.input-group-prepend .frm_forms .homepage-preview-buttons .frm_button_submit + a,
.homepage-preview-buttons .input-group-prepend .frm_forms .frm_button_submit + a,
.frm_forms .input-group-prepend .homepage-preview-buttons .frm_button_submit + a,
.homepage-preview-buttons .frm_forms .input-group-prepend .frm_button_submit + a,
.input-group-prepend .sharebar-singlepost .btn + a,
.sharebar-singlepost .input-group-prepend .btn + a,
.input-group-prepend .homepage-preview-buttons .sharebar-singlepost a + a,
.sharebar-singlepost .input-group-prepend .homepage-preview-buttons a + a,
.homepage-preview-buttons .input-group-prepend .sharebar-singlepost a + a,
.sharebar-singlepost .homepage-preview-buttons .input-group-prepend a + a,
.input-group-prepend .sharebar-singlepost a + a,
.sharebar-singlepost .input-group-prepend a + a,
.input-group-prepend .comment-form .sharebar-singlepost input[type="submit"] + a,
.sharebar-singlepost .input-group-prepend .comment-form input[type="submit"] + a,
.comment-form .input-group-prepend .sharebar-singlepost input[type="submit"] + a,
.sharebar-singlepost .comment-form .input-group-prepend input[type="submit"] + a,
.input-group-prepend .sidebar--post .sharebar-singlepost .facetwp-autocomplete-update + a,
.sharebar-singlepost .input-group-prepend .sidebar--post .facetwp-autocomplete-update + a,
.sidebar--post .input-group-prepend .sharebar-singlepost .facetwp-autocomplete-update + a,
.sharebar-singlepost .sidebar--post .input-group-prepend .facetwp-autocomplete-update + a,
.input-group-prepend .search-form .sharebar-singlepost .search-submit + a,
.sharebar-singlepost .input-group-prepend .search-form .search-submit + a,
.search-form .input-group-prepend .sharebar-singlepost .search-submit + a,
.sharebar-singlepost .search-form .input-group-prepend .search-submit + a,
.input-group-prepend .community-login-form p .sharebar-singlepost .button + a,
.sharebar-singlepost .input-group-prepend .community-login-form p .button + a,
.community-login-form p .input-group-prepend .sharebar-singlepost .button + a,
.sharebar-singlepost .community-login-form p .input-group-prepend .button + a,
.input-group-prepend .frm_forms .sharebar-singlepost .frm_button_submit + a,
.sharebar-singlepost .input-group-prepend .frm_forms .frm_button_submit + a,
.frm_forms .input-group-prepend .sharebar-singlepost .frm_button_submit + a,
.sharebar-singlepost .frm_forms .input-group-prepend .frm_button_submit + a,
.input-group-prepend .comment-form .btn + input[type="submit"],
.comment-form .input-group-prepend .btn + input[type="submit"],
.input-group-prepend .homepage-preview-buttons .comment-form a + input[type="submit"],
.comment-form .input-group-prepend .homepage-preview-buttons a + input[type="submit"],
.homepage-preview-buttons .input-group-prepend .comment-form a + input[type="submit"],
.comment-form .homepage-preview-buttons .input-group-prepend a + input[type="submit"],
.input-group-prepend .sharebar-singlepost .comment-form a + input[type="submit"],
.comment-form .input-group-prepend .sharebar-singlepost a + input[type="submit"],
.sharebar-singlepost .input-group-prepend .comment-form a + input[type="submit"],
.comment-form .sharebar-singlepost .input-group-prepend a + input[type="submit"],
.input-group-prepend .comment-form input[type="submit"] + input[type="submit"],
.comment-form .input-group-prepend input[type="submit"] + input[type="submit"],
.input-group-prepend .sidebar--post .comment-form .facetwp-autocomplete-update + input[type="submit"],
.comment-form .input-group-prepend .sidebar--post .facetwp-autocomplete-update + input[type="submit"],
.sidebar--post .input-group-prepend .comment-form .facetwp-autocomplete-update + input[type="submit"],
.comment-form .sidebar--post .input-group-prepend .facetwp-autocomplete-update + input[type="submit"],
.input-group-prepend .search-form .comment-form .search-submit + input[type="submit"],
.comment-form .input-group-prepend .search-form .search-submit + input[type="submit"],
.search-form .input-group-prepend .comment-form .search-submit + input[type="submit"],
.comment-form .search-form .input-group-prepend .search-submit + input[type="submit"],
.input-group-prepend .community-login-form p .comment-form .button + input[type="submit"],
.comment-form .input-group-prepend .community-login-form p .button + input[type="submit"],
.community-login-form p .input-group-prepend .comment-form .button + input[type="submit"],
.comment-form .community-login-form p .input-group-prepend .button + input[type="submit"],
.input-group-prepend .frm_forms .comment-form .frm_button_submit + input[type="submit"],
.comment-form .input-group-prepend .frm_forms .frm_button_submit + input[type="submit"],
.frm_forms .input-group-prepend .comment-form .frm_button_submit + input[type="submit"],
.comment-form .frm_forms .input-group-prepend .frm_button_submit + input[type="submit"],
.input-group-prepend .sidebar--post .btn + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .btn + .facetwp-autocomplete-update,
.input-group-prepend .homepage-preview-buttons .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .homepage-preview-buttons a + .facetwp-autocomplete-update,
.homepage-preview-buttons .input-group-prepend .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .homepage-preview-buttons .input-group-prepend a + .facetwp-autocomplete-update,
.input-group-prepend .sharebar-singlepost .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .sharebar-singlepost a + .facetwp-autocomplete-update,
.sharebar-singlepost .input-group-prepend .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .sharebar-singlepost .input-group-prepend a + .facetwp-autocomplete-update,
.input-group-prepend .comment-form .sidebar--post input[type="submit"] + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .comment-form input[type="submit"] + .facetwp-autocomplete-update,
.comment-form .input-group-prepend .sidebar--post input[type="submit"] + .facetwp-autocomplete-update,
.sidebar--post .comment-form .input-group-prepend input[type="submit"] + .facetwp-autocomplete-update,
.input-group-prepend .sidebar--post .facetwp-autocomplete-update + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .facetwp-autocomplete-update + .facetwp-autocomplete-update,
.input-group-prepend .search-form .sidebar--post .search-submit + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .search-form .search-submit + .facetwp-autocomplete-update,
.search-form .input-group-prepend .sidebar--post .search-submit + .facetwp-autocomplete-update,
.sidebar--post .search-form .input-group-prepend .search-submit + .facetwp-autocomplete-update,
.input-group-prepend .community-login-form p .sidebar--post .button + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .community-login-form p .button + .facetwp-autocomplete-update,
.community-login-form p .input-group-prepend .sidebar--post .button + .facetwp-autocomplete-update,
.sidebar--post .community-login-form p .input-group-prepend .button + .facetwp-autocomplete-update,
.input-group-prepend .frm_forms .sidebar--post .frm_button_submit + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .frm_forms .frm_button_submit + .facetwp-autocomplete-update,
.frm_forms .input-group-prepend .sidebar--post .frm_button_submit + .facetwp-autocomplete-update,
.sidebar--post .frm_forms .input-group-prepend .frm_button_submit + .facetwp-autocomplete-update,
.input-group-prepend .search-form .btn + .search-submit,
.search-form .input-group-prepend .btn + .search-submit,
.input-group-prepend .homepage-preview-buttons .search-form a + .search-submit,
.search-form .input-group-prepend .homepage-preview-buttons a + .search-submit,
.homepage-preview-buttons .input-group-prepend .search-form a + .search-submit,
.search-form .homepage-preview-buttons .input-group-prepend a + .search-submit,
.input-group-prepend .sharebar-singlepost .search-form a + .search-submit,
.search-form .input-group-prepend .sharebar-singlepost a + .search-submit,
.sharebar-singlepost .input-group-prepend .search-form a + .search-submit,
.search-form .sharebar-singlepost .input-group-prepend a + .search-submit,
.input-group-prepend .comment-form .search-form input[type="submit"] + .search-submit,
.search-form .input-group-prepend .comment-form input[type="submit"] + .search-submit,
.comment-form .input-group-prepend .search-form input[type="submit"] + .search-submit,
.search-form .comment-form .input-group-prepend input[type="submit"] + .search-submit,
.input-group-prepend .sidebar--post .search-form .facetwp-autocomplete-update + .search-submit,
.search-form .input-group-prepend .sidebar--post .facetwp-autocomplete-update + .search-submit,
.sidebar--post .input-group-prepend .search-form .facetwp-autocomplete-update + .search-submit,
.search-form .sidebar--post .input-group-prepend .facetwp-autocomplete-update + .search-submit,
.input-group-prepend .search-form .search-submit + .search-submit,
.search-form .input-group-prepend .search-submit + .search-submit,
.input-group-prepend .community-login-form p .search-form .button + .search-submit,
.search-form .input-group-prepend .community-login-form p .button + .search-submit,
.community-login-form p .input-group-prepend .search-form .button + .search-submit,
.search-form .community-login-form p .input-group-prepend .button + .search-submit,
.input-group-prepend .frm_forms .search-form .frm_button_submit + .search-submit,
.search-form .input-group-prepend .frm_forms .frm_button_submit + .search-submit,
.frm_forms .input-group-prepend .search-form .frm_button_submit + .search-submit,
.search-form .frm_forms .input-group-prepend .frm_button_submit + .search-submit,
.input-group-prepend .community-login-form p .btn + .button,
.community-login-form p .input-group-prepend .btn + .button,
.input-group-prepend .homepage-preview-buttons .community-login-form p a + .button,
.community-login-form p .input-group-prepend .homepage-preview-buttons a + .button,
.homepage-preview-buttons .input-group-prepend .community-login-form p a + .button,
.community-login-form p .homepage-preview-buttons .input-group-prepend a + .button,
.input-group-prepend .sharebar-singlepost .community-login-form p a + .button,
.community-login-form p .input-group-prepend .sharebar-singlepost a + .button,
.sharebar-singlepost .input-group-prepend .community-login-form p a + .button,
.community-login-form p .sharebar-singlepost .input-group-prepend a + .button,
.input-group-prepend .comment-form .community-login-form p input[type="submit"] + .button,
.community-login-form p .input-group-prepend .comment-form input[type="submit"] + .button,
.comment-form .input-group-prepend .community-login-form p input[type="submit"] + .button,
.community-login-form p .comment-form .input-group-prepend input[type="submit"] + .button,
.input-group-prepend .sidebar--post .community-login-form p .facetwp-autocomplete-update + .button,
.community-login-form p .input-group-prepend .sidebar--post .facetwp-autocomplete-update + .button,
.sidebar--post .input-group-prepend .community-login-form p .facetwp-autocomplete-update + .button,
.community-login-form p .sidebar--post .input-group-prepend .facetwp-autocomplete-update + .button,
.input-group-prepend .search-form .community-login-form p .search-submit + .button,
.community-login-form p .input-group-prepend .search-form .search-submit + .button,
.search-form .input-group-prepend .community-login-form p .search-submit + .button,
.community-login-form p .search-form .input-group-prepend .search-submit + .button,
.input-group-prepend .community-login-form p .button + .button,
.community-login-form p .input-group-prepend .button + .button,
.input-group-prepend .frm_forms .community-login-form p .frm_button_submit + .button,
.community-login-form p .input-group-prepend .frm_forms .frm_button_submit + .button,
.frm_forms .input-group-prepend .community-login-form p .frm_button_submit + .button,
.community-login-form p .frm_forms .input-group-prepend .frm_button_submit + .button,
.input-group-prepend .frm_forms .btn + .frm_button_submit,
.frm_forms .input-group-prepend .btn + .frm_button_submit,
.input-group-prepend .homepage-preview-buttons .frm_forms a + .frm_button_submit,
.frm_forms .input-group-prepend .homepage-preview-buttons a + .frm_button_submit,
.homepage-preview-buttons .input-group-prepend .frm_forms a + .frm_button_submit,
.frm_forms .homepage-preview-buttons .input-group-prepend a + .frm_button_submit,
.input-group-prepend .sharebar-singlepost .frm_forms a + .frm_button_submit,
.frm_forms .input-group-prepend .sharebar-singlepost a + .frm_button_submit,
.sharebar-singlepost .input-group-prepend .frm_forms a + .frm_button_submit,
.frm_forms .sharebar-singlepost .input-group-prepend a + .frm_button_submit,
.input-group-prepend .comment-form .frm_forms input[type="submit"] + .frm_button_submit,
.frm_forms .input-group-prepend .comment-form input[type="submit"] + .frm_button_submit,
.comment-form .input-group-prepend .frm_forms input[type="submit"] + .frm_button_submit,
.frm_forms .comment-form .input-group-prepend input[type="submit"] + .frm_button_submit,
.input-group-prepend .sidebar--post .frm_forms .facetwp-autocomplete-update + .frm_button_submit,
.frm_forms .input-group-prepend .sidebar--post .facetwp-autocomplete-update + .frm_button_submit,
.sidebar--post .input-group-prepend .frm_forms .facetwp-autocomplete-update + .frm_button_submit,
.frm_forms .sidebar--post .input-group-prepend .facetwp-autocomplete-update + .frm_button_submit,
.input-group-prepend .search-form .frm_forms .search-submit + .frm_button_submit,
.frm_forms .input-group-prepend .search-form .search-submit + .frm_button_submit,
.search-form .input-group-prepend .frm_forms .search-submit + .frm_button_submit,
.frm_forms .search-form .input-group-prepend .search-submit + .frm_button_submit,
.input-group-prepend .community-login-form p .frm_forms .button + .frm_button_submit,
.frm_forms .input-group-prepend .community-login-form p .button + .frm_button_submit,
.community-login-form p .input-group-prepend .frm_forms .button + .frm_button_submit,
.frm_forms .community-login-form p .input-group-prepend .button + .frm_button_submit,
.input-group-prepend .frm_forms .frm_button_submit + .frm_button_submit,
.frm_forms .input-group-prepend .frm_button_submit + .frm_button_submit,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .homepage-preview-buttons a + .input-group-text,
.homepage-preview-buttons .input-group-prepend a + .input-group-text,
.input-group-prepend .sharebar-singlepost a + .input-group-text,
.sharebar-singlepost .input-group-prepend a + .input-group-text,
.input-group-prepend .comment-form input[type="submit"] + .input-group-text,
.comment-form .input-group-prepend input[type="submit"] + .input-group-text,
.input-group-prepend .sidebar--post .facetwp-autocomplete-update + .input-group-text,
.sidebar--post .input-group-prepend .facetwp-autocomplete-update + .input-group-text,
.input-group-prepend .search-form .search-submit + .input-group-text,
.search-form .input-group-prepend .search-submit + .input-group-text,
.input-group-prepend .community-login-form p .button + .input-group-text,
.community-login-form p .input-group-prepend .button + .input-group-text,
.input-group-prepend .frm_forms .frm_button_submit + .input-group-text,
.frm_forms .input-group-prepend .frm_button_submit + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .homepage-preview-buttons .input-group-text + a,
.homepage-preview-buttons .input-group-prepend .input-group-text + a,
.input-group-prepend .sharebar-singlepost .input-group-text + a,
.sharebar-singlepost .input-group-prepend .input-group-text + a,
.input-group-prepend .comment-form .input-group-text + input[type="submit"],
.comment-form .input-group-prepend .input-group-text + input[type="submit"],
.input-group-prepend .sidebar--post .input-group-text + .facetwp-autocomplete-update,
.sidebar--post .input-group-prepend .input-group-text + .facetwp-autocomplete-update,
.input-group-prepend .search-form .input-group-text + .search-submit,
.search-form .input-group-prepend .input-group-text + .search-submit,
.input-group-prepend .community-login-form p .input-group-text + .button,
.community-login-form p .input-group-prepend .input-group-text + .button,
.input-group-prepend .frm_forms .input-group-text + .frm_button_submit,
.frm_forms .input-group-prepend .input-group-text + .frm_button_submit,
.input-group-append .btn + .btn,
.input-group-append .homepage-preview-buttons a + .btn,
.homepage-preview-buttons .input-group-append a + .btn,
.input-group-append .sharebar-singlepost a + .btn,
.sharebar-singlepost .input-group-append a + .btn,
.input-group-append .comment-form input[type="submit"] + .btn,
.comment-form .input-group-append input[type="submit"] + .btn,
.input-group-append .sidebar--post .facetwp-autocomplete-update + .btn,
.sidebar--post .input-group-append .facetwp-autocomplete-update + .btn,
.input-group-append .search-form .search-submit + .btn,
.search-form .input-group-append .search-submit + .btn,
.input-group-append .community-login-form p .button + .btn,
.community-login-form p .input-group-append .button + .btn,
.input-group-append .frm_forms .frm_button_submit + .btn,
.frm_forms .input-group-append .frm_button_submit + .btn,
.input-group-append .homepage-preview-buttons .btn + a,
.homepage-preview-buttons .input-group-append .btn + a,
.input-group-append .homepage-preview-buttons a + a,
.homepage-preview-buttons .input-group-append a + a,
.input-group-append .sharebar-singlepost .homepage-preview-buttons a + a,
.homepage-preview-buttons .sharebar-singlepost .input-group-append a + a,
.input-group-append .comment-form .homepage-preview-buttons input[type="submit"] + a,
.homepage-preview-buttons .input-group-append .comment-form input[type="submit"] + a,
.comment-form .input-group-append .homepage-preview-buttons input[type="submit"] + a,
.homepage-preview-buttons .comment-form .input-group-append input[type="submit"] + a,
.input-group-append .sidebar--post .homepage-preview-buttons .facetwp-autocomplete-update + a,
.homepage-preview-buttons .input-group-append .sidebar--post .facetwp-autocomplete-update + a,
.sidebar--post .input-group-append .homepage-preview-buttons .facetwp-autocomplete-update + a,
.homepage-preview-buttons .sidebar--post .input-group-append .facetwp-autocomplete-update + a,
.input-group-append .search-form .homepage-preview-buttons .search-submit + a,
.homepage-preview-buttons .input-group-append .search-form .search-submit + a,
.search-form .input-group-append .homepage-preview-buttons .search-submit + a,
.homepage-preview-buttons .search-form .input-group-append .search-submit + a,
.input-group-append .community-login-form p .homepage-preview-buttons .button + a,
.homepage-preview-buttons .input-group-append .community-login-form p .button + a,
.community-login-form p .input-group-append .homepage-preview-buttons .button + a,
.homepage-preview-buttons .community-login-form p .input-group-append .button + a,
.input-group-append .frm_forms .homepage-preview-buttons .frm_button_submit + a,
.homepage-preview-buttons .input-group-append .frm_forms .frm_button_submit + a,
.frm_forms .input-group-append .homepage-preview-buttons .frm_button_submit + a,
.homepage-preview-buttons .frm_forms .input-group-append .frm_button_submit + a,
.input-group-append .sharebar-singlepost .btn + a,
.sharebar-singlepost .input-group-append .btn + a,
.input-group-append .homepage-preview-buttons .sharebar-singlepost a + a,
.sharebar-singlepost .input-group-append .homepage-preview-buttons a + a,
.homepage-preview-buttons .input-group-append .sharebar-singlepost a + a,
.sharebar-singlepost .homepage-preview-buttons .input-group-append a + a,
.input-group-append .sharebar-singlepost a + a,
.sharebar-singlepost .input-group-append a + a,
.input-group-append .comment-form .sharebar-singlepost input[type="submit"] + a,
.sharebar-singlepost .input-group-append .comment-form input[type="submit"] + a,
.comment-form .input-group-append .sharebar-singlepost input[type="submit"] + a,
.sharebar-singlepost .comment-form .input-group-append input[type="submit"] + a,
.input-group-append .sidebar--post .sharebar-singlepost .facetwp-autocomplete-update + a,
.sharebar-singlepost .input-group-append .sidebar--post .facetwp-autocomplete-update + a,
.sidebar--post .input-group-append .sharebar-singlepost .facetwp-autocomplete-update + a,
.sharebar-singlepost .sidebar--post .input-group-append .facetwp-autocomplete-update + a,
.input-group-append .search-form .sharebar-singlepost .search-submit + a,
.sharebar-singlepost .input-group-append .search-form .search-submit + a,
.search-form .input-group-append .sharebar-singlepost .search-submit + a,
.sharebar-singlepost .search-form .input-group-append .search-submit + a,
.input-group-append .community-login-form p .sharebar-singlepost .button + a,
.sharebar-singlepost .input-group-append .community-login-form p .button + a,
.community-login-form p .input-group-append .sharebar-singlepost .button + a,
.sharebar-singlepost .community-login-form p .input-group-append .button + a,
.input-group-append .frm_forms .sharebar-singlepost .frm_button_submit + a,
.sharebar-singlepost .input-group-append .frm_forms .frm_button_submit + a,
.frm_forms .input-group-append .sharebar-singlepost .frm_button_submit + a,
.sharebar-singlepost .frm_forms .input-group-append .frm_button_submit + a,
.input-group-append .comment-form .btn + input[type="submit"],
.comment-form .input-group-append .btn + input[type="submit"],
.input-group-append .homepage-preview-buttons .comment-form a + input[type="submit"],
.comment-form .input-group-append .homepage-preview-buttons a + input[type="submit"],
.homepage-preview-buttons .input-group-append .comment-form a + input[type="submit"],
.comment-form .homepage-preview-buttons .input-group-append a + input[type="submit"],
.input-group-append .sharebar-singlepost .comment-form a + input[type="submit"],
.comment-form .input-group-append .sharebar-singlepost a + input[type="submit"],
.sharebar-singlepost .input-group-append .comment-form a + input[type="submit"],
.comment-form .sharebar-singlepost .input-group-append a + input[type="submit"],
.input-group-append .comment-form input[type="submit"] + input[type="submit"],
.comment-form .input-group-append input[type="submit"] + input[type="submit"],
.input-group-append .sidebar--post .comment-form .facetwp-autocomplete-update + input[type="submit"],
.comment-form .input-group-append .sidebar--post .facetwp-autocomplete-update + input[type="submit"],
.sidebar--post .input-group-append .comment-form .facetwp-autocomplete-update + input[type="submit"],
.comment-form .sidebar--post .input-group-append .facetwp-autocomplete-update + input[type="submit"],
.input-group-append .search-form .comment-form .search-submit + input[type="submit"],
.comment-form .input-group-append .search-form .search-submit + input[type="submit"],
.search-form .input-group-append .comment-form .search-submit + input[type="submit"],
.comment-form .search-form .input-group-append .search-submit + input[type="submit"],
.input-group-append .community-login-form p .comment-form .button + input[type="submit"],
.comment-form .input-group-append .community-login-form p .button + input[type="submit"],
.community-login-form p .input-group-append .comment-form .button + input[type="submit"],
.comment-form .community-login-form p .input-group-append .button + input[type="submit"],
.input-group-append .frm_forms .comment-form .frm_button_submit + input[type="submit"],
.comment-form .input-group-append .frm_forms .frm_button_submit + input[type="submit"],
.frm_forms .input-group-append .comment-form .frm_button_submit + input[type="submit"],
.comment-form .frm_forms .input-group-append .frm_button_submit + input[type="submit"],
.input-group-append .sidebar--post .btn + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .btn + .facetwp-autocomplete-update,
.input-group-append .homepage-preview-buttons .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .homepage-preview-buttons a + .facetwp-autocomplete-update,
.homepage-preview-buttons .input-group-append .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .homepage-preview-buttons .input-group-append a + .facetwp-autocomplete-update,
.input-group-append .sharebar-singlepost .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .sharebar-singlepost a + .facetwp-autocomplete-update,
.sharebar-singlepost .input-group-append .sidebar--post a + .facetwp-autocomplete-update,
.sidebar--post .sharebar-singlepost .input-group-append a + .facetwp-autocomplete-update,
.input-group-append .comment-form .sidebar--post input[type="submit"] + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .comment-form input[type="submit"] + .facetwp-autocomplete-update,
.comment-form .input-group-append .sidebar--post input[type="submit"] + .facetwp-autocomplete-update,
.sidebar--post .comment-form .input-group-append input[type="submit"] + .facetwp-autocomplete-update,
.input-group-append .sidebar--post .facetwp-autocomplete-update + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .facetwp-autocomplete-update + .facetwp-autocomplete-update,
.input-group-append .search-form .sidebar--post .search-submit + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .search-form .search-submit + .facetwp-autocomplete-update,
.search-form .input-group-append .sidebar--post .search-submit + .facetwp-autocomplete-update,
.sidebar--post .search-form .input-group-append .search-submit + .facetwp-autocomplete-update,
.input-group-append .community-login-form p .sidebar--post .button + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .community-login-form p .button + .facetwp-autocomplete-update,
.community-login-form p .input-group-append .sidebar--post .button + .facetwp-autocomplete-update,
.sidebar--post .community-login-form p .input-group-append .button + .facetwp-autocomplete-update,
.input-group-append .frm_forms .sidebar--post .frm_button_submit + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .frm_forms .frm_button_submit + .facetwp-autocomplete-update,
.frm_forms .input-group-append .sidebar--post .frm_button_submit + .facetwp-autocomplete-update,
.sidebar--post .frm_forms .input-group-append .frm_button_submit + .facetwp-autocomplete-update,
.input-group-append .search-form .btn + .search-submit,
.search-form .input-group-append .btn + .search-submit,
.input-group-append .homepage-preview-buttons .search-form a + .search-submit,
.search-form .input-group-append .homepage-preview-buttons a + .search-submit,
.homepage-preview-buttons .input-group-append .search-form a + .search-submit,
.search-form .homepage-preview-buttons .input-group-append a + .search-submit,
.input-group-append .sharebar-singlepost .search-form a + .search-submit,
.search-form .input-group-append .sharebar-singlepost a + .search-submit,
.sharebar-singlepost .input-group-append .search-form a + .search-submit,
.search-form .sharebar-singlepost .input-group-append a + .search-submit,
.input-group-append .comment-form .search-form input[type="submit"] + .search-submit,
.search-form .input-group-append .comment-form input[type="submit"] + .search-submit,
.comment-form .input-group-append .search-form input[type="submit"] + .search-submit,
.search-form .comment-form .input-group-append input[type="submit"] + .search-submit,
.input-group-append .sidebar--post .search-form .facetwp-autocomplete-update + .search-submit,
.search-form .input-group-append .sidebar--post .facetwp-autocomplete-update + .search-submit,
.sidebar--post .input-group-append .search-form .facetwp-autocomplete-update + .search-submit,
.search-form .sidebar--post .input-group-append .facetwp-autocomplete-update + .search-submit,
.input-group-append .search-form .search-submit + .search-submit,
.search-form .input-group-append .search-submit + .search-submit,
.input-group-append .community-login-form p .search-form .button + .search-submit,
.search-form .input-group-append .community-login-form p .button + .search-submit,
.community-login-form p .input-group-append .search-form .button + .search-submit,
.search-form .community-login-form p .input-group-append .button + .search-submit,
.input-group-append .frm_forms .search-form .frm_button_submit + .search-submit,
.search-form .input-group-append .frm_forms .frm_button_submit + .search-submit,
.frm_forms .input-group-append .search-form .frm_button_submit + .search-submit,
.search-form .frm_forms .input-group-append .frm_button_submit + .search-submit,
.input-group-append .community-login-form p .btn + .button,
.community-login-form p .input-group-append .btn + .button,
.input-group-append .homepage-preview-buttons .community-login-form p a + .button,
.community-login-form p .input-group-append .homepage-preview-buttons a + .button,
.homepage-preview-buttons .input-group-append .community-login-form p a + .button,
.community-login-form p .homepage-preview-buttons .input-group-append a + .button,
.input-group-append .sharebar-singlepost .community-login-form p a + .button,
.community-login-form p .input-group-append .sharebar-singlepost a + .button,
.sharebar-singlepost .input-group-append .community-login-form p a + .button,
.community-login-form p .sharebar-singlepost .input-group-append a + .button,
.input-group-append .comment-form .community-login-form p input[type="submit"] + .button,
.community-login-form p .input-group-append .comment-form input[type="submit"] + .button,
.comment-form .input-group-append .community-login-form p input[type="submit"] + .button,
.community-login-form p .comment-form .input-group-append input[type="submit"] + .button,
.input-group-append .sidebar--post .community-login-form p .facetwp-autocomplete-update + .button,
.community-login-form p .input-group-append .sidebar--post .facetwp-autocomplete-update + .button,
.sidebar--post .input-group-append .community-login-form p .facetwp-autocomplete-update + .button,
.community-login-form p .sidebar--post .input-group-append .facetwp-autocomplete-update + .button,
.input-group-append .search-form .community-login-form p .search-submit + .button,
.community-login-form p .input-group-append .search-form .search-submit + .button,
.search-form .input-group-append .community-login-form p .search-submit + .button,
.community-login-form p .search-form .input-group-append .search-submit + .button,
.input-group-append .community-login-form p .button + .button,
.community-login-form p .input-group-append .button + .button,
.input-group-append .frm_forms .community-login-form p .frm_button_submit + .button,
.community-login-form p .input-group-append .frm_forms .frm_button_submit + .button,
.frm_forms .input-group-append .community-login-form p .frm_button_submit + .button,
.community-login-form p .frm_forms .input-group-append .frm_button_submit + .button,
.input-group-append .frm_forms .btn + .frm_button_submit,
.frm_forms .input-group-append .btn + .frm_button_submit,
.input-group-append .homepage-preview-buttons .frm_forms a + .frm_button_submit,
.frm_forms .input-group-append .homepage-preview-buttons a + .frm_button_submit,
.homepage-preview-buttons .input-group-append .frm_forms a + .frm_button_submit,
.frm_forms .homepage-preview-buttons .input-group-append a + .frm_button_submit,
.input-group-append .sharebar-singlepost .frm_forms a + .frm_button_submit,
.frm_forms .input-group-append .sharebar-singlepost a + .frm_button_submit,
.sharebar-singlepost .input-group-append .frm_forms a + .frm_button_submit,
.frm_forms .sharebar-singlepost .input-group-append a + .frm_button_submit,
.input-group-append .comment-form .frm_forms input[type="submit"] + .frm_button_submit,
.frm_forms .input-group-append .comment-form input[type="submit"] + .frm_button_submit,
.comment-form .input-group-append .frm_forms input[type="submit"] + .frm_button_submit,
.frm_forms .comment-form .input-group-append input[type="submit"] + .frm_button_submit,
.input-group-append .sidebar--post .frm_forms .facetwp-autocomplete-update + .frm_button_submit,
.frm_forms .input-group-append .sidebar--post .facetwp-autocomplete-update + .frm_button_submit,
.sidebar--post .input-group-append .frm_forms .facetwp-autocomplete-update + .frm_button_submit,
.frm_forms .sidebar--post .input-group-append .facetwp-autocomplete-update + .frm_button_submit,
.input-group-append .search-form .frm_forms .search-submit + .frm_button_submit,
.frm_forms .input-group-append .search-form .search-submit + .frm_button_submit,
.search-form .input-group-append .frm_forms .search-submit + .frm_button_submit,
.frm_forms .search-form .input-group-append .search-submit + .frm_button_submit,
.input-group-append .community-login-form p .frm_forms .button + .frm_button_submit,
.frm_forms .input-group-append .community-login-form p .button + .frm_button_submit,
.community-login-form p .input-group-append .frm_forms .button + .frm_button_submit,
.frm_forms .community-login-form p .input-group-append .button + .frm_button_submit,
.input-group-append .frm_forms .frm_button_submit + .frm_button_submit,
.frm_forms .input-group-append .frm_button_submit + .frm_button_submit,
.input-group-append .btn + .input-group-text,
.input-group-append .homepage-preview-buttons a + .input-group-text,
.homepage-preview-buttons .input-group-append a + .input-group-text,
.input-group-append .sharebar-singlepost a + .input-group-text,
.sharebar-singlepost .input-group-append a + .input-group-text,
.input-group-append .comment-form input[type="submit"] + .input-group-text,
.comment-form .input-group-append input[type="submit"] + .input-group-text,
.input-group-append .sidebar--post .facetwp-autocomplete-update + .input-group-text,
.sidebar--post .input-group-append .facetwp-autocomplete-update + .input-group-text,
.input-group-append .search-form .search-submit + .input-group-text,
.search-form .input-group-append .search-submit + .input-group-text,
.input-group-append .community-login-form p .button + .input-group-text,
.community-login-form p .input-group-append .button + .input-group-text,
.input-group-append .frm_forms .frm_button_submit + .input-group-text,
.frm_forms .input-group-append .frm_button_submit + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .homepage-preview-buttons .input-group-text + a,
.homepage-preview-buttons .input-group-append .input-group-text + a,
.input-group-append .sharebar-singlepost .input-group-text + a,
.sharebar-singlepost .input-group-append .input-group-text + a,
.input-group-append .comment-form .input-group-text + input[type="submit"],
.comment-form .input-group-append .input-group-text + input[type="submit"],
.input-group-append .sidebar--post .input-group-text + .facetwp-autocomplete-update,
.sidebar--post .input-group-append .input-group-text + .facetwp-autocomplete-update,
.input-group-append .search-form .input-group-text + .search-submit,
.search-form .input-group-append .input-group-text + .search-submit,
.input-group-append .community-login-form p .input-group-text + .button,
.community-login-form p .input-group-append .input-group-text + .button,
.input-group-append .frm_forms .input-group-text + .frm_button_submit,
.frm_forms .input-group-append .input-group-text + .frm_button_submit {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.sidebar .input-group-lg > input:not(textarea)[type="text"][class*="facet"],
.comment-form .input-group-lg > input:not(textarea)[type="text"],
.comment-form .input-group-lg > input:not(textarea)[type="email"],
.comment-form .input-group-lg > input:not(textarea)[type="url"],
.comment-form .input-group-lg > textarea:not(textarea),
.input-group-lg > .facetwp-sort-select:not(textarea),
.search-form .input-group-lg > .search-field:not(textarea),
.input-group-lg > .facetwp-dropdown:not(textarea),
.input-group-lg > .fs-label:not(textarea),
.input-group-lg > .facetwp-autocomplete:not(textarea),
.community-login-form p .input-group-lg > input:not(textarea):not(#rememberme),
.frm_forms .input-group-lg > input:not(textarea),
.frm_forms .input-group-lg > textarea:not(textarea),
.frm_forms .input-group-lg > select:not(textarea),
.facetwp-facet-branches_archiv .input-group-lg > input:not(textarea),
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group-lg > input:not(textarea),
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group-lg > input:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.sidebar .input-group-lg > input[type="text"][class*="facet"],
.comment-form .input-group-lg > input[type="text"],
.comment-form .input-group-lg > input[type="email"],
.comment-form .input-group-lg > input[type="url"],
.comment-form .input-group-lg > textarea,
.input-group-lg > .facetwp-sort-select,
.search-form .input-group-lg > .search-field,
.input-group-lg > .facetwp-dropdown,
.input-group-lg > .fs-label,
.input-group-lg > .facetwp-autocomplete,
.community-login-form p .input-group-lg > input:not(#rememberme),
.frm_forms .input-group-lg > input,
.frm_forms .input-group-lg > textarea,
.frm_forms .input-group-lg > select,
.facetwp-facet-branches_archiv .input-group-lg > input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group-lg > input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group-lg > input,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.homepage-preview-buttons .input-group-lg > .input-group-prepend > a,
.sharebar-singlepost .input-group-lg > .input-group-prepend > a,
.comment-form .input-group-lg > .input-group-prepend > input[type="submit"],
.sidebar--post .input-group-lg > .input-group-prepend > .facetwp-autocomplete-update,
.search-form .input-group-lg > .input-group-prepend > .search-submit,
.community-login-form p .input-group-lg > .input-group-prepend > .button,
.frm_forms .input-group-lg > .input-group-prepend > .frm_button_submit,
.input-group-lg > .input-group-append > .btn,
.homepage-preview-buttons .input-group-lg > .input-group-append > a,
.sharebar-singlepost .input-group-lg > .input-group-append > a,
.comment-form .input-group-lg > .input-group-append > input[type="submit"],
.sidebar--post .input-group-lg > .input-group-append > .facetwp-autocomplete-update,
.search-form .input-group-lg > .input-group-append > .search-submit,
.community-login-form p .input-group-lg > .input-group-append > .button,
.frm_forms .input-group-lg > .input-group-append > .frm_button_submit {
  padding: 0.5rem 1rem;
  font-size: 1.375rem;
  line-height: 1.5;
  border-radius: 0;
}

.input-group-sm > .form-control:not(textarea),
.sidebar .input-group-sm > input:not(textarea)[type="text"][class*="facet"],
.comment-form .input-group-sm > input:not(textarea)[type="text"],
.comment-form .input-group-sm > input:not(textarea)[type="email"],
.comment-form .input-group-sm > input:not(textarea)[type="url"],
.comment-form .input-group-sm > textarea:not(textarea),
.input-group-sm > .facetwp-sort-select:not(textarea),
.search-form .input-group-sm > .search-field:not(textarea),
.input-group-sm > .facetwp-dropdown:not(textarea),
.input-group-sm > .fs-label:not(textarea),
.input-group-sm > .facetwp-autocomplete:not(textarea),
.community-login-form p .input-group-sm > input:not(textarea):not(#rememberme),
.frm_forms .input-group-sm > input:not(textarea),
.frm_forms .input-group-sm > textarea:not(textarea),
.frm_forms .input-group-sm > select:not(textarea),
.facetwp-facet-branches_archiv .input-group-sm > input:not(textarea),
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group-sm > input:not(textarea),
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group-sm > input:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.sidebar .input-group-sm > input[type="text"][class*="facet"],
.comment-form .input-group-sm > input[type="text"],
.comment-form .input-group-sm > input[type="email"],
.comment-form .input-group-sm > input[type="url"],
.comment-form .input-group-sm > textarea,
.input-group-sm > .facetwp-sort-select,
.search-form .input-group-sm > .search-field,
.input-group-sm > .facetwp-dropdown,
.input-group-sm > .fs-label,
.input-group-sm > .facetwp-autocomplete,
.community-login-form p .input-group-sm > input:not(#rememberme),
.frm_forms .input-group-sm > input,
.frm_forms .input-group-sm > textarea,
.frm_forms .input-group-sm > select,
.facetwp-facet-branches_archiv .input-group-sm > input,
.local-facets .facetwp-type-search .facetwp-search-wrap .input-group-sm > input,
.arts-facets .facetwp-type-search .facetwp-search-wrap .input-group-sm > input,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.homepage-preview-buttons .input-group-sm > .input-group-prepend > a,
.sharebar-singlepost .input-group-sm > .input-group-prepend > a,
.comment-form .input-group-sm > .input-group-prepend > input[type="submit"],
.sidebar--post .input-group-sm > .input-group-prepend > .facetwp-autocomplete-update,
.search-form .input-group-sm > .input-group-prepend > .search-submit,
.community-login-form p .input-group-sm > .input-group-prepend > .button,
.frm_forms .input-group-sm > .input-group-prepend > .frm_button_submit,
.input-group-sm > .input-group-append > .btn,
.homepage-preview-buttons .input-group-sm > .input-group-append > a,
.sharebar-singlepost .input-group-sm > .input-group-append > a,
.comment-form .input-group-sm > .input-group-append > input[type="submit"],
.sidebar--post .input-group-sm > .input-group-append > .facetwp-autocomplete-update,
.search-form .input-group-sm > .input-group-append > .search-submit,
.community-login-form p .input-group-sm > .input-group-append > .button,
.frm_forms .input-group-sm > .input-group-append > .frm_button_submit {
  padding: 0.25rem 0.5rem;
  font-size: 0.9625rem;
  line-height: 1.5;
  border-radius: 0;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.homepage-preview-buttons .input-group > .input-group-prepend > a,
.sharebar-singlepost .input-group > .input-group-prepend > a,
.comment-form .input-group > .input-group-prepend > input[type="submit"],
.sidebar--post .input-group > .input-group-prepend > .facetwp-autocomplete-update,
.search-form .input-group > .input-group-prepend > .search-submit,
.community-login-form p .input-group > .input-group-prepend > .button,
.frm_forms .input-group > .input-group-prepend > .frm_button_submit,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.homepage-preview-buttons .input-group:not(.has-validation) > .input-group-append:not(:last-child) > a,
.sharebar-singlepost .input-group:not(.has-validation) > .input-group-append:not(:last-child) > a,
.comment-form .input-group:not(.has-validation) > .input-group-append:not(:last-child) > input[type="submit"],
.sidebar--post .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .facetwp-autocomplete-update,
.search-form .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .search-submit,
.community-login-form p .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .button,
.frm_forms .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .frm_button_submit,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.homepage-preview-buttons .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > a,
.sharebar-singlepost .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > a,
.comment-form .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > input[type="submit"],
.sidebar--post .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .facetwp-autocomplete-update,
.search-form .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .search-submit,
.community-login-form p .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .button,
.frm_forms .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .frm_button_submit,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.homepage-preview-buttons .input-group > .input-group-append:last-child > a:not(:last-child):not(.dropdown-toggle),
.sharebar-singlepost .input-group > .input-group-append:last-child > a:not(:last-child):not(.dropdown-toggle),
.comment-form .input-group > .input-group-append:last-child > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.sidebar--post .input-group > .input-group-append:last-child > .facetwp-autocomplete-update:not(:last-child):not(.dropdown-toggle),
.search-form .input-group > .input-group-append:last-child > .search-submit:not(:last-child):not(.dropdown-toggle),
.community-login-form p .input-group > .input-group-append:last-child > .button:not(:last-child):not(.dropdown-toggle),
.frm_forms .input-group > .input-group-append:last-child > .frm_button_submit:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.homepage-preview-buttons .input-group > .input-group-append > a,
.sharebar-singlepost .input-group > .input-group-append > a,
.comment-form .input-group > .input-group-append > input[type="submit"],
.sidebar--post .input-group > .input-group-append > .facetwp-autocomplete-update,
.search-form .input-group > .input-group-append > .search-submit,
.community-login-form p .input-group > .input-group-append > .button,
.frm_forms .input-group > .input-group-append > .frm_button_submit,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.homepage-preview-buttons .input-group > .input-group-prepend:not(:first-child) > a,
.sharebar-singlepost .input-group > .input-group-prepend:not(:first-child) > a,
.comment-form .input-group > .input-group-prepend:not(:first-child) > input[type="submit"],
.sidebar--post .input-group > .input-group-prepend:not(:first-child) > .facetwp-autocomplete-update,
.search-form .input-group > .input-group-prepend:not(:first-child) > .search-submit,
.community-login-form p .input-group > .input-group-prepend:not(:first-child) > .button,
.frm_forms .input-group > .input-group-prepend:not(:first-child) > .frm_button_submit,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.homepage-preview-buttons .input-group > .input-group-prepend:first-child > a:not(:first-child),
.sharebar-singlepost .input-group > .input-group-prepend:first-child > a:not(:first-child),
.comment-form .input-group > .input-group-prepend:first-child > input:not(:first-child)[type="submit"],
.sidebar--post .input-group > .input-group-prepend:first-child > .facetwp-autocomplete-update:not(:first-child),
.search-form .input-group > .input-group-prepend:first-child > .search-submit:not(:first-child),
.community-login-form p .input-group > .input-group-prepend:first-child > .button:not(:first-child),
.frm_forms .input-group > .input-group-prepend:first-child > .frm_button_submit:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.65rem;
  padding-left: 1.5rem;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.325rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #ee0000;
  background-color: #ee0000;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ff6f6f;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #ffa2a2;
  border-color: #ffa2a2;
}

.custom-control-input[disabled] ~ .custom-control-label,
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.325rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}

.custom-control-label::after {
  position: absolute;
  top: 0.325rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 5px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #ee0000;
  background-color: #ee0000;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(238, 0, 0, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(238, 0, 0, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(238, 0, 0, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.325rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -o-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -o-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
       -o-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(238, 0, 0, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #ff6f6f;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.9625rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.375rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #ff6f6f;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 5px 5px 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #ee0000;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #ffa2a2;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #ee0000;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #ffa2a2;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #ee0000;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #ffa2a2;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link,
.sitewide-footer .footer__nav li a {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.sitewide-footer .footer__nav li a:hover,
.nav-link:focus,
.sitewide-footer .footer__nav li a:focus {
  text-decoration: none;
}

.nav-link.disabled,
.sitewide-footer .footer__nav li a.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link,
.nav-tabs .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav li .nav-tabs a {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .sitewide-footer .footer__nav li a:hover,
.sitewide-footer .footer__nav li .nav-tabs a:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .sitewide-footer .footer__nav li a:focus,
.sitewide-footer .footer__nav li .nav-tabs a:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled,
.nav-tabs .sitewide-footer .footer__nav li a.disabled,
.sitewide-footer .footer__nav li .nav-tabs a.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .sitewide-footer .footer__nav li a.active,
.sitewide-footer .footer__nav li .nav-tabs a.active,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .sitewide-footer .footer__nav li.show .nav-link,
.sitewide-footer .footer__nav .nav-tabs li.show .nav-link,
.nav-tabs .nav-item.show .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav li .nav-tabs .nav-item.show a,
.nav-tabs .sitewide-footer .footer__nav li.show a,
.sitewide-footer .footer__nav .nav-tabs li.show a {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link,
.nav-pills .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav li .nav-pills a {
  background: none;
  border: 0;
  border-radius: 5px;
}

.nav-pills .nav-link.active,
.nav-pills .sitewide-footer .footer__nav li a.active,
.sitewide-footer .footer__nav li .nav-pills a.active,
.nav-pills .show > .nav-link,
.nav-pills .sitewide-footer .footer__nav li .show > a,
.sitewide-footer .footer__nav li .nav-pills .show > a {
  color: #fff;
  background-color: #ee0000;
}

.nav-fill > .nav-link,
.sitewide-footer .footer__nav li .nav-fill > a,
.nav-fill .nav-item,
.nav-fill .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .nav-fill li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.sitewide-footer .footer__nav li .nav-justified > a,
.nav-justified .nav-item,
.nav-justified .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .nav-justified li {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .branch-header .infobox-holder,
.branch-header .navbar .infobox-holder,
.navbar .branch-header .slide__content,
.branch-header .navbar .slide__content,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.29375rem;
  padding-bottom: 0.29375rem;
  margin-right: 1rem;
  font-size: 1.375rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link,
.navbar-nav .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav li .navbar-nav a {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.375rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .branch-header .navbar-expand-sm > .infobox-holder,
  .branch-header .navbar-expand-sm > .slide__content,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link,
  .navbar-expand-sm .navbar-nav .sitewide-footer .footer__nav li a,
  .sitewide-footer .footer__nav li .navbar-expand-sm .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .branch-header .navbar-expand-sm > .infobox-holder,
  .branch-header .navbar-expand-sm > .slide__content,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .branch-header .navbar-expand-md > .infobox-holder,
  .branch-header .navbar-expand-md > .slide__content,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link,
  .navbar-expand-md .navbar-nav .sitewide-footer .footer__nav li a,
  .sitewide-footer .footer__nav li .navbar-expand-md .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .branch-header .navbar-expand-md > .infobox-holder,
  .branch-header .navbar-expand-md > .slide__content,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .branch-header .navbar-expand-lg > .infobox-holder,
  .branch-header .navbar-expand-lg > .slide__content,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link,
  .navbar-expand-lg .navbar-nav .sitewide-footer .footer__nav li a,
  .sitewide-footer .footer__nav li .navbar-expand-lg .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .branch-header .navbar-expand-lg > .infobox-holder,
  .branch-header .navbar-expand-lg > .slide__content,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .branch-header .navbar-expand-xl > .infobox-holder,
  .branch-header .navbar-expand-xl > .slide__content,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link,
  .navbar-expand-xl .navbar-nav .sitewide-footer .footer__nav li a,
  .sitewide-footer .footer__nav li .navbar-expand-xl .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .branch-header .navbar-expand-xl > .infobox-holder,
  .branch-header .navbar-expand-xl > .slide__content,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-expand > .container,
.branch-header .navbar-expand > .infobox-holder,
.branch-header .navbar-expand > .slide__content,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link,
.navbar-expand .navbar-nav .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav li .navbar-expand .navbar-nav a {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.branch-header .navbar-expand > .infobox-holder,
.branch-header .navbar-expand > .slide__content,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav a {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li a:hover,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav a:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li a:focus,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav a:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li a.disabled,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav a.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li .show > a,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav .show > a,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li .active > a,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav .active > a,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li a.show,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav a.show,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .sitewide-footer .footer__nav li a.active,
.sitewide-footer .footer__nav li .navbar-light .navbar-nav a.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav a {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li a:hover,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav a:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li a:focus,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav a:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li a.disabled,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav a.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li .show > a,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav .show > a,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li .active > a,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav .active > a,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li a.show,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav a.show,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .sitewide-footer .footer__nav li a.active,
.sitewide-footer .footer__nav li .navbar-dark .navbar-nav a.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: 4px 4px 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 4px 4px;
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: 4px;
}

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }

  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 5px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 5px;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #ee0000;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #a20000;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.375rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.9625rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.badge,
.sidebar--event .facetwp-checkbox .facetwp-counter,
.module--card .post-categories li,
.module--event .module__body .kicker .event__category {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 5px;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge,
  .sidebar--event .facetwp-checkbox .facetwp-counter,
  .module--card .post-categories li,
  .module--event .module__body .kicker .event__category {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

a.badge:hover,
.sidebar--event .facetwp-checkbox a.facetwp-counter:hover,
.module--event .module__body .kicker a.event__category:hover,
a.badge:focus,
.sidebar--event .facetwp-checkbox a.facetwp-counter:focus,
.module--event .module__body .kicker a.event__category:focus {
  text-decoration: none;
}

.badge:empty,
.sidebar--event .facetwp-checkbox .facetwp-counter:empty,
.module--card .post-categories li:empty,
.module--event .module__body .kicker .event__category:empty {
  display: none;
}

.btn .badge,
.homepage-preview-buttons a .badge,
.sharebar-singlepost a .badge,
.comment-form input[type="submit"] .badge,
.sidebar--post .facetwp-autocomplete-update .badge,
.search-form .search-submit .badge,
.community-login-form p .button .badge,
.frm_forms .frm_button_submit .badge,
.btn .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .btn .facetwp-counter,
.homepage-preview-buttons a .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .homepage-preview-buttons a .facetwp-counter,
.sharebar-singlepost a .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .sharebar-singlepost a .facetwp-counter,
.comment-form input[type="submit"] .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .comment-form input[type="submit"] .facetwp-counter,
.sidebar--post .facetwp-autocomplete-update .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .sidebar--post .facetwp-autocomplete-update .facetwp-counter,
.search-form .search-submit .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .search-form .search-submit .facetwp-counter,
.community-login-form p .button .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .community-login-form p .button .facetwp-counter,
.frm_forms .frm_button_submit .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .frm_forms .frm_button_submit .facetwp-counter,
.btn .module--card .post-categories li,
.module--card .post-categories .btn li,
.homepage-preview-buttons a .module--card .post-categories li,
.module--card .post-categories .homepage-preview-buttons a li,
.sharebar-singlepost a .module--card .post-categories li,
.module--card .post-categories .sharebar-singlepost a li,
.comment-form input[type="submit"] .module--card .post-categories li,
.module--card .post-categories .comment-form input[type="submit"] li,
.sidebar--post .facetwp-autocomplete-update .module--card .post-categories li,
.module--card .post-categories .sidebar--post .facetwp-autocomplete-update li,
.search-form .search-submit .module--card .post-categories li,
.module--card .post-categories .search-form .search-submit li,
.community-login-form p .button .module--card .post-categories li,
.module--card .post-categories .community-login-form p .button li,
.frm_forms .frm_button_submit .module--card .post-categories li,
.module--card .post-categories .frm_forms .frm_button_submit li,
.btn .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .btn .event__category,
.homepage-preview-buttons a .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .homepage-preview-buttons a .event__category,
.sharebar-singlepost a .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .sharebar-singlepost a .event__category,
.comment-form input[type="submit"] .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .comment-form input[type="submit"] .event__category,
.sidebar--post .facetwp-autocomplete-update .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .sidebar--post .facetwp-autocomplete-update .event__category,
.search-form .search-submit .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .search-form .search-submit .event__category,
.community-login-form p .button .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .community-login-form p .button .event__category,
.frm_forms .frm_button_submit .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .frm_forms .frm_button_submit .event__category {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #ee0000;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #bb0000;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
}

.badge-secondary {
  color: #212529;
  background-color: #ced4da;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #212529;
  background-color: #b1bbc4;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #00CB00;
}

a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #009800;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 203, 0, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #0f9999;
}

a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #0a6b6b;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(15, 153, 153, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(15, 153, 153, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffff00;
}

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #cccc00;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 0, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #ee0000;
}

a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #bb0000;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(238, 0, 0, 0.5);
}

.badge-light,
.module--card .post-categories li {
  color: #212529;
  background-color: #e9ecef;
}

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #cbd3da;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.badge-white {
  color: #212529;
  background-color: #fff;
}

a.badge-white:hover,
a.badge-white:focus {
  color: #212529;
  background-color: #e6e6e6;
}

a.badge-white:focus,
a.badge-white.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 5px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4.15rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #7c0000;
  background-color: #fccccc;
  border-color: #fab8b8;
}

.alert-primary hr {
  border-top-color: #f8a0a0;
}

.alert-primary .alert-link {
  color: #490000;
}

.alert-secondary {
  color: #6b6e71;
  background-color: #f5f6f8;
  border-color: #f1f3f5;
}

.alert-secondary hr {
  border-top-color: #e2e6ea;
}

.alert-secondary .alert-link {
  color: #525557;
}

.alert-success {
  color: #006a00;
  background-color: #ccf5cc;
  border-color: #b8f0b8;
}

.alert-success hr {
  border-top-color: #a3eca3;
}

.alert-success .alert-link {
  color: #003700;
}

.alert-info {
  color: #085050;
  background-color: #cfebeb;
  border-color: #bce2e2;
}

.alert-info hr {
  border-top-color: #aadada;
}

.alert-info .alert-link {
  color: #032222;
}

.alert-warning {
  color: #858500;
  background-color: #ffffcc;
  border-color: #ffffb8;
}

.alert-warning hr {
  border-top-color: #ffff9f;
}

.alert-warning .alert-link {
  color: #525200;
}

.alert-danger {
  color: #7c0000;
  background-color: #fccccc;
  border-color: #fab8b8;
}

.alert-danger hr {
  border-top-color: #f8a0a0;
}

.alert-danger .alert-link {
  color: #490000;
}

.alert-light {
  color: #797b7c;
  background-color: #fbfbfc;
  border-color: #f9fafb;
}

.alert-light hr {
  border-top-color: #eaedf1;
}

.alert-light .alert-link {
  color: #606162;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.alert-white {
  color: #858585;
  background-color: white;
  border-color: white;
}

.alert-white hr {
  border-top-color: #f2f2f2;
}

.alert-white .alert-link {
  color: #6c6c6c;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.825rem;
  background-color: #e9ecef;
  border-radius: 5px;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ee0000;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
       -o-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
         -o-animation: none;
            animation: none;
  }
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 5px;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #343a40;
  background-color: #e9ecef;
}

.list-group-item,
.offside .list-group-flush .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .offside .list-group-flush li {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child,
.offside .list-group-flush .nav-item:first-child,
.offside .list-group-flush .sitewide-footer .footer__nav li:first-child,
.sitewide-footer .footer__nav .offside .list-group-flush li:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child,
.offside .list-group-flush .nav-item:last-child,
.offside .list-group-flush .sitewide-footer .footer__nav li:last-child,
.sitewide-footer .footer__nav .offside .list-group-flush li:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled,
.offside .list-group-flush .disabled.nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li.disabled,
.sitewide-footer .footer__nav .offside .list-group-flush li.disabled,
.list-group-item:disabled,
.offside .list-group-flush .nav-item:disabled,
.offside .list-group-flush .sitewide-footer .footer__nav li:disabled,
.sitewide-footer .footer__nav .offside .list-group-flush li:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active,
.offside .list-group-flush .active.nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li.active,
.sitewide-footer .footer__nav .offside .list-group-flush li.active {
  z-index: 2;
  color: #fff;
  background-color: #ee0000;
  border-color: #ee0000;
}

.list-group-item + .list-group-item,
.offside .list-group-flush .nav-item + .list-group-item,
.offside .list-group-flush .sitewide-footer .footer__nav li + .list-group-item,
.sitewide-footer .footer__nav .offside .list-group-flush li + .list-group-item,
.offside .list-group-flush .list-group-item + .nav-item,
.offside .list-group-flush .nav-item + .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li + .nav-item,
.sitewide-footer .footer__nav .offside .list-group-flush li + .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-item + li,
.offside .list-group-flush .sitewide-footer .footer__nav .nav-item + li,
.offside .list-group-flush .sitewide-footer .footer__nav li + li,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-item + li,
.sitewide-footer .footer__nav .offside .list-group-flush .nav-item + li,
.sitewide-footer .footer__nav .offside .list-group-flush li + li {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active,
.offside .list-group-flush .nav-item + .list-group-item.active,
.offside .list-group-flush .sitewide-footer .footer__nav li + .list-group-item.active,
.sitewide-footer .footer__nav .offside .list-group-flush li + .list-group-item.active,
.offside .list-group-flush .list-group-item + .active.nav-item,
.offside .list-group-flush .nav-item + .active.nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li + .active.nav-item,
.sitewide-footer .footer__nav .offside .list-group-flush li + .active.nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-item + li.active,
.offside .list-group-flush .sitewide-footer .footer__nav .nav-item + li.active,
.offside .list-group-flush .sitewide-footer .footer__nav li + li.active,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-item + li.active,
.sitewide-footer .footer__nav .offside .list-group-flush .nav-item + li.active,
.sitewide-footer .footer__nav .offside .list-group-flush li + li.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child,
.offside .list-group-flush .list-group-horizontal > .nav-item:first-child,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li:first-child,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li:first-child {
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child,
.offside .list-group-flush .list-group-horizontal > .nav-item:last-child,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li:last-child,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li:last-child {
  border-top-right-radius: 5px;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active,
.offside .list-group-flush .list-group-horizontal > .active.nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li.active,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item,
.offside .list-group-flush .list-group-horizontal > .nav-item + .list-group-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li + .list-group-item,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li + .list-group-item,
.offside .list-group-flush .list-group-horizontal > .list-group-item + .nav-item,
.offside .list-group-flush .list-group-horizontal > .nav-item + .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li + .nav-item,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li + .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > .list-group-item + li,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > .nav-item + li,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li + li,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > .list-group-item + li,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > .nav-item + li,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li + li {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active,
.offside .list-group-flush .list-group-horizontal > .nav-item + .list-group-item.active,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li + .list-group-item.active,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li + .list-group-item.active,
.offside .list-group-flush .list-group-horizontal > .list-group-item + .active.nav-item,
.offside .list-group-flush .list-group-horizontal > .nav-item + .active.nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li + .active.nav-item,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li + .active.nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > .list-group-item + li.active,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > .nav-item + li.active,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal > li + li.active,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > .list-group-item + li.active,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > .nav-item + li.active,
.sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal > li + li.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .list-group-horizontal-sm > .list-group-item:first-child,
  .offside .list-group-flush .list-group-horizontal-sm > .nav-item:first-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li:first-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li:first-child {
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item:last-child,
  .offside .list-group-flush .list-group-horizontal-sm > .nav-item:last-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li:last-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li:last-child {
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-sm > .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-sm > .nav-item + .list-group-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li + .list-group-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-sm > .list-group-item + .nav-item,
  .offside .list-group-flush .list-group-horizontal-sm > .nav-item + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li + .nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > .list-group-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > .nav-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > .list-group-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > .nav-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li + li {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-sm > .nav-item + .list-group-item.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li + .list-group-item.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-sm > .list-group-item + .active.nav-item,
  .offside .list-group-flush .list-group-horizontal-sm > .nav-item + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li + .active.nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > .list-group-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > .nav-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-sm > li + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > .list-group-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > .nav-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-sm > li + li.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .list-group-horizontal-md > .list-group-item:first-child,
  .offside .list-group-flush .list-group-horizontal-md > .nav-item:first-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li:first-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li:first-child {
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item:last-child,
  .offside .list-group-flush .list-group-horizontal-md > .nav-item:last-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li:last-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li:last-child {
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-md > .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li.active {
    margin-top: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-md > .nav-item + .list-group-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li + .list-group-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-md > .list-group-item + .nav-item,
  .offside .list-group-flush .list-group-horizontal-md > .nav-item + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li + .nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > .list-group-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > .nav-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > .list-group-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > .nav-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li + li {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-md > .nav-item + .list-group-item.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li + .list-group-item.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-md > .list-group-item + .active.nav-item,
  .offside .list-group-flush .list-group-horizontal-md > .nav-item + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li + .active.nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > .list-group-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > .nav-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-md > li + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > .list-group-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > .nav-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-md > li + li.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .list-group-horizontal-lg > .list-group-item:first-child,
  .offside .list-group-flush .list-group-horizontal-lg > .nav-item:first-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li:first-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li:first-child {
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item:last-child,
  .offside .list-group-flush .list-group-horizontal-lg > .nav-item:last-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li:last-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li:last-child {
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-lg > .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-lg > .nav-item + .list-group-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li + .list-group-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-lg > .list-group-item + .nav-item,
  .offside .list-group-flush .list-group-horizontal-lg > .nav-item + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li + .nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > .list-group-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > .nav-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > .list-group-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > .nav-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li + li {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-lg > .nav-item + .list-group-item.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li + .list-group-item.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-lg > .list-group-item + .active.nav-item,
  .offside .list-group-flush .list-group-horizontal-lg > .nav-item + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li + .active.nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > .list-group-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > .nav-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-lg > li + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > .list-group-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > .nav-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-lg > li + li.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .list-group-horizontal-xl > .list-group-item:first-child,
  .offside .list-group-flush .list-group-horizontal-xl > .nav-item:first-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li:first-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li:first-child {
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item:last-child,
  .offside .list-group-flush .list-group-horizontal-xl > .nav-item:last-child,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li:last-child,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li:last-child {
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-xl > .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-xl > .nav-item + .list-group-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li + .list-group-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li + .list-group-item,
  .offside .list-group-flush .list-group-horizontal-xl > .list-group-item + .nav-item,
  .offside .list-group-flush .list-group-horizontal-xl > .nav-item + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li + .nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li + .nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > .list-group-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > .nav-item + li,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > .list-group-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > .nav-item + li,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li + li {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-xl > .nav-item + .list-group-item.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li + .list-group-item.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li + .list-group-item.active,
  .offside .list-group-flush .list-group-horizontal-xl > .list-group-item + .active.nav-item,
  .offside .list-group-flush .list-group-horizontal-xl > .nav-item + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li + .active.nav-item,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li + .active.nav-item,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > .list-group-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > .nav-item + li.active,
  .offside .list-group-flush .sitewide-footer .footer__nav .list-group-horizontal-xl > li + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > .list-group-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > .nav-item + li.active,
  .sitewide-footer .footer__nav .offside .list-group-flush .list-group-horizontal-xl > li + li.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item,
.offside .list-group-flush > .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-flush > li,
.sitewide-footer .footer__nav .offside .list-group-flush > li {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child,
.offside .list-group-flush > .nav-item:last-child,
.offside .list-group-flush .sitewide-footer .footer__nav .list-group-flush > li:last-child,
.sitewide-footer .footer__nav .offside .list-group-flush > li:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #7c0000;
  background-color: #fab8b8;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #7c0000;
  background-color: #f8a0a0;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #7c0000;
  border-color: #7c0000;
}

.list-group-item-secondary {
  color: #6b6e71;
  background-color: #f1f3f5;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #6b6e71;
  background-color: #e2e6ea;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #6b6e71;
  border-color: #6b6e71;
}

.list-group-item-success {
  color: #006a00;
  background-color: #b8f0b8;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #006a00;
  background-color: #a3eca3;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #006a00;
  border-color: #006a00;
}

.list-group-item-info {
  color: #085050;
  background-color: #bce2e2;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #085050;
  background-color: #aadada;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #085050;
  border-color: #085050;
}

.list-group-item-warning {
  color: #858500;
  background-color: #ffffb8;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #858500;
  background-color: #ffff9f;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #858500;
  border-color: #858500;
}

.list-group-item-danger {
  color: #7c0000;
  background-color: #fab8b8;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #7c0000;
  background-color: #f8a0a0;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #7c0000;
  border-color: #7c0000;
}

.list-group-item-light {
  color: #797b7c;
  background-color: #f9fafb;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #797b7c;
  background-color: #eaedf1;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #797b7c;
  border-color: #797b7c;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.list-group-item-white {
  color: #858585;
  background-color: white;
}

.list-group-item-white.list-group-item-action:hover,
.list-group-item-white.list-group-item-action:focus {
  color: #858585;
  background-color: #f2f2f2;
}

.list-group-item-white.list-group-item-action.active {
  color: #fff;
  background-color: #858585;
  border-color: #858585;
}

.close {
  float: right;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
       -o-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
       -o-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Sparkasse", arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.9625rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #ee0000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #ee0000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #ee0000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #ee0000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #ee0000;
  border-radius: 5px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Sparkasse", arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.9625rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow,
.bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before,
.bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow,
.bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0 0;
}

.bs-popover-right > .arrow::before,
.bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow,
.bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before,
.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow,
.bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0 0;
}

.bs-popover-left > .arrow::before,
.bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #343a40;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: -o-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  -o-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary,
.offside .list-group-flush .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .offside .list-group-flush li,
.community-login-form p .button {
  background-color: #ee0000 !important;
}

a.bg-primary:hover,
.offside .list-group-flush a.nav-item:hover,
.community-login-form p a.button:hover,
a.bg-primary:focus,
.offside .list-group-flush a.nav-item:focus,
.community-login-form p a.button:focus,
button.bg-primary:hover,
.offside .list-group-flush button.nav-item:hover,
.community-login-form p button.button:hover,
button.bg-primary:focus,
.offside .list-group-flush button.nav-item:focus,
.community-login-form p button.button:focus {
  background-color: #bb0000 !important;
}

.bg-secondary {
  background-color: #ced4da !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #b1bbc4 !important;
}

.bg-success {
  background-color: #00CB00 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #009800 !important;
}

.bg-info {
  background-color: #0f9999 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #0a6b6b !important;
}

.bg-warning {
  background-color: #ffff00 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #cccc00 !important;
}

.bg-danger {
  background-color: #ee0000 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bb0000 !important;
}

.bg-light {
  background-color: #e9ecef !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #cbd3da !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

a.bg-white:hover,
a.bg-white:focus,
button.bg-white:hover,
button.bg-white:focus {
  background-color: #e6e6e6 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border,
.module--teaser-content {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom,
.branch-info__header {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #ee0000 !important;
}

.border-secondary {
  border-color: #ced4da !important;
}

.border-success {
  border-color: #00CB00 !important;
}

.border-info {
  border-color: #0f9999 !important;
}

.border-warning {
  border-color: #ffff00 !important;
}

.border-danger {
  border-color: #ee0000 !important;
}

.border-light {
  border-color: #e9ecef !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0 !important;
}

.rounded,
figure .img-fluid,
figure .wp-caption img,
.wp-caption figure img,
.btn,
.homepage-preview-buttons a,
.sharebar-singlepost a,
.comment-form input[type="submit"],
.sidebar--post .facetwp-autocomplete-update,
.search-form .search-submit,
.community-login-form p .button,
.frm_forms .frm_button_submit,
.module--card,
.welcome--immo .facetwp-type-dropdown,
.welcome--event .facetwp-type-dropdown,
.local-facets .facetwp-type-map,
.arts-facets .facetwp-type-map {
  border-radius: 5px !important;
}

.rounded-top {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

.rounded-right {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-left {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-lg {
  border-radius: 0 !important;
}

.rounded-circle,
.module--branchwelcome .module__body .welcome-image {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none,
.btn__switch-toggle .facetwp-checkbox[data-value="0"],
.facetwp-facet-event_show_top_events .facetwp-checkbox[data-value="0"] {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex,
.sidebar--event .facetwp-checkbox,
.sidebar .facetwp-facet-event.facetwp-type-date_range,
.blogpost-header,
.module--event .module__body .kicker,
.tile-item--overlay .content-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column,
.tile-item--overlay .content-wrapper {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center,
.blogpost-header,
.tile-item--overlay .content-wrapper {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between,
.module--event .module__body .kicker {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end,
.blogpost-header {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center,
.module--event .module__body .kicker,
.tile-item--overlay .content-wrapper {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center,
.module--event .module__body .kicker {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right,
.module--branchwelcome .module__body .welcome-image {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden,
.module--card {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm,
.module--search-spot.is-active,
.module--employeeslider .employee-image,
.module--event .date,
.module--event .date .date__day {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow,
.offside,
.red-btn:hover,
.module--card,
.local-facets .facetwp-type-map,
.arts-facets .facetwp-type-map,
.district-branch__link {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg,
.immo-grid .immo-item .card:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100,
figure.img-wiht-overlay::before,
.fs-wrap,
.sidebar--post .facetwp-autocomplete-update,
.tile-item--overlay .content-wrapper {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100,
figure.img-wiht-overlay::before,
.tile-item--overlay .content-wrapper {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0,
.fallbackevents-district .module--event > a,
.fallbackevents-district .module--event > .event__holder {
  margin-right: 0 !important;
}

.mb-0,
.widget_categories ul,
.widget_tag_cloud ul,
.line-bottom,
.module--event .module__body .event-details,
.district-post__date,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0,
.fallbackevents-district .module--event > a,
.fallbackevents-district .module--event > .event__holder {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.module--event .module__body .event-details,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.module--posts-branch .module__body,
.module--event .module__body .kicker,
.fallbackevents-district .module--event .module__body h3,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2,
.branch-header .slide__title {
  margin-top: 0.5rem !important;
}

.mr-2,
.module--magazine-textbox .module__figure figcaption .caption,
.branch-attributes i,
.direct-branch__content ul i,
.direct-branch__content ul li::before,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.module--branchwelcome .module__body .welcome-image,
.module--employeeslider.employees-small,
.module--event .module__body h1,
.module--event .module__body h2,
.my-2,
.branch-header .slide__title {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.module--branchwelcome .module__body .welcome-image,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.welcome .spotlogo,
.sidebar--offcanvas .sidebar__body .widget,
.blog.home-data .sidebar__header,
.archive.category .sidebar__header,
.module--author .author-image,
.module--magazine-listical .module__image,
.module--magazine-listical .module__title,
.section-title,
.module--event-chalkboard .event__item,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.homepage-preview-buttons li,
.blogpost h2.subline,
.widget,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5,
.module--magazine-divider,
.blogpost__body > hr {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.module--magazine-listical .listical__item,
.branch-info__header,
.my-5,
.module--magazine-divider,
.blogpost__body > hr {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.immo-slider .slide-content,
.module--district .module__body,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1,
.module--event .date .date__month,
.module--event .date .date__day {
  padding: 0.25rem !important;
}

.pt-1,
.py-1,
.module--magazine-textbox .module__figure figcaption,
.district-list .district-title {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.post-type-archive-event .main,
.py-1,
.module--magazine-textbox .module__figure figcaption,
.district-list .district-title {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2,
.magazine-slider .slide .slide-caption,
.wp-caption-text,
.module--employeeslider.employees-small .module__body,
.district-list .district-branches,
.immo-slider .slide-content {
  padding: 0.5rem !important;
}

.pt-2,
.module--card .module__meta,
.py-2,
.module--card .module__body,
.branch-archive__branch div[class*="col"],
.direct-branch__content ul li,
.fallbackevents-district .module--event > a,
.fallbackevents-district .module--event > .event__holder {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2,
.module--magazine-textbox .module__figure figcaption,
.module--calculators::before,
.module--card .module__meta,
.district-list .district-title,
.module--event-chalkboard h4 {
  padding-right: 0.5rem !important;
}

.pb-2,
.section-title,
.py-2,
.module--card .module__body,
.branch-archive__branch div[class*="col"],
.direct-branch__content ul li,
.fallbackevents-district .module--event > a,
.fallbackevents-district .module--event > .event__holder {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2,
.module--magazine-textbox .module__figure figcaption,
.module--calculators::before,
.module--card .module__meta,
.district-list .district-title,
.module--event-chalkboard h4 {
  padding-left: 0.5rem !important;
}

.p-3,
.sidebar--offcanvas .sidebar__body,
.blogpost-header__content,
.module--magazine-infobox,
.module--teaser-content,
.branch-header .headerslides__infobox,
.branch-header .header-slides-control,
.module--employeeslider .module__body,
.module--event-chalkboard {
  padding: 1rem !important;
}

.pt-3,
.header-fullbleed + .content,
.py-3,
.sitewide-footer,
.branch-header .slide__content {
  padding-top: 1rem !important;
}

.pr-3,
.px-3,
.module--card .module__body,
.branch-header .slide__title span {
  padding-right: 1rem !important;
}

.pb-3,
.content,
.sidebar--offcanvas .sidebar__body .widget,
.branch-header .infobox-holder,
.branch-info__header,
.py-3,
.sitewide-footer,
.branch-header .slide__content {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3,
.module--card .module__body,
.branch-header .slide__title span {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4,
.module--event > a,
.module--event > .event__holder {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.widget,
.module--author,
.py-4,
.module--event > a,
.module--event > .event__holder {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.sidebar--offcanvas .sidebar__body,
.post-type-archive-event .sidebar,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto,
.spot-nav .toggleMobileNav {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto,
.spot-nav .toggleMobileNav {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3,
  .branch-archive__branch div[class*="col"] {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .post-type-archive-event .main,
  .py-md-3,
  .branch-archive__branch div[class*="col"] {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .header-fullbleed + .content,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .content,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center,
.tile-item--overlay .content-wrapper {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white,
.spot-nav #spot-main-menu li a,
.offside,
.offside a,
.community-login-form p .button,
.tile-item--overlay .content-wrapper {
  color: #fff !important;
}

.text-primary {
  color: #ee0000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #a20000 !important;
}

.text-secondary {
  color: #ced4da !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #a2aeb9 !important;
}

.text-success,
.branch-attributes i,
.direct-branch__content ul i,
.direct-branch__content ul li::before {
  color: #00CB00 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #007f00 !important;
}

.text-info {
  color: #0f9999 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #085353 !important;
}

.text-warning {
  color: #ffff00 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #b3b300 !important;
}

.text-danger {
  color: #ee0000 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #a20000 !important;
}

.text-light {
  color: #e9ecef !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #bdc6cf !important;
}

.text-dark,
.sidebar--immo .facetwp-checkbox .facetwp-counter,
.immo-slider .immo-link,
.immo-slider .immo-link h3 {
  color: #343a40 !important;
}

a.text-dark:hover,
.sidebar--immo .facetwp-checkbox a.facetwp-counter:hover,
.immo-slider a.immo-link:hover,
a.text-dark:focus,
.sidebar--immo .facetwp-checkbox a.facetwp-counter:focus,
.immo-slider a.immo-link:focus {
  color: #121416 !important;
}

.text-white,
.spot-nav #spot-main-menu li a,
.offside,
.offside a,
.community-login-form p .button,
.tile-item--overlay .content-wrapper {
  color: #fff !important;
}

a.text-white:hover,
.spot-nav #spot-main-menu li a:hover,
a.offside:hover,
.offside a:hover,
.community-login-form p a.button:hover,
.tile-item--overlay a.content-wrapper:hover,
a.text-white:focus,
.spot-nav #spot-main-menu li a:focus,
a.offside:focus,
.offside a:focus,
.community-login-form p a.button:focus,
.tile-item--overlay a.content-wrapper:focus {
  color: #d9d9d9 !important;
}

.text-body {
  color: #343a40 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container,
  .branch-header .infobox-holder,
  .branch-header .slide__content {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge,
  .sidebar--event .facetwp-checkbox .facetwp-counter,
  .module--card .post-categories li,
  .module--event .module__body .kicker .event__category {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/** Import theme styles */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  padding-top: 86px;
  background-color: #343a40;
}

@media (min-width: 768px) {
  body {
    padding-top: 76px;
  }
}

body.mce-content-body,
body#tinymce {
  padding-top: 10px;
  background-color: #FFFFFF !important;
  background-image: none;
  text-align: left;
}

.spot {
  background-color: #fafafa;
}

.full-width {
  margin: 0 calc(50% - 50vw);
}

.abs-height-100 {
  min-height: 100px;
}

.abs-height-150 {
  min-height: 150px;
}

.abs-height-200 {
  min-height: 200px;
}

.abs-height-300 {
  min-height: 300px;
}

.abs-height-400 {
  min-height: 400px;
}

.abs-height-500 {
  min-height: 500px;
}

/**
	* rounded class
	*/

/**
  * @section	Opacity
  */

.opacity--20 {
  opacity: .2;
}

.opacity--40 {
  opacity: .4;
}

.opacity--60 {
  opacity: .6;
}

.opacity--80 {
  opacity: .8;
}

.bg-white-90 {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' ><filter id='blur3'><feGaussianBlur in='SourceGraphic' stdDeviation='3' /></filter></svg>#blur3");
  backdrop-filter: blur(3px);
}

.bg-white-80,
.magazine-slider .slide .slide-caption {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' ><filter id='blur3'><feGaussianBlur in='SourceGraphic' stdDeviation='3' /></filter></svg>#blur3");
  backdrop-filter: blur(3px);
}

.sharebar {
  margin-bottom: 0;
}

.sharebar a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .sharebar li.whatsapp {
    display: none;
  }
}

.sharebar.iconsonly span {
  display: none;
}

hr {
  border-top: 3px solid #eee;
}

.no-underline:hover {
  text-decoration: none;
}

p:last-child,
address:last-child {
  margin-bottom: 0;
}

.slider-control,
.pos-module .pos-slides .slick-prev,
.pos-module .pos-slides .slick-next {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 666;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0;
  background-color: #f8f9fa;
  border: none;
  border-radius: 50%;
  color: #6c757d;
  line-height: 48px;
  width: 48px;
  height: 48px;
  font-size: 28.8px;
  cursor: pointer;
  text-align: center;
  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;
}

@media (prefers-reduced-motion: reduce) {
  .slider-control,
  .pos-module .pos-slides .slick-prev,
  .pos-module .pos-slides .slick-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.slider-control:hover,
.pos-module .pos-slides .slick-prev:hover,
.pos-module .pos-slides .slick-next:hover {
  color: #ee0000;
}

.slider-control:focus,
.pos-module .pos-slides .slick-prev:focus,
.pos-module .pos-slides .slick-next:focus {
  outline: 0;
}

.slider-control.prev,
.pos-module .pos-slides .prev.slick-prev,
.pos-module .pos-slides .prev.slick-next {
  left: 5px;
}

.slider-control.next,
.pos-module .pos-slides .next.slick-prev,
.pos-module .pos-slides .next.slick-next {
  right: 5px;
}

.slider-control--offset.prev {
  left: -20px;
}

.slider-control--offset.next {
  right: -20px;
}

@media (max-width: 991.98px) {
  .slider-control--offset.prev {
    left: 5px !important;
  }

  .slider-control--offset.next {
    right: 5px !important;
  }
}

@media (max-width: 991.98px) {
  .slider-control .slider-control,
  .pos-module .pos-slides .slick-prev .slider-control,
  .pos-module .pos-slides .slick-next .slider-control,
  .slider-control .pos-module .pos-slides .slick-prev,
  .pos-module .pos-slides .slider-control .slick-prev,
  .pos-module .pos-slides .slick-prev .slick-prev,
  .pos-module .pos-slides .slick-next .slick-prev,
  .slider-control .pos-module .pos-slides .slick-next,
  .pos-module .pos-slides .slider-control .slick-next,
  .pos-module .pos-slides .slick-prev .slick-next,
  .pos-module .pos-slides .slick-next .slick-next {
    top: 50px;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    opacity: 0.5;
  }

  .slider-control .slider-control--offset.prev,
  .pos-module .pos-slides .slick-prev .slider-control--offset.prev,
  .pos-module .pos-slides .slick-next .slider-control--offset.prev {
    left: 5px;
  }

  .slider-control .slider-control--offset.next,
  .pos-module .pos-slides .slick-prev .slider-control--offset.next,
  .pos-module .pos-slides .slick-next .slider-control--offset.next {
    right: 5px;
  }
}

.slider-control i,
.pos-module .pos-slides .slick-prev i,
.pos-module .pos-slides .slick-next i {
  position: relative;
  top: 1px;
}

.slider-control--red {
  background-color: #ee0000;
  color: #fff;
}

.slider-control--red:hover {
  background-color: #bb0000;
}

.slick-track {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.slide img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes floatingBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-o-keyframes floatingBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatingBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.bg-structure {
  position: relative;
  background-image: -webkit-linear-gradient(315deg, #e9ecef 0%, #dee2e6);
  background-image: -o-linear-gradient(315deg, #e9ecef 0%, #dee2e6);
  background-image: linear-gradient(135deg, #e9ecef 0%, #dee2e6);
}

.bg-structure::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.08' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.bg-structure .container,
.bg-structure .branch-header .infobox-holder,
.branch-header .bg-structure .infobox-holder,
.bg-structure .branch-header .slide__content,
.branch-header .bg-structure .slide__content {
  position: relative;
  z-index: 3;
}

.btn-grey {
  color: #343a40;
  border-color: #ced4da;
  background-color: #ced4da;
}

.btn-grey:hover {
  color: #343a40;
  border-color: #adb5bd;
  background-color: #adb5bd;
}

.btn-darkgrey {
  color: #fff;
  border-color: #6c757d;
  background-color: #6c757d;
}

.btn-darkgrey:hover {
  color: #fff;
  border-color: #495057;
  background-color: #495057;
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.6);
}

.btn-ghost--white {
  color: #fff;
}

.btn-ghost--white:hover {
  color: #ee0000;
  background: #fff;
  border-color: #fff;
}

.btn-xs {
  padding: 0.2rem 0.4rem;
  font-size: 0.875rem;
  line-height: 1.25;
  border-radius: 0;
}

.welcome__title::after {
  content: '';
  display: block;
  width: 75px;
  height: 3px;
  background: #ee0000;
  margin: 1rem 0;
}

.welcome__title img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.welcome__title small {
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .welcome h1 {
    text-align: center;
  }

  .welcome h1::after {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767.98px) {
  .welcome--breminale p {
    text-align: center;
  }
}

.welcome--taxbranch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
}

@media (min-width: 768px) {
  .welcome--taxbranch {
    height: 400px;
  }
}

.welcome .spotlogo {
  width: 60%;
  height: auto;
}

@media (max-width: 991.98px) {
  .welcome .spotlogo {
    margin-right: auto;
    margin-left: auto;
  }
}

.welcome .spotlogo__marker,
.welcome .spotlogo__bremen {
  fill: #d00;
}

figure img {
  max-width: 100%;
  height: auto;
}

/**
	* Typografie
	*/

.title-line-center::after {
  margin: 1rem auto;
}

/** IFRAME CMP **/

.iframe__youtube iframe,
.iframe__youtube .cmplazypreviewiframe {
  max-width: 100%;
}

@media (min-width: 576px) {
  .iframe__youtube {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .iframe__youtube::before {
    padding-top: 56.25%;
    display: block;
    content: "";
  }

  .iframe__youtube iframe,
  .iframe__youtube .cmplazypreviewiframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
  }
}

@-webkit-keyframes headlinebg {
  0% {
    background-position-y: 0%;
  }

  100% {
    background-position-y: 100%;
  }
}

@-o-keyframes headlinebg {
  0% {
    background-position-y: 0%;
  }

  100% {
    background-position-y: 100%;
  }
}

@keyframes headlinebg {
  0% {
    background-position-y: 0%;
  }

  100% {
    background-position-y: 100%;
  }
}

.loading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
  text-align: center;
  padding-top: 5rem;
}

.loading #wave {
  position: relative;
  text-align: center;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.loading #wave .dot {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 4px;
  background-color: rgba(238, 0, 0, 0.8);
  -webkit-animation: wave 1s linear infinite;
       -o-animation: wave 1s linear infinite;
          animation: wave 1s linear infinite;
}

.loading #wave .dot:nth-child(2) {
  -webkit-animation-delay: -0.8s;
       -o-animation-delay: -0.8s;
          animation-delay: -0.8s;
  background-color: #ee0000;
}

.loading #wave .dot:nth-child(2)::before,
.loading #wave .dot:nth-child(2)::after {
  position: absolute;
  content: '';
}

.loading #wave .dot:nth-child(2)::before {
  width: 8px;
  height: 8px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

.loading #wave .dot:nth-child(2)::after {
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #ee0000 transparent transparent transparent;
}

.loading #wave .dot:nth-child(3) {
  -webkit-animation-delay: -0.86s;
       -o-animation-delay: -0.86s;
          animation-delay: -0.86s;
}

@-webkit-keyframes wave {
  0%, 60%, 100% {
    -webkit-transform: initial;
            transform: initial;
  }

  30% {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
}

@-o-keyframes wave {
  0%, 60%, 100% {
    -o-transform: initial;
       transform: initial;
  }

  30% {
    -o-transform: translateY(-25px);
       transform: translateY(-25px);
  }
}

@keyframes wave {
  0%, 60%, 100% {
    -webkit-transform: initial;
         -o-transform: initial;
            transform: initial;
  }

  30% {
    -webkit-transform: translateY(-25px);
         -o-transform: translateY(-25px);
            transform: translateY(-25px);
  }
}

/* Spinner */

.wait__container {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  display: none;
}

.wait__spinner {
  border: 5px solid #f6f6f6;
  border-top: 5px solid #ee0000;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
       -o-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  display: inline-grid;
}

/* wait */

.wait {
  display: none;
}

.loading__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.loading__container ul {
  position: relative;
}

.loading__container ul li {
  list-style: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-animation: anime 1s infinite linear;
       -o-animation: anime 1s infinite linear;
          animation: anime 1s infinite linear;
}

.loading__container ul li:nth-child(1) {
  -webkit-animation-delay: 0s;
       -o-animation-delay: 0s;
          animation-delay: 0s;
}

.loading__container ul li:nth-child(2) {
  -webkit-animation-delay: 0.1s;
       -o-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.loading__container ul li:nth-child(3) {
  -webkit-animation-delay: 0.2s;
       -o-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading__container ul li:nth-child(4) {
  -webkit-animation-delay: 0.3s;
       -o-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.loading__container ul li:nth-child(5) {
  -webkit-animation-delay: 0.4s;
       -o-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loading__container ul li:nth-child(6) {
  -webkit-animation-delay: 0.5s;
       -o-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.loading__container h1 {
  margin-top: 15px;
}

@-webkit-keyframes anime {
  0% {
    background: #ffc107;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  30% {
    background: transparent;
  }

  50% {
    background: #ee0000;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  100% {
    background: #ffc107;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes anime {
  0% {
    background: #ffc107;
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  30% {
    background: transparent;
  }

  50% {
    background: #ee0000;
    -o-transform: translateY(-20px);
       transform: translateY(-20px);
  }

  100% {
    background: #ffc107;
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes anime {
  0% {
    background: #ffc107;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  30% {
    background: transparent;
  }

  50% {
    background: #ee0000;
    -webkit-transform: translateY(-20px);
         -o-transform: translateY(-20px);
            transform: translateY(-20px);
  }

  100% {
    background: #ffc107;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

.noUi-connect {
  background: #ee0000 !important;
}

.sidebar .facetwp-checkbox {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 1.1rem;
  background-image: none !important;
}

.sidebar .facetwp-checkbox:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.sidebar .facetwp-checkbox::before {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
}

.sidebar .facetwp-checkbox.checked::before {
  background-color: #000;
  outline: 1px solid #fff;
  outline-offset: -2px;
}

.sidebar--immo .facetwp-checkbox {
  position: relative;
  padding-left: 25px;
}

.sidebar--immo .facetwp-checkbox::before {
  border: 1px solid #343a40;
  top: 3px;
}

.sidebar--event .facetwp-checkbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-left: 30px !important;
}

.sidebar--event .facetwp-checkbox::before {
  border: 1px solid currentColor;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.sidebar .widget {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ced4da;
}

.sidebar .facetwp-facet {
  margin: 0;
}

.sidebar .facetwp-search-wrap {
  display: block;
}

.sidebar input[type="text"][class*="facet"][readonly="readonly"] {
  background-color: #fff;
}

.sidebar .facetwp-facet-event.facetwp-type-date_range {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar .facetwp-facet-event.facetwp-type-date_range input[type="text"][class*="facet"] {
  width: 49%;
}

.sidebar .facetwp-btn {
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sidebar .location-wrap {
  display: block;
}

.sidebar input[type=range] {
  height: 26px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
  background: transparent;
}

.sidebar input[type=range]:focus {
  outline: none;
}

.sidebar input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: #dee2e6;
  border-radius: 0px;
  border: 0px solid #000101;
}

.sidebar input[type=range]::-webkit-slider-thumb {
  -webkit-box-shadow: 0px 0px 0px #ced4da;
          box-shadow: 0px 0px 0px #ced4da;
  border: 0px solid #ced4da;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background: #EE0000;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}

.sidebar input[type=range]:focus::-webkit-slider-runnable-track {
  background: #dee2e6;
}

.sidebar input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: #dee2e6;
  border-radius: 0px;
}

.sidebar input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #dee2e6;
  border: 0px solid #dee2e6;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #EE0000;
  cursor: pointer;
}

.sidebar input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.sidebar input[type=range]::-ms-fill-lower {
  background: #dee2e6;
  border: 0px solid #000101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #dee2e6;
}

.sidebar input[type=range]::-ms-fill-upper {
  background: #ced4da;
  border: 0px solid #000101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #dee2e6;
}

.sidebar input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #dee2e6;
  border: 0px solid #dee2e6;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background: #EE0000;
  cursor: pointer;
}

.sidebar input[type=range]:focus::-ms-fill-lower {
  background: #dee2e6;
}

.sidebar input[type=range]:focus::-ms-fill-upper {
  background: #ced4da;
}

.sidebar .facetwp-radius-label::before {
  content: 'Radius: ';
}

.sidebar--offcanvas {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: fixed;
  top: 86px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(250, 249, 249, 0.95);
  backdrop-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' ><filter id='blur3'><feGaussianBlur in='SourceGraphic' stdDeviation='3' /></filter></svg>#blur3");
  backdrop-filter: blur(3px);
  -webkit-transform: translateX(-101%);
       -o-transform: translateX(-101%);
          transform: translateX(-101%);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .sidebar--offcanvas.col-md-3,
  .register-nav .sidebar--offcanvas.nav-item,
  .register-nav .sitewide-footer .footer__nav li.sidebar--offcanvas,
  .sitewide-footer .footer__nav .register-nav li.sidebar--offcanvas {
    width: 40% !important;
    min-width: 400px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    top: 76px !important;
  }
}

.sidebar--offcanvas.is-active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}

.sidebar--offcanvas .sidebar__body {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sidebar--offcanvas hr {
  margin: 10px auto;
}

.sidebar__controls {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transform: translateY(101%);
       -o-transform: translateY(101%);
          transform: translateY(101%);
  z-index: 666;
  width: 100%;
}

.sidebar--event .sidebar__controls,
.sidebar--immo .sidebar__controls {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' ><filter id='blur3'><feGaussianBlur in='SourceGraphic' stdDeviation='3' /></filter></svg>#blur3");
  backdrop-filter: blur(3px);
}

.is-active .sidebar__controls {
  -webkit-transition-delay: .3s;
       -o-transition-delay: .3s;
          transition-delay: .3s;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.sidebar__controls i {
  line-height: 1.5;
}

.sidebar__controls .handle-filters {
  visibility: hidden;
  pointer-events: none;
}

.sidebar--event .handle-filters,
.sidebar--immo .handle-filters {
  visibility: visible;
  pointer-events: all;
}

.mobile-toggle-sidebar--float {
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: fixed;
  right: 1rem;
  bottom: 50px;
  z-index: 1004;
  width: 64px;
  height: 64px;
  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;
  border-radius: 50%;
  background-color: #adb5bd;
  cursor: pointer;
  color: #e9ecef;
  font-size: 1.2rem;
}

.mobile-toggle-sidebar--float.is-active {
  background-color: #00CB00;
  color: #fff;
}

.sitewide-footer {
  background-color: #343a40;
}

.sitewide-footer .footer__nav li a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: rgba(255, 255, 255, 0.8);
}

.sitewide-footer .footer__nav-left li {
  margin-right: 3px;
}

.sitewide-footer .footer__nav-left a {
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}

.sitewide-footer .footer__nav-left a::after {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #ee0000;
}

.sitewide-footer .footer__nav-left a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.sitewide-footer .footer__nav-left a:hover::after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .sitewide-footer .footer__nav-left {
    text-align: center;
  }
}

.sitewide-footer .footer__nav-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sitewide-footer .footer__nav-right .menu-item a {
  padding-left: 0;
}

@media (max-width: 991.98px) {
  .sitewide-footer .footer__nav-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1199.98px) {
  .sitewide-footer .footer__nav .toggleSpotNavigation {
    display: none;
  }
}

:root {
  --il-background-01: #fff3ed;
  --il-background-02: #fde2d3;
  --il-background-shadow-01: #fbcbb1;
  --il-background-shadow-contrast-01: #fbcbb4;
  --il-clothes-01: #e00;
  --il-clothes-02: #fffffb;
  --il-clothes-03: #000;
  --il-clothes-04: #aeaeae;
  --il-clothes-shadow-01: #00000033;
  --il-cloud-01: #fff;
  --il-jeans-01: #0071d4;
  --il-plant-01: #e4eddb;
  --il-plant-02: #adc992;
  --il-plant-03: #356b00;
  --il-plant-04: #2b5502;
  --il-plantpot-01: #fde2d5;
  --il-plantpot-shadow-01: #fbcbb2;
  --il-shoes-01: #29292a;
  --il-sky-01: #dbeefe;
  --il-sky-02: #92ccff;
  --il-thing-01: #fef2ce;
  --il-thing-02: #fdd86c;
  --il-thing-03: #fbbe0a;
  --il-thing-04: #c99808;
  --il-thing-05: #edb581;
  --il-thing-06: #833c0b;
  --il-thing-07: #fffffe;
  --il-thing-08: #dbeeff;
  --il-thing-09: #6dbbff;
  --il-thing-10: #0071d6;
  --il-thing-11: #004480;
  --il-thing-12: #fbcbb2;
  --il-thing-13: #e78c62;
  --il-thing-14: #e78c66;
  --il-thing-15: #e27346;
  --il-thing-16: #dc5a2c;
  --il-thing-17: #f9dbdb;
  --il-thing-18: #ed9294;
  --il-thing-19: #e04949;
  --il-thing-20: #b10000;
  --il-thing-21: #b10002;
  --il-thing-22: #e4eddc;
  --il-thing-23: #2b5500;
  --il-thing-24: #e3e3e3;
  --il-thing-25: #aeaeae;
  --il-thing-26: #6e6e6e;
  --il-thing-27: #565656;
  --il-thing-28: #29292b;
  --il-thing-29: #292929;
  --il-thing-30: #ee0001;
  --il-thing-opercity-01: #ffffff80;
  --il-fur-animal-light-01: #fef0e3;
  --il-fur-animal-medium-01: #c17846;
  --il-hair-black-01: #000001;
  --il-hair-blond-01: #c99809;
  --il-hair-brown-01: #833c0b;
  --il-hair-ginger-01: #e27345;
  --il-hair-granny-01: #fffffd;
  --il-hair-silver-01: #bebebe;
  --il-skin-dark-01: #984c18;
  --il-skin-dark-blush-01: #8d0000;
  --il-skin-dark-shadow-01: #6f2d01;
  --il-skin-dark-shadow-02: #6f2d0180;
  --il-skin-light-blush-01: #ed9294;
  --il-skin-light-shadow-02: #edb58180;
  --il-skin-light-shadow-01: #edb581;
  --il-skin-medium-01: #edb583;
  --il-skin-medium-blush-01: #e66d6d;
  --il-skin-medium-shadow-01: #d8a37c;
  --il-skin-medium-shadow-02: #d8a37c80;
  --il-skin-light-01: #f5cea6;
  --il-thing-choco-01: #833c0b;
  --il-thing-creme-01: #edb581;
  --brand-01: #e00;
  --primary-01: #e00;
  --primary-01-contrast: #fff;
  --primary-01-active: #a00;
  --primary-01-hover: #d40000;
  --primary-01-focus: #d40000;
  --primary-02: #e00;
  --primary-03: #ffdbdb;
  --secondary-01: #565656;
  --secondary-01-active: #292929;
  --secondary-01-hover: #444;
  --secondary-01-focus: #444;
  --readable-01: #292929;
  --readable-02: #565656;
  --readable-03: #fff;
  --readable-04: #fff;
  --ui-01: #e3e3e3;
  --ui-01-contrast: #e3e3e3;
  --ui-02: #949494;
  --ui-03: #f5f5f5;
  --ui-04: #f5f5f5;
  --transparent-01: transparent;
  --transparent-02: #000000b3;
  --ui-background-01: #fff;
  --ui-background-02: #fff;
  --ui-background-03: #fcfcfc;
  --currency-negative-01: #292929;
  --currency-positive-01: #356b00;
  --currency-positive-01-contrast: #356b00;
  --currency-positive-02: #e4eddb;
  --disabled-01: #bebebe;
  --disabled-02: #e3e3e3;
  --disabled-03: #e3e3e3;
  --focus-01: #0071d4;
  --focus-02: #dbeeff;
  --delete-01: #d40000;
  --delete-01-hover: #b10000;
  --delete-01-active: #8d0000;
  --success-01: #2b5500;
  --success-01-contrast: #356b00;
  --success-01-hover: #204000;
  --success-02: #e4eddb;
  --success-02-hover: #c8dbb6;
  --error-01: #8d0000;
  --error-01-contrast: #b10000;
  --error-01-hover: #6a0000;
  --error-02: #f9dbdb;
  --error-02-hover: #f3b6b6;
  --warning-01: #821001;
  --warning-01-contrast: #cd3b0e;
  --warning-01-hover: #821001;
  --warning-02: #fff3ed;
  --warning-02-hover: #fde2d3;
  --information-01: #444;
  --information-01-hover: #292929;
  --information-01-contrast: #292929;
  --information-02: #f5f5f5;
  --information-02-hover: #e3e3e3;
  --attention-01: #004480;
  --attention-01-hover: #003666;
  --attention-01-contrast: #005baa;
  --attention-02: #dbeeff;
  --attention-02-hover: #92ccff;
  --attention-03: #f5f9fd;
  --attention-03-important: #fef5f5;
  --settings-personal-data-01: #2c57d2;
  --settings-financial-products-01: #903f8a;
  --settings-security-01: #008a00;
  --settings-services-01: #757575;
  --settings-settings-01: #ad6200;
  --settings-digital-assistant-01: #8b00cc;
  --settings-personal-data-02: #d5ddf6;
  --settings-financial-products-02: #e9d9e8;
  --settings-security-02: #cce4dc;
  --settings-services-02: #e3e3e3;
  --settings-settings-02: #ffe9cc;
  --settings-digital-assistant-02: #e8ccf5;
  --header-background-01: #e00;
  --header-ui-01: #d40000;
  --header-ui-02: #a00;
  --header-readable-01: #fff;
  --header-readable-02: #565656;
  --header-readable-03: #e00;
  --category-food-01: #e6005c;
  --category-food-02: #fde6ef;
  --category-clothing-01: #b62abf;
  --category-clothing-02: #f8eaf9;
  --category-purchases-01: #6d4b9a;
  --category-purchases-02: #f1edf5;
  --category-sport-01: #571c50;
  --category-sport-02: #efe9ee;
  --category-mobility-01: #0166c7;
  --category-mobility-02: #e6f0fa;
  --category-education-01: #637697;
  --category-education-02: #f0f2f4;
  --category-taxes-01: #223573;
  --category-taxes-02: #e9ebf1;
  --category-telecommunication-01: #019fc2;
  --category-telecommunication-02: #e9fbff;
  --category-travel-01: #00768f;
  --category-travel-02: #e6f2f4;
  --category-income-01: #005700;
  --category-income-02: #e6efe6;
  --category-garden-01: #008a00;
  --category-garden-02: #e2fae2;
  --category-cash-01: #dcac00;
  --category-cash-02: #fcf7e6;
  --category-saving-01: #ad6200;
  --category-saving-02: #f7f0e6;
  --category-protection-01: #d78c00;
  --category-protection-02: #fbf4e6;
  --category-entertainment-01: #d64000;
  --category-entertainment-02: #fbece6;
  --category-health-01: #a80000;
  --category-health-02: #f7e6e6;
  --category-notrelevant-01: #750000;
  --category-notrelevant-02: #f2e6e6;
  --category-miscellaneous-01: #303030;
  --category-miscellaneous-02: #ebebeb;
  --category-uncategorized-01: #686868;
  --category-uncategorized-02: #f0f0f0;
  --category-allissues-01: #000;
  --category-allissues-02: #e6e6e6;
  --shadow-default: 0 2px 3px rgba(86,86,86,0.1);
  --shadow-hover: 0 4px 8px rgba(86,86,86,0.16);
  --shadow-draganddrop: 0 16px 8px rgba(86,86,86,0.24);
  --toggletiparrow: 0 1px rgba(140,140,140,0.3);
  --shadow-sticky-bottom: 0 15px 10px -15px rgba(86,86,86,0.60);
  --shadow-sticky-top: 0 -15px 10px -15px rgba(86,86,86,0.60);
  --C1: #e00;
  --C1-light: #e99;
  --C2: #fff;
  --C2-transparent: #ffffffbf;
  --C3: #f0f0f0;
  --C4: #e3e3e3;
  --C5: #565656;
  --C6: #000;
  --C7: #408000;
  --C8: #fef2ce;
  --C9: #949494;
  --Grau_3: #292929;
  --Grau_4: #444;
  --Grau_C: #bebebe;
  --Grau_F6: #f5f5f5;
  --Hellblau: #2499ff;
  --Dunkelblau: #0071d4;
  --Violett: #b62abf;
  --Dunkelgruen: #356b00;
  --Hellgruen: #77a449;
  --Orange: #dc5a2c;
  --Gelb: #fbbe0a;
}

.buttonparsys .icon-phone:before {
  content: "h";
}

.buttonparsys .icon-calendar:before {
  content: "k";
}

.buttonparsys .icon-mail:before {
  content: "m";
}

.buttonparsys .icon-chat:before {
  content: "c";
}

.icon-anchor:before {
  content: "\F759";
}

.icon-app:before {
  content: "\F79F";
}

.icon-applebusinesschat:before {
  content: "\F830";
}

.icon-arrow-back:before {
  content: "\F704";
}

.icon-arrow-circle:before {
  content: "\F703";
}

.icon-arrow-circ-perspective:before {
  content: "\F761";
}

.icon-arrow-direction:before {
  content: "\F762";
}

.icon-arrow-fork:before {
  content: "\F73D";
}

.icon-arrow-leftright:before {
  content: "\F701";
}

.icon-arrow-out:before {
  content: "\F705";
}

.icon-arrows-center:before {
  content: "\F700";
}

.icon-arrows-change:before {
  content: "\F706";
}

.icon-arrows-circle:before {
  content: "\F702";
}

.icon-at:before {
  content: "@";
}

.icon-atom:before {
  content: "\F76F";
}

.icon-bag:before {
  content: "\F753";
}

.icon-balance:before {
  content: "\F797";
}

.icon-balloon:before {
  content: "\F777";
}

.icon-ban:before {
  content: "\F70A";
}

.icon-banderole:before {
  content: "\F784";
}

.icon-banknote:before {
  content: "\F768";
}

.icon-banknote-euro:before {
  content: "\F7AA";
}

.icon-barcode:before {
  content: "\F780";
}

.icon-bell:before {
  content: "\F758";
}

.icon-bicycle:before {
  content: "\F7A0";
}

.icon-binoculars:before {
  content: "\F781";
}

.icon-blog:before {
  content: "\F7B3";
}

.icon-book-checkmark1:before {
  content: "\F70E";
}

.icon-book-checkmark2:before {
  content: "\F766";
}

.icon-book-close-mark:before {
  content: "\F787";
}

.icon-book-open:before {
  content: "\F751";
}

.icon-book-pen:before {
  content: "\F717";
}

.icon-book-text:before {
  content: "\F752";
}

.icon-bstart:before {
  content: "b";
}

.icon-buggy:before {
  content: "\F786";
}

.icon-calculator:before {
  content: "\F76D";
}

.icon-calendar:before {
  content: "k";
}

.icon-camera-movie:before {
  content: "\F725";
}

.icon-camera-picture:before {
  content: "\F726";
}

.icon-canvas:before {
  content: "\F7A3";
}

.icon-car:before {
  content: "\F74D";
}

.icon-car-palm:before {
  content: "\F7AD";
}

.icon-card-magnetic-strip:before {
  content: "\F736";
}

.icon-cashpoint:before {
  content: "\F7A2";
}

.icon-chain-links:before {
  content: "\F729";
}

.icon-chart-bar:before {
  content: "\F731";
}

.icon-chart-bar-line:before {
  content: "\F75E";
}

.icon-chart-line1:before {
  content: "\F732";
}

.icon-chart-line2:before {
  content: "\F756";
}

.icon-chart-line-borderless:before {
  content: "\F755";
}

.icon-chart-pie:before {
  content: "\F733";
}

.icon-chart-rack:before {
  content: "\F75D";
}

.icon-chat:before {
  content: "c";
}

.icon-checked:before {
  content: "v";
}

.icon-clapperboard:before {
  content: "\F793";
}

.icon-clock-alarm:before {
  content: "\F76C";
}

.icon-clock:before {
  content: "\F71A";
}

.icon-cloud:before {
  content: "\F71C";
}

.icon-cloud-sun:before {
  content: "\F746";
}

.icon-coffee-cup:before {
  content: "\F790";
}

.icon-compass:before {
  content: "\F735";
}

.icon-compass-rose:before {
  content: "\F710";
}

.icon-couch:before {
  content: "\F760";
}

.icon-cup:before {
  content: "\F783";
}

.icon-diamond:before {
  content: "\F77F";
}

.icon-doctoral-cap:before {
  content: "\F77C";
}

.icon-dog:before {
  content: "\F7A4";
}

.icon-doublequote:before {
  content: "\F728";
}

.icon-download:before {
  content: "r";
}

.icon-emblem:before {
  content: "\F711";
}

.icon-emblem-empty:before {
  content: "\F779";
}

.icon-euro-coins:before {
  content: "\F79B";
}

.icon-euro-symbol:before {
  content: "\F79D";
}

.icon-exclamation-mark:before {
  content: "\F7D1";
}

.cs-button .icon-facebook:before {
  content: "f";
}

.icon-factory:before {
  content: "\F77B";
}

.icon-fax:before {
  content: "\F7B1";
}

.icon-feather:before {
  content: "\F799";
}

.icon-flag:before {
  content: "\F739";
}

.icon-football:before {
  content: "\F750";
}

.icon-fuel-dispenser:before {
  content: "\F776";
}

.icon-gamepad:before {
  content: "\F74C";
}

.icon-gauge:before {
  content: "\F795";
}

.icon-gear-wheel:before {
  content: "\F72E";
}

.icon-gear-wheels:before {
  content: "\F72F";
}

.icon-glasses:before {
  content: "\F75F";
}

.cs-button .icon-googleplus:before {
  content: "g";
}

.icon-graph:before {
  content: "\F794";
}

.icon-hammer:before {
  content: "\F771";
}

.icon-hand-in-hand:before {
  content: "\F7B7";
}

.icon-handshake:before {
  content: "\F7B6";
}

.icon-hat-chef:before {
  content: "\F778";
}

.icon-health:before {
  content: "\F7A5";
}

.icon-heart:before {
  content: "\F724";
}

.icon-homenav:before {
  content: "\F7AF";
}

.icon-hourglas:before {
  content: "\F796";
}

.icon-house:before {
  content: "\F722";
}

.icon-inflation:before {
  content: "\F7BA";
}

.cs-button .icon-info:before {
  content: "i";
}

.icon-inline-skate:before {
  content: "\F7AB";
}

.cs-button .icon-instagram:before {
  content: "\F7B8";
}

.icon-ipod:before {
  content: "\F74B";
}

.icon-key:before {
  content: "\F742";
}

.icon-keys:before {
  content: "\F743";
}

.icon-kwitt:before {
  content: "\F7C0";
}

.icon-laptop:before {
  content: "\F748";
}

.icon-laptop-euro:before {
  content: "\F79A";
}

.icon-leaf:before {
  content: "\F757";
}

.icon-letter-in-envelope:before {
  content: "\F70C";
}

.icon-letter-sending:before {
  content: "\F789";
}

.icon-lifesaver:before {
  content: "\F747";
}

.icon-lightbulb:before {
  content: "\F734";
}

.cs-button .icon-linkedin:before {
  content: "\F7EE";
}

.icon-location1:before {
  content: "\F70F";
}

.icon-location:before {
  content: "\F763";
}

.icon-locations:before {
  content: "\F798";
}

.icon-lock-closed:before {
  content: "\F740";
}

.icon-lock-euro:before {
  content: "\F7A8";
}

.icon-lock-open:before {
  content: "\F741";
}

.icon-mail:before {
  content: "m";
}

.icon-mail-badge:before {
  content: "\F7A7";
}

.icon-mail-bell:before {
  content: "\F7CC";
}

.icon-manni:before {
  content: "\F7BB";
}

.icon-masks:before {
  content: "\F77D";
}

.icon-minus:before {
  content: "\F61C";
}

.icon-mobile-phone-old:before {
  content: "\F73A";
}

.icon-moped:before {
  content: "\F7A6";
}

.icon-mountains:before {
  content: "\F773";
}

.icon-mousepointer:before {
  content: "\F73E";
}

.icon-move:before {
  content: "4";
}

.icon-multiply:before {
  content: "\D7";
}

.icon-note:before {
  content: "\F71D";
}

.icon-page-list:before {
  content: "\F715";
}

.icon-page-pdf:before {
  content: "\F714";
}

.icon-page-pen:before {
  content: "\F712";
}

.icon-page-text:before {
  content: "\F713";
}

.icon-paint-roller:before {
  content: "\F78B";
}

.icon-palette:before {
  content: "\F76E";
}

.icon-paper-clip:before {
  content: "\F71E";
}

.icon-paper-plane:before {
  content: "\F788";
}

.icon-parcel:before {
  content: "\F767";
}

.icon-pay-contactless:before {
  content: "\F7BF";
}

.icon-pen:before {
  content: "\F716";
}

.icon-percent:before {
  content: "%";
}

.icon-person:before {
  content: "\F72B";
}

.icon-person-tie:before {
  content: "\F72C";
}

.icon-phone:before {
  content: "h";
}

.icon-picture:before {
  content: "\F72D";
}

.icon-piggybank:before {
  content: "\F754";
}

.icon-pin:before {
  content: "\F77E";
}

.icon-plane:before {
  content: "\F74F";
}

.icon-play:before {
  content: "\F707";
}

.icon-plus:before {
  content: "+";
}

.icon-podcast:before {
  content: "\F81F";
}

.icon-potted-plant:before {
  content: "\F78F";
}

.icon-present:before {
  content: "\F782";
}

.icon-price-tag:before {
  content: "\F727";
}

.icon-pyramid-finance:before {
  content: "\F7BC";
}

.icon-puzzle-piece:before {
  content: "\F770";
}

.icon-questionmark:before {
  content: "\F70B";
}

.icon-quit:before {
  content: "q";
}

.icon-sailboat:before {
  content: "\F774";
}

.icon-save-donate:before {
  content: "\F7BD";
}

.icon-savingsbank:before {
  content: "\F79E";
}

.icon-scissors:before {
  content: "\F73F";
}

.icon-screen:before {
  content: "\F71B";
}

.icon-search:before {
  content: "s";
}

.icon-sector-1-4:before {
  content: "\F76B";
}

.icon-sector-1-8:before {
  content: "\F76A";
}

.icon-sheet-long-text:before {
  content: "\F765";
}

.icon-ship:before {
  content: "\F78E";
}

.icon-shopping-bag:before {
  content: "\F78A";
}

.icon-shopping-cart1:before {
  content: "\F738";
}

.icon-shopping-cart2:before {
  content: "\F769";
}

.icon-shovel-helmet:before {
  content: "\F7AC";
}

.icon-signpost:before {
  content: "\F75A";
}

.icon-skype:before {
  content: "H";
}

.icon-smartphone:before {
  content: "\F749";
}

.icon-snapchat:before {
  content: "\F7B9";
}

.icon-sound-level:before {
  content: "\F730";
}

.icon-spade:before {
  content: "\F78C";
}

.icon-speacker:before {
  content: "\F718";
}

.icon-speech-bubbles:before {
  content: "\F72A";
}

.icon-speedo:before {
  content: "\F71F";
}

.icon-star:before {
  content: "\F723";
}

.icon-stopwatch:before {
  content: "\F744";
}

.icon-sun1:before {
  content: "\F720";
}

.icon-sun2:before {
  content: "\F772";
}

.icon-tablet:before {
  content: "\F74A";
}

.icon-target-arrow:before {
  content: "\F791";
}

.icon-target:before {
  content: "\F792";
}

.icon-teamviewer:before {
  content: "\F7B0";
}

.icon-television:before {
  content: "\F737";
}

.icon-text-Aa:before {
  content: "\F73B";
}

.icon-thermometer:before {
  content: "\F745";
}

.icon-tickets:before {
  content: "\F75B";
}

.icon-tiktok:before {
  content: "\F84F";
}

.icon-traffic-cone:before {
  content: "\F75C";
}

.icon-train-rails:before {
  content: "\F78D";
}

.icon-trashcan:before {
  content: "\F721";
}

.icon-truck:before {
  content: "\F74E";
}

.cs-button .icon-twitter:before {
  content: "t";
}

.icon-umbrella:before {
  content: "\F775";
}

.icon-video:before {
  content: "\F764";
}

.icon-wedding-rings:before {
  content: "\F785";
}

.cs-button .icon-whatsapp:before {
  content: "\F7B4";
}

.icon-wheelchair:before {
  content: "\F77A";
}

.icon-wikipedia:before {
  content: "\F7B5";
}

.icon-window:before {
  content: "\F7A1";
}

.icon-world:before {
  content: "\F719";
}

.icon-xing:before {
  content: "\F7A9";
}

.icon-xmas-tree:before {
  content: "\F73C";
}

.cs-button .icon-youtube:before {
  content: "y";
}

.icon-sr-banking:before {
  content: "\F79A";
}

.icon-sr-default:before {
  content: "\F713";
}

.icon-sr-pdf:before {
  content: "\F714";
}

.icon-sr-text:before {
  content: "\F713";
}

.icon-b_abraeumsparen:before {
  content: "\F7D4";
}

.icon-b_again:before {
  content: "l";
}

.icon-b_analyse:before {
  content: "\F818";
}

.icon-b_arrow:before {
  content: "\F7B2";
}

.icon-b_arrow-back:before {
  content: "\F704";
}

.icon-b_arrow-down:before {
  content: "\F61A";
}

.icon-b_arrow-out:before {
  content: "\F705";
}

.icon-b_arrowcircle:before {
  content: "\F703";
}

.icon-b_arrowscircle:before {
  content: "\F702";
}

.icon-b_attention:before {
  content: "\F7F8";
}

.icon-b_aufteilen:before {
  content: "\F7E7";
}

.icon-b_average:before {
  content: "\2300";
}

.icon-b_banderole:before {
  content: "\F784";
}

.icon-b_bank:before {
  content: "\F7D2";
}

.icon-b_bell:before {
  content: "\F758";
}

.icon-b_bell_open:before {
  content: "\F7F7";
}

.icon-b_book_checkmark:before {
  content: "\F70E";
}

.icon-b_boxclose:before {
  content: "\D7";
}

.icon-b_boxsettings:before {
  content: "\F72E";
}

.icon-b_bullet:before {
  content: "\2022";
}

.icon-b_bullet_error:before {
  content: "\2022";
}

.icon-b_bullet_success:before {
  content: "\2022";
}

.icon-b_bullet_unknown:before {
  content: "\2022";
}

.icon-b_bullet_warning:before {
  content: "\2022";
}

.icon-b_chart-pie:before {
  content: "\F733";
}

.icon-b_camera:before {
  content: "\F726";
}

.icon-b_card:before {
  content: "\F736";
}

.icon-b_change:before {
  content: "\F706";
}

.icon-b_circa:before {
  content: "\F7ED";
}

.icon-b_clock:before {
  content: "\F71A";
}

.icon-b_close:before {
  content: "\D7";
}

.icon-b_coin_moving:before {
  content: "\F7F4";
}

.icon-b_copy:before {
  content: "\F7C9";
}

.icon-b_depotcockpit:before {
  content: "\F7D0";
}

.icon-b_dokument:before {
  content: "\F7C6";
}

.icon-b_dokument_aktualisieren:before {
  content: "\F7EB";
}

.icon-b_dokument_audio:before {
  content: "\F7C4";
}

.icon-b_dokument_bild:before {
  content: "\F7C5";
}

.icon-b_dokument_edit:before {
  content: "\F61D";
}

.icon-b_dokument_info:before {
  content: "\F7D9";
}

.icon-b_dokument_loeschen:before {
  content: "\F7D8";
}

.icon-b_dokument_tabelle:before {
  content: "\F7C7";
}

.icon-b_dokument_tausch:before {
  content: "\F84E";
}

.icon-b_dokument_video:before {
  content: "\F7C8";
}

.icon-b_double_checked:before {
  content: "\F819";
}

.icon-b_download:before {
  content: "r";
}

.icon-b_einstellungen:before {
  content: "\F72E";
}

.icon-b_einstellungen2:before {
  content: "\F72F";
}

.icon-b_emblem:before {
  content: "\F711";
}

.icon-b_emblem-outline:before {
  content: "\F825";
}

.icon-b_exclamationmark:before {
  content: "\F7D1";
}

.icon-b_facebook:before {
  content: "f";
}

.icon-b_filter:before {
  content: "\F7D5";
}

.icon-b_filter_active:before {
  content: "\F7D6";
}

.icon-b_firma:before {
  content: "\F77B";
}

.icon-b_flag:before {
  content: "\F739";
}

.icon-b_forbidden:before {
  content: "\F70A";
}

.icon-b_gesendet:before {
  content: "\F788";
}

.icon-b_glossar:before {
  content: "i";
}

.icon-b_hammer:before {
  content: "\F771";
}

.icon-b_info:before {
  content: "i";
}

.icon-b_invite:before {
  content: "\F831";
}

.icon-b_list-checked:before {
  content: "\F7DA";
}

.icon-b_list-edit:before {
  content: "\F7DB";
}

.icon-b_lock_closed:before {
  content: "\F62B";
}

.icon-b_move:before {
  content: "4";
}

.icon-b_note:before {
  content: "\F712";
}

.icon-b_notebook:before {
  content: "\F752";
}

.icon-b_openbook:before {
  content: "\F751";
}

.icon-b_ordner:before {
  content: "\F7CB";
}

.icon-b_ordner_erstellen:before {
  content: "\F7CA";
}

.icon-b_pdf:before {
  content: "\F714";
}

.icon-b_person:before {
  content: "\F72B";
}

.icon-b_personen:before {
  content: "\F7E2";
}

.icon-b_phone:before {
  content: "\F73A";
}

.icon-b_pin:before {
  content: "\F77E";
}

.icon-b_protokoll:before {
  content: "\F639";
}

.icon-b_questionmark:before {
  content: "?";
}

.icon-b_ratenzahlung:before {
  content: "\F7FA";
}

.icon-b_researchinfo:before {
  content: "\F7CF";
}

.icon-b_rubrik:before {
  content: "\F727";
}

.icon-b_sector-1-8:before {
  content: "\F76A";
}

.icon-b_sheet-long:before {
  content: "\F765";
}

.icon-b_sort:before {
  content: "\F7D7";
}

.icon-b_speechbubbles:before {
  content: "\F72A";
}

.icon-b_speicher:before {
  content: "\F7CD";
}

.icon-b_tag:before {
  content: "\F232";
}

.icon-b_twitter:before {
  content: "t";
}

.icon-b_uebersicht:before {
  content: "\F7C1";
}

.icon-b_undo:before {
  content: "\F7F9";
}

.icon-b_unteraval-beantragen:before {
  content: "\F7DD";
}

.icon-b_upload:before {
  content: "\F7CE";
}

.icon-b_weisung-kapitalmassnahmen:before {
  content: "\F7D3";
}

.icon-b_whatsapp:before {
  content: "\F7B4";
}

.icon-b_wiederherstellen:before {
  content: "\F7C2";
}

.icon-b_world:before {
  content: "\F719";
}

.icon-fi-apobank:before {
  content: "\F68C";
}

.icon-fi-bankkc:before {
  content: "\F68D";
}

.icon-fi-bbbank:before {
  content: "\F68E";
}

.icon-fi-bensbbank:before {
  content: "\F68F";
}

.icon-fi-bevestor:before {
  content: "\F66E";
}

.icon-fi-bev_coyomi:before {
  content: "\F689";
}

.icon-fi-bev_depotmax:before {
  content: "\F68A";
}

.icon-fi-bev_fyndus:before {
  content: "\F688";
}

.icon-fi-bib:before {
  content: "\F690";
}

.icon-fi-blb:before {
  content: "\F643";
}

.icon-fi-bwbank:before {
  content: "\F644";
}

.icon-fi-citibank:before {
  content: "\F69C";
}

.icon-fi-comdirect:before {
  content: "\F645";
}

.icon-fi-commerzbank:before {
  content: "\F646";
}

.icon-fi-consors:before {
  content: "\F647";
}

.icon-fi-deutschebank:before {
  content: "\F649";
}

.icon-fi-direkt1822:before {
  content: "\F642";
}

.icon-fi-dkb:before {
  content: "\F64A";
}

.icon-fi-dkm:before {
  content: "\F691";
}

.icon-fi-edekabank:before {
  content: "\F692";
}

.icon-fi-ethikbank:before {
  content: "\F820";
}

.icon-fi-evangbank:before {
  content: "\F693";
}

.icon-fi-evenordbank:before {
  content: "\F694";
}

.icon-fi-fidor:before {
  content: "\F69D";
}

.icon-fi-flessabank:before {
  content: "\F832";
}

.icon-fi-fremdbank:before {
  content: "\F7D2";
}

.icon-fi-giropay:before {
  content: "\F822";
}

.icon-fi-glsbank:before {
  content: "\F695";
}

.icon-fi-haspa:before {
  content: "\F666";
}

.icon-fi-ingdiba:before {
  content: "\F64D";
}

.icon-fi-kdbank:before {
  content: "\F696";
}

.icon-fi-koop_auxmoney:before {
  content: "\F827";
}

.icon-fi-koop_depositsol:before {
  content: "\F828";
}

.icon-fi-koop_ds_akbank:before {
  content: "\F833";
}

.icon-fi-koop_ds_avida:before {
  content: "\F834";
}

.icon-fi-koop_ds_cacf:before {
  content: "\F835";
}

.icon-fi-koop_ds_creditplus:before {
  content: "\F836";
}

.icon-fi-koop_ds_ktbank:before {
  content: "\F837";
}

.icon-fi-koop_ds_lhv:before {
  content: "\F838";
}

.icon-fi-koop_ds_mymoneybank:before {
  content: "\F839";
}

.icon-fi-koop_ds_pbb:before {
  content: "\F840";
}

.icon-fi-koop_ds_qliro:before {
  content: "\F841";
}

.icon-fi-koop_ds_swkbank:before {
  content: "\F842";
}

.icon-fi-kw_bitcoin:before {
  content: "\F66F";
}

.icon-fi-kw_ethereum:before {
  content: "\F66D";
}

.icon-fi-kw_ficoin:before {
  content: "\F677";
}

.icon-fi-kw_ripple:before {
  content: "\F670";
}

.icon-fi-levobank:before {
  content: "\F697";
}

.icon-fi-ligabank:before {
  content: "\F698";
}

.icon-fi-merkurbank:before {
  content: "\F821";
}

.icon-fi-mkbank:before {
  content: "\F843";
}

.icon-fi-mlp:before {
  content: "\F699";
}

.icon-fi-n26:before {
  content: "\F69E";
}

.icon-fi-netbank:before {
  content: "\F650";
}

.icon-fi-nordlb:before {
  content: "\F652";
}

.icon-fi-norisbank:before {
  content: "\F653";
}

.icon-fi-paxbank:before {
  content: "\F69A";
}

.icon-fi-paydirekt:before {
  content: "\F659";
}

.icon-fi-paypal:before {
  content: "\F65A";
}

.icon-fi-postbank:before {
  content: "\F65B";
}

.icon-fi-psdbank:before {
  content: "\F65F";
}

.icon-fi-rbd:before {
  content: "\F7DC";
}

.icon-fi-saarlb:before {
  content: "\F663";
}

.icon-fi-santander:before {
  content: "\F69B";
}

.icon-fi-spardabank:before {
  content: "\F665";
}

.icon-fi-sparkasse:before {
  content: "\F666";
}

.icon-fi-suedspa:before {
  content: "\F844";
}

.icon-fi-targobank:before {
  content: "\F68B";
}

.icon-fi-unicreditgroup:before {
  content: "\F668";
}

.icon-fi-unsupported:before {
  content: "\F641";
}

.icon-fi-volksbank:before {
  content: "\F66B";
}

.icon-fi-vp_deka:before {
  content: "\F648";
}

.icon-fi-vp_fsbb:before {
  content: "\F64B";
}

.icon-fi-vp_gothaer:before {
  content: "\F64C";
}

.icon-fi-vp_lbs:before {
  content: "\F64E";
}

.icon-fi-vp_llva:before {
  content: "\F64F";
}

.icon-fi-vp_neueleben:before {
  content: "\F651";
}

.icon-fi-vp_oesa:before {
  content: "\F657";
}

.icon-fi-vp_oevb:before {
  content: "\F656";
}

.icon-fi-vp_oevbs:before {
  content: "\F655";
}

.icon-fi-vp_oevo:before {
  content: "\F654";
}

.icon-fi-vp_olbk:before {
  content: "\F658";
}

.icon-fi-vp_provinzial_nw:before {
  content: "\F65D";
}

.icon-fi-vp_provinzial_rl:before {
  content: "\F65D";
}

.icon-fi-vp_provinzial_wf:before {
  content: "\F65D";
}

.icon-fi-vp_saarv:before {
  content: "\F664";
}

.icon-fi-vp_sdirektv:before {
  content: "\F660";
}

.icon-fi-vp_spension:before {
  content: "\F661";
}

.icon-fi-vp_sv:before {
  content: "\F662";
}

.icon-fi-vp_svs:before {
  content: "\F667";
}

.icon-fi-vp_vgh:before {
  content: "\F669";
}

.icon-fi-vp_vkb:before {
  content: "\F66A";
}

.icon-fi-vwbank:before {
  content: "\F69F";
}

.icon-fi-weberbank:before {
  content: "\F66C";
}

.icon-tanverf900:before {
  content: "\F672";
}

.icon-tanverf910:before {
  content: "\F671";
}

.icon-tanverf911:before {
  content: "\F671";
}

.icon-tanverf913:before {
  content: "\F671";
}

.icon-tanverf920:before {
  content: "\F675";
}

.icon-tanverf921:before {
  content: "\F674";
}

.icon-tanverf922:before {
  content: "\F674";
}

.icon-tanverf923:before {
  content: "\F674";
}

.icon-tanverf930:before {
  content: "\F676";
}

.icon-tanverf997:before {
  content: "\F673";
}

.icon-tanverf998:before {
  content: "\F711";
}

.icon-pfm_ktgr10:before {
  content: "\F678";
}

.icon-pfm_ktgr11:before {
  content: "\F679";
}

.icon-pfm_ktgr12:before {
  content: "\F67A";
}

.icon-pfm_ktgr13:before {
  content: "\F67B";
}

.icon-pfm_ktgr14:before {
  content: "\F7EA";
}

.icon-pfm_ktgr15:before {
  content: "\F67D";
}

.icon-pfm_ktgr16:before {
  content: "\F67E";
}

.icon-pfm_ktgr17:before {
  content: "\F67F";
}

.icon-pfm_ktgr18:before {
  content: "\F680";
}

.icon-pfm_ktgr19:before {
  content: "\F681";
}

.icon-pfm_ktgr20:before {
  content: "\F682";
}

.icon-pfm_ktgr21:before {
  content: "\F683";
}

.icon-pfm_ktgr22:before {
  content: "\F684";
}

.icon-pfm_ktgr23:before {
  content: "\F685";
}

.icon-pfm_ktgr24:before {
  content: "\F686";
}

.icon-pfm_ktgr25:before {
  content: "\F687";
}

.icon-pfm_ktgr26:before {
  content: "\F67C";
}

.icon-pfm_ktgr27:before {
  content: "\F7E8";
}

.icon-pfm_ktgr28:before {
  content: "\F7E9";
}

.icon-pfm_ktgr50:before {
  content: "\F7DF";
}

.icon-pfm_ktgr51:before {
  content: "\F7E0";
}

.icon-pfm_ktgr52:before {
  content: "\F7E1";
}

.icon-pfm_ktgr53:before {
  content: "\F7E2";
}

.icon-pfm_ktgr54:before {
  content: "\F682";
}

.icon-pfm_ktgr55:before {
  content: "\F7E3";
}

.icon-pfm_ktgr56:before {
  content: "\F7E4";
}

.icon-pfm_ktgr57:before {
  content: "\F7E5";
}

.icon-pfm_ktgr58:before {
  content: "\F67A";
}

.icon-pfm_ktgr59:before {
  content: "\F683";
}

.icon-pfm_ktgr60:before {
  content: "\F684";
}

.icon-pfm_ktgr61:before {
  content: "\F7E6";
}

.icon-pfm_ktgr62:before {
  content: "\F685";
}

.icon-pfm_ktgr97:before {
  content: "\F7E2";
}

.icon-pfm_ktgr98:before {
  content: "\F7F4";
}

.icon-pfm_ktgr99:before {
  content: "\F7E7";
}

.icon-func-di_glaeubiger:before {
  content: "\F765";
}

.icon-func-di_haken:before {
  content: "\F614";
}

.icon-func-di_kontakte:before {
  content: "\F751";
}

.icon-func-di_mandate:before {
  content: "\F784";
}

.icon-func-di_rubriken:before {
  content: "\F727";
}

.icon-func-di_sammellastschriften:before {
  content: "\F618";
}

.icon-func-di_sammelueberweisungen:before {
  content: "\F62D";
}

.icon-func-di_stammdaten:before {
  content: "\F7D2";
}

.icon-func-di_umsaetze:before {
  content: "\F62C";
}

.icon-func-di_verwendungszwecke:before {
  content: "\F232";
}

.icon-func-di_vorlagen:before {
  content: "\F7C9";
}

.icon-func-di_zahlungen:before {
  content: "\F706";
}

.icon-func-kontowecker_onboarding:before {
  content: "\F76C";
}

.icon-func-mbf_onboarding:before {
  content: "\F7EF";
}

.icon-func-pfm_benachrichtigungen:before {
  content: "\F7F7";
}

.icon-func-pfm_budget:before {
  content: "\F7F5";
}

.icon-func-pfm_k:before {
  content: "\F611";
}

.icon-func-pfm_v:before {
  content: "\F61D";
}

.icon-func-rr_auszuege:before {
  content: "\F715";
}

.icon-func-rr_devisenkurse:before {
  content: "\F756";
}

.icon-func-rr_mappe:before {
  content: "\F751";
}

.icon-func-rr_protokolle:before {
  content: "\F622";
}

.icon-func-rr_umsaetze:before {
  content: "\F62C";
}

.icon-func-rr_vormerkungen:before {
  content: "\F62C";
}

.icon-asset22:before {
  content: "\F7F0";
}

.icon-asset23:before {
  content: "\F7F1";
}

.icon-asset24:before {
  content: "\F7F2";
}

.icon-asset25:before {
  content: "\F7F3";
}

.icon-settings-person:before {
  content: "\F72B";
}

.icon-settings-konten:before {
  content: "\F736";
}

.icon-settings-sicherheit:before {
  content: "\F711";
}

.icon-settings-dienste:before {
  content: "\F232";
}

.icon-settings-website:before {
  content: "\F72E";
}

.icon-settings-benachrichtigungen:before {
  content: "\F7F7";
}

.icon-settings-nutzerverwaltung:before {
  content: "\F7E2";
}

.icon-settings-ebics:before {
  content: "\F7FF";
}

.icon-settings-intern:before {
  content: "\F84B";
}

.icon-if5_i_aktionen:before {
  content: "\F600";
}

.icon-if5_i_auslandsueberweisung:before {
  content: "\F7C3";
}

.icon-if5_i_auss_aendern:before {
  content: "\F601";
}

.icon-if5_i_auss_loeschen:before {
  content: "\F602";
}

.icon-if5_i_aussetzen:before {
  content: "\F603";
}

.icon-if5_i_bearb:before {
  content: "\F604";
}

.icon-if5_i_bearb_off_auftr:before {
  content: "\F605";
}

.icon-if5_i_brief_closed:before {
  content: "\F607";
}

.icon-if5_i_brief_open_rot:before {
  content: "\F608";
}

.icon-if5_i_cal:before {
  content: "k";
}

.icon-if5_i_chart:before {
  content: "\F60A";
}

.icon-if5_i_depotaufstellung:before {
  content: "\F60B";
}

.icon-if5_i_depothistorie:before {
  content: "l";
}

.icon-if5_i_druck:before {
  content: "p";
}

.icon-if5_i_eur:before {
  content: "\F60C";
}

.icon-if5_i_gesendete_nachrichten:before {
  content: "\F60D";
}

.icon-if5_i_haken:before {
  content: "v";
}

.icon-if5_i_konditionen1:before {
  content: "\F616";
}

.icon-if5_i_kreditabrech:before {
  content: "\F617";
}

.icon-if5_i_lastrueckgabe:before {
  content: "\F618";
}

.icon-if5_i_legilink:before {
  content: "\F619";
}

.icon-if5_i_limit_erhoehen:before {
  content: "\F61A";
}

.icon-if5_i_limit_erhoehen_temp:before {
  content: "\F7DE";
}

.icon-if5_i_limit_senken:before {
  content: "\F61A";
}

.icon-if5_i_liquiditaetsvorschau:before {
  content: "\F79B";
}

.icon-if5_i_loesch:before {
  content: "\F61B";
}

.icon-if5_i_minus_rot:before {
  content: "\F61C";
}

.icon-if5_i_nachricht_verfassen:before {
  content: "\F61D";
}

.icon-if5_i_nachrichtenuebersicht:before {
  content: "\F61E";
}

.icon-if5_i_neartime:before {
  content: "\F61F";
}

.icon-if5_i_neu_rot:before {
  content: "\F620";
}

.icon-if5_i_neue_nachrichten:before {
  content: "\F621";
}

.icon-if5_i_orderstatus:before {
  content: "\F622";
}

.icon-if5_i_pfeil_gefallen:before {
  content: "\F762";
}

.icon-if5_i_pfeil_gestiegen:before {
  content: "\F762";
}

.icon-if5_i_pfeil_gleich:before {
  content: "\F762";
}

.icon-if5_i_pfeil_stark_gefallen:before {
  content: "\F762";
}

.icon-if5_i_pfeil_stark_gestiegen:before {
  content: "\F762";
}

.icon-if5_i_piechart:before {
  content: "\F623";
}

.icon-if5_i_plus_minus:before {
  content: "\F625";
}

.icon-if5_i_plus_rot:before {
  content: "+";
}

.icon-if5_i_pushtan_freischalten:before {
  content: "\F626";
}

.icon-if5_i_pushtan_hinzu:before {
  content: "\F627";
}

.icon-if5_i_pushtan_loeschen:before {
  content: "\F628";
}

.icon-if5_i_realtime:before {
  content: "\F629";
}

.icon-if5_i_sammel_import:before {
  content: "\F635";
}

.icon-if5_i_schloss_auf:before {
  content: "\F62A";
}

.icon-if5_i_schloss_zu:before {
  content: "\F62B";
}

.icon-if5_i_telefon:before {
  content: "h";
}

.icon-if5_i_umr-euro:before {
  content: "\F634";
}

.icon-if5_i_uportrait:before {
  content: "\F636";
}

.icon-if5_i_vortag:before {
  content: "\F637";
}

.icon-if5_i_weiter1:before {
  content: "\F638";
}

.icon-if5_i_wp-tausch:before {
  content: "\F63A";
}

.icon-if5_i_WP-News:before {
  content: "\F639";
}

.icon-if5_ifa_bedingungen:before {
  content: "\F60F";
}

.icon-if5_ifa_ifauftrag:before {
  content: "\F610";
}

.icon-if5_ifa_konditionen:before {
  content: "\F611";
}

.icon-if5_ifa_kontaktformular:before {
  content: "\F612";
}

.icon-if5_ifa_modellberechnung:before {
  content: "\F613";
}

.icon-if5_io_haken:before {
  content: "v";
}

.icon-if5_io_x:before {
  content: "\D7";
}

.icon-if5_symbol_banking_2:before {
  content: "\F62C";
}

.icon-if5_symbol_banking_3:before {
  content: "\F62D";
}

.icon-if5_symbol_banking_4:before {
  content: "\F62E";
}

.icon-if5_symbol_banking_5:before {
  content: "\F62F";
}

.icon-if5_symbol_banking_6:before {
  content: "i";
}

.icon-if5_symbol_bigcirc_minus:before {
  content: "\F61C";
}

.icon-if5_symbol_bigcirc_plus:before {
  content: "+";
}

.icon-if5_symbol_buch:before {
  content: "\F606";
}

.icon-if5_symbol_diskette:before {
  content: "\F635";
}

.icon-if5_symbol_down:before {
  content: "d";
}

.icon-if5_symbol_down_a:before {
  content: "d";
}

.icon-if5_symbol_lupe:before {
  content: "\F632";
}

.icon-if5_symbol_plus:before {
  content: "+";
}

.icon-if5_symbol_redcircle_pfeil:before {
  content: "\F638";
}

.icon-if5_symbol_redcircle_plus:before {
  content: "+";
}

.icon-if5_symbol_redcircle_minus:before {
  content: "\F61C";
}

.icon-if5_symbol_refresh:before {
  content: "\F633";
}

.icon-if5_symbol_skontorechner:before {
  content: "\F634";
}

.icon-if5_symbol_up:before {
  content: "u";
}

.icon-if5_symbol_up_a:before {
  content: "u";
}

.icon-ipo_abschluss:before {
  content: "\F614";
}

.icon-ipo_agb:before {
  content: "\F615";
}

.if6_sitemap .if6_inner > ul > li {
  float: left;
  width: 25%;
  margin: 20px 0 40px 0;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.if6_inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.if6_inner a {
  color: #565656  !important;
}

.cs-button a {
  position: relative;
  text-decoration: none;
  font: 15px/150% SparkasseWeb,Helvetica,Arial,sans-serif;
  margin-top: 15px;
  display: inline-block;
}

.if6_contactstage .buttonparsys {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

.if6_contactstage .cs-button {
  padding: 130px 6px 0 6px;
}

.cs-button {
  display: table-cell;
  width: 20%;
  padding: 115px 5px 20px 5px;
  vertical-align: top;
}

.cs-button div > a:before {
  color: var(--Grau_3);
  font: 30px/81% Pictos-IF;
  height: 30px;
  width: 30px;
  display: inline-block;
  text-align: center;
  margin-left: -4px;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -3px;
}

.cs-button div > a {
  padding-left: 30px;
}

.cs-button > div {
  margin-top: -89px;
  text-align: left;
  display: inline-block;
  vertical-align: top;
}

.if6_contactstage .cs-button a::before {
  color: var(--readable-02);
}

.cs-button > a:before {
  color: #565656;
  font: 100px/81% Pictos-IF;
  height: 100px;
  width: 100px;
  display: block;
  left: 50%;
  top: 0;
  margin-left: -50px;
  margin-top: -96px;
  text-align: center;
  position: absolute;
}

.if6_award a {
  text-decoration: none;
  display: block;
}

.if6_service .if6_inner .section {
  padding-bottom: 0rem;
  padding-top: 0rem;
}

.cs-phone.cs-main.section,
.cs-phone.section {
  padding-bottom: 0rem;
  padding-top: 0rem;
}

.phoneparsys .cs-phone.cs-main {
  display: block;
}

.phoneparsys .cs-phone {
  display: inline-block;
}

.phoneparsys .cs-link {
  display: inline-block;
}

.servicelink a:before {
  font: 33px/81% Pictos-IF;
  width: 33px;
  height: 33px;
  color: var(--Grau_3);
  position: absolute;
  margin-left: -43px;
  margin-top: 5px;
}

.if6_service .servicelink a::before,
.if6_service .servicebutton a::before {
  position: relative;
  margin: -2px 6px 0 0;
}

.if6_service .if6_inner .parsys {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  float: left;
}

.if6_service .if6_inner .parsys {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}

.if6_service .parsys,
.if6_service .parsys + .parsys {
  padding: 0 9px;
}

.servicelink,
.servicebutton {
  border-top: 1px solid var(--Grau_C);
  border-bottom: 1px solid var(--Grau_C);
  margin-top: -1px;
}

.if6_service .servicelink a,
.if6_service .servicebutton a {
  font: 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
  color: var(--readable-02);
  line-height: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin-left: -6px;
  text-align: left;
}

.servicelink span,
.servicebutton span {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.if6_outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--ui-04);
  margin-left: 0;
  -webkit-transition: margin-left .5s ease .2s;
  -o-transition: margin-left .5s ease .2s;
  transition: margin-left .5s ease .2s;
}

.if6_contactstage .if6_inner {
  text-align: center;
  color: var(--readable-02);
}

.if6_inner {
  margin: 0 auto;
  width: 960px;
  overflow: hidden;
}

.if6_contactstage {
  background-color: var(--ui-background-01);
  text-underline-position: under;
}

.if6_contactstage .if6_inner {
  color: var(--readable-02);
}

.if6_contactstage .cs-phone .cs-number,
.if6_contactstage .cs-button a {
  font: 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
}

.if6_contactstage .cs-phone .cs-title,
.if6_contactstage .cs-link a {
  font: 14px/21px SparkasseWebMedium,Helvetica,Arial,sans-serif;
}

.if6_contactstage a {
  text-decoration: none;
}

@media screen and (min-width: 650px) {
  .if6_contactstage .cshead {
    margin: 72px 0 24px 0;
    font: 24px/32px SparkasseWebLight,Helvetica,Arial,sans-serif;
    color: var(--readable-01);
  }

  .if6_contactstage .cs-phone,
  .if6_contactstage .cs-link {
    margin: 12px 12px 0;
  }

  .if6_contactstage .cs-phone.with-separator:before,
  .if6_contactstage .cs-link.with-separator:before {
    border-left: 0;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: var(--ui-02);
    margin-top: 9px;
    margin-left: -16px;
  }

  .if6_contactstage .cs-phone span {
    display: inline;
    margin: 0;
  }

  .if6_contactstage .cs-phone .cs-title::after {
    content: ": ";
  }

  .if6_contactstage .cs-phone .cs-number {
    float: none;
  }

  .if6_contactstage .cs-phone .cs-open:before {
    content: " ";
  }

  .if6_contactstage .cs-phone .cs-number::before,
  .if6_contactstage .cs-link a::after {
    display: none;
  }

  .if6_contactstage .buttonparsys {
    margin-bottom: 30px;
  }

  .if6_contactstage .cs-button {
    padding: 130px 6px 0 6px;
  }

  .if6_contactstage .cs-button a {
    padding-right: 0;
  }

  .if6_contactstage .cs-button a::before {
    color: var(--readable-02);
  }

  .if6_contactstage .cs-button a::after {
    display: none;
  }

  .if6_contactstage .cs-button > div a {
    margin-top: 18px;
  }

  .if6_contactstage .cs-button > div a:first-child {
    margin-top: 0;
  }

  .if6_contactstage .cs-button > div a::before {
    color: var(--readable-02);
  }

  .if6_contactstage .cs-link a:hover,
  .if6_contactstage .cs-button a:hover span {
    text-decoration: underline;
  }
}

@media screen and (max-width: 649px) {
  .if6_contactstage .if6_inner {
    padding: 0 24px;
  }

  .if6_contactstage .cshead {
    font: 12px/18px SparkasseWeb,Helvetica,Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--readable-01);
    border-bottom: 0;
    padding: 0;
    margin: 36px 0 24px;
  }

  .if6_contactstage .buttonparsys {
    margin-bottom: 12px;
  }

  .if6_contactstage .cs-phone,
  .if6_contactstage .cs-button {
    margin-top: 12px;
  }

  .if6_contactstage .cs-phone a,
  .if6_contactstage .cs-button a {
    height: 48px;
    border-radius: 24px;
    font: 14px/21px SparkasseWebMedium,Helvetica,Arial,sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--readable-02);
    background-color: transparent;
    border: 2px solid var(--readable-02);
    padding: 0 54px;
  }

  .if6_contactstage .cs-phone a::before,
  .if6_contactstage .cs-button a::before {
    color: var(--readable-02);
    margin-left: -44px;
    font-size: 33px;
    width: 33px;
    height: 33px;
    margin-top: 6px;
  }

  .if6_contactstage .cs-phone a span,
  .if6_contactstage .cs-button a span {
    width: 100%;
    margin: 0;
  }

  .if6_contactstage .cs-phone.cs-main a,
  .if6_contactstage .cs-button.cs-main a {
    background-color: var(--success-01-contrast);
    border-color: var(--success-01-contrast);
    color: var(--readable-03);
  }

  .if6_contactstage .cs-phone.cs-main a::before,
  .if6_contactstage .cs-button.cs-main a::before {
    color: var(--readable-03);
  }

  .if6_contactstage .cs-link {
    height: 48px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .if6_contactstage .cs-link ::after {
    display: none;
  }

  .if6_contactstage .cs-button a.chatlink,
  .if6_contactstage .cs-button a.videochatlink {
    background-color: transparent;
  }
}

@media (max-width: 1079px) {
  .if6_contactstage .if6_inner {
    padding: 0 15px;
  }
}

.if6_service {
  background-color: var(--ui-background-01);
  text-underline-position: under;
}

.if6_service .if6_inner {
  padding: 12px 0 30px;
}

.if6_service .parsys,
.if6_service .parsys + .parsys {
  padding: 0 9px;
}

.if6_service .serviceheadline {
  font: 12px/18px SparkasseWeb,Helvetica,Arial,sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--readable-01);
  height: auto;
  padding: 18px 0 12px;
}

.if6_service .servicelink,
.if6_service .servicebutton {
  border-color: var(--ui-01);
  background-color: var(--ui-background-01);
}

.if6_service .servicelink a,
.if6_service .servicebutton a {
  font: 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
  color: var(--readable-02);
  line-height: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin-left: -6px;
  text-align: left;
}

.if6_service .servicelink a::before,
.if6_service .servicebutton a::before {
  position: relative;
  margin: -2px 6px 0 0;
}

.if6_service .servicelink a::after,
.if6_service .servicebutton a::after {
  display: none;
}

.if6_service .servicelink a:hover,
.if6_service .servicebutton a:hover {
  background-color: transparent;
}

.if6_service .servicebutton a::before {
  font: 22px/81% Pictos-IF;
  width: 33px;
  height: 22px;
  content: "\F817";
  text-align: center;
}

.if6_service .serviceempty {
  height: 48px;
}

@media (max-width: 1079px) {
  .if6_service .if6_inner {
    padding: 12px 15px 30px;
  }

  .if6_service .if6_inner .parsys,
  .if6_service .if6_inner .parsys + .parsys {
    padding-left: 9px;
  }
}

@media screen and (max-width: 767px) {
  .if6_service .if6_inner {
    padding-top: 0;
  }

  .if6_service .serviceheadline {
    padding: 36px 0 12px;
  }

  .if6_service .if6_inner .parsys,
  .if6_service .if6_inner .parsys + .parsys {
    padding: 0 9px;
  }
}

.if6_sitemap {
  background-color: var(--ui-background-01);
  color: var(--readable-02);
  font: 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
  text-underline-position: under;
}

.if6_sitemap .if6_inner > ul > li {
  margin: 48px 0;
  padding: 0 9px;
}

.if6_sitemap .if6_inner > ul > li .h4 {
  font: bold 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
  margin: 0 0 12px 0;
  color: var(--readable-01);
}

.if6_sitemap .if6_inner > ul > li ul li {
  margin: 0 0 12px 0;
}

.if6_sitemap .if6_inner > ul > li ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1079px) {
  .if6_sitemap .if6_inner {
    padding: 0 15px;
  }
}

.if6_awardarea {
  background-color: var(--ui-background-01);
}

.if6_awardarea .if6_inner {
  padding: 18px 0;
  border-top: 1px solid var(--ui-01);
}

.if6_awardarea .parsys {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.if6_awardarea .if6_award {
  font: 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
  color: var(--readable-02);
  border-right: 0;
  margin: 18px 0;
  padding: 0 12px;
  width: 33.33%;
  max-width: 192px;
  float: none;
}

.if6_awardarea .if6_award > a,
.if6_awardarea .if6_award > div {
  text-align: center;
}

.if6_awardarea .if6_award .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  width: 100%;
  height: 120px;
  padding: 0 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.if6_awardarea .if6_award .image img {
  max-width: 160px;
  max-height: 120px;
  margin: auto;
}

.if6_awardarea .if6_award .image + div {
  display: block;
  padding: 0;
}

@media (max-width: 1079px) {
  .if6_awardarea .if6_inner {
    width: auto;
    margin: 0 24px;
  }
}

@media screen and (max-width: 848px) {
  .if6_awardarea .if6_inner .parsys {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .if6_awardarea .if6_inner {
    border-top: 0;
  }
}

@media screen and (max-width: 649px) {
  .if6_awardarea .if6_inner {
    padding: 0 0 12px 0;
  }

  .if6_awardarea .if6_award {
    padding: 0 15px;
    min-width: 110px;
    margin: 18px 0 0;
  }

  .if6_awardarea .if6_award .image {
    margin-bottom: 0;
  }

  .if6_awardarea .if6_award .image + div {
    display: none;
  }

  .if6_awardarea .if6_award .image img {
    max-width: 80px;
  }
}

.if6_footer {
  background-color: var(--ui-background-01);
  color: var(--readable-02);
  text-underline-position: under;
}

.if6_footer,
.if6_footer .if6_inner {
  overflow: visible;
}

.if6_footer .if6_inner {
  padding: 30px 0 24px 0;
  border-top: 1px solid var(--ui-01);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

.if6_footer .if6_impressum > ul > li > a,
.if6_footer .if6_langselect > div > span {
  font: 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
  color: var(--readable-02);
}

.if6_footer .if6_impressum {
  padding: 0;
  max-width: 840px;
  margin: 0 auto;
  display: block;
}

.if6_footer .if6_impressum > ul {
  margin-right: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
}

.if6_footer .if6_impressum > ul > li {
  margin: 0 24px 6px 0;
}

.if6_footer .if6_impressum > .bterm {
  display: none;
}

.if6_footer .if6_impressum > ul > li,
.if6_footer .if6_langselect > div {
  height: auto;
}

.if6_footer .if6_langselect {
  margin-right: -6px;
  padding-right: 0;
}

.if6_footer .if6_langselect > div > span {
  height: 18px;
  padding: 0 32px 0 21px;
  border: 0;
  border-right: 1px solid var(--ui-01);
  border-radius: 0;
}

.if6_footer .if6_langselect > div > span::before,
.if6_footer .if6_langselect > div > span::after {
  font: 14px/81% Pictos-IF;
  width: 14px;
  height: 14px;
  position: absolute;
}

.if6_footer .if6_langselect > div > span::before {
  font-size: 16px;
  content: "\F7FF";
  top: 3px;
  left: 0;
}

.if6_footer .if6_langselect > div > span::after {
  content: "\F808";
  right: 18px;
  font-size: 22px;
}

.if6_footer .if6_langselect > div > div {
  position: absolute;
  width: auto;
  height: 0;
  bottom: -16px;
  left: -1000px;
  overflow: hidden;
}

.if6_footer .if6_langselect > div > div::before,
.if6_footer .if6_langselect > div > div::after {
  display: none;
}

.if6_footer .if6_langselect .langselect {
  width: auto;
  margin-left: 0;
  position: relative;
  right: auto;
}

.if6_footer .if6_langselect .langselect > div {
  margin-top: 0;
  padding: 6px 0;
  background-color: var(--ui-background-01);
  border: 1px solid var(--ui-01);
  border-radius: 6px;
}

.if6_footer .if6_langselect .langselect li {
  background-color: transparent;
  padding: 0;
  min-width: 168px;
}

.if6_footer .if6_langselect .langselect li + li {
  border-top: 0;
}

.if6_footer .if6_langselect .langselect li.selected {
  position: relative;
}

.if6_footer .if6_langselect .langselect li.selected::after {
  font: 18px/81% Pictos-IF;
  content: "\F605";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.if6_footer .if6_langselect .langselect a {
  font: 14px/21px SparkasseWeb,Helvetica,Arial,sans-serif;
  color: var(--readable-01);
  display: block;
  padding: 7px 12px 8px;
}

.if6_footer .if6_langselect .langselect a:active {
  background-color: var(--ui-background-02);
}

.if6_footer .if6_social {
  display: block;
  text-align: center;
  margin: 18px auto 0 auto;
  max-width: 840px;
}

.if6_footer .no-social-icons .if6_social {
  display: none;
}

.if6_footer .if6_social .icon {
  margin: 0 0 6px 12px;
  float: none;
  display: inline-block;
}

.if6_footer .if6_social .icon:first-child {
  margin-left: 0;
}

.if6_footer .if6_social .icon a {
  width: 24px;
}

.if6_footer .if6_social .icon a::before {
  color: var(--readable-02);
  border-color: var(--readable-02);
  font-size: 22px;
  height: 22px;
  width: 22px;
}

.if6_footer .if6_social .icon a:hover::before,
.if6_footer .if6_social .icon a:focus::before {
  color: var(--ui-background-01);
  background-color: var(--readable-02);
}

.nbf[class*="nav-banking"] .if6_footer {
  background-color: var(--ui-background-01);
}

.nbf[class*="nav-banking"] .if6_footer .if6_inner {
  border-top: 0;
}

.js .langselect_visible.if6_footer .if6_langselect > div > div {
  left: 0;
  height: auto;
}

.js .if6_langselect > div:hover > div,
.if6_langselect > div > div {
  display: inline-block;
}

.no-touch .if6_footer .if6_langselect .langselect a:hover,
.if6_footer .if6_langselect .langselect a:focus {
  background-color: var(--ui-03);
  outline: 0;
}

body:not(.langselect_visible) .if6_header .if6_langselect .langselect {
  height: 0;
  overflow: hidden;
}

body:not(.langselect_visible) .if6_header .if6_langselect > div > div:before,
body:not(.langselect_visible) .if6_header .if6_langselect > div > div:after {
  display: none;
}

@media (min-width: 1277.5px) {
  .nbf[class*="nav-banking"].footer-fixed .if6_main {
    border-bottom: 1px solid transparent;
  }

  .nbf[class*="nav-banking"].footer-fixed .if6_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .nbf[class*="nav-banking"].footer-fixed:not(.nav-banking9) .if6_footer {
    padding-left: 300px;
  }
}

@media screen and (max-width: 1079px) {
  body:not(.langselect_visible) .if6_header .if6_langselect .langselect {
    right: 3000px;
  }
}

@media screen and (max-width: 1277.49px) {
  .if6_footer .if6_impressum > ul {
    margin-right: -18px;
  }

  .if6_footer .if6_impressum > ul > li {
    margin-bottom: 12px;
    margin-right: 18px;
  }

  .if6_footer .if6_social .icon {
    margin-left: 18px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 1008px) {
  .if6_footer .if6_inner {
    width: auto;
    margin: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .no-touch .if6_footer .if6_social .icon a:hover::before {
    color: var(--ui-background-01);
    background-color: var(--readable-02);
  }

  .if6_footer {
    border-bottom: 0;
  }

  .if6_footer .if6_impressum {
    width: auto;
  }

  .if6_footer .if6_impressum > ul > li {
    padding-top: 0;
  }
}

@media screen and (max-width: 649px) {
  .if6_footer .if6_inner {
    border-top: 0;
  }

  .if6_footer .if6_inner .langselect li {
    width: 327px;
  }
}

@media (max-width: 958px) {
  .hide900,
  .if6_buttonline div.primary.hide900,
  .if6_buttonline div.primaryicon.hide900,
  .if6_buttonline div.secondary.hide900,
  .if6_buttonline div.contactsel.hide900,
  .js .cs-phone.hide900 {
    display: inline-block;
  }

  .if6_service .hide900,
  .js .cs-main.hide900 {
    display: block;
  }

  .cs-button.hide900 {
    display: table-cell;
  }

  .hide500,
  .if6_buttonline div.primary.hide500,
  .if6_buttonline div.primaryicon.hide500,
  .if6_buttonline div.secondary.hide500,
  .if6_buttonline div.contactsel.hide500,
  .js .cs-phone.hide500,
  .js .cs-main.hide500,
  .cs-button.hide500 {
    display: none;
  }

  .if6_service .hide500 {
    display: none;
  }

  .cbox-medium {
    width: 100%;
  }

  .cbox-small {
    width: 50%;
  }

  .cbox-large {
    width: 100%;
  }
}

.map-size-full {
  height: 400px;
}

.map-size-half {
  height: 200px;
}

.acf-map {
  width: 100%;
  border: #f8f9fa solid 1px;
  margin-bottom: 20px;
}

/* fixes potential theme css conflict */

.acf-map img {
  max-width: inherit !important;
}

.event .calendar-list svg {
  width: auto;
}

.arts-facets .facetwp-facet {
  margin-bottom: 0;
  width: 100%;
}

body#tinymce {
  margin: 12px !important;
}

.spot-nav {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E"), -webkit-gradient(linear, left top, left bottom, from(#ee0000), to(#cf0000));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E"), -webkit-linear-gradient(top, #ee0000 0%, #cf0000 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E"), -o-linear-gradient(top, #ee0000 0%, #cf0000 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E"), linear-gradient(to bottom, #ee0000 0%, #cf0000 100%);
}

.spot-nav svg {
  z-index: 10000;
  width: auto;
  height: 52px;
}

.spot-nav svg .cls-1,
.spot-nav svg .cls-2 {
  fill: #fff;
}

.spot-nav #spot-main-menu li a {
  font-size: 1.3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 1199.98px) {
  .spot-nav #spot-main-menu li a {
    font-size: 1.3rem;
  }
}

@media (max-width: 991.98px) {
  .spot-nav #spot-main-menu li a {
    font-size: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.8rem;
  }
}

.spot-nav #spot-main-menu li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.spot-nav .toggleMobileNav {
  z-index: 10000;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: relative;
  display: block;
  width: 30px;
  height: 22px;
  margin-left: 1rem;
  background: transparent;
  border-right: 0;
  border-left: 0;
  border-top: 3px solid;
  border-bottom: 3px solid;
  color: #fff;
  font-size: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.spot-nav .toggleMobileNav:before,
.spot-nav .toggleMobileNav:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.spot-nav .toggleMobileNav.is-active {
  border-color: transparent;
}

.spot-nav .toggleMobileNav.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -o-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.spot-nav .toggleMobileNav.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
       -o-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.offside-js--is-open {
  padding-top: 0;
}

.offside-js--is-open .spot {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-filter: blur(5px) brightness(50%);
          filter: blur(5px) brightness(50%);
}

.offside {
  background-color: #ee0000;
  will-change: transform;
  width: 500px;
}

@media (max-width: 991.98px) {
  .offside {
    width: 100vw;
  }

  .offside--right {
    right: -100vw;
  }

  .offside--right.is-open {
    -webkit-transform: translate3d(-100vw, 0, 0);
            transform: translate3d(-100vw, 0, 0);
  }
}

.offside--right {
  right: -500px;
  width: 500px;
}

.offside--right.is-open {
  -webkit-transform: translate3d(-500px, 0, 0);
          transform: translate3d(-500px, 0, 0);
}

@media (max-width: 991.98px) {
  .offside--right {
    right: -100vw;
    width: 100vw;
  }

  .offside--right.is-open {
    -webkit-transform: translate3d(-100vw, 0, 0);
            transform: translate3d(-100vw, 0, 0);
  }
}

.offside .bg-primary-darker {
  background-color: #a20000;
}

.offside .list-group-flush {
  /*.dropdown-menu {
			
		}*/
}

.offside .list-group-flush .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .offside .list-group-flush li {
  padding: 0.25rem 1.25rem;
}

/*Megamenu erstellt 2022*/

@media (min-width: 768px) {
  .spot-nav.navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation {
    position: relative !important;
    /*Menüpunkte sortiert nach Menü-Ebenen*/
    /*Allgemeine Megamenü-Einstellungen*/
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation > .mega-menu > li.mega-menu-item {
    position: unset !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation > .mega-menu > li.mega-menu-item > a.mega-menu-link > span.mega-indicator {
    display: none !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation > .mega-menu > li.mega-menu-item > .mega-sub-menu {
    /*for full width*/
    /*normal*/
    /*left: 0!important;*/
    top: 85px !important;
    left: -130px !important;
    /*Minus Logo-breite*/
    -webkit-box-sizing: content-box !important;
            box-sizing: content-box !important;
    border-right: calc((1110px / 3) * 2) solid #fff !important;
    background-color: #fff !important;
    outline: 3px solid #E00000 !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation > .mega-menu > li.mega-menu-item > .mega-sub-menu > .mega-menu-item > .mega-sub-menu {
    background-color: #E5E8EB !important;
    background-image: url(/app/themes/spk-portal/dist/images/hintergrund_megamenu.png) !important;
    background-position: right bottom !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    display: block !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation > .mega-menu > li.mega-menu-item > .mega-sub-menu > .mega-menu-item > .mega-sub-menu > .mega-menu-item > .mega-sub-menu {
    background-color: transparent !important;
    /*background-image: url(../images/hintergrund_megamenu.png)!important;*/
    background-position: right bottom !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    display: block !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation > .mega-menu > li.mega-menu-item > a.mega-menu-link {
    height: 85px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation li.mega-menu-item {
    position: unset !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation .mega-sub-menu {
    width: calc(1110px / 3) !important;
    min-height: 200px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    -webkit-box-sizing: content-box !important;
            box-sizing: content-box !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation .mega-sub-menu a.mega-menu-link {
    color: #343A40 !important;
    background-color: transparent !important;
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation .mega-sub-menu a.mega-menu-link:hover {
    color: #fff !important;
    background-color: #ee0000 !important;
  }
}

@media (max-width: 767px) {
  .spot-nav.navbar {
    /*Mobiles Megamenü*/
  }

  .spot-nav.navbar #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
  .spot-nav.navbar #mega-menu-wrap-main_navigation .offside a {
    background: #ffffff !important;
    color: #343A40 !important;
  }
}

/*Grauer Bereich im Megamenü ist immer sichtbar*/

/*#mega-menu-wrap-main_navigation > #mega-menu-main_navigation > li.mega-menu-item > ul.mega-sub-menu:after{

	@include for-desktop {
		content: ''!important;
		display: block!important;
		width: calc(1110px / 3)!important; //Menübreite Drittel
		height: 210px!important; //Festgelegte Menühöhe + Padding
		position: absolute!important;
		right: -100%!important;
		top: 0!important;
		//Identisch zu mega-sub-menu Ebene 2
		background-color: #E5E8EB!important;
		background-image: url(../images/hintergrund_megamenu.png)!important;
		background-position: right bottom!important;
		background-size: contain!important;
		background-repeat: no-repeat!important;
	}
}*/

/*Kreise im Megamenü (background) ist immer sichtbar*/

@media (min-width: 768px) {
  #mega-menu-wrap-main_navigation > #mega-menu-main_navigation > li.mega-menu-item > ul.mega-sub-menu:after {
    content: "" !important;
    display: block !important;
    width: calc((1110px / 3) * 2) !important;
    height: 210px !important;
    position: absolute !important;
    right: -200% !important;
    top: 0 !important;
    background-color: #fff !important;
    background-image: url(/app/themes/spk-portal/dist/images/circles-plain.png) !important;
    background-position: 99% bottom !important;
    background-size: 150px !important;
    background-repeat: no-repeat !important;
  }
}

/*temporär*/

.spot #mega-menu-wrap-main_navigation {
  position: unset !important;
}

.spot .spot-nav > .container.px-3,
.spot .module--card .spot-nav > .container.module__body,
.module--card .spot .spot-nav > .container.module__body,
.spot .module--card .branch-header .spot-nav > .module__body.infobox-holder,
.module--card .branch-header .spot .spot-nav > .module__body.infobox-holder,
.spot .branch-header .module--card .spot-nav > .module__body.infobox-holder,
.branch-header .module--card .spot .spot-nav > .module__body.infobox-holder,
.spot .module--card .branch-header .spot-nav > .module__body.slide__content,
.module--card .branch-header .spot .spot-nav > .module__body.slide__content,
.spot .branch-header .module--card .spot-nav > .module__body.slide__content,
.branch-header .module--card .spot .spot-nav > .module__body.slide__content,
.spot .branch-header .spot-nav > .px-3.infobox-holder,
.branch-header .spot .spot-nav > .px-3.infobox-holder,
.spot .branch-header .slide__title .spot-nav > span.infobox-holder,
.branch-header .slide__title .spot .spot-nav > span.infobox-holder,
.spot .branch-header .spot-nav > .px-3.slide__content,
.branch-header .spot .spot-nav > .px-3.slide__content,
.spot .branch-header .slide__title .spot-nav > span.slide__content,
.branch-header .slide__title .spot .spot-nav > span.slide__content,
.spot .branch-header .slide__title .spot-nav > span.container,
.branch-header .slide__title .spot .spot-nav > span.container {
  position: relative !important;
}

/*mobile Menü FIX*/

@media (max-width: 767px) {
  #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
  #mega-menu-wrap-main_navigation .offside a {
    background: #ffffff !important;
    color: #343A40 !important;
  }
}

/*Grauer Bereich im Megamenü ist immer sichtbar*/

@media screen and (min-width: 768px) {
  #mega-menu-wrap-main_navigation > #mega-menu-main_navigation > li.mega-menu-item > ul.mega-sub-menu:before {
    content: "" !important;
    display: block !important;
    width: calc(1110px / 3) !important;
    height: 210px !important;
    position: absolute !important;
    right: -100% !important;
    top: 0 !important;
    z-index: 99;
    background-color: #E5E8EB !important;
    background-image: url(/app/themes/spk-portal/dist/images/hintergrund_megamenu.png) !important;
    background-position: right bottom !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }
}

/*Mega Menü Schatten*/

@media (min-width: 768px) {
  .spot-nav.navbar #mega-menu-wrap-main_navigation > .mega-menu > li.mega-menu-item > .mega-sub-menu {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }

  #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    font-size: 17px;
  }
}

/*Menü Suche*/

#spotmenusearch .openclose {
  position: absolute;
  left: -100vw;
  opacity: 0;
  visibility: hidden;
}

#spotmenusearch .opencloselabel {
  font-size: 34px;
  font-weight: 100;
  padding-top: 15px;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 1;
  color: #fff;
  cursor: pointer;
}

#spotmenusearch .openclose:checked ~ .opencloselabel {
  color: #000;
  opacity: 0.4;
}

#spotmenusearch .openclose ~ form.spotmenusearch {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#spotmenusearch .openclose:checked ~ form.spotmenusearch {
  opacity: 1;
  visibility: visible;
}

#spotmenusearch {
  position: relative;
}

@media (max-width: 767px) {
  #spotmenusearch {
    display: none;
  }
}

#spotmenusearch #spotmenusearch_hidden {
  position: absolute;
  top: 100%;
  right: -100px;
  width: 400px;
}

#spotmenusearch .btn-white svg {
  height: 20px;
  padding-top: 2px;
}

/*Ausblenden Burgermenü Desktop*/

@media (min-width: 768px) {
  button.spot-offcanvas-button {
    display: none;
  }
}

.spotmenusearch-container {
  position: relative;
}

@media (max-width: 767px) {
  .spotmenusearch-container {
    display: none;
  }
}

/* Bugfix: Mobiles Menü wird im Desktop unter dem Footer angezeigt */

@media screen and (min-width: 769px) {
  #spot-offcanvas-menu {
    display: none;
  }
}

.teaser-headline.textcenter {
  text-align: center;
  width: 100%;
}

.teaser-subline {
  color: #888;
  max-width: 800px;
  margin: 0 auto;
}

.teaser-subline.textcenter {
  text-align: center;
}

.teaser-subline.thicker {
  font-weight: 400;
}

.teaser-hr {
  width: 10%;
  min-width: 60px;
  height: 4px;
  border-top: none;
}

.teaser-hr.centerhr {
  margin: 15px 45% 25px !important;
}

.bg-grey-pattern {
  background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA3LjEtYzAwMCA3OS5lZGEyYjNmYWMsIDIwMjEvMTEvMTctMTc6MjM6MTkgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyMy4xIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MUYwNkMzREQyQTkxMUVDOEI1NjhCNjY5NEYyNkU0RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5MUYwNkMzRUQyQTkxMUVDOEI1NjhCNjY5NEYyNkU0RSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjkxRjA2QzNCRDJBOTExRUM4QjU2OEI2Njk0RjI2RTRFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjkxRjA2QzNDRDJBOTExRUM4QjU2OEI2Njk0RjI2RTRFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoKDBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAZgBkAwERAAIRAQMRAf/EAGYAAQEBAQAAAAAAAAAAAAAAAAABAggBAQEBAAAAAAAAAAAAAAAAAAABAhAAAgICAgEEAgIBBQEAAAAAAREAIQISMSIyQVFhE5FCUiMzcYGhYgNDEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwDovk1QBuuZplAWNr1A8VANdiziUsVxAtgo2SaK4gTstGd15qBbJQog2VzAgJNhjENhcwLY5Z2PWuICx1JJyLWS4gOx6gkZBPJcwAZNUAbrmAdbXqBeKgRZvZnVeCgWye3VHrfMCM+RHdVg4BkEkB5FPF8QHFY2CexfEAuuv6LzcByUaAIRfMBZIJrINYvmBbHHZntfEBwNReJbyfECGxqawCWT5gWyRt1R63zAjPkR3VYOAQ22fdeLgPUbpvpAW0V9qo+igLZ1W9bGAC/Ras7wJ11dfUuLcClPstWNID1Gy3vWAHrom+/4gKVL672gDrq8l9daiBfUbpvooEtor7VR9IE6bKvt/wB4GvE+uTP4gRfoy151Ac9WQQu1XAvNhhGx7wI63tLwqA4LsshD2gOCAWSX29oF5fI1N8XANjawA+tXAEobWQV1qoDg28mfxAf9GWR51AmweiL/AJ1ACj1tntfEAAFqP8asuUCAQsqwC1L5kDkg5UQet8wF+S/sXi6gOCTjeRI2D4gAAKxvEvYuBefKgD0vmoCyiR3DQdQJY7APMph1Aoo9bBPa+IEAC1H+NXk7gHl4r+teTgAielAHtUADjqx/jVhQBIAeV4VqFAGiNryJ61xAl8V9q5UC8kjGsgRsVAAg3jWAewUAUPJEE9K4qBboFb3qVAl8Yof+lMqBQietAHtUCAhML61YUB25Y+tcKBbyNvHU18wI8vNFgeEA8g8gySuvtAt40HlsbPtAlrRlLzgLJV4gEI+8AySMiwQ1j7wLY98tjfxUBYGtkF9/aALI1sALv7wF5G3jqa+YEeR7oggeEAjtuy14QHqN030gLbK+xUPiA9Tqt62gAh4JPtAix0VfUuYFK/ZasawHqNlvesAFeib7/iAWKQX12zAEYpZL66RgX1G6b6QJbZX2qh8QIsN3X2riBeD2tnr8QF+JPdVkoCyTiCsgtslzAc3jQB7BcwIxrt+i8FcC8FmwSNQuIDggZF5ForiAFvWke1c1AMEbCsA3iuYAkAbG8CliuIF4I2sk9a4gS/F91WSgR47aruvJSi8GmWbviQAP1vVeTuAT6ljEJZPmA5vIIg0HzAWtl3Xg4CwWLJTD4gAEUGcS3k+IFT5YR63zAWVkQRkGsYELHYB5FPGBRRpkE2faBF+t6kXk7gHk9dev8oAJ9En3gQHDWl9SuAJxXZaVrApTG62fSBPx9ygULY6LZjeBAcf1Wl7wKVW6T/r/ABAeoa+y9f8ASA9eq+2toAJ9En3gQHHWl9SuBe3NfUv+IFvI08Ub+YEBPkigPCAZHayClj7QLYoss0faBFktGdl5wFkoMJM+8BZ7BgDnH3gWxyzsaC4gLHWyS+3tAEZHqGCF294C8jTxAN/MCM+aKA8FAa5PdnX+EAbyGwRB6/MCMtkf2IrH0gGQScQ8yth7QKKetgnsfaBmtF/815esDRtDILEEan3gRvIHILIPUe8CiidQyT2+KgAtULwtmBCtUawpZQK3kNgiD1+YEZYJH9iKx9IE67u/s/j6QP/Z);
  background-repeat: repeat;
  background-size: 80px;
}

.red-btn {
  background-color: #ee0000;
  color: #fff;
  padding: 10px 15px;
  margin: 10px auto 0;
  text-align: center;
  display: block;
  border-radius: 7px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.red-btn:hover {
  color: #fff !important;
  background-color: #EE0000 !important;
  text-decoration: none !important;
  -webkit-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}

.start-new-teaser-content .module__body {
  min-height: 200px;
  background: #fff;
  border-top: 4px solid #ee0000;
}

.start-new-teaser-content .module__body hr {
  display: none;
}

.start-new-teaser-content .module__body .subline {
  color: #ee0000;
  font-weight: 500;
  padding-top: 5px;
}

.start-new-teaser-content .module__body p {
  color: #888;
  padding-top: 10px;
  font-weight: 400;
}

.start-new-teaser-content .newimage__header {
  height: 220px;
  width: 100%;
  background-size: cover;
}

.new-content-boxes .module--teaser:hover {
  text-decoration: none !important;
}

.new-content-boxes .newimage__header {
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.new-content-boxes .newimage__header .box-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 220px;
}

.new-content-boxes .newimage__header img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 220px;
}

.new-content-boxes .newimage__header .immo-standort,
.new-content-boxes .newimage__header .box-category {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #ee0000;
  padding: 2px 10px;
  color: #fff;
  font-size: 0.9em;
}

.new-content-boxes .module__body .immotitle,
.new-content-boxes .module__body .box-title {
  font-size: 1.1em;
  font-weight: 600;
  padding-top: 5px;
  min-height: 55px;
}

.new-content-boxes .module__body .immotitle.textoverflow,
.new-content-boxes .module__body .box-title.textoverflow {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.new-content-boxes .module__body .subline {
  font-size: 0.8em;
  font-weight: 800;
}

.new-content-boxes .module__body .desc.textoverflow {
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}

.new-content-boxes .module__body .werte {
  text-align: right;
  font-weight: 600;
  font-size: 0.9em;
  color: #888;
}

.new-content-boxes .module__body .kategorie {
  font-size: 0.9em;
  color: #888;
}

.new-content-boxes .module__body .preis-container hr.preislinie {
  height: 1px;
  border-top: 1px solid #333;
  display: block;
  width: 100%;
  margin: 5px 0;
}

.new-content-boxes .module__body .preis-container .preis {
  font-size: 1.4em;
  color: #ee0000;
  text-align: right;
  font-weight: 600;
}

@media screen and (max-width: 1100px) {
  .new-content-boxes .module__body .preis-container .preis {
    font-size: 1em;
    white-space: nowrap;
  }
}

.new-content-boxes .module__body .preis-container .kategorie {
  font-weight: 600;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.new-content-boxes .module--teaser .background {
  height: auto;
  min-height: 400px;
}

/*Magazin Slider _______________________________________________________ */

.magazin-slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.el-tab-wrapper {
  padding-left: 0;
  padding: 0;
  width: 33%;
  min-height: 450px;
  /*Boxhöhe*/
}

@media screen and (max-width: 901px) {
  .el-tab-wrapper {
    width: 100%;
    padding-bottom: 510px;
    /*Boxhöhe + Padding*/
  }
}

.el-tab-wrapper .top-posts {
  padding: 15px;
}

.el-tab-wrapper .top-posts a:hover {
  text-decoration: none;
}

.el-tab-wrapper .top-posts .post__headline {
  font-size: 20px;
}

.el-tab-wrapper .top-posts .post__kicker--subline {
  font-size: 16px;
  margin-bottom: 10px;
}

.el-tab-content {
  width: 67%;
  position: absolute;
  left: 33%;
  top: 0;
}

@media screen and (max-width: 901px) {
  .el-tab-content {
    width: 100%;
    left: 0;
    top: 450px;
    /*Boxhöhe*/
  }
}

.el-tab-content .all_link:hover .link_content {
  background-color: rgba(0, 0, 0, 0.3);
}

.el-tab-content .post {
  height: 100%;
  position: relative;
}

.el-tab-content .post .post_image {
  min-height: 450px;
  /*Boxhöhe*/
  width: 100%;
}

.el-tab-content .post .post_image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 450px;
  /*Boxhöhe*/
}

.el-tab-content .post .post-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  min-height: 450px;
  /*Boxhöhe*/
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.el-tab-content .post .post-wrapper .post__headline {
  background-color: #fff;
  padding: 15px;
  color: #888;
  -webkit-transform: translateY(-10px);
       -o-transform: translateY(-10px);
          transform: translateY(-10px);
  z-index: 50;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}

.el-tab-content .post .post-wrapper .post__kicker--subline {
  padding: 5px 7px;
  background-color: #ee0000;
  margin: 0 15px;
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 90;
}

.el-tab-content .post .post-wrapper .link {
  width: 100%;
}

.el-tab-content .post .post-wrapper .link .link_content {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px 30px;
  display: inline;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  /*&:hover {
						background-color: rgba(0, 0, 0, 0.3);
					}*/
}

.post-slider {
  margin-bottom: 10px;
  padding-left: 15px;
}

.post-slider .latest-article .excerpt-box {
  overflow: visible;
}

/* tablinks */

.el-tablinks-wrapper {
  height: 100%;
}

.el-tablinks-wrapper .btn-brand {
  margin: 15px;
}

.el-tab-links {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  /*margin-left: 10px;
    margin-right: 10px;*/
  margin-left: 0;
  margin-right: 0;
}

.el-tab-links:hover,
.el-tab-links.show {
  background: #f00;
  margin-left: 0px;
  margin-right: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.el-tab-links:hover .post__kicker,
.el-tab-links:hover .post__headline,
.el-tab-links.show .post__kicker,
.el-tab-links.show .post__headline {
  color: white;
}

/* tabcontent */

.el-tab-content .active {
  visibility: visible;
}

.el-tab-content.show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0.1s 0s ease, opacity 0.1s 0s ease;
  -o-transition: visibility 0.1s 0s ease, opacity 0.1s 0s ease;
  transition: visibility 0.1s 0s ease, opacity 0.1s 0s ease;
}

.el-tab-content.hide {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.1s 0s ease, opacity 0.1s 0s ease;
  -o-transition: visibility 0.1s 0s ease, opacity 0.1s 0s ease;
  transition: visibility 0.1s 0s ease, opacity 0.1s 0s ease;
}

.el-tab-content .link {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
}

/* responsive */

@media (min-width: 930px) {
  .el-tab-links:hover::after,
  .el-tab-links.show::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 0 12.5px 15px;
    border-color: transparent transparent transparent #f00;
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 9999999999999999999;
  }

  .el-tab-content {
    padding-bottom: 0;
  }
}

/*Abstände*/

.module-startseite.module-tax.module-tags {
  padding-top: 20px !important;
}

.module-startseite.module-tax.module-tags h2.hc {
  margin-top: 15px;
}

/*Breakpoint Modul*/

@media (min-width: 930px) {
  .post-slider [class~="grid"] > [class*="clmn-4"],
  [class*="grid-"] > [class*="clmn-4"],
  [class*="grid_"] > [class*="clmn-4"] {
    -ms-flex-preferred-size: 33.33333% !important;
        flex-basis: 33.33333% !important;
    max-width: 33.33333% !important;
  }

  .post-slider [class~="grid"] > [class*="clmn-8"],
  [class*="grid-"] > [class*="clmn-8"],
  [class*="grid_"] > [class*="clmn-8"] {
    -ms-flex-preferred-size: 66.66667% !important;
        flex-basis: 66.66667% !important;
    max-width: 66.66667% !important;
  }
}

/* Filialen*/

.start-filial-container .filial_teaser {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
}

.start-filial-container .filial_teaser:hover {
  text-decoration: none;
}

.start-filial-container .filial_teaser .image_bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.start-filial-container .filial_teaser .image_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 500px;
}

.start-filial-container .titlearea {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 50;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.start-filial-container .titlearea .toptitle {
  width: 100%;
}

.start-filial-container .titlearea .toptitle .subline {
  background-color: #ee0000;
  color: #fff;
  padding: 5px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: 15px;
  position: relative;
  z-index: 60;
}

.start-filial-container .titlearea .toptitle .title {
  background-color: #fff;
  padding: 7px 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  -webkit-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
  position: relative;
  z-index: 55;
  font-weight: 600;
  color: #666;
  font-size: 1.2em;
}

@media screen and (max-width: 901px) {
  .start-filial-container .titlearea .toptitle .title {
    padding: 7px 20px;
  }
}

.start-filial-container .titlearea .bottom_button {
  background-color: #fff;
  border-radius: 5px;
  margin-left: auto;
  padding: 20px;
  display: block;
  margin-top: 100px;
}

.start-filial-container .titlearea .bottom_button .w100 {
  width: 100%;
  display: block;
}

.start-filial-container .titlearea .bottom_button .infotxt {
  color: #666;
  font-weight: 600;
}

.img_foot_mob {
  display: none;
}

@media only screen and (max-width: 500px) {
  .img_desk {
    display: none;
  }

  .img_foot_mob {
    display: block;
  }

  .start-filial-container .filial_teaser .image_bg .img_foot_mob {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 300px;
  }

  /*
	.start-filial-container .titlearea .bottom_button {
    margin-left: 0;
    margin-top: 141px;
  }*/
}

.extern_nav .nav-elements .frame-header__icon {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  height: 1.5rem;
  color: white;
}

.extern_nav .nav-elements .frame-header__icon .frame-header__back {
  padding: 10px 0;
  margin-left: auto;
  margin-right: 50px;
  display: inline-block;
}

.extern_nav .nav-elements .frame-header__icon .frame-header__close {
  padding: 10px 0;
}

.target-frame {
  position: absolute;
  height: 85%;
  width: 100%;
  border: 0;
}

.spot-search-results .post {
  background-color: #343a40;
  color: white;
}

.spot-search-results .event {
  background-color: #990f71;
  color: white;
}

.spot-search-results .immo {
  background-color: #007bff;
  color: white;
}

.spot-search-results .branch {
  background-color: #ee0000;
  color: white;
}

.spot-search-results .district {
  background-color: #0f9999;
  color: white;
}

.spot-search-results {
  width: 100%;
}

.spot-search-results .list-group .list-group-item,
.spot-search-results .list-group .offside .list-group-flush .nav-item,
.offside .list-group-flush .spot-search-results .list-group .nav-item,
.spot-search-results .list-group .offside .list-group-flush .sitewide-footer .footer__nav li,
.offside .list-group-flush .sitewide-footer .footer__nav .spot-search-results .list-group li,
.spot-search-results .list-group .sitewide-footer .footer__nav .offside .list-group-flush li,
.sitewide-footer .footer__nav .offside .list-group-flush .spot-search-results .list-group li {
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.spot-search-results .list-group .list-group-item:hover,
.spot-search-results .list-group .offside .list-group-flush .nav-item:hover,
.offside .list-group-flush .spot-search-results .list-group .nav-item:hover,
.spot-search-results .list-group .offside .list-group-flush .sitewide-footer .footer__nav li:hover,
.offside .list-group-flush .sitewide-footer .footer__nav .spot-search-results .list-group li:hover,
.spot-search-results .list-group .sitewide-footer .footer__nav .offside .list-group-flush li:hover,
.sitewide-footer .footer__nav .offside .list-group-flush .spot-search-results .list-group li:hover {
  -webkit-transform: scale(1.01);
       -o-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-box-shadow: 10px 0 5px -10px rgba(0, 0, 0, 0.4);
          box-shadow: 10px 0 5px -10px rgba(0, 0, 0, 0.4);
}

.spotsearch__input {
  border: 1px solid white;
}

.spotsearch__input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.spotsearch__result-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.module--search-spot {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-duration: .4s;
       -o-transition-duration: .4s;
          transition-duration: .4s;
  position: fixed;
  top: 52px;
  right: 0;
  left: 0;
  z-index: 666;
  pointer-events: none;
  -webkit-transform: translateY(-75%);
       -o-transform: translateY(-75%);
          transform: translateY(-75%);
  opacity: 0;
  z-index: 100;
  background-color: rgba(233, 236, 239, 0.96);
}

@media (min-width: 768px) {
  .module--search-spot {
    top: 76px;
  }
}

.module--search-spot .module__header {
  text-align: right;
}

.module--search-spot .module__body #spotSearchResults .searchwp-live-search-results {
  -webkit-box-shadow: none;
          box-shadow: none;
  max-height: none;
  min-height: 0;
  background: none;
  outline: none;
}

.module--search-spot .module__body #spotSearchResults .spinner {
  top: 35% !important;
}

.module--search-spot .module__body .search-image {
  max-height: 200px;
  overflow: hidden;
}

.module--search-spot.is-active {
  pointer-events: all;
  opacity: 1;
  overflow-y: scroll;
  max-height: 100%;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.searchwp-live-search-results {
  width: 100% !important;
}

.searchresults {
  margin: 0 auto;
}

.searchresults__query {
  color: #ee0000;
}

.template-eventlist {
  background-color: #343a40;
}

.eventflyer {
  margin-top: 3rem;
  margin-bottom: 3rem;
  background-color: #ee0000;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 1rem;
  min-height: 1503px;
}

.eventflyer header .time {
  font-size: 2.5em;
  line-height: 1.3;
}

.eventflyer header h1 {
  font-size: 3em;
}

.eventflyer__body h4,
.eventflyer__body h5 {
  font-size: 1.05rem;
  margin: 0.1rem;
}

.eventflyer__body--time {
  position: relative;
  background: #ced4da;
  z-index: 1;
  line-height: 1;
}

.eventflyer__body--time::after,
.eventflyer__body--time::before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.eventflyer__body--time::after {
  border-left-color: #ee0000;
  border-width: 15px;
  margin-top: -15px;
}

.eventflyer__body--time::before {
  border-left-color: #ced4da;
  border-width: 36px;
  margin-top: -36px;
}

.eventflyer__body--info--cost {
  background-color: #adb5bd;
  font-size: 0.9em;
}

.eventflyer__body--info--description {
  height: 60px;
}

.eventflyer__body--img {
  min-height: 150px;
  background-size: cover;
  background-position: center;
}

.eventflyer__btn {
  position: fixed;
  z-index: 66;
  bottom: 0;
  right: 100px;
}

/* Spinner */

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #ee0000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
       -o-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  display: inline-grid;
}

/* Animation */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Responsive */

@media (min-width: 576px) {
  .eventflyer__body--img {
    min-height: 0px;
  }
}

/* Media Print */

@media print {
  html,
  body {
    background-color: #ee0000;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }

  h1 {
    font-size: 3em;
  }

  h4,
  h5 {
    font-size: 1.1rem;
    margin: 0.1rem;
  }

  .template-eventlist {
    background-color: #ee0000;
  }

  .eventflyer {
    margin-top: 0;
    margin-bottom: 0;
    height: 100%;
    page-break-after: always;
    overflow: hidden;
  }

  .eventflyer__btn {
    display: none;
  }
}

.themenwelten--primary_cat .sidebar,
.themenwelten--sub_cat .sidebar {
  display: none;
}

.themenwelten--primary_cat .content,
.themenwelten--sub_cat .content {
  padding-top: 0 !important;
}

.svg-meinzuhause svg text {
  font-weight: 600 !important;
  font-family: Sparkasse, arial, sans-serif !important;
}

@media (min-width: 992px) {
  .svg-meinzuhause svg {
    width: 100%;
    margin-bottom: -79px;
  }
}

@media (min-width: 1200px) {
  .svg-meinzuhause svg {
    width: 680px;
  }
}

@media (min-width: 1600px) {
  .svg-meinzuhause svg {
    width: 800px;
  }
}

.svg-meinzuhause svg #sec-wohnen #wohnen {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-wohnen #button-wohnen {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-wohnen #button-wohnen #btn-wohnen::before {
  content: "hi";
}

.svg-meinzuhause svg #sec-wohnen:hover #wohnen {
  opacity: 0.5;
}

.svg-meinzuhause svg #sec-wohnen:hover #button-wohnen {
  opacity: 1;
}

.svg-meinzuhause svg #sec-kueche #kueche {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-kueche #button-kueche {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-kueche #button-kueche #btn-kueche::before {
  content: "hi";
}

.svg-meinzuhause svg #sec-kueche:hover #kueche {
  opacity: 0.5;
}

.svg-meinzuhause svg #sec-kueche:hover #button-kueche {
  opacity: 1;
}

.svg-meinzuhause svg #sec-energie #energie {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-energie #button-energie {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-energie #button-energie #btn-energie::before {
  content: "hi";
}

.svg-meinzuhause svg #sec-energie:hover #energie {
  opacity: 0.5;
}

.svg-meinzuhause svg #sec-energie:hover #button-energie {
  opacity: 1;
}

.svg-meinzuhause svg #sec-baeder #baeder {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-baeder #button-baeder {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-baeder #button-baeder #btn-baeder::before {
  content: "hi";
}

.svg-meinzuhause svg #sec-baeder:hover #baeder {
  opacity: 0.5;
}

.svg-meinzuhause svg #sec-baeder:hover #button-baeder {
  opacity: 1;
}

.svg-meinzuhause svg #sec-garten #garten {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-garten #button-garten {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-garten #button-garten #btn-garten::before {
  content: "hi";
}

.svg-meinzuhause svg #sec-garten:hover #garten {
  opacity: 0.5;
}

.svg-meinzuhause svg #sec-garten:hover #button-garten {
  opacity: 1;
}

.svg-meinzuhause svg #sec-home #home {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-home #button-home {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  cursor: pointer;
}

.svg-meinzuhause svg #sec-home #button-home #btn-home::before {
  content: "hi";
}

.svg-meinzuhause svg #sec-home:hover #home {
  opacity: 0.5;
}

.svg-meinzuhause svg #sec-home:hover #button-home {
  opacity: 1;
}

.svg-meinzuhause svg #sec-home #home {
  display: none;
  -webkit-transition: opacity .5s linear;
  -o-transition: opacity .5s linear;
  transition: opacity .5s linear;
}

.svg-meinzuhause svg #sec-home #home:hover {
  opacity: 0;
}

.svg-meinzuhause svg #sec-home:hover #home {
  display: block;
  opacity: 0.5;
}

.kitchenadvisor__iframe {
  display: none;
}

.kitchenadvisor__overlay-box {
  background-color: rgba(238, 0, 0, 0.5);
}

.kitchenadvisor__overlay-box .kitchen-icon {
  opacity: 0.75;
}

.kitchenadvisor__overlay-box #anable-kitchenadvisor a {
  color: #fff !important;
  text-decoration: underline;
}

/** property:search */

.output-property-search .property__item__content .title {
  font-weight: 300;
}

.custom-pagination .page-item {
  cursor: pointer;
}

.custom-pagination .page-item.active,
.custom-pagination .page-item:hover {
  background-color: #ee0000;
  color: #fff;
}

/** property:singlepage */

.template-propertysingle .content {
  padding-bottom: 0 !important;
}

@-webkit-keyframes lum-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes lum-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes lum-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes lum-fadeZoom {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-o-keyframes lum-fadeZoom {
  0% {
    -o-transform: scale(0.5);
       transform: scale(0.5);
    opacity: 0;
  }

  100% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1;
  }
}

@keyframes lum-fadeZoom {
  0% {
    -webkit-transform: scale(0.5);
         -o-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes lum-loader-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@-o-keyframes lum-loader-rotate {
  0% {
    -o-transform: translate(-50%, -50%) rotate(0);
       transform: translate(-50%, -50%) rotate(0);
  }

  50% {
    -o-transform: translate(-50%, -50%) rotate(-180deg);
       transform: translate(-50%, -50%) rotate(-180deg);
  }

  100% {
    -o-transform: translate(-50%, -50%) rotate(-360deg);
       transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes lum-loader-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
         -o-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
         -o-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
         -o-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@-webkit-keyframes lum-loader-before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }

  25% {
    -webkit-transform: scale(1.3) translateX(8px);
            transform: scale(1.3) translateX(8px);
  }

  40% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }

  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }

  75% {
    -webkit-transform: scale(0.7) translateX(8px);
            transform: scale(0.7) translateX(8px);
  }

  90% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-o-keyframes lum-loader-before {
  0% {
    -o-transform: scale(1);
       transform: scale(1);
  }

  10% {
    -o-transform: scale(1.2) translateX(6px);
       transform: scale(1.2) translateX(6px);
  }

  25% {
    -o-transform: scale(1.3) translateX(8px);
       transform: scale(1.3) translateX(8px);
  }

  40% {
    -o-transform: scale(1.2) translateX(6px);
       transform: scale(1.2) translateX(6px);
  }

  50% {
    -o-transform: scale(1);
       transform: scale(1);
  }

  60% {
    -o-transform: scale(0.8) translateX(6px);
       transform: scale(0.8) translateX(6px);
  }

  75% {
    -o-transform: scale(0.7) translateX(8px);
       transform: scale(0.7) translateX(8px);
  }

  90% {
    -o-transform: scale(0.8) translateX(6px);
       transform: scale(0.8) translateX(6px);
  }

  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes lum-loader-before {
  0% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.2) translateX(6px);
         -o-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }

  25% {
    -webkit-transform: scale(1.3) translateX(8px);
         -o-transform: scale(1.3) translateX(8px);
            transform: scale(1.3) translateX(8px);
  }

  40% {
    -webkit-transform: scale(1.2) translateX(6px);
         -o-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }

  50% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.8) translateX(6px);
         -o-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }

  75% {
    -webkit-transform: scale(0.7) translateX(8px);
         -o-transform: scale(0.7) translateX(8px);
            transform: scale(0.7) translateX(8px);
  }

  90% {
    -webkit-transform: scale(0.8) translateX(6px);
         -o-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }

  100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes lum-loader-after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }

  25% {
    -webkit-transform: scale(1.3) translateX(-8px);
            transform: scale(1.3) translateX(-8px);
  }

  40% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }

  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }

  75% {
    -webkit-transform: scale(0.7) translateX(-8px);
            transform: scale(0.7) translateX(-8px);
  }

  90% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-o-keyframes lum-loader-after {
  0% {
    -o-transform: scale(1);
       transform: scale(1);
  }

  10% {
    -o-transform: scale(1.2) translateX(-6px);
       transform: scale(1.2) translateX(-6px);
  }

  25% {
    -o-transform: scale(1.3) translateX(-8px);
       transform: scale(1.3) translateX(-8px);
  }

  40% {
    -o-transform: scale(1.2) translateX(-6px);
       transform: scale(1.2) translateX(-6px);
  }

  50% {
    -o-transform: scale(1);
       transform: scale(1);
  }

  60% {
    -o-transform: scale(0.8) translateX(-6px);
       transform: scale(0.8) translateX(-6px);
  }

  75% {
    -o-transform: scale(0.7) translateX(-8px);
       transform: scale(0.7) translateX(-8px);
  }

  90% {
    -o-transform: scale(0.8) translateX(-6px);
       transform: scale(0.8) translateX(-6px);
  }

  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes lum-loader-after {
  0% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.2) translateX(-6px);
         -o-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }

  25% {
    -webkit-transform: scale(1.3) translateX(-8px);
         -o-transform: scale(1.3) translateX(-8px);
            transform: scale(1.3) translateX(-8px);
  }

  40% {
    -webkit-transform: scale(1.2) translateX(-6px);
         -o-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }

  50% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }

  60% {
    -webkit-transform: scale(0.8) translateX(-6px);
         -o-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }

  75% {
    -webkit-transform: scale(0.7) translateX(-8px);
         -o-transform: scale(0.7) translateX(-8px);
            transform: scale(0.7) translateX(-8px);
  }

  90% {
    -webkit-transform: scale(0.8) translateX(-6px);
         -o-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }

  100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox .lum-lightbox-inner {
  top: 2.5%;
  right: 2.5%;
  bottom: 2.5%;
  left: 2.5%;
}

.lum-lightbox .lum-lightbox-inner img {
  position: relative;
}

.lum-lightbox .lum-lightbox-inner .lum-lightbox-caption {
  margin: 0 auto;
  color: #fff;
  max-width: 700px;
  text-align: center;
}

.lum-lightbox.lum-open {
  z-index: 9999;
}

.lum-lightbox.lum-opening {
  -webkit-animation: lum-fade 180ms ease-out;
       -o-animation: lum-fade 180ms ease-out;
          animation: lum-fade 180ms ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  -webkit-animation: lum-fadeZoom 180ms ease-out;
       -o-animation: lum-fadeZoom 180ms ease-out;
          animation: lum-fadeZoom 180ms ease-out;
}

.lum-lightbox.lum-closing {
  -webkit-animation: lum-fade 300ms ease-in;
       -o-animation: lum-fade 300ms ease-in;
          animation: lum-fade 300ms ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  -webkit-animation: lum-fadeZoom 300ms ease-in;
       -o-animation: lum-fadeZoom 300ms ease-in;
          animation: lum-fadeZoom 300ms ease-in;
  animation-direction: reverse;
}

.lum-lightbox-loader::before,
.lum-lightbox-loader::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.lum-lightbox-loader::before {
  left: 0;
  -webkit-animation: lum-loader-before 1800ms infinite linear;
       -o-animation: lum-loader-before 1800ms infinite linear;
          animation: lum-loader-before 1800ms infinite linear;
}

.lum-lightbox-loader::after {
  right: 0;
  -webkit-animation: lum-loader-after 1800ms infinite linear;
       -o-animation: lum-loader-after 1800ms infinite linear;
          animation: lum-loader-after 1800ms infinite linear;
  -webkit-animation-delay: -900ms;
       -o-animation-delay: -900ms;
          animation-delay: -900ms;
}

.lum-loading .lum-lightbox-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  -webkit-animation: lum-loader-rotate 1800ms infinite linear;
       -o-animation: lum-loader-rotate 1800ms infinite linear;
          animation: lum-loader-rotate 1800ms infinite linear;
}

.lum-img {
  -webkit-transition: opacity 120ms ease-out;
  -o-transition: opacity 120ms ease-out;
  transition: opacity 120ms ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100px;
  max-height: 100%;
  width: 60px;
  cursor: pointer;
}

.lum-close-button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.lum-close-button:hover {
  opacity: 1;
}

.lum-close-button::before,
.lum-close-button::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}

.lum-close-button::before {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.lum-close-button::after {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
}

.lum-previous-button::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
       -o-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  border-radius: 3px 0 0 0;
}

.lum-next-button::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
       -o-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 4px solid rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  border-radius: 0 3px 0 0;
}

/* This media query makes screens less than 460px wide display in a "fullscreen"-esque mode. Users can then scroll around inside the lightbox to see the entire image. */

@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lum-lightbox-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
  }

  /* Used to centre the image in the container, respecting overflow: https://stackoverflow.com/a/33455342/515634 */

  .lum-lightbox-position-helper {
    margin: auto;
  }

  .lum-lightbox-inner img {
    max-width: none;
    max-height: none;
  }
}

/**
  * @section	Sparkassen Fonts
  *
  *		Style				Weight				Style				Use
  *		---------------		---------------		---------------		---------------
  *		Light				300					normal				Big Headlines
  *		Regular				400					normal				Headlines, bodytext
  *		Regular Italic		400					italic				Emphasis in Headlines and bodytext
  *		Medium				500					normal				Subheadlines, Kickers
  *		Bold				600					normal				Branches and Claims
  *		Bold Italic			600					italic				Spare – no intended use so far
  *		
  *		Hint: There are no bold styles for inline use in regular, medium and light. We use the next bolder style
  */

@font-face {
  font-family: 'Sparkasse';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Lt.woff);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Sparkasse';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Rg.woff);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Sparkasse';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_It.woff);
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: 'Sparkasse';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Md.woff);
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Sparkasse';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Bd.woff);
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'Sparkasse';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_BdIt.woff);
  font-style: italic;
  font-weight: 600;
}

@font-face {
  font-family: 'SparkasseWeb';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Rg.woff) format("woff"), url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Rg.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SparkasseWebMedium';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Md.woff) format("woff"), url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Md.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SparkasseWeb';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Bd.woff) format("woff"), url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Bd.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'SparkasseWebLight';
  src: url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Lt.woff) format("woff"), url(/app/themes/spk-portal/dist/fonts/Sparkasse_web_Lt.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SparkasseHeadWeb';
  src: url(/app/themes/spk-portal/dist/fonts/SparkasseHead_web_Rg.woff) format("woff"), url(/app/themes/spk-portal/dist/fonts/SparkasseHead_web_Rg.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Pictos-IF';
  src: url(/app/themes/spk-portal/dist/fonts/pictos-if.woff) format("woff"), url(/app/themes/spk-portal/dist/fonts/pictos-if.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

/**
  * @section	Type definitions
  */

body {
  font-family: "Sparkasse", arial, sans-serif;
  font-weight: 300;
}

p,
ul,
ol,
li,
div,
dl,
dt,
dd,
input,
textarea,
button,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section {
  font-weight: 300;
}

p i,
p em,
ul i,
ul em,
ol i,
ol em,
li i,
li em,
div i,
div em,
dl i,
dl em,
dt i,
dt em,
dd i,
dd em,
input i,
input em,
textarea i,
textarea em,
button i,
button em,
fieldset i,
fieldset em,
form i,
form em,
label i,
label em,
legend i,
legend em,
table i,
table em,
caption i,
caption em,
tbody i,
tbody em,
tfoot i,
tfoot em,
thead i,
thead em,
tr i,
tr em,
th i,
th em,
td i,
td em,
article i,
article em,
aside i,
aside em,
canvas i,
canvas em,
details i,
details em,
embed i,
embed em,
figure i,
figure em,
figcaption i,
figcaption em,
footer i,
footer em,
header i,
header em,
hgroup i,
hgroup em,
menu i,
menu em,
nav i,
nav em,
section i,
section em {
  font-style: italic;
}

p strong,
ul strong,
ol strong,
li strong,
div strong,
dl strong,
dt strong,
dd strong,
input strong,
textarea strong,
button strong,
fieldset strong,
form strong,
label strong,
legend strong,
table strong,
caption strong,
tbody strong,
tfoot strong,
thead strong,
tr strong,
th strong,
td strong,
article strong,
aside strong,
canvas strong,
details strong,
embed strong,
figure strong,
figcaption strong,
footer strong,
header strong,
hgroup strong,
menu strong,
nav strong,
section strong {
  font-weight: normal;
  font-weight: 500;
}

h1 i,
h1 em,
h2 i,
h2 em,
h3.module__title i,
h3.module__title em {
  font-style: italic;
}

h1 strong,
h2 strong,
h3.module__title strong {
  font-weight: 400;
  font-style: normal;
}

h3:not(.module__title),
h4 {
  font-weight: 500;
}

h3:not(.module__title) i,
h3:not(.module__title) em,
h4 i,
h4 em {
  font-style: italic;
}

h3:not(.module__title) strong,
h4 strong {
  font-weight: 500;
  font-style: normal;
}

.lead i,
.blogpost__body > p:first-of-type:first-child i,
.lead em,
.blogpost__body > p:first-of-type:first-child em,
.font-light i,
.module--posts-branch .module__title i,
.branch-header .slide__title i,
.district-list .district-title i,
.font-light em,
.module--posts-branch .module__title em,
.branch-header .slide__title em,
.district-list .district-title em {
  font-style: normal;
}

.lead strong,
.blogpost__body > p:first-of-type:first-child strong,
.font-light strong,
.module--posts-branch .module__title strong,
.branch-header .slide__title strong,
.district-list .district-title strong {
  font-weight: normal;
  font-weight: 400;
}

/**
  * @section	Helper classes
  */

.font-light,
.module--posts-branch .module__title,
.branch-header .slide__title,
.district-list .district-title {
  font-weight: 300;
}

.font-regular,
.register-item h3 {
  font-weight: 400;
}

.font-regularitalic {
  font-weight: 400;
  font-style: italic;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 600;
}

.font-bolditalic {
  font-weight: 600;
  font-style: italic;
}

.font-symbol {
  font-family: 'SparkasseSymbol', serif;
}

/**
  * @section Handwritten Font for chalkboard
  *	https://fonts.google.com/specimen/Walter+Turncoat	
  */

@font-face {
  font-family: 'walter';
  font-style: normal;
  font-weight: 400;
  src: local("Walter Turncoat Regular"), local("WalterTurncoat-Regular"), url(/app/themes/spk-portal/dist/fonts/walter-turncoat-v8-latin-regular.woff2) format("woff2"), url(/app/themes/spk-portal/dist/fonts/walter-turncoat-v8-latin-regular.woff) format("woff");
}

@font-face {
  font-family: "spot-icons";
  src: url(/app/themes/spk-portal/dist/fonts/spot-icons.ttf) format("truetype"), url(/app/themes/spk-portal/dist/fonts/spot-icons.woff) format("woff"), url(/app/themes/spk-portal/dist/fonts/spot-icons.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "spot-icons" !important;
  speak: none;
  font-style: normal !important;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-seesaw:before {
  content: "\EA02";
}

.icon-spot:before {
  content: "\EA03";
}

.icon-shopping-cart:before {
  content: "\F07A";
}

.icon-stethoscope:before {
  content: "\F0F1";
}

.icon-coffee:before {
  content: "\F0F4";
}

.icon-cutlery:before {
  content: "\F0F5";
}

.icon-medkit:before {
  content: "\F0FA";
}

.icon-beer:before {
  content: "\F0FC";
}

.icon-rocket:before {
  content: "\F135";
}

.icon-bank:before {
  content: "\F19C";
}

.icon-institution:before {
  content: "\F19C";
}

.icon-university:before {
  content: "\F19C";
}

.icon-building:before {
  content: "\F1AD";
}

.icon-futbol-o:before {
  content: "\F1E3";
}

.icon-soccer-ball-o:before {
  content: "\F1E3";
}

.icon-bus:before {
  content: "\F207";
}

.icon-fort-awesome:before {
  content: "\F286";
}

.icon-activity:before {
  content: "\E900";
}

.icon-airplay:before {
  content: "\E901";
}

.icon-alert-circle:before {
  content: "\E902";
}

.icon-alert-octagon:before {
  content: "\E903";
}

.icon-alert-triangle:before {
  content: "\E904";
}

.icon-align-center:before {
  content: "\E905";
}

.icon-align-justify:before {
  content: "\E906";
}

.icon-align-left:before {
  content: "\E907";
}

.icon-align-right:before {
  content: "\E908";
}

.icon-anchor:before {
  content: "\E909";
}

.icon-aperture:before {
  content: "\E90A";
}

.icon-archive:before {
  content: "\E90B";
}

.icon-arrow-down-circle:before {
  content: "\E90C";
}

.icon-arrow-left-circle:before {
  content: "\E90D";
}

.icon-arrow-right-circle:before {
  content: "\E90E";
}

.icon-arrow-up-circle:before {
  content: "\E90F";
}

.icon-at-sign:before {
  content: "\E910";
}

.icon-award:before {
  content: "\E911";
}

.icon-bar-chart:before {
  content: "\E912";
}

.icon-bar-chart-2:before {
  content: "\E913";
}

.icon-battery:before {
  content: "\E914";
}

.icon-battery-charging:before {
  content: "\E915";
}

.icon-bell:before {
  content: "\E916";
}

.icon-bell-off:before {
  content: "\E917";
}

.icon-bluetooth:before {
  content: "\E918";
}

.icon-bold:before {
  content: "\E919";
}

.icon-book:before {
  content: "\E91A";
}

.icon-book-open:before {
  content: "\E91B";
}

.icon-bookmark:before {
  content: "\E91C";
}

.icon-box:before {
  content: "\E91D";
}

.icon-briefcase:before {
  content: "\E91E";
}

.icon-calendar:before {
  content: "\E91F";
}

.icon-camera:before {
  content: "\E920";
}

.icon-camera-off:before {
  content: "\E921";
}

.icon-cast:before {
  content: "\E922";
}

.icon-check:before {
  content: "\E923";
}

.icon-check-circle:before {
  content: "\E924";
}

.icon-check-square:before {
  content: "\E925";
}

.icon-chevron-down:before {
  content: "\E926";
}

.icon-chevron-left:before {
  content: "\E927";
}

.icon-chevron-right:before {
  content: "\E928";
}

.icon-chevron-up:before {
  content: "\E929";
}

.icon-chevrons-down:before {
  content: "\E92A";
}

.icon-chevrons-left:before {
  content: "\E92B";
}

.icon-chevrons-right:before {
  content: "\E92C";
}

.icon-chevrons-up:before {
  content: "\E92D";
}

.icon-chrome:before {
  content: "\E92E";
}

.icon-circle:before {
  content: "\E92F";
}

.icon-clipboard:before {
  content: "\E930";
}

.icon-clock:before {
  content: "\E931";
}

.icon-cloud:before {
  content: "\E932";
}

.icon-cloud-drizzle:before {
  content: "\E933";
}

.icon-cloud-lightning:before {
  content: "\E934";
}

.icon-cloud-off:before {
  content: "\E935";
}

.icon-cloud-rain:before {
  content: "\E936";
}

.icon-cloud-snow:before {
  content: "\E937";
}

.icon-code:before {
  content: "\E938";
}

.icon-codepen:before {
  content: "\E939";
}

.icon-command:before {
  content: "\E93A";
}

.icon-compass:before {
  content: "\E93B";
}

.icon-copy:before {
  content: "\E93C";
}

.icon-corner-down-left:before {
  content: "\E93D";
}

.icon-corner-down-right:before {
  content: "\E93E";
}

.icon-corner-left-down:before {
  content: "\E93F";
}

.icon-corner-left-up:before {
  content: "\E940";
}

.icon-corner-right-down:before {
  content: "\E941";
}

.icon-corner-right-up:before {
  content: "\E942";
}

.icon-corner-up-left:before {
  content: "\E943";
}

.icon-corner-up-right:before {
  content: "\E944";
}

.icon-cpu:before {
  content: "\E945";
}

.icon-credit-card:before {
  content: "\E946";
}

.icon-crop:before {
  content: "\E947";
}

.icon-crosshair:before {
  content: "\E948";
}

.icon-database:before {
  content: "\E949";
}

.icon-delete:before {
  content: "\E94A";
}

.icon-disc:before {
  content: "\E94B";
}

.icon-dollar-sign:before {
  content: "\E94C";
}

.icon-download:before {
  content: "\E94D";
}

.icon-download-cloud:before {
  content: "\E94E";
}

.icon-droplet:before {
  content: "\E94F";
}

.icon-edit:before {
  content: "\E950";
}

.icon-edit-2:before {
  content: "\E951";
}

.icon-edit-3:before {
  content: "\E952";
}

.icon-external-link:before {
  content: "\E953";
}

.icon-eye:before {
  content: "\E954";
}

.icon-eye-off:before {
  content: "\E955";
}

.icon-facebook1:before {
  content: "\E956";
}

.icon-fast-forward:before {
  content: "\E957";
}

.icon-feather:before {
  content: "\E958";
}

.icon-file:before {
  content: "\E959";
}

.icon-file-minus:before {
  content: "\E95A";
}

.icon-file-plus:before {
  content: "\E95B";
}

.icon-file-text:before {
  content: "\E95C";
}

.icon-film:before {
  content: "\E95D";
}

.icon-filter:before {
  content: "\E95E";
}

.icon-flag:before {
  content: "\E95F";
}

.icon-folder:before {
  content: "\E960";
}

.icon-folder-minus:before {
  content: "\E961";
}

.icon-folder-plus:before {
  content: "\E962";
}

.icon-gift:before {
  content: "\E963";
}

.icon-git-branch:before {
  content: "\E964";
}

.icon-git-commit:before {
  content: "\E965";
}

.icon-git-merge:before {
  content: "\E966";
}

.icon-git-pull-request:before {
  content: "\E967";
}

.icon-github:before {
  content: "\E968";
}

.icon-gitlab:before {
  content: "\E969";
}

.icon-globe:before {
  content: "\E96A";
}

.icon-grid:before {
  content: "\E96B";
}

.icon-hard-drive:before {
  content: "\E96C";
}

.icon-hash:before {
  content: "\E96D";
}

.icon-headphones:before {
  content: "\E96E";
}

.icon-heart:before {
  content: "\E96F";
}

.icon-help-circle:before {
  content: "\E970";
}

.icon-home:before {
  content: "\E971";
}

.icon-image:before {
  content: "\E972";
}

.icon-inbox:before {
  content: "\E973";
}

.icon-info:before {
  content: "\E974";
}

.icon-instagram1:before {
  content: "\E975";
}

.icon-italic:before {
  content: "\E976";
}

.icon-layers:before {
  content: "\E977";
}

.icon-layout:before {
  content: "\E978";
}

.icon-life-buoy:before {
  content: "\E979";
}

.icon-link:before {
  content: "\E97A";
}

.icon-link-2:before {
  content: "\E97B";
}

.icon-linkedin1:before {
  content: "\E97C";
}

.icon-list:before {
  content: "\E97D";
}

.icon-loader:before {
  content: "\E97E";
}

.icon-lock:before {
  content: "\E97F";
}

.icon-log-in:before {
  content: "\E980";
}

.icon-log-out:before {
  content: "\E981";
}

.icon-mail:before {
  content: "\E982";
}

.icon-map:before {
  content: "\E983";
}

.icon-map-pin:before {
  content: "\E984";
}

.icon-maximize:before {
  content: "\E985";
}

.icon-maximize-2:before {
  content: "\E986";
}

.icon-menu:before {
  content: "\E987";
}

.icon-message-circle:before {
  content: "\E988";
}

.icon-message-square:before {
  content: "\E989";
}

.icon-mic:before {
  content: "\E98A";
}

.icon-mic-off:before {
  content: "\E98B";
}

.icon-minimize:before {
  content: "\E98C";
}

.icon-minimize-2:before {
  content: "\E98D";
}

.icon-minus:before {
  content: "\E98E";
}

.icon-minus-circle:before {
  content: "\E98F";
}

.icon-minus-square:before {
  content: "\E990";
}

.icon-monitor:before {
  content: "\E991";
}

.icon-moon:before {
  content: "\E992";
}

.icon-more-horizontal:before {
  content: "\E993";
}

.icon-more-vertical:before {
  content: "\E994";
}

.icon-move:before {
  content: "\E995";
}

.icon-music:before {
  content: "\E996";
}

.icon-navigation:before {
  content: "\E997";
}

.icon-navigation-2:before {
  content: "\E998";
}

.icon-octagon:before {
  content: "\E999";
}

.icon-package:before {
  content: "\E99A";
}

.icon-paperclip:before {
  content: "\E99B";
}

.icon-pause:before {
  content: "\E99C";
}

.icon-pause-circle:before {
  content: "\E99D";
}

.icon-percent:before {
  content: "\E99E";
}

.icon-phone:before {
  content: "\E99F";
}

.icon-phone-call:before {
  content: "\E9A0";
}

.icon-phone-forwarded:before {
  content: "\E9A1";
}

.icon-phone-incoming:before {
  content: "\E9A2";
}

.icon-phone-missed:before {
  content: "\E9A3";
}

.icon-phone-off:before {
  content: "\E9A4";
}

.icon-phone-outgoing:before {
  content: "\E9A5";
}

.icon-pie-chart:before {
  content: "\E9A6";
}

.icon-play:before {
  content: "\E9A7";
}

.icon-play-circle:before {
  content: "\E9A8";
}

.icon-plus:before {
  content: "\E9A9";
}

.icon-plus-circle:before {
  content: "\E9AA";
}

.icon-plus-square:before {
  content: "\E9AB";
}

.icon-pocket:before {
  content: "\E9AC";
}

.icon-power:before {
  content: "\E9AD";
}

.icon-printer:before {
  content: "\E9AE";
}

.icon-radio:before {
  content: "\E9AF";
}

.icon-refresh-ccw:before {
  content: "\E9B0";
}

.icon-refresh-cw:before {
  content: "\E9B1";
}

.icon-repeat:before {
  content: "\E9B2";
}

.icon-rewind:before {
  content: "\E9B3";
}

.icon-rotate-ccw:before {
  content: "\E9B4";
}

.icon-rotate-cw:before {
  content: "\E9B5";
}

.icon-rss:before {
  content: "\E9B6";
}

.icon-save:before {
  content: "\E9B7";
}

.icon-scissors:before {
  content: "\E9B8";
}

.icon-search:before {
  content: "\E9B9";
}

.icon-send:before {
  content: "\E9BA";
}

.icon-server:before {
  content: "\E9BB";
}

.icon-settings:before {
  content: "\E9BC";
}

.icon-share:before {
  content: "\E9BD";
}

.icon-share-2:before {
  content: "\E9BE";
}

.icon-shield:before {
  content: "\E9BF";
}

.icon-shield-off:before {
  content: "\E9C0";
}

.icon-shopping-bag:before {
  content: "\E9C1";
}

.icon-shopping-cart1:before {
  content: "\E9C2";
}

.icon-shuffle:before {
  content: "\E9C3";
}

.icon-sidebar:before {
  content: "\E9C4";
}

.icon-skip-back:before {
  content: "\E9C5";
}

.icon-skip-forward:before {
  content: "\E9C6";
}

.icon-slack:before {
  content: "\E9C7";
}

.icon-slash:before {
  content: "\E9C8";
}

.icon-sliders:before {
  content: "\E9C9";
}

.icon-smartphone:before {
  content: "\E9CA";
}

.icon-speaker:before {
  content: "\E9CB";
}

.icon-square:before {
  content: "\E9CC";
}

.icon-star:before {
  content: "\E9CD";
}

.icon-stop-circle:before {
  content: "\E9CE";
}

.icon-sun:before {
  content: "\E9CF";
}

.icon-sunrise:before {
  content: "\E9D0";
}

.icon-sunset:before {
  content: "\E9D1";
}

.icon-tablet:before {
  content: "\E9D2";
}

.icon-tag:before {
  content: "\E9D3";
}

.icon-target:before {
  content: "\E9D4";
}

.icon-terminal:before {
  content: "\E9D5";
}

.icon-thermometer:before {
  content: "\E9D6";
}

.icon-thumbs-down:before {
  content: "\E9D7";
}

.icon-thumbs-up:before {
  content: "\E9D8";
}

.icon-toggle-left:before {
  content: "\E9D9";
}

.icon-toggle-right:before {
  content: "\E9DA";
}

.icon-trash:before {
  content: "\E9DB";
}

.icon-trash-2:before {
  content: "\E9DC";
}

.icon-trending-down:before {
  content: "\E9DD";
}

.icon-trending-up:before {
  content: "\E9DE";
}

.icon-triangle:before {
  content: "\E9DF";
}

.icon-truck:before {
  content: "\E9E0";
}

.icon-tv:before {
  content: "\E9E1";
}

.icon-twitter1:before {
  content: "\E9E2";
}

.icon-type:before {
  content: "\E9E3";
}

.icon-umbrella:before {
  content: "\E9E4";
}

.icon-underline:before {
  content: "\E9E5";
}

.icon-unlock:before {
  content: "\E9E6";
}

.icon-upload:before {
  content: "\E9E7";
}

.icon-upload-cloud:before {
  content: "\E9E8";
}

.icon-user:before {
  content: "\E9E9";
}

.icon-user-check:before {
  content: "\E9EA";
}

.icon-user-minus:before {
  content: "\E9EB";
}

.icon-user-plus:before {
  content: "\E9EC";
}

.icon-user-x:before {
  content: "\E9ED";
}

.icon-users:before {
  content: "\E9EE";
}

.icon-video:before {
  content: "\E9EF";
}

.icon-video-off:before {
  content: "\E9F0";
}

.icon-voicemail:before {
  content: "\E9F1";
}

.icon-volume:before {
  content: "\E9F2";
}

.icon-volume-1:before {
  content: "\E9F3";
}

.icon-volume-2:before {
  content: "\E9F4";
}

.icon-volume-x:before {
  content: "\E9F5";
}

.icon-watch:before {
  content: "\E9F6";
}

.icon-wifi:before {
  content: "\E9F7";
}

.icon-wifi-off:before {
  content: "\E9F8";
}

.icon-wind:before {
  content: "\E9F9";
}

.icon-x:before {
  content: "\E9FA";
}

.icon-x-circle:before {
  content: "\E9FB";
}

.icon-x-square:before {
  content: "\E9FC";
}

.icon-youtube1:before {
  content: "\E9FD";
}

.icon-zap:before {
  content: "\E9FE";
}

.icon-zap-off:before {
  content: "\E9FF";
}

.icon-zoom-in:before {
  content: "\EA00";
}

.icon-zoom-out:before {
  content: "\EA01";
}

.icon-google-plus:before {
  content: "\EA8B";
}

.icon-facebook:before {
  content: "\EA90";
}

.icon-facebook2:before {
  content: "\EA91";
}

.icon-instagram:before {
  content: "\EA92";
}

.icon-whatsapp:before {
  content: "\EA93";
}

.icon-telegram:before {
  content: "\EA95";
}

.icon-twitter:before {
  content: "\EA96";
}

.icon-youtube:before {
  content: "\EA9D";
}

.icon-linkedin:before {
  content: "\EAC9";
}

.icon-linkedin2:before {
  content: "\EACA";
}

.icon-xing:before {
  content: "\EAD3";
}

.icon-xing2:before {
  content: "\EAD4";
}

.icon-arrow-up-left2:before {
  content: "\EA39";
}

.icon-arrow-up2:before {
  content: "\EA3A";
}

.icon-arrow-up-right2:before {
  content: "\EA3B";
}

.icon-arrow-right2:before {
  content: "\EA3C";
}

.icon-arrow-down-right2:before {
  content: "\EA3D";
}

.icon-arrow-down2:before {
  content: "\EA3E";
}

.icon-arrow-down-left2:before {
  content: "\EA3F";
}

.icon-arrow-left2:before {
  content: "\EA40";
}

/*
$bgcolors: (
	red: $red #fff,
	$primary #fff,
	$secondary #fff,
	$purple #fff,
	$green #fff,
	$turqouise #fff,
	$yellow inherit,
	$gray-200 inherit,
	$gray-800 inherit,
	$white inherit
);
*/

.bg-red {
  background: bg;
  color: #ee0000;
  background: color;
  color: #fff;
}

.bg-primary,
.offside .list-group-flush .nav-item,
.offside .list-group-flush .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .offside .list-group-flush li,
.community-login-form p .button {
  background: bg;
  color: #ee0000;
  background: color;
  color: #fff;
}

.bg-purple {
  background: bg;
  color: #990f71;
  background: color;
  color: #fff;
}

/*
.bg {
	&-red {
		background-color: $primary;
		color: #fff;
	}
	
	&-green {
		background-color: $green;
		color: #fff;
	}
	
	&-turqouise {
		background-color: $turqouise;
		color: #fff;
	}
	
	&-purple {
		background-color: $purple;
		color: #fff;
	}

	&-grey100 {
		background-color: $gray-100;
	}
	
	&-grey200 {
		background-color: $gray-200;
	}
}
*/

.bg-white-90 {
  background: rgba(255, 255, 255, 0.9);
}

.bg-white-80,
.magazine-slider .slide .slide-caption {
  background: rgba(255, 255, 255, 0.8);
}

.bg-white-50 {
  background: rgba(255, 255, 255, 0.8);
}

.badge-light,
.module--card .post-categories li {
  background-color: #e9ecef;
}

.welcome--breminale {
  background-color: #cc0000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpolygon fill='%23AE9' points='120 120 60 120 90 90 120 60 120 0 120 0 60 60 0 0 0 60 30 90 60 120 120 120 '/%3E%3C/svg%3E");
}

.bg-image {
  background-color: #ced4da;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-image__bremen-gray {
  background-image: url(/app/themes/spk-portal/dist/images/bremen-bg-gray.jpg);
}

.bg-primary-tr-50 {
  background-color: rgba(238, 0, 0, 0.75);
}

.sec-with-bg-circle {
  position: relative;
}

.sec-with-bg-circle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  opacity: 0.3;
}

@media (min-width: 1200px) {
  .sec-with-bg-circle::before {
    background-image: url(/app/themes/spk-portal/dist/images/circles-mein-zuhause.png);
    background-position: left;
    visibility: visible;
  }
}

@media (min-width: 768px) {
  .blogpost__body {
    width: 66.6666%;
    margin-right: auto;
    margin-left: auto;
  }
}

.blogpost__body > p:first-of-type:first-child {
  font-size: 1.4rem;
}

.blogpost__body img {
  max-width: 100%;
}

.blogpost h2.subline {
  font-weight: 400;
  text-align: center;
}

@media (max-width: 991.98px) {
  .blogpost h2.subline {
    font-size: 1.5rem;
  }
}

.blogpost-header {
  position: relative;
  height: 400px;
}

@media (max-width: 991.98px) {
  .blogpost-header {
    height: 350px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.blogpost-header__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}

.blogpost-header__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogpost-header__content {
  position: relative;
  text-align: center;
  z-index: 3;
}

.blogpost-header__date {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  background-size: 100% 200%;
  background-position: 0 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ee0000));
  background-image: -webkit-linear-gradient(top, transparent 50%, #ee0000 50%);
  background-image: -o-linear-gradient(top, transparent 50%, #ee0000 50%);
  background-image: linear-gradient(to bottom, transparent 50%, #ee0000 50%);
  -webkit-animation: headlinebg ease 0.4s forwards 0.4s;
       -o-animation: headlinebg ease 0.4s forwards 0.4s;
          animation: headlinebg ease 0.4s forwards 0.4s;
}

@media (max-width: 991.98px) {
  .blogpost-header__date {
    font-size: 0.75rem;
    padding: 2px 6px;
  }
}

.blogpost-header__title {
  margin: 5px auto 0;
  font-weight: 300;
  word-wrap: break-word;
}

@media (max-width: 991.98px) {
  .blogpost-header__title {
    font-size: 1.75rem;
  }
}

.blogpost-header__title span {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 3px 15px;
  line-height: 1.4;
  background-size: 100% 200%;
  background-position: 0 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff));
  background-image: -webkit-linear-gradient(top, transparent 50%, #fff 50%);
  background-image: -o-linear-gradient(top, transparent 50%, #fff 50%);
  background-image: linear-gradient(to bottom, transparent 50%, #fff 50%);
  -webkit-animation: headlinebg ease 0.4s forwards 0.4s;
       -o-animation: headlinebg ease 0.4s forwards 0.4s;
          animation: headlinebg ease 0.4s forwards 0.4s;
}

.blogpost-header.headingBelowImage {
  background-color: white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: auto;
}

.blogpost-header.headingBelowImage .blogpost-header__image {
  position: relative;
  width: 100%;
}

.blogpost-header.headingBelowImage .blogpost-header__image .blogpost-header__img {
  width: 100%;
  height: 250px;
}

@media (min-width: 768px) {
  .blogpost-header.headingBelowImage .blogpost-header__image .blogpost-header__img {
    height: 300px;
  }
}

@media (min-width: 992px) {
  .blogpost-header.headingBelowImage .blogpost-header__image .blogpost-header__img {
    height: 400px;
  }
}

.blog.home-data .main > .container,
.blog.home-data .branch-header .main > .infobox-holder,
.branch-header .blog.home-data .main > .infobox-holder,
.blog.home-data .branch-header .main > .slide__content,
.branch-header .blog.home-data .main > .slide__content,
.archive.category .main > .container,
.archive.category .branch-header .main > .infobox-holder,
.branch-header .archive.category .main > .infobox-holder,
.archive.category .branch-header .main > .slide__content,
.branch-header .archive.category .main > .slide__content {
  padding-right: 0;
  padding-left: 0;
}

.blog.home-data .sidebar__header,
.archive.category .sidebar__header {
  text-align: center;
  padding: 15px 15px 30px;
  background: #fff;
  min-height: 350px;
  border-radius: 3px;
  outline: 1px dotted #ced4da;
  outline-offset: -10px;
  position: relative;
}

.blog.home-data .sidebar__header::after,
.archive.category .sidebar__header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fafafa;
}

.blog.home-data .sidebar__header i,
.archive.category .sidebar__header i {
  font-size: 4rem;
  color: #ee0000;
}

.nav-links .page-numbers {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 8px 15px;
  background-color: #e9ecef;
  margin-top: 5px;
}

.nav-links .page-numbers.current {
  background-color: #ee0000;
  color: #fff;
}

.nav-links .page-numbers:not(.current):hover {
  background-color: #dee2e6;
  text-decoration: none;
}

.widget {
  border-bottom: 2px solid #f8f9fa;
}

.widget h3 {
  font-size: 1.2rem;
}

.widget_categories ul {
  font-size: 1.3rem;
}

.widget_categories ul li:not(:last-child) {
  border-bottom: 1px solid #f8f9fa;
}

.widget_categories ul a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  padding: 5px 15px 5px 0px;
}

.widget_categories ul a:hover,
.widget_categories ul .current-cat a {
  padding-left: 5px;
  text-decoration: none;
  background-color: #ee0000;
  color: #fff;
}

.widget_tag_cloud ul li {
  display: inline-block;
  vertical-align: middle;
}

.module--post,
.module--all-posts {
  overflow: hidden;
  position: relative;
  min-height: 300px;
  background-color: #fff;
  /*&:hover {
		
	}*/
}

.module--post .switch,
.module--all-posts .switch {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(calc(70px + 0.5em));
       -o-transform: translateY(calc(70px + 0.5em));
          transform: translateY(calc(70px + 0.5em));
}

.module--post:hover .switch,
.module--all-posts:hover .switch {
  -webkit-transform: translateY(0) !important;
       -o-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.module--post:hover .module__excerpt,
.module--all-posts:hover .module__excerpt {
  opacity: 1;
}

.module--post .module__header,
.module--all-posts .module__header {
  max-height: 300px;
  overflow: hidden;
}

.module--post .module__body,
.module--all-posts .module__body {
  position: relative;
}

.module--post .module__body::after,
.module--all-posts .module__body::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, #fff), to(#fff));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), #fff 70%, #fff);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 70%, #fff);
  content: "";
  height: 40px;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}

.module--post .module__excerpt,
.module--all-posts .module__excerpt {
  height: 70px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.blog .switch,
.blog .module:hover .switch,
.category .switch,
.category .module:hover .switch,
.tag .switch,
.tag .module:hover .switch {
  -webkit-transform: translateY(calc(70px + 0.5em));
       -o-transform: translateY(calc(70px + 0.5em));
          transform: translateY(calc(70px + 0.5em));
}

.module--sticky .module__header {
  max-height: 350px;
  overflow: hidden;
}

.module--sticky .switch,
.module--sticky:hover .switch {
  -webkit-transform: none !important;
       -o-transform: none !important;
          transform: none !important;
}

.module--author {
  margin-top: 96px !important;
  margin-bottom: -1rem;
  position: relative;
  text-align: center;
  background-color: #e9ecef;
}

.module--author .author-image {
  max-width: 128px;
  height: auto;
  border-radius: 50%;
  border: 5px solid #fff;
  margin-top: -64px;
}

@media (max-width: 991.98px) {
  .module--author {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.module--posts-branch .module__image {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.module--posts-branch .module__image img {
  max-width: 100%;
  height: auto;
}

.module--posts-branch .module__title {
  margin: 0;
  font-size: 18px;
}

.module--posts-branch .module__title i {
  font-size: 14px;
}

.module--posts-branch .module__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.module--posts-branch .module__description p {
  margin: 0;
}

.module--posts-branch .module__body {
  background-color: #F4EEE9;
}

.module--posts-branch .module__body:nth-child(2n+2) {
  background-color: #fff;
}

.module--magazine {
  /*&-collapse {

	}*/
}

.module--magazine-headline h2,
.module--magazine-headline h3 {
  margin: 0;
  font-weight: 400;
  font-size: 1.75rem;
  text-align: center;
}

.module--magazine-divider hr {
  margin: 0 auto;
  width: 25%;
  border-color: #ee0000;
}

.module--magazine-infobox {
  background-color: #fefefe;
  border-top: 2px solid #f8f9fa;
  border-bottom: 2px solid #f8f9fa;
  font-size: 95%;
}

.module--magazine-textbox .module__figure figcaption {
  background-color: #fefefe;
  border-bottom: 1px solid #f8f9fa;
  font-size: 14px;
}

.module--magazine-textbox .module__figure figcaption .caption {
  display: inline-block;
}

.module--magazine-textbox .module__figure figcaption .caption:empty {
  display: none;
}

.module--magazine-textbox .module__figure figcaption .photocredit {
  font-size: 12px;
  color: #adb5bd;
}

.module--magazine-textbox p:last-child {
  margin-bottom: 0;
}

.module--magazine-textbox.continue + .module--magazine-textbox {
  margin-top: -0.66rem;
}

.module--magazine-listical {
  counter-reset: listical;
}

.module--magazine-listical .module__image {
  position: relative;
}

.module--magazine-listical .module__title {
  position: relative;
  padding-left: 50px;
}

.module--magazine-listical .module__title span {
  position: relative;
  z-index: 10;
  text-shadow: 1px 1px 0 #fff;
}

.module--magazine-listical .module__title::before {
  counter-increment: listical;
  content: counter(listical);
  position: absolute;
  width: 100px;
  height: 64px;
  line-height: 64px;
  top: -12.8px;
  left: -25.6px;
  font-size: 70.4px;
  letter-spacing: -2px;
  background-color: #f8f9fa;
  text-align: center;
  border-radius: 50%;
  color: #e9ecef;
  overflow: hidden;
}

.module--magazine img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .sharebar-singlepost li {
    display: block;
    margin-right: 0 !important;
  }
}

.sharebar-singlepost a {
  color: #fff;
}

@media (max-width: 991.98px) {
  .sharebar-singlepost a {
    display: block;
  }
}

.sharebar-singlepost .facebook a {
  background-color: #32529F;
}

.sharebar-singlepost .facebook a:hover {
  background-color: #263e78;
  color: #fff;
}

.sharebar-singlepost .twitter a {
  background-color: #178DEE;
}

.sharebar-singlepost .twitter a:hover {
  background-color: #0e72c4;
  color: #fff;
}

.sharebar-singlepost .whatsapp a {
  background-color: #128C7E;
}

.sharebar-singlepost .whatsapp a:hover {
  background-color: #0c5f55;
  color: #fff;
}

.sharebar-singlepost .email a {
  background-color: #128C7E;
}

.sharebar-singlepost .email a:hover {
  background-color: #0c5f55;
  color: #fff;
}

.magazine-slider .slide {
  position: relative;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0 auto;
  display: block !important;
}

.magazine-slider .slide img {
  width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  margin: 0 auto;
}

.magazine-slider .slide .slide-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 5;
}

@media (max-width: 1199.98px) {
  .magazine-slider .slider-control,
  .magazine-slider .pos-module .pos-slides .slick-prev,
  .pos-module .pos-slides .magazine-slider .slick-prev,
  .magazine-slider .pos-module .pos-slides .slick-next,
  .pos-module .pos-slides .magazine-slider .slick-next {
    display: block !important;
  }

  .magazine-slider .slider-control--offset.next {
    right: 40px !important;
    bottom: auto !important;
    top: 50px !important;
    -webkit-transform: scale(1.5);
         -o-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-transform-origin: right;
         -o-transform-origin: right;
            transform-origin: right;
  }

  .magazine-slider .slider-control--offset.prev {
    left: 40px !important;
    bottom: 1px !important;
    top: 50px !important;
    -webkit-transform: scale(1.5);
         -o-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-transform-origin: left;
         -o-transform-origin: left;
            transform-origin: left;
  }
}

.module--calltoaction {
  border-top: 3px solid #ee0000;
}

.module--teaser-content .card img {
  height: auto;
}

.module--calculators {
  position: relative;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.module--calculators .module__body {
  padding: 1rem;
}

.module--calculators::before {
  content: 'Service';
  position: absolute;
  top: 0;
  right: 1rem;
  z-index: 10;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: rgba(233, 236, 239, 0.75);
  font-size: 10px;
  text-transform: uppercase;
}

.module--calculators .calculator__title {
  padding-left: 30px;
  background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KPHBhdGggZmlsbD0iI2VlMDAwMCIgZD0iTTYgMWgtNWMtMC41NSAwLTEgMC40NS0xIDF2NWMwIDAuNTUgMC40NSAxIDEgMWg1YzAuNTUgMCAxLTAuNDUgMS0xdi01YzAtMC41NS0wLjQ1LTEtMS0xek02IDVoLTV2LTFoNXYxek0xNCAxaC01Yy0wLjU1IDAtMSAwLjQ1LTEgMXYxM2MwIDAuNTUgMC40NSAxIDEgMWg1YzAuNTUgMCAxLTAuNDUgMS0xdi0xM2MwLTAuNTUtMC40NS0xLTEtMXpNMTQgMTBoLTV2LTFoNXYxek0xNCA3aC01di0xaDV2MXpNNiA5aC01Yy0wLjU1IDAtMSAwLjQ1LTEgMXY1YzAgMC41NSAwLjQ1IDEgMSAxaDVjMC41NSAwIDEtMC40NSAxLTF2LTVjMC0wLjU1LTAuNDUtMS0xLTF6TTYgMTNoLTJ2MmgtMXYtMmgtMnYtMWgydi0yaDF2MmgydjF6Ij48L3BhdGg+Cjwvc3ZnPgo=) no-repeat 0 50%;
  background-size: 30px;
}

.tools-calculators .module--calculators {
  border-top: 0;
  background-color: #fff;
  border: 1px solid #ee0000;
}

.tools-calculators .module--calculators.calculator_baufinanz {
  border: 3.5px solid #ee0000;
}

.tools-calculators .module--calculators.calculator_baufinanz::before {
  content: none;
}

.tools-calculators .module--calculators.calculator_baufinanz .calculator__title {
  padding-left: 0;
  background: transparent;
  background-size: 0;
}

.tools-calculators .module--calculators.calculator_baufinanz .calc_text {
  line-height: 1.7em;
  color: #818181;
}

.blogpost__body > hr {
  margin-right: auto;
  margin-left: auto;
  width: 25%;
  border-color: #ee0000;
}

body.hide_space_footer .content {
  padding-bottom: 0 !important;
}

/**
	* Collage
	*/

.collage__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.collage__item {
  padding-bottom: 10px;
  height: 250px !important;
  width: 100%;
  cursor: pointer;
}

.collage__item .img-wiht-overlay::before {
  opacity: 0.3;
}

.collage__content {
  position: absolute;
  z-index: 1;
  top: 0;
  color: #fff;
}

.collage__content h2 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .collage__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 215px;
    grid-gap: 3px;
    grid-auto-flow: dense;
  }

  .collage__item {
    padding-bottom: 0;
    height: auto !important;
  }

  .collage__item .collage__content {
    position: absolute;
    top: 0;
    color: white;
  }

  .collage__square {
    grid-row: auto/ span 1;
  }

  .collage__rectangle--v {
    grid-row: auto / span 2;
  }

  .collage__rectangle--h {
    grid-column: auto / span 2;
  }
}

@media (min-width: 992px) {
  .collage__container {
    grid-auto-rows: 250px;
  }

  .collage__content h2 {
    font-size: 2rem;
  }
}

/**
	* last child
	*/

.lc--none-mb:last-child {
  margin-bottom: 0 !important;
}

/** LAYOUT **/

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--pb {
  padding-bottom: 3rem;
}

.section--pt {
  padding-top: 3rem;
}

.section--mb {
  margin-bottom: 3rem;
}

.section--mt {
  margin-top: 3rem;
}

.item__img-with-text-end {
  height: 430px;
  position: relative;
}

.item__img-with-text-end .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
}

@media (min-width: 992px) {
  .col-multi--2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

@media (min-width: 768px) {
  .col-multi--ul ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.el-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.h-5 {
  height: 5%!important;
}

.h-10 {
  height: 10%!important;
}

.h-15 {
  height: 15%!important;
}

.h-20 {
  height: 20%!important;
}

.h-25 {
  height: 25%!important;
}

.h-30 {
  height: 30%!important;
}

.h-35 {
  height: 35%!important;
}

.h-40 {
  height: 40%!important;
}

.h-45 {
  height: 45%!important;
}

.h-50 {
  height: 50%!important;
}

.h-55 {
  height: 55%!important;
}

.h-60 {
  height: 60%!important;
}

.h-65 {
  height: 65%!important;
}

.h-70 {
  height: 70%!important;
}

.h-75 {
  height: 75%!important;
}

.h-80 {
  height: 80%!important;
}

.h-85 {
  height: 85%!important;
}

.h-90 {
  height: 90%!important;
}

.h-95 {
  height: 95%!important;
}

.h-100,
figure.img-wiht-overlay::before,
.tile-item--overlay .content-wrapper {
  height: 100%!important;
}

.w-5 {
  width: 5%!important;
}

.w-10 {
  width: 10%!important;
}

.w-15 {
  width: 15%!important;
}

.w-20 {
  width: 20%!important;
}

.w-25 {
  width: 25%!important;
}

.w-30 {
  width: 30%!important;
}

.w-35 {
  width: 35%!important;
}

.w-40 {
  width: 40%!important;
}

.w-45 {
  width: 45%!important;
}

.w-50 {
  width: 50%!important;
}

.w-55 {
  width: 55%!important;
}

.w-60 {
  width: 60%!important;
}

.w-65 {
  width: 65%!important;
}

.w-70 {
  width: 70%!important;
}

.w-75 {
  width: 75%!important;
}

.w-80 {
  width: 80%!important;
}

.w-85 {
  width: 85%!important;
}

.w-90 {
  width: 90%!important;
}

.w-95 {
  width: 95%!important;
}

.w-100,
figure.img-wiht-overlay::before,
.fs-wrap,
.sidebar--post .facetwp-autocomplete-update,
.tile-item--overlay .content-wrapper {
  width: 100%!important;
}

/**
  * @section	
  */

body.admin-bar .spk-nav__wrapper {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .spk-nav__wrapper {
    top: 46px;
  }
}

/**
  * @section	Photocredits
  */

.photocredit--onimage {
  position: absolute;
  right: 5px;
  bottom: 5px;
  -webkit-transform-origin: left bottom;
       -o-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: translateX(100%) rotate(-90deg);
       -o-transform: translateX(100%) rotate(-90deg);
          transform: translateX(100%) rotate(-90deg);
  color: #fff;
  font-size: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.photocredit--onimage::before {
  content: 'Foto: ';
}

/**
  * @section	Bottom Line for Headings
  */

.line-bottom::after {
  content: '';
  display: block;
  width: 75px;
  height: 3px;
  background: #ee0000;
  margin: 0.5rem 0;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 666;
  content: "";
}

figure.img-wiht-overlay {
  position: relative;
}

figure.img-wiht-overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.8s ease;
  -o-transition: background-color 0.8s ease;
  transition: background-color 0.8s ease;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

figure.img-wrapper {
  overflow: hidden;
  margin: 0;
  height: 250px;
}

@media (min-width: 576px) {
  figure.img-wrapper {
    height: 300px;
  }
}

@media (min-width: 768px) {
  figure.img-wrapper__property {
    height: 450px;
  }
}

@media (min-width: 992px) {
  figure.img-wrapper__property {
    height: 300px;
  }
}

@media (min-width: 768px) {
  figure.img-wrapper--gallery {
    height: 304px;
  }
}

@media (min-width: 992px) {
  figure.img-wrapper--gallery {
    height: 420px;
  }
}

@media (min-width: 1200px) {
  figure.img-wrapper--gallery {
    height: 507px;
  }
}

figure.img-wrapper--gallery-item {
  height: 50px;
}

@media (min-width: 768px) {
  figure.img-wrapper--gallery-item {
    height: 150px;
  }
}

img.fit-to-wrapper {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.syncingSlider--single .slick-list,
.syncingSlider--single .slick-track,
.syncingSlider--single .slick-slide,
.syncingSlider--single .slick-slide > div {
  height: 100%;
}

@media (min-width: 384px) {
  .img-banner--fixed {
    width: 320px;
  }
}

@media (min-width: 1600px) {
  .img-banner--fixed {
    position: absolute;
    z-index: 9;
    right: -210px;
    top: 0;
    width: 215px;
  }
}

@media (min-width: 1650px) {
  .img-banner--fixed {
    right: -250px;
    width: 250px;
  }
}

@media (min-width: 1600px) {
  .template-propertysearch #initfromProperty {
    padding-bottom: 6rem;
  }
}

.template-propertysearch .img-banner--fixed {
  padding-bottom: 2rem;
}

.module--cta {
  border-left: 3px solid #ee0000;
}

.module--cta .card-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 991.98px) {
  .module--cta .card-image {
    min-height: 300px;
  }
}

.module--card .module__title {
  font-size: 1.3rem;
}

.module--bulletin-board .card {
  overflow: visible;
  display: inline-block;
}

.module--teaser hr {
  width: 50px;
}

.module--teaser .background {
  height: 400px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767.98px) {
  .module--teaser .background {
    height: auto;
  }
}

.module--teaser .module__body hr {
  border-top: 3px solid #ee0000;
}

.comment-list ol {
  list-style: none;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#comments .card .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-bottom: none;
}

#comments .card {
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.002);
}

#comments .card .media-object img {
  max-width: 50px;
}

.chip {
  display: inline-block;
  border-radius: 16px;
  font-size: 13px;
  background-color: #eceff1;
  color: rgba(0, 0, 0, 0.7);
  height: initial;
  min-height: 25px;
  line-height: 25px;
  margin-bottom: 0rem;
  margin-right: .5rem;
  padding: 0px 10px;
  -webkit-box-shadow: 0 1px 1px rgba(128, 128, 128, 0.18);
          box-shadow: 0 1px 1px rgba(128, 128, 128, 0.18);
  font-weight: 600;
}

#comments .children .media .card-block {
  background: rgba(0, 0, 0, 0.02);
  padding: .75rem;
}

#comments .media p {
  margin-bottom: .1rem;
}

/** Search form */

.input-group-append {
  margin-left: -20px;
}

.search-form label {
  font-weight: normal;
}

.sidebar--post .facetwp-type-date_range .facetwp-date-min {
  margin-right: 2%;
}

.sidebar--post .facetwp-type-date_range .facetwp-date {
  width: 49% !important;
  float: left;
}

/** Emma Switch */

.emma-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.emma-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.emma-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #6c757d;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.emma-switch .slider.round {
  border-radius: 34px;
}

.emma-switch .slider.round:before {
  border-radius: 50%;
}

.emma-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.emma-switch input:checked + .slider {
  background-color: #ee0000;
}

.emma-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -o-transform: translateX(26px);
     transform: translateX(26px);
}

.emma-switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #ee0000;
          box-shadow: 0 0 1px #ee0000;
}

/**
  * WP Login Form
  */

/** Perperty Form */

.property-form {
  border-radius: 25px !important;
}

/** table */

.borderless td,
.borderless th {
  border: none;
}

/** Modified Formidable */

.frm_forms .frm_button_submit {
  margin-top: 15px;
}

.frm_forms .frm_checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.frm_forms .frm_checkbox label input[type="checkbox"] {
  width: 22px;
  margin-top: -7px;
  margin-right: 10px;
}

.frm_forms .frm_checkbox label input[type="checkbox"]:checked {
  color: #ee0000;
}

/* CF7 _________________ */

/*Struktur*/

.wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px 20px;
}

.wpcf7-form > div {
  min-width: 300px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 350px) {
  .wpcf7-form > div {
    min-width: 100%;
  }
}

.wpcf7-form div.w50 {
  width: calc(50% - 10px);
  /* Minus X-gap/2 */
  margin-bottom: 20px;
}

.wpcf7-form div.w100 {
  width: 100%;
  margin-bottom: 20px;
}

.wpcf7-form label,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
  width: 100%;
}

/*Design*/

.wpcf7-form label {
  /* font-weight: 600; */
  font-size: 1.2em;
  color: #343a40;
  min-height: 36px;
}

.wpcf7-form span.require {
  color: #ee0000;
}

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  margin-top: 5px;
  padding: 0 10px;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form select {
  height: 50px !important;
  border-radius: 10px;
  border: 1px solid #ced4da !important;
  background-color: #fff !important;
  color: var(--grey) !important;
}

.wpcf7-form select {
  width: 100%;
}

.wpcf7-form input[type="checkbox"] {
  height: auto !important;
  margin-right: 10px;
  margin-top: 10px;
}

.wpcf7-form textarea {
  border-radius: 10px;
  border: 1px solid #ced4da !important;
  background-color: #fff !important;
  color: var(--grey) !important;
}

.wpcf7-form input[type="submit"] {
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #ee0000 !important;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #ee0000 !important;
  -webkit-transform: scale(1.02);
  -o-transform: scale(1.02);
     transform: scale(1.02);
}

.wpcf7-form input::-webkit-input-placeholder,
.wpcf7-form textarea::-webkit-input-placeholder,
.wpcf7-form input::-moz-placeholder,
.wpcf7-form textarea::-moz-placeholder,
.wpcf7-form input:-ms-input-placeholder,
.wpcf7-form textarea:-ms-input-placeholder,
.wpcf7-form input::-ms-input-placeholder,
.wpcf7-form textarea::-ms-input-placeholder,
.wpcf7-form input::-webkit-input-placeholder,
.wpcf7-form textarea::-webkit-input-placeholder {
  color: #555;
  font-size: 0.8em;
}

.wpcf7-form input::-webkit-input-placeholder,
.wpcf7-form textarea::-webkit-input-placeholder,
.wpcf7-form input::-moz-placeholder,
.wpcf7-form textarea::-moz-placeholder,
.wpcf7-form input:-ms-input-placeholder,
.wpcf7-form textarea:-ms-input-placeholder,
.wpcf7-form input::-ms-input-placeholder,
.wpcf7-form textarea::-ms-input-placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #555;
  font-size: 0.8em;
}

.wpcf7-form p {
  margin-bottom: 5px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border: 1px solid #ee0000 !important;
}

.wpcf7-list-item {
  margin-left: 0;
}

#eventanmeldung_form .form-group,
#eventanmeldung_form .comment-form p,
.comment-form #eventanmeldung_form p,
#eventanmeldung_form .search-form label,
.search-form #eventanmeldung_form label,
#eventanmeldung_form .facetwp-sort,
#eventanmeldung_form .community-login-form p,
.community-login-form #eventanmeldung_form p {
  position: relative;
}

.input-error {
  font-size: .875rem;
  padding-left: 1rem;
  border-left: #e00 solid 1px;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */

/** Media alignment */

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto;
}

@media (min-width: 576px) {
  .alignleft {
    float: left;
    margin-right: 2rem;
  }

  .alignright {
    float: right;
    margin-left: 2rem;
  }
}

/** Captions */

@media (max-width: 991.98px) {
  .wp-caption {
    max-width: none !important;
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

.wp-caption img {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .wp-caption img {
    width: 100% !important;
    height: auto;
  }
}

.wp-caption-text {
  background-color: #f8f9fa;
  color: #343a40;
}

@media (max-width: 991.98px) {
  .wp-caption-text {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.wp-caption-text .photocredit {
  display: inline-block;
}

.wp-caption-text .photocredit::before {
  content: 'Foto: ';
}

.wp-caption-text .photocredit:empty {
  display: none;
}

/** Text meant only for screen readers */

.card {
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .card-deck {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .card-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .card-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media (min-width: 1200px) {
  .card-columns {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}

.module--card {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.module--card .module__header {
  position: relative;
  -ms-hyphens: auto;
      hyphens: auto;
}

.module--card .module__header img {
  max-width: 100%;
  height: auto;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.module--card .module__meta {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.module--card .module__meta .post-date {
  font-size: 12px;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.6);
}

.module--card .module__meta .sharebar a {
  color: #fff;
  display: inline-block;
}

.module--card .module__meta .sharebar a:hover {
  color: #fff;
  -webkit-transform: scale(1.2);
       -o-transform: scale(1.2);
          transform: scale(1.2);
}

.module--card .post-categories {
  margin-bottom: 0.35rem;
}

.module--card .post-categories li {
  font-size: 14px;
}

.module--card .module__body {
  background-color: #fff;
}

.module--card .module__body a {
  color: #343a40;
}

.module--card .module__body a:hover {
  text-decoration: none;
}

.module--child-branches .module__body .distance::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 2px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAgCAYAAAAbifjMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTU4NkU4RkRERjc5MTFFOEJGQ0FBNjVDQTBDQjBEMkMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTU4NkU4RkVERjc5MTFFOEJGQ0FBNjVDQTBDQjBEMkMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTg2RThGQkRGNzkxMUU4QkZDQUE2NUNBMENCMEQyQyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxNTg2RThGQ0RGNzkxMUU4QkZDQUE2NUNBMENCMEQyQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ptl5oPwAAACySURBVHjaYmDABFpA3AfE14H4BxRfg4ppMeABbEA8BYj/AvF/HBgkNwOIObFp3o1HIzreC9UDB1NJ0AzDU2CatYH4DxkGgPRoMwOJKiC2YiAdMAHxLwZoaP8nE19nBBI/0QOEBPCLiYEyADbgHgUGPAQZsIMCA/aACB0KolGHkoQ0lapJmeLMhAxASXsCEN+AprQvQHwFKqbDQG3A+P//f4oMoDQljhowasCoAdQyACDAALYthMwEAc9yAAAAAElFTkSuQmCC) repeat-y 50% 0;
  background-size: 100% auto;
  opacity: .2;
}

.module--child-branches .module__body .distance:last-child::after {
  bottom: 50%;
}

.module--child-branches .module__body .branchoffice-details {
  background-color: #fff;
  -webkit-box-shadow: 10px 0 5px -10px rgba(0, 0, 0, 0.4);
          box-shadow: 10px 0 5px -10px rgba(0, 0, 0, 0.4);
}

.module--child-branches .module__body .branchoffice-details::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  width: 20px;
  height: 2px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB3AH1ZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTRCNjc5M0FERjdCMTFFOEJGQ0FBNjVDQTBDQjBEMkMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTRCNjc5M0JERjdCMTFFOEJGQ0FBNjVDQTBDQjBEMkMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxNTg2RThGRkRGNzkxMUU4QkZDQUE2NUNBMENCMEQyQyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxNTg2RTkwMERGNzkxMUU4QkZDQUE2NUNBMENCMEQyQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvqbQJMAAADASURBVHjaYmDABFpA3AfE14H4BxRfg4ppYVHP8P//f7IxMmAD4ilA/BdkJg4MkpsBxJzUdgDI8t14LEbHe6F6qOaAqSRYDsNTqOUAbSD+Q4YD/kD1UuQAJqD+FCBmZiAdMEP1Ugyuk+F7GL5OaQgwAvX/RE5QJIJfQMyOnp1IAUwUht4vSoMf5IB7FOh/SA0H7KBA/x5qJEIdCrKhzkAWRFOHVVE84JURMgAVrxOA+AY0m30B4itQMR1qV8cAAQYAzR9xAsfVm6wAAAAASUVORK5CYII=) repeat-x 50% 0;
  background-size: auto 100%;
  opacity: .2;
}

.module--base-data-contact {
  font-size: inherit;
}

.module--employee {
  display: block;
}

.module--employee .employee-email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.module--bulletin-board {
  background: -webkit-linear-gradient(top, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), -webkit-linear-gradient(top, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), -webkit-linear-gradient(57deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -o-linear-gradient(top, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), -o-linear-gradient(top, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), -o-linear-gradient(57deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(to bottom, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), linear-gradient(33deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  background-blend-mode: normal,color-burn;
  border: 9px solid #dee2e6;
  -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.3);
}

.module--bulletin-board .module__title h2 {
  color: #ee0000;
}

.module--bulletin-board .module__body .card-columns {
  overflow: auto;
}

.module--bulletin-board .module__body .card {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.module--bulletin-board .module__body .card::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 64px;
  background: -webkit-linear-gradient(320deg, #ee0000 0%, #a20000 100%);
  background: -o-linear-gradient(320deg, #ee0000 0%, #a20000 100%);
  background: linear-gradient(130deg, #ee0000 0%, #a20000 100%);
  -webkit-box-shadow: -3px 3px 0 #880000;
          box-shadow: -3px 3px 0 #880000;
  z-index: 1;
}

.module--bulletin-board .module__body .card:nth-child(3n+2) {
  -webkit-transform: translate(0, -10px) rotate(-5deg);
       -o-transform: translate(0, -10px) rotate(-5deg);
          transform: translate(0, -10px) rotate(-5deg);
}

.module--bulletin-board-upload .button-container {
  text-align: center;
}

.module--bulletin-board-upload fieldset {
  margin: 0 0 3rem;
  padding: 0;
  border: none;
}

.module--bulletin-board-upload .form-radio,
.module--bulletin-board-upload .form-group,
.module--bulletin-board-upload .comment-form p,
.comment-form .module--bulletin-board-upload p,
.module--bulletin-board-upload .search-form label,
.search-form .module--bulletin-board-upload label,
.module--bulletin-board-upload .facetwp-sort,
.module--bulletin-board-upload .community-login-form p,
.community-login-form .module--bulletin-board-upload p {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.module--bulletin-board-upload .form-inline > .form-group,
.module--bulletin-board-upload .search-form > .form-group,
.module--bulletin-board-upload .comment-form .form-inline > p,
.comment-form .module--bulletin-board-upload .form-inline > p,
.module--bulletin-board-upload .comment-form .search-form > p,
.comment-form .module--bulletin-board-upload .search-form > p,
.module--bulletin-board-upload .search-form .form-inline > label,
.search-form .module--bulletin-board-upload .form-inline > label,
.module--bulletin-board-upload .search-form > label,
.module--bulletin-board-upload .form-inline > .facetwp-sort,
.module--bulletin-board-upload .search-form > .facetwp-sort,
.module--bulletin-board-upload .community-login-form .form-inline > p,
.community-login-form .module--bulletin-board-upload .form-inline > p,
.module--bulletin-board-upload .community-login-form .search-form > p,
.community-login-form .module--bulletin-board-upload .search-form > p,
.module--bulletin-board-upload .form-inline > .btn,
.module--bulletin-board-upload .search-form > .btn,
.module--bulletin-board-upload .homepage-preview-buttons .form-inline > a,
.homepage-preview-buttons .module--bulletin-board-upload .form-inline > a,
.module--bulletin-board-upload .homepage-preview-buttons .search-form > a,
.homepage-preview-buttons .module--bulletin-board-upload .search-form > a,
.module--bulletin-board-upload .sharebar-singlepost .form-inline > a,
.sharebar-singlepost .module--bulletin-board-upload .form-inline > a,
.module--bulletin-board-upload .sharebar-singlepost .search-form > a,
.sharebar-singlepost .module--bulletin-board-upload .search-form > a,
.module--bulletin-board-upload .comment-form .form-inline > input[type="submit"],
.comment-form .module--bulletin-board-upload .form-inline > input[type="submit"],
.module--bulletin-board-upload .comment-form .search-form > input[type="submit"],
.comment-form .module--bulletin-board-upload .search-form > input[type="submit"],
.module--bulletin-board-upload .sidebar--post .form-inline > .facetwp-autocomplete-update,
.sidebar--post .module--bulletin-board-upload .form-inline > .facetwp-autocomplete-update,
.module--bulletin-board-upload .sidebar--post .search-form > .facetwp-autocomplete-update,
.sidebar--post .module--bulletin-board-upload .search-form > .facetwp-autocomplete-update,
.module--bulletin-board-upload .search-form .form-inline > .search-submit,
.search-form .module--bulletin-board-upload .form-inline > .search-submit,
.module--bulletin-board-upload .search-form > .search-submit,
.module--bulletin-board-upload .community-login-form p .form-inline > .button,
.community-login-form p .module--bulletin-board-upload .form-inline > .button,
.module--bulletin-board-upload .community-login-form p .search-form > .button,
.community-login-form p .module--bulletin-board-upload .search-form > .button,
.module--bulletin-board-upload .frm_forms .form-inline > .frm_button_submit,
.frm_forms .module--bulletin-board-upload .form-inline > .frm_button_submit,
.module--bulletin-board-upload .frm_forms .search-form > .frm_button_submit,
.frm_forms .module--bulletin-board-upload .search-form > .frm_button_submit {
  display: inline-block;
  margin-bottom: 0;
}

.module--bulletin-board-upload .form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  font-size: 0.8rem;
}

.module--bulletin-board-upload .checkbox .form-help,
.module--bulletin-board-upload .form-radio .form-help,
.module--bulletin-board-upload .form-group .form-help,
.module--bulletin-board-upload .comment-form p .form-help,
.comment-form .module--bulletin-board-upload p .form-help,
.module--bulletin-board-upload .search-form label .form-help,
.search-form .module--bulletin-board-upload label .form-help,
.module--bulletin-board-upload .facetwp-sort .form-help,
.module--bulletin-board-upload .community-login-form p .form-help,
.community-login-form .module--bulletin-board-upload p .form-help {
  position: absolute;
  width: 100%;
}

.module--bulletin-board-upload .checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}

.module--bulletin-board-upload .form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}

.module--bulletin-board-upload .form-group input,
.module--bulletin-board-upload .comment-form p input,
.comment-form .module--bulletin-board-upload p input,
.module--bulletin-board-upload .search-form label input,
.search-form .module--bulletin-board-upload label input,
.module--bulletin-board-upload .facetwp-sort input,
.module--bulletin-board-upload .community-login-form p input,
.community-login-form .module--bulletin-board-upload p input {
  height: 1.9rem;
}

.module--bulletin-board-upload .form-group textarea,
.module--bulletin-board-upload .comment-form p textarea,
.comment-form .module--bulletin-board-upload p textarea,
.module--bulletin-board-upload .search-form label textarea,
.search-form .module--bulletin-board-upload label textarea,
.module--bulletin-board-upload .facetwp-sort textarea,
.module--bulletin-board-upload .community-login-form p textarea,
.community-login-form .module--bulletin-board-upload p textarea {
  resize: none;
}

.module--bulletin-board-upload .form-group select,
.module--bulletin-board-upload .comment-form p select,
.comment-form .module--bulletin-board-upload p select,
.module--bulletin-board-upload .search-form label select,
.search-form .module--bulletin-board-upload label select,
.module--bulletin-board-upload .facetwp-sort select,
.module--bulletin-board-upload .community-login-form p select,
.community-login-form .module--bulletin-board-upload p select {
  width: 100%;
  font-size: 1rem;
  height: 1.6rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  background: none;
  border: none;
  line-height: 1.6;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.module--bulletin-board-upload .form-group .control-label,
.module--bulletin-board-upload .comment-form p .control-label,
.comment-form .module--bulletin-board-upload p .control-label,
.module--bulletin-board-upload .search-form label .control-label,
.search-form .module--bulletin-board-upload label .control-label,
.module--bulletin-board-upload .facetwp-sort .control-label,
.module--bulletin-board-upload .community-login-form p .control-label,
.community-login-form .module--bulletin-board-upload p .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  -o-transition: all 0.28s ease;
  transition: all 0.28s ease;
}

.module--bulletin-board-upload .form-group .bar,
.module--bulletin-board-upload .comment-form p .bar,
.comment-form .module--bulletin-board-upload p .bar,
.module--bulletin-board-upload .search-form label .bar,
.search-form .module--bulletin-board-upload label .bar,
.module--bulletin-board-upload .facetwp-sort .bar,
.module--bulletin-board-upload .community-login-form p .bar,
.community-login-form .module--bulletin-board-upload p .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}

.module--bulletin-board-upload .form-group .bar::before,
.module--bulletin-board-upload .comment-form p .bar::before,
.comment-form .module--bulletin-board-upload p .bar::before,
.module--bulletin-board-upload .search-form label .bar::before,
.search-form .module--bulletin-board-upload label .bar::before,
.module--bulletin-board-upload .facetwp-sort .bar::before,
.module--bulletin-board-upload .community-login-form p .bar::before,
.community-login-form .module--bulletin-board-upload p .bar::before {
  content: '';
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #ee0000;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  -o-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}

.module--bulletin-board-upload .form-group input,
.module--bulletin-board-upload .comment-form p input,
.comment-form .module--bulletin-board-upload p input,
.module--bulletin-board-upload .search-form label input,
.search-form .module--bulletin-board-upload label input,
.module--bulletin-board-upload .facetwp-sort input,
.module--bulletin-board-upload .community-login-form p input,
.community-login-form .module--bulletin-board-upload p input,
.module--bulletin-board-upload .form-group textarea,
.module--bulletin-board-upload .comment-form p textarea,
.comment-form .module--bulletin-board-upload p textarea,
.module--bulletin-board-upload .search-form label textarea,
.search-form .module--bulletin-board-upload label textarea,
.module--bulletin-board-upload .facetwp-sort textarea,
.module--bulletin-board-upload .community-login-form p textarea,
.community-login-form .module--bulletin-board-upload p textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  -webkit-transition: all 0.28s ease;
  -o-transition: all 0.28s ease;
  transition: all 0.28s ease;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.module--bulletin-board-upload .form-group input[type="file"],
.module--bulletin-board-upload .comment-form p input[type="file"],
.comment-form .module--bulletin-board-upload p input[type="file"],
.module--bulletin-board-upload .search-form label input[type="file"],
.search-form .module--bulletin-board-upload label input[type="file"],
.module--bulletin-board-upload .facetwp-sort input[type="file"],
.module--bulletin-board-upload .community-login-form p input[type="file"],
.community-login-form .module--bulletin-board-upload p input[type="file"] {
  line-height: 1;
}

.module--bulletin-board-upload .form-group input[type="file"] ~ .bar,
.module--bulletin-board-upload .comment-form p input[type="file"] ~ .bar,
.comment-form .module--bulletin-board-upload p input[type="file"] ~ .bar,
.module--bulletin-board-upload .search-form label input[type="file"] ~ .bar,
.search-form .module--bulletin-board-upload label input[type="file"] ~ .bar,
.module--bulletin-board-upload .facetwp-sort input[type="file"] ~ .bar,
.module--bulletin-board-upload .community-login-form p input[type="file"] ~ .bar,
.community-login-form .module--bulletin-board-upload p input[type="file"] ~ .bar {
  display: none;
}

.module--bulletin-board-upload .form-group select,
.module--bulletin-board-upload .comment-form p select,
.comment-form .module--bulletin-board-upload p select,
.module--bulletin-board-upload .search-form label select,
.search-form .module--bulletin-board-upload label select,
.module--bulletin-board-upload .facetwp-sort select,
.module--bulletin-board-upload .community-login-form p select,
.community-login-form .module--bulletin-board-upload p select,
.module--bulletin-board-upload .form-group input:focus,
.module--bulletin-board-upload .comment-form p input:focus,
.comment-form .module--bulletin-board-upload p input:focus,
.module--bulletin-board-upload .search-form label input:focus,
.search-form .module--bulletin-board-upload label input:focus,
.module--bulletin-board-upload .facetwp-sort input:focus,
.module--bulletin-board-upload .community-login-form p input:focus,
.community-login-form .module--bulletin-board-upload p input:focus,
.module--bulletin-board-upload .form-group input:valid,
.module--bulletin-board-upload .comment-form p input:valid,
.comment-form .module--bulletin-board-upload p input:valid,
.module--bulletin-board-upload .search-form label input:valid,
.search-form .module--bulletin-board-upload label input:valid,
.module--bulletin-board-upload .facetwp-sort input:valid,
.module--bulletin-board-upload .community-login-form p input:valid,
.community-login-form .module--bulletin-board-upload p input:valid,
.module--bulletin-board-upload .form-group input.form-file,
.module--bulletin-board-upload .comment-form p input.form-file,
.comment-form .module--bulletin-board-upload p input.form-file,
.module--bulletin-board-upload .search-form label input.form-file,
.search-form .module--bulletin-board-upload label input.form-file,
.module--bulletin-board-upload .facetwp-sort input.form-file,
.module--bulletin-board-upload .community-login-form p input.form-file,
.community-login-form .module--bulletin-board-upload p input.form-file,
.module--bulletin-board-upload .form-group input.has-value,
.module--bulletin-board-upload .comment-form p input.has-value,
.comment-form .module--bulletin-board-upload p input.has-value,
.module--bulletin-board-upload .search-form label input.has-value,
.search-form .module--bulletin-board-upload label input.has-value,
.module--bulletin-board-upload .facetwp-sort input.has-value,
.module--bulletin-board-upload .community-login-form p input.has-value,
.community-login-form .module--bulletin-board-upload p input.has-value,
.module--bulletin-board-upload .form-group textarea:focus,
.module--bulletin-board-upload .comment-form p textarea:focus,
.comment-form .module--bulletin-board-upload p textarea:focus,
.module--bulletin-board-upload .search-form label textarea:focus,
.search-form .module--bulletin-board-upload label textarea:focus,
.module--bulletin-board-upload .facetwp-sort textarea:focus,
.module--bulletin-board-upload .community-login-form p textarea:focus,
.community-login-form .module--bulletin-board-upload p textarea:focus,
.module--bulletin-board-upload .form-group textarea:valid,
.module--bulletin-board-upload .comment-form p textarea:valid,
.comment-form .module--bulletin-board-upload p textarea:valid,
.module--bulletin-board-upload .search-form label textarea:valid,
.search-form .module--bulletin-board-upload label textarea:valid,
.module--bulletin-board-upload .facetwp-sort textarea:valid,
.module--bulletin-board-upload .community-login-form p textarea:valid,
.community-login-form .module--bulletin-board-upload p textarea:valid,
.module--bulletin-board-upload .form-group textarea.form-file,
.module--bulletin-board-upload .comment-form p textarea.form-file,
.comment-form .module--bulletin-board-upload p textarea.form-file,
.module--bulletin-board-upload .search-form label textarea.form-file,
.search-form .module--bulletin-board-upload label textarea.form-file,
.module--bulletin-board-upload .facetwp-sort textarea.form-file,
.module--bulletin-board-upload .community-login-form p textarea.form-file,
.community-login-form .module--bulletin-board-upload p textarea.form-file,
.module--bulletin-board-upload .form-group textarea.has-value,
.module--bulletin-board-upload .comment-form p textarea.has-value,
.comment-form .module--bulletin-board-upload p textarea.has-value,
.module--bulletin-board-upload .search-form label textarea.has-value,
.search-form .module--bulletin-board-upload label textarea.has-value,
.module--bulletin-board-upload .facetwp-sort textarea.has-value,
.module--bulletin-board-upload .community-login-form p textarea.has-value,
.community-login-form .module--bulletin-board-upload p textarea.has-value {
  color: #333;
}

.module--bulletin-board-upload .form-group select ~ .control-label,
.module--bulletin-board-upload .comment-form p select ~ .control-label,
.comment-form .module--bulletin-board-upload p select ~ .control-label,
.module--bulletin-board-upload .search-form label select ~ .control-label,
.search-form .module--bulletin-board-upload label select ~ .control-label,
.module--bulletin-board-upload .facetwp-sort select ~ .control-label,
.module--bulletin-board-upload .community-login-form p select ~ .control-label,
.community-login-form .module--bulletin-board-upload p select ~ .control-label,
.module--bulletin-board-upload .form-group input:focus ~ .control-label,
.module--bulletin-board-upload .comment-form p input:focus ~ .control-label,
.comment-form .module--bulletin-board-upload p input:focus ~ .control-label,
.module--bulletin-board-upload .search-form label input:focus ~ .control-label,
.search-form .module--bulletin-board-upload label input:focus ~ .control-label,
.module--bulletin-board-upload .facetwp-sort input:focus ~ .control-label,
.module--bulletin-board-upload .community-login-form p input:focus ~ .control-label,
.community-login-form .module--bulletin-board-upload p input:focus ~ .control-label,
.module--bulletin-board-upload .form-group input:valid ~ .control-label,
.module--bulletin-board-upload .comment-form p input:valid ~ .control-label,
.comment-form .module--bulletin-board-upload p input:valid ~ .control-label,
.module--bulletin-board-upload .search-form label input:valid ~ .control-label,
.search-form .module--bulletin-board-upload label input:valid ~ .control-label,
.module--bulletin-board-upload .facetwp-sort input:valid ~ .control-label,
.module--bulletin-board-upload .community-login-form p input:valid ~ .control-label,
.community-login-form .module--bulletin-board-upload p input:valid ~ .control-label,
.module--bulletin-board-upload .form-group input.form-file ~ .control-label,
.module--bulletin-board-upload .comment-form p input.form-file ~ .control-label,
.comment-form .module--bulletin-board-upload p input.form-file ~ .control-label,
.module--bulletin-board-upload .search-form label input.form-file ~ .control-label,
.search-form .module--bulletin-board-upload label input.form-file ~ .control-label,
.module--bulletin-board-upload .facetwp-sort input.form-file ~ .control-label,
.module--bulletin-board-upload .community-login-form p input.form-file ~ .control-label,
.community-login-form .module--bulletin-board-upload p input.form-file ~ .control-label,
.module--bulletin-board-upload .form-group input.has-value ~ .control-label,
.module--bulletin-board-upload .comment-form p input.has-value ~ .control-label,
.comment-form .module--bulletin-board-upload p input.has-value ~ .control-label,
.module--bulletin-board-upload .search-form label input.has-value ~ .control-label,
.search-form .module--bulletin-board-upload label input.has-value ~ .control-label,
.module--bulletin-board-upload .facetwp-sort input.has-value ~ .control-label,
.module--bulletin-board-upload .community-login-form p input.has-value ~ .control-label,
.community-login-form .module--bulletin-board-upload p input.has-value ~ .control-label,
.module--bulletin-board-upload .form-group textarea:focus ~ .control-label,
.module--bulletin-board-upload .comment-form p textarea:focus ~ .control-label,
.comment-form .module--bulletin-board-upload p textarea:focus ~ .control-label,
.module--bulletin-board-upload .search-form label textarea:focus ~ .control-label,
.search-form .module--bulletin-board-upload label textarea:focus ~ .control-label,
.module--bulletin-board-upload .facetwp-sort textarea:focus ~ .control-label,
.module--bulletin-board-upload .community-login-form p textarea:focus ~ .control-label,
.community-login-form .module--bulletin-board-upload p textarea:focus ~ .control-label,
.module--bulletin-board-upload .form-group textarea:valid ~ .control-label,
.module--bulletin-board-upload .comment-form p textarea:valid ~ .control-label,
.comment-form .module--bulletin-board-upload p textarea:valid ~ .control-label,
.module--bulletin-board-upload .search-form label textarea:valid ~ .control-label,
.search-form .module--bulletin-board-upload label textarea:valid ~ .control-label,
.module--bulletin-board-upload .facetwp-sort textarea:valid ~ .control-label,
.module--bulletin-board-upload .community-login-form p textarea:valid ~ .control-label,
.community-login-form .module--bulletin-board-upload p textarea:valid ~ .control-label,
.module--bulletin-board-upload .form-group textarea.form-file ~ .control-label,
.module--bulletin-board-upload .comment-form p textarea.form-file ~ .control-label,
.comment-form .module--bulletin-board-upload p textarea.form-file ~ .control-label,
.module--bulletin-board-upload .search-form label textarea.form-file ~ .control-label,
.search-form .module--bulletin-board-upload label textarea.form-file ~ .control-label,
.module--bulletin-board-upload .facetwp-sort textarea.form-file ~ .control-label,
.module--bulletin-board-upload .community-login-form p textarea.form-file ~ .control-label,
.community-login-form .module--bulletin-board-upload p textarea.form-file ~ .control-label,
.module--bulletin-board-upload .form-group textarea.has-value ~ .control-label,
.module--bulletin-board-upload .comment-form p textarea.has-value ~ .control-label,
.comment-form .module--bulletin-board-upload p textarea.has-value ~ .control-label,
.module--bulletin-board-upload .search-form label textarea.has-value ~ .control-label,
.search-form .module--bulletin-board-upload label textarea.has-value ~ .control-label,
.module--bulletin-board-upload .facetwp-sort textarea.has-value ~ .control-label,
.module--bulletin-board-upload .community-login-form p textarea.has-value ~ .control-label,
.community-login-form .module--bulletin-board-upload p textarea.has-value ~ .control-label {
  font-size: 0.8rem;
  top: -1rem;
  left: 0;
}

.module--bulletin-board-upload .form-group select:focus,
.module--bulletin-board-upload .comment-form p select:focus,
.comment-form .module--bulletin-board-upload p select:focus,
.module--bulletin-board-upload .search-form label select:focus,
.search-form .module--bulletin-board-upload label select:focus,
.module--bulletin-board-upload .facetwp-sort select:focus,
.module--bulletin-board-upload .community-login-form p select:focus,
.community-login-form .module--bulletin-board-upload p select:focus,
.module--bulletin-board-upload .form-group input:focus,
.module--bulletin-board-upload .comment-form p input:focus,
.comment-form .module--bulletin-board-upload p input:focus,
.module--bulletin-board-upload .search-form label input:focus,
.search-form .module--bulletin-board-upload label input:focus,
.module--bulletin-board-upload .facetwp-sort input:focus,
.module--bulletin-board-upload .community-login-form p input:focus,
.community-login-form .module--bulletin-board-upload p input:focus,
.module--bulletin-board-upload .form-group textarea:focus,
.module--bulletin-board-upload .comment-form p textarea:focus,
.comment-form .module--bulletin-board-upload p textarea:focus,
.module--bulletin-board-upload .search-form label textarea:focus,
.search-form .module--bulletin-board-upload label textarea:focus,
.module--bulletin-board-upload .facetwp-sort textarea:focus,
.module--bulletin-board-upload .community-login-form p textarea:focus,
.community-login-form .module--bulletin-board-upload p textarea:focus {
  outline: none;
}

.module--bulletin-board-upload .form-group select:focus ~ .control-label,
.module--bulletin-board-upload .comment-form p select:focus ~ .control-label,
.comment-form .module--bulletin-board-upload p select:focus ~ .control-label,
.module--bulletin-board-upload .search-form label select:focus ~ .control-label,
.search-form .module--bulletin-board-upload label select:focus ~ .control-label,
.module--bulletin-board-upload .facetwp-sort select:focus ~ .control-label,
.module--bulletin-board-upload .community-login-form p select:focus ~ .control-label,
.community-login-form .module--bulletin-board-upload p select:focus ~ .control-label,
.module--bulletin-board-upload .form-group input:focus ~ .control-label,
.module--bulletin-board-upload .comment-form p input:focus ~ .control-label,
.comment-form .module--bulletin-board-upload p input:focus ~ .control-label,
.module--bulletin-board-upload .search-form label input:focus ~ .control-label,
.search-form .module--bulletin-board-upload label input:focus ~ .control-label,
.module--bulletin-board-upload .facetwp-sort input:focus ~ .control-label,
.module--bulletin-board-upload .community-login-form p input:focus ~ .control-label,
.community-login-form .module--bulletin-board-upload p input:focus ~ .control-label,
.module--bulletin-board-upload .form-group textarea:focus ~ .control-label,
.module--bulletin-board-upload .comment-form p textarea:focus ~ .control-label,
.comment-form .module--bulletin-board-upload p textarea:focus ~ .control-label,
.module--bulletin-board-upload .search-form label textarea:focus ~ .control-label,
.search-form .module--bulletin-board-upload label textarea:focus ~ .control-label,
.module--bulletin-board-upload .facetwp-sort textarea:focus ~ .control-label,
.module--bulletin-board-upload .community-login-form p textarea:focus ~ .control-label,
.community-login-form .module--bulletin-board-upload p textarea:focus ~ .control-label {
  color: #ee0000;
}

.module--bulletin-board-upload .form-group select:focus ~ .bar::before,
.module--bulletin-board-upload .comment-form p select:focus ~ .bar::before,
.comment-form .module--bulletin-board-upload p select:focus ~ .bar::before,
.module--bulletin-board-upload .search-form label select:focus ~ .bar::before,
.search-form .module--bulletin-board-upload label select:focus ~ .bar::before,
.module--bulletin-board-upload .facetwp-sort select:focus ~ .bar::before,
.module--bulletin-board-upload .community-login-form p select:focus ~ .bar::before,
.community-login-form .module--bulletin-board-upload p select:focus ~ .bar::before,
.module--bulletin-board-upload .form-group input:focus ~ .bar::before,
.module--bulletin-board-upload .comment-form p input:focus ~ .bar::before,
.comment-form .module--bulletin-board-upload p input:focus ~ .bar::before,
.module--bulletin-board-upload .search-form label input:focus ~ .bar::before,
.search-form .module--bulletin-board-upload label input:focus ~ .bar::before,
.module--bulletin-board-upload .facetwp-sort input:focus ~ .bar::before,
.module--bulletin-board-upload .community-login-form p input:focus ~ .bar::before,
.community-login-form .module--bulletin-board-upload p input:focus ~ .bar::before,
.module--bulletin-board-upload .form-group textarea:focus ~ .bar::before,
.module--bulletin-board-upload .comment-form p textarea:focus ~ .bar::before,
.comment-form .module--bulletin-board-upload p textarea:focus ~ .bar::before,
.module--bulletin-board-upload .search-form label textarea:focus ~ .bar::before,
.search-form .module--bulletin-board-upload label textarea:focus ~ .bar::before,
.module--bulletin-board-upload .facetwp-sort textarea:focus ~ .bar::before,
.module--bulletin-board-upload .community-login-form p textarea:focus ~ .bar::before,
.community-login-form .module--bulletin-board-upload p textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}

.module--bulletin-board-upload .has-error .bar::before {
  background: #d9534f;
  left: 0;
  width: 100%;
}

.module--branch .module__header {
  max-height: 300px;
  overflow: hidden;
}

.modal-bulletindetails .modal-content {
  background-clip: inherit;
  border: 0;
}

.modal-bulletindetails .modal-content .modal-body {
  padding: 0;
}

.modal-bulletindetails .modal-content .modal-body .close {
  position: absolute;
  right: 0px;
  background: white;
  z-index: 1;
}

.modal-bulletindetails .modal-header {
  padding: 5px 10px;
}

.modal-bulletindetails .modal-footer {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal-opener,
.modal-opener img {
  cursor: pointer;
}

.branch-header {
  position: relative;
  margin-bottom: 60px;
}

.branch-header .header-slides {
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .branch-header .header-slides {
    height: 600px;
  }
}

.branch-header .slide-image {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: auto;
  height: 100%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.branch-header .slick-slide,
.branch-header .slide {
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .branch-header .slick-slide,
  .branch-header .slide {
    height: 600px;
  }
}

.branch-header .infobox-holder {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.branch-header .headerslides__infobox {
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .branch-header .headerslides__infobox {
    width: 25%;
    background-color: #fff;
  }
}

.branch-header .slide__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  height: 400px;
}

@media (min-width: 768px) {
  .branch-header .slide__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 600px;
  }
}

.branch-header .slide__title {
  line-height: 1.6;
  position: relative;
  z-index: 650;
  text-align: center;
}

@media (max-width: 991.98px) {
  .branch-header .slide__title {
    font-size: 1.5rem;
    line-heigh: 1.5;
  }
}

.branch-header .slide__title span {
  display: inline-block;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-color: #ee0000;
  color: #fff;
}

.branch-header .header-slides-control {
  -webkit-transition: background-color 0.4s ease-in-out;
  -o-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.branch-header .header-slides-control i {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 36px;
  color: #fff;
  opacity: .6;
}

.branch-header .header-slides-control--prev {
  left: 0;
}

.branch-header .header-slides-control--next {
  right: 0;
}

.branch-header .header-slides-control:hover i {
  opacity: 1;
  -webkit-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.module--branchwelcome {
  height: 100%;
}

.module--branchwelcome .module__body {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.module--branchwelcome .module__body .welcome-image {
  width: 96px;
  height: auto;
}

.module--branchwelcome .module__body p:last-child {
  margin-bottom: 0;
}

.module--branchwelcome .module__body .signature {
  display: block;
  font-weight: 500;
}

/**
  * @section	Employee Slider
  */

.module--employeeslider .module__body {
  background-color: rgba(0, 0, 0, 0.02);
}

.module--employeeslider .module__title {
  font-size: 18px;
  margin-bottom: 0;
  color: #ee0000;
}

.module--employeeslider .employee-image {
  max-width: 100%;
  height: auto;
}

.module--employeeslider.employees-small .employee__thumbnail {
  text-align: center;
}

.district-list .district-title {
  background: #f8f9fa;
  font-size: 1.75rem;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}

.module--search-branch .searchwp-live-search-results {
  -webkit-box-shadow: none;
          box-shadow: none;
  max-height: none;
  min-height: 0;
  background: none;
}

/**
  * @section	POS SLider
  */

.pos-module .card-img-top {
  overflow: hidden;
}

.pos-module .pos-slides .slick-prev {
  z-index: 10;
  top: 50%;
  left: 0;
  position: absolute;
}

.pos-module .pos-slides .slick-next {
  top: 50%;
  right: 0;
  position: absolute;
}

.pos-module .community-assistent img {
  max-width: 150px;
}

.pos-slider {
  position: relative;
}

.pos-slider .slide {
  position: relative;
}

.pos-slider .slide__content {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .pos-slider .slide__content {
    position: absolute;
    right: 45px;
    bottom: 30px;
    z-index: 666;
    max-width: 40%;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .pos-slider .slide__content img {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .pos-slider .slider-control,
  .pos-slider .pos-module .pos-slides .slick-prev,
  .pos-module .pos-slides .pos-slider .slick-prev,
  .pos-slider .pos-module .pos-slides .slick-next,
  .pos-module .pos-slides .pos-slider .slick-next {
    top: 50px;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    opacity: 0.5;
  }

  .pos-slider .slider-control--offset.prev {
    left: 5px;
  }

  .pos-slider .slider-control--offset.next {
    right: 5px;
  }
}

/**
  * @section	branch archive list
  */

.branch-archive__branch {
  margin-right: 0;
  margin-left: 0;
}

.branch-archive__branch h3 {
  font-size: 1.1rem;
  margin: 0;
}

@media (min-width: 768px) {
  .branch-archive__branch {
    border-bottom: 1px solid #dee2e6;
  }
}

@media (max-width: 991.98px) {
  .branch-archive__branch .branch__address,
  .branch-archive__branch .branch__btn {
    border-bottom: 1px solid #dee2e6;
  }
}

.branch-archive__branch div[class*="col"] {
  background-color: #f8f9fa;
}

.branch-archive__branch:nth-of-type(2n+2) [class*="col"] {
  background-color: #fff;
}

.facetwp-facet-branches_archiv .facetwp-search-wrap {
  display: block;
}

.facetwp-facet-branches_archiv .facetwp-btn {
  opacity: 1;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "spot-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.facetwp-facet-branches_archiv .facetwp-btn::before {
  font-size: 1.6rem;
  color: #ee0000;
  content: "\E9B9";
  background: transparent;
}

.branch-attributes,
.direct-branch__content ul {
  margin-bottom: 0;
}

.branch-attributes li,
.direct-branch__content ul li {
  position: relative;
}

.branch-attributes li::after,
.direct-branch__content ul li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 25%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#dee2e6));
  background: -webkit-linear-gradient(left, transparent 0%, #dee2e6 100%);
  background: -o-linear-gradient(left, transparent 0%, #dee2e6 100%);
  background: linear-gradient(to right, transparent 0%, #dee2e6 100%);
}

.branch-attributes i,
.direct-branch__content ul i {
  display: inline-block;
}

.branch-info__thumbnail {
  width: 64px;
  height: 64px;
}

.branch-info__title {
  margin: 0;
}

.branch-header {
  position: relative;
}

.direktfiliale-header {
  position: relative;
}

@media (min-width: 768px) {
  .direktfiliale-header__content {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}

.directbranch-thumbnail {
  width: 96px;
  height: auto;
}

@media (max-width: 991.98px) {
  .directbranch-headline {
    font-size: 1.4rem;
    text-align: center;
  }
}

.direct-branch__content ul li::before {
  display: inline-block;
}

.event-wrapper {
  position: relative;
}

.module--event {
  position: relative;
  height: 100%;
}

.module--event.top-event::before {
  content: '\E9CD';
  position: absolute;
  left: -4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: 'spot-icons';
  font-size: 2rem;
  opacity: .35;
}

.module--event.top-event::after {
  content: 'Top-Event';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 80px;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 767.98px) {
  .module--event.top-event::after {
    width: 60px;
  }
}

.module--event a {
  overflow: hidden;
}

.module--event > a,
.module--event > .event__holder {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.02);
  height: 100%;
}

.event-wrapper:nth-child(2n+1) .module--event > a,
.event-wrapper:nth-child(2n+1) .module--event .event-holder {
  background-color: #fff;
}

.event-wrapper .module--event > a:hover {
  background-color: rgba(238, 0, 0, 0.03);
}

.module--event .module__body h1,
.module--event .module__body h2 {
  font-size: 1.4rem;
  color: #343a40;
}

@media (max-width: 991.98px) {
  .module--event .module__body h1,
  .module--event .module__body h2 {
    -ms-hyphens: auto;
        hyphens: auto;
    word-break: hyphenate;
    font-size: 1.2rem;
  }
}

.module--event .module__body h1 {
  font-size: 1.8rem;
}

.module--event .module__body p {
  margin: 0;
  color: #4b545c;
}

.module--event .module__body .kicker {
  color: #3f474e;
}

.module--event .module__body .kicker .event__category {
  background-color: #6c757d;
  font-size: 90%;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.module--event .module__body .event-details {
  color: #343a40;
}

.module--event .module__body .event-details__item {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.module--event .date {
  display: block;
  width: 100%;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .module--event .date {
    width: 80px;
  }
}

.module--event .date::before,
.module--event .date::after {
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 2px;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  border-top: 25px solid #6c757d;
  opacity: .6;
}

.module--event .date::before {
  -webkit-transform: rotate(-3deg);
       -o-transform: rotate(-3deg);
          transform: rotate(-3deg);
  left: -2px;
}

.module--event .date::after {
  -webkit-transform: rotate(6deg);
       -o-transform: rotate(6deg);
          transform: rotate(6deg);
}

.module--event .date .date__month {
  position: relative;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  background-color: #6c757d;
}

.module--event .date .date__month::before,
.module--event .date .date__month::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}

.module--event .date .date__month::before {
  left: 7px;
}

.module--event .date .date__month::after {
  right: 7px;
}

@media (max-width: 991.98px) {
  .module--event .date .date__month::before,
  .module--event .date .date__month::after {
    width: 5px;
    height: 5px;
  }

  .module--event .date .date__month::before {
    left: 3px;
  }

  .module--event .date .date__month::after {
    right: 3px;
  }
}

.module--event .date-location-hint {
  font-size: .9rem;
  color: #666;
}

.module--event .date .date__day {
  font-weight: 400;
  font-size: 1.5rem;
  color: #343a40;
  background: #fff;
}

.module--single-event .module__body .card {
  border-top: solid 4px #ee0000;
}

.module--single-event .module__body .card .image-container {
  background-size: cover;
  background-position: center;
}

.module--event-chalkboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 95%;
  position: relative;
  background: #333 url(/app/themes/spk-portal/dist/images/chalkboard.jpg);
  background-size: cover;
  font-family: 'walter', "Comic Sans MS", "Comic Sans", cursive;
}

.module--event-chalkboard::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #444;
  border-radius: 3px;
}

.module--event-chalkboard .module__header::before,
.module--event-chalkboard .module__header::after {
  content: '';
  position: absolute;
  top: -45px;
  width: 30px;
  height: 120px;
  background: url(/app/themes/spk-portal/dist/images/chalkboard-roller.svg) no-repeat;
  background-size: contain;
}

.module--event-chalkboard .module__header::before {
  left: 20px;
}

.module--event-chalkboard .module__header::after {
  right: 20px;
}

.module--event-chalkboard a {
  color: #fff;
}

.module--event-chalkboard .module__title {
  text-align: center;
  color: #ee0000;
}

.module--event-chalkboard .date,
.module--event-chalkboard h4,
.module--event-chalkboard .time {
  font-size: 1.2rem;
  line-height: 1.2;
}

.module--event-chalkboard .date {
  color: #00fe00;
}

.module--event-chalkboard .time {
  font-size: 1rem;
  color: #ee0000;
}

.module--event-chalkboard .module__footer {
  text-align: right;
  margin-top: auto;
}

.module--event-chalkboard .module__footer .btn,
.module--event-chalkboard .module__footer .homepage-preview-buttons a,
.homepage-preview-buttons .module--event-chalkboard .module__footer a,
.module--event-chalkboard .module__footer .sharebar-singlepost a,
.sharebar-singlepost .module--event-chalkboard .module__footer a,
.module--event-chalkboard .module__footer .comment-form input[type="submit"],
.comment-form .module--event-chalkboard .module__footer input[type="submit"],
.module--event-chalkboard .module__footer .sidebar--post .facetwp-autocomplete-update,
.sidebar--post .module--event-chalkboard .module__footer .facetwp-autocomplete-update,
.module--event-chalkboard .module__footer .search-form .search-submit,
.search-form .module--event-chalkboard .module__footer .search-submit,
.module--event-chalkboard .module__footer .community-login-form p .button,
.community-login-form p .module--event-chalkboard .module__footer .button,
.module--event-chalkboard .module__footer .frm_forms .frm_button_submit,
.frm_forms .module--event-chalkboard .module__footer .frm_button_submit {
  font-family: "Sparkasse", arial, sans-serif;
}

.module .no-events {
  color: #fff;
  text-align: center;
}

/**
  * @section	FacetWP Checkbox Styling
  */

/**
  * @section	Branding category colors
  */

.module--event.event-party.top-event::before,
.module--event.event-party.top-event::after {
  color: #cb0066;
}

.module--event.event-party .date__month,
.module--event.event-party .event__category.badge,
.module--event.event-party .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-party .event__category.facetwp-counter,
.module--event.event-party .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-party li.event__category,
.module--event.event-party .module__body .kicker .event__category {
  background-color: #cb0066;
}

.module--event.event-party .date::before,
.module--event.event-party .date::after {
  border-color: #cb0066;
}

.module--event.event-party .event-details__item i {
  color: #cb0066;
}

.sidebar--event .facetwp-checkbox[data-value=party]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=party]::before {
  border-color: #cb0066;
}

.sidebar--event .facetwp-checkbox[data-value=party].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=party].checked::before {
  background-color: #cb0066;
}

.sidebar--event .facetwp-checkbox[data-value=party] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=party] .facetwp-counter {
  background-color: #cb0066;
}

.module--event.event-theater.top-event::before,
.module--event.event-theater.top-event::after {
  color: #ffa142;
}

.module--event.event-theater .date__month,
.module--event.event-theater .event__category.badge,
.module--event.event-theater .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-theater .event__category.facetwp-counter,
.module--event.event-theater .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-theater li.event__category,
.module--event.event-theater .module__body .kicker .event__category {
  background-color: #ffa142;
}

.module--event.event-theater .date::before,
.module--event.event-theater .date::after {
  border-color: #ffa142;
}

.module--event.event-theater .event-details__item i {
  color: #ffa142;
}

.sidebar--event .facetwp-checkbox[data-value=theater]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=theater]::before {
  border-color: #ffa142;
}

.sidebar--event .facetwp-checkbox[data-value=theater].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=theater].checked::before {
  background-color: #ffa142;
}

.sidebar--event .facetwp-checkbox[data-value=theater] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=theater] .facetwp-counter {
  background-color: #ffa142;
}

.module--event.event-konzerte.top-event::before,
.module--event.event-konzerte.top-event::after {
  color: #73e700;
}

.module--event.event-konzerte .date__month,
.module--event.event-konzerte .event__category.badge,
.module--event.event-konzerte .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-konzerte .event__category.facetwp-counter,
.module--event.event-konzerte .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-konzerte li.event__category,
.module--event.event-konzerte .module__body .kicker .event__category {
  background-color: #73e700;
}

.module--event.event-konzerte .date::before,
.module--event.event-konzerte .date::after {
  border-color: #73e700;
}

.module--event.event-konzerte .event-details__item i {
  color: #73e700;
}

.sidebar--event .facetwp-checkbox[data-value=konzerte]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=konzerte]::before {
  border-color: #73e700;
}

.sidebar--event .facetwp-checkbox[data-value=konzerte].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=konzerte].checked::before {
  background-color: #73e700;
}

.sidebar--event .facetwp-checkbox[data-value=konzerte] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=konzerte] .facetwp-counter {
  background-color: #73e700;
}

.module--event.event-comedy-kabarett.top-event::before,
.module--event.event-comedy-kabarett.top-event::after {
  color: #00e7e7;
}

.module--event.event-comedy-kabarett .date__month,
.module--event.event-comedy-kabarett .event__category.badge,
.module--event.event-comedy-kabarett .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-comedy-kabarett .event__category.facetwp-counter,
.module--event.event-comedy-kabarett .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-comedy-kabarett li.event__category,
.module--event.event-comedy-kabarett .module__body .kicker .event__category {
  background-color: #00e7e7;
}

.module--event.event-comedy-kabarett .date::before,
.module--event.event-comedy-kabarett .date::after {
  border-color: #00e7e7;
}

.module--event.event-comedy-kabarett .event-details__item i {
  color: #00e7e7;
}

.sidebar--event .facetwp-checkbox[data-value=comedy-kabarett]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=comedy-kabarett]::before {
  border-color: #00e7e7;
}

.sidebar--event .facetwp-checkbox[data-value=comedy-kabarett].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=comedy-kabarett].checked::before {
  background-color: #00e7e7;
}

.sidebar--event .facetwp-checkbox[data-value=comedy-kabarett] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=comedy-kabarett] .facetwp-counter {
  background-color: #00e7e7;
}

.module--event.event-fuehrungen-rundfahrten.top-event::before,
.module--event.event-fuehrungen-rundfahrten.top-event::after {
  color: #4aa4ff;
}

.module--event.event-fuehrungen-rundfahrten .date__month,
.module--event.event-fuehrungen-rundfahrten .event__category.badge,
.module--event.event-fuehrungen-rundfahrten .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-fuehrungen-rundfahrten .event__category.facetwp-counter,
.module--event.event-fuehrungen-rundfahrten .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-fuehrungen-rundfahrten li.event__category,
.module--event.event-fuehrungen-rundfahrten .module__body .kicker .event__category {
  background-color: #4aa4ff;
}

.module--event.event-fuehrungen-rundfahrten .date::before,
.module--event.event-fuehrungen-rundfahrten .date::after {
  border-color: #4aa4ff;
}

.module--event.event-fuehrungen-rundfahrten .event-details__item i {
  color: #4aa4ff;
}

.sidebar--event .facetwp-checkbox[data-value=fuehrungen-rundfahrten]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=fuehrungen-rundfahrten]::before {
  border-color: #4aa4ff;
}

.sidebar--event .facetwp-checkbox[data-value=fuehrungen-rundfahrten].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=fuehrungen-rundfahrten].checked::before {
  background-color: #4aa4ff;
}

.sidebar--event .facetwp-checkbox[data-value=fuehrungen-rundfahrten] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=fuehrungen-rundfahrten] .facetwp-counter {
  background-color: #4aa4ff;
}

.module--event.event-fuer-kinder.top-event::before,
.module--event.event-fuer-kinder.top-event::after {
  color: #b266ff;
}

.module--event.event-fuer-kinder .date__month,
.module--event.event-fuer-kinder .event__category.badge,
.module--event.event-fuer-kinder .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-fuer-kinder .event__category.facetwp-counter,
.module--event.event-fuer-kinder .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-fuer-kinder li.event__category,
.module--event.event-fuer-kinder .module__body .kicker .event__category {
  background-color: #b266ff;
}

.module--event.event-fuer-kinder .date::before,
.module--event.event-fuer-kinder .date::after {
  border-color: #b266ff;
}

.module--event.event-fuer-kinder .event-details__item i {
  color: #b266ff;
}

.sidebar--event .facetwp-checkbox[data-value=fuer-kinder]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=fuer-kinder]::before {
  border-color: #b266ff;
}

.sidebar--event .facetwp-checkbox[data-value=fuer-kinder].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=fuer-kinder].checked::before {
  background-color: #b266ff;
}

.sidebar--event .facetwp-checkbox[data-value=fuer-kinder] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=fuer-kinder] .facetwp-counter {
  background-color: #b266ff;
}

.module--event.event-ausstellungen.top-event::before,
.module--event.event-ausstellungen.top-event::after {
  color: #b09a9a;
}

.module--event.event-ausstellungen .date__month,
.module--event.event-ausstellungen .event__category.badge,
.module--event.event-ausstellungen .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-ausstellungen .event__category.facetwp-counter,
.module--event.event-ausstellungen .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-ausstellungen li.event__category,
.module--event.event-ausstellungen .module__body .kicker .event__category {
  background-color: #b09a9a;
}

.module--event.event-ausstellungen .date::before,
.module--event.event-ausstellungen .date::after {
  border-color: #b09a9a;
}

.module--event.event-ausstellungen .event-details__item i {
  color: #b09a9a;
}

.sidebar--event .facetwp-checkbox[data-value=ausstellungen]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=ausstellungen]::before {
  border-color: #b09a9a;
}

.sidebar--event .facetwp-checkbox[data-value=ausstellungen].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=ausstellungen].checked::before {
  background-color: #b09a9a;
}

.sidebar--event .facetwp-checkbox[data-value=ausstellungen] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=ausstellungen] .facetwp-counter {
  background-color: #b09a9a;
}

.module--event.event-literatur-lesungen.top-event::before,
.module--event.event-literatur-lesungen.top-event::after {
  color: #cbcb00;
}

.module--event.event-literatur-lesungen .date__month,
.module--event.event-literatur-lesungen .event__category.badge,
.module--event.event-literatur-lesungen .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-literatur-lesungen .event__category.facetwp-counter,
.module--event.event-literatur-lesungen .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-literatur-lesungen li.event__category,
.module--event.event-literatur-lesungen .module__body .kicker .event__category {
  background-color: #cbcb00;
}

.module--event.event-literatur-lesungen .date::before,
.module--event.event-literatur-lesungen .date::after {
  border-color: #cbcb00;
}

.module--event.event-literatur-lesungen .event-details__item i {
  color: #cbcb00;
}

.sidebar--event .facetwp-checkbox[data-value=literatur-lesungen]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=literatur-lesungen]::before {
  border-color: #cbcb00;
}

.sidebar--event .facetwp-checkbox[data-value=literatur-lesungen].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=literatur-lesungen].checked::before {
  background-color: #cbcb00;
}

.sidebar--event .facetwp-checkbox[data-value=literatur-lesungen] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=literatur-lesungen] .facetwp-counter {
  background-color: #cbcb00;
}

.module--event.event-maerkte.top-event::before,
.module--event.event-maerkte.top-event::after {
  color: #00e773;
}

.module--event.event-maerkte .date__month,
.module--event.event-maerkte .event__category.badge,
.module--event.event-maerkte .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-maerkte .event__category.facetwp-counter,
.module--event.event-maerkte .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-maerkte li.event__category,
.module--event.event-maerkte .module__body .kicker .event__category {
  background-color: #00e773;
}

.module--event.event-maerkte .date::before,
.module--event.event-maerkte .date::after {
  border-color: #00e773;
}

.module--event.event-maerkte .event-details__item i {
  color: #00e773;
}

.sidebar--event .facetwp-checkbox[data-value=maerkte]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=maerkte]::before {
  border-color: #00e773;
}

.sidebar--event .facetwp-checkbox[data-value=maerkte].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=maerkte].checked::before {
  background-color: #00e773;
}

.sidebar--event .facetwp-checkbox[data-value=maerkte] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=maerkte] .facetwp-counter {
  background-color: #00e773;
}

.module--event.event-verschiedenes.top-event::before,
.module--event.event-verschiedenes.top-event::after {
  color: #7171ff;
}

.module--event.event-verschiedenes .date__month,
.module--event.event-verschiedenes .event__category.badge,
.module--event.event-verschiedenes .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-verschiedenes .event__category.facetwp-counter,
.module--event.event-verschiedenes .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-verschiedenes li.event__category,
.module--event.event-verschiedenes .module__body .kicker .event__category {
  background-color: #7171ff;
}

.module--event.event-verschiedenes .date::before,
.module--event.event-verschiedenes .date::after {
  border-color: #7171ff;
}

.module--event.event-verschiedenes .event-details__item i {
  color: #7171ff;
}

.sidebar--event .facetwp-checkbox[data-value=verschiedenes]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=verschiedenes]::before {
  border-color: #7171ff;
}

.sidebar--event .facetwp-checkbox[data-value=verschiedenes].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=verschiedenes].checked::before {
  background-color: #7171ff;
}

.sidebar--event .facetwp-checkbox[data-value=verschiedenes] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=verschiedenes] .facetwp-counter {
  background-color: #7171ff;
}

.module--event.event-museen-ausstellungen.top-event::before,
.module--event.event-museen-ausstellungen.top-event::after {
  color: #b09a9a;
}

.module--event.event-museen-ausstellungen .date__month,
.module--event.event-museen-ausstellungen .event__category.badge,
.module--event.event-museen-ausstellungen .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-museen-ausstellungen .event__category.facetwp-counter,
.module--event.event-museen-ausstellungen .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-museen-ausstellungen li.event__category,
.module--event.event-museen-ausstellungen .module__body .kicker .event__category {
  background-color: #b09a9a;
}

.module--event.event-museen-ausstellungen .date::before,
.module--event.event-museen-ausstellungen .date::after {
  border-color: #b09a9a;
}

.module--event.event-museen-ausstellungen .event-details__item i {
  color: #b09a9a;
}

.sidebar--event .facetwp-checkbox[data-value=museen-ausstellungen]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=museen-ausstellungen]::before {
  border-color: #b09a9a;
}

.sidebar--event .facetwp-checkbox[data-value=museen-ausstellungen].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=museen-ausstellungen].checked::before {
  background-color: #b09a9a;
}

.sidebar--event .facetwp-checkbox[data-value=museen-ausstellungen] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=museen-ausstellungen] .facetwp-counter {
  background-color: #b09a9a;
}

.module--event.event-tastings.top-event::before,
.module--event.event-tastings.top-event::after {
  color: #7cbdff;
}

.module--event.event-tastings .date__month,
.module--event.event-tastings .event__category.badge,
.module--event.event-tastings .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-tastings .event__category.facetwp-counter,
.module--event.event-tastings .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-tastings li.event__category,
.module--event.event-tastings .module__body .kicker .event__category {
  background-color: #7cbdff;
}

.module--event.event-tastings .date::before,
.module--event.event-tastings .date::after {
  border-color: #7cbdff;
}

.module--event.event-tastings .event-details__item i {
  color: #7cbdff;
}

.sidebar--event .facetwp-checkbox[data-value=tastings]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=tastings]::before {
  border-color: #7cbdff;
}

.sidebar--event .facetwp-checkbox[data-value=tastings].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=tastings].checked::before {
  background-color: #7cbdff;
}

.sidebar--event .facetwp-checkbox[data-value=tastings] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=tastings] .facetwp-counter {
  background-color: #7cbdff;
}

.module--event.event-dreimeterbretter.top-event::before,
.module--event.event-dreimeterbretter.top-event::after {
  color: #e67300;
}

.module--event.event-dreimeterbretter .date__month,
.module--event.event-dreimeterbretter .event__category.badge,
.module--event.event-dreimeterbretter .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-dreimeterbretter .event__category.facetwp-counter,
.module--event.event-dreimeterbretter .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-dreimeterbretter li.event__category,
.module--event.event-dreimeterbretter .module__body .kicker .event__category {
  background-color: #e67300;
}

.module--event.event-dreimeterbretter .date::before,
.module--event.event-dreimeterbretter .date::after {
  border-color: #e67300;
}

.module--event.event-dreimeterbretter .event-details__item i {
  color: #e67300;
}

.sidebar--event .facetwp-checkbox[data-value=dreimeterbretter]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=dreimeterbretter]::before {
  border-color: #e67300;
}

.sidebar--event .facetwp-checkbox[data-value=dreimeterbretter].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=dreimeterbretter].checked::before {
  background-color: #e67300;
}

.sidebar--event .facetwp-checkbox[data-value=dreimeterbretter] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=dreimeterbretter] .facetwp-counter {
  background-color: #e67300;
}

.module--event.event-bremen-zwei-buehne.top-event::before,
.module--event.event-bremen-zwei-buehne.top-event::after {
  color: #4B3E86;
}

.module--event.event-bremen-zwei-buehne .date__month,
.module--event.event-bremen-zwei-buehne .event__category.badge,
.module--event.event-bremen-zwei-buehne .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-bremen-zwei-buehne .event__category.facetwp-counter,
.module--event.event-bremen-zwei-buehne .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-bremen-zwei-buehne li.event__category,
.module--event.event-bremen-zwei-buehne .module__body .kicker .event__category {
  background-color: #4B3E86;
}

.module--event.event-bremen-zwei-buehne .date::before,
.module--event.event-bremen-zwei-buehne .date::after {
  border-color: #4B3E86;
}

.module--event.event-bremen-zwei-buehne .event-details__item i {
  color: #4B3E86;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-zwei-buehne]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-zwei-buehne]::before {
  border-color: #4B3E86;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-zwei-buehne].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-zwei-buehne].checked::before {
  background-color: #4B3E86;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-zwei-buehne] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-zwei-buehne] .facetwp-counter {
  background-color: #4B3E86;
}

.module--event.event-bremen-eins-zelt.top-event::before,
.module--event.event-bremen-eins-zelt.top-event::after {
  color: #379426;
}

.module--event.event-bremen-eins-zelt .date__month,
.module--event.event-bremen-eins-zelt .event__category.badge,
.module--event.event-bremen-eins-zelt .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-bremen-eins-zelt .event__category.facetwp-counter,
.module--event.event-bremen-eins-zelt .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-bremen-eins-zelt li.event__category,
.module--event.event-bremen-eins-zelt .module__body .kicker .event__category {
  background-color: #379426;
}

.module--event.event-bremen-eins-zelt .date::before,
.module--event.event-bremen-eins-zelt .date::after {
  border-color: #379426;
}

.module--event.event-bremen-eins-zelt .event-details__item i {
  color: #379426;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-eins-zelt]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-eins-zelt]::before {
  border-color: #379426;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-eins-zelt].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-eins-zelt].checked::before {
  background-color: #379426;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-eins-zelt] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-eins-zelt] .facetwp-counter {
  background-color: #379426;
}

.module--event.event-bremen-vier-zelt.top-event::before,
.module--event.event-bremen-vier-zelt.top-event::after {
  color: #F6C602;
}

.module--event.event-bremen-vier-zelt .date__month,
.module--event.event-bremen-vier-zelt .event__category.badge,
.module--event.event-bremen-vier-zelt .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-bremen-vier-zelt .event__category.facetwp-counter,
.module--event.event-bremen-vier-zelt .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-bremen-vier-zelt li.event__category,
.module--event.event-bremen-vier-zelt .module__body .kicker .event__category {
  background-color: #F6C602;
}

.module--event.event-bremen-vier-zelt .date::before,
.module--event.event-bremen-vier-zelt .date::after {
  border-color: #F6C602;
}

.module--event.event-bremen-vier-zelt .event-details__item i {
  color: #F6C602;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-vier-zelt]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-vier-zelt]::before {
  border-color: #F6C602;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-vier-zelt].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-vier-zelt].checked::before {
  background-color: #F6C602;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-vier-zelt] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-vier-zelt] .facetwp-counter {
  background-color: #F6C602;
}

.module--event.event-flut.top-event::before,
.module--event.event-flut.top-event::after {
  color: #7b0000;
}

.module--event.event-flut .date__month,
.module--event.event-flut .event__category.badge,
.module--event.event-flut .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-flut .event__category.facetwp-counter,
.module--event.event-flut .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-flut li.event__category,
.module--event.event-flut .module__body .kicker .event__category {
  background-color: #7b0000;
}

.module--event.event-flut .date::before,
.module--event.event-flut .date::after {
  border-color: #7b0000;
}

.module--event.event-flut .event-details__item i {
  color: #7b0000;
}

.sidebar--event .facetwp-checkbox[data-value=flut]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=flut]::before {
  border-color: #7b0000;
}

.sidebar--event .facetwp-checkbox[data-value=flut].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=flut].checked::before {
  background-color: #7b0000;
}

.sidebar--event .facetwp-checkbox[data-value=flut] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=flut] .facetwp-counter {
  background-color: #7b0000;
}

.module--event.event-strandbuehne.top-event::before,
.module--event.event-strandbuehne.top-event::after {
  color: #7cbdff;
}

.module--event.event-strandbuehne .date__month,
.module--event.event-strandbuehne .event__category.badge,
.module--event.event-strandbuehne .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-strandbuehne .event__category.facetwp-counter,
.module--event.event-strandbuehne .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-strandbuehne li.event__category,
.module--event.event-strandbuehne .module__body .kicker .event__category {
  background-color: #7cbdff;
}

.module--event.event-strandbuehne .date::before,
.module--event.event-strandbuehne .date::after {
  border-color: #7cbdff;
}

.module--event.event-strandbuehne .event-details__item i {
  color: #7cbdff;
}

.sidebar--event .facetwp-checkbox[data-value=strandbuehne]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=strandbuehne]::before {
  border-color: #7cbdff;
}

.sidebar--event .facetwp-checkbox[data-value=strandbuehne].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=strandbuehne].checked::before {
  background-color: #7cbdff;
}

.sidebar--event .facetwp-checkbox[data-value=strandbuehne] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=strandbuehne] .facetwp-counter {
  background-color: #7cbdff;
}

.module--event.event-pappinale.top-event::before,
.module--event.event-pappinale.top-event::after {
  color: #8A6D4C;
}

.module--event.event-pappinale .date__month,
.module--event.event-pappinale .event__category.badge,
.module--event.event-pappinale .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-pappinale .event__category.facetwp-counter,
.module--event.event-pappinale .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-pappinale li.event__category,
.module--event.event-pappinale .module__body .kicker .event__category {
  background-color: #8A6D4C;
}

.module--event.event-pappinale .date::before,
.module--event.event-pappinale .date::after {
  border-color: #8A6D4C;
}

.module--event.event-pappinale .event-details__item i {
  color: #8A6D4C;
}

.sidebar--event .facetwp-checkbox[data-value=pappinale]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=pappinale]::before {
  border-color: #8A6D4C;
}

.sidebar--event .facetwp-checkbox[data-value=pappinale].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=pappinale].checked::before {
  background-color: #8A6D4C;
}

.sidebar--event .facetwp-checkbox[data-value=pappinale] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=pappinale] .facetwp-counter {
  background-color: #8A6D4C;
}

.module--event.event-bremen-next-stage.top-event::before,
.module--event.event-bremen-next-stage.top-event::after {
  color: #dad0d0;
}

.module--event.event-bremen-next-stage .date__month,
.module--event.event-bremen-next-stage .event__category.badge,
.module--event.event-bremen-next-stage .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-bremen-next-stage .event__category.facetwp-counter,
.module--event.event-bremen-next-stage .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-bremen-next-stage li.event__category,
.module--event.event-bremen-next-stage .module__body .kicker .event__category {
  background-color: #dad0d0;
}

.module--event.event-bremen-next-stage .date::before,
.module--event.event-bremen-next-stage .date::after {
  border-color: #dad0d0;
}

.module--event.event-bremen-next-stage .event-details__item i {
  color: #dad0d0;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-next-stage]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-next-stage]::before {
  border-color: #dad0d0;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-next-stage].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-next-stage].checked::before {
  background-color: #dad0d0;
}

.sidebar--event .facetwp-checkbox[data-value=bremen-next-stage] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=bremen-next-stage] .facetwp-counter {
  background-color: #dad0d0;
}

.module--event.event-urlaub-im-luftschloss.top-event::before,
.module--event.event-urlaub-im-luftschloss.top-event::after {
  color: #a90054;
}

.module--event.event-urlaub-im-luftschloss .date__month,
.module--event.event-urlaub-im-luftschloss .event__category.badge,
.module--event.event-urlaub-im-luftschloss .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-urlaub-im-luftschloss .event__category.facetwp-counter,
.module--event.event-urlaub-im-luftschloss .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-urlaub-im-luftschloss li.event__category,
.module--event.event-urlaub-im-luftschloss .module__body .kicker .event__category {
  background-color: #a90054;
}

.module--event.event-urlaub-im-luftschloss .date::before,
.module--event.event-urlaub-im-luftschloss .date::after {
  border-color: #a90054;
}

.module--event.event-urlaub-im-luftschloss .event-details__item i {
  color: #a90054;
}

.sidebar--event .facetwp-checkbox[data-value=urlaub-im-luftschloss]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=urlaub-im-luftschloss]::before {
  border-color: #a90054;
}

.sidebar--event .facetwp-checkbox[data-value=urlaub-im-luftschloss].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=urlaub-im-luftschloss].checked::before {
  background-color: #a90054;
}

.sidebar--event .facetwp-checkbox[data-value=urlaub-im-luftschloss] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=urlaub-im-luftschloss] .facetwp-counter {
  background-color: #a90054;
}

.module--event.event-kinderbreminale.top-event::before,
.module--event.event-kinderbreminale.top-event::after {
  color: #66cb00;
}

.module--event.event-kinderbreminale .date__month,
.module--event.event-kinderbreminale .event__category.badge,
.module--event.event-kinderbreminale .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-kinderbreminale .event__category.facetwp-counter,
.module--event.event-kinderbreminale .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-kinderbreminale li.event__category,
.module--event.event-kinderbreminale .module__body .kicker .event__category {
  background-color: #66cb00;
}

.module--event.event-kinderbreminale .date::before,
.module--event.event-kinderbreminale .date::after {
  border-color: #66cb00;
}

.module--event.event-kinderbreminale .event-details__item i {
  color: #66cb00;
}

.sidebar--event .facetwp-checkbox[data-value=kinderbreminale]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=kinderbreminale]::before {
  border-color: #66cb00;
}

.sidebar--event .facetwp-checkbox[data-value=kinderbreminale].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=kinderbreminale].checked::before {
  background-color: #66cb00;
}

.sidebar--event .facetwp-checkbox[data-value=kinderbreminale] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=kinderbreminale] .facetwp-counter {
  background-color: #66cb00;
}

.module--event.event-online.top-event::before,
.module--event.event-online.top-event::after {
  color: #ee0000;
}

.module--event.event-online .date__month,
.module--event.event-online .event__category.badge,
.module--event.event-online .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-online .event__category.facetwp-counter,
.module--event.event-online .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-online li.event__category,
.module--event.event-online .module__body .kicker .event__category {
  background-color: #ee0000;
}

.module--event.event-online .date::before,
.module--event.event-online .date::after {
  border-color: #ee0000;
}

.module--event.event-online .event-details__item i {
  color: #ee0000;
}

.sidebar--event .facetwp-checkbox[data-value=online]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=online]::before {
  border-color: #ee0000;
}

.sidebar--event .facetwp-checkbox[data-value=online].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=online].checked::before {
  background-color: #ee0000;
}

.sidebar--event .facetwp-checkbox[data-value=online] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=online] .facetwp-counter {
  background-color: #ee0000;
}

.module--event.event-vortraege.top-event::before,
.module--event.event-vortraege.top-event::after {
  color: #ca6500;
}

.module--event.event-vortraege .date__month,
.module--event.event-vortraege .event__category.badge,
.module--event.event-vortraege .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-vortraege .event__category.facetwp-counter,
.module--event.event-vortraege .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-vortraege li.event__category,
.module--event.event-vortraege .module__body .kicker .event__category {
  background-color: #ca6500;
}

.module--event.event-vortraege .date::before,
.module--event.event-vortraege .date::after {
  border-color: #ca6500;
}

.module--event.event-vortraege .event-details__item i {
  color: #ca6500;
}

.sidebar--event .facetwp-checkbox[data-value=vortraege]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=vortraege]::before {
  border-color: #ca6500;
}

.sidebar--event .facetwp-checkbox[data-value=vortraege].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=vortraege].checked::before {
  background-color: #ca6500;
}

.sidebar--event .facetwp-checkbox[data-value=vortraege] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=vortraege] .facetwp-counter {
  background-color: #ca6500;
}

.module--event.event-tanzen-party.top-event::before,
.module--event.event-tanzen-party.top-event::after {
  color: #00ffff;
}

.module--event.event-tanzen-party .date__month,
.module--event.event-tanzen-party .event__category.badge,
.module--event.event-tanzen-party .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-tanzen-party .event__category.facetwp-counter,
.module--event.event-tanzen-party .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-tanzen-party li.event__category,
.module--event.event-tanzen-party .module__body .kicker .event__category {
  background-color: #00ffff;
}

.module--event.event-tanzen-party .date::before,
.module--event.event-tanzen-party .date::after {
  border-color: #00ffff;
}

.module--event.event-tanzen-party .event-details__item i {
  color: #00ffff;
}

.sidebar--event .facetwp-checkbox[data-value=tanzen-party]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=tanzen-party]::before {
  border-color: #00ffff;
}

.sidebar--event .facetwp-checkbox[data-value=tanzen-party].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=tanzen-party].checked::before {
  background-color: #00ffff;
}

.sidebar--event .facetwp-checkbox[data-value=tanzen-party] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=tanzen-party] .facetwp-counter {
  background-color: #00ffff;
}

.module--event.event-events-sparkasse-bremen.top-event::before,
.module--event.event-events-sparkasse-bremen.top-event::after {
  color: #ee0000;
}

.module--event.event-events-sparkasse-bremen .date__month,
.module--event.event-events-sparkasse-bremen .event__category.badge,
.module--event.event-events-sparkasse-bremen .sidebar--event .facetwp-checkbox .event__category.facetwp-counter,
.sidebar--event .facetwp-checkbox .module--event.event-events-sparkasse-bremen .event__category.facetwp-counter,
.module--event.event-events-sparkasse-bremen .module--card .post-categories li.event__category,
.module--card .post-categories .module--event.event-events-sparkasse-bremen li.event__category,
.module--event.event-events-sparkasse-bremen .module__body .kicker .event__category {
  background-color: #ee0000;
}

.module--event.event-events-sparkasse-bremen .date::before,
.module--event.event-events-sparkasse-bremen .date::after {
  border-color: #ee0000;
}

.module--event.event-events-sparkasse-bremen .event-details__item i {
  color: #ee0000;
}

.sidebar--event .facetwp-checkbox[data-value=events-sparkasse-bremen]::before,
.sidebar--filter-events .facetwp-checkbox[data-value=events-sparkasse-bremen]::before {
  border-color: #ee0000;
}

.sidebar--event .facetwp-checkbox[data-value=events-sparkasse-bremen].checked::before,
.sidebar--filter-events .facetwp-checkbox[data-value=events-sparkasse-bremen].checked::before {
  background-color: #ee0000;
}

.sidebar--event .facetwp-checkbox[data-value=events-sparkasse-bremen] .facetwp-counter,
.sidebar--filter-events .facetwp-checkbox[data-value=events-sparkasse-bremen] .facetwp-counter {
  background-color: #ee0000;
}

.welcome--immo .facetwp-type-dropdown,
.welcome--event .facetwp-type-dropdown {
  position: relative;
  display: block;
  width: 100%;
  height: 3rem;
  margin: 1rem 0 0;
  line-height: 3;
  background: #fff;
  overflow: hidden;
}

.welcome--immo .facetwp-type-dropdown::after,
.welcome--event .facetwp-type-dropdown::after {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 1em;
  background: #6c757d;
  pointer-events: none;
  color: #fff;
}

.welcome--immo .facetwp-type-dropdown:hover::after,
.welcome--event .facetwp-type-dropdown:hover::after {
  background-color: #ee0000;
}

.welcome--immo .facetwp-type-dropdown select,
.welcome--event .facetwp-type-dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0 !important;
  background: #fff;
  background-image: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 1rem;
  cursor: pointer;
}

.welcome--immo .facetwp-type-dropdown select::-ms-expand,
.welcome--event .facetwp-type-dropdown select::-ms-expand {
  display: none;
}

.welcome--immo .facetwp-type-dropdown .facetwp-loading,
.welcome--event .facetwp-type-dropdown .facetwp-loading {
  position: absolute;
  top: 15px;
  left: 1rem;
  margin: 0;
  padding: 0;
}

.facetwp-pagenav .page-numbers {
  color: #ee0000 !important;
  margin: 0 3px 3px 0;
}

.facetwp-pagenav .page-numbers:hover {
  color: #a20000 !important;
}

.facetwp-pagenav .page-numbers.current {
  color: #fff !important;
}

.facetwp-pagenav .page-numbers.digit:only-of-type {
  display: none;
}

.facetwp-pagenav .disabled {
  display: none;
}

@media (min-width: 768px) {
  .fallbackevents-district .module--event .module__header .date {
    width: 100%;
  }
}

.fallbackevents-district .module--event .module__header .date__month {
  font-size: .8rem;
}

.fallbackevents-district .module--event .module__header .date__month::before,
.fallbackevents-district .module--event .module__header .date__month::after {
  width: 5px;
  height: 5px;
}

.fallbackevents-district .module--event .module__header .date__day {
  font-size: 1.2rem;
}

.fallbackevents-district .module--event .module__body .kicker {
  display: none !important;
}

.fallbackevents-district .module--event .module__body h3 {
  font-size: 1.2rem;
}

.district-events .event-wrapper .date {
  width: 100%;
}

.district-events .event-wrapper .date__month {
  font-size: .8rem;
}

.district-events .event-wrapper:nth-child(1) a,
.district-events .event-wrapper:nth-child(1) .event-holder {
  background-color: rgba(0, 0, 0, 0.02);
}

.district-events .event-wrapper:nth-child(2) a,
.district-events .event-wrapper:nth-child(2) .event-holder,
.district-events .event-wrapper:nth-child(3) a,
.district-events .event-wrapper:nth-child(3) .event-holder {
  background-color: #fff;
}

.district-events .event-wrapper a:hover,
.district-events .event-wrapper .event-holder:hover {
  background-color: rgba(238, 0, 0, 0.03);
}

.tax-event_location .date-holder {
  text-align: center;
}

.tax-event_location .date {
  margin: 0 auto;
}

/**
  * @section FacetWP Top-Events Checkbox stylen
  */

.btn__switch-toggle .facetwp-checkbox,
.facetwp-facet-event_show_top_events .facetwp-checkbox {
  background-color: #ced4da;
  width: 80px;
  height: 30px;
  border-radius: 20px;
  font-size: 0rem;
}

.btn__switch-toggle .facetwp-checkbox::before,
.facetwp-facet-event_show_top_events .facetwp-checkbox::before {
  background-color: white;
  border-radius: 50%;
  border: none;
  height: 25px;
  width: 25px;
  left: 4px;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.btn__switch-toggle .facetwp-checkbox.checked,
.facetwp-facet-event_show_top_events .facetwp-checkbox.checked {
  background-color: #ee0000;
}

.btn__switch-toggle .facetwp-checkbox.checked::before,
.facetwp-facet-event_show_top_events .facetwp-checkbox.checked::before {
  background-color: white;
  outline: none;
  left: 60%;
}

/**
  * @section Events search location
  */

#result-locations .search-loca .icon-spot {
  font-size: 3rem;
}

#result-locations .search-loca__title {
  font-size: 1.4rem;
}

#result-locations .search-loca .event__category {
  background-color: #e70000;
}

.local-facets .facetwp-type-map,
.arts-facets .facetwp-type-map {
  border: 15px solid white;
}

.local-facets .facetwp-type-map .facetwp-map-filtering,
.arts-facets .facetwp-type-map .facetwp-map-filtering {
  display: none;
}

.local-facets .facetwp-type-search .facetwp-search-wrap,
.arts-facets .facetwp-type-search .facetwp-search-wrap {
  display: block;
}

.local-facets .facetwp-type-search .facetwp-search-wrap .facetwp-btn,
.arts-facets .facetwp-type-search .facetwp-search-wrap .facetwp-btn {
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.locals .local {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.locals .local .card-image-crop {
  overflow: hidden;
}

.locals .local .card-image-crop .local-pills {
  top: 10px;
  left: 10px;
}

.locals .local .card-body .list-group-item,
.locals .local .card-body .offside .list-group-flush .nav-item,
.offside .list-group-flush .locals .local .card-body .nav-item,
.locals .local .card-body .offside .list-group-flush .sitewide-footer .footer__nav li,
.offside .list-group-flush .sitewide-footer .footer__nav .locals .local .card-body li,
.locals .local .card-body .sitewide-footer .footer__nav .offside .list-group-flush li,
.sitewide-footer .footer__nav .offside .list-group-flush .locals .local .card-body li {
  padding: 0.25rem 1.25rem;
}

.locals .local:hover .logo {
  -webkit-filter: opacity(100%);
          filter: opacity(100%);
  -webkit-transform: scale(1.2);
       -o-transform: scale(1.2);
          transform: scale(1.2);
}

.locals .local .logo {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-filter: opacity(75%);
          filter: opacity(75%);
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@-o-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.immo-grid .immo-item .card {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.immo-grid .immo-item .card .image {
  height: 220px;
  overflow: hidden;
}

.immo-grid .immo-item .card .image img {
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(25%);
          filter: grayscale(25%);
}

.immo-grid .immo-item .card .card-content {
  height: 50px;
  background-color: white;
}

.immo-grid .immo-item .card .card-content .card-body {
  margin: 0.5rem;
  padding: 0.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
}

.immo-grid .immo-item .card:hover {
  -webkit-transform: scale(1.04);
       -o-transform: scale(1.04);
          transform: scale(1.04);
}

.immo-grid .immo-item .card:hover .image img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.module--keyfacts .module__header i:before {
  font-size: 4rem;
  background: white;
  line-height: 1;
  padding: 1rem;
  border-radius: 100px;
  position: absolute;
  top: -40px;
  right: 70px;
}

.module--immo .module__title {
  font-size: 1.25rem;
}

.immo-slider .slick-slide {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: 100%;
}

.immo-slider .slide-content {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.immo-slider .immo-image {
  height: 256px;
  overflow: hidden;
  position: relative;
}

.immo-slider .immo-image img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.immo-slider .immo-link {
  display: block;
  height: 100%;
}

.immo-slider .switch {
  -webkit-transform: translateY(calc(60px + 0.5em));
       -o-transform: translateY(calc(60px + 0.5em));
          transform: translateY(calc(60px + 0.5em));
}

.immo-slider .module__body::after {
  display: none;
}

.module {
  /**
	  * @section	Five Reasons for …
	  */
  /**
	  * @section	District Header
	  */
}

.module--five-reasons-for .module__body {
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.module--five-reasons-for .module__body .bubble {
  z-index: 3;
}

.module--five-reasons-for .module__body .bubble::after {
  content: '';
  border-style: solid;
  border-width: 15px 30px 15px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  display: block;
  left: -30px;
  top: 25px;
  z-index: -1;
}

.module--metro-style-intro .module__title {
  font-size: 2.2rem;
  text-shadow: 1px 1px 0 #fff;
}

.module--metro-style-intro .module__body .border,
.module--metro-style-intro .module__body .module--teaser-content {
  border: 5px solid #fff;
}

.module--metro-style-intro .module__body .bg-district-image {
  background-size: cover;
  background-position: center center;
}

.module--metro-style-intro .icon-spot {
  font-size: 2rem;
}

.module--metro-style-intro a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.module--metro-style-intro a:hover {
  text-decoration: none;
}

.register-nav {
  margin: 0 -5px !important;
}

.register-nav .nav-item,
.register-nav .sitewide-footer .footer__nav li,
.sitewide-footer .footer__nav .register-nav li {
  padding: 0 5px 10px !important;
}

.register-nav .nav-item .nav-link,
.register-nav .sitewide-footer .footer__nav li .nav-link,
.sitewide-footer .footer__nav .register-nav li .nav-link,
.sitewide-footer .footer__nav li .register-nav .nav-item a,
.register-nav .sitewide-footer .footer__nav li a,
.sitewide-footer .footer__nav .register-nav li a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 0;
  background-color: #e9ecef;
}

.register-nav .nav-item .nav-link:hover,
.register-nav .sitewide-footer .footer__nav li .nav-link:hover,
.sitewide-footer .footer__nav .register-nav li .nav-link:hover,
.sitewide-footer .footer__nav li .register-nav .nav-item a:hover,
.register-nav .sitewide-footer .footer__nav li a:hover,
.sitewide-footer .footer__nav .register-nav li a:hover {
  background-color: #dee2e6;
}

.register-nav .nav-item .nav-link.show,
.register-nav .sitewide-footer .footer__nav li .nav-link.show,
.sitewide-footer .footer__nav .register-nav li .nav-link.show,
.sitewide-footer .footer__nav li .register-nav .nav-item a.show,
.register-nav .sitewide-footer .footer__nav li a.show,
.sitewide-footer .footer__nav .register-nav li a.show {
  background-color: #ee0000 !important;
  color: #fff !important;
}

.register-nav .nav-item .nav-link.show .badge,
.register-nav .sitewide-footer .footer__nav li .nav-link.show .badge,
.sitewide-footer .footer__nav .register-nav li .nav-link.show .badge,
.sitewide-footer .footer__nav li .register-nav .nav-item a.show .badge,
.register-nav .sitewide-footer .footer__nav li a.show .badge,
.sitewide-footer .footer__nav .register-nav li a.show .badge,
.register-nav .nav-item .nav-link.show .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .register-nav .nav-item .nav-link.show .facetwp-counter,
.register-nav .sitewide-footer .footer__nav li .nav-link.show .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .register-nav .sitewide-footer .footer__nav li .nav-link.show .facetwp-counter,
.sitewide-footer .footer__nav .register-nav li .nav-link.show .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .sitewide-footer .footer__nav .register-nav li .nav-link.show .facetwp-counter,
.sitewide-footer .footer__nav li .register-nav .nav-item a.show .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .sitewide-footer .footer__nav li .register-nav .nav-item a.show .facetwp-counter,
.register-nav .sitewide-footer .footer__nav li a.show .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .register-nav .sitewide-footer .footer__nav li a.show .facetwp-counter,
.sitewide-footer .footer__nav .register-nav li a.show .sidebar--event .facetwp-checkbox .facetwp-counter,
.sidebar--event .facetwp-checkbox .sitewide-footer .footer__nav .register-nav li a.show .facetwp-counter,
.register-nav .nav-item .nav-link.show .module--card .post-categories li,
.module--card .post-categories .register-nav .nav-item .nav-link.show li,
.register-nav .sitewide-footer .footer__nav li .nav-link.show .module--card .post-categories li,
.module--card .post-categories .register-nav .sitewide-footer .footer__nav li .nav-link.show li,
.sitewide-footer .footer__nav .register-nav li .nav-link.show .module--card .post-categories li,
.module--card .post-categories .sitewide-footer .footer__nav .register-nav li .nav-link.show li,
.sitewide-footer .footer__nav li .register-nav .nav-item a.show .module--card .post-categories li,
.module--card .post-categories .sitewide-footer .footer__nav li .register-nav .nav-item a.show li,
.register-nav .sitewide-footer .footer__nav li a.show .module--card .post-categories li,
.module--card .post-categories .register-nav .sitewide-footer .footer__nav li a.show li,
.sitewide-footer .footer__nav .register-nav li a.show .module--card .post-categories li,
.module--card .post-categories .sitewide-footer .footer__nav .register-nav li a.show li,
.register-nav .nav-item .nav-link.show .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .register-nav .nav-item .nav-link.show .event__category,
.register-nav .sitewide-footer .footer__nav li .nav-link.show .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .register-nav .sitewide-footer .footer__nav li .nav-link.show .event__category,
.sitewide-footer .footer__nav .register-nav li .nav-link.show .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .sitewide-footer .footer__nav .register-nav li .nav-link.show .event__category,
.sitewide-footer .footer__nav li .register-nav .nav-item a.show .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .sitewide-footer .footer__nav li .register-nav .nav-item a.show .event__category,
.register-nav .sitewide-footer .footer__nav li a.show .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .register-nav .sitewide-footer .footer__nav li a.show .event__category,
.sitewide-footer .footer__nav .register-nav li a.show .module--event .module__body .kicker .event__category,
.module--event .module__body .kicker .sitewide-footer .footer__nav .register-nav li a.show .event__category {
  color: #ee0000;
  background-color: #fff;
}

.register-item h3 {
  margin: 0;
  font-size: 1rem;
}

@media (min-width: 576px) {
  .register-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .register-item p {
    text-align: right;
  }
}

.tab-pane {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.module--district {
  margin-bottom: 1rem;
  text-align: center;
}

.module--district .module__link {
  display: block;
  color: #6c757d;
}

.module--district .module__link:hover {
  text-decoration: none;
}

.module--district .module__image img {
  width: auto;
  height: 200px;
}

.module--district .module__body::after {
  display: none;
}

.module--district .module__meta .sharebar a {
  color: #ced4da;
}

.module--district .module__meta .sharebar a:hover {
  color: #ee0000;
}

.district-branch {
  position: fixed;
  bottom: -3px;
  text-align: center;
  right: 0;
  left: 0;
  z-index: 100;
}

@media (min-width: 768px) {
  .district-branch {
    top: 73px;
    text-align: right;
    bottom: unset;
  }
}

.district-branch__link {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  outline: 1px dotted rgba(255, 255, 255, 0.5);
  outline-offset: -3px;
  color: #fff;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .district-branch__link {
    background-color: #d50000;
    padding: 10px 10px 7px 10px;
  }
}

@media (max-width: 991.98px) {
  .district-branch__link {
    background-color: #adb5bd;
    padding: 5px 8px 8px 8px;
  }
}

.district-branch__link:hover {
  background-color: #ca0000;
  outline-color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: #fff;
}

.send-issue {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.send-issue.idle * {
  opacity: .2;
}

.district-post {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-right: 0;
  margin-left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
}

.district-post__title {
  font-size: 1.2rem;
  color: #343a40;
}

.district-post__date {
  font-size: 14px;
}

.district-post__link {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: #343a40;
}

.district-post__link:hover {
  text-decoration: none;
}

.district-posts .col-md-4:nth-child(2) .district-post {
  background-color: rgba(0, 0, 0, 0.02);
}

.district-post:hover,
.district-posts .col-md-4:nth-child(2) .district-post:hover {
  background-color: rgba(238, 0, 0, 0.03);
}

.map {
  position: relative;
}

.map--branches {
  background-image: url(/app/themes/spk-portal/dist/images/map-bremen-base.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.map--branches svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.map--branches .shadow,
.map--branches .offside,
.map--branches .red-btn:hover,
.map--branches .module--card,
.map--branches .local-facets .facetwp-type-map,
.local-facets .map--branches .facetwp-type-map,
.map--branches .arts-facets .facetwp-type-map,
.arts-facets .map--branches .facetwp-type-map,
.map--branches .district-branch__link {
  fill: #1d1d1b;
  fill-opacity: 0.2;
}

.map--branches .pin-bg {
  fill: #fff;
}

.map--branches .pin-fg {
  fill: #ee0000;
}

.map--branches svg a > g {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  -webkit-transform-origin: 50% 100%;
       -o-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}

.map--branches svg a:hover > g {
  -webkit-transform: translateY(-3px);
       -o-transform: translateY(-3px);
          transform: translateY(-3px);
}

.map--districts {
  background-image: url(/app/themes/spk-portal/dist/images/map-stadtteile-illustration.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.map--districts .map__element {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  fill-opacity: 0;
  -webkit-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.map--districts .map__element.duster {
  fill-opacity: .3;
}

.map--districts .map__element:hover {
  fill-opacity: 0;
}

.map--districts:hover .map__element {
  fill-opacity: .3;
}

.map--districts:hover .map__element:hover {
  fill-opacity: 0;
}

@-webkit-keyframes sonar-effect {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    -webkit-box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
            box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
  }

  100% {
    -webkit-box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
            box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@-o-keyframes sonar-effect {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
  }

  100% {
    box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
    -o-transform: scale(1.5);
       transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes sonar-effect {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    -webkit-box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
            box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
  }

  100% {
    -webkit-box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
            box-shadow: 0 0 0 5px #ee0000, 0 0 10px 10px #ee0000, 0 0 0 10px #ee0000;
    -webkit-transform: scale(1.5);
         -o-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

.map .pointer-indicator {
  -webkit-transition: opacity .6s ease;
  -o-transition: opacity .6s ease;
  transition: opacity .6s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(238, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.map .pointer-indicator img {
  max-width: 80%;
  height: auto;
  margin: auto 0;
}

.map .pointer-indicator::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: sonar-effect 3s linear infinite;
       -o-animation: sonar-effect 3s linear infinite;
          animation: sonar-effect 3s linear infinite;
}

.map:hover .pointer-indicator {
  opacity: 0;
}

.spot-community-button img {
  max-height: 40px;
}

.spot-community .dashboard .image-title {
  min-height: 300px;
  max-height: 50vh;
  overflow: hidden;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.spot-community .dashboard .profile {
  margin-top: -3rem;
  position: relative;
}

.spot-community .dashboard .profile .user-content .image-profile img {
  max-height: 250px;
  margin-top: -125px;
}

.iphone-apphint:after,
.iphone-apphint:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(248, 249, 250, 0);
  border-top-color: #f8f9fa;
}

.iphone-apphint:after {
  border-width: 10px;
  margin-left: -10px;
}

.iphone-apphint:before {
  border-width: 13px;
  margin-left: -13px;
}

.iphone-apphint .iphone_action {
  max-height: 20px;
  padding-left: 5px;
  padding-right: 5px;
}

.step__wrapper {
  border-radius: 20%;
}

.step__wrapper hr {
  border-top: 3px solid #ee0000;
  width: 95px;
}

.step__num {
  width: 60px;
  height: 60px;
}

.step__num p {
  font-size: 2rem;
  font-weight: bold;
  border: 2px solid white;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.tile-item {
  height: 300px;
  position: relative;
}

.tile-item--overlay .content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}

.tile-item--overlay:hover .img-wiht-overlay::before {
  background-color: rgba(238, 0, 0, 0.5);
}

@media (min-width: 992px) {
  .tile-item {
    height: 400px;
  }
}


/*# sourceMappingURL=main.css.map*/