.wd-search-full-screen {
	--wd-search-sp: 20px;
	--wd-form-height: 110px;
	display: flex;
	flex-direction: column;
	background-color: var(--bgcolor-white);
	box-shadow: 0 0 14px rgba(0, 0, 0, .08);
	transition: opacity .5s cubic-bezier(.19, 1, .22, 1) .5s, visibility .5s cubic-bezier(.19, 1, .22, 1) .5s, transform .5s cubic-bezier(.19, 1, .22, 1);
	transform: translate3d(0, 100%, 0);
}

.wd-search-full-screen .wd-search-title, .wd-search-full-screen .wd-not-found-msg {
	text-align: center;
}

.wd-search-full-screen :is(.wd-search-history,.wd-search-requests,.wd-search-info-text):not(:last-child) {
	padding-bottom: var(--wd-search-sp);
	border-bottom: 1px solid var(--brdcolor-gray-300);
}

.wd-search-full-screen .wd-search-results {
	margin-top: calc(var(--wd-search-sp) * -1);
	padding-top: var(--wd-search-sp);
	scrollbar-gutter: stable;
}

.wd-search-full-screen .searchform {
	padding-inline: 100px;
	border-bottom: 1px solid var(--brdcolor-gray-300);
	margin-bottom: var(--wd-search-sp);
	--wd-form-bg: transparent;
	--wd-form-color: var(--color-gray-800);
	--wd-form-placeholder-color: var(--color-gray-800);
	--wd-form-brd-width: 0;
	--wd-form-height: unset;
}

.wd-search-full-screen .searchform input[type="text"] {
	padding: 0;
	text-align: center;
	font-weight: 600;
	font-size: 48px;
}

.wd-search-full-screen .searchform .searchsubmit {
	display: none;
}

.wd-search-full-screen .wd-close-search.wd-style-icon {
	--wd-action-icon-size: 38px;
	position: absolute;
	top: 5px;
	inset-inline-end: 5px;
	z-index: 1;
}

.wd-search-full-screen .wd-close-search.wd-style-icon>a {
	width: 100px;
	height: 100px;
}

.wd-search-full-screen .wd-search-loader {
	top: calc(var(--wd-form-height) + 1px);
}

.wd-search-full-screen .wd-search-history {
	padding-inline: var(--wd-search-sp);
}

.wd-search-full-screen .wd-search-history ul {
	justify-content: center;
}

.wd-search-full-screen .wd-search-requests {
	padding-inline: var(--wd-search-sp);
}

.wd-search-full-screen .wd-search-requests ul {
	justify-content: center;
}

@media (max-width: 1024px) {
	.wd-search-full-screen {
		--wd-form-height: 70px;
	}
	
	.wd-search-full-screen .searchform {
		padding-inline: var(--wd-search-sp);
	}
	
	.wd-search-full-screen .searchform input[type="text"] {
		font-size: 20px;
	}
	
	.wd-search-full-screen .wd-close-search {
		display: none;
	}
}