/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background: #E3F2FD;
}
#select-menu1{
    width: 140px;
    position: absolute;
    right: 20px; 
    top: -25px;
    z-index: 1;
}
#select-menu2{
    width: 160px;
    position: absolute;
    left: 20px; 
    top: -25px;
    z-index: 1;
}
.select-menu .select-btn{
    display: flex;
    height: 55px;
    background: #fff;
    padding: 15px;
    font-size: 10px;
    font-weight: 400;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.select-btn i{
    font-size: 15px;
    transition: 0.3s;
    display: inline;
}
.select-menu.active .select-btn i{
    transform: rotate(-180deg);
}
.select-menu .options{
    position: relative;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    display: none;
}
.select-menu.active .options{
    display: block;
}
.options .option{
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}
.options .option:hover{
    background: #F2F2F2;
}
.option i{
    font-size: 25px;
    margin-right: 12px;
}
.option .option-text{
    font-size: 10px;
    color: #333;
}

.icon-container {
    width: 20px; 
    height: auto; 
    overflow: hidden;
    margin-right: 5px; 
  }


@media (max-width: 570px){
    #select-menu1{
        width: 130px;
        position: absolute;
        right: 20px; 
        top: -60px;
        z-index: 1;
    }
    #select-menu2{
        width: 130px;
        position: absolute;
        left: 15px; 
        top: -30px;
        z-index: 1;
    }
}

/* @media (max-width: 1030px){
	#select-menu1{
        width: 300px;
        position: absolute;
        right: 20px; 
        top: -300px;
        z-index: 1;
    }
	#select-menu2{
        width: 300px;
        position: absolute;
        right: 20px; 
        top: -300px;
        z-index: 1;
    }
	.sBtn-text{
		font-size: 1.5rem;
	}
	.option .option-text{
		font-size: 20px;
		color: #333;
	}
	.icon-container {
		width: 40px; 
		height: auto; 
		overflow: hidden;
		margin-right: 5px; 
	  }
}
@media (max-width: 870px){
	#select-menu1{
        width: 300px;
        position: absolute;
        right: 20px; 
        top: -180px;
        z-index: 1;
    }
	#select-menu2{
        width: 300px;
        position: absolute;
        right: 20px; 
        top: -50px;
        z-index: 1;
    }
	.sBtn-text{
		font-size: 1.5rem;
	}
	.option .option-text{
		font-size: 20px;
		color: #333;
	}
	.icon-container {
		width: 40px; 
		height: auto; 
		overflow: hidden;
		margin-right: 5px; 
	  }
} */
