.search-btn {
	position: relative;
	z-index:10;
	display: flex;
	align-items: center;
	text-align: center;
	cursor: pointer;
}

.search-btn span {
	color: #000000;
	font-size: 18px;
}

.search-overlay {
	position: fixed;
	height: 0px;
	width: 0px;
	max-height: 0px;
	max-width: 0px;
	border-radius: 100%;
	background: rgba(0,0,0,0.5);
	transition: all 0.4s linear;
}

.search-overlay.active {
	height: 4000px;
	width: 4000px;
	max-height: 4000px;
	max-width: 4000px;
	z-index: 99998;
	transition: all 0.4s linear;
}

.close-btn {
	position: fixed;
	z-index: 99999;
	right: 25px;
	top: 25px;
	font-size: 20px;
	color: #000000;
	cursor: pointer;
}

.search-overlay, .search-data {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.search-data {
	position: absolute;
	width: 400px;
	display: flex;
	text-align: center;
}

.search-data input {
	height: 100%;
	width: 100%;
	background: none;
	border: none;
	outline: none;
	font-size: 22px;
	font-weight: 500;
}

.search-data .line {
	position: absolute;
	height: 3px;
	width: 100%;
	background: #000000;
	bottom: 0;
	transform: scaleX(0);
	transition: transform 0.4s 0.3s linear;
}

.search-data .line.active {
	transform: scaleX(1);
}

.search-data label {
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 20px;
	transform: translateY(-50%);
	pointer-events: none;
	color: rgba(255,255,255,0.7);
}

.search-data input:valid ~ label {
	opacity: 0;
}

.search-data span {
	color: #000000;
	position: absolute;
	width: 50px;
	font-size: 22px;
	right: 0;
	top: 0;
	cursor: pointer;
}

.search-data button {
	position: absolute;
	width: 50px;
	height: 50px;
	background-color: transparent;
	right: 0;
	top: 0;
	line-height: 45px;
	cursor: pointer;
	border: none;
	outline: none;
} 

.search-data, .search-data span,
.search-data label, .close-btn {
	display: none;
}


input:-internal-autofill-selected {
	background-color: #ffffff;
}