#waiora-header-btns .waiora-header-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	gap: 20px;
	margin-top: -5px;
}

#waiora-header-btns .waiora-header-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	padding: 10px 13px;
	background: var(--waiora-btn-bg, #f0ba1c);
	color: var(--waiora-btn-text, #000000) !important;
	font-size: clamp(16px, 1.35vw, 20px);
	font-weight: 400;
	line-height: 1.15;
	text-align: center;
	text-decoration: none !important;
	white-space: nowrap;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

#waiora-header-btns .waiora-header-button:hover,
#waiora-header-btns .waiora-header-button:focus {
	background: var(--waiora-btn-hover, #d9a714);
	color: var(--waiora-btn-text, #000000) !important;
	transform: translateY(-1px);
}

@media (max-width: 520px) {
	#waiora-header-btns .waiora-header-button {
		white-space: normal;
	}
}