* {
  box-sizing: border-box;
}

:root {
  --ww-primary-red: #B51621;
  --ww-primary-red-10: rgba(181,22,33,0.1);
  --ww-primary-blue: #004e83;
  --ww-primary-text: #000;
  --ww-primary-white: #ffffff;
  --ww-light-grey: #ECECEC;
  --ww-grey: #D9D9D9;
  --ww-border-radius-large: 1.25rem;
  --ww-border-radius: 0.75rem;
  --ww-border-radius-small: 0.375rem;
}

html {
  scrollbar-color: #000000 #fff;
  scrollbar-width: thin;
}

body {
  background-color: #fff;
  color: #000000;
  scrollbar-color: #000000 #fff;
  scrollbar-width: auto;
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  line-height: 1.2;  
}

body::-webkit-scrollbar, body::-webkit-scrollbar-track {
  width: 8px;
  background-color: transparent;
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: #000000;
}

html>body {
  font-size: 16px;
  font-size: 1rem;
}

body.loading {
  overflow: hidden;
}

body.is--fixed, body.is--popup-active, body.is-navi-active {
  width: 100%;
  height: 100vH;
  overflow: hidden;
}

html, body, article, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, figure, address, cite, code, del, dfn, em, img, ins, q, small, header,
strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, figcaption, label, button, legend, table, caption, tbody, tfoot, thead, tr, th, td, footer, label, input, textarea, select, time {
  border: 0 none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

p, ul, ol, label, input, select, option, button, textarea, dd, dt, td, th, a, caption, span, figcaption, legend, option, time,
text, a span {
  font-family: "Epilogue", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  font-size: 1rem;
  color: #000000;
}

.main__content p, 
.main__content li {
  line-height: 1.4rem;
}

strong, strong a, b {
  font-family: "Epilogue", sans-serif;
  font-weight: 500;
}

h1 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h2, h3, h4, h5, h1 span, h2 span, h3 span {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, 
h2, 
h3 {
  margin-bottom: 0.5rem;
}

.main__content h2 {
  margin-bottom: 2rem;
}

h2 {
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
}

h3, 
h3 span {
  font-weight: 500;
  text-transform: none;
}

h6 {
  font-size: 1rem;
}

.hidden, .is-hidden {
  display: none;
}

.nav--social {
  display: none;
}

@media screen and (min-width: 48rem) {
  h1 {
    font-size: 2rem;
  }
  h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 64rem) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 81.25rem) {
  h1 {
    font-size: 6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------------- basics */

hr {
  border: none;
  border-bottom: 1px solid #000000;
}

a {
  text-decoration: none;
  color: #000000;
  -webkit-transition: all 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main__content a {
  color: var(--ww-primary-red);
}

.main__content a:hover {
  text-decoration: underline;
}

p.current-date {
  text-align: right;
  font-size: 0.875rem;
}

/* ----------------------------------------------------------------------------------------------------------- basics */

/* ----------------------------------------------------------------------------------------------------------- wrappers */

.wrapper--load-progress {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  position: absolute;
  -webkit-transition: all 200ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.wrapper--load-progress.inactive {
  opacity: 0;
}

/* ----------------------------------------------------------------------------------------------------------- wrappers */

/* ------------------------------------------------------------------------------------------ header */

.logo {
  position: relative;
  max-width: 10rem;
  z-index: 100;
}

.logo img {
  border-radius: 0;
}

.dark .logo,
.is-navi-active .logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  max-width: 10rem;
  z-index: 100;
  margin: 0;
}

@media screen and (min-width: 48rem) {
  .logo--main {
    position: absolute;
    left: 50%;
    top: 1rem;
    transform: translate(-50%, 0);
    max-width: 34rem;
    margin: 0;
  }
}

@media screen and (min-width: 64rem) {
  .logo--main {
    -webkit-transition: all 300ms ease;
    -webkit-transition-delay: ease, 0s;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .dark .logo--main {
    position: absolute;
    left: 50%;
    top: 8rem;
    opacity: 0;
    max-width: 10rem;
    transform: translate(-50%, 0);
  }
}

/* ------------------------------------------------------------------------------------------ header */

/* ----------------------------------------------------------------------------------------------------------- mainnav */

.togglenav {
  position: relative;
  /* right: 2rem; */
  text-transform: uppercase;
  color: #2a3842;
  display: block;
  text-decoration: none;
  /* top: 2rem; */
  width: 2rem;
  height: 20px;
  margin-top: 0.25rem;
  z-index: 20;
  display: block;
  -webkit-transition: all 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.togglenav__inner {
  width: 2rem;
  height: 1px;
  top: 7.5px;
  left: 0px;
  display: block;
  background-color: #B51621;
  position: absolute;
  -webkit-transition: all 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.togglenav__inner:before, .togglenav__inner:after, .closelink:before, .closelink:after {
  content: "";
  height: 1px;
  width: 2rem;
  position: absolute;
  left: 0px;
  top: -7.5px;
  background-color: #B51621;
  -webkit-transition: all 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.togglenav__inner:after, .closelink:after {
  width: 2rem;
  top: 7.5px;
}

.togglenav.is-active .togglenav__inner {
  background-color: transparent;
}

.togglenav.is-active .togglenav__inner:before, .closelink:before {
  transform: rotate(-135deg);
  top: 0;
  left: 0;
}

.togglenav.is-active .togglenav__inner:after, .closelink:after {
  transform: rotate(135deg);
  width: 2rem;
  top: 0;
  left: 0px;
}

.togglenav.is-active .togglenav__inner:before, .togglenav.is-active .togglenav__inner:after {
  background-color: #fff;
}

header[role="banner"] {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255,255,255, 0);
  transition: background-color 300ms ease-out;
}

.dark header[role="banner"] {
  background-color: rgba(255,255,255, 1);
}

header[role="banner"] .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

.wrapper--navi {
  position: fixed;
  width: 100vW;
  z-index: 10;
  height: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: #004d82;
  transition: all 300ms ease-out;
  scrollbar-color: #000000 #fff;
  scrollbar-width: thin;
}

.wrapper--navi.is-active {
  height: 100vH;
}

@media screen and (min-width: 64rem) {
  .wrapper--navi.is-active {
    height: auto;
  }
}

/* .wrapper--navi nav {
  height: auto !important;
} */

.mainnav {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  overflow-y: auto;
  scrollbar-color: #000000 #fff;
  scrollbar-width: auto;
}

.mainnav::-webkit-scrollbar, body::-webkit-scrollbar-track {
  width: 8px;
  background-color: transparent;
  background-color: #fff;
}

.mainnav::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: #000000;
}  

.mainnav__items {
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-type: none;
  height: 100vH;
  max-width: 100rem;
}

@media screen and (min-width: 64rem) {
  .mainnav {
    position: relative;
  }

  .mainnav__items {
    height: auto;
    flex-wrap: nowrap;
    padding-top: 5rem;
    padding-bottom: 5rem;  
  }

}

@media screen and (min-width: 102rem) {
  .mainnav__items {
    margin-left: auto;
    margin-right: auto;
  }
}

.mainnav__items > li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 0 0 100%;
}

@media screen and (min-width: 64rem) {
  .mainnav__items > li {
    flex: 0 0 auto;
  }
}

.subnav__itemlist {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-left: 1rem;
}

.mainnav__items a {
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  padding: 1rem 0;
  display: inline-block;
}

.mainnav__items a.navitem__link--active, 
.mainnav__items a.subnav__link--active {
  text-decoration: underline;
}

@media screen and (min-width: 64rem) {
  .mainnav__items a {
    padding: 1rem;
  }

  .subnav__itemlist {
    padding-left: 0;
  }  
}

.mainnav__items a:hover {
  text-decoration: underline;
}

.mainnav__items .subnav__itemlist a {
  font-weight: 300;
}

/* ----------------------------------------------------------------------------------------------------------- mainnav */

/* ----------------------------------------------------------------------------------------------------------- content general */

.frame-space-before-small {
  padding-top: 1rem;
}

.frame-space-before-medium {
  padding-top: 2rem;
}

.frame-space-before-large {
  padding-top: 4rem;
}

.frame-space-before-extra-large {
  padding-top: 5.5rem;
}

.frame-space-after-small {
  padding-bottom: 1rem;
}

.frame-space-after-medium {
  padding-bottom: 2rem;
}

.frame-space-after-large {
  padding-bottom: 4rem;
}

.frame-space-after-extra-large {
  padding-bottom: 5.5rem;
}

@media screen and (min-width: 1024px) {

  .frame-space-before-small {
    padding-top: 2rem;
  }

  .frame-space-before-medium {
    padding-top: 4rem;
  }

  .frame-space-before-large {
    padding-top: 8rem;
  }

  .frame-space-before-extra-large {
    padding-top: 11rem;
  }

  .frame-space-after-small {
    padding-bottom: 2rem;
  }

  .frame-space-after-medium {
    padding-bottom: 4rem;
  }

  .frame-space-after-large {
    padding-bottom: 8rem;
  }

  .frame-space-after-extra-large {
    padding-bottom: 11rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ww-border-radius-large);
}

i, 
svg {
  display: block;
}

svg {
  max-width: 100%;
  height: auto;
}

i svg {
  width: 100%;
}

.frame-layout-5 img {
  border-radius: var(--ww-border-radius);
}

.main ul {
  margin-left: 1.25rem;
}

.video-embed,
.eventnews-video-entry {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.video-embed iframe, 
.video-embed object, 
.video-embed embed, 
.video-embed-item,
.eventnews-video-entry iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ce-headline-center {
  text-align: center;
}

.ce-headline-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

path, polygon, line, rect, circle, polyline {
  -webkit-transition: all 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.container--twocolumn, 
.container--threecolumn, 
.container--fourcolumn {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.container--twocolumn-12-23 {
  align-items: center;
}

@media screen and (min-width: 64rem) {
  .container--twocolumn {
    align-items: center;
  }

  .container--threecolumn {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 4rem;
  }
}

.col--half,
.col--third, 
.col--fourth {
  flex: 0 0 100%;
}

.col--half > .frame-type-image > .frame__inner {
  width: 100%;
}

.col--third {
  padding-top: 4rem;
}

.ce-textpic.ce-center.ce-above {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.frame-container-chronic .frame {
  margin-bottom: 4rem;
}

.ce-textpic.ce-nowrap.ce-intext {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.frame-container-chronic .ce-textpic.ce-nowrap.ce-intext .ce-gallery,
.frame-container-chronic .ce-textpic.ce-nowrap.ce-intext .ce-bodytext {
  flex: 0 0 100%;
}

.main__content .frame-container-honors .ce-textpic.ce-nowrap.ce-intext {
  display: initial;
}

.main__content .ce-textpic.ce-nowrap.ce-gallery {
  order: -1;
}

@media screen and (min-width: 64rem) {
  .ce-textpic.ce-nowrap.ce-intext {
    align-items: center; 
    flex-wrap: wrap;
  }

  .frame-container-chronic .ce-textpic.ce-nowrap.ce-intext .ce-gallery {
    flex: 0 0 calc(40% - 2rem);
    order: unset;
  }

  .frame-container-chronic .ce-textpic.ce-nowrap.ce-intext .ce-bodytext {
    flex: 0 0 calc(60% - 2rem);
  }

}

@media screen and (min-width: 85.375em) {
  .ce-textpic.ce-nowrap.ce-intext {
    flex-wrap: nowrap;
  }
}

.frame-container-yearboxes .container--moreboxes {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.frame-container-yearboxes .container--moreboxes > .frame {
  flex: 0 0 100%;
  background-color: var(--ww-light-grey);
  border-radius: var(--ww-border-radius-large);
}

.frame-container-yearboxes .container--moreboxes > .frame header {
  display: flex;
  justify-content: flex-end;
  padding-right: 4rem;
  align-items: center;
}

.frame-container-yearboxes .container--moreboxes > .frame header h3 {
  aspect-ratio: 2/1;
  transform: translate(0,-50%);
  background-color: var(--ww-primary-white);
  border-radius: var(--ww-border-radius);
  padding: 1rem 1rem 1rem;
  margin-bottom: 0;
  color: var(--ww-primary-red);
}

.frame-container-yearboxes .container--moreboxes > .frame .ce-text,
.frame-container-yearboxes .container--moreboxes > .frame .ce-bodytext {
  padding: 0 2rem 2rem; 
}

@media screen and (min-width: 48rem) {
  .frame-container-yearboxes .container--moreboxes > .frame {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media screen and (min-width: 85.375rem) {
  .frame-container-yearboxes .container--moreboxes > .frame {
    flex: 0 0 calc(33.33% - 2.67rem);
  }
}

@media screen and (min-width: 64rem) {
  .frame-multicolumn .ce-text {
    columns: 2;
    column-gap: 4rem;
  }
}

.ce-textpic.ce-center.ce-above .ce-gallery {
  padding-bottom: 3rem;
}

.ce-image.ce-center img {
  margin-left: auto;
  margin-right: auto;
}

.ce-image.ce-right img {
  margin-left: auto;
}

.ce-image.ce-left img {
  margin-right: auto;
}

.col.has-image {
  order: -1;
}

@media screen and (min-width: 64rem) {
  .col.has-image {
    order: unset;
  }  
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages {
  margin-top: 5.5rem;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages .frame__inner {
  display: flex;
  justify-content: flex-end;
  max-width: 20rem;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0;
  background-color: var(--ww-light-grey);
  padding: 1rem;
  border-radius: var(--ww-border-radius-large);
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages header {
  text-align: right;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0 1rem;
  flex: 0 1 auto;
  margin-left: auto;
  margin-right: 0;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages header h4 {
  font-size: 1.25rem;
  white-space: nowrap;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages header i {
  flex: 0 0 1.25rem;
  height: 1.25rem;
  transition: transform 300ms ease-out;
  transform: rotate(0);
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages header.is-active i {
  transform: rotate(45deg);
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages ul {
  list-style-type: none;
  text-align: right;
  height: 0;
  overflow: hidden;
  flex: 0 0 100%;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages ul.has-transition {
  transition: height 300ms ease-out;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages ul.is-active {
  height: auto;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages ul li {
  padding: 0.25rem 0;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages ul a {
  padding: 0.25rem 0;
  color: var(--ww-primary-text);
  display: inline-block;
}

.main__content .frame-type-shortcut:first-child .frame-type-menu_subpages ul li:first-child a {
  margin-top: 1rem;
}

.main__content .frame-type-shortcut:first-child + .frame-type-header h1 {
  margin-top: 4rem;
}

.frame-layout-5 .container--moreboxes .container--twocolumn .frame__inner {
  padding: 0;
}

@media screen and (min-width: 64rem) {
  .frame-layout-5 .container--moreboxes .container--twocolumn {
    align-items: stretch;
  }
}

@media screen and (min-width: 64rem) {
  .col--half {
    flex: 0 0 calc(50% - 2rem);
  }
  .frame-container-results-top .col--left {
    flex: 0 0 calc(40% - 2rem);
  }

  .frame-container-results-top .col--right {
    flex: 0 0 calc(60% - 2rem);
  }
}

@media screen and (min-width: 81.25rem) {
    .col--third {
      flex: 0 0 calc(33.33% - 2.67rem);
      padding-top: 0;
      height: auto;
  }

}

@media screen and (min-width: 85.375rem) {
  .frame-container-results-top .col--left,
  .frame-container-results-top .col--right {
    flex: 0 0 calc(50% - 2rem);
  }
}

.start .col--right .has--subheader {
  padding: 1rem 0;
}

header + .ce-text {
  padding-top: 0.5rem;
}

.col--left.col--30 {
  flex: 0 0 100%;
}

.col--right.col--70 {
  flex: 0 0 100%;
  padding-left: 0;
}

.col--left.col--70 {
  flex: 0 0 100%;
  padding-right: 0;
}

.frame-is-wide .col--right.col--70,
.frame-is-wide .col--left.col--70,
.frame-is-wide .col--half:first-child {
  padding-bottom: 0;
}

.col--right.col--30 {
  flex: 0 0 100%;
}

@media screen and (min-width: 64rem) {

  .col--left.col--30 {
    flex: 0 0 calc(33.33% - 1rem);
  }

  .col--right.col--70 {
    flex: 0 0 calc(66.67% - 1rem);
    padding-bottom: 0;
  }

  .col--left.col--70 {
    flex: 0 0 66.66%;
    padding-right: 2rem;
    padding-bottom: 0;
  }

  .col--right.col--30 {
    flex: 0 0 33.34%;
    padding-left: 2rem;
  }

  .frame-is-wide .col--left.col--70 {
    flex: 0 0 57.9%;
    padding: 0;
  }

  .frame-is-wide .col--right.col--30 {
    flex: 0 0 42.1%;
    padding: 0;
  }
}

@media screen and (min-width: 105rem) {
  .col--right.col--30 {
    padding-left: 4rem;
  } 
}

.frame-wrapper {
  border: 1px solid #000000;
  padding: 1rem;
  margin: 1rem 0;
}

.table-wrapper {
  margin: 1rem 0;
  width: 100%;
  /* max-width: calc(100vW - 6rem); */
  display: block;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 48rem) {
  .table-wrapper {
    overflow: visible;
  }
}

.main table th {
  font-weight: 600;
  background-color: transparent;
  padding: 1.75rem 0;
  text-align: left;
  text-transform: uppercase;
  font-size: 1.25rem;
}

@media screen and (min-width: 48rem) {
  .main table th {
    font-size: 2.25rem;
  }
}

.main table td {
  font-size: 1rem;
  padding: 1.75rem 1rem;
  text-align: left;
  font-weight: 300;
}

@media screen and (min-width: 48rem) {
  .main table td {
    padding: 0.5rem 1rem;
  }
}

.main table td:last-child,
.main table th:last-child {
  text-align: right;
}

.main table tr:nth-child(2n+1) td {
  background-color: var(--ww-light-grey);
}

.main .frame-layout-5 table tr:nth-child(2n+1) td {
  background-color: var(--ww-grey);
}

.main table tr:nth-child(2n+2) td {
  background-color: var(--ww-primary-white);
}

.wrapper--main-7 {
  position: relative;
}

.wrapper--main-7:before {
  content: "";
  background: url(../../user_upload/images/icons/probike-service-chain.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -15rem;
  width: 33vW;
  height: 33vW;
  transform: translate(0, -50%);
  z-index: -1;
}

@media screen and (min-width: 48rem) {
  .wrapper--main-7:before {
    content: "";
    top: -10rem;
  }
}

/* ----------------------------------------------------------------------------------------------------------- content general */

/* ----------------------------------------------------------------------------------------------------------- contentheader */


.is-regular .main__headerimage {
  margin-right: 0;
  max-height: 100vH;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.is-regular .main__headerimage:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 20%;
  height: 100%;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.is-start .main__headerimage {
  position: relative;
  padding-right: 15%;
  margin-bottom: 6.875rem;
}

.is-start .container-pageheader-image {
  border-bottom-right-radius: 6.25rem;
  overflow: hidden;
  max-height: 100vH;
}

.container-pageheader-logo {
  position: absolute;
  right: 8.33%;
  top: 50%;
  transform: translate(0, -35%);
  z-index: 1;
  max-width: 6rem;
}

@media screen and (min-width: 48rem) {
  .container-pageheader-logo {
    top: 50%;
    transform: translate(0, -50%);
    max-width: none;
  }  
}
/* ----------------------------------------------------------------------------------------------------------- contentheader */

/*------------------------------------------------------------------------------------------------------------------ ticker*/

.ticker {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 55vH;
  left: 0;
  opacity: 0;
  transition: opacity 300ms ease-out;
}

@media screen and (min-width: 64rem) {
  .ticker {
    top: auto;
    bottom: 0;
  }  
}

.ticker.active {
  opacity: 1;
}

.scrolltext,
.scrolltext a {
  display: inline-block;
  transition: all .2s ease-out;
  font-size: 1.5rem;
  font-weight: 500;
}

.scrolltext a {
  text-decoration: underline;
}

.scrolltext a:hover {
  color: var(--ww-primary-red);
}

.marquee {
  height: 2.6875rem;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 0;
}

.marquee__inner {
  display: block;
  width: 200%;
  margin: 0.5rem 0 0.5rem;
  position: absolute;
}

.ticker.active .marquee__inner {
  animation: marquee 15s linear infinite;
}

@media screen and (min-width: 48rem) {
  .ticker.active .marquee__inner {
    animation: marquee 20s linear infinite;
  }
}

@media screen and (min-width: 64rem) {
  .start.has-ticker .frame-type-wwcontentprovider_ticker {
    margin-top: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
  }

  .scrolltext,
  .scrolltext a {
    font-size: 3rem;
  }

  .marquee {
    height: 7.125rem;
  }

  .marquee__inner {
    margin: 2.25rem 0 2.25rem;  
  }

  .ticker.active .marquee__inner {
    animation: marquee 15s linear infinite;
  }
}

@media screen and (min-width: 64rem) {
  .ticker.active .marquee__inner {
    animation: marquee 25s linear infinite;
  }
}

.marquee div {
  float: left;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}

/*------------------------------------------------------------------------------------------------------------------ ticker*/

/* ----------------------------------------------------------------------------------------------------------- content */

.header-background {
  max-width: 100rem;
  width: min(100% - 2rem, 100rem);
  position: absolute;
  z-index: 0;
  /* left: 50%; */
  left: 0;
  top: 0;
  /* transform: translate(-50%,0); */
  display: block;
  background: url(../images/layout/scl-grafix-line.svg) top left no-repeat;
  height: 100%;
  opacity: 0.5;
}

.main__content {
  position: relative;
  z-index: 1;
}

.main__content > * {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.main__content > .frame:not(:first-child) {
  margin-top: 4rem;
}

.main__content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 12rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #B51621;
}

@media screen and (min-width: 48rem) {
  .main__content h1 {
    font-size: 6rem;
    margin-top: 9.5rem;
    margin-bottom: 6.25rem;
    padding-bottom: 2rem;
  }  
}

.articlelist {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.listitem--eventsnews {
  flex: 0 0 100%;
}

@media screen and (min-width: 48rem) {
  .articlelist {
    align-items: stretch;
  }

  .listitem--eventsnews {
    flex: 0 0 calc(50% - 2rem);
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 64rem) {
  .articlelist {
    gap: 8rem;
  }

  .listitem--eventsnews {
    flex: 0 0 calc(50% - 4rem);
  }
}

@media screen and (min-width: 85.375rem) {
  .articlelist {
    gap: 4rem;
  }  
  .listitem--eventsnews {
    flex: 0 0 calc(33.33% - 2.67rem);
  }
}

@media screen and (min-width: 48rem) {
  .listitem--eventsnews header {
    min-height: 5.25rem;
  }

  .frame--announce header {
    min-height: 6.5rem;
  }
}

.frame-announce header {
  display: flex;
  flex-wrap: wrap;
}

.frame-announce header > * {
  flex: 0 0 100%;
}

.frame-announce header > time { 
  order: -1;
  text-align: right;
}

.listitem--eventsnews figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--ww-border-radius-large);
  margin-bottom: 1rem;
}

.listitem--eventsnews figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-review .listitem--eventsnews .listitem__date--header {
  display: none;
}

.frame-announce .listitem--eventsnews .listitem__footer time  {
  display: none;
}

.listitem--eventsnews .listitem__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.frame-announce .listitem--eventsnews .listitem__footer {
  justify-content: flex-end;
}

.listitem--eventsnews .listitem__morelink span {
  display: none;
}

.listitem--eventsnews .listitem__morelink {  
  width: 3rem;
  height: 3rem;
  background-color: var(--ww-light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.listitem--eventsnews .listitem__morelink .svgicon {
  transition: transform 200ms ease-out;
  transform: rotate(-35deg);
  width: 2rem;
  flex: 0 0 2rem;
}

.listitem--eventsnews .listitem__morelink:hover .svgicon {
  transform: rotate(0deg);
}

.listitem--eventsnews .listitem__morelink .svgicon path { 
  fill: var(--ww-primary-text);
}

.detail--eventsnews {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.detail--eventsnews > * {
  flex: 0 0 100%;
}

.detail__images h4 {
  display: none;
}

.detail__eventsnews-downloads .links-files-register {
  margin-bottom: 2rem;
}

@media screen and (min-width: 48rem) {
  .detail__eventsnews-downloads {
    display: flex;
  }

  .detail__eventsnews-downloads > * {
    flex: 0 0 50%;
  }
  
  .detail__eventsnews-downloads .links-files-register {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 85.375rem) {
  .detail--eventsnews > .detail__image,
  .detail--eventsnews > header {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }

  .detail__content {
    flex: 1 0 calc(50% - 2rem);
    max-width: 64rem;
  }

}

.detail__images .eventsnews__ce-gallery {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.detail__images .eventsnews__image {
  aspect-ratio: 16/9; 
  flex: 0 0 calc(50% - 1rem);
  overflow: hidden;
}

@media screen and (min-width: 48rem) {
  .detail__images .eventsnews__image {
    flex: 0 0 calc(33.33% - 2rem);
  }  
}

@media screen and (min-width: 64rem) {
  .detail__images .eventsnews__image {
    flex: 0 0 calc(25% - 1.5rem);
  }  
}

.files--eventsnews {
  display: flex;
gap: 2rem;
}

.download--eventsnews {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 2rem;
  margin: 1rem 0;
}

.list-registrations {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}

.list-registrations li {
  flex: 0 0 100%;
}

@media screen and (min-width: 48rem) {
  .list-registrations li {
    flex: 0 0 50%;
  }
}

@media screen and (min-width: 64rem) {
  .list-registrations li {
    flex: 0 0 33.33%;
  }
}

.list-registrations li {
  line-height: 1.75;
}

.detail__images .eventsnews__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .files--eventsnews {
  list-style-type: none;
  margin-left: 0;
}

.more-link,
.detail__backlink {
  color: var(--ww-primary-red);
  display: inline-block;
  white-space: nowrap;
  width: auto;
}

.more-link i,
.detail__backlink i {
  display: inline-block;
  margin-left: 1rem;
  width: 1.5rem;
}

.detail__backlink i {
  margin-left: 0;
  margin-right: 1rem;
  transform: rotate(180deg);
}

.main__content a.detail__eventsnews-registerlink,
.main__content a.detail__eventsnews-remailregistrationlink,
.main__content .btn-collapse {
  display: inline-block;
  border: 2px solid var(--ww-primary-red);
  border-radius: var(--ww-border-radius-large);
  padding: 0.75rem 2rem;
  margin-right: 2rem;
  margin-top: 1rem;
}

.main__content .btn-collapse {
  background-color: transparent;
  outline: none;
  box-shadow: 0;
  color: var(--ww-primary-red);
}

.main__content .btn-collapse span {
  color: var(--ww-primary-red);
}

.main__content .btn-collapse:hover {
  cursor: pointer;
}

.main__content .btn-collapse:hover span {
  color: var(--ww-primary-white);
}

.main__content .btn-collapse span.active {
  display: none;
}

.main__content .btn-collapse.active span.active {
  display: inline-block;
}

.main__content .btn-collapse.active span.inactive {
  display: none;
}

.main__content a.detail__eventsnews-registerlink:hover,
.main__content a.detail__eventsnews-remailregistrationlink:hover,
.main__content .btn-collapse:hover {
  background-color: var(--ww-primary-red);
  color: var(--ww-primary-white);
  text-decoration: none;
}

.eventsnews-registration footer {
  margin-top: 2rem;
}

.eventsnews-registration .form-text {
  margin-bottom: 1rem;
}

.eventsnews-registration-success-popup {
  text-align: center;
}

.eventsnews-registration .t3-error {
  background-color: var(--ww-primary-red-10);
  border: 2px solid var(--ww-primary-red);
  padding: 1rem 2rem;
  border-radius: var(--ww-border-radius-large);
  color: var(--ww-primary-red);
  margin: 1rem 0;
}

.popup__content {
    display: inline-block;
    padding: 2em 4em;
    background-color: #fff;
    text-align: left;
    max-width: 50%;
}

@media screen and (max-width: 1024px) {
  .popup__content {
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .popup__content {
    max-width: 90%;
  }
}

.popup__content h3 + p {
  margin: 1rem 0;
}

.popup__content .popup-modal-close {
  border: 2px solid var(--ww-primary-red);
  background-color: transparent;
  display: inline-block;
  padding: 0.75rem 2rem;
  color: var(--ww-primary-red);
  margin-top: 2rem;
  border-radius: var(--ww-border-radius-large);
}

.popup__content .popup-modal-close:hover {
  background-color: var(--ww-primary-red);
  color: var(--ww-primary-white);
  text-decoration: none;
}

.display-properties {
  padding: 0.25rem 0 0;
}

.display-properties span.label {
  font-weight: 500;
}

.main__content .frame__inner {
  position: relative;
}

.frame-container-results-top .col.has-image .image {
  max-width: 80%;
}

@media screen and (min-width: 64rem) {
  .frame-container-results-top .col.has-image .image {
    max-width: 80%;
  }
}

.frame-type-header.frame-layout-7 header h1 {
  padding-right: 10rem;
}

.frame-type-header.frame-subheadline-rotate .frame__inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.frame-type-header.frame-subheadline-rotate header > *:first-child {
  margin-left: 1rem;
  order: 1;
}

.frame-type-header.frame-subheadline-rotate header h2 {
  margin-bottom: 0;
}

.frame-type-header.frame-subheadline-rotate header > *:last-child {
  transform-origin: center left;
  transform: rotate(-90deg);
  text-transform: none;
  font-size: 0.75rem;
  margin-bottom: 0;
  margin-top: -1rem;
  display: inline-block;
  vertical-align: top;
}

.frame-layout-6 header h2 {
  color: var(--ww-primary-red);
  font-size: 3rem;
}

@media screen and (min-width: 48rem) {
  .frame-type-header.frame-subheadline-rotate header > *:last-child {
    font-size: 1.25rem;
    margin-top: -2rem;    
  }  

  .frame-layout-6 header h2 {
    font-size: 6rem;
  }
}

.btn-call-to-action {
  background-color: transparent;
  border: 0;
}

.btn-call-to-action:focus,
.btn-call-to-action:hover {
  outline: none;
  box-shadow: none;
}

.btn-call-to-action:hover {
  cursor: pointer;
} 

.btn-become-member {
  position: absolute;
  right: 2rem;
  bottom: 0;
  transform: translate(0,50%);
  transition: transform 300ms ease-out;
}

.btn-become-member:hover { 
  transform: translate(0,50%) rotate(10deg);
}

.eventsnews-eventlist .groupentries {
  background-color: var(--ww-light-grey);
  overflow: hidden;
  border-radius: var(--ww-border-radius-large);
  margin-bottom: 4rem;
}

.frame-container-dates .eventsnews-eventlist {
  border: 2px solid var(--ww-primary-red);
  border-radius: var(--ww-border-radius-large);
  overflow: hidden;
  padding: 0;
}

.frame-container-dates .eventsnews-eventlist .groupentries { 
  margin-bottom: 0;
  border-radius: 0;
  height: 0;
  overflow: hidden;
}

.frame-container-dates .eventsnews-eventlist .groupentries.has-transition { 
  transition: height 300ms ease-out;
}

.frame-container-dates .eventsnews-eventlist .groupentries.active { 
  height: auto;
}

.eventsnews-eventlist .groupentries .monthname h2 {
  text-transform: none;
  margin-bottom: 0.5rem;
  padding: 1.5rem 1.5rem 0;
  font-size: 1.5rem;
}

.eventsnews-eventlist .listitem--eventteaser {
  padding: 1rem 1.5rem;
}

.frame-container-dates .eventsnews-eventlist .listitem--eventteaser {
  display: flex;
  align-items: center;
}

.frame-container-dates .eventsnews-eventlist .listitem--eventteaser time {
  order: -1;
  margin-right: 2rem;
  font-size: 1.125rem;
}

.eventsnews-eventlist .listitem--eventteaser.item-odd {
  background-color: var(--ww-grey);
}

.eventsnews-eventlist .listitem--eventteaser h3 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.frame-container-dates .eventsnews-eventlist .listitem--eventteaser h3 {

}

.eventsnews-eventlist .listitem__content {
  padding-bottom: 0;
}

.frame-container-dates .eventsnews-eventlist .listitem__content {
  display: none;
}

.frame-layout-8 .image {
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.frame-layout-8 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col--left.col--30 .frame-layout-8 .image {
  max-width: 24.875rem;
}

.main__content .frame-layout-5 > .frame__inner {
  background-color: var(--ww-light-grey);
  border-radius: var(--ww-border-radius-large);
  padding: 1rem;
}

@media screen and (min-width: 48rem) {
  .main__content .frame-layout-5 > .frame__inner {
    padding: 2rem;
  }  
}

/* ----------------------------------------------------------------------------------------------------------- content */

/* ----------------------------------------------------------------------------------------------------------- team & officials */

.frame-container-team .container--moreboxes,
.frame-container-officials .container--moreboxes,
.frame-container-honors .container--moreboxes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem;
}

.frame-container-officials .container--moreboxes > *,
.frame-container-honors .container--moreboxes > *,
.frame-container-team .container--moreboxes > * { 
  flex: 0 0 100%;
}

@media screen and (min-width: 33.75rem) {
  .frame-container-officials .container--moreboxes > *,
  .frame-container-team .container--moreboxes > * {  
    flex: 0 0 calc(50% - 1rem);
  }
}

/* @media screen and (min-width: 40rem) {
  .frame-container-honors .container--moreboxes > *{  
    flex: 0 0 calc(50% - 1rem);
  }
} */

@media screen and (min-width: 48rem) {
  .frame-container-team .container--moreboxes > * {  
    flex: 0 0 calc(33.33% - 1.34rem);
  }

  .frame-container-honors .container--moreboxes > * {  
    flex: 0 0 calc(50% - 2rem);
  }  
}

@media screen and (min-width: 64rem) {
  .frame-container-team .container--moreboxes,
  .frame-container-officials .container--moreboxes,
  .frame-container-team .container--moreboxes {
    gap: 4rem;
  }

  
  .frame-container-team .container--moreboxes > * {  
    flex: 0 0 calc(25% - 3rem);
  }

  .frame-container-officials .container--moreboxes > * {
    flex: 0 0 calc(33.33% - 2.67rem);
  }
}

@media screen and (min-width: 85.375rem) {
  .frame-container-honors .container--moreboxes > * {  
    flex: 0 0 calc(33.33% - 1.33rem);
  }  
  .frame-container-officials .container--moreboxes > * {
    flex: 0 0 calc(25% - 3rem);
  }  
}

.frame-container-team .container--moreboxes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1
}

.frame-container-officials .container--moreboxes .image,
.frame-container-team .container--moreboxes .image {
  aspect-ratio: 1/1;
}

.frame-container-team .container--moreboxes .image {
  max-width: 17rem;
}

.frame-container-officials .container--moreboxes .image img {
  object-fit: cover;
  border-radius: var(--ww-border-radius-large);
  overflow: hidden;  
}

.frame-container-team .container--moreboxes p {
  font-size: 1.25rem;
}

.frame-container-team .container--moreboxes em {
  font-style: normal;
  font-size: 1rem;
}

.frame-container-officials .container--moreboxes .ce-bodytext {
  width: 100%;
}

.frame-container-officials .container--moreboxes .ce-bodytext h3 {
  margin-bottom: 0.5rem;
  text-transform: none;
}

.frame-container-officials .container--moreboxes .ce-textpic.ce-center.ce-above .ce-gallery {
  padding-bottom: 1rem;
}

/* ----------------------------------------------------------------------------------------------------------- team & officials */

/* ----------------------------------------------------------------------------------------------------------- results */

.tx-results {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.results-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.frame--result {
  flex: 0 0 100%;  
}

@media screen and (min-width: 64rem) {
  .results-list {
    gap: 4rem;
  }
  
  .frame--result {
    flex: 0 0 calc(50% - 2rem);
  }
}


@media screen and (min-width: 85.375rem) {
  .results-list {
    gap: 4rem;
  }
  
  .frame--result {
    flex: 0 0 calc(33.33% - 2.67rem);
  }
}

.tx-results h3 {
  margin-bottom: 0;
  padding: 2rem 2rem 1rem 2rem;
  background-color: var(--ww-light-grey);
  border-top-left-radius: var(--ww-border-radius-large);
  border-top-right-radius: var(--ww-border-radius-large);
  overflow: hidden;
}

.result-latest-category h3 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  text-transform: none;
}

.resultitem {
  padding: 0.75rem 2rem;
  background-color: var(--ww-light-grey);
}

.resultitem:nth-child(2n+1) {
  background-color: var(--ww-grey);
}

.resultitem:last-child {
  padding-bottom: 2rem;
  border-bottom-left-radius: var(--ww-border-radius-large);
  border-bottom-right-radius: var(--ww-border-radius-large);
  overflow: hidden;
}

.result-latest-category .resultitem:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 1rem;
}

.download--resultlist {
  padding-right: 1.5rem;
  position: relative;
  display: block;
}

.main__content .download--resultlist {
  color: var(--ww-primary-text);
}

.svgicon--download {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  width: 1.125rem;
}

.results-latest {
  flex: 0 0 100%;
  border-radius: var(--ww-border-radius-large);
  background-color: var(--ww-light-grey);
  overflow: hidden;
}

/* ----------------------------------------------------------------------------------------------------------- results */

/* ----------------------------------------------------------------------------------------------------------- calendar */

.eventCalendar-wrap,
.eventsCalendar-currentTitle,
ul.eventsCalendar-daysList.showAsWeek,
.showAsWeek .eventsCalendar-day a {
  background-color: transparent;
  border-color: transparent;
}

.eventsCalendar-slider {
  min-height: 300px;
}

.eventsCalendar-currentTitle {
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventsCalendar-currentTitle .monthTitle {
  color: var(--ww-primary-text);
  font-weight: 500;
  font-size: 1.125rem;
}

.eventCalendar-wrap a.arrow i {
  width: 0.5rem;
}

.eventCalendar-wrap a.arrow.prev {
  transform: rotate(180deg);
}

ul.eventsCalendar-daysList.showAsWeek {
  display: grid;
  gap: 0.2rem;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 2.5rem;
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

.eventsCalendar-daysList.showAsWeek li {
  width: auto;
  height: auto;
  float: none;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eventsCalendar-daysList::before, 
.eventsCalendar-daysList::after {
  display: none;
}

.showAsWeek .eventsCalendar-day a { 
  font-weight: 300;
  color: var(--ww-primary-text);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.eventsCalendar-daysList li.current,
.eventsCalendar-daysList li.dayWithEvents {
  background-color: transparent;
  position: relative;
}

.eventsCalendar-daysList li.current:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  display: block;
  border-radius: 50%;
  z-index: 0;
  background-color: var(--ww-grey);
  aspect-ratio: 1/1;
  transform: translate(-50%,-50%);
}

.eventsCalendar-daysList li.dayWithEvents:before {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 2px;
  display: block;
  z-index: 0;
  background-color: var(--ww-primary-red);
}

.eventsCalendar-daysList li.dayWithEvents a {
  border: 0;
  color: var(--ww-primary-text);
}

.eventsCalendar-list-wrap {
  display: none;
}

.tooltip {
  position: fixed;
  transform: translate(-50%,0);
}

.tooltip.active {
  display: block;
}

.tooltip:after {
  border-top-color: var(--ww-primary-blue);
}

.tooltip ul {
  background: var(--ww-primary-blue);
  border-radius: var(--ww-border-radius);
}

.tooltip time small {
  display: none;
}

/* ----------------------------------------------------------------------------------------------------------- calendar */

/* ----------------------------------------------------------------------------------------------------------- gallery */

.list--gallery,
.ifws-xgallery__ce-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}

.gallery-item {
  flex: 0 0 100%;
}

.ifws-xgallery__image {
  flex: 0 0 calc(50% - 2rem);
}

@media screen and (min-width: 40rem) {
  .gallery-item {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media screen and (min-width: 64rem) {
  .list--gallery,
  .ifws-xgallery__ce-gallery {
    gap: 4rem;
  }

  .gallery-item,
  .ifws-xgallery__image {
    flex: 0 0 calc(33.33% - 2.67rem);
  }
}

.gallery-item .listitem__image,
.ifws-xgallery__ce-gallery .image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--ww-border-radius-large);
}

.gallery-item .listitem__content {
  padding-bottom: 0;
}

.list--gallery img,
.ifws-xgallery__ce-gallery img {
  width: 100%;
}

.gallery-list-image .ifws-xgallery-showlink {
  display: block;
  border-radius: var(--ww-border-radius-large);
  overflow: hidden;
}

.gallery-list-text .ifws-xgallery-showlink {
  text-transform: none;
  font-size: 1.25rem;
}

.detail__backlink--gallery {
  display: inline-block;
  margin: 2rem auto;
}

/* ----------------------------------------------------------------------------------------------------------- gallery */

/* ----------------------------------------------------------------------------------------------------------- slider */

.slider__container {
  overflow: hidden;
  display: flex;
  min-height: 50vH;
}

.slider__container > .frame {
  /* float: left; */
  min-width: calc(100vW - 15%);
}

.slider__container > .frame > .frame__inner,
.slider__container > .frame > .frame__inner > .ce-image,
.slider__container > .frame > .frame__inner > .ce-image > .ce-gallery,
.slider__container > .frame > .frame__inner > .ce-image > .ce-gallery > .ce-column,
.slider__container > .frame > .frame__inner > .ce-image > .ce-gallery > .ce-column > .image {
  height: 100%;
}

@media screen and (min-width: 85.375rem) {
  .slider__container {
    min-height: 0;
  }  
  .slider__container > .frame > .frame__inner,
  .slider__container > .frame > .frame__inner > .ce-image,
  .slider__container > .frame > .frame__inner > .ce-image > .ce-gallery,
  .slider__container > .frame > .frame__inner > .ce-image > .ce-gallery > .ce-column,
  .slider__container > .frame > .frame__inner > .ce-image > .ce-gallery > .ce-column > .image {
    height: auto;
  }
}

.slider__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ----------------------------------------------------------------------------------------------------------- slider */

/* ----------------------------------------------------------------------------------------------------------- form */

form .row {
  display: flex;
  gap: 2rem 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

form > .form-group,
form > .form-groups > .form-group {
  margin-top: 2rem;
}

form .row .col-6 {
  flex: 0 0 100%;
}

@media screen and (min-width: 64rem) {
  form .row {
    gap: 2rem 4rem;
  }

  form .row .col-6 {
    flex: 0 0 calc(50% - 2rem);
  }
}

label {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: block;
}

input:not([type="checkbox"]),
select,
textarea {
  background-color: var(--ww-light-grey);
  border-radius: var(--ww-border-radius-small);
  font-size: 1.25rem;
  padding: 1rem;
  border: 0;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  box-shadow: 0;
}

input[type="checkbox"] {
  margin-right: 0.5rem;
}

form .actions {
  padding-top: 2rem;
}

form button {
  padding: 1rem 2rem;
  display: block;
  background-color: transparent;
  border: 2px solid var(--ww-primary-red);
  border-radius: var(--ww-border-radius-small);
  color: var(--ww-primary-red);
  letter-spacing: 0.02rem;
  white-space: nowrap;
  font-size: 1.25rem;
}

form button:hover {
  cursor: pointer;
  background-color: var(--ww-primary-red);
  color: var(--ww-primary-white);
}

form button i {
  display: inline-block;
  margin-left: 1rem;
}

form button:hover i path {
  fill: var(--ww-primary-white);
}
/* ----------------------------------------------------------------------------------------------------------- form */

/* ----------------------------------------------------------------------------------------------------------- footer */

footer[role="contentinfo"] > .frame {
  max-width: 100rem;
  padding: 2rem 2rem 4rem;
  margin: 0 auto;
}

/* footer[role="contentinfo"] > .frame-type-textpic {
  max-width: 120rem;
} */

footer[role="contentinfo"]  .col--third.col--three {
  display: flex;
  flex-direction: column;
}

footer[role="contentinfo"]  .col--third.col--three > *:last-child {
  margin-top: auto;
}

footer[role="contentinfo"] h3 {
  font-weight: 400;
  color: var(--ww-primary-red);
}

/* footer .ce-gallery {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow: auto;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #B51621;
  max-width: none;
  scrollbar-color: #B51621 #fff;
  scrollbar-width: thin;
} 

footer .ce-gallery::-webkit-scrollbar,
footer .ce-gallery::-webkit-scrollbar-track {
  width: 8px;
  background-color: #fff;
  background-color: transparent;
}

footer .ce-gallery::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: none;
  background-color: #B51621;
}  */


.webcamimage {
  border-radius: var(--ww-border-radius-large);
  overflow: hidden;
}

.wetter-osttirol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.weather-day {
  flex: 0 0 33.33%;
}

.weather-link {
  margin-left: auto;
}

div#footerSpacer {
  display: none;
}

.footer__sponsors {
  position: relative;
  overflow: hidden;
  height: 10rem;
  border-bottom: 2px solid var(--ww-primary-red);
  padding: 2rem 0;
}

.footer__sponsors {
  overflow: hidden;
  position: relative; 
  width: 100%;
}

@keyframes sponsormarquee {
  0% { transform: translte(0,0); }
  100% { transform: translate(-50%,0); }
}

.footer__sponsors .frame__inner {
   animation: sponsormarquee 15s linear infinite;
   float: left;
   overflow: hidden;
   display: block;
   width: 200%;
   position: absolute;
}

@media screen and (min-width: 48rem) {
  .footer__sponsors .frame__inner {
    animation: sponsormarquee 20s linear infinite;
  }
}

.footer__sponsors .ce-image {
  float: left;
  overflow: hidden;
  white-space: nowrap;
}

.footer__sponsors .ce-gallery {
  display: inline-block;
}

.footer__sponsors .ce-gallery .ce-column {
  display: inline-block;
  vertical-align: middle;
}

.footer__sponsors .ce-gallery .ce-column figure {
  width: 6rem;
  margin-left: 1rem;
  margin-right: 1rem;
  filter: grayscale(100%);
}

@media screen and (min-width: 48rem) {
  footer .col--third {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media screen and (min-width: 64rem) {
  footer .col--third {
    flex: 0 0 calc(33% - 2.67rem);
  }
}

/* ----------------------------------------------------------------------------------------------------------- footer */

/*------------------------------------------------------------------------------------------------------------ collapse */

.collapse {
  overflow: hidden;
  -webkit-transition: height 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: height 300ms ease;
  -o-transition: height 300ms ease;
  transition: height 300ms ease;
}

.collapse__permanent {
  display: block;
}

.collapse__trigger i {
  -webkit-transition: transform 300ms ease;
  -webkit-transition-delay: ease, 0s;
  -moz-transition: transform 300ms ease;
  -o-transition: transform 300ms ease;
  transition: transform 300ms ease;
}

.collapse__trigger.is--expanded i {
  transform: rotate(90deg);
}

.entry-collapse .collapse-flexible {
  height: 0;
  overflow: hidden;
}

.entry-collapse.active .collapse-flexible {
  height: auto;
}

.entry-collapse .flexible__inner {
  padding-top: 1.875rem;
}

.entry-collapse.has-transition .collapse-flexible {
  transition: all 300ms ease-out;
}

/*------------------------------------------------------------------------------------------------------------ collapse */

/*------------------------------------------------------------------------------------------------------------ properties */

.is--hidden {
  display: none;
}

/*------------------------------------------------------------------------------------------------------------ properties */


/*------------------------------------------------------------------------------------------------------------ cookies */
.om-cookie-panel {
  transform: translate(0,100%);
}

@media (min-width: 1024px) {
  .om-cookie-panel {
    width: 100%;
    left: 0;
    transform: translate(0,100%);
    border-right: 0;
    border-left: 0;
  }

  .om-cookie-panel.active { 
    transform: translate(0,0);
  }
}

.om-cookie-panel {
  flex-wrap: wrap;
}

.om-cookie-panel .cookie-panel__checkbox-wrap {
  flex: 0 0 100%;
}

@media screen and (min-width: 30rem) {
  .om-cookie-panel .cookie-panel__checkbox-wrap {
    flex: 0 0 auto;
    margin-right: 2rem;
  }
}

.om-cookie-panel .cookie-panel__checkbox-wrap + .cookie-panel__checkbox-wrap {
  margin-left: 0;
}

.om-cookie-panel label,
.om-cookie-panel p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
}

.om-cookie-panel .cookie-panel__button,
.om-cookie-panel .cookie-panel__link a {
  font-size: 0.875rem;
}

.cookie-panel__selection form {
  justify-content: flex-start;
}

.cookie-panel__selection form > * {
  position: relative;
}

.cookie-panel__control {
  margin-top: 1rem;
}

.om-cookie-panel .cookie-panel__button {
  border: 1px solid #000000;
  text-transform: none;
  background-color: transparent;
  color: #000000;
  border-radius: 0;
}

.om-cookie-panel .cookie-panel__button:hover {
  background-color: #000000;
  color: #fff;
}

.om-cookie-panel label {
  position: relative;
  top: auto;
  left: auto;
  margin: 0;
}

.om-cookie-panel .cookie-panel__checkbox + label {
  line-height: 1.4;
}

.om-cookie-panel .cookie-panel__checkbox + label::before {
  border-radius: 0;
  border-color: #000000;
  display: inline-block;
  float: none;
  vertical-align: center;
}

.om-cookie-panel .cookie-panel__checkbox--state-inactiv:checked + label::before {
  background-color: #000000;
}

.om-cookie-panel .cookie-panel__checkbox:checked + label::before {
  background-color: #000000;
}

.om-cookie-panel .cookie-panel__attribution {
  display: none;
}

/*------------------------------------------------------------------------------------------------------------ cookies */