* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-size: 16px;
	font-family: 'Montserrat';
	color: var(--noir);
	font-weight: 400;
}
p {
	line-height: 1.5rem;
}
button {
	cursor: pointer;
	border: 0;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	color: var(--noir);
}
body {
	display: flex;
	position: relative;
	flex-direction: column;
	min-height: 100vh;
}
/*---------------------------------------------*/
/* GLOBAL */
/*----------------------------------------------*/
/*Color*/
:root {
	--bleuPrincipal: #12377e;
	--bleuClair: #153e8f;
	--noir: #202020;
	--noirClair: #262626;
	--gris: #727272;
	--grisClair: #e4e4e4;
	--blanc: #FFF;
	--doree: #fbc02d;
	--link: #4a84f8;
	--vertClair: #bfffc3;
	--rouge: #de0031;
	--formError: #dc3545;
	--formSuccess: #198754;
	
	--rougeFonceSVG: invert(12%) sepia(80%) saturate(6193%) hue-rotate(341deg) brightness(88%) contrast(106%);
	--bleuClairSVG: invert(19%) sepia(40%) saturate(3799%) hue-rotate(209deg) brightness(91%) contrast(95%);
	--noirSVG: invert(10%) sepia(0%) saturate(42%) hue-rotate(175deg) brightness(76%) contrast(88%);
	--grisSVG: invert(47%) sepia(11%) saturate(0%) hue-rotate(263deg) brightness(93%) contrast(96%);
	--grisClairSVG: invert(99%) sepia(1%) saturate(2649%) hue-rotate(203deg) brightness(109%) contrast(79%);
	--grisClairMediumSVG: invert(65%) sepia(0%) saturate(1361%) hue-rotate(149deg) brightness(95%) contrast(107%);
	--blancSVG: invert(93%) sepia(7%) saturate(0%) hue-rotate(128deg) brightness(106%) contrast(106%);
	--rougeSVG: invert(41%) sepia(92%) saturate(2775%) hue-rotate(333deg) brightness(102%) contrast(110%);
}
/*Fonts*/
@font-face {
	font-family: Anglet;
	src: url("../fonts/anglet-852ced4badce3c5c9014ecb70c6c7241.woff2") format('woff2');
	font-display: swap;
	async: true;
}
/*Container*/
.container {
	max-width: 1350px;
	padding: 0 1rem;
	margin: auto;
	width: 100%;
}
/*Button*/
.btn {
	display: inline-block;
	padding: 12px 20px;
	text-transform: uppercase;
	border: 2px solid var(--blanc);
	border-radius: 3rem;
	color: var(--blanc);
	cursor: pointer;
}
.btn, 
.roundBtn {
	transition: all .25s;
}
.squareBtn {
	border-radius: .25rem;
}
.smallBtn {
	padding: 3px;
	font-size: 12px;
	font-weight: 500;
	border-width: 1px;
}
.mediumBtn {
	padding: .5rem;
	font-size: 14px;
	border-width: 1px;	
}
.whiteBtnTransparent.btnWithIcon .icon,
.blackBtn.btnWithIcon .icon,
.blackBtnTransparent.btnWithIcon:hover .icon {
	filter: var(--blancSVG);
}
.whiteBtnTransparent.btnWithIcon:hover .icon,
.blackBtnTransparent.btnWithIcon .icon {
	filter: var(--noirSVG);
}
.redBtnTransparent.btnWithIcon:hover .icon,
.redBtnTransparent.btnWithIcon .icon {
	filter: var(--rougeSVG);
}
.whiteBtnTransparent:hover {
	background-color: var(--blanc);
	color: var(--noir);
}
.blackBtnTransparent {
	background-color: transparent;
	color: var(--noir);
	border-color: var(--noir);
}
.blackBtnTransparent:hover {
	background-color: var(--noir);
	color: var(--blanc);
	border-color: var(--noir);
}
.redBtn {
	color: var(--rouge);
	border-color: var(--rouge);
}
.blackBtn {
	background-color: var(--noir);
	border-color: var(--noir);
}
.grayBtn {
	background-color: var(--gris);
	border-color: var(--gris);
}
.blackBtn:hover {
	background-color: var(--noirClair);
	border-color: var(--noirClair);
}
/*Icons*/
.btnWithIcon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.btnWithIcon .icon {
	margin-right: .3rem;
}
.icon {
	height: 16px;
	transition: all .25s;
}
.whiteIcon {
	filter: var(--blancSVG);
}
.blackIcon {
	filter: var(--noir);
}
.greyIcon {
	filter: var(--grisSVG);
}
.redIcon {
	filter: var(--rougeSVG);
}
.bigIcon {
	height: 24px;
}
.smallIcon {
	height: 12px;
}
/*Round button*/
.roundBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border: 2px solid var(--blanc);
	border-radius: 50%;
	cursor: pointer;
}
.roundBtn:hover {
	background-color: var(--blanc);
}
.roundBtn .icon {
	filter: var(--blancSVG);
}
.roundBtn:hover .icon {
	filter: var(--noirSVG);
}
.roundBtn:hover .arrows {
	border-color: var(--noir);
}
/*Arrows*/
.arrows {
	display: block;
	width: 10px;
	height: 10px;
	border: 2px solid var(--blanc);
	border-top: none;
	border-left: none;
	transition: border-color .25s;
}
.leftArrows {
	transform: rotate(135deg);
}
.rightArrows {
	transform: rotate(-45deg);
}
/*Mise en forme text*/
.strong {
	font-weight: 600;
}
.underline {
	text-decoration: underline;
}
.italic {
	font-style: italic;
}
.link {
	color: var(--link);
	font-weight: 500;
}
.redTxt {
	color: var(--rouge);
}
.link:hover {
	text-decoration: underline;
}
.smallText {
	font-size: .8rem;
}
/*Icon presentation*/
.circleInfo {
	filter: var(--noirSVG);
    vertical-align: middle;
    margin-top: -4px;
}
/*Filter*/
.filter::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	background-color: rgba(52, 52, 52, 0.25)
}
/*List*/
.boldTxtParagraphe {
	font-weight: 500;
	text-decoration: underline;
	margin: 0!important;
}
.listContainer li {
	list-style: circle;
	margin-left: 30px;
	line-height: 1.6rem;
}
.listContainer li.noCircle {
	list-style: none;
}
/*Box*/
.box {
	display: flex;
	align-items: center;
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 1rem;
}
.box a {
	margin-left: auto;
}
.downloadBox {
	background-color: var(--grisClair);
}
/* Length Box */
.lengthBoxList {
	display: grid;
	grid-gap: .7rem;
}
.lengthBoxItem {
	position: relative;
    overflow: hidden;
    border-radius: .3rem;
    transition: height .25s;
    background-color: var(--grisClair);
}
.lengthBoxItemHeader {
	display: flex;
    align-items: center;
    padding: 10px;
}
.lengthBoxItemFooter {
	background-color: #d5d5d5;
    max-height: 0;
    transition: max-height .25s;
    overflow: hidden;
}
.lengthBoxItemFooter_ContentContainer,
.lengthBoxItemFooter ul {
	padding: 10px;
}
.lengthBoxItemHeader_leftSide {
	display: flex;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    align-items: center;
    grid-gap: .5rem;
}
.lengthBoxItemHeader_rightSide {
	display: flex;
    margin-left: auto;
    white-space: nowrap;
    grid-gap: .5rem;
}
.lengthBoxBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 50px;
    height: 27px;
    border: 0;
    border-radius: .25rem;
    background-color: #cfcfcf;
}
.lengthBoxItem.active .lengthBoxBTNDrop {
    background-color: var(--noir);
}
.lengthBoxItem.active .lengthBoxBTNDrop .icon {
    transform: rotate(-180deg);
    filter: var(--blancSVG);
}
.lengthBoxBtn:hover .icon {
    filter: var(--blancSVG);
}
.lengthBoxItemFooter ul li {
    display: flex;
    white-space: nowrap;
    border-bottom: 1px solid #e4e4e4;
}
.lengthBoxItemFooter ul li span:first-child {
    margin-right: 5px;
}
.lengthBoxItemFooter ul li span:last-child {
    margin-left: auto;
    white-space: break-spaces;
}


/*---------------------------------------------*/
/* HEADER */
/*----------------------------------------------*/
/*Nav Container*/
#bigNav > .container {
	display: flex;
	justify-content: space-between;
	position: relative;
	height: 76px;
	align-items: center;
}

/*Barre bleu haut*/
#topWhiteBanner {
	background-color: var(--bleuPrincipal);
	height: 28px;
}
/*Logo de la barre de navigation*/
.containerLogoNavbar {
	display: flex;
	align-items: center;
	justify-content:  center;
 	z-index: 99;
	width: 120px;
	min-width: 120px;
	height: 120px;
	min-height: 120px;
 	border-radius: 50%;
  	background-color: var(--blanc);
}
.logoNavbar {
	width: 100px;
	height: 100px;
	transition: transform .35s;
}
.logoNavbar:hover {
	transform: scale(1.1);
}
/*Barre de navigation*/
.navMenu {
	display: flex;
}
.bigNavItem {
	position: relative;
}
.bigNavItem::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%) scaleX(0);
	transform-origin: 50% 50%;
	width: 100%;
	height: 2px;
	transition: transform .25s;
	background-color: var(--bleuPrincipal);
}
.bigNavItem:hover::before,
.bigNavItem.active::before {
	transform: translateX(-50%) scaleX(1.0);
}
.bigNavItemLink {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 30px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
}
/*Dropdown*/
.dropdown {
	position: relative;
}
.arrow {
	display: flex;
}
.arrow::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 4px;
	height: 4px;
	border-style: solid;
	border-color: #c1c1c1;
	border-width: 2px 2px 0 0;
	transition: border-color .25s;
}
.arrowDown {
	margin-left: 8px;
	transform: rotate(135deg);
}
.arrowRight {
	position: absolute;
	top: 16px;
    left: 11px;
    float: right;
    margin: 0;
    transform: rotate(45deg);
}
.dropdownMenu {
	position: absolute;
	top: 74px;
	left: 0;
	z-index: 99;
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	transform-origin: 0 0;
	white-space: nowrap;
	border-top: 2px solid var(--bleuPrincipal);
	transition: all .25s ease;
	background-color: var(--blanc);
}
.dropdown:hover .dropdownMenu {
	visibility: visible;
	opacity: 1;
	transform: scale(1.0);
}
.dropdownItemLink {
	display: block;
	position: relative;
	padding: 10px 30px;
	font-style: italic;
	color: #727272;
	width: 100%;
}
.dropdownItemLink:hover .arrow::before,
.dropdownItem.active .dropdownItemLink .arrow::before,
.dropdown:hover .bigNavItemLink .arrow::before,
.dropdown.active .bigNavItemLink .arrow::before {
	border-color: var(--bleuPrincipal);
}
/*Burger Btn*/
.burgerBtn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 22px;
	cursor: pointer;
	transition: transform .25s;
}
.burgerBtnLine {
	display: block;
	height: 3px;
	border-radius: 2px;
	background-color: var(--noir);
}
.burgerBtnSmallLine {
	width: 50%;
}
.firstLine {
	transform-origin: right;
	transition: transform .25s;
}
.lastLine {
	align-self: flex-end;
	transform-origin: left;
	transition: transform .25s;
}
.burgerBtnActive {
	transform: rotate(-45deg);
}
.burgerBtnActive .firstLine {
	transform: rotate(-90deg) translateX(3px);
}
.burgerBtnActive .lastLine {
	transform: rotate(-90deg) translateX(-3px);
}
/*BurgerNav*/
#burgerNav {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s;
}
.burgerNavMenu {
	padding: 30px 30px 10px;
	background-color: #ececec;
}
.megaNavItem {
	position: relative;
}
.megaNavItem:hover .megaNavItemLink,
.megaNavItem.active .megaNavItemLink {
	color: var(--bleuPrincipal);
}
.megaNavItemLink {
	display: block;
	padding: 12px 0;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	transition: color .25s;
}
.dropdownPlus {
	position: absolute;
	top: 0;
	right: 0;
	height: 40px;
	width: 40px;
	cursor: pointer;
}
.dropdownPlus::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	height: 1px;
	width: 30%;
	transform: translate(-50%, -50%);
	background-color: var(--noir);
}
.dropdownPlus::after {
	content: "";
	position: absolute;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
	height: 30%;
	margin: auto;
	width: 1px;
	background-color: var(--noir);
}
.megaDropdownMenu {
	max-height: 0;
	transition: max-height .25s;
	overflow: hidden;
}
.megaDropdownItemLink {
	display: block;
	font-style: italic;
	padding: 10px 0 10px 10px;
}
.megaDropdownItemLink:hover,
.megaDropdownItemLink.active {
	color: var(--bleuPrincipal);
}
/*---------------------------------------------*/
/* Présentation / introduction & slider*/
/*----------------------------------------------*/
#indexIntroduction {
	min-height: 650px;
}
#indexIntroduction.homePresentation {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
/*Introduction*/
.containerIntroduction {
	position: relative;
	width: 100%;
	display: flex;
	overflow: hidden;
	padding: 2rem;
	background-color: var(--bleuPrincipal);
}
.containerIntroduction > .container {
	padding: 0;
}
.introduction {
	max-width: 700px;
	margin: 70px 0;
	position: relative;
}
.centerIntroduction {
	margin: auto;
	text-align: center;
}
.introductionTitle {
	margin-bottom: 1rem;
	font-family: Anglet;
	letter-spacing: .1rem;
	font-size: 3rem;
	color: var(--blanc);
}
.introductionSubtitle {
	margin-bottom: 1rem;
	font-weight: 500;
	color: var(--doree);
}
.introductionDescription {
	color: var(--blanc);
}
.containerIntroductionBtn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: 1rem;
	margin-top: 1rem;
}
.swimmerLogo {
	position: absolute;
	top: 0; 
	left: 0; 
	bottom: 0; 
	right: 0;
	margin: auto;
}
.socialMenu {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	z-index: 1;
	display: flex;
	grid-gap: 1rem;
}
/*Slider*/
.slider {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.sliderBtnContainer {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 30px;
	width: 100%;
	z-index: 2;
}
.slideImg {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(1.2);
	transition: opacity 2s, transform 15s ease-in-out;
}
.slideImgActive {
	opacity: 1;
	transform: scale(1.0);
}
/*---------------------------------------------*/
/* Title*/
/*----------------------------------------------*/
.section {
	margin: 4rem 0;
	text-align: center;
}
.bigTitle {
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 800;
}
.mediumTitle {
	margin: 2rem 0 .7rem;
	font-size: 1.5rem;
	font-weight: 800;
}
.smallTitle {
	font-size: 1.2rem;
	font-weight: 700;
}
.backgroundTitle {
	padding: 5px 10px;
	margin-bottom: 2rem;
	border-radius: 2rem;
	background-color: var(--noir);
	text-align: center;
	text-transform: uppercase;
	color: #FFF;
}
/*Article vide*/
.articleHomeEmpty .articleHomeHeadLink {
	display: none;
}
.articleHomeEmpty .articleHomeBody {
	padding: 1.2rem 1rem 0 1rem;
}
.articleEmptyBoxContainer {
	display: flex;
	grid-gap: 10px;
	flex-wrap: wrap;
}
.articleEmptyBox {
	height: 1rem;
	background-color: var(--grisClair);
	border-radius: 10px;
}
.articleEmptyBox.articleEmptyBoxBig {
	height: 1.25rem;
	background-color: var(--grisClair);
	border-radius: 10px;
}
.articleEmptyBox.emptySizeBox20 {
	width: 20px;
}
.articleEmptyBox.emptySizeBox30 {
	width: 30px;
}
.articleEmptyBox.emptySizeBox40 {
	width: 40px;
}
.articleEmptyBox.emptySizeBox50 {
	width: 50px;
}
.articleEmptyBox.emptySizeBox60 {
	width: 60px;
}
.articleEmptyBox.emptySizeBox70 {
	width: 70px;
}
.articleEmptyBox.emptySizeBox80 {
	width: 80px;
}
.articleEmptyBox.emptySizeBox100 {
	width: 100px;
}
.articleEmptyBox.emptySizeBox130 {
	width: 130px;
}
.articleEmptyBox.emptySizeBox150 {
	width: 150px;
}
/*---------------------------------------------*/
/* Tags */
/*----------------------------------------------*/
.tag {
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 1rem;
	text-transform: uppercase;
	color: var(--blanc);
}
.tag.articleEmpty {
	display: block;
	width: 150px;
	height: 24px;
	background-color: var(--gris);
}
/*---------------------------------------------*/
/* STATS */
/*----------------------------------------------*/
#stats {
	background-color: var(--bleuPrincipal);
	position: relative;
	overflow: hidden;
}
.statsContainer {
	display: flex;
	grid-gap: 2rem;
	flex-wrap: wrap;
	padding: 3rem 1rem;
	position: relative;
	justify-content: space-around;
}
.statsBox {
	text-align: center;
}
.statsBoxNumber {
	font-weight: 800;
	font-size: 2.5rem;
	color: var(--blanc);
}
.statsBoxTitle {
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 1rem 0 .3rem;
	grid-gap: .5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--blanc);
}
.statsBoxDesc {
	font-weight: 200;
	color: var(--blanc);
}
/*---------------------------------------------*/
/* SPONSOR FOOTER*/
/*----------------------------------------------*/
#sponsor {
	display: flex;
	position: relative;
	width: 100%;
	height: 140px;
	overflow: hidden;
}
#sponsor:before,
#sponsor:after {
	position: absolute;
	content: '';
	top: 0;
	z-index: 1;
	height: 100%;
	width: 10%;
	border-style: inset;
	border: none;
}
#sponsor:before {
	left: 0;
	background: linear-gradient(to right, var(--noirClair) 0%, transparent 100%);
	border-left: 30px solid var(--noirClair);
}
#sponsor:after {
	right: 0;
	background: linear-gradient(to left, var(--noirClair) 0%, transparent 100%);
	border-right: 30px solid var(--noirClair);
}
@keyframes sponsorCarousel {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
.sponsorTrack {
	display: flex;
	align-items: center;
	height: 100%;
	grid-gap: 16px;
}
.sponsorItem {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 35px;
	width: 300px;
	transition: transform .25s;
	white-space: nowrap;
}
.sponsorItem:hover {
	transform: scale(1.05);
}
.sponsorItem img {
	max-width: 300px;
	max-height: 80px;
}
/*---------------------------------------------*/
/* RECORDS DU CLUB*/
/*----------------------------------------------*/
#performance,
.recordsF {
	margin-bottom: 50px;
}
.newPerformance {
	background-color: var(--vertClair)!important;
}
.performanceLegend {
	margin-bottom: .5rem;
}
.performanceLegend .newPerformance {
	padding: 0 .2rem;
}
.containerBtnPerformance {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 1rem;
	margin: 20px 0;
}
/*Tableau*/
table {
	width: 100%;
	border-collapse: collapse;
	table-layout: auto;
}
table tr th {
	color: var(--blanc);
}
table td,
table th {
	border: 1px solid #d0d0d0;
	text-align: center;
	border-top: none;
	border-left: none;
}
table td {
	padding: 8px 15px;
	font-size: 15px;
	box-sizing: border-box;
	position: relative;
	white-space: nowrap;
	height: 36px;
}
table td:first-child {
	font-weight: bold;
	border-left: 1px solid #d0d0d0;
}
table th {
	padding: 12px 15px;
	background-color: var(--noir);
	font-weight: bold;
}
tbody tr:nth-child(even) {
	background-color: #dadada;
}
table tbody tr > td:first-child {
	flex-direction: row;
	align-items: center;
	padding: 0;
}
table tbody tr > td:first-child .perfInfo {
	display: none;
	font-size: .8rem;
	margin-left: 10px;
}
table td:hover .tooltipRecords {
	opacity: 1;
	visibility: visible;
}
.tooltipRecords {
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: auto;
	padding: 7px 15px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, visibility .25s;
	background-color: var(--noirClair);
	pointer-events: none;
}
.tooltipRecords::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -29px;
	transform: translate(-50%, -50%);
	border: 10px solid transparent;
	border-top-color: var(--noirClair);
}
.tooltipRecords * {
	color: var(--blanc);
}
.recordsSwimmerName {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.recordsSwimmerLastName {
	width: max-content;
}
.recordsDate {
	font-size: 12px;
}
.perfInfo {
	color: var(--blanc);
}
/*---------------------------------------------*/
/* PLANNING */
/*----------------------------------------------*/
#planning {
	margin-bottom: 50px;
}
#planning .lengthBoxItem {
	padding: 10px;
}
#planning .lengthBoxItem .tag {
	background-color: var(--noir);
}
.planning {
	display: none;
	margin-top: 2rem;
	grid-gap: .7rem;
}
.visiblePlanning {
	display: block;
}

/*---------------------------------------------*/
/* ACTIVITY */
/*----------------------------------------------*/
#activity {
	margin-bottom: 50px;
}
#activity .categoryItems {

}
.category {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
}
.categoryItems {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-radius: 2rem;
	text-transform: uppercase;
	font-size: 15px;
	text-align: center;
}
.tag.livePlanning {
	display: flex;
	align-items: center;
	border: 1px solid currentColor;
	font-weight: bold;
	background-color: var(--blanc);
	color: var(--rouge);
}
.ping {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	margin-right: 5px;
	transform: scale(1);
	animation: pulse 2s infinite;
	background-color: var(--rouge);
}
@keyframes pulse {
	0% {
		transform: scale(0.80);
		box-shadow: 0 0 0 0 rgba(222, 0, 49, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 5px rgba(222, 0, 49, 0);
	}
	100% {
		transform: scale(0.80);
		box-shadow: 0 0 0 0 rgba(222, 0, 49, 0);
	}
}
.calendarLegend {
	margin-top: 2rem;
}
/*---------------------------------------------*/
/* Calendrier des compétition */
/*----------------------------------------------*/
#calendar {
	margin-bottom: 50px;
}
#calendar .category {
	grid-template-columns: repeat(5, 1fr);
}
/*---------------------------------------------*/
/* Tarif */
/*----------------------------------------------*/
#tarif {
	margin-bottom: 50px;
}
#tarif .planning p {
	text-align: justify;
	line-height: 1.8rem;
}
#tarif .containerBtnAdhesion {
	display: flex;
	grid-gap: .5rem;
	margin-left: auto;
}
.sectionENFPresentation {
	margin-bottom: 1rem;
}
/*---------------------------------------------*/
/* FOOTER */
/*----------------------------------------------*/
#footer {
	margin-top: auto;
	background-color: var(--noirClair);
}
.smallNav {
	display: flex;
	justify-content: space-between;
}
.smallNavMenu {
	display: flex;
	margin: 1rem 0;
}
.smallNavItemLink {
	display: inline-block;
	margin: 0 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #b6b3b3;
	transition: color .25s;
}
.smallNavItemLink:hover {
	color: var(--blanc);
}
.smallNavItemLink:hover .icon {
	filter: var(--blancSVG);
}
.smallNavMenu > .smallNavItem:first-child .smallNavItemLink {
	margin-left: 0;
}
.smallNavMenuSocial .smallNavItemLink {
	padding: 0 10px;
	margin: 0;
}
.bottomFooter {
	background-color: var(--noir);
	padding: 10px 0;
}
.bottomFooter .container {
	display: flex;
	justify-content: space-between;
}
.copyright,
.author {
	display: block;
	color: var(--gris);
	font-size: .9rem;
}
.authorLink {
	color: var(--gris);
}
.authorLink:hover {
	text-decoration: underline;
}
/*---------------------------------------------*/
/* Alert MSG */
/*----------------------------------------------*/
.msgAlert {
	padding: .6rem 0;
	background-color: var(--rouge);
}
.msgAlert .container {
	text-align: center;
	font-weight: 500;
}
.msgAlert * {
	color: var(--blanc);
}
.msgAlert a:hover {
	text-decoration: underline;
}
.msgAlert strong {
	font-weight: bold;
}

/*---------------------------------------------*/
/* Contact */
/*----------------------------------------------*/
#contact {
	margin-bottom: 50px;
}
.contactBoxContainer {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
	margin-bottom: 50px;
}
.contactBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	border-radius: .25rem;
	background-color: rgb(241, 241, 241);
}
.topContactPart {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 3px;
	background-color: #d6d6d6;
}
.topContactPart::before {
	content: '';
	position: absolute;
	width: 35px;
	height: 35px;
	border-radius: 100%;
	background-color: #d6d6d6;
}
.topContactPart img {
	z-index: 1;
}
.bottomContactPart {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 10px;
	height: 100%;
	padding: 10px;
	text-align: center;
}
a.detailInfoContact {
	color: var(--link);
}
a.detailInfoContact:hover {
	text-decoration: underline;
}
a.fbTags {
	background-color: #3b5998;
}
a.instaTags {
	background-color: #C13584;
}

/*---------------------------------------------*/
/* History */
/*----------------------------------------------*/
#history {
	margin-bottom: 50px;
}
.historySectionContainer > p,
.historySectionContainer .listContainer {
	margin-bottom: .6rem;
}
/*---------------------------------------------*/
/* Article */
/*----------------------------------------------*/
#article {
	margin-bottom: 50px;
}
.articleImgContainer {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.articleImgIllustration {
	width: 100%;
	height: 100%;
	transition: transform .5s;
}
.articleImgContainer:hover  .articleImgIllustration {
	transform: scale(1.05);
}
.articleImgContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(32, 32, 32, 0.55);
	z-index: 1;
}
.bannerTxtArticle {
	position: absolute;
	margin: 2rem;
	padding: 1rem 2rem;
	border: 2px solid var(--blanc);
	text-align: center;
	z-index: 2;
	font-weight: 800;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--blanc);
}
.articlePublishingInformation {
	display: flex;
	flex-direction: column;
	grid-gap: .5rem;
	margin: 1rem 0;
	padding-left: .5rem;
	position: relative;
	font-size: 13px;
}
.addArticleDate, .editArticleDate {
	position: relative;
}
.addArticleDate::before {
	content: "";
	position: absolute;
	left: -.5rem;
	height: 100%;
	width: 2px;
	background-color: var(--bleuPrincipal);
}
.editArticleDate::before {
	content: "";
	position: absolute;
	left: -.5rem;
	height: 100%;
	width: 2px;
	background-color: var(--gris);
}
.articleContent {
	text-align: justify;
	line-height: 1.5;
}
.articleContent p,
.articleContent .strong,
.articleContent .listContainer {
	margin-bottom: .6rem;
}

/*Carousel Article*/
.article__carouselImg {
    z-index: 100;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	visibility: hidden;
    background-color: rgba(0, 0, 0, 0);
	transition: visibility .25s, background-color .25s;
}
.article__carouselImg.active {
	visibility: visible;
    background-color: rgba(0, 0, 0, .97);
}
.article__carouselItemsContainer {
	display: flex;
    width: 100%;
	height: 100vh;
	transition: transform .75s;
}
.article_carouselItem {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100%;
}
.article__carouselItemImg {
	max-width: calc(100% - 140px);
	max-height: 90vh;
	opacity: 0;
	transition: opacity .25s;
    user-select: none;
}
.article__nextContainerCarousel,
.article__beforeContainerCarousel {
	z-index: 2;
	position: absolute;
	width: 70px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	background-color: #0c0c0c;
	transition: opacity .25s;
}
.article__carouselImg.active .article__nextContainerCarousel,
.article__carouselImg.active .article__beforeContainerCarousel,
.article__carouselImg.active .article__carouselItemImg {
	opacity: 1;
}
.article__nextContainerCarousel {
	right: 0;
}
.article__nextBtnCarousel,
.article__beforeBtnCarousel,
.article_closeCarousel {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.article__nextBtnCarousel .icon,
.article__beforeBtnCarousel .icon,
.article_closeCarousel .icon {
	user-select: none;
}
.article__nextBtnCarousel {
	transform: rotate(-90deg);
}
.article__beforeBtnCarousel {
	transform: rotate(90deg);
}
.article__btnDisabled {
	cursor: initial;
	filter: var(--grisSVG);
}
.article_closeCarousel {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}
.article_closeCarousel .icon {
	height: 30px;
	opacity: 0;
	transition: opacity .25s;
}
.article__carouselImg.active .article_closeCarousel .icon {
	opacity: 1;
}
.article__carouselAllBtnContainer {
	height: 100vh;
	width: 100%;
	position: absolute;
	z-index: 10;
}

/*---------------------------------------------*/
/* News Home */
/*----------------------------------------------*/
#articlesHome {
	margin-bottom: 4rem;
}
.homeNews__Article  {
	min-width: 375px;
	max-width: 375px;
	position: relative;
	border-radius: .3rem;
}
.homeNews__ArticleBigContainer {
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.homeNews__ArticleContainer {
	overflow: hidden;
	margin: 0 auto;
	width: 1185px;
}
.homeNews__ArticleContainerTrack {
	display: inline-flex;
	grid-gap: 30px;
	transition: transform .65s;
}
.homeNews__ArticleBtnBefore,
.homeNews__ArticleBtnNext {
	min-width: 45px;
	border-color: var(--noir);
	background-color: transparent;
}
.homeNews__ArticleBtnBefore.articleHomeBtnDisabled,
.homeNews__ArticleBtnNext.articleHomeBtnDisabled {
	cursor: initial;
	border-color: var(--gris);
}
.homeNews__ArticleBtnBefore.articleHomeBtnDisabled .icon,
.homeNews__ArticleBtnNext.articleHomeBtnDisabled .icon {
	filter: var(--grisSVG);
}
.homeNews__ArticleBtnBefore .icon,
.homeNews__ArticleBtnNext .icon {
	filter: var(--noirSVG);
}
.homeNews__ArticleBtnBefore .icon {
	transform: rotate(90deg);
}
.homeNews__ArticleBtnNext .icon {
	transform: rotate(-90deg);
}
/*News Homes Steps*/
.homeNews__ArticleStepsContainer{
	display: flex;
	justify-content: center;
	margin: 2rem 0 0;
	grid-gap: 1rem;
}
.homeNews__ArticleStepsItem {
	display: flex;
	height: 10px;
	width: 10px;
	border: 1px solid var(--noir);
	border-radius: 50%;
	background-color: transparent;
	transition: background-color .65s;
}
.homeNews__ArticleStepsItem.active {
	background-color: var(--noir);
}
.homeNews__ArticleTags {
	z-index: 1;
	position: relative;
	margin: -.8rem 0 0 1rem;
}
.homeNews__ArticleBottom {
	padding: 1rem 1rem 0;
}
.homeNews__ArticleTop {
	height: 280px;
	position: relative;
}
.homeNews__ArticleTop,
.homeNews__ArticleLink,
.homeNews__ArticleImg,
.homeNews__ArticleTop.filter::before {
	border-radius: 0.3rem 0.3rem 0 0;
}
.homeNews__ArticleImg {
	height: 100%;
}
.homeNews__ArticleLink {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
    transition: opacity .35s, background-color .35s;
	background-color: rgba(0, 0, 0, 0);
}
.homeNews__ArticleLink:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, .35);
}
.homeNews__ArticleLink .icon {
	opacity: 0;
    transform: translateY(-30px);
    transition: opacity .35s, transform .35s;
    height: 40px;
    filter: var(--blancSVG);
}
.homeNews__ArticleTop:hover .homeNews__ArticleLink .icon {
	opacity: 1;
	transform: translateY(0);
}
.homeNews__ArticleTitle {
	font-size: 1.25rem;
	font-weight: 700;
}
.homeNews__ArticleInformations {
	margin: 0.5rem 0;
    font-size: .9rem;
    font-style: italic;
    color: var(--gris);
}


/*---------------------------------------------*/
/* News */
/*----------------------------------------------*/
#article-list {
	margin-bottom: 50px;
}
#article-list .form-article-container-select {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    align-items: center;
}
.news__containerInlineArticle {
	display: grid;
	grid-gap: 2rem;
}
.news__containerInlineArticle.lastArticlePresentation {
	margin: 2rem 0;
	grid-template-columns: repeat(3, 1fr);
}
.news__containerInlineArticle.searchListArticlePresentation {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 2rem;
}
#article-list .news__containerInlineArticle.lastArticlePresentation article:nth-child(1) {
	transform: scale(1.1);
	order: 2;
}
#article-list .news__containerInlineArticle.lastArticlePresentation article:nth-child(2) {
	order: 1;
}
#article-list .news__containerInlineArticle.lastArticlePresentation article:nth-child(3) {
	order: 3;
}
#article-list form .form-group {
	width: 100%;
	margin: 0;
}
#article-list form button {
    padding: 7px;
    text-transform: capitalize;
}
.news__Article {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	position: relative;
	border-radius: .3rem;
	background-color: #f2f2f2;
}

.news__ArticleInformations {
	margin: 0.5rem 0;
    font-size: .9rem;
    font-style: italic;
    color: var(--gris);
}
.news__ArticleTags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: .3rem;
	margin-top: auto;
}
.news__ArticleLink {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#article-list .form-error {
	grid-column-start: 3;
	grid-row-start: 2;
	margin-top: -11px;
}



/*---------------------------------------------*/
/* Store */
/*----------------------------------------------*/
#store {
	margin-bottom: 50px;
}
.dressContainer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.dressItem {
    display: flex;
    flex-direction: column;
	width: 300px;
    height: 900px;
	margin: auto;
}
.dressItem .listContainer {
	margin: .5rem 0;
}
.dressItem p {
	line-height: normal;
}
.dressTop {
    display: flex;
    align-items: center;
    height: 100%;
}
.dressImg {
	width: 100%;
	display: none;
}
.dressImgActive {
	display: block;
}
.btnDressPresentationContainer {
	display: flex;
	grid-gap: 1rem;
}
.dressTitle {
	font-weight: 600;
}
.sizeItemsContainer {
	display: grid;
	grid-template-columns: repeat(5, 1fr); 
	grid-gap: .5rem;
	margin: .4rem 0 .7rem;
}
.sizeItem {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .7rem 0 .7rem;
	border: 1px solid var(--grisClair);
	border-radius: .2rem;
}
.outStock {
	background-color: #ffdede;
	border: 1px solid #ff7f7f;
}
.dressBuyBtn,
.btnChangeDress {
	width: 100%;
	margin-bottom: .5rem;
}
.dressBuyBtn span {
	text-transform: lowercase;	font-size: 14px;
	color: var(--blanc);
}
.dressBuyInfo {
	text-align: center;
	font-size: 15px;
	color: var(--gris);
}


/*---------------------------------------------*/
/* Ranking */
/*----------------------------------------------*/
#ranking {
	margin-bottom: 50px;
}
#ranking table {
	margin-top: 50px;
	table-layout: fixed;
}
#ranking form .form-ranking-container-select {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 1rem;
	align-items: center;
}
#ranking form .form-group {
	width: 100%;
	margin: 0;
}
#ranking form .form-group:first-child {
	display: flex;
	flex-direction: column;
	grid-gap: 1rem;
}
#ranking form button {
	padding: 7px;
	text-transform: capitalize;
}
#ranking table thead tr th:first-child {
	width: 50px;
}
#ranking table thead tr th:last-child,
#ranking table thead tr th:nth-child(3) {
	width: 130px;
}
#ranking table tbody td:nth-child(2) {
	text-align: left;
	text-overflow: ellipsis;
    overflow: hidden;
}
#ranking .performanceEmpty {
	margin: 1rem 0 0 0;
	text-align: center;
}
#ranking .form-error {
	position: absolute;
	right: 15px;
	bottom: 15px;
}
.timeRelay {
	background-color: var(--grisClair);
    font-size: 12px;
    padding: 1px 3px;
    border-radius: 0.15rem;
}
.rankingLegendContainer {
	display: flex;
	align-items: center;
	position: relative;
	padding: 5px 0;
	margin-bottom: 1rem;
}
.rankingLegendLeft {
	position: absolute;
	display: flex;
	align-items: center;
	padding: 5px;
	height: 100%;
	background-color: #f1f1f1;
	border-radius: .25rem;
}
.rankingLegendRight {
	margin-left: 32px;
}



/*---------------------------------------------*/
/* FAQ HOME */
/*----------------------------------------------*/
#FAQ {
	padding: 3rem 1rem;
	position: relative;
	overflow: hidden;
	background-color: #f2f2f2;
}
#FAQ img {
	filter: var(--blancSVG);
}
#FAQ h4 {
	text-align: center;
}
#FAQ .container > p {
	text-align: center;
	margin-bottom: 2rem;
}

/*---------------------------------------------*/
/* Petition */
/*----------------------------------------------*/
#petitionHome {
	display: grid;
	grid-row-gap: 2rem;
	background-color: red;
	padding: 2rem 0;
	margin-top: 4rem;
	text-align: center;
}
.petitionHomeTitle {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--blanc);
}
.petitionHomeDescription {
	color: var(--blanc);
}
.petitionHomeSignBtn {
	display: inline-flex;
	grid-gap: .5rem;
	padding: 1rem;
	margin-top: 1rem;
	font-weight: 600;
	border: 1px solid var(--blanc);
	color: var(--blanc);
}
#petition {
	margin-bottom: 50px;
}
.petition_body {
	display: flex;
	grid-gap: 1rem;
}
.petition_body_right {
	width: 100%;
}
.petition_body form {
	margin-left: auto;
	width: 400px;
	height: min-content;
}
.petition_top_form {
	padding: 1rem 0;
	margin-bottom: 1rem;
	font-weight: 800;
	font-size: 1.5rem;
	text-align: center;
	border-bottom: 1px solid var(--noir);
}
.petition_background_container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 250px;
	position: relative;
	border-radius: .25rem;
	overflow: hidden;
}
.petition_background {
	background-position: center;
	object-fit: cover;
	width: 100%;
	height: 250px;
}
.petition_background_container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(32, 32, 32, 0.55);
	z-index: 1;
}
.btnPetition:disabled {
	display: flex;
	flex-direction: column;
	width: 100%;
	cursor: default;
}
.btnPetition span {
	text-transform: none;
	font-weight: 600;
	color: var(--blanc);
}
.btnPetition:disabled span:last-child {
	font-weight: normal;
	font-size: 12px;
}
.petition_countdown {
	font-weight: 800;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--blanc);
}
/*---------------------------------------------*/
/* Responsive */
/*----------------------------------------------*/
/*Footer*/
@media screen and (max-width: 930px) {
	.bottomFooter .container {
		display: block;
		text-align: center;
	}
}
@media screen and (max-width: 690px) {
	.smallNav {
		flex-direction: column;
	}
	.smallNavMenu {
		justify-content: center;
	}
	.smallNavMenu:first-child {
		margin-bottom: 0;
	}
	.smallNavItemLink {
		padding: 5px;
		margin: 0 15px;
	}
}
/*Maintenance Footer*/
@media screen and (max-width: 690px) {
	.smallNavMenu:first-child {
		margin-bottom: 1rem;
	}
}

@media screen and (max-width: 630px) {
	.smallNavMenu:first-child {
		flex-wrap: wrap;
		justify-content: center;
	}
}
/*Navbar*/
@media screen and (max-width: 750px) {
	.navMenu {
		display: none;
	}
	.burgerBtn {
		display: flex;
	}
}
@media screen and (min-width: 751px) {
	.navPublic #burgerNav {
		display: none!important;
	}
}
/*Home présentation*/
@media screen and (max-width: 1000px) {
	#indexIntroduction.homePresentation {
		grid-template-columns: repeat(1, 1fr);
	}
	.slider {
		display: none;
	}
}
/*records du club*/
@media screen and (max-width: 1130px) {
	#tableResponsive td {
		padding: 8px 4px;
	}
	#tableResponsive th {
		padding: 12px 6px;
	}
}
@media screen and (max-width: 1050px) {
	#tableResponsive thead {
		display: none;	
	}
	#tableResponsive tbody tr > td:first-child .perfInfo {
		display: block;
	}
	#tableResponsive,
	#tableResponsive tbody,
	#tableResponsive tr, 
	#tableResponsive td {
		display: block;
		width: 100%;
	}
	#tableResponsive tr {
		margin-bottom: 15px;
	}
	#tableResponsive td {
		display: flex;
		flex-direction: row-reverse;
		position: relative;
		border-left: 1px solid #d0d0d0;
	}
	#tableResponsive td:nth-child(even) {
		background-color: #dadada;
	}
	#tableResponsive td:first-child {
		justify-content: center;
		background-color: var(--noir);
		color: var(--blanc);
	}
	#tableResponsive td::before {
		content: attr(data-categorie);
		position: absolute;
		left: 0;
		padding-left: 15px;
		text-align: left;
		font-weight: bold;
	}
	#tableResponsive tbody tr:nth-child(even) {
		background-color: inherit;
	}
	.tooltipRecords {
		position: relative;
		background-color: inherit;
		visibility: unset;
		opacity: unset;
		top: unset;
		left: unset;
		transform: none;
		padding: unset;
		display: flex;
		margin-left: 90px;
		transition: none;
		align-items: center;
		white-space: nowrap;
		overflow: hidden;
	}
	.recordsSwimmerName,
	.recordsDate,
	.recordsSwimmerLastName {
		color: var(--noir);
	}
	.recordsSwimmerName {
		display: block;
	}
	.recordsSwimmerLastName {
		margin-right: .3rem;
	}
	.recordsTimeSwimmer {
		padding-left: 15px;
	}
	.recordsDate {
		margin-left: 3px;
	}
	.tooltipRecords::after {
		content: none;
	}
}
/*Planning des activités & Adhésion*/
@media screen and (max-width: 1400px) {
	#planning .category,
	#activity .category,
	#tarif .category {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 700px) {
	#planning .category,
	#activity .category,
	#tarif .category {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 480px) {
	#planning .category,
	#activity .category,
	#tarif .category {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*Contact*/
@media screen and (max-width: 1900px) {
	#contact .contactBoxContainer {
		grid-template-columns: repeat(5, auto);
	}
}
@media screen and (max-width: 500px) {
	#contact .doubleSection {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*Calendrier des compétitions et contact */
@media screen and (max-width: 1200px) {
	#calendar .category,
	#contact .contactBoxContainer {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 920px) {
	#calendar .category,
	#contact .contactBoxContainer {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 630px) {
	#calendar .category,
	#contact .contactBoxContainer {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (max-width: 600px) {
	.calendarLegend,
	.leftPlanningItems .tag {
		display: none;
	}
}
/*Store*/
@media screen and (max-width: 1150px) {
	.dressContainer {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 850px) {
	.dressContainer {
		grid-template-columns: 1fr;
	}
}
/*DownloadBox*/
@media screen and (max-width: 1100px) {
	.downloadBox {
		justify-content: center;
		flex-wrap: wrap;
	}
	.downloadBox > p {
		width: 100%;
		text-align: center;
	}
	.downloadBox > a {
		margin: 10px auto auto;
		text-align: center;
	}
}
/*Article*/
@media screen and (max-width: 770px) {
	.article__beforeContainerCarousel,
	.article__nextContainerCarousel {
		display: none;
	}
	.article__carouselItemImg {
		max-width: 95%;
		max-height: 95%;
	}
}
/*Home présentation Article*/
@media screen and (max-width: 1400px) {
	.homeNews__ArticleContainer {
		width: 780px;
	}
	.homeNews__ArticleBigContainer {
		width: 915px;
	}
}
@media screen and (max-width: 1000px) {
	.homeNews__ArticleBtnBefore,
	.homeNews__ArticleBtnNext {
		display: none;
	}
	.homeNews__ArticleBigContainer {
		width: 780px;
	}
}
@media screen and (max-width: 860px) {
	.homeNews__ArticleContainer,
	.homeNews__ArticleBigContainer {
		width: 375px;
	}
}
@media screen and (max-width: 425px) {
	.homeNews__ArticleContainer,
	.homeNews__ArticleBigContainer,
	.homeNews__Article {
		min-width: 280px;
		width: 280px;
	}
}
/*Article liste*/
@media screen and (max-width: 850px) {
	.news__containerInlineArticle.searchListArticlePresentation {
		grid-template-columns: auto;
	}
	.news__containerInlineArticle.lastArticlePresentation {
		grid-template-columns: auto;
	}
	#article-list .news__containerInlineArticle.lastArticlePresentation article:nth-child(1) {
		transform: scale(1);
		order: 1;
	}
}
@media screen and (max-width: 600px) {
	#article-list .form-article-container-select {
		grid-template-columns: auto;
	}
	#article-list .form-error {
		grid-column-start: 1;
		grid-row-start: 4;
	}
}
/*Ranking*/
@media screen and (max-width: 1230px) {
	#ranking form .form-ranking-container-select {
		grid-template-columns: repeat(3, 1fr);
	}
	#ranking form .form-group:first-child {
		display: flex;
		flex-direction: row;
		grid-gap: 1rem;
		grid-area: 1 / 1 / 1 / 4;
	}
	#ranking form .form-group:last-child {
		grid-area: 3 / 1 / 3 / 4;
	}
}
@media screen and (max-width: 800px) {
	#ranking form .form-ranking-container-select {
		grid-template-columns: unset;
		display: flex;
		flex-direction: column;
	}
	#ranking form .form-group:first-child {
		display: flex;
		flex-direction: column;
		grid-gap: 1rem;
	}
}
@media screen and (max-width: 700px) {
	#rankingTable tbody tr td:last-child,
	#rankingTable thead tr th:last-child {
		display: none;
	}
}
/*---------------------------------------------*/
/* Grid */
/*----------------------------------------------*/
.doubleSection {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}

/*---------------------------------------------*/
/* Login */
/*----------------------------------------------*/
#login {
	margin-bottom: 50px;
}
.form_login {
	margin: 0 auto;
	max-width: 500px;
}
#login .flex-form-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#login .rememberMe {
	margin: 0;
}

/*---------------------------------------------*/
/* Pagination */
/*----------------------------------------------*/
.pagination {
	display: flex;
	justify-content: center;
	grid-gap: .5rem;
	margin-top: 1rem;
}
.pagination span,
.pagination a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: .25rem;
	background-color: var(--grisClair);
	transition: all .25s;
}
.pagination span:hover,
.pagination a:hover {
	background-color: var(--noir);
}
.pagination span:hover a,
.pagination a:hover {
	color: var(--blanc);
}
.pagination span a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: all .25s;
}
.pagination .current {
	background-color: var(--noir);
	color: var(--blanc);
}
.pagination img {
	height: 16px;
	transition: filter .25s;
}
.pagination span:hover img {
	filter: var(--blancSVG);
}
.pagination .next img {
	transform: rotate(-90deg);
}
.pagination .last img {
	transform: rotate(180deg);
}
.pagination .previous img {
	transform: rotate(90deg);
}
.pagination .first img,
.pagination .last img {
	height: 14.5px;
}


/*---------------------------------------------*/
/* Box Alert */
/*----------------------------------------------*/
.boxAlert {
	display: block;
	border: 2px solid red;
	text-align: center;
	border-radius: 0;
	margin-top: 2rem;
}
.boxAlert .containerBtnAlert {
	display: flex;
	grid-gap: 1rem;
	justify-content: center;
	margin-top: 1rem;
	flex-wrap: wrap;
}
.boxAlert .containerBtnAlert .btn {
	margin-left: 0;
}
.boxAlert .listContainer {
	display: inline-block;
}
.boxAlert .title {
	margin-bottom: .5rem;
	font-weight: bold;
	text-transform: uppercase;
	color: red;
}
.boxAlert p {
	text-align: center!important;
	line-height: 1.5rem!important;
}

/*---------------------------------------------*/
/* Download Box List Style */
/*----------------------------------------------*/
.downloadBoxListStyle {
	display: block;
}




#activityClose {
	margin-bottom: 50px;
}
#activityClose .boxAlert {
	margin-bottom: 2rem;
}
#activityClose .category {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}
#activityClose h4 span {
	font-weight: bold;
}

@media screen and (max-width: 800px) {
	#activityClose .category {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 500px) {
	#activityClose .category {
		grid-template-columns: 1fr;
	}
}