/* Feuille de style de la liste Prog > Séances */

.i-say-prog-seances {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.pSeance {
    flex: 0 0 calc(25% - 20px); 
    margin: 10px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.pSeance img {
    width: 100%;
    height: 256px;
    object-fit: cover;
	transition: filter 0.8s ease;
}

.pSeance img:hover {
	filter:saturate(3);
}

.pSeance h2 {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
	padding: 0 5px;
    font-size: 18px;
	font-weight: 600;
    display: inline-block;
    max-width: calc(100% - 15px); 
}

.pSeance h3 {
	position: absolute;
	top: 40px;
    left: 10px;
	padding: 0 5px;
    font-size: 14px;
	font-weight: 400;
}

.pSeance h2, .pSeance h3 {
	color: #000;
	background: #FFF;
	text-transform: uppercase;
    text-align: left;
}

.pSeance p {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    color: #000;
    margin: 0;
    padding: 10px;
    font-size: 14px;
    text-align: left;
	font-weight: 400;
}

.pSeance .pDate,
.pSeance .pHeure,
.pSeance .pSalle,
.pSeance .pCreneau {
    display: inline-block;
    margin-right: 10px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color:#ffffff;
}

.pDate {
    background: #000000;
}

.pCreneau {
    background: #000000;
}

.pSalle {
    background: #000000;
}

.pHeure {
    background: #000000;
}
/* style filtre */
.seances-filters {
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
	margin: 10px;
}

.seances-filters > select {
	background: #FFF;
	margin-right: 10px;
	padding: 5px;
	font-family: 'Ubuntu', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	color: #000;
	border: 1px solid #000;
	cursor: pointer;
	max-width: 185px;
	-webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    box-shadow: none;
}

#reset-filters {
	background: #000;
	padding: 5px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	color: #FFF;
	border: 1px solid #000;
	border-radius: 0;
	transition: all 0.8s ease-out;
	cursor: pointer;
}

#reset-filters:hover {
	background: #FFF;
	color: #000;
}

@media (max-width: 768px) {
    .pSeance {
        flex: 0 0 calc(100% - 20px);
	}
	.seances-filters > select {
		min-width: 100%;
		margin-bottom: 10px;
	}
}
