/* searchform */

.search-popup-btn {
	display: flex; 
	align-items: center; 
	justify-content: center;
	cursor: pointer
}

#search-popup-toggle {
	display: none;
}

.search-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99;
}

.search-popup-content {
	background: var(--thi-background-color);
	padding: 20px;
	max-width: 600px;
	width: 90%;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	position: relative;
	height: 600px;
	overflow: auto;
	border-radius: 8px;
	border: 4px solid black;
}

.search-popup-close,
.search-popup-close-btn {
	cursor: pointer;
}

.search-popup-close {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.search-popup-close-btn {
    display: flex;
    background: #000000;
    color: white;
    padding: 10px;
    text-align: center;
    position: sticky;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    top: 0px;
    right: 0px;
    transform: translate(50%, 50%);
	font-size: 10px;
	z-index: 10;
}

#search-popup-toggle:checked + .search-popup-btn + .search-popup-overlay {
	display: flex;
}







.search-suggestions {
    position: absolute;
    width: 100%;
}

.search-suggestions .search-results {
	list-style-position: inside;
	display: flex; 
	padding: 10px 0;
	flex-direction: column;


}

.search-suggestions .search-results li {
	/*background: white;*/
	padding: 10px;
}

.search-suggestions .search-results li:hover {
	background: #0005;
}

.search-suggestions .search-results li a {
	display: block;
	width: 100%;
	height: 100%
}

/* search form */
