.search-bar {
	width: 100%;
	background-color: whitesmoke;
	display: none;
	flex-direction: column;
	align-items: center;
}

.searchbar-container {
	width: 100%;
	background-color: whitesmoke;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-top: 20px;
	padding: 0px 20px;
	box-sizing: border-box;
	max-width: 1040px;
}

.searchbar {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	flex-grow: 1;
	height: 30px;
	border-width: 2px;
	border-style: solid;
	border-radius: 15px;
	border-color: #333333;
	background-color: white;
	padding: 1px 10px;
}

.searchbar-icon {
	background-image: url(./img/search.svg);
	background-size: auto;
	background-repeat: no-repeat;
	height: 15px;
	width: 15px;
}

.searchbar-input {
	flex-grow: 1;
	height: 100%;
	font-family: hand;
	font-size: 20px;
	border-width: 0px;
	outline: none;
	background-color: #00000000;
	width: 10px;
	max-width: 550px;
}

.searchbar-button {
	font-family: hand;
	font-size: 18px;
	background-color: rgb(3,165,252);
	color: white;
	border-width: 0px;
	padding: 8px 15px;
	border-radius: 5px;
	cursor: pointer;
}

.searchbar-results-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 20px 20px 0px 20px;
	box-sizing: border-box;
	max-width: 1040px;
}

.searchbar-message {
	width: 100%;
	background-color: whitesmoke;
	font-family: hand;
	font-size: 18px;
	color: grey;
	text-align: center;
}

.search-result {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(rgb(253,94,83), rgb(256, 110, 100));
	width: 100%;
	padding: 10px;
	color: white;
	cursor: pointer;
	box-sizing: border-box;
}

.search-result-english {
	font-family: hand;
	font-size: 24px;
}

.search-result-japanese {
	font-family: hand;
	font-size: 16px;
}