.ee{
	position: fixed;
	overflow-y: scroll;
	width: 50%;
	height: 100%;
	top: 0;
	right: 0;
	border-top: 1px solid var(--color-green);
	
}

.ww{
	position: fixed;
	overflow-y: scroll;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-top: 1px solid var(--color-green);
}


#category{
	position: absolute;
	top: 40px;
	left: 10px;
	color: black;
	width: 100%;
}

#category ul{
		width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center align the flex items */
}

#topic-filters,
#sortie-filters{
	margin-top: 5px !important;
}

#category li{
    display: inline-block;
    margin-right: 10px;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 20px;
    padding: 3px 7px 2px 7px;
    z-index: 200;
    cursor: pointer;
}




.filter-selected {
    background-color: black !important;
    color: white !important;
}

#movie-list{
	  margin-top: 100px;
}


figure{
	width: 100%;
	padding: 5px;
	border-bottom: 1px solid var(--color-green);
	
}



.films-headline{
	width: 100%;
	color: white;
	background-color: var(--color-green);
	font-family: var(--alaska-exp);
	text-transform: uppercase;
	position: sticky;
	top: 0;
	left: 0;
	text-align: center;
	z-index: 10;

}


.films-headline:last-child{
	border-left: 1px solid white;
}

h4{
	text-transform: uppercase;
}

.details-movie{
	text-align: right;
}



 .film-cover{
	filter: grayscale(1);
	transition-duration: .5s;
}


.film-cover:hover{
 	filter: grayscale(0);
	transition-duration: .2s;
}

.pro-info{
	width: 100%;
	background-color: var(--color-green);
	color: white;
	padding: 2px;
	text-align: center;
}


@media only screen and (max-width: 1024px) {

  .ee,
  .ww{
      position: relative;
      width: 100%;
      height: auto;
      border-right: 0px;
      border-left: 0px;
  }


 #category-mob{
	position: fixed ;
	top: 40px;
	left: 10px;
	color: black;
	width: 95%;
}

#category-mob ul{
		width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center align the flex items */
    flex-wrap: wrap;
}

#category-mob li{
    display: inline-block;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 20px;
    padding: 3px 7px 2px 7px;
    z-index: 200;
    width: 100%;
		margin-bottom: 5px;
		text-align: center;
    cursor: pointer;
}


#category-mob-btn{
	
	  display: inline-block;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 20px;
    padding: 3px 7px 2px 7px;
    z-index: 200;
    width: 100%;
		margin-bottom: 5px;
		text-align: center;
    cursor: pointer;
}

#list-filters-mob{
	display: none;
}



#regions-filters{
	margin-top: 0px !important;
}

}