.barra_header__buscador {
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
    display: block;
}

.barra_header__buscador--input-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    min-width: 240px;
    width: 100%;
}

.barra_header__buscador--input {
    flex: 1 0 200px;
    border: 0px;
    padding: 6px 0px 6px 12px;
    font-size: 1em;
    border-radius: 25px 0 0 25px;
}

.barra_header__buscador--btn {
    flex: 0 0 40px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1em;
    border-radius: 50%;
    border: 0px;
    width: 40px;
    height: 40px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.barra_header__buscador--btn:hover {
    background-color: #333;
}

.areaRBuscaD {
    display: block;
    position: relative;
    width: 50vw;
    min-width: 240px;
}

.pesDinamica {
    width: 100%;
    display: none;
    position: absolute;
    padding: 12px;
    top: 1px;
    left: 0;
    background-color: #fff;
    box-shadow: 1px 7px 8px #000;
    z-index: 10;
}

.pesDinamica span {
    display: block;
    padding: 1em;
    font-size: small;
    font-weight: 400;
    line-height: 1;
    color: #333;
    text-align: left;
}

.pesDinamica .linhaRB {
    width: 100%;
    display: flex;
    border-top: 1px solid #f5f5f5;
    text-decoration: none;
}

.pesDinamica .linhaRB:first-child {
    padding-top: 0;
    border-top: 0;
}

.pesDinamica .linhaRB:hover {
    background-color: #d5d5d5;
}

.pesDinamica .linhaRB .linhaRBimg {
    width: 52px;
    height: 52px;
    margin-right: 0.5em;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #f5f5f5;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.pesDinamica .linhaRB .promo-tag {
    display: inline-block;
    padding: 6px;
    background-color: #f00;
    color: #fff;
    margin-left: 12px;
}

.pesDinamica .linhaRB .linhaRBtitle {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: small;
    color: #333;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: space-between;
}

.pesDinamica .linhaRB .linhaRBtitle li {
    border: 0x solid #ccc;
    font-weight: 400;
    flex: 1 1 0;
    padding: 6px;
    transition: all 0.2s ease-in-out;
}
.pesDinamica .linhaRB .linhaRBtitle li:hover{
    background-color: #f5f5f5;
}

.pesDinamica .linhaRB .linhaRBtitle li.codigo {
    flex: 0 1 120px;
    font-size:0.9em;
}
.pesDinamica .linhaRB .linhaRBtitle li.titulo{
    flex: 1 1 0;
    font-size:1em;
    font-weight: bold;
}
@media (max-width: 768px) {
    
}
@media (max-width: 553px) {
    .areaRBuscaD{
        width: 100%;
    }
}