.toggle-form-wrap {
	display: flex;
	flex-direction: row;
    align-items: center;
	max-width: 450px;
	text-align: left;
}

.toggle-form-wrap select{
	min-width:110px;
	background-color:var(--wp--custom--secondary--light);
	border-radius:0;
	border-color:var(--wp--custom--secondary--light);
	color:var(--wp--custom--dark--1);
}

.toggle-form-wrap select:focus-visible{outline:unset;}

.toggle-form-wrap input[type="text"]{border-radius:0;}

.toggle-form-wrap form{
	margin:0;
	flex:1;
}

.toggle-form {
	position: relative;
}

.toggle-form .toggle-submit {
	position: absolute;
	top: 1px;
	right: 1px;
	bottom: 1px;
	height: calc(100% - 2px);
	width: 50px;
	border: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
	background: transparent url(/wp-content/themes/optik-theme/images/icon-search.svg) center center no-repeat;
	background-size: 20px;
  transition: all 300ms ease-in-out;
}

.toggle-form .toggle-submit:hover {
	background-color: transparent;
	opacity: 0.6;
}

