@media screen and (min-width: 992px) {
	.search-wrapper {
		position: relative;
	}
}

header {
	.header > .wp-block-group {
		position: relative;
	}

	.search-toggle {
		margin-left: auto !important;
	}	

	.wp-block-search {
		display: none !important;
		position: absolute;
		right: 60px;
		top: -15px;
		width: calc(100% - 60px);
		height: 100%;
		background-color: white !important;
		z-index: 10;

		.wp-block-search__inside-wrapper {
			padding: 0 !important;
			border-radius: 4px !important;
			overflow: hidden !important;

			button {
				border-radius: 0px !important;
			}
		}

		.wp-block-search__input {
			padding: 11px;
		}

		&.open {
			display: block !important;
		}
	}
}

@media screen and (min-width: 992px) {
	.header {
		.wp-block-search {
			top: -10px;
		}
	}
}

@media screen and (min-width: 1200px) {
	.header {
		.wp-block-search {
			top: 0px;
		}
	}
}