.portefeuille-strategie{
    position: relative;
    width: 100%;
    max-width: var(--ltc-wrapper-width);
    margin: 0 auto;
    display: block;
    background-color: var(--ltc-grey);
}

.portefeuille-strategie h3{
    margin-top: 30px
}

.portefeuille-strategie .nav-tabs {
    border-bottom: none;
}

.portefeuille-strategie .nav-tabs .nav-link {
    
    color: var(--ltc-blue);
    background-color: transparent;
    border: 2px solid var(--ltc-yellow);
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.portefeuille-strategie .nav-tabs .nav-link .material-icons {
    font-size: 20px;
    color: inherit;
}

.portefeuille-strategie .nav-tabs .nav-link .icon-open {
    display: none;
}

.portefeuille-strategie .nav-tabs .nav-link.active .icon-closed {
    display: none;
}

.portefeuille-strategie .nav-tabs .nav-link.active .icon-open {
    display: inline-block;
}

.portefeuille-strategie .nav-tabs .nav-link:hover,
.portefeuille-strategie .nav-tabs .nav-link:focus {
    color: var(--ltc-blue);
}

.portefeuille-strategie .nav-tabs .nav-link.active {
    color: var(--ltc-blue);
    background-color: var(--ltc-yellow);
    /*border: none;*/
    font-weight: 600;
}

