
/*** Farben ***/
/** weiss: #fff **/
/** schwwarz: #000 **/
/** orange: #FF3C00 **/
/** weissgrau: #F7F7F7 **/
/** dunkelgrau: #707070 **/

:root {
	--white: #fff;
	--orange: #FF3C00;
	--whitegrey: #F7F7F7;
	--darkgrey: #707070;
	--darkred: #D13608;
	--bs-body-color: #000;
}

body {
	overflow-x: hidden;
	font-size: 16px;
}
img { max-width: 100%; height:auto;}
.container-fluid {
	padding-left: 0;
	padding-right: 0;
}

h1, h2, h3, h6 {
	color: var(--orange);
}
h3, h4, h5, h6 {
	font-family: "Baton Turbo Bold";
}
h1 {
	font-size: 3.375rem;
}
h2 {
	font-size: 2.25rem;
}
h3, h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 20px;
	font-size: 1.25rem;
}
h6 {
	font-size: 16px;
}

a {
	color: var(--orange);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
	color: var(--darkred);
}
hr {
	margin: 0.5rem 0;
	color: var(--orange); 
	opacity: 1;
}

#main-content a:not(.btn,.link-title,.fancybox) {
	text-decoration: none !important;
    display: inline-block;
    position: relative;	
}

#main-content a:not(.btn,.link-title,.fancybox)::after {
    content: '';
    position: absolute;    
    transform: scaleX(1);
    height: 1px;
    width: 100%;
    bottom: 0px;
    left: 0;
    background-color: var(--orange);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

#main-content a:not(.btn,.link-title,.fancybox):hover {
	text-decoration: none;
}

#main-content a:not(.btn,.link-title,.fancybox):hover::after {
    transform: scaleX(0);
    transform-origin: bottom right;
}

#main-content .leaflet-container a::after {
  content: none;
}
#main-content .leaflet-control-container .leaflet-control-zoom a { display:block;}

a.external-link-new-window {
	text-transform: uppercase;
	text-decoration: none;
}
a.external-link-new-window:hover {
	color: var(--darkred);
}
a.download {
	background-color: transparent;
	border: 1px solid black;
	color: black;
    position: relative;
    padding-right: 3rem;
    text-align: right;
    padding-top: 0.5rem;	
   
}
a.download:hover {
	background-color: transparent;
	color: rgba(0,0,0,0.8);
	border-color: rgba(0,0,0,0.8);
}

a.download .icon {
	font-size: 1.25rem;
    vertical-align: text-bottom;
    line-height: 1.25;
    position: absolute;
    right: 1rem;
    top: 5px;
    transition: top 0.25s ease;
}

a.download:hover .icon {
	top: 7px;
}


.btn {text-transform: uppercase; border-radius: 0;}
.btn-primary {
	color: var(--white);
	border-radius: 0;
	text-decoration: none;

	text-align: right;
	min-width: 330px;
	min-width: 20.625rem;
	font-size: 1.25rem;

	background: linear-gradient(to right, var(--darkred) 50%, var(--orange) 50%);
    background-size: 200% 100%;
    background-position: right bottom !important;
    transition: all .25s ease-out;
}
.btn-primary input {
	color: var(--white);
	background-color: transparent;
	border: none;
}
.btn-primary:hover {
	color: var(--white);
	background-position: left bottom !important;
}

.accordion-item {
	border-color: var(--orange);
	background-color: transparent;
}
.accordion-button {
	color: var(--orange);
	
}
.accordion-header {
	padding-bottom: 0;
}
.accordion-button::after {
	content: "\e900";
	font-family: 'MSU';
	background: none;
	width: unset;
    height: unset;
}
.accordion-button:not(.collapsed)::after {
	content: "\e903";
	background: none;
	transform: none;
}
.accordion-button:focus {    
    border-color: var(--orange);    
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
	color: var(--white);
    background-color: var(--orange);
    box-shadow: none;
}

.content ul:not(.powermail-errors-list) li:before {
	content: "\2022";
    color: var(--orange);
    font-weight: bold;
    display: inline-block;
	width: 1.25rem;
    font-size: 1rem;
    vertical-align: bottom;
    margin-left: -20px;
}


.bgwhitegrey {
	background-color: var(--whitegrey);
}
.bgorange {
	background-color: var(--orange);
}
.orange {
	color: var(--orange);
}

.row .overflow-left {
	margin-left: calc(50% - 50vw);
	max-width: calc(50vw);
	padding-left: 0;
}
.row .overflow-right > div {
	position: relative;
	width: calc(50vw - 0.85rem);
}


#header {
	background-color: var(--white);
}
#header .container {
	position: relative;
}
#logo {
	padding-top: 0.75rem;
	padding-bottom: 1rem;
	transition: all 500ms;
}
#logo img, #logo-short img {
	max-width: 13.75rem;
	height: auto;
}
#logo-short {
	display: none;
	z-index: 2;
	opacity: 0;
	transition: opacity 300ms;
}
#logo-short a {
	display: inline-block;
}
.scroll-to-fixed-fixed #logo-short  {
	opacity: 1;
}

#navigation {
	top: -4.8rem;
	margin-bottom: -3.75rem;
}
#navigation.scroll-to-fixed-fixed {
	background-color: var(--white);
}
.scroll-to-fixed-fixed #navbar {
	margin-top: 0rem;
}




#footer {
	width: 100%;
	height: 10rem;
	line-height: 3rem;
	color: black;
	overflow: hidden;
}
#footer .nav {
	margin-top: 3rem;
}
#footer p {
	font-size: 14px;
	margin: 0;
}
#footer img {
	max-width: 10.875rem;
	height: auto;
}
.ce-card {
	
}
.ce-card a {
	display: block;
	cursor: pointer;
}
.ce-card:hover .card-body,
.ce-card > a:hover .card-body {
	background-color: var(--orange);
	opacity: 0.75;
}
.ce-card:hover .card-body .card-text,
.ce-card > a:hover .card-body .card-text{
	opacity: 1;
}
.ce-card .card-body {
	position: absolute;
	z-index: 1;
	top: 0;
	display: flex;
	flex-direction: column;
	align-content: center;
	height: 100%;
	width: 100%;
	padding: 0;
	transition: all 600ms;
}
.ce-card .card-body .card-header {
	order: 2;
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	align-content: flex-end;
	padding: 0;
	border: none;
}
.ce-card .card-body .card-header > * {
	margin-bottom: 0;
	padding-bottom: 0;
}
.ce-card .card-body .card-header a,
.ce-card a .card-body .card-header > * {
	display: inline-block;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	cursor: pointer;
	line-height: 1.5;
	vertical-align: middle;
	color: var(--white);
	border-radius: 0;
	text-decoration: none;
	background-color: var(--orange);
	text-align: right;
	min-width: 330px;
	min-width: 20.625rem;
	font-size: 1.25rem;
}
.card .card-body .card-text {
	display: grid;
	opacity: 0;
	height: 100%;
	align-content: center;
	color: white;
	padding-top: 1.5rem;
	padding-left: 8.75em;
	transition: all 800ms;
}
.card-body .card-text p {
	width: 25rem;
}

#news-slider .slick-slide {
	padding-left: 13px;
	padding-right: 13px;
}
#news-slider .news-list-item .news-image {
	position: relative;
}
#news-slider .news-list-item .news-image .news-img {
	min-height: 199px;
	background-color: var(--whitegrey);
}
#news-slider .news-list-item .news-image .btn {
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 11.5625rem;
	font-size: 14px;
	line-height: 18.5px;
	text-transform: uppercase;
}
#news-slider .news-list-item .news-image .btn .icon {
	font-size: 1rem;
}
#news-slider .news-list-item .news-body {
	padding: 20px 10px;
	background-color: var(--whitegrey);
}
#news-slider .news-list-item .news-body h4 {
	font-family: "Baton Turbo Regular";
	text-transform: uppercase;
	line-height: 1.25;
	padding-bottom: 8px;
	min-height: 6.125rem;
}
#news-slider .news-list-item .news-body .price {
	font-size: 24px;
	line-height: 1.2;
	margin-top: 40px;
}
#news-slider .news-list-item .news-body .price .mwst {
	display: inline-block;
	font-size: 16px;
	padding-left: 0.85rem;
}

#slickslider271 {
	padding-left: 13px;
	padding-right: 13px;
}

/*.tx-fp-newsletter .btn-newsletter-subscripe {
	text-transform: uppercase;
	background-image: url(../Images/ico-arrow-right.svg);
	background-size: 20px auto;
	background-repeat: no-repeat;
	background-position: center right 15px;
	padding-right: 60px;
}
*/
.leaflet-tile {
  filter: grayscale(100%) !important;
}
.number-icon {
    background-image: url("../Images/ico-pin.svg");
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin: 0 auto;
    text-align:center;
    color: #fff;
    font-size: 1rem;
    margin-left: -20px !important;
	margin-top: -40px !important;
	width: 40px !important;
	height: 40px !important;
	padding-top: 3px;
}
h2 .number-icon {
	display: inline-block;
	margin-left: 0 !important;
	margin-top: 0 !important;
	padding-top: 0px;
	line-height: 30px;
}
.pin-orange-empty {background-image: url("../Images/ico-pin-orange-empty.svg");}
.park-icon {
	background: #FF3C00;
	width: 32px !important;
	height: 32px !important;
	padding: 4px;
}

.fancybox .icon-ico-zoom {
	position: absolute;
    bottom: 10px;
    right: 10px;
    text-decoration: none;
    color:var(--white);	
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;    
}

.fancybox:hover .icon-ico-zoom {
	color: var(--orange);
	font-size: 4rem;
}
.lazyload,
.lazyloading {
	opacity: 0;
}
.lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
}

/*
.tx-msulocations h2 {font-size: 1.5rem;}
.tx-msulocations h3 { font-size: 1rem; padding:0; margin-bottom: 0.5rem;}
*/
.location-image-none { display:none;}
.max-500 {max-width: 500px;}
.max-550 {max-width: 550px;}
.w125px {width:125px;}
.link-title {
	text-decoration: none;
	text-transform: uppercase;
	position: relative; 
}
.tx-msulocations .location-item .link-title > span {
	position: absolute;
	left: 0;
	top: 3px;
}
.tx-msulocations .location-item .d-flex .link-title.flex-grow-1,
.tx-msulocations .location-item .d-flex .link-title + .flex-grow-1 {
	padding-left: calc(16px + 0.5rem);
}

.factsheet {
	width: 200px;
	text-align: end;
}
.tx-msulocations .header-image,
.tx-msulocations .location-obj .location-image,
.tx-msulocations .location-images .location-image,
.news-list-view .news-image .news-img,
.news-single .thumbnail,
.news-single .museen-item-image {
	position: relative;
}

.tx-msulocations .msulocations-form-result {
	position: relative;
}
.tx-msulocations #msulocations-searchform {
	position: absolute;
	left: 0;
	top: 23vw;
	width: 100%;
	z-index: 999;
}
.tx-msulocations #msulocations-searchform form {
	background-color: rgba(255,255,255,0.35);
	padding-top: 1rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	margin: 0 3rem;
}
.tx-msulocations #msulocations-searchform .form-group {
	position: relative;
}
.tx-msulocations #msulocations-searchform .form-group .form-label {
	position: absolute;
	left: 0.75rem;
	top: 3px;
	z-index: 2;
	font-size: 11px;
	color: var(--bs-body-color);
	text-transform: uppercase;
}
.tx-msulocations #msulocations-searchform .form-group .btn {
	max-width: 100%;
	min-width: 100%;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
}
.tx-msulocations #msulocations-searchform .form-group .btn input {
	padding: 0.24rem;
	text-transform: uppercase;
}
.tx-msulocations #msulocations-searchform .form-control, .tx-msulocations #msulocations-searchform .form-select {
	border-color: var(--orange);
	padding-top: 1rem;
	padding-bottom: 0.525rem;
}
.tx-msulocations #msulocations-searchform .form-group .form-select,
.tx-msulocations #msulocations-searchform .form-group .form-control::placeholder {
	color: var(--darkgrey);
}
#favorite-btn {
  border: medium none;
  position: fixed;
  right: 0;
  top: 50%;
  width: 80px;
  height: 80px;
  background: #FF3C00;
  z-index: 9999;
  color: #fff;
}
#favorite-icon {
	font-size: 36px;
	cursor: pointer;
}
#favoriten .badge {
	font-size: 12px;
	padding: 0.25em 0.55em 0.25em 0.55em;
	top: 3px;
	left: 26px;
	background: #FF3C00;
	font-weight: normal;
	font-family: "Baton Turbo Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.favorite-del-icon {
	cursor: pointer;
}

.leaflet-top, .leaflet-bottom {
	z-index: 999 !important;
}
#locationparksmap, #locationsmap {
	-moz-transition: height 0.5s ease;
	-webkit-transition: height 0.5s ease;
	-o-transition: height 0.5s ease;
	transition: height 0.5s ease;
}

.icon-ico-favorite:before {
  content: "\e925";
}
.icon-ico-favorite:hover::before {
  content: "\e92e";
}

.icon-ico-favorited:before {
  content: "\e92e";
}
.icon-ico-favorited:hover::before {
  content: "\e925";
}
.icon-ico-copyright {
	display: inline-block;
	font-family: "Baton Turbo Regular" !important;
	color: var(--bs-body-color);
}
.icon-ico-copyright:before {
	content: "C";
	display: inline-block;
	width: 20px;
	height: 20px;
	font-size: 15px;
	line-height: 1.2;
	text-align: center;
	background-color: #fff;
	border: 1px solid rgba(0,0,0,0);
	border-radius: 100%;
	transition: border .5s ease .5s;
}
.image-copyright {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 5;
}
.image-copyright:hover .copyright-text {
	opacity: 1;
}
.image-copyright:hover .icon-ico-copyright {
	background-color: #fff;
}
.copyright-text {
	display: inline-block;
	padding-right: 10px;
	padding-left: 5px;
	font-size: 16px;
	line-height: 1;
	opacity: 0;
	color: var(--body-color);
	transition: opacity .5s ease;
}

.checkbox {
	margin-bottom: 0.25em;
}
.checkbox label {
	padding-left: 1.5em;
}
.powermail_checkbox {
	width: 1em;
	height: 1em;
	margin-top: .25em;
	margin-right: .25em;
	margin-left: -1.5em;
	vertical-align: top;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 1px solid rgba(0,0,0,.25);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
}
.powermail_checkbox[type="checkbox"] {
	border-radius: 0;
}

.powermail_checkbox:checked {
	background-color: var(--orange);
	border-color: var(--orange);
}
.powermail_checkbox:checked[type="checkbox"] {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.fs-st {
	font-size: 16px;
	color: var(--bs-body-color);
	display: block;
}
.form-check-input[type="checkbox"] { border-radius: 0; }
.form-check-input:checked {
	background-color: var(--orange);
	border-color: var(--orange);
}
.tx-powermail input[type="checkbox"]::before {
	content: none;
}