#search_widget {
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: var(--search-background);
	border-radius: 0 5px 5px 0;
	transition: all 0.3s ease-out;
	height: 100%;
}

#search_text {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 150px;
	height: 100%;
	border: 1px solid var(--border);
	border-right: none;
	padding: 5px;
	z-index: 1;
}

#search_widget:hover {
	/*background-color: #99999955;*/
	opacity: 0.9;
	box-shadow: 0 0 6px #FFFFFF;
}

#search_text:focus-visible {
	outline: none;
}

#search_widget.empty::after {
	content: 'Поиск...';
	position: absolute;
	margin-left: 5px;
	color: var(--light-text);
}

#search_button {
	display: flex;
	align-items: center;
	border: 1px solid var(--border);
	border-left: none;
	border-radius: 0 5px 5px 0;
	padding: 6px;
	cursor: pointer;
	color: var(--main);
	text-shadow: 0 0 3px var(--button-border);
	height: 100%;
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 480px) {
	#search_text {
		width: 200px;
	}
}
