#fd_mostVisited .form_formulaire_category label {
    font-size: 13px;
    font-weight: 600;
}

#fd_mostVisited .inline-row {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 15px;
}
#fd_mostVisited .row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}
#fd_mostVisited .liste-container {
    flex-direction: column;
    align-items: flex-start;
}
#fd_mostVisited .column-4 {
    width: 33%;
}
#fd_mostVisited .column-6 {
    width: 50%;
}

/* style pour le toggle */
#fd_mostVisited .toggle {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
#fd_mostVisited .toggle input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    cursor: pointer;
    appearance: none;
}

#fd_mostVisited .toggle input[type="checkbox"]:checked + label:after {
    content: 'OUI';
    color: #9ec189;
    transform: translate3d(48px, 0, 0);
}
#fd_mostVisited .toggle input[type="checkbox"]:focus {
    outline: unset !important;
}

#fd_mostVisited .toggle label {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    box-sizing: border-box;
}
#fd_mostVisited .toggle label:before {
    content: '';
    display: inline-block;
    box-sizing: border-box;
    transition: 0.2s ease-in;
    position: relative;
    height: 30px;
    width: 96px;
    border-radius: 15px;
    background: #ecf0f3;
}
#fd_mostVisited .toggle label:after {
    content: 'NON';
    height: 30px;
    width: 48px;
    box-sizing: border-box;
    border-radius: 15px;
    background: #ffffffcf;
    font-family: arial;
    color: #cf2525c9;
    font-size: 11px;
    line-height: 30px;
    font-weight: 800;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35);
}
#fd_mostVisited #addListe {
    border: none;
    height: 33px;
    border-radius: 13px;
}

#fd_mostVisited dialog {
    outline: unset;
    border: none;
    width: 50%;
    top: -35%;
    left: 16%;
    border-radius: 15px;
    box-shadow: #0000007d 3px 4px 9px 0;
    text-align: center;
}

#fd_mostVisited .closeButton {
    position: absolute;
    top: 4%;
    right: 2%;
    border-radius: 50%;
    padding: 0.5em;
    width: 30px;
    height: 30px;
    border: 2px solid #a4845a;
    background-color: #a4845a;
    color: white;
    z-index: 18;
}
#fd_mostVisited .closeButton::before {
    content: " ";
    position: absolute;
    display: block;
    background-color: white;
    width: 2px;
    left: 12px;
    top: 5px;
    bottom: 5px;
    transform: rotate(45deg);
}

#fd_mostVisited .closeButton::after {
    content: " ";
    position: absolute;
    display: block;
    background-color: white;
    height: 2px;
    top: 12px;
    left: 5px;
    right: 5px;
    transform: rotate(45deg);
}

/* ------ Style pour le front ------ */
#fd_mostV {
    margin-bottom: 18px;

    @media(max-width: 767px) {
        margin-top: 15px;
    }

    .content {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;

        @media(max-width: 1024px) {
            gap: 10px;
            flex-direction: column;
        }

        .fd_mostV_header {
            color: #1c2123;
            font-family: Karla, sans-serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -.4px;
            line-height: 22px;
            margin: 0;
            display: inline-block;
        }
        .linkElementContainer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;

            .linkForCat {

                a {
                    padding: 6px 10px;
                    border-radius: 30px;
                    user-select: none;
                    text-decoration: none;
                    font-size: 13px;
                    font-family: "Lato", sans-serif;
                    border: solid 1px #183157;
                    background: #F2F2F2;
                    color: #183157;

                    &:hover, &.active{
                        background-color: #DDDFE7;
                    }
                }
            }
        }
    }
}
