.voice-search-widget {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    display: none;
}
#voice-search-field {
    flex: 1;
    margin-right: 10px;
}
.floating-voice-search {
    z-index: 1;
    position: fixed;
    bottom: 103px;
    right: 20px;
    background-color: #000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border: 5px solid #000;
}
#voice-search-button i.fas.fa-microphone {
    font-size: 20px;
}
@media (max-width: 767px){
	.floating-voice-search {
        height: 40px;
        width: 40px;
        right: 10px;
	}
}