#SearchBox {
	font-family: "Roboto Mono", monospace;
	position: relative;
	width: 65px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}
#SearchBox:hover {
	width: 400px;
}
#SearchBox::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background: linear-gradient(#fff, #fff, #e3e3e3);
	z-index: 1;
	filter: blur(1px);
}
#SearchBox::after {
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
	width: 10px;
	height: 100%;
	background: #9d9d9d;
	z-index: 1;
	filter: blur(1px);
}
#SearchBox .sunlight {
	position: absolute;
	top: 0;
	left: -50px;
	width: calc(100% + 50px);
	height: 300px;
	background: linear-gradient(180deg, rgb(0 0 0 / 10%), transparent, transparent);
	transform-origin: top;
	transform: skew(45deg);
	pointer-events: none;
}
#SearchBox .sunlight::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	background: #cfd1e1;
	z-index: 1;
}
#SearchBox input {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	padding: 10px 25px;
	outline: none;
	font-size: 1.1em;
	color: #555;
	background: linear-gradient(#dbdae1, #a3aaba);
	box-shadow: 5px 5px 5px rgb(0 0 0 / 10%),
	15px 15px 15px rgb(0 0 0 / 10%),
	20px 20px 15px rgb(0 0 0 / 10%),
	30px 30px 15px rgb(0 0 0 / 10%),
	inset 1px 1px 2px #fff;
}
#SearchBox input::placeholder, #SearchBox input {
	color: transparent;
}
#SearchBox:hover input::placeholder, #SearchBox:hover input {
	padding-right: 50px;
	color: #555 ;
}
#SearchBox i {
	position: absolute;
	right: 20px;
	color: #555;
	font-size: 1.5em;
	cursor: pointer;
}
