/* the screen darken effect */
.screen-dim {
	/* 1. Visible in layout but hidden to user */
	display: flex;
	transition:
		opacity 0.4s ease-out,
		visibility 0.3s ease-out;
	/* Overlay styles */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.76);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	will-change: opacity, visibility;
}
.screen-dim.show {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

	
.cookies-toast {
	display: flex;
	justify-content: center;
	align-items: stretch;   
	position: fixed;
    bottom: 14px;
    left: 50%;
	width: 97%;
	max-width: 800px;
    transform: translateX(-50%) translateY(250px);
    background-color: #000000;
    color: white;
    padding: 26px 25px;
    border-radius: 16px;
    font-weight: bold;
    z-index: 99929;
	height: auto;
    opacity: 1;
    /*transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.0), opacity 0.3s;*/
	transition: 
		transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.0) 0.2s, 
		opacity 0.3s 0.2s;   
	border: 0px dashed rgba(255, 0, 0, 0.8); 
}
.cookies-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
	
.cookies-toast p {
	color: #ffffff!important;
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1.4rem;
}
	
.cookie-text-wrapper {
	width: 100%;
	padding-right: 1.4svh;
}

.cookie-button-wrapper {
	display: flex;
	flex-direction: column; /* Crucial: Set the main axis to vertical */
	width: 39%;
	max-width: 163px;
		border: 0px dashed rgba(255, 0, 0, 0.8); 
}

.banner-button {
    background-color: white;
    color: #000000;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
	margin-left: 20px;
	height: 40px;
	height: 100%;
	width: 100%;
	margin: 5px;
	border: 2px solid rgba(255, 255, 255, 0.8); 
}
.banner-buttonB {
    background-color: #000000;
    color: #ffffff;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
	transition: border 0.2s;
	margin-left: 20px;
	height: 40px;
	height: 100%;
	width: 100%;
	margin: 5px;
	border: 2px solid rgba(255, 255, 255, 0.8); 
}

.banner-button:hover,
.banner-buttonB:hover
	{
    background-color: #2e82e7;
	color: #ffffff;
	border: 2px solid #2e82e7; 
}