/* #region ContactButton */
.contact-button-container
{
	bottom: 0%;
	right: 0%;
	display: block;
	position: absolute;
	width: 100%;
}

.contact-button-wrapper
{
	display: flex;
	align-items: right;
	justify-content: right;
}

.contact-button
{
	background-color: brown;
	color: white;
	cursor: pointer;
	padding-left: 1rem;
	padding-right: 1.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border: none;
	font-size: max(1.25vw, 18px);
	transition: 0.3s;
	opacity: 70%;
	z-index: 5;
	text-transform: uppercase;
}

.contact-button:hover
{
	background-color: #cb3333;
	opacity: 100%;
}
/* #endregion */

/* #region CookieWindow */
div.cookies-container-main
{
	height: 100%;
	width: 100%;
	top: 0%;
	position: absolute;
	z-index: 6;
}
div.cookies-container
{
	position: absolute;
	width: 100%;
	height: 20vh;
	bottom: 0px;
	display: flex;
	align-items: center;
	background-color: white;
	z-index: 5;
}
div.cookies-container a
{
	color: var(--le_red);
}
div.cookies-container .cookie-all
{
	background-color: var(--le_red);
    color: white;
    border: none;
    
}
div.cookies-container button
{
	cursor: pointer;
	padding-left: 1.75rem;
	padding-right: 1.75rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-size: max(1vw, 18px);
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	transition: 0.3s;
}

div.cookies-container .cookie-essential
{
	background-color: white;
    color: black;
    border: 1px solid black;
}

/* #endregion */