#search-container {
            display: flex;
    		flex-direction: column;
    		position: relative;
    		width: 100%;
    		z-index: 3;
    		overflow: unset;
        }
#search-input-container {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }
#search-input {
            padding: 10px 40px 10px 10px;
            font-size: 16px;
            width: 100%;
            box-sizing: border-box;
            border-radius: 8px;
    		border: none;
}
#search-input:focus-visible {
    		outline: auto;
}
#search-button {
            position: absolute;
            right: 2.6rem;
            background: none;
            border: none;
            cursor: pointer;            
}
#search-button img {
			height: 2.1rem;
    		padding-top: 0.2rem;	
}
span.material-symbols-outlined {
  			font-size: 30px;
    		line-height: 2;
}
#close-suggestions {
            position: absolute;
            right: 0.3rem;
            cursor: pointer;
            
        }
#close-suggestions img {
			height: 2.4rem;
    		padding-top: 0.3rem;	
}
#suggestions {
            position: absolute;
            top: 100%;
            margin-top: 0.6vw;
            left: 0;
            right: 0;
            background-color: white;
            /*border: 1px solid black;*/
            max-height: 200px;
            overflow-y: auto;
            z-index: 10;
            display: none;
            border-radius: 8px;
    		box-shadow: 0px 4px 10px rgb(0 0 0 / 75%);
        }
@media (max-width: 540px) {
  			#suggestions {
  				margin-top: 1.6vw;
  			}
        }
#suggestions div {
            padding: 8px;
            cursor: pointer;
            color: black;
        }
#suggestions div.active {
            background-color: #f0b813;
        }
#suggestions div:hover {
            background-color: #dddddd;
        }