.toggle-form-wrap {
	display: flex;
	flex-direction: column-reverse;
	max-width: 450px;
	margin-left: auto;
	text-align: left;
}

.toggle-form {
	position: relative;
	margin: 0;
	display: flex;
	flex-direction: column-reverse;
}

.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;
}

.toggle-form .toggle-submit:focus {
	background-color: rgba(0,0,0,0.05);
	opacity: 1;
}

.toggle-select label {margin-right: 10px;}

@media screen and (max-width: 1024px) {
.toggle-form-wrap {
	margin-left: 0;
	margin-right: auto;
}
}