

.box-pesquisa-exames a {
    text-decoration: none;
}

.box-pesquisa-exames {
    background: #FFFFFF;
    border: 1px solid rgba(99, 99, 99, 0.3);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 31px 101px;
}

.box-pesquisa-exames .redline {
    background: #FF4445;
    border-radius: 4px;
    width: 45px;
    height: 2px;
    margin: 10px 0 20px 0;
}

.box-pesquisa-exames h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
    color: #2C2C2C;
    margin: 0;
}

.box-pesquisa-exames .search-card {
    position: relative;
    display: flex;
    justify-content: center;
}

.box-pesquisa-exames .search-card path {
    transition: all ease 0.5s;
}

.box-pesquisa-exames .search-card #svg-desktop {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 18px;
    margin-top: 14px;
}

.box-pesquisa-exames .search-card #svg-mobile {
    position: absolute;
    left: 5px;
    top: 0;
    display: none;
    margin-top: 14px;
    margin-right: 18px;
}

.box-pesquisa-exames .search-card input {
    height: 46px;
    width: 100%;
    border-radius: 4px;
    padding-left: 50px;
    margin-bottom: 5px;
    background: #F7F8FC;
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
    border: 0px;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: left;
    color: #666666;
    transition: all ease 0.5s;
}

.box-pesquisa-exames .search-card input:focus {
    outline: none;
    color: #515356;
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.4);
}

.box-pesquisa-exames .search-card input:valid {
    color: #515356;
}

.box-pesquisa-exames .search-card .btn-buscar {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FF4445;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 15px;
    margin-right: 18px;
    transition: all ease 0.5s;
    cursor: unset;
}

.box-pesquisa-exames .search-card .btn-buscar:hover {
    color: #BB140F;
}

.box-pesquisa-exames .search-card .btn-svg:hover path {
    fill: #BB140F;
}



@media only screen and (max-width: 991px) {
    .box-pesquisa-exames {
        padding: 31px 50px;
    }

    .box-pesquisa-exames .search-card #svg-desktop {
        display: none;
    }

    .box-pesquisa-exames .search-card #svg-mobile {
        display: initial;
    }

    .box-pesquisa-exames .search-card input {
        padding-left: 34px;
    }

    .box-pesquisa-exames .search-card {
        padding: 0;
    }

    .box-pesquisa-exames .search-card .btn-buscar {
        display: none;
    }
}

@media only screen and (max-width: 767px) {

    .box-pesquisa-exames .search-card input {
        font-size: 13px;
    }

    .box-pesquisa-exames {
        padding: 31px 10px;
    }

    .box-pesquisa-exames .resultado-busca a {
        margin-top:20px;
    }
}

.box-pesquisa-exames .resultado-busca a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #E42722;
    border: 1px solid #E42722;
    border-radius: 4px;
    padding: 10px 48px;
    transition: all ease 0.3s;
    text-decoration: none;
}

.box-pesquisa-exames .resultado-busca a:hover {
    color: #FFFFFF;
    background: #BB140F;
    border: 1px solid #BB140F;
}

.box-pesquisa-exames .resultado-busca {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #5A5D67;
}

.box-pesquisa-exames .resultado-busca span {
    font-weight: bold;
    margin-right: 10px;
}

@media only screen and (max-width: 767px) {
    .box-pesquisa-exames .resultado-busca {
        display: flex;
        flex-direction: column;
    }

    .box-pesquisa-exames .resultado-busca {
        margin-bottom: 20px;
    }
}

.box-pesquisa-exames .ui-autocomplete {
    position: absolute;
    top: 110px;
    left: 100px;
    background: #F7F8FC;
    padding: 10px;
    z-index: 9999999;
	height: auto;
    overflow: auto;
}

.box-pesquisa-exames .ui-autocomplete li{
    list-style: none;
    padding: 10px 0 10px 55px;
    cursor: pointer;
    transition: all ease 0.5s;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}

.box-pesquisa-exames .ui-autocomplete li:hover{
    color: #BB140F;
}