
/********************************** SITE **********************************/

/* Top container of search panel */

.searchPanel {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	margin-left: 15px;
	margin-right: 15px;
}

/* Input container of search panel with language buttons and input field */

.searchInputPanel {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1 auto;
	align-items: stretch;
	height: 150px;
	max-width: 450px;
}


/* Panel to select language with radio buttons */

.selectLanguagePanel {
	display: flex;
	width: 100%;
	max-width: 450px;
	justify-content: center;
}


/* Panel to enter text */

.searchInputTextPanel {
	display: flex;
	width: 100%;
	max-width: 450px;
	justify-content: center;
	height: 36px;
}

.searchInputPanelIcon {
	padding: 5px 10px;
	background: burlywood;
	color: brown;
	text-align: center;
	border: 2px solid brown;
	border-right: 0px;
	border-radius: 4px 0 0 4px;
	width: 50px;
	height: 16px;
	flex: 0 0 auto;
	cursor: default;
}

.searchInputField {
	font-size: 16px;
	padding-left: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	flex: 1 auto;
	outline: none;

	-moz-appearance: none;/* older firefox */
	-webkit-appearance: none; /* safari, chrome, edge and ie mobile */
	appearance: none; /* rest */

	-webkit-border-radius: 0;
	border-radius: 0;
	border: 2px solid brown;
	width: 100%;
	height: 36px;
/*	height: 26px;  */
}



.searchButtonPanel {
	flex: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin-left: 20px;
}



.searchRadioButton {
	display: none;
}

.searchRadioButton + label {
	padding-top: 5px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	background-color: burlywood;	
}

.searchRadioButton:hover + label {
	background-color: wheat;
/*	background-color: yellow; */

	cursor: pointer;
}


.searchRadioButton:checked + label {
	background-color: brown;
}






/* --------------------- SMALL SCREENS ------------------ */

/* Should be: @media screen and (max-width: 760px) { */

@media screen and (max-width: 760px) {

	.searchPanel {
		flex-direction: column;
		align-content: stretch;
	}

	.searchInputPanel {
		max-width: unset;
		flex: 0 auto;
		width: 100%;
		align-self: center;
	}

	.selectLanguagePanel {
		align-self: center;
		max-width: 350px;
	}

	.searchInputTextPanel {
		align-self: center;
		max-width: 350px;
	}

	.searchButtonPanel {
		flex: 0 auto;
		display: flex;
		flex-direction: row;
		justify-content: center;
		margin-top: 30px;
		margin-left: 0px;
	}


}


/******************************** END ********************************/


