#menu {
	background: #000000;
	height: 32px;
	padding-right: 18px;
	border-radius: 0px;
	font-family:Arial, Helvetica, sans-serif;
	white-space:nowrap;
	font-size:12px;
}

#menu ul, #menu li {
	margin: 0 auto;
	padding: 0;
	list-style: none
}
#menu ul {
	width: 100%;
	text-align: auto;
}
#menu li {
	display: inline-block;
	position: relative;
}
#menu a {
	display: block;
	line-height: 30px;
	padding: 0 14px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 14px;
	font-weight:600px;
}

#menu a.dropdown-arrow:after {
	content: "\25BE";
	margin-left: 5px;
}
#menu li a:hover {
	color: #FF0000;
	background: #FFFFFF;
}
#menu input {
	display: none;
	margin: 0;
	padding: 0;
	height: 30px;
	width: 100%;
	opacity: 0;
	cursor: pointer
}
#menu label {
	display: none;
	line-height: 30px;
	text-align: center;
	position: absolute;
	left: 35px
}
#menu label:before {
	font-size: 1.6em;
	color: #FFFFFF;
	content: "\2261"; 
	margin-left: 20px;
}
#menu ul.sub-menus{
	height: auto;
	overflow: hidden;
	width: 170px;
	background: #000000;
	position: absolute;
	z-index: 99;
	display: none;
}
#menu ul.sub-menus li {
	display: block;
	width: 100%;
}
#menu ul.sub-menus a {
	color: #FFFFFF;
	font-size: 13px;
}
#menu li:hover ul.sub-menus {
	display: block
}
#menu ul.sub-menus a:hover{
	background: #DDDDDD;
	color: #FF0000;
}
@media screen and (max-width: 800px){
	#menu {position:relative}
	#menu ul {background:#0000CC;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none;text-align:left;}
	#menu ul.sub-menus {width:100%;position:static;}
	#menu ul.sub-menus a {padding-left:30px;}
	#menu li {display:block;float:none;width:auto;}
	#menu input, #menu label {position:absolute;top:0;left:0;display:block}
	#menu input {z-index:4}
	#menu input:checked + label {color:#FFFFFF}
	#menu input:checked + label:before {content:"\00d7"}
	#menu input:checked ~ ul {display:block}
}
.wrapper {
  width: 300px;
  max-width: 31.25rem;
  margin: 6rem auto;
}

.label {
  font-size: 80%;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: +1.3px;
  margin-bottom: 1rem;
}


.searchBar {
  width: 300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size:14px;
  height:auto;
}

#searchQueryInput {
  width: 300px;
  height: 1.2rem;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 80%;
}

#searchQuerySubmit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -3.5rem;
  background: none;
  border: none;
  outline: none;
}

#searchQuerySubmit:hover {
  cursor: pointer;
}

/******  slider quotidiens **/

 .slider-wrapper {
            width: 957px;
            margin: 0 auto;
            position: relative;
        }

 .slider-container {
            width: 100%;
            height: 150px;
            margin: 0px auto;
            position: relative;
            padding: 0 0px;
            overflow: hidden;
            background: url('logos/background.jpg') center center;
            background-size: cover;
            display: flex;
            align-items: center;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .thumbnail-track {
            display: flex;
            gap: 5px;
            padding: 15px 0;
            position: relative;
            animation: scroll 30s linear infinite;
            animation-play-state: running;
            width: max-content;
            height: auto;
            align-items: center;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-155px * 10));
            }
        }

        .thumbnail-track:hover {
            animation-play-state: paused;
        }

        .slider-container:hover .nav-button {
            opacity: 1;
        }

        .nav-button:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

        /* Center the track vertically */
        .thumbnail-track-wrapper {
            flex: 1;
            height: auto;
            min-height: 50px;
            position: relative;
            overflow: hidden;
        }

        .thumbnail-track-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            pointer-events: none;
            z-index: 1;
        }

        /* Navigation button masks */
        .nav-mask-left,
        .nav-mask-right {
            position: absolute;
            top: 0;
            width: 60px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .nav-mask-left {
            left: 0;
            background: linear-gradient(to right, 
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.3) 40%,
                transparent 100%
            );
        }

        .nav-mask-right {
            right: 0;
            background: linear-gradient(to left, 
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.3) 40%,
                transparent 100%
            );
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            color: white;
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
            opacity: 0.7;
            z-index: 3;
        }

        .nav-button:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        /* Update gradient colors to match with background */
        .slider-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
        }

        .slider-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
        }

        .thumbnail {
            min-width: 150px;
            height: auto;
            border-radius: 4px;
            overflow: visible;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thumbnail:hover {
            transform: scale(1.05);
            cursor: pointer;
            background: rgba(255, 255, 255, 1);
        }

        .thumbnail img {
            width: auto;
            height: auto;
            max-width: none;
            max-height: none;
            object-fit: none;
        }


/********/