/* Contenu du div de la timeline */

input[type="datetime-local"] {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#timeline {
    padding: 20px 100px;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-size: 12px;
    transition: height 0.3s ease;
    z-index: 1000;
}

#titreTimeLine{
    font-size: 15px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.labels-StartEndDate{
    margin: 2px 0;
}

/* style du slicer */
#dateRange {
    width: 100%;
    margin-top: 20px;
}


/* Div des boutons sous la timeline */
#filters-divButtons {
    margin-top: 50px;
    /* display: flex;
    justify-content: space-around;
    flex-wrap: wrap; */
}

.btn {
    position: relative;
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: #212121 solid .5px;
    font-family: inherit;
    background-color: white;
}


/* style des boutons timeline communs     */
/* .btnFilter:hover,
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

.btnFilter:active,
.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btnFilter::after,
.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}

.btn::after {
    background-color: #fff;
}

.btnFilter:hover::after,
.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
} */

/* From Uiverse.io by xueyuantan */ 
/* button {
width: 9em;
height: 3em;
border-radius: 30em;
font-size: 15px;
font-family: inherit;
border: none;
position: relative;
overflow: hidden;
z-index: 1;
box-shadow: 6px 6px 12px #c5c5c5,
    -6px -6px 12px #ffffff;
}

button::before {
content: '';
width: 0;
height: 3em;
border-radius: 30em;
position: absolute;
top: 0;
left: 0;
background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
transition: .5s ease;
display: block;
z-index: -1;
}

button:hover::before {
width: 9em;
} */

