/* FRONT PAGE */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.containerhome{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}

.containerhome .itemhpage{
	display: grid;
	margin: auto;
	position: relative;
	flex: 1;
	text-align: center;
	color: white;
	transition: 0.3s;
	max-width: 25%;
	height: 100vh;
	min-width: 10%;
	background-color: rgba(34, 34, 34, 0.4);
}

.containerhome .itemhpage:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-size: cover;
	z-index: -1;
}

.containerhome .itemhpage:hover{
	transition: 0.5s;
	max-width: 40% !important;
	flex-grow: 2;
	cursor: pointer;
	color: #ffffff;
	background-color: rgba(0, 0, 255, 0.3);
}

.containerhome .itemhpage:hover p{
	transform: none;
	transition: 0.3s;
}

.containerhome .contenthpage{
	text-transform: uppercase;
	font-size: 1.5em;
	padding-top: 75vh;
	padding-left: 10%;
	text-align: left;
	line-height: 0.7;
}

}
.containerhome p{
	transform: translateY(120vh);
}

.containerhome .columnhpage1{
	background-position: right;
	background-size: auto 100%;
}

.containerhome .columnhpage3{
	background-position: center;
	background-size: auto 100%;
	
}

.containerhome .columnhpage2{
	background-position: center;
	background-size: auto 100%;
}

.containerhome .columnhpage4{
	background-position: center;
	background-size: auto 100%;
}

@media (max-width: 666px){
	*{
		margin: 0;
		padding: 0;
		box-sizing: content-box;
	}
	
	.containerhome{
		display: block;
		justify-content: center;
		align-items: center;
	}
	
	.containerhome .itemhpage{
		display: inline-block;
		margin: auto;
		position: relative;
		text-align: center;
		color: white;
		transition: 0.3s;
		max-width: 25%;
		height: 50vh;
		min-width: 100%;
		background-color: rgba(34, 34, 34, 0.4);
	}
	
	.containerhome .itemhpage:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-position: center bottom;
		background-size: cover;
		z-index: -1;
	}
	
	.containerhome .itemhpage:hover p{
		transform: none;
		transition: 0.3s;
	}
	
	.containerhome .contenthpage{
		text-transform: uppercase;
		font-size: 1.5em;
		padding-top: 40vh;
		padding-left: 10%;
		text-align: left;
		line-height: 0.7;
	}
	
	.containerhome .columnhpage1{
		background-position: center;
		background-size: auto 100%;
	}
	
	.containerhome .columnhpage3{
		background-position: center;
		background-size: auto 100%;
		
	}
	
	.containerhome .columnhpage2{
		background-position: center;
		background-size: auto 100%;
	}
	
	.containerhome .columnhpage4{
		background-position: center;
		background-size: auto 100%;
	}
}

/* FRONT PAGE */

.modal-window-add{
	background: #cccccc;
	padding: 10px;
	border-radius: 20px;
	max-width: 800px;
	left: calc(50% - 400px);
	position: absolute;
	top: 20vh;
}

.modal-window-add-bg{
	display: none;
	background: #00000094;
	width: 100vw;
	height: 103vh;
	position: absolute;
	top: 0;
	left: -20px;
}

#redim-cookiehint-bottom #redim-cookiehint,
#redim-cookiehint-top #redim-cookiehint{
	max-width: 100%;
}

#redim-cookiehint-modal{
	background-color: rgba(0, 0, 0, 0.75);
	padding: 20px;
}

/* --- DEFAULT-STYLE --- */

#redim-cookiehint{
	box-sizing: border-box;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	/*-webkit-box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.21);
	-moz-box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.21);
	box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.21);*/
	max-width: 380px;
	background: #ffffff;
	padding: 15px 30px;
	border-radius: 3px;
}

#redim-cookiehint .cookiehead{
	margin-bottom: 20px;
	display: inline-block;
}

#redim-cookiehint .cookiehead .headline{
	color: #707070;
	font-size: 20px;
	line-height: 26px;
	position: relative;
	padding: 3px 0px 3px 50px;
	display: inline-block;
}

#redim-cookiehint .cookiehead .headline::before{
	content: '';
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 35px;
	height: 32px;
	background-image: url(../img/little_cookie.png);
	background-repeat: no-repeat;
	background-position: left center;
}

#redim-cookiehint .cookiecontent{
	font-size: 14px;
	line-height: 18px;
	display: inline-block;
	color: #707070;
}

#redim-cookiehint .cookiecontent{
	padding-bottom: 20px;
}


#redim-cookiehint .clr{
	clear: both;
}

#redim-cookiehint .cookiebuttons .btn{
	font-size: 18px;
	line-height: 24px;
	cursor: pointer;
	display: block;
	margin-bottom: 15px;
	padding: 12px 8px !important;;
	text-align: center;
}

#redim-cookiehint .cookiebuttons a.btn{
	text-decoration: none !important;
	background-image: none !important;
}

#redim-cookiehint.hidden{
	display: none;
	visibility: hidden;
}

#cookiehintsubmit,
#cookiehintsubmitno{
	transition: background 0.3s ease;
	border-radius: 4px !important;
}

#cookiehintsubmit{ background: #00bc13 !important; color: #ffffff !important}

#cookiehintsubmit:hover{ background: #008a13 !important; color: #ffffff !important}

#cookiehintsubmitno{ background: #f7f7f7 !important; color: #707070 !important;}

#cookiehintsubmitno:hover{ background: #e8e8e8 !important; color: #707070 !important;}

/*
#redim-cookiehint .cookiebuttons p:last-child{
	padding-top: 10px;
	padding-bottom: 10px;
}
*/

/* --- BOTTOM-STYLE --- */

#redim-cookiehint-bottom{
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
	text-align: center;
	background-color: #ffffff
}

#redim-cookiehint-bottom #redim-cookiehint{
	margin: 0 auto;
	text-align: left;
	max-width: 980px;
}

#redim-cookiehint-bottom #cookiehintinfo{
	float: left;
}

#redim-cookiehint-bottom .cookiehead{
	margin-bottom: 10px;
}

#redim-cookiehint-bottom .cookiecontent{
	padding-bottom: 5px;
}


#redim-cookiehint-bottom .cookiebuttons{
	text-align: right;
}

#redim-cookiehint-bottom .cookiebuttons .btn{
	display: inline-block;
	padding: 8px 14px !important;
	margin: 0px 10px 0px 0px;
}


@media (max-width: 576px){
	
	#redim-cookiehint{
		padding: 7px 15px;
	}
	
	#redim-cookiehint .cookiehead .headline{
		padding-left: 0px;
		font-size: 16px;
		line-height: 24px;
	}
	
	#redim-cookiehint .cookiehead .headline::before{
		display: none;
	}
	
	#redim-cookiehint .cookiebuttons{
		text-align: center;
	}
	
	#redim-cookiehint .cookiebuttons .btn{
		width: 60%;
		margin: 0 auto 8px;
		font-size: 14px;
		line-height: 20px;
		padding: 8px !important;
	}
	
	#redim-cookiehint-bottom #cookiehintinfo{
		float: none;
	}
	
}