* {
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #212121;
  font-family: "Sarabun", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: clamp(1.75rem, 1.34rem + 1.75vw, 2.75rem);
}

h2 {
  font-size: clamp(1.5rem, 1.27rem + 1vw, 2.125rem);
}

h3 {
  font-size: clamp(1.25rem, 1.16rem + 0.42vw, 1.5rem);
}

h4 {
  font-size: clamp(1.1rem, 1.05rem + 0.21vw, 1.25rem);
}

.ssh-utility-bar {
  background-color: #D8A544;
  border-bottom: 1px solid #111111;
}
.ssh-utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 1rem;
}
@media (min-width: 1280px) {
  .ssh-utility-bar__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.ssh-utility-bar__left, .ssh-utility-bar__right {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}
.ssh-utility-bar__left a, .ssh-utility-bar__right a {
  color: #111111;
  text-decoration: none;
}
.ssh-utility-bar__left a:hover, .ssh-utility-bar__right a:hover {
  color: #212121;
  transition: color 0.3s ease;
}
.ssh-utility-bar__left span, .ssh-utility-bar__right span {
  color: #111111;
}
.ssh-utility-bar__right {
  text-align: right;
}

.mob-menu-header-holder {
  padding-top: 5px;
}

.mobmenul-container {
  padding-left: 5px;
  padding-top: 7px;
}

.site-header {
  background-color: #9a302f;
}

.transparent-btn {
  border: 2px solid;
  border-color: #D8A544;
  border-radius: 5px;
  text-align: center;
  color: #D8A544 !important;
  padding: 0.25rem;
  text-transform: uppercase;
  width: 100%;
  display: block;
}
.transparent-btn:hover {
  color: #EEC370 !important;
  border-color: #EEC370;
  transition: all 0.5s ease;
}

.ssh-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  pointer-events: none;
}

.ssh-toast {
  pointer-events: auto;
  padding: 14px 45px 14px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateX(100%);
  animation: toastSlideIn 0.3s ease forwards;
  position: relative;
}
.ssh-toast.toast-dismissing {
  animation: toastSlideOut 0.3s ease forwards;
}

.ssh-toast.toast-error {
  background: #dc3545;
  color: #fff;
}
.ssh-toast.toast-error .toast-icon::before {
  content: "!";
  background: rgba(255, 255, 255, 0.2);
}

.ssh-toast.toast-warning {
  background: #f0ad4e;
  color: #212529;
}
.ssh-toast.toast-warning .toast-icon::before {
  content: "!";
  background: rgba(0, 0, 0, 0.15);
}

.ssh-toast.toast-info {
  background: #17a2b8;
  color: #fff;
}
.ssh-toast.toast-info .toast-icon::before {
  content: "i";
  background: rgba(255, 255, 255, 0.2);
}

.toast-icon {
  flex-shrink: 0;
}
.toast-icon::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

.toast-dismiss {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px;
}
.toast-dismiss:hover {
  opacity: 1;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
@media (max-width: 480px) {
  .ssh-toast-container {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  .ssh-toast {
    padding: 12px 40px 12px 14px;
  }
}
.ssh-ajax-notice {
  margin: 10px 0;
  padding: 12px 15px;
  border-left: 4px solid;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.ssh-ajax-notice.notice-error {
  border-color: #dc3545;
  background: #f8d7da;
  color: #721c24;
}
.ssh-ajax-notice.notice-warning {
  border-color: #ffc107;
  background: #fff3cd;
  color: #856404;
}
.ssh-ajax-notice.notice-info {
  border-color: #0dcaf0;
  background: #cff4fc;
  color: #055160;
}
.ssh-ajax-notice .notice-dismiss {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  padding: 0;
  margin-left: 10px;
}
.ssh-ajax-notice .notice-dismiss:hover {
  opacity: 1;
}

.ssh-load-more-container {
  text-align: center;
  margin: 1.5rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.ssh-load-more-btn {
  background-color: #f28e2e !important;
  border: 2px solid;
  border-color: #D8A544;
  border-radius: 5px;
  text-align: center;
  color: #D8A544 !important;
  padding: 0.25rem;
  text-transform: uppercase;
  width: 100%;
  display: block;
}
.ssh-load-more-btn:hover {
  background-color: #D8A544 !important;
  color: #EEC370 !important;
  border-color: #EEC370;
  transition: all 0.5s ease;
}
.ssh-load-more-btn:hover:disabled, .ssh-load-more-btn:hover.loading {
  opacity: 0.6;
  cursor: not-allowed;
}
.ssh-load-more-btn:hover .spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(154, 48, 47, 0.3);
  border-top-color: #9a302f;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.no-more-items {
  text-align: center;
  color: #666;
  font-style: italic;
  margin: 1.5rem 0;
}

.ssh-load-more-btn.ssh-infinite-scroll-active {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.ssh-infinite-scroll-sentinel {
  height: 1px;
  visibility: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(14px, 1.1vw, 15px);
  padding: 1.05em 2.2em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  width: fit-content;
  background-color: #D8A544;
  color: #1a1407 !important;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover {
  background-color: #EEC370;
  color: #1a1407 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(216, 165, 68, 0.6);
}

.site-header {
  --navbar-height: 64px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.site-header,
.site-header * {
  -webkit-tap-highlight-color: transparent;
}
.site-header .wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1280px) {
  .site-header .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.site-header .wrap .title-area {
  flex: 0 0 auto;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin-left: 0;
}
.site-header .wrap .title-area .site-title {
  display: none;
}
.site-header .wrap .title-area .custom-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-header .wrap .title-area .custom-logo {
  height: 100%;
  width: auto;
  max-width: 350px;
  padding: 0;
  display: block;
  object-fit: contain;
}
.site-header .wrap nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  width: auto;
  flex: 0 0 auto;
  margin-left: auto;
}
.site-header .wrap .nav-primary {
  display: flex;
}
@media screen and (max-width: 980px) {
  .site-header .wrap .nav-primary {
    display: none;
  }
}
.site-header .genesis-nav-menu a {
  color: #FFF;
  font-family: "Oswald", sans-serif;
  font-size: 1rem !important;
  font-weight: 700;
  display: block;
}
.site-header .genesis-nav-menu a:focus-visible, .site-header .genesis-nav-menu a:active {
  color: #D8A544;
}
@media (hover: hover) {
  .site-header .genesis-nav-menu a:hover {
    color: #D8A544;
  }
}
@media screen and (min-width: 981px) {
  .site-header .menu-toggle {
    display: none;
  }
  .site-header .genesis-nav-menu a {
    padding: 0 10px;
    line-height: var(--navbar-height);
  }
  .site-header .genesis-nav-menu .sub-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 50%;
    border-top: none;
    width: max-content;
    transform: translateX(-50%);
    background-color: #9a302f !important;
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    transition: none;
  }
  .site-header .genesis-nav-menu .sub-menu li {
    width: 100%;
  }
  .site-header .genesis-nav-menu .sub-menu a {
    font-size: 0.9rem !important;
    font-weight: 700;
    white-space: nowrap;
    line-height: normal;
    padding: 6px 20px;
    display: block;
  }
  .site-header .genesis-nav-menu .sub-menu a:hover {
    background-color: rgba(0, 0, 0, 0.15);
    color: #D8A544 !important;
  }
  .site-header .menu-item-has-children {
    position: relative;
  }
  .site-header .menu-item-has-children::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    background: #9a302f;
    transform: rotate(45deg);
    box-shadow: -2px -2px 3px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    pointer-events: none;
  }
  .site-header .menu-item-has-children:hover::after, .site-header .menu-item-has-children.sfHover::after {
    opacity: 1;
    visibility: visible;
  }
  .site-header .menu-item-has-children > a:after {
    display: none;
  }
  .site-header .genesis-nav-menu .menu-item:hover > .sub-menu,
  .site-header .genesis-nav-menu .menu-item.sfHover > .sub-menu {
    display: flex;
    left: 50%;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
    pointer-events: auto;
  }
}
@media screen and (max-width: 980px) {
  .site-header {
    position: relative;
    z-index: 101;
  }
  .site-header .wrap::before, .site-header .wrap::after {
    display: none;
  }
  .site-header .wrap .title-area {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    margin-right: auto;
  }
  .site-header .wrap .title-area .custom-logo-link {
    max-width: calc(100% - 8px);
  }
  .site-header .wrap .title-area .custom-logo {
    height: auto;
    max-height: 40px;
    max-width: min(60vw, 320px);
    width: auto;
  }
  .site-header .wrap .menu-toggle {
    flex: 0 0 56px;
    min-height: 48px;
    align-self: center;
    margin-left: auto;
    margin-right: -11px;
  }
  .site-header .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    padding: 0;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .site-header .menu-toggle::before {
    font-size: 34px;
    width: 34px;
    height: 34px;
    line-height: 1;
    transition: transform 0.25s ease;
  }
  .site-header .menu-toggle:focus {
    outline: none;
  }
  .site-header .menu-toggle:focus-visible, .site-header .menu-toggle:active {
    color: #D8A544;
  }
}
@media screen and (max-width: 980px) and (hover: hover) {
  .site-header .menu-toggle:hover {
    color: #D8A544;
  }
}
@media screen and (max-width: 980px) {
  .site-header .menu-toggle.activated {
    color: #D8A544;
  }
  .site-header .menu-toggle.activated::before {
    content: "\f335";
    transform: rotate(90deg);
  }
  .site-header .wrap .nav-primary {
    display: block !important;
  }
  .site-header .nav-primary {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background-color: #9a302f;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translate3d(0, -6px, 0);
    -webkit-transform: translate3d(0, -6px, 0);
    will-change: opacity, transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    transition: none;
  }
  .site-header .nav-primary.transitions-ready {
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease, transform 0.2s ease;
  }
  .site-header .nav-primary.nav-open {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }
  .site-header .nav-primary > .wrap {
    height: auto;
    flex-direction: column;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
  }
  .site-header .genesis-nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .site-header .genesis-nav-menu > .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
  }
  .site-header .genesis-nav-menu > .menu-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-header .genesis-nav-menu > .menu-item > a {
    display: flex;
    align-items: center;
    padding: 18px 68px 18px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    min-height: 56px;
    color: #fff;
    transition: background-color 0.15s, color 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .site-header .genesis-nav-menu > .menu-item > a:focus-visible, .site-header .genesis-nav-menu > .menu-item > a:active {
    color: #D8A544 !important;
    background-color: rgba(255, 255, 255, 0.06);
  }
}
@media screen and (max-width: 980px) and (hover: hover) {
  .site-header .genesis-nav-menu > .menu-item > a:hover {
    color: #D8A544 !important;
    background-color: rgba(255, 255, 255, 0.06);
  }
}
@media screen and (max-width: 980px) {
  .site-header .genesis-nav-menu .menu-item > .sub-menu,
  .site-header .genesis-nav-menu .menu-item:hover > .sub-menu {
    display: none !important;
  }
  .site-header .genesis-nav-menu .menu-item > .sub-menu.sub-open,
  .site-header .genesis-nav-menu .menu-item:hover > .sub-menu.sub-open {
    display: block !important;
  }
  .site-header .genesis-nav-menu .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none !important;
    padding: 4px 0 8px;
    background-color: rgba(0, 0, 0, 0.28) !important;
    border-left: 3px solid rgba(216, 165, 68, 0.6);
  }
  .site-header .genesis-nav-menu .sub-menu.sub-open {
    display: block !important;
  }
  .site-header .genesis-nav-menu .sub-menu li {
    width: 100%;
  }
  .site-header .genesis-nav-menu .sub-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 28px;
    font-size: 0.875rem !important;
    font-weight: 400;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0;
    transition: background-color 0.15s, color 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .site-header .genesis-nav-menu .sub-menu a:focus-visible, .site-header .genesis-nav-menu .sub-menu a:active {
    color: #D8A544 !important;
    background-color: rgba(255, 255, 255, 0.06);
  }
}
@media screen and (max-width: 980px) and (hover: hover) {
  .site-header .genesis-nav-menu .sub-menu a:hover {
    color: #D8A544 !important;
    background-color: rgba(255, 255, 255, 0.06);
  }
}
@media screen and (max-width: 980px) {
  .site-header .menu-item-has-children > a {
    padding-right: 68px;
  }
  .site-header .sub-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    padding: 0;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: color 0.2s, background-color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .site-header .sub-menu-toggle::before {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
  }
  .site-header .sub-menu-toggle:focus {
    outline: none;
  }
  .site-header .sub-menu-toggle:focus-visible, .site-header .sub-menu-toggle:active {
    color: #D8A544;
    background-color: rgba(255, 255, 255, 0.08);
  }
}
@media screen and (max-width: 980px) and (hover: hover) {
  .site-header .sub-menu-toggle:hover {
    color: #D8A544;
    background-color: rgba(255, 255, 255, 0.08);
  }
}
@media screen and (max-width: 980px) {
  .site-header .sub-menu-toggle.activated {
    color: #D8A544;
  }
  .site-header .sub-menu-toggle.activated::before {
    transform: rotate(180deg);
  }
}

.nav-backdrop {
  display: none;
}
@media screen and (max-width: 980px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transform: translateZ(0);
    will-change: opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: opacity 0.2s ease;
  }
  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.error404 .content {
  max-width: 1140px;
  margin-inline: auto;
  padding: 3rem 1rem 4rem;
  color: #ECC879;
}
.error404 .content .entry-title {
  color: #D8A544;
}
.error404 .content a {
  color: #D8A544;
}

.footer-widgets {
  background-color: #9a302f;
  border: 0;
  width: 100%;
}
.footer-widgets .wrap {
  max-width: 100%;
}
.footer-widgets .footer-widget-area {
  width: 100%;
  display: flex;
}
.footer-widgets .footer-widget-area section {
  color: #FFF;
}
.footer-widgets .footer-widget-area section ul li {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  line-height: normal;
}
.footer-widgets .footer-widget-area section a {
  color: #D8A544;
  text-decoration: none;
}
.footer-widgets .footer-widget-area section a:hover {
  color: #EEC370 !important;
  transition: all 0.5s ease;
}
@media screen and (max-width: 980px) {
  .footer-widgets .footer-widget-area section a:not(.ssh-social-icon) {
    display: inline-block;
    padding-block: 0.5rem;
  }
}
.footer-widgets .footer-widget-area section .textwidget {
  color: #D8A544;
}
.footer-widgets .footer-widget-area .reservix-icon {
  display: inline-block;
  background: #f28e2e;
  padding: 12px 25px;
  text-align: center;
  border-radius: 7px;
  margin-bottom: 3px;
  color: #FFF !important;
}
.footer-widgets .footer-widget-area .reservix-icon:hover {
  background: #D8A544 !important;
  transition: all 0.5s ease;
  color: #FFF !important;
}
.footer-widgets .footer-widget-area .reservix-icon:before {
  content: "";
  display: inline-block;
  background: url("/wp-content/uploads/2018/08/reservix-icon.png") no-repeat center;
  width: 72px;
  height: 25px;
  vertical-align: middle;
  margin-right: 20px;
}
.footer-widgets .footer-widget-area .reservix-icon .phoneicon {
  height: 20px;
  width: 20px;
  color: #fff;
  vertical-align: middle;
  display: inline-block;
  background: url(../images/phone-solid.svg) center center no-repeat;
}

.widget_ssh_social_icons .widget-wrap {
  display: flex;
  justify-content: center;
}

.ssh-social-icons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.ssh-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ECC879;
  background-color: transparent;
  color: #ECC879;
  flex-shrink: 0;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.ssh-social-icon svg {
  display: block;
}
.ssh-social-icon:hover {
  border-color: #D8A544;
  color: #D8A544;
}

.site-footer {
  color: #ECC879;
  background-color: #212121;
  text-align: center;
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header-image-wrapper {
  top: 0px;
  width: 100%;
  height: 550px;
  display: block;
}
.header-image-wrapper .title-area {
  padding: 0;
}
.header-image-wrapper #featured-image {
  max-height: 550px;
  height: 550px;
  background-position: center top;
  background-size: cover;
}

.page-template-default article,
.showspieler-template-default article,
.page-template-page_ticketboerse article,
.single-ticketboerse_posts article,
.post-template-default article {
  color: #ECC879;
}
.page-template-default article h1, .page-template-default article h2, .page-template-default article h3, .page-template-default article h4, .page-template-default article h5, .page-template-default article h6,
.showspieler-template-default article h1,
.showspieler-template-default article h2,
.showspieler-template-default article h3,
.showspieler-template-default article h4,
.showspieler-template-default article h5,
.showspieler-template-default article h6,
.page-template-page_ticketboerse article h1,
.page-template-page_ticketboerse article h2,
.page-template-page_ticketboerse article h3,
.page-template-page_ticketboerse article h4,
.page-template-page_ticketboerse article h5,
.page-template-page_ticketboerse article h6,
.single-ticketboerse_posts article h1,
.single-ticketboerse_posts article h2,
.single-ticketboerse_posts article h3,
.single-ticketboerse_posts article h4,
.single-ticketboerse_posts article h5,
.single-ticketboerse_posts article h6,
.post-template-default article h1,
.post-template-default article h2,
.post-template-default article h3,
.post-template-default article h4,
.post-template-default article h5,
.post-template-default article h6 {
  color: #D8A544;
  font-weight: bold;
}
.page-template-default article a,
.showspieler-template-default article a,
.page-template-page_ticketboerse article a,
.single-ticketboerse_posts article a,
.post-template-default article a {
  color: #D8A544;
  text-decoration: none;
}
.page-template-default article a:hover,
.showspieler-template-default article a:hover,
.page-template-page_ticketboerse article a:hover,
.single-ticketboerse_posts article a:hover,
.post-template-default article a:hover {
  color: #EEC370 !important;
  transition: all 0.5s ease;
}

.entry-content ul,
.entry-content ol {
  display: inline-block;
  text-align: left;
}

.wp-block-button {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.wp-block-button a.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(14px, 1.1vw, 15px);
  padding: 1.05em 2.2em;
  border-radius: 4px !important;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  background-color: #D8A544;
  color: #1a1407 !important;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.wp-block-button a.wp-block-button__link:hover {
  background-color: #EEC370 !important;
  color: #1a1407 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(216, 165, 68, 0.6);
}
.wp-block-button.is-style-outline a.wp-block-button__link {
  background-color: transparent !important;
  border-color: rgba(216, 165, 68, 0.45) !important;
  color: #D8A544 !important;
}
.wp-block-button.is-style-outline a.wp-block-button__link:hover {
  background-color: rgba(216, 165, 68, 0.08) !important;
  border-color: #D8A544 !important;
  color: #EEC370 !important;
  box-shadow: none;
}

input,
select,
textarea {
  background-color: #ECC879;
  border: 2px solid #D8A544;
  color: #9a302f !important;
  padding: 10px !important;
  font-size: 1rem;
  width: 100% !important;
}

input:focus,
textarea:focus {
  border: 1px solid #D8A544;
  outline: none;
}

form p {
  margin-bottom: 0.5rem;
}

textarea {
  margin-bottom: -0.5rem;
}

input[type=submit],
button[type=submit] {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase !important;
  letter-spacing: 0.16em;
  font-size: clamp(14px, 1.1vw, 15px) !important;
  padding: 1.05em 2.2em !important;
  border-radius: 4px !important;
  border: 1px solid transparent !important;
  cursor: pointer;
  width: fit-content;
  white-space: nowrap;
  background-color: #9a302f !important;
  color: #ffffff !important;
  transition: transform 0.18s ease, background 0.18s ease;
}
input[type=submit]:hover,
button[type=submit]:hover {
  background-color: #c44132 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

hr.wp-block-separator {
  color: #D8A544 !important;
  border-bottom-width: 2px !important;
  max-width: 5rem !important;
}

#respond {
  margin-bottom: 3rem;
}
#respond label {
  display: none;
}
#respond .comment-notes {
  font-size: 0.9rem;
}

.mailpoet_form_html {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #D8A544;
  text-align: center;
}
.mailpoet_form_html form {
  padding: 1rem;
  max-width: 1140px;
  margin: 0 auto;
}
.mailpoet_form_html form h2 {
  width: 100%;
  font-family: "Sarabun", sans-serif;
  text-align: center !important;
  color: #9a302f;
  font-weight: bold;
  text-transform: uppercase;
}
.mailpoet_form_html form .mailpoet_form_paragraph {
  width: 100%;
  font-family: "Sarabun", sans-serif;
  color: #9a302f;
  text-align: center !important;
  margin-bottom: 1rem;
}
.mailpoet_form_html form .mailpoet_form_columns {
  display: flex;
  margin-left: 1rem;
  margin-right: 1rem;
}
.mailpoet_form_html form .mailpoet_form_columns .mailpoet_form_column input {
  font-family: "Sarabun", sans-serif;
}
.mailpoet_form_html form .mailpoet_form_columns .mailpoet_form_column input[type=submit] {
  font-family: "Sarabun", sans-serif;
  font-size: 1rem !important;
  padding: 0.7rem !important;
}

div.wpforms-container-full .wpforms-form input[type=checkbox],
div.wpforms-container-full .wpforms-form input[type=radio] {
  width: 14px !important;
  height: 14px !important;
}

/*# sourceMappingURL=main.css.map */
