/****************************************************************************
 * Wrapper
 ****************************************************************************/
.wrapper {
    padding-top: 5rem;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    overflow: hidden;
}
.wrapper > * {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%; 
}
.wrapper > .content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
}

@media screen and (min-width:64em){
    .wrapper{ 
        padding-top: 6rem;
    }
}


/****************************************************************************
 * Row
 ****************************************************************************/
.row {
    max-width: 75rem;
}
.row.wide {
    max-width: 100rem;
}

.row.extra_wide {
    max-width: 120rem;
}


/****************************************************************************
 * Countdown
 ****************************************************************************/
.countdown {
    width: 7em;
    display: inline-block;
    padding: 0 0.125em;
    font-variant-numeric: tabular-nums;
}
.countdown .counter_item {
    width: 1.25em;
    display: inline-block;
    text-align: right;
}
.countdown .trenner {
    display: inline-block;
    text-align: center;
    width: 0.375em;
}
.countdown .counter_item:first-child {
    width: 1.875em;
}

.countdown .counter_item > * {
    display: inline-block;
    width: 0.625em;
    text-align: center;
}


/****************************************************************************
 * Back To Top
 ****************************************************************************/
.back_to_top_wrapper {
    position: fixed;
    bottom: 1rem;
    left: 1rem; right: 1rem;
    max-width: 120rem; 
    margin: 0 auto;
    width: auto; height: 0;
    pointer-events: none;
    text-align: right;
    z-index: 2000;
}
.has_info_banner .back_to_top_wrapper {
    bottom: 4rem;
}
.back_to_top_wrapper .back_to_top {
    position: absolute; bottom: 0; right: 0;
    background-color: #ffcc00; pointer-events: all;
    cursor: pointer; opacity: 0; line-height: 1;
    border-radius: 50%; font-size: 1rem;
    width: 2.25em; height: 2.25em; text-align: center;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.scrolled + .content .back_to_top_wrapper .back_to_top {
    opacity: 1;
}

/*.back_to_top_wrapper .back_to_top:after {
    content: '\203A'; position: absolute; 
    left: 0; right: 0; bottom: 0; top: 0;
    width: 100%; height: 100%; 
    font-family: 'PilcrowRounded-Bold';
    font-weight: 700; font-size: 3em;
    line-height: 0.7;
    color: #FFFFFF;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
} */
.back_to_top_wrapper .back_to_top:after {
    content: '\203A';position: absolute;
    left: 50%; right: auto; bottom: auto; top: 50%;
    width: auto; height: auto;
    font-family: 'PilcrowRounded-Bold';
    font-weight: 700; line-height: 1;
    font-size: 3em; color: #FFFFFF;
    -webkit-transform: translate(-50%,-50%) rotate(-90deg);
    -moz-transform: translate(-50%,-50%) rotate(-90deg);
    -ms-transform: translate(-50%,-50%) rotate(-90deg);
    -o-transform: translate(-50%,-50%) rotate(-90deg);
    transform: translate(-50%,-50%) rotate(-90deg);
}

.back_to_top_wrapper .back_to_top:after {
    content: ''; position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 100%; height: 100%;
    background: url(../img/winterfest-icon-right.svg) no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media screen and (min-width: 40em){
    .back_to_top_wrapper .back_to_top {
        font-size: 1.125rem;
    }
}
@media screen and (min-width: 64em){
    .back_to_top_wrapper {
        bottom: 2rem;
        left: 2rem; right: 2rem;
    }
    .has_info_banner .back_to_top_wrapper {
        bottom: 5rem;
    }

    .back_to_top_wrapper .back_to_top {
        font-size: 1.25rem;
    }
}

/****************************************************************************
 * Iframe
 ****************************************************************************/
.light_widget_iframe_wrapper .iframe_wrapper {
    padding: 0; position: relative;
    width: 100%; height: auto;
    background-color: #FFFFFF;
    min-height: 7rem;
}
.light_widget_iframe_wrapper .iframe_wrapper iframe {
    position: relative; width: 100%; height: auto;
    top: 0; left: 0;
}

.iframe_wrapper {
  position: relative;
  display: block;
  padding: 0 0 56.25%;
  margin: 0 auto 1rem;
  background-color: #f1f1f1;
  white-space: normal;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.iframe_wrapper div {
  background: transparent;
  font-size: 0.875rem;
}
.iframe_wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.iframe_wrapper > div {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow-x: auto;
  padding: 1rem;
}
