@font-face {
	font-display: swap;
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');   
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.woff2') format('woff2');    
    font-style: italic;
}

.cookie_notice_box {
	display: none;
	width: 360px;
	padding: 30px;
	flex-direction: column;	
	gap: 20px;
	position: fixed;
	bottom: 60px;
	right: 60px;
	z-index: 10;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 0 20px 0 rgba(29, 29, 31, 0.08);	
	border: 1px solid rgba(0, 0, 0, 0.1);
}

	.cookie_notice_box_text {		
		display: flex;
		flex-direction: column;
		gap: 12px;
		color: #1d1d1f;		
		font-family: 'Inter', Arial, monospace;
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: 120%;
		letter-spacing: -0.4px;
	}
	
		.cookie_notice_box_text p {
			color: #1d1d1f;		
			font-family: 'Inter', Arial, monospace;
			font-size: 13px;
			font-style: normal;
			font-weight: 400;
			line-height: 120%;
			letter-spacing: -0.4px;
			opacity: 0.8;
			margin: 0;
		}
		
			.cookie_notice_box_text p a {				
				color: #c00;
				text-decoration: underline;
				text-decoration-thickness: 1px;
				text-underline-offset: 2px;
			}
			
			.cookie_notice_box_text p a:hover {
				text-decoration: none;
			}
	
	.cookie_notice_box_button button {
		color: #fff;
		font-family: 'Inter', Arial, monospace;
		font-size: 14px;
		font-style: normal;
		font-weight: 500;
		line-height: 140%;
		text-transform: uppercase;
		border: none;
		border-radius: 30px;
		background: #1d1d1f;
		padding: 10px 40px;
		cursor: pointer;
		transition: box-shadow .2s ease-in-out;
	}
	
	.cookie_notice_box_button button:hover {
		box-shadow: 0 0 15px 2px rgba(29, 29, 29, 0.4);
	}
	
@media (max-width:991px){
	.cookie_notice_box {		
		width: 320px;
		padding: 24px;		
		gap: 16px;		
		bottom: 32px;
		right: 32px;
		border-radius: 16px;	
	}
}	

@media (max-width:767px){
	.cookie_notice_box {		
		width: 250px;
		padding: 16px;		
		gap: 12px;		
		bottom: 16px;
		right: 16px;
		border-radius: 10px;	
	}
}