@import url('imp_legal.css');



/**
 * Index 
 */

.code-ethique-index {
    position: relative;
}

.code-ethique-index nav {
    margin-top: 20px;
}

.code-ethique-index__item-title {
    font-weight: 600;
    margin-bottom: 10px;
}
.code-ethique-index__item-title > ul,
.code-ethique-index__item-title > ol {
    margin-left: 18px;
    font-weight: 400;
}

.code-ethique-index__item-section-description {
    margin-top: 5px;
}

.code-ethique-index__item-section-description div {
    cursor: default;
    margin-left: 14px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.02em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #11baec;
    text-shadow: 1px 1px 1px white;
}

@media (min-width: 1280px) {

    .code-ethique-index::after {
        content: url(/public/img/code-ethique.svg);
        display: block;
        position: absolute;
        height: auto;
        width: 428px;
        bottom: 25px;
        right: 40px;
        opacity: 0.15;
    }

    .code-ethique-index__item-section-description div {
        font-size: 0.86em;
    }
}



/**
 * Liens index
 */

.code-ethique-index a {
    display: flex;
    align-items: center;
    margin: 0;
    transition: margin 250ms ease;
}

.code-ethique-index a:hover {
    margin-left: 20px;
}

.code-ethique-index a::before {
    content: '\f0da';
    font-family: 'FontAwesome';
    font-size: 1.2em;
    line-height: 1;
    margin-right: 5px;
    opacity: 0;
    transition: opacity 100ms ease;
}

.code-ethique-index a:hover::before {
    opacity: 1;
}