.search-currency-box{
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
}
.search-icon {
cursor: pointer;
font-size: 24px;
display: inline-block;
}
.search-icon img{
width: 25px;
}
.search-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
display: none;
}
.search-popup-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
}
.search-popup-content {
position: relative;
background: #fff;
width: 80%;
max-width: 700px;
margin: 100px auto;
padding: 30px 20px; 
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.suggestions li a{
color: #000;
}
.search-popup-close {
position: absolute;
top: 5px;
right: 5px;
background: none;
border: none;
font-size: 24px;
cursor: pointer;
}
#excursion-search {
display: flex;
align-items: center;
gap: 10px;
}
.search-input-wrapper {
position: relative;
width: 100%;
}
#search-input {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.suggestions {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
border: 1px solid #ccc;
border-radius: 4px;
max-height: 300px;
overflow-y: auto;
z-index: 1001;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.suggestions li {
padding: 10px;
border-bottom: 1px solid #eee;
cursor: pointer;
font-size: 14px;
}
.suggestions li:hover {
background: #f0f0f0;
}
.search-submit {
padding: 10px 20px;
background: #24A0BD;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
.search-submit:hover {
background: #005d8a;
}
select[name="excursion_category"] {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
width: 100%;
box-sizing: border-box;
} @media (max-width: 768px) {
.search-popup-content {
width: 90%;
max-width: 100%;
margin: 50px auto;
padding: 15px;
border-radius: 6px;
}
.search-currency-box{
margin-right: 0px;
}
.search-popup-close {
top: 8px;
right: 8px;
font-size: 20px;
}
#excursion-search {
flex-direction: column;
gap: 8px;
}
#search-input {
padding: 8px;
font-size: 14px;
}
.suggestions li {
padding: 8px;
font-size: 13px;
}
.search-submit {
padding: 8px 16px;
font-size: 14px;
width: 100%;
box-sizing: border-box;
}
select[name="excursion_category"] {
padding: 8px;
font-size: 14px;
}
}
@media (max-width: 480px) {
.search-popup-content {
width: 90%;
margin: 100px auto;
padding: 20px;
border-radius: 4px;
}
.search-popup-close {
top: 0px;
right: 5px;
font-size: 20px;
}
#search-input {
padding: 15px;
font-size: 14px;
}
.suggestions {
max-height: 250px;
}
.suggestions li {
padding: 10px;
font-size: 12px;
}
.search-submit {
padding: 12px;
font-size: 14px;
}
select[name="excursion_category"] {
padding: 6px;
font-size: 13px;
}
.search-icon {
font-size: 20px;
padding: 0px;
}
.search-icon img{
width: 20px;
}
}