/*CSS Look breadcrumb*/
.custom-breadcrumb{
    font-size: var(--font-size-content-small);
}
    .custom-breadcrumb li{
        line-height: 1.2;
    }
        .custom-breadcrumb li:nth-child(1) i{
            background-image: url("data:image/svg+xml;charset=UTF-8, <svg viewBox='0 0 21 20' fill='rgb(116,118,121)' xmlns='http://www.w3.org/2000/svg'><path d='M9.74776 0.926907C10.1266 0.59012 10.6976 0.59012 11.0765 0.926907L20.0765 8.92691C20.4893 9.29383 20.5264 9.9259 20.1595 10.3387C19.7926 10.7515 19.1605 10.7886 18.7478 10.4217L18.4121 10.1234V17.6743C18.4121 18.7789 17.5167 19.6743 16.4121 19.6743H4.41212C3.30755 19.6743 2.41212 18.7789 2.41212 17.6743V10.1234L2.07648 10.4217C1.6637 10.7886 1.03163 10.7515 0.664711 10.3387C0.297793 9.9259 0.334973 9.29383 0.747756 8.92691L9.74776 0.926907ZM4.41212 8.3456V17.6743H7.41212V12.6743C7.41212 12.122 7.85984 11.6743 8.41212 11.6743H12.4121C12.9644 11.6743 13.4121 12.122 13.4121 12.6743V17.6743H16.4121V8.3456L10.4121 3.01227L4.41212 8.3456ZM11.4121 17.6743V13.6743H9.41212V17.6743H11.4121Z'/></svg>");
            background-repeat: no-repeat;
            background-size: 100%;
        } 
        .custom-breadcrumb li i{
            margin: 0 5px 0 7px;
            background-image: url("data:image/svg+xml;charset=UTF-8, <svg viewBox='0 0 9 15' fill='rgb(223,193,78)' xmlns='http://www.w3.org/2000/svg'><path d='M0.705003 14.3814C0.314478 13.9909 0.314478 13.3577 0.705003 12.9672L5.9979 7.67432L0.705002 2.38142C0.314478 1.9909 0.314478 1.35773 0.705002 0.96721C1.09553 0.576685 1.72869 0.576685 2.11922 0.96721L8.11922 6.96721C8.50974 7.35773 8.50974 7.9909 8.11922 8.38142L2.11922 14.3814C1.72869 14.7719 1.09553 14.7719 0.705003 14.3814Z'/></svg>");
            background-repeat: no-repeat;
            background-position: center;
        }
        .custom-breadcrumb a{
            color:var(--global-color-alt1-grey);
            transition:all var(--transition-segs-medium) ease-in-out 0s;
            line-height: 1;
        }
        .custom-breadcrumb a:hover{
            color:var(--global-color-ocre-medium);
        }