html {
    scroll-padding-top: 10rem;
    scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
    
    .sticky {
        position: sticky;
        top: 4rem;
    }
}

body {
    position: relative;
}

#spinner {
    position: fixed;
    inset: 0;
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: rgba(256, 256, 256, .5);
    color: var(--accent);
    font-size: 3rem;
}

.api-btn {
    position: relative;
}

.api-btn-feedback {
    text-transform: none;
    font-weight: 400;
    font-size: .9rem;
    width: 20rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - .5rem)); /* Déplacer l'élément pour le centrer au-dessus */
}

.grecaptcha-badge { 
    visibility: hidden; 
}

#pageContent {
    min-height: 30vh;
}

.large {
    font-size: 1.2rem;
}

.white {
    color: white;
}

a.white:hover {
    color: var(--verylightgrey);
}

.muted {
    font-size: .7rem;
    color: var(--lightgrey);
}

.muted a:link,
.muted a:visited {
    color: var(--grey);
}

.muted a:hover,
.muted a:focus,
.muted a:active {
    color: var(--evilgrey);
}

.muted.white {
    color: var(--white);
}

.muted.white a:link,
.muted.white a:visited {
    color: var(--lightestgrey);
}

.muted.white a:hover,
.muted.white a:focus,
.muted.white a:active {
    color: var(--white);
}

.bg-top {
    background-position: top;
}

.bg-bottom {
    background-position: bottom;
}

.bg-left {
    background-position: left;
}

.bg-right {
    background-position: right;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-offwhite {
    background-color: var(--offWhite);
}

#pageContent.center-y {
    display: grid;
    align-items: center;
    justify-content: center;
}

.stacker {
    display: grid;
    grid-template-areas: "stacked";
}

.stacked {
    grid-area: stacked;
}

.hidden {
    display: none;
    visibility: hidden;
}

.fading {
    transition: all .5s ease;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.float-right {
    float: right;
}

@media screen and (min-width: 768px) {
    .float-md-right {
        float: right;
    }
}

.bold {
    font-weight: 700;
}

.text-xsmall {
    font-size: .75rem;
    line-height: 1.125rem;
}

.max-width-max-content {
    max-width: max-content;
}

.maxwidth-28 {
	max-width: 28rem;
}

.dynamic {
    overflow-x: clip;
    overflow-clip-margin: .5rem;
    transition: all .5s ease-out;
    display: grid;
    grid-template-columns: 1fr;
}

.dynamic > * {
    grid-column: 1;
    grid-row: 1;
}

.dynamic-slide {
    transform: translateX(0);
    opacity: 1;
    /* max-height: 1000px; */
    transition: all .5s ease-out;
}

.slide-in {
    transform: translateX(100%);
    opacity: 0;
    /* max-height: 0; */
}

.slide-out {
    transform: translateX(-100%);
    opacity: 0;
    /* max-height: 0; */
}

.error {
    background-color: var(--failColorVeryLight);
    border-bottom: solid 1px var(--failColor);
    color: var(--failColorText);
    padding: .25rem;
    text-align: center;
}

.warning {
    background-color: var(--warningColorVeryLight);
    border-bottom: solid 1px var(--warningColor);
    color: var(--warningColorText);
    padding: .25rem;
    text-align: center;
}

.success {
    background-color: var(--successColorVeryLight);
    border-bottom: solid 1px var(--successColor);
    color: var(--successColorText);
    padding: .25rem;
    text-align: center;
}


.error a:link,
.error a:visited,
.error .btn-link {
    color: var(--failColorText);
    font-weight: 700;
}

.error a:hover,
.error a:focus,
.error a:active,
.error .btn-link:hover {
    color: var(--failColor);
}


.warning a:link,
.warning a:visited,
.warning .btn-link {
    color: var(--warningColorText);
    font-weight: 700;
}

.warning a:hover,
.warning a:focus,
.warning a:active,
.warning .btn-link:hover {
    color: var(--warningColor);
}

.success a:link,
.success a:visited,
.success .btn-link {
    color: var(--successColorText);
    font-weight: 700;
}

.success a:hover,
.success a:focus,
.success a:active,
.success .btn-link:hover {
    color: var(--successColor);
}

.password-wrapper {
    position: relative;
}

.password-eye {
    position: absolute;
    top: 50%;
    right: .5rem;
    transform: translateY(-50%);
    background-color: white;
    width: 2rem;
    height: 2rem;
    text-align: center;
}

.password-eye:hover,
.password-eye:focus,
.password-eye:active {
    background-color: white;
}

.icon-list {
    display: flex;
    align-items: baseline;
    text-align: start;
}

.icon-list .icon {
    width: 1rem;
    margin-right: .5rem;
    text-align: center;
}

.icon-box {
    display: flex;
    align-items: center;
    text-align: start;
}

/* --- ACTIVITY PAGE --- */

#activityTop h4 {
    font-size: 1.25rem;
    font-weight: 300;
}

#activityTop .activity-image.mobile {
	margin-bottom: 2rem;
}

#activityTop .activity-image.mobile img {
	display: block;
	margin: 0 auto;
}

#activityTop .activity-image.regular {
	display: none;
	visibility: hidden;
}

@media screen and (min-width: 768px) {
	#activityTop h1 {
		margin-bottom: 2rem;
	}
	
	#activityTop .activity-image.mobile,
	#activityTop .separatorline.mobile,
    hr.mobile {
		display: none;
		visibility: hidden;
	}
	
	#activityTop .activity-image.regular {
		display: block;
		visibility: visible;
	}
}

#activityTop .circle-wrapper {
	display: flex;
	width: 100%;
}

#activityTop .circle {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	flex-shrink: 0 !important;
}

#activityTop .circle.pinkred {
	background-color: var(--pinkred);
}

#activityTop .circle.yellow {
	background-color: var(--yellow);
}

#activityTop .circle.teal {
	background-color: var(--teal);
}

#activityTop .icon {
    color: white;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#activityTop .circle.transparent .icon {
    color: var(--yellow);
    font-size: 1.75rem;
    margin-top: .5rem;
}

#activityTop .circle-text {
	padding-left: 1rem;
}

/* --- PRODUCT LIST & CARD --- */

.product-list {
	margin-bottom: 1rem;
}

/* .product-list .product-card-container {
	max-width: 19rem;
} */

@media (min-width: 576px) {	
	.product-list .product-card-container {
		width: calc((100% - 1rem) / 2);
		min-width: 13rem;
	}
}

@media (min-width: 992px) {
	.product-list .product-card-container {
		width: calc((100% - 2rem) / 3);
	}
}

.product-card {
	max-width: 20rem;
}

/* .product-card {
	max-width: 19rem;
} */

.product-card .card-img-top {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-card .card-title {
	font-weight: 700;
}

.product-card .card-body {
	background-color: var(--ultralightgreen);
	border-top: solid 1px var(--trueteal);
}


/* GÉNÉRAL */

.form-check-input:checked {
    background-color: var(--blueMedium);
}

.form-legend {
    font-size: .7rem;
    padding: .1rem 0 0 .5rem;
    color: red;
}

.btn-link {
    color: var(--teal);
    padding: 0;
    text-decoration: none;
    vertical-align: baseline;
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    color: var(--yellow);
}

/* AUTOCOMPLETE */
.autocomplete-suggestions { 
    border: 1px solid var(--grey);
    background: white; 
    overflow: auto; 
}

.autocomplete-suggestion { 
    padding: 2px 5px; 
    white-space: nowrap; 
    overflow: hidden; 
}

.autocomplete-selected { 
    background: var(--lightteal);
    cursor: pointer; 
}

.autocomplete-suggestions strong { 
    font-weight: bold; 
    color: var(--teal); 
}

.autocomplete-group { 
    padding: 2px 5px; 
}

.autocomplete-group strong { 
    display: block; 
    border-bottom: 1px solid black; 
}

/* TOP MENU */
#topmenu {
	/* line-height: 1.4rem; */
	background: var(--verylightteal);
	/* height: 2.625rem; */
    overflow: hidden;
    margin-bottom: .75rem;
    border-bottom: .0625rem solid var(--teal);
}

@media screen and (max-width: 355px) {
	#topmenu-content .float-left,
	#topmenu-content .float-right {
			float: none;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
	}
}

#topmenu-content #facebookLogo {
	font-size: 1.4rem;
}

#topmenu-content a {
	color: var(--darkteal) !important;
	font-weight: 400;
}

#topmenu-content span {
	color: var(--darkteal) !important;
}

#topmenu-content nav > .nav-link:not(:first-child)::before {
	content: "|";
	margin-right: 2rem;
	color: rgba(var(--darkteal), .5) !important;
}

#topmenu-content nav div:nth-of-type(2) a::before {
	content: "|";
	margin-right: 1.5rem;
	color: rgba(var(--darkteal), .5) !important;
}

@media screen and (max-width: 576px) {
	#topmenu-content .nav-link {
			padding-left: .5rem;
			padding-right: .5rem;
	}

	#topmenu-content nav > .nav-link:not(:first-child)::before {
			margin-right: 1rem;
	}
}

#top-menu-cart {
	position: relative;
}

#top-menu-cart div {
	position: absolute;
	right: 0;
	top: 4px;
	background-color: var(--yellow);
	border-radius: 50%;
	height: 1rem;
	aspect-ratio: 1 / 1;
	font-size: .8rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 576px) {
	#top-menu-cart div {
			right: 10px;
	}
}

/* NAVBARS */
nav.navbar button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: none;
	text-transform: uppercase;
	font-size: 1rem;
}

nav.navbar button > span:not(:last-child) {
	padding-right: 0.4rem;
}

.navbar-collapse {
	justify-content: end;
}

/* MODALS */

dialog {
	padding: 0;
    border: none;
	max-width: 28rem;
    color: var(--blue-fonce);
}

dialog::backdrop {
	background-color: hsla(0, 0%, 20%, 0.5);
}

.dialog-header {
	background-color: var(--blue-menu);
	display: flex;
	padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.dialog-header h5,
#pageContent .dialog-header h5 {
    color: var(--white);
}

.dialog-body {
	padding: 1rem;
}

.dialog-body .row:not(:last-child) {
    margin-bottom: .75rem;
}

.dialog-body > .row:last-of-type {
    margin-bottom: 0;
}

.dialog-body .form-floating {
    margin: 0 0 .75rem;
}

/* TOP MENU */

#top-menu-cart {
    position: relative;
}

#top-menu-cart div.nb-items-container {
    position: absolute;
    right: -.25rem;
    top: 4px;
    background-color: var(--yellow);
    color: var(--white);
    border-radius: .5rem;
    height: 1rem;
    width: 1rem;
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 576px) {
    #top-menu-cart div.nb-items-container {
        right: .25rem;
    }
}

/* --- Mon compte --- */

#user-profile button.nav-link {
    color: var(--darkgrey);
}

#user-profile h2 {
    color: var(--teal);
    /* font-family: Fraunces, Merriweather, Poppins, Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif; */
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

#user-profile h3 {
    color: var(--yellow);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.tab-pane:focus, .tab-pane:active {
    outline: none !important;
    box-shadow: none;
}

.profile-box {
    border-radius: 5px !important;
    margin-bottom: 2rem;
    background-color: oklch(98.4% 0.003 247.858);
}

.profile-box h4 {
    background-color: var(--teal);
    color: var(--white);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: .2rem .5rem;
    margin-bottom: 0;
}

.profile-box .container-fluid {
    padding-top: .75rem;
}

.profile-box .form-floating {
    padding: 0 0 .75rem;
}

.profile-box label {
    font-size: .8rem !important;
}

.profile-box legend {
    font-size: 1rem;
}

.profile-box .form-control {
    font-size: .9rem;
}

.profile-box table {
    font-size: .8rem;
}

.profile-box table {
    margin-bottom: 0;
}

/* .modal#modalNaissances {
    font-size: .8rem;
}

.modal#modalNaissances .modal-header {
    background-color: var(--blue-menu);
    color: var(--white);
}

.modal#modalNaissances label,
.modal#modalNaissances select {
    font-size: .8rem !important;
}

.modal#modalNaissances .row {
    margin-bottom: 1rem;
}

#profileModal .col {
    margin-bottom: 1rem;
}

#profileModal #profileModal-close-btn {
    width: 100%;
} */

/* --- MON PANIER --- */

.cart-summary .title h2 {
    font-weight: 300;
    text-transform: uppercase;
}

.cart-summary .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: .25rem;
}

.cart-summary .line label {
    margin-right: 1rem;
}

.cart-summary #cart-total {
    text-transform: uppercase;
}

.cart-summary #cart-checkout-btn {
    padding: .5rem .75rem;
}

.cart-item {
    display: grid;
    grid-template-columns: min-content 1fr;
    align-items: start;
    grid-template-areas: 
        "img title"
        "details details";
}

.cart-item .img {
    grid-area: img;
}

.cart-item .img img {
    width: 6rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 1rem 0 0;
}

.cart-item .title {
    grid-area: title;
}

.cart-item .details {
    grid-area: details;
}

@media (min-width: 768px) {
    .cart-item {
        grid-template-areas: 
        "img title"
        "img details";
    }

    .cart-item .img img {
        width: 8rem;
    }
}

.cart-item h3 {
    font-weight: 300;
    text-transform: unset;
}

.cart-item-product h3 {
    margin-bottom: 0;
}

.cart-item .participant {
    padding: 0 .75rem;
}

.cart-item .details .row {
    margin: 0 -1.5rem;
}

.cart-item-delete {
    line-height: 10px;
}

/* Calendar */
#calendar .badge {
    /* background-color: transparent;
    border: solid 1px var(--magenta); */
    color: var(--white);
}

.calendar h2 {
    font-weight: 300;
}

.calendar h5 {
    font-weight: 300;
}

/* --- FILTER TOOLBAR --- */

.btn-activityfilter {
	position: relative;
	border: 1px solid var(--lightgrey);
	color: var(--lightgrey);
	font-size: 12px;
	font-weight: 500;
	margin-right: .25rem;
}

.btn-activityfilter:hover,
.btn-activityfilter.active {
	border-color: var(--darkgrey);
	color: var(--darkgrey);
}

/* seulement les boutons de catégories (pas le bouton ALL) */
.activityfilter-tag {
	padding-right: 30px;
}

.activityfilter-tag::after {
	content: '';
	position: absolute;
	height: 12px;
	width: 12px;
	background-color: var(--lightgrey);
	top: 9.5px;
	right: 12px;
}

.activityfilter-tag.active::before {
	content: '\2713';
	position: absolute;
	font-size: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 9.5px;
	right: 12px;
	height: 12px;
	width: 12px;
	color: white;
	z-index: 2;
}

.activityfilter-tag.active::after {
	background-color: var(--darkgrey);
}


/* BACKGROUNDS */
.bg-category1,
.badge.bg-category1 {
    background-color: var(--category1);
    border-color: var(--category1);
}

.bg-category2,
.badge.bg-category2 {
    background-color: var(--category2);
    border-color: var(--category2);
}

.bg-category3,
.badge.bg-category3 {
    background-color: var(--category3);
    border-color: var(--category3);
}

.category-box:before {
    content: " ";
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    position: relative;
    top: .1rem;
    line-height: 20px;
    margin: 0 10px 0 20px;
    border-radius: 50%;
}

.category1-color:before {
    background: var(--category1);
}

.category2-color:before {
    background: var(--category2);
}

.category3-color:before {
    background: var(--category3);
}

#calendar {
    margin: 1rem auto;
    border-radius: .25rem;
    height: 100vh;
    /* min-height: 550px; */
}

#calendar table:first-of-type {
    border-radius: 5px;
}

#calendar tr:first-child th:last-child {
    border-top-right-radius: 5px;
}

#calendar tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

#calendar tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

/* @media (max-width: 992px) {
	.fc-toolbar {
		display: flex;
		flex-direction: column;
	}

	.fc-toolbar-chunk:not(:last-child) {
		margin-bottom: 1rem;
	}
} */

.fc-toolbar-title {
    text-align: center;
}

.fc-daygrid-day {
    height: 140px;
}

.fc-day-today{
    background-color: rgba(var(--category1RGB), .2) !important;
}

.fc-daygrid-event {
    margin-bottom: .2rem;
}

.custom-event-container {
    margin: .4rem;
    overflow: hidden;
}

.custom-event-inner-container {
    margin-left: .2rem;
}

.custom-event-time {
    font-size: .7rem;
}

.custom-event-title {
    font-size: .7rem;
    font-weight: bold;
}

.custom-event-content {
    font-size: .6rem;
}

.custom-event-content .badge {
    font-size: .6rem;
}

.custom-event-cards {
    margin-top: 1rem;
}

.custom-event-cards h4 {
    text-align: center;
}

.custom-event-card-container {
    border-radius: 5px;
    margin: 1rem 0;
    padding: 1rem;
    font-size: .7rem;
    font-weight: bold;
}

.custom-event-card-date {
    border-radius: 5px;
    font-size: .8rem;
    max-width: 100px;
}
.custom-event-card-date-container:nth-child(2) {
    margin-top: 1rem;
}

.custom-event-card-month {
    color: var(--white);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-transform: uppercase;
    text-align: center;
}

.custom-event-card-day {
    background-color: var(--lightgrey);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
}

.custom-event-card-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.custom-event-card-price {
    background-color: var(--lightgrey);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.custom-event-card-places {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .custom-event-cards .fc-view-harness {
        height: 700px !important;
    }
}

@media screen and (max-width: 1200px) {
    .custom-event-card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

#customEventModal .row:not(:first-child) {
    margin-top: 1rem;
}

#customEventModal #custom-event-modal-title {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--yellow);
}

#customEventModal #custom-event-modal-tag-container {
    background-color: var(--lightgrey);
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: 5px;
}

#customEventModal #custom-event-modal-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* @media screen and (min-width: 993px) {
    #customEventModal #custom-event-modal-button-col {
        text-align: right;
    }

    #customEventModal #custom-event-modal-total-places {
        text-align: center;
    }

    #customEventModal #custom-event-modal-location-container {
        text-align: right;
    }
} */

@media screen and (max-width: 992px) {
    #customEventModal .col-12:not(:first-child) {
        margin-top: 1rem;
    }
}

/* --- Card List --- */

@media (max-width: 992px) {
	.card-list:not(:last-child) {
		padding-bottom: 2rem;
	}
}

.card-list img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.basic-card {
    border-left: 1px solid var(--lightestgrey);
    border-right: 1px solid var(--lightestgrey);
    border-bottom: .375rem solid var(--teal);
}

.basic-card .card-info {
	color: var(--greyish);
	font-weight: 400;
	padding: 2rem;
}

.basic-card .card-info h5 {
	font-size: 1.25rem;
	text-transform: uppercase;
	padding-bottom: 1rem;
}

.basic-card .card-info p {
	padding-bottom: 2rem;
}

.basic-card .card-info a {
	margin-top: auto;
}


/* --- Article --- */

.section-banner {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}

/* .article-content > div > .row:last-child {
    margin-bottom: 1.5rem;
}

.article-content > div > .row > .col {
    margin-top: 1.5rem;
} */

.article-content .col > :last-child {
    margin-bottom: 0;
}

/* .article-content form {
    margin-bottom: 1rem;
} */

.article-content h2 {
	margin-bottom: 1rem;
}

.article-content h3 {
	/* font-weight: 300; */
	/* text-transform: unset; */
    margin-bottom: .5rem;
}

.article-content h4:not(.profile-box h4) {
    font-weight: 300;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: unset;
}

.article-content h2:not(:first-child):not(img + h2),
.article-content h3:not(:first-child):not(img + h3) {
	margin-top: 1.5rem;
}
.article-content h4:not(:first-child):not(img + h4) {
	margin-top: .5rem;
}

.article-content .img-float-right img {
    float: right;
    margin: 1rem 0 1rem 1rem;
}

.article-list h2 {
    font-size: 1.625rem;
	font-weight: 300;
	padding-top: 1.25rem;
	text-transform: uppercase;
}

.article-card {
    display: flex;
    flex-direction: column;
    transition: all .25s ease-out;
}

.article-card:hover {
    transform: translateY(-.375rem);
}

.article-card-content {
    flex-grow: 1;
}

.article-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.article-card h5 {
    font-weight: 300;
    font-size: clamp(0.9rem, 0.742rem + 0.704vw, 1.375rem); /* Clamp calculator */
    margin: 1rem 0;
}

/* --- Company --- */

.external-registration-company {
    max-width: 40rem;
}

.company-address-card .img-wrapper img {
    width: 100%;
    max-width: 20rem;
}

.company-address-card .contact {
    display: flex;
    margin-bottom: 1rem;
}

.company-address-card .contact .child {
    width: 0;
    flex-grow: 1;
}

.company-address-card .contact-img {
    width: 6rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

@media screen and (min-width: 768px) {

    .company-address-card .img-wrapper {
        flex-grow: 0;
        /* flex-shrink: 0; */
    }

    .company-address-card .img-wrapper img {
        min-width: 12rem;
        max-width: 16rem;
        object-fit: contain;
        object-position: top;
    }
}

/*  --- Activités --- */

.activity-toolbar .icon-wrapper a {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
}

.activity-toolbar .icon {
	margin-right: 0.5rem;
	background-color: var(--yellow);
	padding: 0.2rem 0.4rem;
	border-radius: 5px;
	color: white;
}

.activity-toolbar .icon-text {
	display: flex;
	align-items: center;
	font-size: 18px;
}

.activity-card a:link:not(.btn),
.activity-card a:visited:not(.btn),
.activity-toolbar .calendar-btn a:link,
.activity-toolbar .calendar-btn a:visited {
	color: var(--midgrey);
}

.activity-card a:hover:not(.btn),
.activity-card a:focus:not(.btn),
.activity-card a:active:not(.btn) {
	color: var(--teal);
}

.activity-toolbar .calendar-btn a:hover,
.activity-toolbar .calendar-btn a:focus,
.activity-toolbar .calendar-btn a:active {
	color: var(--yellow);
}

.activity-toolbar .btn-container {
	padding-top: 1rem;
}

.activity-toolbar button {
	margin-bottom: 1rem;
}

.activity-card {
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	max-width: 35rem;
}

.activity-card-image {
	/* aspect-ratio: 4 / 3; */
	overflow: hidden;
	position: relative;
}

.activity-card-image a {
	display: block;
	height: 100%;
}

.activity-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.activity .activity-image,
.product-card .product-img,
.product .product-img {
	position: relative;
	overflow: hidden;
}

.activity-card-image.featured::after,
.activity .activity-image.featured::after,
.product-card .product-img.featured::after,
.product .product-img.featured::after {
	content: 'En vedette';
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(var(--category3RGB), .8);
	color: var(--white);
	font-weight: 600;
	font-size: 1.0625rem;
	padding: .25rem 4rem;
	transform: translate(calc(2.75rem - 50%)) translateY(calc(2.75rem - 50%)) rotate(-45deg);
}

#activites .activitiesImgText p {
	margin: 0;
}

.activity-card-text {
	padding: .75rem .75rem 0;
	/* min-height: 200px; */
	font-weight: 500;
}

/* @media (max-width: 768px) {
	#activites .activity-card-text {
		min-height: 0;
	}
} */

.activity-card-bottom {
	padding: 0 .75rem .75rem;
}

.cat1-bar {
	border-bottom: 10px solid var(--lightgreen);
}

#activites .teal-text,
#activites .teal-text strong,
.activity-card .teal-text,
.activity-card .teal-text strong {
	color: var(--teal);
	font-size: 1.25rem;
	/* text-transform: uppercase; */
}

/* --- ÉQUIPE --- */

.teammate img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-bottom: solid .5rem var(--teal);
}