/*Variable*/
:root {
  --primary-color: #ff006f;
  --secondary-color: #00bee3;
  --accent-color: #76b72a;
}

/*Menu*/

    /*Alignement*/  
    .header-bottom__row {flex-direction: column;}
    .main-menu {justify-content: center;}
    #top-menu li {padding: 0 1em;}

    /*Logo*/ 
    .logo {justify-content: center;}
    .header-bottom .navbar-brand {padding: 10px;}
    .header-bottom .navbar-brand::after {
        background-size: cover;
        content: '';
        background-image: url(/img/cms/Logos/drapeau-france.svg);
        display: block;
        height: 5px;
        margin-top: 5px;
    }

    /*Bouton Estimer rachat*/
    #top-menu li:nth-child(1) a {
        transition:all 0.2s;
        padding: 5px 15px;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 10px;
        font-size: 17px;
    }
    #top-menu li:hover:nth-child(1) a {
        background-color:var(--primary-color);
        color:#ffffff!important;
        transform:scale(1.1);
    }
    

    /*Survol des titres*/
    #top-menu li:nth-child(2):hover a {
        color:var(--accent-color);
    }
    #top-menu li:nth-child(3):hover a {
        color:var(--primary-color);
    }
    #top-menu li:nth-child(4):hover a {
        color:var(--secondary-color);
    }

/*Footer*/

    /*Block Réassurance*/
    .blockreassurance .block-icon #fill{
        opacity: 1;
    }
    .blockreassurance .block-icon #color {
        fill: white;
    }
    .blockreassurance .block-title {
        padding-top: 10px;
    }

/* Buyback steps (tunnel reprise) */
.bb-steps {
    width: 100%;
}
.bb-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.bb-steps__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #6c757d;
    font-weight: 500;
    flex: 1;
}
.bb-steps__item--done,
.bb-steps__item--current {
    color: var(--primary-color);
}
.bb-steps__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: inherit;
    text-decoration: none;
}
.bb-steps__link:hover {
    text-decoration: none;
    color: inherit;
}
.bb-steps__index {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
}
.bb-steps__item--done .bb-steps__index {
    background: #fde6f0;
    color: var(--primary-color);
}
.bb-steps__item--current .bb-steps__index {
    background: var(--primary-color);
    color: #fff;
}

/* Buttons disabled (anchors) */
.btn.disabled,
.btn[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.65;
    cursor: not-allowed;
}

/* Wishlist: replace hearts by stars everywhere */

.wishlist-button-add
{
    box-shadow: .125rem -0.125rem .25rem 0 rgba(255, 0, 111, .2);
}
.wishlist-button-add .material-icons {
    margin-left: 1px;
    margin-bottom: 2px;
    color: var(--primary-color);

}
