.search-results{
    position: absolute;
    width: 65vw;
    max-width: 860px;
    transform: translateX(-50%);
    left: 50%;
    margin: 0 auto;
    border-radius: 24px;
    z-index: 1;
    height: auto;
    overflow: scroll;
    background: white;
    max-height: calc(100dvh - 12dvh - 62px - 2vh - 10dvh);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
    overflow-x:hidden;
    top: calc(62px + 12dvh + 2dvh);
}
.topHiddenBarContainer .search-results{
    width: 100%
}
.shownBar .search-results{
    overflow: auto
}
.search-hit{
    position: relative;
    width: 100%;
    height: 110px;
    overflow: hidden;
    display: block;
    color: black;
    font-size: 12px;
    cursor:pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #d9d9db;
    z-index: 10000;
}
.search-hit:hover{
    background: rgba(37, 93, 180, 0.2);
}
.search-hit-img{
    position: relative;
    float: left;
    width: 62px;
    width: calc(17% - 10px);
    height: 74px;
    height: 70%;
    margin-left: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.categoriasAlgolia, .marcasAgolia {
    color: var(--base);
    border-bottom: 1px solid var(--crema);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0px 22px;
    font-size: 14px;
    cursor: pointer;
}
.search-buy-button .verMas {
    width: 21px;
}

.search-hit-info{
    position: relative;
    float: left;
    width: calc(40% - 20px);
}
.search-hit-title{
    position: relative;
    float: left;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 15px;
    font-weight: 500;
    line-height: 18px;
    font-size: 14px;
    overflow: hidden;
}
.search-hit-client{
    position: relative;
    float: left;
    width: 100%;
    height: 23px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
    line-height: 22px;
}
.search-hit-price{
    position: relative;
    float: left;
    color: black;
    font-weight: 400;
    text-align: center;
    margin-right: 15px;
    font-size: 18px;
    width: calc(100% - 15px);
}
.search-hit-itau-price{
    position: relative;
    float: left;
    color: #DA7349;
    font-weight: 600;
    width: calc(100% - 15px);
    text-align: center;
    margin-right: 15px;
    font-size: 14px;
    line-height: 22px;
}
.search-hit-itau-img {
    background-image: url(/files/banks/itau.svg);
    position: relative;
    float: left;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image:url("/files/banks/itau.svg");
}
.search-buy-button{
    position: relative;
    border-radius: 110px;
    float: right;
    width: 92px;
    width: calc(17% - 10px);
    height: 40px;
    background: transparent;
    color: var(--base);
    text-transform: uppercase;
    border: 1px solid var(--base);
    line-height: 28px;
    text-align: center;
    font-size: 12px;
    display: flex;
    padding: 0px 8px;
    margin-right: 40px;
    align-items: center;
    justify-content: space-around;
}
.search-buy-button:hover {
    color: var(--white);
    background: var(--base);
    transition: filter 0.2s;
}

.search-buy-button:hover img {
    filter: brightness(10);
}
.search-hit-view-all{
    position: relative;
    display: block;
    text-align: center;
    color: black;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.search-hit-view-all:hover{
    background: rgba(37, 93, 180, 0.2);
}
.search-hit-prices-box{
    width: 32%;
    display: flex;
    align-items: center;
}
@media screen and (max-width:1200px){
    .search-hit-itau-img{
        margin-right: 5px;
        display: none !important;
    }
    .search-hit-price{
        width: calc(100% - 40px);
        text-align: left;
        margin-left: 25px;
        font-size: 13px;
    }
    .search-hit-prices-box{
        width: 27%;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }
    .search-hit-info{
        width: calc(39% - 20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .search-hit-title{
        margin-top: 0px;
        line-height: 15px;
        height: 30px;
        display: flex;
        align-items: center;
    }
    .search-hit-client{
        line-height: 23px;
    }
    .search-hit-itau-price{
        width: calc(100% - 40px);
        text-align: left;
        margin-left: 25px;
        font-size: 13px;
    }
    .search-buy-button{
        width: calc(20%);
        margin-left: unset;
    }
    .search-results{
        margin-top: 0px !important;
        max-height: calc(50vh);
        box-shadow: 0px 5px 16px rgb(0 0 0 / 69%);
        top: -10px;
        width: 90%;
    }
}

@media screen and (max-width:768px){
    .search-results{
        display:none;
    }
}