/* Main files & configuration */
.screen-reader-text {
  position: fixed;
  top: -9999px;
  left: -9999px;
}
.dashicons-admin-post:before {
  content: "\f123";
}
body {
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #40403f;
  line-height: 1.3;
}
a {
  color: #e0001a;
}
a:hover {
  color: #e0001a;
}
a:visited {
  color: #e0001a;
}
a:active {
  color: #e0001a;
}
.ajax-loader {
  display: none !important;
}
/*
 * Hiding specific elements, depending on the screen-size of the user
 */
.hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .hidden-small {
    display: none !important;
  }
}
@media (max-width: 992px) and (min-width: 768px) {
  .hidden-medium {
    display: none !important;
  }
}
@media (max-width: 1200px) and (min-width: 992px) {
  .hidden-large {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .hidden-extra-large {
    display: none !important;
  }
}
.grecaptcha-badge {
  display: none !important;
}
/* Common patterns */
/*
 * Header design
 *
 * This is the main file implementing the design of the header. 
 * It defines the wrappers of the header as well as the media queries of the wrappers. 
 * Also the responsive header design is implemented here. 
 * Most importantly, the imports of the top-navigation, main-navigation and the slide-out element are handled in here.
 *
 */
.no-display {
  display: none;
}
.menu-block .nav-wrapper {
  box-shadow: none;
  transition: box-shadow 1s ease-in-out, transform 0.2s ease-in-out;
}
.menu-block .nav-wrapper .res-close-button {
  display: none;
}
.menu-block.fixed {
  height: 151px;
}
.menu-block.fixed .nav-wrapper {
  position: fixed;
  top: -50px;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.menu-block .menu-wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 1220px) {
  .menu-block .menu-wrapper {
    width: 90%;
  }
}
@media all and (max-width: 992px) {
  .resp-header {
    display: block;
    padding: 1em;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e7e7e7;
  }
  .resp-header .logo {
    margin: 0;
    width: 91px;
    height: 42px;
  }
  .resp-header a.menu-toggle {
    position: absolute;
    right: 1em;
    top: 1.5em;
    color: #737372;
    transition: color 0.2s ease-in-out;
  }
  .resp-header a.menu-toggle:hover {
    color: #e0001a;
  }
  .resp-header a.menu-toggle:active {
    transition: none;
    color: #930011;
  }
  .resp-header a.menu-toggle i {
    font-size: 1.5em;
  }
  .menu-block {
    z-index: 9999999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease-in-out;
  }
  .menu-block.fixed .nav-wrapper {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    background-color: #f9f9f9;
  }
  .menu-block.show {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .menu-block.show .nav-wrapper {
    transform: translateY(0);
  }
  .menu-block .nav-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(-110%);
    transition: transform 0.5s ease-in-out;
  }
  .menu-block .nav-wrapper .res-close-button {
    display: block;
    position: absolute;
    bottom: -1.5em;
    right: 0;
    font-size: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    padding: 0 .5em;
    text-align: center;
    background-color: #e0001a;
    color: white;
    text-decoration: none;
  }
  .menu-block .nav-wrapper .res-close-button:hover {
    text-decoration: none;
    background-color: #7a000e;
  }
  .menu-block .nav-wrapper .res-close-button span {
    font-size: .5em;
    vertical-align: top;
  }
  .menu-block .menu-wrapper {
    width: 100%;
  }
}
@media print {
  .menu-block {
    display: none;
  }
  .resp-header {
    display: none;
  }
}
.top-navigation {
  background-color: #e0001a;
}
.top-navigation .active {
  color: #e0001a;
  background-color: #f9f9f9;
  background-position: 0 100%;
}
.top-navigation ul {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 0;
  padding: 0;
  padding-top: .5em;
  overflow: hidden;
  vertical-align: bottom;
}
.top-navigation ul li {
  display: inline-block;
}
.top-navigation ul li a {
  display: inline-block;
  color: white;
  padding: .5em 1em .8em;
  text-decoration: none;
  background-size: 100% 200%;
  background-image: linear-gradient(to bottom, #e0001a 50%, #f9f9f9 50%);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, background-position 0.2s ease-in-out, background 0.2s ease-in-out;
}
.top-navigation ul li a:hover,
.top-navigation ul li a .active {
  color: #e0001a;
  background-color: #f9f9f9;
  background-position: 0 100%;
}
.top-navigation ul.social {
  position: absolute;
  right: 0;
  top: .5em;
  padding-top: 0;
}
.top-navigation ul.social li a {
  height: 2em;
  width: 2em;
  padding: .4em;
  text-align: center;
  background: #e0001a;
}
.top-navigation ul.social li a:hover {
  color: white;
}
@media all and (max-width: 992px) {
  .top-navigation {
    padding: .7em 1em .5em;
    background-color: #e0001a;
    margin-bottom: 1em;
  }
  .top-navigation ul {
    display: block;
    overflow: visible;
    padding-top: 0;
  }
  .top-navigation ul li {
    display: inline-block;
    width: 49%;
    display: border-box;
    -moz-display: border-box;
    margin-bottom: .4em;
  }
  .top-navigation ul li a {
    display: block;
    background: transparent;
    padding: .5em 1em;
    color: white;
    font-size: .8em;
    border: 1px solid white;
    border-radius: .2em;
    text-align: center;
  }
  .top-navigation ul li a:hover,
  .top-navigation ul li a:active,
  .top-navigation ul li a .active {
    color: white;
    background: #e0001a;
  }
  .top-navigation ul.social {
    position: absolute;
    top: auto;
    right: 0;
    bottom: -4.6em;
    text-align: right;
    z-index: 100;
  }
  .top-navigation ul.social li {
    display: inline-block;
    width: auto;
  }
  .top-navigation ul.social li a {
    font-size: 1.2em;
    background: transparent;
    color: #e0001a;
    border: none;
    color: #40403f;
  }
  .top-navigation ul.social li a:hover,
  .top-navigation ul.social li a:active {
    background-color: #e0001a;
    color: white;
  }
}
.main-navigation {
  background-color: #f9f9f9;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  position: relative;
}
.main-navigation .logo {
  margin: 0;
  position: absolute;
  right: 0;
  top: -.5em;
  width: 114px;
  height: 53px;
  z-index: 99;
}
.main-navigation .searchbtn {
  position: absolute;
  top: .16em;
  right: 135px;
  font-size: 1.2em;
  cursor: pointer;
  color: #40403f;
  transition: color 0.2s ease-in-out;
}
.main-navigation .searchbtn:hover {
  color: #40403f;
}
.main-navigation ul {
  list-style-type: none;
  margin: 2em 0;
  padding: 0;
}
.main-navigation ul li {
  display: inline-block;
  margin-right: 1.5em;
  position: relative;
}
.main-navigation ul li a {
  display: inline-block;
  font-size: 1.2em;
  color: #40403f;
  text-decoration: none;
  position: relative;
}
.main-navigation ul li a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  background-color: #e0001a;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.main-navigation ul li ul.sub-menu {
  position: fixed;
  margin-top: 4px;
  background-color: #e0e0e0;
  white-space: nowrap;
  font-size: .7em;
  opacity: 0;
  transform: translateY(1em);
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  z-index: 999999999999999;
}
.main-navigation ul li ul.sub-menu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid white;
}
.main-navigation ul li ul.sub-menu li:hover {
  background-color: #ccc;
  transition: background-color 0.1s ease-in-out;
}
.main-navigation ul li ul.sub-menu li a {
  transition: color 0.1s ease-in-out;
}
.main-navigation ul li ul.sub-menu li a:after {
  display: none;
}
.main-navigation ul li ul.sub-menu li a:hover {
  color: #e0001a;
}
.main-navigation ul li:hover ul.sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.main-navigation ul li a:active {
  color: #40403f;
}
.main-navigation ul li a:hover:after,
.main-navigation ul li.current-menu-item a:after {
  bottom: -.2em;
  opacity: 1;
}
.main-navigation .menu-view {
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.main-navigation .search-view {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  transform: translateY(100px);
}
.main-navigation .search-view .close {
  width: 1.1em;
  height: 1.1em;
  position: absolute;
  top: 4px;
  right: 135px;
  outline: none;
  opacity: 1;
  color: #40403f;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.main-navigation .search-view input {
  width: calc(100% - 200px);
  background-color: #f9f9f9;
  border: none;
  border-bottom: 1px solid #40403f;
  outline: none;
  transition: border-bottom-color 0.2s ease-in-out;
  font-size: 1.1em;
}
.main-navigation .search-view input:focus {
  border-bottom-color: #e0001a;
}
.main-navigation .search-view button {
  border: none;
  background-color: transparent;
}
.main-navigation .search-view button:hover,
.main-navigation .search-view button:active {
  color: #e0001a;
}
.main-navigation.search .search-view {
  transform: translateY(0);
}
.main-navigation.search .menu-view {
  transform: translateY(-100px);
}
@media (max-width: 1180px) and (min-width: 993px) {
  .main-navigation ul li {
    margin-right: 1.2em;
  }
  .main-navigation ul li a {
    font-size: 1em;
  }
}
@media all and (max-width: 992px) {
  .main-navigation {
    background-color: transparent;
    border-bottom: none;
    margin: 0 1em 1em;
    z-index: 99;
  }
  .main-navigation .logo {
    position: relative;
    top: 0;
  }
  .main-navigation .searchbtn {
    display: none;
  }
  .main-navigation ul {
    margin: 1em 0;
  }
  .main-navigation ul li {
    display: block;
    margin-right: 0;
    padding-bottom: .3em;
  }
  .main-navigation ul li a {
    display: block;
    line-height: 2em;
    text-align: center;
    background: #f1f1f1;
    border-radius: .2em;
  }
  .main-navigation ul li a:after {
    display: none;
  }
  .main-navigation ul li ul.sub-menu {
    position: relative;
    top: 0;
    background-color: transparent;
    padding: 0;
    white-space: normal;
    font-size: 1em;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    margin: 0.3em .5em 0 1.5em;
  }
  .main-navigation ul li ul.sub-menu li {
    margin: 0;
    padding: 0;
  }
  .main-navigation ul li ul.sub-menu li:hover {
    background-color: #f9f9f9;
  }
  .main-navigation ul li ul.sub-menu li a {
    padding-right: 1em;
  }
  .main-navigation ul li ul.sub-menu li:last-child {
    padding-bottom: 0;
  }
  .main-navigation .menu-view {
    height: auto;
  }
  .main-navigation .search-view {
    position: relative;
    top: 0;
    transform: none;
    padding-bottom: 1.5em;
  }
  .main-navigation .search-view .close {
    display: none;
  }
  .main-navigation .search-view input {
    width: calc(100% - 35px);
  }
}
.slide-out {
  background-color: #e0001a;
  height: 150px;
  left: 0;
  position: fixed;
  text-align: center;
  top: 200px;
  transition: left 0.5s;
  width: 50px;
  z-index: 99999;
}
.slide-out:hover {
  left: 350px;
}
.slide-out:hover .slide-out-inner {
  left: 0px;
}
.slide-out:hover .slide-out-angle {
  left: 380px;
  transition: left 0.5s;
}
.slide-out .slide-out-inner {
  background-color: #a50600;
  height: 150px;
  left: -350px;
  position: fixed;
  top: 200px;
  transition: left 0.5s;
  width: 350px;
}
.slide-out .slide-out-inner a {
  color: white;
  display: block;
  font-size: 1.2em;
  padding-top: 0.5em;
  text-decoration: none;
}
.slide-out .slide-out-inner ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.slide-out .slide-out-inner ul li {
  border-bottom: 1px solid #e0001a;
  height: 50px;
}
.slide-out .slide-out-inner ul li:hover {
  background-color: #e0001a;
}
.slide-out-cookie {
  background-color: #e1e1e100;
  height: 62px;
  left: 0;
  position: fixed;
  text-align: center;
  top: 380px;
  transition: 0.5s;
  width: 62px;
  z-index: 99999;
  padding: 3px;
}
.slide-out-cookie:hover {
  left: 220px;
  background-color: #e0001a;
}
.slide-out-cookie:hover .slide-out-cookie-inner {
  left: 0px;
  background-color: #e0001a;
}
.slide-out-cookie:hover .icon-cookie {
  left: 0px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.slide-out-cookie:hover .slide-out-angle {
  left: 20px;
  transition: left 0.5s;
}
.slide-out-cookie .slide-out-cookie-inner {
  background-color: #e0001a00;
  height: 62px;
  left: -220px;
  position: fixed;
  top: 380px;
  transition: 0.5s;
  width: 220px;
}
.slide-out-cookie .slide-out-cookie-inner a {
  color: white;
  display: block;
  font-size: 1.0em;
  padding-top: 1.2em;
  text-decoration: none;
}
.slide-out-cookie .slide-out-cookie-inner ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.slide-out-cookie .slide-out-cookie-inner ul li {
  border-bottom: 1px solid #a5060000;
  height: 5px;
}
.slide-out-cookie .slide-out-cookie-inner ul li:hover {
  background-color: #a5060000;
}
.icon-cookie {
  background-image: url(https://www.spooe.at/wp-content/uploads/cookies.svg);
  display: inline-block;
  width: 55px;
  height: 56px;
  background-size: cover;
  filter: invert(16%) sepia(99%) saturate(5156%) hue-rotate(346deg) brightness(83%) contrast(115%);
}
/* Call for action */
/* Call for action section */
.call-for-action {
  align-items: center;
  background: #e0001a;
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 2em 0 0 0;
  padding: 2em 8em 2em 8em;
}
.call-for-action p {
  align-items: center;
  display: flex;
  font-size: 1.2em;
  font-weight: 300;
  margin: 0;
  padding: 0;
}
.call-for-action p i {
  font-size: 2em;
  margin: 0 .4em 0 0;
}
.call-for-action nav ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}
.call-for-action nav ul li {
  list-style: none;
  margin: 1em 1.5em 1em 1.5em;
}
.call-for-action nav ul li a {
  color: white;
}
.call-for-action nav ul li a i {
  font-size: 2em;
}
.call-for-action .to-top {
  text-align: center;
  width: 100%;
}
.call-for-action .to-top .test {
  align-content: center;
  color: white;
  display: flex;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}
.call-for-action .to-top .test p {
  font-size: 1.4em;
  display: block;
}
.call-for-action .to-top .test i {
  font-size: 1.8em;
  margin: 0 .6em 0 .6em;
}
@media (max-width: 992px) {
  .call-for-action {
    justify-content: center;
  }
  .call-for-action p {
    display: none;
  }
  .call-for-action nav ul li {
    list-style: none;
    margin: 1em;
  }
  .call-for-action nav ul li a {
    color: white;
  }
  .call-for-action nav ul li a i {
    font-size: 2em;
  }
  .call-for-action .to-top .test p {
    font-size: 1em;
    min-width: 60vw;
  }
  .call-for-action .to-top .test i {
    font-size: 1.4em;
  }
}
@media print {
  .call-for-action {
    display: none;
  }
}
/* Footer */
.footer {
  background: #40403f;
  color: #40403f;
  display: flex;
  justify-content: space-around;
  padding: 2em 3em 2em 3em;
  -webkit-box-shadow: inset 0px 6px 20px -5px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: inset 0px 6px 20px -5px rgba(0, 0, 0, 0.45);
  box-shadow: inset 0px 6px 20px -5px rgba(0, 0, 0, 0.45);
}
.footer .box {
  color: white;
  font-size: .9em;
}
.footer .box h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #f9f9f9;
}
.footer .box ul {
  margin: 0;
  padding: 0;
}
.footer .box ul li {
  list-style: none;
}
.footer .box a {
  color: white;
}
@media print {
  .call-for-action {
    display: none;
  }
}
/*
 * Section headers
 *
 * This is the main file implementing the design of section headers.
 * It defines the heading of news and contact sections on the frontpage.
 *
 */
.section-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 2em 0 2em 0;
}
.section-header h3 {
  text-transform: uppercase;
  font-size: 1.8em;
  font-weight: 900;
}
.section-header p {
  border-bottom: 3px solid #e30613;
  font-size: 1.2em;
  padding: 0 0 .6em 0;
  opacity: .7;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-header {
    margin: 0 0 1em 0;
  }
  .section-header h3 {
    font-size: 1.2em;
  }
  .section-header p {
    border-bottom: 2px solid #e30613;
    font-size: .8em;
  }
}
.wpcf7-form {
  margin: 0 auto;
  max-width: 900px;
  padding: 2em;
  padding-top: 0;
  text-align: center;
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form input {
  background-color: #f9f9f9;
  border: 1px solid #e7e7e7;
  border-radius: 0;
  color: #000;
  font-size: 1.2em;
  margin: .4em;
  padding: .4em;
  width: 46%;
  -webkit-appearance: none;
}
.wpcf7-form input:focus {
  border-color: #aaa;
  outline: none;
}
.wpcf7-form textarea {
  background-color: #f9f9f9;
  border: 1px solid #e7e7e7;
  border-radius: 0;
  color: #000;
  font-size: 1.2em;
  height: 250px;
  margin: .4em 0 .4em 0;
  padding: .4em;
  width: 95%;
  -webkit-appearance: none;
}
.wpcf7-form textarea:focus {
  border-color: #aaa;
  outline: none;
}
.wpcf7-form input[type="checkbox"] {
  border: 3px solid #e7e7e7;
  border-radius: 100%;
  height: 13px;
  width: 13px;
  -webkit-appearance: checkbox;
}
.wpcf7-form input[type="submit"] {
  background-color: #e0001a;
  color: white;
  height: 2.2em;
  padding: 0 1em 0 1em;
  text-decoration: none;
}
.wpcf7-form input[type="submit"]:active {
  opacity: .8;
}
.wpcf7-form input[type="submit"]:hover {
  background-color: #a50600;
  color: white;
  text-decoration: none;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
}
.wpcf7-form input[type="submit"]:visited {
  color: white;
  text-decoration: none;
}
.wpcf7-form select {
  background-color: #f9f9f9;
  border: 1px solid #e7e7e7;
  border-radius: 0;
  color: #000;
  font-size: 1.2em;
  height: 2em;
  margin: .4em;
  width: 46%;
}
.wpcf7-form select:focus {
  border-color: #aaa;
  outline: none;
}
@media (max-width: 992px) {
  .wpcf7-form {
    max-width: 600px !important;
  }
  .wpcf7-form input {
    margin: .4em 0 .4em 0 !important;
    width: 100% !important;
  }
  .wpcf7-form textarea {
    width: 100% !important;
  }
}
table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 20px;
}
table tr:first-child {
  background-color: #f9f9f9;
}
table tr td {
  border: 2px solid #e7e7e7;
  padding: 10px;
}
.button {
  align-items: center;
  background-color: #e0001a;
  color: white;
  display: flex;
  height: 2.2em;
  justify-content: center;
  min-width: 160px;
  padding: 0 1em 0 1em;
  text-decoration: none;
}
.button:active {
  opacity: .8;
}
.button:hover {
  background-color: #a50600;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.button:visited {
  color: white;
  text-decoration: none;
}
.read_more_btn {
  margin: 0 auto;
  padding: .3em 1em;
  border: 2px solid #e0001a;
  color: white !important;
  text-decoration: none !important;
  background-color: #e0001a;
}
.read_more_btn:hover {
  background-color: white;
  color: #e0001a !important;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.read_more_btn i {
  margin-right: 5px;
}
.tour {
  font-size: 1.3em;
}
.top_button {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0.7em;
  bottom: 0.5em;
  font-size: 36px;
  background-color: #f9f9f9;
  color: #40403f;
  text-align: center;
}
.gallery-item {
  display: inline-block;
  margin: 5px;
  padding: 5px;
  border: 2px solid #ccc;
  text-align: center;
  overflow: hidden;
}
.gallery-item:hover .gallery-icon img {
  -webkit-transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -moz-transform: scale(1.1);
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transform: scale(1.1);
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  transform: scale(1.1);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.gallery-caption {
  display: none;
}
/* Files for frontpage */
.jumper {
  color: white;
  bottom: 3vh;
  font-size: 1.6em;
  position: absolute;
  animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  width: 100%;
  text-align: center;
  z-index: 9;
}
.jumper:hover {
  color: white;
}
.center {
  margin: 0 !important;
}
.slider .slick-list {
  margin: 0 !important;
  height: calc(100vh - 156px) !important;
  overflow: hidden;
  padding: 0 !important;
  width: 100%;
}
.slider .slick-list .slick-slide {
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: white;
}
.slider .slick-list .slick-slide .full-width-link {
  background: none !important;
  height: 100vh !important;
  position: absolute;
  width: 100vw !important;
  z-index: 9999999999999999999;
}
.slider .slick-list .slick-slide .slick-slide-content {
  position: absolute;
  bottom: 3.5em;
  bottom: 30vh;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 9999999;
}
.slider .slick-list .slick-slide .slick-slide-content b {
  font-size: 2em;
  display: inline-block;
  background-color: white;
  color: #40403f;
  line-height: 1.8em;
  padding: 0 .6em;
  text-tranform: uppercase;
  margin-bottom: .3em;
  max-width: 90%;
}
.slider .slick-list .slick-slide .slick-slide-content p {
  font-size: 1.2em;
  display: inline-block;
  background-color: #e0001a;
  color: white;
  line-height: 1.8em;
  padding: 0 .6em;
  max-width: 90%;
}
@media (max-width: 768px) {
  .slider .slick-list {
    height: 35vh !important;
    width: 100%;
  }
  .slider .slick-list .slick-slide {
    width: 100%;
    height: auto;
    min-height: 58vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    overflow: hidden;
  }
  .slider .slick-list .jumper {
    display: none;
  }
}
.slider .slick-prev,
.slider .slick-next {
  background: transparent;
  border: none;
  color: transparent;
  font-family: FontAwesome;
  font-size: 1.8em;
  outline: none;
  position: absolute;
  top: 40%;
  z-index: 9;
}
.slider .slick-prev {
  left: 1em;
}
.slider .slick-prev:before {
  content: '\f104';
}
.slider .slick-next {
  right: 1em;
}
.slider .slick-next:after {
  content: '\f105';
}
.slider .slick-prev:before,
.slider .slick-next:after {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  padding: .2em .5em .2em .5em;
}
.slider .slick-dots {
  bottom: .4em;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.slider .slick-dots:hover {
  cursor: pointer;
}
.slider .slick-dots li {
  border: 2px solid rgba(0, 0, 0, 0.6);
  display: inline-block;
  margin: 0 .5em 0 .5em;
  width: 1em;
  height: 1em;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.8);
}
.slider .slick-dots li button {
  background: transparent;
  border: none;
  color: transparent;
  font-size: 1.8em;
  height: 0;
  margin: 0;
  outline: none;
  padding: 0;
  width: 0;
}
.slider .slick-dots .slick-active {
  width: 1em;
  height: 1em;
  background: white;
  border: 2px solid white;
  transition: border 0.1s ease-in;
}
.news-slider {
  margin: 0 0 1em 0;
}
.news-slider .slick-list {
  margin: 0 0 1em 0 !important;
  padding: 0 4em 0 4em !important;
  width: 100%;
}
.news-slider .slick-list .slick-slide.slick-active article {
  opacity: 1;
}
.news-slider .slick-list .slick-slide article {
  opacity: .3;
  border-top: 2px solid #e7e7e7;
  border-left: 2px solid #e7e7e7;
  border-right: 2px solid #e7e7e7;
  border-bottom: 5px solid #e0001a;
  display: flex;
  flex: 1;
  flex-direction: row;
  margin: 0 1em 0 1em;
  padding: 1em;
}
.news-slider .slick-list .slick-slide article img {
  width: 30vw;
  height: auto;
}
.news-slider .slick-list .slick-slide article img:active {
  opacity: .8;
}
.news-slider .slick-list .slick-slide article .news-slider-content {
  padding: 0 0 0 1em;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.news-slider .slick-list .slick-slide article .news-slider-content .label {
  background: #e0001a;
  margin: 0 0 1em 0;
  padding: .4em;
  top: 0;
}
.news-slider .slick-list .slick-slide article .news-slider-content .label a {
  color: white;
  font-weight: 100;
  text-align: right;
}
.news-slider .slick-list .slick-slide article .news-slider-content header {
  padding: 0 .6em 0 .6em;
}
.news-slider .slick-list .slick-slide article .news-slider-content header h1 {
  font-size: 1.4em;
  font-weight: 900;
  margin: 0;
  padding: 0;
}
.news-slider .slick-list .slick-slide article .news-slider-content p {
  padding: .6em;
}
.news-slider .slick-list .slick-slide article .news-slider-content .button {
  margin: 0 .6em 0 .6em;
  min-width: 250px;
}
.news-slider .slick-list .slick-slide article .news-slider-content footer {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 1em;
  margin-top: auto;
}
.news-slider .slick-list .slick-slide article .news-slider-content footer .date {
  font-size: .9em;
}
.news-slider .slick-prev,
.news-slider .slick-next {
  background: transparent;
  border: none;
  color: transparent;
  font-family: FontAwesome;
  font-size: 1.8em;
  outline: none;
  position: absolute;
  top: 40%;
  z-index: 9;
}
.news-slider .slick-prev {
  left: 1em;
}
.news-slider .slick-prev:before {
  content: '\f104';
}
.news-slider .slick-next {
  right: 1em;
}
.news-slider .slick-next:after {
  content: '\f105';
}
.news-slider .slick-prev:before,
.news-slider .slick-next:after {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  padding: .2em .5em .2em .5em;
}
.news-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.news-slider .slick-dots:hover {
  cursor: pointer;
}
.news-slider .slick-dots li {
  border: 2px solid #e0001a;
  border-radius: 50%;
  display: inline-block;
  height: 1em;
  margin: 0 .5em 0 .5em;
  width: 1em;
}
.news-slider .slick-dots li button {
  background: transparent;
  border: none;
  color: transparent;
  font-size: 1.8em;
  height: 0;
  margin: 0;
  outline: none;
  padding: 0;
  width: 0;
}
.news-slider .slick-dots .slick-active {
  width: 1.1em;
  height: 1.1em;
  background: #e0001a;
  border: none;
  transition: border 0.1s ease-in;
}
@media (max-width: 1000px) {
  .news-slider .slick-list {
    margin: 0 !important;
    padding: 0 !important;
  }
  .news-slider .slick-list .slick-slide article {
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 0 1em 0 1em;
    padding: .4em;
  }
  .news-slider .slick-list .slick-slide article img {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 5px;
  }
  .news-slider .slick-list .slick-slide article .news-slider-content {
    margin: .5em 0 0 0;
    padding: 0;
  }
  .news-slider .slick-list .slick-slide article .news-slider-content .label {
    margin-left: .5em;
    margin-right: .5em;
  }
  .news-slider .slick-list .slick-slide article .news-slider-content .button {
    margin: 0;
    min-width: 100%;
  }
  .news-slider .slick-list .slick-slide article .news-slider-content footer {
    align-items: center;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    margin-top: auto;
    margin: .5em;
  }
  .news-slider .slick-list .slick-slide article .news-slider-content footer .date {
    display: none;
  }
  .news-slider .slick-prev,
  .news-slider .slick-next {
    top: 20vh;
  }
  .news-slider .slick-prev {
    left: .4em;
  }
  .news-slider .slick-next {
    right: .4em;
  }
}
/* Boxes on frontpage */
.boxes {
  background: #f9f9f9;
  display: flex;
  justify-content: space-around;
  margin: 2em 0 2em 0;
  padding: 2em 3em 2em 3em;
}
.boxes .box {
  align-items: center;
  background-color: white;
  border: 2px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  margin: 1em;
  max-width: 375px;
  padding: 1em;
  width: 100%;
}
.boxes .box .box-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.boxes .box .box-content h3 {
  font-weight: 600;
}
.boxes .box .box-content p {
  text-align: left;
}
.boxes .box .button {
  margin-top: auto;
  width: 100%;
}
.boxes .box-line-break {
  width: 100%;
}
.info-boxes {
  background: #f9f9f9;
  display: flex;
  justify-content: space-around;
  margin: 0em 0 0em 0;
  padding: 2em 3em 2em 3em;
  flex-direction: row;
  flex-wrap: wrap;
}
.info-boxes .info-box {
  align-items: center;
  background-color: white;
  border: 2px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  margin: 1em;
  max-width: 375px;
  padding: 1em;
  width: 100%;
  flex: 1 0 20%;
}
.info-boxes .info-box .info-box-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.info-boxes .info-box .info-box-content h3 {
  font-weight: 600;
}
.info-boxes .info-box .info-box-content p {
  text-align: left;
}
.info-boxes .info-box .button {
  margin-top: auto;
  width: 100%;
}
.info-boxes .info-box:first-child {
  flex: 0 1 100%;
}
.info-boxes .info-box-line-break {
  width: 100%;
}
@media (max-width: 768px) {
  .boxes {
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 1em 1em 1em 1em;
  }
  .boxes .box {
    min-width: 275px;
    max-width: 100%;
  }
  .info-boxes {
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 1em 1em 1em 1em;
  }
  .info-boxes .info-box {
    min-width: 275px;
    max-width: 100%;
  }
}
@media (max-width: 992px) and (min-width: 768px) {
  .boxes {
    flex-flow: row wrap;
  }
  .boxes .box {
    flex-basis: 40%;
    max-width: 100%;
  }
  .info-boxes {
    flex-flow: row wrap;
  }
  .info-boxes .info-box {
    flex-basis: 40%;
    max-width: 100%;
  }
}
/* Files for posts & pages */
.full-width-intro {
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: white;
  display: flex;
  flex-direction: column-reverse;
  height: calc(100vh - 156px) !important;
  justify-content: flex-start;
  margin: 0;
  padding: 0 0 10vh 0;
  text-align: center;
  -webkit-box-shadow: inset 0px -110px 200px -60px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 0px -110px 200px -60px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px -110px 200px -60px rgba(0, 0, 0, 0.75);
}
.full-width-intro h1 {
  background-color: #e0001a;
  color: white;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
  max-width: 90%;
  padding: .2em .6em .2em .6em;
}
.full-width-intro p {
  background: white;
  padding: .2em .6em .2em .6em;
}
.full-width-intro p i {
  margin-right: .3em;
}
.full-width-intro .jumper {
  color: white;
  bottom: 3vh;
  font-size: 1.6em;
  position: absolute;
  animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@media (max-width: 768px) {
  .full-width-intro {
    display: block;
    background-size: contain;
    height: auto !important;
    min-height: 56.2vw;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .full-width-intro h1 {
    display: none;
  }
  .full-width-intro p {
    display: none;
  }
  .full-width-intro .jumper {
    display: none;
  }
}
.full.post-content {
  max-width: none;
  overflow-x: hidden;
}
.post-content {
  margin: 0 auto;
  margin-bottom: 2em;
  max-width: 1000px;
}
.post-content header h1 {
  font-size: 1.6em;
  font-weight: 700;
}
.post-content .factbox {
  border-top: 2px solid #e7e7e7;
  border-left: 2px solid #e7e7e7;
  border-right: 2px solid #e7e7e7;
  border-bottom: 5px solid #e0001a;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 1em 0 1em 0;
  padding: 1em;
  position: relative;
}
.post-content .factbox::after {
  background: #e0001a;
  border-radius: .25em;
  bottom: .5em;
  color: white;
  content: 'Fakten im Überblick';
  font-size: .8em;
  font-weight: 100;
  padding: .4em .6em .4em .6em;
  position: absolute;
  right: .5em;
}
.post-content .factbox h1,
.post-content .factbox h2,
.post-content .factbox h3,
.post-content .factbox h4,
.post-content .factbox h5 {
  margin-top: 0;
}
.post-content .factbox ul {
  padding-left: 1.5em;
}
.post-content .audio,
.post-content .images,
.post-content .video {
  border: 2px solid #e7e7e7;
  margin: 2em 0 2em 0;
  padding: 1em;
}
.post-content .audio .meta,
.post-content .images .meta,
.post-content .video .meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 .25em 0 .25em;
}
.post-content .audio .meta p,
.post-content .images .meta p,
.post-content .video .meta p {
  margin: 0;
  padding: 0;
}
.post-content .audio .meta .meta-label,
.post-content .images .meta .meta-label,
.post-content .video .meta .meta-label {
  font-size: 1.25em;
  font-weight: bold;
}
.post-content .audio .meta .meta-copyright,
.post-content .images .meta .meta-copyright,
.post-content .video .meta .meta-copyright {
  font-size: .75em;
  font-style: italic;
}
.post-content .audio figcaption {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: .5em;
}
.post-content .audio audio {
  width: 100%;
}
.post-content .images .blocks-gallery-item {
  margin-bottom: 0;
  padding-bottom: 0;
}
.post-content .pdfs .pdf-list {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0;
}
.post-content .pdfs .pdf-list a {
  margin: 0 1em 0 1em;
}
.post-content .pdfs .pdf-list .pdf-item {
  align-items: center;
  border: 2px solid #e0001a;
  border-radius: .25em;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: .35em 1em .35em 1em;
  text-align: center;
  width: 100%;
}
.post-content .pdfs .pdf-list .pdf-item:first-child {
  margin-left: 0;
}
.post-content .pdfs .pdf-list .pdf-item:last-child {
  margin-right: 0;
}
.post-content .pdfs .pdf-list .pdf-item p {
  margin: 0 0 0 .75em;
}
.post-content blockquote {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  width: 100%;
  margin: 1em 0 1em 0;
  padding: 0.25em 40px;
  line-height: 1.45;
  position: relative;
  color: #383838;
  background: #ececec;
}
.post-content blockquote:before {
  display: block;
  content: "\201C";
  font-size: 80px;
  position: absolute;
  left: -5px;
  top: -10px;
  color: #7a7a7a;
}
.post-content blockquote cite {
  color: #999999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.post-content blockquote cite::before {
  content: "\2014 \2009";
}
.post-content h2 {
  margin-top: 30px;
  font-size: 1.6em;
  font-weight: 900;
}
.post-content ul li,
.post-content ol li {
  padding-bottom: 0px;
}
.post-content .issuuembed.issuu-isrendered {
  width: 100% !important;
  height: auto !important;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}
.post-content .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.post-content img.alignright {
  float: right !important;
  margin: 0 0 1em 1em;
}
.post-content img.alignleft {
  float: left !important;
  margin: 0 1em 1em 0;
}
.post-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post-content .alignright {
  float: right !important;
}
.post-content .alignleft {
  float: left !important;
}
.post-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.post-content embed,
.post-content data-url,
.post-content iframe,
.post-content object {
  width: 100%;
  min-height: 400px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .post-content {
    padding: 0 1em 0 1em;
  }
  .post-content header h1 {
    font-size: 1.2em;
  }
  .post-content .factbox {
    padding-bottom: 1.5em;
  }
  .post-content .factbox::after {
    left: .5em;
    text-align: center;
  }
  .post-content .factbox ul {
    padding-left: 1em;
  }
  .post-content .pdfs .pdf-list {
    flex-direction: column;
  }
  .post-content .pdfs .pdf-list a {
    margin: 1em;
  }
  .post-content blockquote {
    font-size: 1em;
  }
}
.social-buttons {
  align-items: center;
  background-color: #f9f9f9;
  border-bottom: 2px solid #878787;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1020px;
  padding: .5em;
}
.social-buttons .social-button {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 1em;
  padding: .4em .8em .4em .8em;
  text-decoration: none;
}
.social-buttons .social-button:active {
  opacity: .8;
}
.social-buttons .social-button i {
  margin-right: .5em;
}
.social-buttons .social-button p {
  margin: 0;
  padding: 0;
}
.social-buttons .facebook {
  background-color: #3b5998;
}
.social-buttons .twitter {
  background-color: #000000;
}
.social-buttons .google {
  background-color: #dd4b39;
}
.social-buttons .whatsapp {
  background-color: #25D366;
}
.social-buttons .telegram {
  background-color: #0088CC;
}
.social-buttons .mail {
  background-color: #878787;
}
@media (max-width: 768px) {
  .social-buttons {
    display: block;
  }
}
@media print {
  .social-buttons {
    display: none;
  }
}
.newsletter-widget {
  background: #ccc;
  margin: 0 auto;
  max-width: 1020px;
  padding: 1em 0 1.5em 0;
  text-align: center;
}
.newsletter-widget h2,
.newsletter-widget h3 {
  margin: 0;
  padding: 0;
}
.newsletter-widget h2 {
  font-weight: 700;
  margin-bottom: .2em;
}
.newsletter-widget h3 {
  font-size: 1.3em;
  margin: 0 0 .8em 0;
  opacity: .7;
}
.newsletter-widget .button {
  margin: 0 auto;
  max-width: 280px;
}
@media (max-width: 768px) {
  .newsletter-widget h2 {
    font-size: 1.2em;
  }
  .newsletter-widget h3 {
    font-size: 1em;
  }
  .newsletter-widget .button {
    max-width: 260px;
  }
}
.map-ooe {
  box-sizing: border-box;
  text-align: center;
}
.map-ooe object {
  width: 100%;
  max-width: 500px;
  height: auto;
}
/* Files for news lists */
.category .news-list {
  display: flex;
  flex-wrap: wrap;
}
.category .news-list article {
  display: flex;
  flex-direction: column;
  flex: 1 0 25%;
}
@media (max-width: 1000px) {
  .category .news-list article {
    -webkit-flex: 1 1 auto;
  }
}
.news-list {
  justify-content: space-around;
  display: flex;
  flex-direction: row;
  margin: 0 3em 0 3em;
}
.news-list article {
  border-top: 2px solid #e7e7e7;
  border-left: 2px solid #e7e7e7;
  border-right: 2px solid #e7e7e7;
  border-bottom: 5px solid #e0001a;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 1em;
  padding: .4em;
  width: 100%;
}
.news-list article .image {
  height: 25vh;
  overflow: hidden;
}
.news-list article .image:active {
  opacity: .8;
}
.news-list article img {
  width: 100%;
  height: auto;
  padding: .3em;
}
.news-list article header {
  padding: 0 .6em 0 .6em;
}
.news-list article header h3 {
  font-size: 1.4em;
  font-weight: 900;
  margin: .5em 0 0 0;
}
.news-list article .content {
  padding: .6em;
}
.news-list article .button {
  margin: 0 .6em 0 .6em;
  margin-top: auto;
}
.news-list article footer {
  align-items: center;
  border-top: 2px solid #e7e7e7;
  display: flex;
  justify-content: center;
  margin: 1em -0.4em -0.4em -0.4em;
  padding: .5em;
}
.news-list article footer i {
  margin: 0 .6em 0 0;
}
@media (max-width: 1500px) {
  .news-list article .image {
    height: 22.5vh;
  }
}
@media (max-width: 1250px) {
  .news-list article .image {
    height: 20vh;
  }
}
@media (max-width: 1150px) {
  .news-list article .image {
    height: 17.5vh;
  }
}
@media (max-width: 1000px) {
  .news-list {
    display: flex;
    flex-direction: column;
    margin: 1em;
  }
  .news-list .image {
    height: auto !important;
  }
  .news-list article {
    margin: 1em 0 1em 0;
  }
}
.pagination {
  align-items: center;
  background: #f9f9f9;
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 2em;
  margin: 1em 0 -2em 0;
}
.pagination .button {
  width: 280px;
}
.pagination a {
  color: white;
  text-decoration: none;
}
.pagination ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.pagination ul li {
  list-style-type: none;
  margin: 1em;
}
@media (max-width: 768px) {
  .pagination ul {
    flex-direction: column;
  }
}
/* Files for pages */
.team {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.team .team-member {
  align-items: center;
  background: #f9f9f9;
  border-bottom: 3px solid #e0001a;
  display: flex;
  flex: 0 1 25%;
  flex-direction: row;
  margin: 1em;
  padding: 1em 1.5em 1em 1.5em;
  justify-content: center;
}
.team .team-member .member-image img {
  border-radius: 50%;
  border: 6px solid white;
  height: 180px;
  margin-right: .5em;
  width: 180px;
  -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.25);
  max-width: none;
}
.team .team-member .member-information {
  padding: 0 0 0 1em;
}
.team .team-member .member-information h4 {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}
.team .team-member .member-information p {
  font-size: .8em;
  margin: 0;
  padding: .15em 0 .15em 0;
}
.team .team-member .member-information p i {
  margin: 0 .2em 0 0;
}
.team .team-member .member-information .title {
  font-weight: bold;
  font-style: italic;
}
.team .team-member .member-information .contact-data {
  margin: .5em 0 .5em 0;
}
.team .team-member .member-information .contact-data .contact-item {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.team .team-member .member-information .social-media-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.team .team-member .member-information .social-media-links a {
  align-items: center;
  background: #e0001a;
  color: white;
  display: flex;
  height: 2em;
  justify-content: center;
  margin: .5em;
  text-decoration: none;
  width: 2em;
}
.team .team-member .member-information .social-media-links a:active {
  opacity: .8;
}
.team .team-member .member-information .social-media-links a:hover {
  background-color: #a50600;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
@media (max-width: 768px) {
  .team {
    flex-direction: column;
  }
  .team .team-member {
    text-align: center;
    flex-direction: column;
  }
  .team .team-member .member-information {
    padding: 0;
  }
  .team .team-member .member-information h3 {
    margin-top: .8em;
  }
}
@media (max-width: 1000px) {
  .team .team-member {
    -webkit-flex: 1 1 auto;
  }
}
.error404 .full-width-intro {
  flex-direction: column;
  height: 100vh;
  padding: 25vh 0 0 0;
}
.error404 .full-width-intro #searchform {
  display: flex;
  flex-direction: row;
  margin: 2em;
}
.error404 .full-width-intro #searchform input {
  background-color: #f9f9f9;
  border: 1px solid #e7e7e7;
  border-radius: 0;
  color: #000;
  font-size: 1.2em;
  margin: 0;
  padding: .4em;
  -webkit-appearance: none;
}
.error404 .full-width-intro #searchform input:focus {
  border-color: #aaa;
  outline: none;
}
.error404 .full-width-intro #searchform button {
  border: none;
  height: auto;
}
.error404 .call-for-action {
  margin: 0;
}
@media (max-width: 768px) {
  .error404 .full-width-intro {
    display: block;
    background-size: cover;
    height: 65vh !important;
    padding: 10vh 0 0 0;
  }
  .error404 .full-width-intro h1 {
    background: none;
    display: block;
    font-size: 1.3em;
    margin: 0 auto;
  }
  .error404 .full-width-intro #searchform {
    flex-direction: column;
    margin: 2em;
  }
  .error404 .full-width-intro #searchform input {
    max-width: 100%;
    width: 100%;
  }
  .error404 .full-width-intro #searchform button {
    height: 2.2em;
  }
  .error404 .call-for-action {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .search-no-results .full-width-intro {
    padding: 10vh 0 0 0;
  }
  .search-no-results .full-width-intro h1 {
    background: none;
    display: block;
    font-size: 1.3em;
    margin: 0 auto;
  }
}
.page-template-page-medien .full-width-intro {
  flex-direction: column;
  padding: 25vh 0 0 0;
}
.page-template-page-medien .full-width-intro h1 {
  margin: 0 0 .6em 0;
}
.page-template-page-medien .full-width-intro .icon-boxes {
  align-items: center;
  display: flex;
  justify-content: center;
}
.page-template-page-medien .full-width-intro .icon-boxes .icon-box {
  background: white;
  border: 2px solid #e7e7e7;
  margin: .6em;
  width: 180px;
}
.page-template-page-medien .full-width-intro .icon-boxes .icon-box:hover {
  background: #e7e7e7;
  -webkit-transition: all 0.125s ease-in;
  -moz-transition: all 0.125s ease-in;
  -o-transition: all 0.125s ease-in;
  transition: all 0.125s ease-in;
}
.page-template-page-medien .full-width-intro .icon-boxes .icon-box a {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  padding: 1em;
}
.page-template-page-medien .full-width-intro .icon-boxes .icon-box a:hover i {
  background-color: #e0001a;
  color: #f9f9f9;
  -webkit-transition: all 0.125s ease-in;
  -moz-transition: all 0.125s ease-in;
  -o-transition: all 0.125s ease-in;
  transition: all 0.125s ease-in;
}
.page-template-page-medien .full-width-intro .icon-boxes .icon-box a i {
  align-items: center;
  background: white;
  border: 2px solid #e0001a;
  border-radius: 50%;
  display: flex;
  font-size: 2em;
  height: 80px;
  justify-content: center;
  width: 80px;
}
.page-template-page-medien .full-width-intro .icon-boxes .icon-box a h3 {
  margin: .6em 0 0 0;
  padding: 0;
}
.page-template-page-medien .subnav {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.page-template-page-medien .subnav .subnav-item {
  margin: 1em .6em 1em .6em;
}
.page-template-page-medien .media-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-template-page-medien .media-section .section-header {
  margin: 2em 0 0 0;
}
@media (max-width: 768px) {
  .page-template-page-medien .media-section .section-header {
    margin: 2em 0 -1em 0;
  }
}
.contact .contact-data {
  display: flex;
  margin: 1em 0 1em 0;
}
.contact .contact-data a {
  align-items: center;
  color: #40403f;
  display: flex;
  flex: 1;
  font-size: 1.4em;
  justify-content: center;
  padding: .4em;
  text-decoration: none;
}
.contact .contact-data a:active {
  opacity: .8;
}
.contact .contact-data a p {
  margin: 0;
  padding: 0;
}
.contact .contact-data a i {
  margin-right: .5em;
}
.contact .contact-data .facebook {
  background: #3b5998;
  color: white;
}
.contact .contact-data .twitter {
  background: #0084b4;
  color: white;
}
.contact .form {
  margin-top: 3em !important;
}
@media (max-width: 768px) and (min-width: 460px) {
  .contact .contact-data a {
    font-size: 1em;
  }
}
@media (max-width: 459px) {
  .contact .contact-data a {
    font-size: .7em;
  }
}
#tribe-events-pg-template {
  max-width: 100%;
}
#tribe-events-pg-template #tribe-events-bar {
  background-color: #f5f5f5;
}
#tribe-events-pg-template #tribe-events-bar form {
  max-width: 1000px;
  margin: 0 auto;
}
#tribe-events-pg-template #tribe-events-footer {
  max-width: 1000px;
  margin: 0 auto;
}
#tribe-events-pg-template #tribe-events-content {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.actions .action-item {
  margin: 0 auto;
  margin-top: 3em;
  margin-bottom: 3em;
  text-align: center;
}
.actions .action-item .action-icon {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: -25px;
  color: #e0001a;
  background-color: #e0001a;
  border-radius: 100%;
}
.actions .action-item .action-title {
  position: absolute;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: .4em;
  left: 0;
  right: 0;
  background-color: #e0001a;
  color: white;
}
.actions .action-item .action-link {
  background: #40403f;
  color: white;
  min-width: 180px;
  padding: .6em;
  width: 30%;
}
.actions .action-item .social-links {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: center;
  margin: 3.2em 0 0 0;
}
.actions .action-item .social-links a {
  text-decoration: none;
}
.actions .action-item .social-links .facebook,
.actions .action-item .social-links .twitter {
  align-items: center;
  color: white;
  display: flex;
  justify-content: center;
  min-width: 180px;
  padding: .6em;
  width: 15%;
}
.actions .action-item .social-links .facebook i,
.actions .action-item .social-links .twitter i {
  color: white;
  margin-right: .4em;
}
.actions .action-item .social-links .facebook p,
.actions .action-item .social-links .twitter p {
  margin: 0;
  padding: 0;
}
.actions .action-item .social-links .facebook {
  background: #3b5998;
}
.actions .action-item .social-links .twitter {
  background: #0084b4;
}
@media (max-width: 768px) {
  .actions .action-title {
    font-size: 1.2em;
  }
  .actions .action-item .action-link {
    width: 90%;
  }
  .actions .action-item .social-links {
    flex-direction: column;
    margin: 3.5em 0 0 0;
  }
  .actions .action-item .social-links .facebook,
  .actions .action-item .social-links .twitter {
    width: 90%;
  }
}
.page-template-page-person-vorstellung .post-content {
  margin: 0;
}
.page-template-page-person-vorstellung .one-pager {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100%;
  min-height: 98vh;
  overflow: hidden;
  -webkit-box-shadow: inset 0px 42px 140px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 0px 42px 140px -16px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px 42px 140px -16px rgba(0, 0, 0, 0.75);
}
.page-template-page-person-vorstellung .one-pager .one-pager-content {
  width: 450px;
  min-height: 250px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  text-align: center;
  background-color: #fff;
}
.page-template-page-person-vorstellung .one-pager .one-pager-content p {
  text-align: left;
  padding-bottom: 10px;
}
.page-template-page-person-vorstellung .one-pager .one-pager-content h2 {
  text-align: center;
  font-size: 30px;
  color: #000;
  font-weight: 900 !important;
}
.page-template-page-person-vorstellung .oben {
  margin-top: 5%;
}
.page-template-page-person-vorstellung .hmitte {
  margin-top: 15%;
}
.page-template-page-person-vorstellung .unten {
  margin-top: 35%;
}
.page-template-page-person-vorstellung .links {
  float: left;
  margin-left: 3%;
}
.page-template-page-person-vorstellung .rechts {
  float: right;
  margin-right: 3%;
}
.page-template-page-person-vorstellung .mitte {
  float: left;
}
.page-template-page-person-vorstellung .one-pager-last {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 3em;
  margin-top: 3em;
  max-width: 800px;
}
.page-template-page-person-vorstellung .one-pager-last h2 {
  font-size: 1.6em;
  font-weight: 900;
}
@media (max-width: 768px) {
  .page-template-page-person-vorstellung .full-width-intro {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0 0 2em 0;
  }
  .page-template-page-person-vorstellung .full-width-intro h1 {
    display: block;
    font-size: 1.6em;
  }
  .page-template-page-person-vorstellung .one-pager {
    width: 100%;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    background-color: #f9f9f9;
    overflow: hidden;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .page-template-page-person-vorstellung .one-pager .one-pager-content {
    width: 90%;
    min-height: 100px;
    margin: 0 auto;
    margin-top: 280px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    text-align: center;
    background-color: #fff;
  }
  .page-template-page-person-vorstellung .one-pager .one-pager-content p {
    text-align: left;
    padding-bottom: 10px;
  }
  .page-template-page-person-vorstellung .one-pager .one-pager-content h2 {
    padding-top: 15px;
  }
  .page-template-page-person-vorstellung .oben {
    margin-top: 0;
  }
  .page-template-page-person-vorstellung .hmitte {
    margin-top: 0;
  }
  .page-template-page-person-vorstellung .unten {
    margin-top: 0;
  }
  .page-template-page-person-vorstellung .links {
    float: none;
    margin-left: 0;
  }
  .page-template-page-person-vorstellung .rechts {
    float: none;
    margin-right: 0;
  }
  .page-template-page-person-vorstellung .mitte {
    float: none;
  }
}
/* Styles for custom pages */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-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;
}
.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;
}
.page-template-lpt2016 {
  font-size: 15px;
  font-weight: 400;
}
.page-template-lpt2016 .scroll_down_button {
  display: none !important;
}
.page-template-lpt2016 ::selection {
  background: #e0001a;
  color: white;
}
.page-template-lpt2016 p,
.page-template-lpt2016 ul {
  font-size: 15px;
  font-weight: 400;
}
.page-template-lpt2016 p {
  padding-bottom: 12px;
  display: block;
}
.page-template-lpt2016 h1 {
  font-size: 34px;
}
.page-template-lpt2016 h2 {
  font-size: 24px;
}
.page-template-lpt2016 h3 {
  font-size: 18px;
}
.page-template-lpt2016 h4 {
  font-size: 18px;
}
.page-template-lpt2016 h1,
.page-template-lpt2016 h2,
.page-template-lpt2016 h3,
.page-template-lpt2016 h4,
.page-template-lpt2016 h5 {
  font-weight: 800;
  line-height: 1.5;
  display: block;
  color: #40403f;
}
.page-template-lpt2016 h1 span,
.page-template-lpt2016 h2 span,
.page-template-lpt2016 h3 span,
.page-template-lpt2016 h4 span,
.page-template-lpt2016 h5 span,
.page-template-lpt2016 h1 small,
.page-template-lpt2016 h2 small,
.page-template-lpt2016 h3 small,
.page-template-lpt2016 h4 small,
.page-template-lpt2016 h5 small {
  display: block;
}
.page-template-lpt2016 img,
.page-template-lpt2016 svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-template-lpt2016 form input {
  border-radius: 0;
  border: none;
}
.page-template-lpt2016 .red-head {
  color: #e0001a;
}
.page-template-lpt2016 .center-heading {
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 24px;
  float: left;
  width: 100%;
}
.page-template-lpt2016 .center-heading h2 {
  line-height: 42px;
}
.page-template-lpt2016 .center-heading h2 small {
  line-height: 42px;
  font-size: 22px;
  font-weight: 100;
}
.page-template-lpt2016 .center-heading hr {
  max-width: 430px;
  margin: 12px auto 24px auto;
  border: none;
  border-top: 3px solid #e0001a;
}
.page-template-lpt2016 .read_more_btn {
  margin-top: 24px;
  display: inline-block;
}
.page-template-lpt2016 .read_more_btn:hover {
  background: transparent;
}
@media screen and (min-width: 768px) {
  .page-template-lpt2016 {
    font-size: 18px;
  }
  .page-template-lpt2016 p,
  .page-template-lpt2016 ul {
    font-size: 18px;
    font-weight: 400;
  }
  .page-template-lpt2016 p {
    padding-bottom: 24px;
    display: block;
  }
  .page-template-lpt2016 h1 {
    font-size: 48px;
  }
  .page-template-lpt2016 h2 {
    font-size: 34px;
  }
  .page-template-lpt2016 h3 {
    font-size: 24px;
  }
  .page-template-lpt2016 h4 {
    font-size: 18px;
  }
  .page-template-lpt2016 h1,
  .page-template-lpt2016 h2,
  .page-template-lpt2016 h3,
  .page-template-lpt2016 h4,
  .page-template-lpt2016 h5 {
    font-weight: 800;
    line-height: 1.5;
    display: block;
    color: #40403f;
  }
  .page-template-lpt2016 h1 span,
  .page-template-lpt2016 h2 span,
  .page-template-lpt2016 h3 span,
  .page-template-lpt2016 h4 span,
  .page-template-lpt2016 h5 span,
  .page-template-lpt2016 h1 small,
  .page-template-lpt2016 h2 small,
  .page-template-lpt2016 h3 small,
  .page-template-lpt2016 h4 small,
  .page-template-lpt2016 h5 small {
    display: block;
  }
  .page-template-lpt2016 .center-heading h2 {
    line-height: 36px;
    font-size: 24px;
  }
  .page-template-lpt2016 .center-heading h2 small {
    line-height: 36px;
    font-size: 22px;
    font-weight: 100;
  }
  .page-template-lpt2016 .center-heading hr {
    max-width: 430px;
    margin: 12px auto 24px auto;
    border: none;
    border-top: 3px solid #e0001a;
  }
}
.page-template-lpt2016 .nav-switch {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 36px;
  overflow: hidden;
  border-bottom: 3px solid white;
}
.page-template-lpt2016 .nav-switch li {
  display: block;
  margin: 0;
  padding: 0;
  float: left;
  width: 50%;
  background: transparent;
  line-height: 24px;
  font-size: 14px;
}
.page-template-lpt2016 .nav-switch li button {
  text-align: center;
  display: block;
  width: 100%;
  border: none;
  padding: 6px 0;
  background: transparent;
  border-color: transparent;
  transition: .3s;
}
.page-template-lpt2016 .nav-switch li button:hover {
  background: transparent;
  border-color: transparent;
  color: #40403f;
}
.page-template-lpt2016 .nav-switch li button:focus {
  outline: none;
}
.page-template-lpt2016 .nav-switch li.current button {
  box-shadow: 0 -2px 3px #a3958d;
  background: white;
  border-color: white;
  color: #e0001a;
}
.page-template-lpt2016 .tab {
  display: block;
  width: 100%;
}
.page-template-lpt2016 .embed-responsive {
  width: 100%;
  background: #40403f url('https://www.spooe.at/wp-content/themes/spooe/lpt2016/dist/images//placeholder.jpg') center center no-repeat;
}
.page-template-lpt2016 .gradient-up {
  background: #ece9e6;
  background-image: linear-gradient(#d0cbc0, #ece9e6);
}
.page-template-lpt2016 .gradient-down {
  background: #ece9e6;
  background-image: linear-gradient(#ece9e6, #d0cbc0);
}
.page-template-lpt2016 .gradient-up-down {
  background: #ece9e6;
  background-image: linear-gradient(#d0cbc0, #ece9e6, #d0cbc0);
}
.page-template-lpt2016 .gradient-down-up {
  background: #ece9e6;
  background-image: linear-gradient(#ece9e6, #d0cbc0, #ece9e6);
}
.page-template-lpt2016 .lpt2016-section {
  padding-top: 48px;
  padding-bottom: 48px;
  min-height: 400px;
}
.page-template-lpt2016 .lpt2016-section .entry {
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-template-lpt2016 #intro {
  padding-top: 0;
}
.page-template-lpt2016 #intro h2 {
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 24px;
  display: block;
}
.page-template-lpt2016 #intro h2 span {
  font-size: 18px;
}
.page-template-lpt2016 #intro h2 small {
  font-size: 16px;
  font-weight: 300;
}
.page-template-lpt2016 #intro p {
  max-width: 400px;
}
.page-template-lpt2016 #intro .bubble {
  display: block;
  width: 100%;
  height: 380px;
  margin-top: 180px;
  margin-bottom: 24px;
  padding: 0;
}
.page-template-lpt2016 #intro .bubble svg {
  margin: 0;
  padding: 0;
}
.page-template-lpt2016 #intro .bubble .shadow {
  display: block;
  width: 100%;
  height: 48px;
  background: transparent url('https://www.spooe.at/wp-content/themes/spooe/lpt2016/dist/images/shadow.png') center center no-repeat;
  background-size: 90% auto;
}
.page-template-lpt2016 #intro .visible-xs .bubble {
  margin-top: 24px;
  margin-bottom: 0;
  height: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-template-lpt2016 #intro h2 {
    font-size: 48px;
    margin-top: 96px;
    margin-bottom: 48px;
  }
  .page-template-lpt2016 #intro h2 span {
    font-size: 24px;
  }
  .page-template-lpt2016 #intro h2 small {
    font-size: 32px;
    font-weight: 300;
  }
}
.page-template-lpt2016 #letter h3 {
  margin-top: 96px;
}
.page-template-lpt2016 #letter .note {
  position: absolute;
  top: 12px;
  left: 12px;
  pointer-events: none;
}
.page-template-lpt2016 #letter .postbox {
  padding: 24px 0 0 0;
  display: block;
  width: auto;
  height: auto;
  background-color: transparent;
  background-position: -4000px bottom;
  background-repeat: no-repeat;
  transition: .3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-template-lpt2016 #letter .postbox {
    padding: 48px 0 0 0;
    display: block;
    width: 100%;
    height: 424px;
    background-color: transparent;
    background-position: 24px bottom;
    background-repeat: no-repeat;
    background-size: 150px auto;
    transition: .3s;
    position: relative;
  }
  .page-template-lpt2016 #letter .postbox:hover {
    background-position: 0 bottom;
  }
}
@media screen and (min-width: 1040px) {
  .page-template-lpt2016 #letter .postbox {
    background-size: 280px auto;
  }
}
.page-template-lpt2016 #letter #postcard {
  display: block;
  background: white;
  font-family: "Patrick Hand";
  width: 100%;
  height: auto;
  margin-left: 0;
  box-shadow: -12px 6px 6px rgba(0, 0, 0, 0.3);
  padding: 48px 24px 6px;
}
.page-template-lpt2016 #letter #postcard #signature {
  display: block;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .page-template-lpt2016 #letter #postcard {
    position: relative;
    display: block;
    background: white;
    font-family: "Patrick Hand";
    width: 580px;
    height: 390px;
    margin-left: 130px;
    box-shadow: -12px 6px 6px rgba(0, 0, 0, 0.3);
    padding: 48px 24px;
  }
}
@media screen and (min-width: 1040px) {
  .page-template-lpt2016 #letter #postcard {
    margin-left: 246px;
  }
}
.page-template-lpt2016 #letter #postcard .letter-text p {
  margin-bottom: 0;
  padding-bottom: 12px;
}
.page-template-lpt2016 #letter #postcard .letter-stamp {
  display: block;
  height: 96px;
}
.page-template-lpt2016 #letter #postcard .letter-stamp .bubble {
  position: relative;
  max-width: 300px;
  padding-right: 12px;
  padding-bottom: 24px;
  padding-left: 48px;
}
.page-template-lpt2016 #letter #postcard .letter-stamp .bubble .shadow {
  display: block;
  width: 100%;
  height: 48px;
  background: transparent url('https://www.spooe.at/wp-content/themes/spooe/lpt2016/dist/images/shadow.png') center center no-repeat;
  background-size: 90% auto;
}
.page-template-lpt2016 #letter #postcard .letter-address {
  padding-top: 84px;
  padding-bottom: 12px;
  color: #a3958d;
}
.page-template-lpt2016 #letter .postform {
  display: block;
  width: 100%;
  margin: 0;
  position: relative;
  padding-top: 60px;
}
.page-template-lpt2016 #letter .postform .note {
  top: 0;
  left: 48px;
}
.page-template-lpt2016 #letter .postform #card-email {
  background: #ece9e6;
  transition: .3s;
}
.page-template-lpt2016 #letter .postform #card-email:focus,
.page-template-lpt2016 #letter .postform #card-email.active {
  background: white;
}
.page-template-lpt2016 #letter .postform input[type="text"]:focus,
.page-template-lpt2016 #letter .postform input[type="mail"]:focus {
  outline: #40403f;
}
.page-template-lpt2016 #letter .postform .disclaimer,
.page-template-lpt2016 #letter .postform .checkbox {
  margin-top: 24px;
  font-size: 14px;
}
.page-template-lpt2016 #letter .postform .disclaimer input,
.page-template-lpt2016 #letter .postform .checkbox input {
  margin-right: 12px;
  margin-left: 12px;
}
.page-template-lpt2016 #letter .postform .disclaimer a,
.page-template-lpt2016 #letter .postform .checkbox a {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-template-lpt2016 #letter .postform {
    margin: 48px 0 0 0;
  }
  .page-template-lpt2016 #letter .postform .checkbox input {
    margin-left: 0;
  }
}
.page-template-lpt2016 #letter #signature-input > div {
  padding: 6px;
}
.page-template-lpt2016 #letter #signature-input .form-group {
  margin: 0;
  padding: 0 6px;
  width: 20%;
  float: left;
}
.page-template-lpt2016 #letter #signature-input .btn {
  width: 100%;
  display: block;
  padding: 7px 0;
  border-color: transparent;
  background: #e0001a;
  color: white;
  font-size: 14px;
}
.page-template-lpt2016 #letter #signature-input input[type="text"],
.page-template-lpt2016 #letter #signature-input input[type="email"] {
  width: 100%;
}
.page-template-lpt2016 #stream {
  padding-bottom: 12px;
}
.page-template-lpt2016 #stream .container {
  background: transparent url('https://www.spooe.at/wp-content/themes/spooe/lpt2016/dist/images//shadow-player.png') bottom center no-repeat;
  background-size: 100% auto;
}
.page-template-lpt2016 #stream p.center {
  margin-bottom: 48px;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery {
  position: relative;
  display: block;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .btn-slider {
  display: none !important;
  position: absolute;
  background: #40403f;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 36px;
  color: #ece9e6;
  top: 50%;
  margin-top: 0;
  font-size: 18px;
  transition: .3s;
}
@media screen and (min-width: 768px) {
  .page-template-lpt2016 #gallery #ltp-2016-gallery .btn-slider {
    display: block !important;
  }
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .btn-slider.slider-nav-next {
  right: 0;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .btn-slider:hover {
  background: #e0001a;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .slick-dots {
  position: absolute;
  width: 100%;
  display: block;
  top: 9px;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .slick-dots li {
  display: inline-block;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .slick-dots li button {
  text-indent: -3000px;
  display: block;
  width: 9px;
  height: 9px;
  background: #a3958d;
  overflow: hidden;
  color: #d0cbc0;
  border: none;
  padding: 0;
  margin: 0 12px;
  border-radius: 12px;
  transition: .3s;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .slick-dots li button:focus {
  outline: none;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .slick-dots li button:hover {
  background: #40403f;
}
.page-template-lpt2016 #gallery #ltp-2016-gallery .slick-dots li.slick-active button {
  background: white;
}
.page-template-lpt2016 #gallery .thumbnails {
  margin: 0;
  padding-top: 48px;
  opacity: 0;
  transition: .3s;
}
.page-template-lpt2016 #gallery .thumbnails img {
  display: none;
}
.page-template-lpt2016 #gallery .thumbnails.slick-initialized {
  opacity: 1;
}
.page-template-lpt2016 #gallery .thumbnails.slick-initialized img {
  display: block;
}
.page-template-lpt2016 #gallery .thumbnails a {
  display: inline-block;
  background: #40403f;
  background-image: linear-gradient(#ece9e6, #40403f);
  margin: 0 3px;
}
.page-template-lpt2016 #gallery .thumbnails a img {
  opacity: 0.6;
  transition: .3s;
}
.page-template-lpt2016 #gallery .thumbnails a:hover {
  opacity: 1;
  background: #a50600;
  background: #a50600 url('https://www.spooe.at/wp-content/themes/spooe/lpt2016/dist/images//plus.png') center center no-repeat;
}
.page-template-lpt2016 #gallery .thumbnails a:hover img {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .page-template-lpt2016 #gallery .thumbnails {
    margin: 24px 24px;
  }
  .page-template-lpt2016 #gallery .thumbnails a {
    margin: 0 12px;
  }
}
.page-template-lpt2016 #subjects {
  display: block;
}
.page-template-lpt2016 #subjects hr.alt {
  width: 80%;
  margin: 0 10% 48px;
  border-color: #d0cbc0;
}
.page-template-lpt2016 #subjects h3 {
  font-weight: 500;
  text-transform: uppercase;
}
.page-template-lpt2016 #subjects .red-head {
  font-weight: 400;
  margin-bottom: 12px;
}
.page-template-lpt2016 #subjects .subject-items {
  margin-top: 48px;
  margin-bottom: 48px;
}
.page-template-lpt2016 #subjects .subject-items figure {
  display: block;
  text-align: right;
}
.page-template-lpt2016 #subjects .subject-items figure figcaption {
  display: block;
  text-align: center;
  padding: 48px 12px;
}
.page-template-lpt2016 #subjects .subject-items figure figcaption strong {
  display: block;
  margin-bottom: 12px;
}
.page-template-lpt2016 #subjects .subject-description {
  max-width: 750px;
  display: block;
  margin: 24px auto;
  text-align: center;
}
.page-template-lpt2016 #info .center-heading {
  margin-bottom: 48px;
}
.page-template-lpt2016 #info h3.red-head {
  margin-bottom: 24px;
}
.page-template-lpt2016 #info .media {
  padding-top: 48px;
}
.page-template-lpt2016 #info .media .embed-responsive {
  width: 100%;
  display: block;
  background: #a3958d;
}
.page-template-lpt2016 #publications {
  padding-bottom: 96px;
}
.page-template-lpt2016 #publications h2 {
  margin-bottom: 48px;
}
.page-template-lpt2016 #publications .btn {
  display: block;
  text-align: center;
  position: relative;
  margin-top: 24px;
  margin-bottom: 24px;
}
.page-template-lpt2016 #publications .btn.btn-download {
  background: white;
  border-color: white;
  transition: .3s;
  box-shadow: 0 3px 3px #a3958d;
}
@media screen and (max-width: 1200px) {
  .page-template-lpt2016 #publications .btn.btn-download {
    font-size: 14px;
  }
}
.page-template-lpt2016 #publications .btn.btn-download:hover {
  background: #e0001a;
  border-color: #e0001a;
  color: white;
}
.page-template-lpt2016 #publications .bubble {
  max-width: 90%;
  display: block;
  margin: 48px auto 0 auto;
  padding-bottom: 48px;
  text-align: center;
}
.page-template-lpt2016 #publications .bubble .shadow {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 48px;
  background: transparent url('https://www.spooe.at/wp-content/themes/spooe/lpt2016/dist/images/shadow.png') center center no-repeat;
  background-size: 90% auto;
}
.page-template-lpt2016 #archive .nav li {
  margin-bottom: 12px;
}
.page-template-lpt2016 #archive .nav li button {
  border-radius: 0;
  background: #ece9e6;
  color: #40403f;
  font-size: 14px;
  display: block;
  border: none;
  width: 100%;
  padding: 12px;
  text-align: left;
  transition: .3s;
}
.page-template-lpt2016 #archive .nav li button:focus {
  outline: none;
}
.page-template-lpt2016 #archive .nav li button span {
  margin-right: 24px;
}
.page-template-lpt2016 #archive .nav li.current button {
  background: #ffffff;
}
.page-template-lpt2016 #archive .archive-player-container {
  padding: 0 0;
  background: transparent url('https://www.spooe.at/wp-content/themes/spooe/lpt2016/dist/images//shadow-player.png') bottom center no-repeat;
  background-size: 100% auto;
  max-width: 100%;
}
.page-template-lpt2016 #archive .archive-player-container #archive-player .archive-player-enclosure {
  display: block;
  margin: 0 12px;
}
.fm-form-container.fm-theme1 .fm-pages.wdform_page_navigation {
  width: 100%;
  margin: 0 auto;
}
.fm-form-container.fm-theme1 .fm-form {
  padding: !important;
  border-radius: 0px;
  box-shadow: ;
  background: transparent;
  border: none !important;
  display: table;
  width: 100%;
  margin: 0 auto;
}
.fm-form {
  box-sizing: border-box;
}
.fm-form-container.fm-theme1 .fm-form .wdform-page-and-images {
  font-size: 16px;
  font-weight: normal;
  width: 100%;
  color: #607370;
  padding: 10px;
  margin: ;
  border-radius: 0px;
  border: none !important;
}
.fm-form-container.fm-theme1 .fm-form {
  font-family: Open Sans;
  background: transparent;
}
.fm-form .wdform_page {
  margin: 0 !important;
  float: none !important;
}
.fm-form-container.fm-theme1 .fm-form .wdform_section {
  background: transparent;
}
.fm-form-container.fm-theme1 .fm-form .wdform_section {
  padding: ;
  margin: ;
  background: transparent;
}
.fm-form-container.fm-theme1 .fm-form .wdform_section {
  margin: 0 auto;
}
.fm-form .wdform_section {
  display: table;
}
.fm-form-container.fm-theme1 .fm-form .wdform_column {
  padding: 15px 20px;
  margin: 0px;
}
.fm-form .wdform_column {
  float: left;
}
.fm-form .wdform-field {
  display: table-cell;
  padding: 5px 0px;
}
.fm-form .wdform-label-section {
  text-align: left;
  display: table-cell;
}
.fm-form-container.fm-theme1 .fm-form .wdform-required {
  color: #e0001a;
}
.wdform-element-section {
  text-align: left;
  display: table-cell;
  min-width: 140px;
}
.fm-form .wdform_tr_section_break {
  clear: both;
}
.fm-form .wdform-section-break-div {
  border: none;
}
.fm-form-container.fm-theme1 .fm-form .fm-subscribe-reset {
  float: left;
}
.fm-form-container.fm-theme1 .fm-form .fm-subscribe-reset div {
  text-align: left;
}
.fm-form-container.fm-theme1 .fm-form .button-submit {
  background-color: #e0001a !important;
  font-size: 16px !important;
  font-weight: bold !important;
  color: #ffffff !important;
  height: 50px !important;
  width: 200px !important;
  margin: 0 15px 0 0 !important;
  padding: 5px 8px !important;
  box-shadow: !important;
  border-radius: 0px;
  border: none !important;
}
.fm-form-container.fm-theme1 .fm-form .button-submit {
  border-top: 1px solid #e7e7e7  !important;
  border-left: 1px solid #e7e7e7  !important;
  border-right: 1px solid #e7e7e7  !important;
  border-bottom: 1px solid #e7e7e7  !important;
}
.fm-form-container.fm-theme1 .fm-form .button-reset,
.fm-form-container.fm-theme1 .fm-form button {
  border-bottom: 1px solid #8a8a8a  !important;
  background-color: #96afab !important;
  font-size: 16px !important;
  font-weight: normal !important;
  color: #ffffff !important;
  height: px !important;
  width: px !important;
  margin: 0 15px 0 0 !important;
  padding: 5px 8px !important;
  box-shadow: !important;
  border-radius: 0px;
  border: none !important;
}
.fm-form-container.fm-theme1 .fm-form .button-reset,
.fm-form-container.fm-theme1 .fm-form button {
  border-top: 1px solid #8a8a8a  !important;
  border-left: 1px solid #8a8a8a  !important;
  border-right: 1px solid #8a8a8a  !important;
}
.fm-form-container.fm-theme1 .fm-form .button-submit {
  margin-right: 15px;
}
.fm-form button,
.fm-form .button-submit {
  text-transform: none;
}
a,
button {
  cursor: pointer;
}
.button-submit,
.button-reset {
  background-image: none !important;
}
.fm-form-container.fm-theme1 .fm-form input[type='text'],
.fm-form-container.fm-theme1 .fm-form input[type=password],
.fm-form-container.fm-theme1 .fm-form input[type=url],
.fm-form-container.fm-theme1 .fm-form input[type=email],
.fm-form-container.fm-theme1 .fm-form textarea,
.fm-form-container.fm-theme1 .fm-form .ui-spinner-input,
.fm-form-container.fm-theme1 .fm-form .file-upload-status,
.fm-form-container.fm-theme1 .fm-form select {
  font-size: 15px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  background-color: #f9f9f9;
  color: #686868;
  padding: 0px 10px;
  margin: 0px;
  border-radius: 0px !important;
  box-shadow: ;
  border: none;
}
.fm-form-container.fm-theme1 .fm-form input[type='text']:not(.ui-spinner-input),
.fm-form-container.fm-theme1 .fm-form input[type=password],
.fm-form-container.fm-theme1 .fm-form input[type=url],
.fm-form-container.fm-theme1 .fm-form input[type=email],
.fm-form-container.fm-theme1 .fm-form textarea,
.fm-form-container.fm-theme1 .fm-form .ui-spinner,
.fm-form-container.fm-theme1 .fm-form .ui-slider,
.fm-form-container.fm-theme1 .fm-form .ui-slider-handle,
.fm-form-container.fm-theme1 .fm-form select {
  border-top: 1px solid #e7e7e7  !important;
  border-left: 1px solid #e7e7e7  !important;
  border-right: 1px solid #e7e7e7  !important;
  border-bottom: 1px solid #e7e7e7  !important;
}
.full-width-small {
  display: block;
  background-size: contain;
  height: auto !important;
  min-height: 24.2vw;
}
.info-testimonials {
  background: #f9f9f9;
  display: none;
  justify-content: space-around;
  margin: 0em 0 0em 0;
  padding: 2em 3em 2em 3em;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .full-width-small {
    display: block;
    background-size: contain;
    height: auto !important;
    min-height: 24.2vw;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .info-testimonials {
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 1em 1em 1em 1em;
    display: none;
  }
}
@media (max-width: 992px) and (min-width: 768px) {
  .info-testimonials {
    flex-flow: row wrap;
  }
}
