* {
  box-sizing: border-box;
}

/* ============================== Handy Auflösung ============================= */
@media screen and (max-width: 600px){
	
		/* Style the container */
	.overall-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-left: 50px;
	}
	
	.input-container {
		position: relative;
		display: inline-block; /* This ensures that the autocomplete box respects the width of the input box */
	}
	
	/* Style the form container */
	.form-container {
		position: relative;
		display: flex;
		flex-direction: row; /* Make the children display in a row */
		align-items: center;
		border: 2px solid #333;
		padding: 10px;
	}
	
	/* Style the input box */
	.autocomplete{
		width: 150px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		padding: 5px;
		font-family: Literata; 
		font-size: 16px;
		position: relative; /* Add this line */
	}
	
	/* Style the submit button */
	.submit-button {
		width: 80px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		background-color: Orange; /* Background color */
		color: #fff; /* White text color */
		border: none;
		cursor: pointer;
		font-family: Literata; 
		font-size: 16px;
	}
	
	.autocomplete-items {
		position: absolute;
		column-count: 2;
		column-gap: 0px;
		width: 200%;
		border: 1px solid #d4d4d4;
		box-shadow: 0px 0px 15px RGBA(0,0,0,0.2);
		border-bottom: none;
		border-top: none;
		z-index: 999;
		/*position the autocomplete items to be the same width as the container:*/
		top: 32px;
		margin-left: -30%;
	}
	
	.autocomplete-items div {
		padding: 5px;
		cursor: pointer;
		background-color: #fff; 
		border-bottom: 1px solid #d4d4d4; 
	}
	
	/*when hovering an item:*/
	.autocomplete-items div:hover {
		background-color: orange; /*#e9e9e9;*/ 
	}
	
	/*when navigating through the items using the arrow keys:*/
	.autocomplete-active {
		background-color: Orange !important; 
	color: #ffffff; 
	}
	
	.hidden-content {
		display: none;
	}

}

/* ============================== Small Tablet Auflösung ============================= */
@media screen and (min-width: 601px) and (max-width: 900px){

	/* Style the container */
	.overall-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-left: 100px;
	}
	
	.input-container {
		position: relative;
		display: inline-block; /* This ensures that the autocomplete box respects the width of the input box */
	}
	
	/* Style the form container */
	.form-container {
		position: relative;
		display: flex;
		flex-direction: row; /* Make the children display in a row */
		align-items: center;
		border: 2px solid #333;
		padding: 10px;
	}
	
	/* Style the input box */
	.autocomplete{
		width: 200px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		padding: 5px;
		font-family: Literata; 
		font-size: 16px;
		position: relative; /* Add this line */
	}
	
	/* Style the submit button */
	.submit-button {
		width: 100px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		background-color: Orange; /* Background color */
		color: #fff; /* White text color */
		border: none;
		cursor: pointer;
		font-family: Literata; 
		font-size: 16px;
	}
	
	.autocomplete-items {
		position: absolute;
		column-count: 7;
		column-gap: 0px;
		width: 700%;
		border: 1px solid #d4d4d4;
		box-shadow: 0px 0px 15px RGBA(0,0,0,0.2);
		border-bottom: none;
		border-top: none;
		z-index: 999;
		/*position the autocomplete items to be the same width as the container:*/
		top: 32px;
		margin-left: -300%;
	}
	
	.autocomplete-items div {
		padding: 5px;
		cursor: pointer;
		background-color: #fff; 
		border-bottom: 1px solid #d4d4d4; 
	}
	
	/*when hovering an item:*/
	.autocomplete-items div:hover {
		background-color: orange; /*#e9e9e9;*/ 
	}
	
	/*when navigating through the items using the arrow keys:*/
	.autocomplete-active {
		background-color: Orange !important; 
	color: #ffffff; 
	}
	
	.hidden-content {
		display: none;
	}

}

/* ============================== Tablet Auflösung ============================= */
@media screen and (min-width: 901px) and (max-width: 1300px){

	/* Style the container */
	.overall-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-left: 100px;
	}
	
	.input-container {
		position: relative;
		display: inline-block; /* This ensures that the autocomplete box respects the width of the input box */
	}
	
	/* Style the form container */
	.form-container {
		position: relative;
		display: flex;
		flex-direction: row; /* Make the children display in a row */
		align-items: center;
		border: 2px solid #333;
		padding: 10px;
	}
	
	/* Style the input box */
	.autocomplete{
		width: 200px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		padding: 5px;
		font-family: Literata; 
		font-size: 16px;
		position: relative; /* Add this line */
	}
	
	/* Style the submit button */
	.submit-button {
		width: 100px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		background-color: Orange; /* Background color */
		color: #fff; /* White text color */
		border: none;
		cursor: pointer;
		font-family: Literata; 
		font-size: 16px;
	}
	
	.autocomplete-items {
		position: absolute;
		column-count: 7;
		column-gap: 0px;
		width: 700%;
		border: 1px solid #d4d4d4;
		box-shadow: 0px 0px 15px RGBA(0,0,0,0.2);
		border-bottom: none;
		border-top: none;
		z-index: 999;
		/*position the autocomplete items to be the same width as the container:*/
		top: 32px;
		margin-left: -300%;
	}
	
	.autocomplete-items div {
		padding: 5px;
		cursor: pointer;
		background-color: #fff; 
		border-bottom: 1px solid #d4d4d4; 
	}
	
	/*when hovering an item:*/
	.autocomplete-items div:hover {
		background-color: orange; /*#e9e9e9;*/ 
	}
	
	/*when navigating through the items using the arrow keys:*/
	.autocomplete-active {
		background-color: Orange !important; 
	color: #ffffff; 
	}
	
	.hidden-content {
		display: none;
	}
}


/* ===================================== Small PC Auflöstung =====================================*/
@media screen and (min-width: 1301px)and (max-width: 1500px){
		/* Style the container */
	.overall-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-left: 100px;
	}
	
	.input-container {
		position: relative;
		display: inline-block; /* This ensures that the autocomplete box respects the width of the input box */
	}
	
	/* Style the form container */
	.form-container {
		position: relative;
		display: flex;
		flex-direction: row; /* Make the children display in a row */
		align-items: center;
		border: 2px solid #333;
		padding: 10px;
	}
	
	/* Style the input box */
	.autocomplete{
		width: 200px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		padding: 5px;
		font-family: Literata; 
		font-size: 16px;
		position: relative; /* Add this line */
	}
	
	/* Style the submit button */
	.submit-button {
		width: 100px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		background-color: Orange; /* Background color */
		color: #fff; /* White text color */
		border: none;
		cursor: pointer;
		font-family: Literata; 
		font-size: 16px;
	}
	
	.autocomplete-items {
		position: absolute;
		column-count: 7;
		column-gap: 0px;
		width: 700%;
		border: 1px solid #d4d4d4;
		box-shadow: 0px 0px 15px RGBA(0,0,0,0.2);
		border-bottom: none;
		border-top: none;
		z-index: 999;
		/*position the autocomplete items to be the same width as the container:*/
		top: 32px;
		margin-left: -300%;
	}
	
	.autocomplete-items div {
		padding: 5px;
		cursor: pointer;
		background-color: #fff; 
		border-bottom: 1px solid #d4d4d4; 
	}
	
	/*when hovering an item:*/
	.autocomplete-items div:hover {
		background-color: orange; /*#e9e9e9;*/ 
	}
	
	/*when navigating through the items using the arrow keys:*/
	.autocomplete-active {
		background-color: Orange !important; 
	color: #ffffff; 
	}
	
	.hidden-content {
		display: none;
	}

}

/* ===================================== Large PC Auflösung ===================================== */
@media screen and (min-width: 1501px){

	/* Style the container */
	.overall-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-left: 100px;
	}
	
	.input-container {
		position: relative;
		display: inline-block; /* This ensures that the autocomplete box respects the width of the input box */
	}
	
	/* Style the form container */
	.form-container {
		position: relative;
		display: flex;
		flex-direction: row; /* Make the children display in a row */
		align-items: center;
		border: 2px solid #333;
		padding: 10px;
	}
	
	/* Style the input box */
	.autocomplete{
		width: 200px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		padding: 5px;
		font-family: Literata; 
		font-size: 16px;
		position: relative; /* Add this line */
	}
	
	/* Style the submit button */
	.submit-button {
		width: 100px; /* Adjust the width as needed */
		height: 30px; /* Adjust the height as needed */
		background-color: Orange; /* Background color */
		color: #fff; /* White text color */
		border: none;
		cursor: pointer;
		font-family: Literata; 
		font-size: 16px;
	}
	
	.autocomplete-items {
		position: absolute;
		column-count: 7;
		column-gap: 0px;
		width: 700%;
		border: 1px solid #d4d4d4;
		box-shadow: 0px 0px 15px RGBA(0,0,0,0.2);
		border-bottom: none;
		border-top: none;
		z-index: 999;
		/*position the autocomplete items to be the same width as the container:*/
		top: 32px;
		margin-left: -300%;
	}
	
	.autocomplete-items div {
		padding: 5px;
		cursor: pointer;
		background-color: #fff; 
		border-bottom: 1px solid #d4d4d4; 
	}
	
	/*when hovering an item:*/
	.autocomplete-items div:hover {
		background-color: orange; /*#e9e9e9;*/ 
	}
	
	/*when navigating through the items using the arrow keys:*/
	.autocomplete-active {
		background-color: Orange !important; 
	color: #ffffff; 
	}
	
	.hidden-content {
		display: none;
	}
	
}


