/* Search box */

.container-header {
    padding: var(--padding-3xs) 0;
}

.vuesaxlinearlocation-icon {
    width: 30px;
    height: 30px;
}

.filter-box {
    position: relative;
    border-radius: var(--br-31xl);
    background-color: var(--color-white);
    box-shadow: var(--normal-box-shadow);
    width: 316px;
    height: 70px;
    overflow: hidden;
    padding: 0px 20px;
}

.search-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    border-radius: var(--br-31xl);
    background-color: var(--color-white);
    box-shadow: var(--normal-box-shadow);
    align-items: center;
    padding: 10px 15px 10px 20px;
}

.search-medicines-generics {
    width: 100%;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    padding: 0px;
    border: none;
    outline: none;
}

.search-icon {
    position: relative;
    width: 25px;
    height: 25px;
}

.search-btn {
    border-radius: 60px;
    background-color: var(--color-royalblue);
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Search btn or Mic btn */

.search-btn i {
    display: none;
}

.search-btn i.active {
    display: block;
}

.search-btn.mic-btn {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: auto;
    height: auto;
    border-radius: 50%;
    background: var(--color-secondary);
    border: 2px solid #ffffff;
    box-shadow: 0px 2px 5px 0px #E4EEFC;
}

.search-btn.mic-btn.listening::before,
.search-btn.mic-btn.listening::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.search-btn.mic-btn.listening::before {
    width: 25px;
    height: 25px;
    z-index: -1;
    background-color: var(--color-primary);
}

.search-btn.mic-btn.listening::after {
    width: 40px;
    height: 40px;
    animation: pulse 1s linear infinite;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }
    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media only screen and (max-width: 1440px) {
    .filter-box {
        width: 200px;
    }
}

@media only screen and (max-width: 1200px) {
    .filter-box {
        width: 316px;
    }
}

@media only screen and (max-width: 1100px) {
    .filter-box {
        width: 200px;
    }
}

@media only screen and (max-width: 750px) {
    .search-bar {
        width: 95%;
    }
    .filter-box {
        display: none !important;
    }
    lottie-player {
        width: 100% !important;
        height: 100% !important;
    }
}

@media only screen and (max-width: 450px) {
    .search-bar {
        width: 95%;
        padding: 8px 10px 8px 18px;
    }
    .mic-btn .iconsax svg {
        width: 20px;
        height: 20px;
    }
}