
/* -------------
    SOMMAIRE
------------- */

/*
    @AUTHOR : Nicolas BOUDOT

    GLISSIÈRE
    Style du bloc des glissières
*/

/*
  00 - GÉNÉRAL
*/



/* -----------------
  00 - GÉNÉRAL
----------------- */
.glissiere-item {
    background-color: var(--c-tertiary);
    width: 100%;
    position: relative;
    padding: 22px 19px 17px 21px;
}
.glissiere-item:not(:last-child) {
    margin-bottom: 34px;
}
.glissiere-item::after {
    content: "";
    background-color: var(--c-primary);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 9px;
    left: 9px;
}

/* Icon */
.glissiere-item [class*="icon-"] {
	margin-left: auto;
    transition: transform .15s;
    transform: rotate(-180deg);
}

    .glissiere-item.active [class*="icon-"] {
        transform: rotate(-90deg);
    }

/* Titre */
.glissiere-item .titre {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--c-primary);
    font-size: var(--fz-h3);
    font-weight: 700;
}

/* Contenu */
.glissiere-item .contenu {
    display: none;
    padding: 34px 20px 70px 0;
}
