.hidden {
		display: none !important;
}

.modal-backdrop {
		position: fixed;
		top: 0; left: 0;
		width: 100%; height: 100%;
		background: rgba(0,0,0,0.6);
		z-index: 900;
}

.custom-modal {
		position: fixed;
		top: 50%; left: 50%;
		transform: translate(-50%, -50%);
		background: #fff;
		z-index: 999;
		border-radius: 8px;
		height: 200px;
}

/*BANIER COOKIES*/

.cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	max-width: 350px;
	background: white;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
	display: flex;
	flex-direction: column;
	gap: 12px;
	opacity: 0;
	transform: translateX(-20px);
	animation: slideIn 0.5s ease forwards;
}

.divider
{
	position: relative;
	margin-top: 20px;
	height: 1px;
}

.div-transparent:before
{
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, #d84f14, transparent);
}

.div-arrow-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -7px;
	left: calc(50% - 7px);
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	background-color: white;
	border-bottom: 1px solid #d84f14;
	border-right: 1px solid #d84f14;
}

.div-tab-down:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: calc(50% - 10px);
	width: 20px;
	height: 14px;
	background-color: white;
	border-bottom: 1px solid #d84f14;
	border-left: 1px solid #d84f14;
	border-right: 1px solid #d84f14;
	border-radius: 0 0 8px 8px;
}

.div-stopper:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -6px;
	left: calc(50% - 7px);
	width: 14px;
	height: 12px;
	background-color: white;
	border-left: 1px solid #d84f14;
	border-right: 1px solid #d84f14;
}

.div-dot:after
{
	content: "";
	position: absolute;
	z-index: 1;
	top: -9px;
	left: calc(50% - 9px);
	width: 18px;
	height: 18px;
	background-color: goldenrod;
	border: 1px solid #d84f14;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px white,
					0 0 0 4px white;
}
