/* 	
	In dieser Datei werden CSS-Anweisungen geschrieben, 
	die sich im Frontend in der Mobilversion UND in der Desktopversion auswirken.	
*/



/* !bh-cookies-warning */
.bh-cookies-warning{
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background-color: white;
	z-index: 700;
	color: rgb(80,80,80);
	display: none;
}
.bh-cookies-warning-text{
	line-height: 18px;
	font-size: 14px;
}
.bh-cookies-warning-link,
.bh-cookies-warning-accept{
	cursor: pointer;
	display: inline-block;
	padding: 0 10px;
	margin: 0 10px;
	line-height: 30px;
}
.bh-cookies-warning-link {
	font-size: 14px;
	color: rgb(80,80,80);
	background-color: rgba(0, 0, 0, 0.1);
}
.bh-cookies-warning-accept {
	display: inline-block;
	color: rgb(80,80,80);
	background-color: rgba(0, 0, 0, 0.1);
}
.bh-cookies-buttons{
	float: right;
	padding: 5px;
}



/* bh-social */

.bh-social-bar {
	display: flex; 
	flex-flow: row wrap;
	justify-content: space-around;
	text-align: center;
}

.bh-social-element {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
}

.bh-social-element svg  {
	height: 100%;
	width: auto;
}

.bh-social-toggler {
	width: 30px;
	height: 30px;
	display: inline-block;
	cursor: pointer;
	position: relative;
}

.bh-social-pane {
	display: inline-block;
	white-space: nowrap;	
}

.bh-social-button {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.bh-social-button .bh-social-pane {
	transition: 0.5s linear all;
	max-width: 0px;
	overflow: hidden;
	height: 30px;
}

.bh-social-button.active .bh-social-pane {
	max-width: 300px;	
}


/* TODO Dropzone generell für "Flowline"-Container ausblenden */

.bh-swiper {
	position: relative;
}


/* 
	Modal, Popup 
*/
.tingle-modal__close {
    font-size: 40px;
    line-height: 40px;
}
.tingle-modal-box {
	width: 80%;
	max-width: 1024px;
}
.tingle-modal-box__footer {
	display: flex;
	justify-content: flex-end;
}
.tingle-btn--default {
  background-color: #A7A7A7;
}

.bh-modal-content {
	color: #000;
	font-family: sans-serif;
	font-style: normal;
	font-weight: normal;
}
.bh-modal-headline {
	font-size: 22px;
	margin-bottom: 10px;
}
.bh-modal-text {
	font-size: 14px;
}

.bh-modal-content a {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	text-decoration: underline;
}

.tingle-btn {
	font-family: sans-serif;
	font-style: normal;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 14px;
}

@media (max-width : 540px) {
	.tingle-modal__close {
		display: flex;
		flex-direction: row-reverse;
		background-color: transparent;
	}
	.tingle-modal__closeIcon {
		font-size: 40px;
		line-height: 40px;
		padding: 0px 10px;
	}
	.tingle-modal__closeLabel {
		font-size: 20px;
		line-height: 40px;
	}
	.tingle-modal-box {
		width: 100%;
	}
	.tingle-modal-box__footer {
		flex-direction: column;
	}
	.tingle-btn {
		margin-left: 0px;
	}
	.tingle-btn:last-child {
		margin-bottom: 0px;
	}
}