#cookie_note.show {
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border-radius: 8px;
}

#cookie_note p {
	flex: 1;
	min-width: 0;
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	text-align: left;
	color: #273a49;
}

#cookie_note p a {
	color: #273a49;
	text-decoration: underline;
}

#cookie_note p a:hover {
	color: #ff3d00;
}

.cookie_note__actions {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 8px;
}

#cookie_note .cookie_accept,
#cookie_note .cookie_decline {
	width: auto;
	min-width: 118px;
	margin: 0;
	padding: 10px 16px;
	font-size: 11px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: none;
	white-space: nowrap;
}

#cookie_note .cookie_accept {
	color: #fff;
	background: #000;
	border: none;
}

#cookie_note .cookie_accept:hover {
	background: #ff3d00;
}

#cookie_note .cookie_decline {
	color: #273a49;
	background: #f5f5f5;
	border: 1px solid #d8d8d8;
}

#cookie_note .cookie_decline:hover {
	background: #ebebeb;
	border-color: #c8c8c8;
}

@media (max-width: 991px) {
	#cookie_note.show {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie_note__actions {
		width: 100%;
	}

	#cookie_note .cookie_accept,
	#cookie_note .cookie_decline {
		flex: 1;
		min-width: 0;
	}
}

@media (max-width: 480px) {
	.cookie_note__actions {
		flex-direction: column;
	}

	#cookie_note .cookie_accept,
	#cookie_note .cookie_decline {
		width: 100%;
	}
}
