* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cookie-container{
	position: fixed;
	width: 100%;
	bottom: 16px;
	left: 16px;
	z-index: 9999;
	display: flex;
	flex-direction: row;
	align-content: flex-end;
	justify-content: center;
	align-items: center;
}

.cookie-notice {
    color: #000;
    text-align: left;
    padding: 16px;
    max-width: 280px;
	display: flex;
	flex-direction: row;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 10px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.buttons{
display: flex;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
}

.cookie-notice p {
    margin: 0;
    padding: 0;
    display: inline-block;
	line-height: 120%;
	color: #000;
	font-size: 12px;
}

.cookie-accept {
	padding: 0;
	border: none;
	cursor: pointer;
	background: none;
	border-radius: 100px;
}

.cookie-accept:hover{
    outline: 2px solid #000;
}

.cookie-accept svg{
	margin: 0;
	padding: 0;
	display: block;
}


@media only screen and (max-width: 878px) {
	
	.cookie-container{
		width: auto;
		left: 12px;
		right: 12px;
		bottom: 12px;
	}
	
	.cookie-notice {
		right: 16px;
		max-width: none;
		width: 100%;
		display: flex;
		justify-content: space-between;
		gap: 24px;
	}

}