﻿.pesquisa-control-container {
    width: 400px;
    height: 200px;
    border-radius: 25px;
    background-color: white;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    transition: 0.5s;
}

.pesquisa-control-container-animado {
    animation: blinkpesquisa 0.9s ease-in-out infinite alternate;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

@keyframes blinkpesquisa {
    50% {
        box-shadow: 0 1px 9px 4px rgba(44, 179, 204, 1);
    }
}

.pesquisa-control-inner-container {
    width: 400px;
}

.pesquisa-control-div-btn-pesquisa {
    float: left;
}

.pesquisa-control-div-input {
    width: calc(100% - 120px);
    height: 40px;
    float: left;
    display: flex;
}

.pesquisa-control-div-menu {
    float: left;
}

.pesquisa-control-btn-pesquisa {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    padding-left: 1px;
    border: 0;
    padding: 0;
    background-color: white;
}

.pesquisa-control-i-pesquisa {
    font-size: 18px;
    margin-top: 2px;
}

.pesquisa-control-input {
    width: 100%;
    height: 25px;
    margin: auto;
    border: 0;
    border-bottom: 1px solid #868686;
    font-family: 'Roboto';
    font-size: 15px;
}

.pesquisa-control-btn-menu {
    width: 40px;
    height: 40px;
    border-radius: 25px;
    padding-left: 1px;
    border: 0;
    padding: 0;
    background-color: white;
}

.pesquisa-control-i-menu {
    font-size: 18px;
    margin-top: 2px;
}

.pesquisa-control-div-opcao {
    width: 100%;
    height: 40px;
    background-color: white;
    float: left;
}

.pesquisa-control-div-opcao-hint {
    position: absolute;
    margin: 6px 0px 0 12px;
    font-size: 20px;
    cursor: pointer;
}

.pesquisa-control-btn-opcao {
    width: 100%;
    height: 40px;
    background-color: white;
    border-radius: 25px;
    border: 0;
    text-align: center;
    font-family: 'Roboto';
    font-size: 15px;
}

    .pesquisa-control-btn-opcao:hover {
        background-color: #dedede;
    }

.pesquisa-control-btn-opcao-ativo {
    background-color: #ececec;
}

@media only screen and (max-width: 420px) {
    .leaflet-right {
        width: 100%;
    }

    .pesquisa-control-container {
        width: calc(100% - 20px);
        margin-left: 10px;
    }

    .pesquisa-control-inner-container {
        width: 100%;

    }
}