/* FLOATING TOOLBAR */
/* prefix: floating-toolbar- */

/* FOR MOBILE */
@media only screen and (max-width: 600px) {
	.floating-toolbar-search,
	.floating-toolbar-search-wrapper {
		width: 100%;
	}
}

.floating-toolbar-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	height: 100dvh;
	pointer-events: none;
	display: flex;
	justify-content: end;
	align-items: end;
	padding: 1rem;
}

.floating-toolbar-search {
	pointer-events: all;
	height: 3rem;
	padding: 0.5rem;
	background-color: var(--color-primary);
	border: solid 0.1rem var(--color-secondary);
	border-radius: 0.5rem;
	box-shadow:
		0px 2.8px 2.2px rgba(0, 0, 0, 0.008),
		0px 6.7px 5.3px rgba(0, 0, 0, 0.012),
		0px 12.5px 10px rgba(0, 0, 0, 0.015),
		0px 22.3px 17.9px rgba(0, 0, 0, 0.018),
		0px 41.8px 33.4px rgba(0, 0, 0, 0.022),
		0px 100px 80px rgba(0, 0, 0, 0.03);
}

.floating-toolbar-search::placeholder {
	text-transform: uppercase;
}
