:root {
    --search_text_normal: 'Roboto-Regular', sans-serif;
    --search_text_medium: 'Roboto-Regular', sans-serif;
    --search_text_bold: 'Roboto-Bold', sans-serif;
    --search_color: #1A171B;
}

.arbol-list {
    float: left;
    width: 100%;
    margin-top: 45px;
    margin-bottom: 100px;
}

.arbol-list ul {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arbol-list ul li {
    flex: 0 1 auto;
    text-align: center;
    transition: all .5s ease;
    position: relative;
    column-gap: 5px;
}

.arbol-list ul li a {
    color: #333333;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.1px;
    font-family: var(--search_text_medium);
    position: relative;
}

.arbol-list ul li:after {
    position: relative;
    content: "";
    top: 4px;
    display: inline-block;
    width: 2px;
    height: 18px;
    margin: 0px 25px;
    border-right: 2px solid #333333;

    margin: 0;
    margin-left: 10px;
}

.arbol-list ul li:last-child::after {
    display: none;
}

.arbol-list ul li a:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #333333;
    opacity: 0;
    transition: all .5s ease;
}

.arbol-list ul li a.active:before,
.arbol-list ul li:hover a:before {
    opacity: 1;
}

/* MEDIA */
@media screen and (max-width: 767px) {

    /* buscador */
    .arbol-list {
        margin-top: 30px;
        width: calc(100% + 15px);
    }

    .arbol-list ul {
        padding-bottom: 5px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: scroll;
        justify-content: left;
    }

    .arbol-list ul::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .arbol-list ul {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .arbol-list ul li::after {
        margin: 0px 12px;
    }

    .arbol-list ul li a {
        font-size: 14px;
    }
}

/*** Override ***/
.result-img img {
    max-height: 600px;
    object-fit: contain;
}

/*** END Override ***/