:root {
    --color-1: #4E3C35;
    --color-2: #99624A;
    --color-3: #CD9E89;
    --color-4: #E5D5C8;
    --color-5: #5F4F49;
    --color-6: #000000;
    --color-7: #FFFFFF;
    --color-8: rgba(229, 213, 200, .2);
    --color-9: rgba(229, 213, 200, .5);
    --input-border-color: rgba(0, 0, 0, .1);
    --menu-gradiant-1: rgba(229, 213, 200, .9);
    --menu-gradiant-2: rgba(255, 255, 255, .9);
    --mask-color: rgba(0, 0, 0, .5);
    --filter-mask-color: rgba(255, 255, 255, .8);

    /* Calendrier */
    --calendar-js-day-names-color: var(--color-7);
    --calendar-js-title-bar-button-color: var(--color-4);
    --calendar-js-title-bar-text-color: var(--color-2);
    --calendar-js-dark-color: var(--color-2);
    --calendar-js-border-radius: 20px;
    --calendar-js-event-color: var(--color-2);
    --calendar-js-light-color: var(--color-7);
    --calendar-js-area-disabled-stripped: var(--color-8);
    --calendar-js-area-disabled-stripped-weekend-day: var(--color-8);

}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: gotham, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: var(--color-5);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--color-5);
    transition: all .2s ease-out;
}

a:hover {
    color: var(--color-2);
}

h1 {
    text-transform: uppercase;
    font-size: 2em;
    color: var(--color-2);
    margin: 0;
    display: flex;
    column-gap: 5px;
    align-items: center;
}

h2 {
    text-transform: uppercase;
    font-size: 1.7em;
    color: var(--color-2);
    margin: 0;
    display: flex;
    column-gap: 5px;
    align-items: center;
}

h3 {
    text-transform: uppercase;
    font-size: 1.5em;
    color: var(--color-2);
    margin: 0;
}

h4 {
    text-transform: uppercase;
    font-size: 1.4em;
    color: var(--color-5);
    margin: 0;
}


button {
    border: none;
}

ul {
    padding-inline-start: 25px;
}

li {
    margin-bottom: 10px;
}

.display-none {
    height: 0px !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.display-off {
    display: none !important;
}

.justify-content-center {
    justify-content: center;
}

.pointer {
    cursor: pointer;
}

.important {
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

/* ---------- MENU DESKTOP ---------- */
#menu {
    width: 100vw;
    height: 80px;
    background: linear-gradient(90deg, var(--menu-gradiant-1) 0%, var(--menu-gradiant-2) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 50px;
    z-index: 500;
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
}

.menu-logo {
    margin-left: 50px;
}

#menu_content {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    font-family: gotham, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: .9em;
}

.menu-item {
    transition: background-color .2s ease-out, color .2s ease-out, transform .1s ease-out;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    color: var(--color-6);
    white-space: nowrap;
}

.menu-item:hover,
.menu-item-hover {
    color: #fff;
    background-color: #5F4F49;
}

#menu_options {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    width: 100%;
    justify-content: flex-end;
    margin-right: 30px;
}

#menu_mobile {
    display: none;
}

.menu-profil {
    width: 40px;
    height: 40px;
    background-color: var(--color-2);
    background-image: url(img/profil.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}

.menu-profil img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.button-1 {
    transition: background-color .2s ease-out, transform .1s ease-out;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: gotham, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: .9em;
    background-color: var(--color-2);
    color: var(--color-7);
    text-align: center;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.button-1:hover {
    background-color: var(--color-5);
    color: var(--color-7);
}

.button-1 img {
    width: 20px !important;
    border-radius: 0 !important;
}

.button-2 {
    transition: background-color .2s ease-out, color .2s ease-out, transform .1s ease-out;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: gotham, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: .9em;
    background-color: var(--color-4);
    color: var(--color-6);
    text-align: center;
}

.button-2:hover,
.button-2-selected {
    background-color: var(--color-2);
    color: var(--color-7);
}

.button-3 {
    transition: background-color .2s ease-out, color .2s ease-out, transform .1s ease-out, padding .2s ease-out;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: gotham, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.2em;
    background-color: var(--color-5);
    color: var(--color-7);
    letter-spacing: .05em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
    text-align: center;
}

.button-3:hover {
    background-color: var(--color-2);
    color: var(--color-7);
    padding: 10px 60px;
}

.button-4 {
    transition: background-color .2s ease-out, color .2s ease-out, transform .1s ease-out;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: gotham, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: .9em;
    background-color: var(--color-5);
    color: var(--color-7);
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}

.button-4:hover {
    background-color: var(--color-2);
    color: var(--color-7);
}

.button-1:active,
.button-2:active,
.button-3:active,
.button-4:active,
.menu-item:active {
    transform: scale(.95);
}

.button-1:disabled {
    filter: grayscale(1);
    opacity: .5;
}

#homepage_slider {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: auto;
    margin-top: 80px;
}

#homepage_slider_content {
    width: fit-content;
    display: flex;
    flex-direction: row;
    transition: all 1s cubic-bezier(.7, 0, .3, 1);
}

.homepage-slider-item {
    width: 100vw;
    height: 500px;
    background-image: url(img/placeholders/banner01.png);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

#homepage_slider_arrows {
    margin-top: -265px;
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: space-between;
}

#homepage_slider_arrows .previous-arrow {
    margin-left: 20px;
}

#homepage_slider_arrows .next-arrow {
    margin-right: 20px;
}

.previous-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--color-2);
    color: var(--color-7);
    border-radius: 50%;
    opacity: .8;
    background-image: url(img/previous-arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 11px auto;
    cursor: pointer;
    transition: all .2s ease-out;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
}

.next-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--color-2);
    color: var(--color-7);
    border-radius: 50%;
    opacity: .8;
    background-image: url(img/next-arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 11px auto;
    cursor: pointer;
    transition: all .2s ease-out;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
}

.previous-arrow:hover,
.next-arrow:hover {
    background-color: var(--color-5);
    opacity: 1;
}

.arrow-off {
    transform: scale(0);
}

#homepage_slider_button {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    position: relative;
    display: block;
}

#homepage_content,
#concept_content,
#programmes_content,
#nutrition_content,
#abonnements_content,
#nos_coach_content,
#programme_seances_content,
#liste_complete_programmes_content,
#faq_content,
#connexion_content,
#seance_content,
#agenda_content,
#evolution_content,
#profil_content,
#error_content,
#recette_content,
#plan_content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    max-width: 100vw;
    overflow: hidden;
    align-items: center;
    flex: 1;
}

#mon_fitaya_content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-width: 100vw;
    overflow: hidden;
    align-items: center;
    flex: 1;
}

.homepage-section {
    display: flex;
    flex-direction: row;
    width: 60%;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 20px;
    padding-bottom: 20px;
    column-gap: 50px;
    align-items: center;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
    z-index: 0;
}

#liste_complete_programmes_content .homepage-section {
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
}

.homepage-video-pack {
    display: flex;
    flex-direction: row;
}

.homepage-video-background {
    background-color: var(--color-4);
    width: 400px;
    height: 400px;
    border-radius: 50%;
}

.homepage-video {
    position: relative;
    width: 255px;
    border-radius: 20px;
    margin-left: -280px;
    margin-top: -20px;
}

.homepage-section-column {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
}

.homepage-section-column img,
.homepage-section-column video {
    vertical-align: sub;
    max-width: 600px;
    border-radius: 20px;
    width: 90vw;
}

.a-propos-star {
    width: 20px !important;
}

.homepage-section-alternate {
    background-color: var(--color-8) !important;
}

.homepage-section-line {
    display: flex;
    flex-direction: column;
    width: 60%;
    min-width: 1135px;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 20px;
    padding-bottom: 20px;
    row-gap: 20px;
    align-items: center;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
}

#programmes_content .homepage-section-line {
    align-items: flex-start;
    width: fit-content;
    padding-left: 0%;
    padding-right: 0%;
}

.subscription-offers {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
}

.subscription-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-7);
    padding: 20px 30px;
    border-radius: 20px;
    row-gap: 20px;
    max-width: 200px;
    text-align: center;
}

.subscription-block-alternate {
    background-color: var(--color-8);
}

.subscription-block-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.4em;
}

.subscription-block-bold {
    font-weight: 600;
    white-space: normal;
}

.subscription-block-price {
    font-weight: 200;
    font-size: 2em;
}

.subscription-block-promo {
    background-color: var(--color-5);
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-top: 180px;
    margin-left: -60px;
    color: var(--color-7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    aspect-ratio: 1/1;
}

#coach_list,
#review_list {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
}

#coach_list a {
    color: var(--color-5);
}

.coach-container {
    width: 860px;
    overflow-x: hidden;
}

#coach_content,
#tous_les_programmes_content,
#objectifs_content,
#objectif_content,
#discipline_content,
#niveau_content,
#mon_fitaya_programmes_content,
#zone_du_corps_content,
#programmes_pour_seances_content,
#disciplines_content,
#review_content {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: flex-start;
    width: fit-content;
    transition: all .5s cubic-bezier(.7, 0, .3, 1);
}

.coach-block {
    width: 200px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all .2s ease-out;
    background-color: var(--color-8);
}

.coach-block:hover {
    filter: brightness(.5);
}

.coach-name {
    background-color: var(--color-2);
    color: var(--color-7);
    margin: 5px;
    padding: 5px;
    border-radius: 20px 20px 20px 0px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.coach-discipline {
    background-color: var(--color-4);
    margin: 5px;
    padding: 5px;
    border-radius: 20px 0px 20px 20px;
    text-transform: uppercase;
    text-align: center;
    font-size: .9em;
}

.homepage-review {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
}

.homepage-review-photos {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
}

.review-before {
    height: 300px;
    width: 130px;
    border-radius: 20px;
    filter: grayscale(1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(img/placeholders/review-1.jpg);
    z-index: 1;
}

.review-after {
    height: 350px;
    width: 150px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: -4px 0 4px 0 rgba(0, 0, 0, 0.25);
    margin-left: -30px;
    z-index: 2;
    background-image: url(img/placeholders/review-2.jpg);
}

.review-text {
    max-width: 500px;
    background-color: var(--color-8);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.review-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.review-text-name {
    font-weight: 600;
}

.review-block {
    width: 800px;
}

.review-container {
    overflow: hidden;
    width: 820px;
}

.block-cat {
    background-color: var(--color-7);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    row-gap: 20px;
    max-width: 500px;
    border-radius: 20px;
}

.block-cat-title {
    font-weight: 600;
    color: var(--color-2);
    text-transform: uppercase;
    font-size: 1.2em;
    text-align: center;
}

.homepage-section-stat {
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 50px;
}

.homepage-stat-logo {
    width: 100px;
}

.homepage-stat {
    font-size: 1.2em;
    font-weight: 200;
    text-align: center;
    color: var(--color-2);
    text-transform: uppercase;
}

.homepage-stat-number {
    font-weight: 600;
    font-size: 2.8em;
}

.newsletter-block {
    background-color: var(--color-7);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    max-width: 400px;
    width: 80vw;
}

.newsletter-block input[type="email"],
.newsletter-block input[type="telephone"] {
    appearance: none;
    padding: 15px;
    width: 90%;
    border-radius: 20px;
    border-color: var(--input-border-color);
    border-style: solid;
    border-width: 1px;
    font-family: gotham, sans-serif;
    outline: none;
    background-color: var(--color-7);
    max-width: none;
}

footer {
    background-color: var(--color-4);
    display: flex;
    flex-direction: row;
    padding: 10px 30px;
    align-items: center;
    justify-content: center;
    font-size: .8em;
    column-gap: 20px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: 100%;
    text-align: center;
}

.footer-links a {
    color: var(--color-7);
    font-weight: 600;
    text-transform: uppercase;
    transition: all .2s ease-out;
}

.footer-links a:hover {
    color: var(--color-2);
}

.footer-logo {
    height: 40px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.scrolling-off {
    opacity: 0;
    transform: translateY(200px);
}

#back {
    background-color: var(--color-7);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin: 100px 0px 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-out;
    z-index: 5;
    position: relative;
}

#back img {
    width: 10px;
}

#back:hover {
    transform: scale(1.1);
}

.margin-back {
    margin-top: -20px !important;
}

#filtres {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    font-weight: 600;
    font-size: 1.1em;
}

#filtres img {
    width: 25px;
}

.programme-line {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
}

.programme-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.programme-image-landscape {
    width: 360px;
    aspect-ratio: 3 / 2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--color-8);
}

.programme-image {
    width: 200px;
    aspect-ratio: 2 / 3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--color-8);
}

.programme-mask {
    background-color: var(--mask-color);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .2s ease-out;
    pointer-events: none;
}

.programme-mask img {
    width: 60px;
}

.programme-mask:hover {
    opacity: 1;
}

.programme-image:hover .programme-mask,
.programme-image-landscape:hover .programme-mask,
.mon_fitaya_programmes-block:hover .programme-mask {
    opacity: 1;
}

.mon_fitaya_programmes-block .programme-mask {
    aspect-ratio: 16 / 9;
    margin-bottom: 3px;
    border-radius: 20px;
}

.programme-slider-content {
    max-width: 1520px;
    width: 80vw;
    margin: auto;
    overflow-x: hidden;
}

.programmes-tous {
    background-color: var(--color-5);
    background-size: 50% auto;
}

.tous_les_programmes_entete {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
}

#filtre_container,
#popup_container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 80px);
    background-color: var(--filter-mask-color);
    z-index: 50;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: opacity .2s ease-out;
}

.filtre-background-off,
.popup-background-off {
    opacity: 0;
}

#filtre_form,
#popup_form {
    width: 100vw;
    max-width: 900px;
    background-color: var(--color-7);
    padding: 50px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    row-gap: 40px;
    display: flex;
    flex-direction: column;
    color: var(--color-2);
    transition: all .2s ease-out;
    transform-origin: center center;
    overflow-y: auto;
    max-height: 75%;
}

.filtre-off,
.popup-off {
    transform: scale(0);
}

.popup-seance-preview {
    width: 500px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    background-color: var(--color-8);
}

.popup-seance-validee {
    display: flex;
    color: var(--color-2);
    align-items: center;
    column-gap: 5px;
    font-weight: 600;
}

.popup-seance-validee img {
    width: 25px;
}

.filtre-form-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
}

#filtre_form input[type="text"] {
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    background-color: var(--color-8);
    font-size: 1em;
    font-family: gotham, sans-serif;
    min-width: 90%;
}

.filtre-form-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
}

.filtre-form-titre {
    font-size: 1.3em;
    font-weight: 600;
    text-transform: uppercase;
}

.filtre-form-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.filtre-form-option {
    text-transform: uppercase;
    background-color: var(--color-8);
    border-radius: 20px;
    font-weight: 600;
    color: var(--color-3);
    padding: 10px 20px;
    cursor: pointer;
    transition: all .2s ease-out;
    font-size: 0.8em;
}

.filtre-form-option:hover {
    background-color: var(--color-3);
    color: var(--color-2);
}

.filtre-form-option-selected {
    background-color: var(--color-2);
    color: var(--color-7);
}

.filtre-form-option-selected:hover {
    background-color: var(--color-2);
    color: var(--color-7);
}

.filtre-close {
    margin-top: -50px;
    margin-right: -950px;
    cursor: pointer;
    position: absolute;
}

.filtre-first {
    margin-top: -50px;
}

.nutrition-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    text-transform: uppercase;
    color: var(--color-2);
    font-weight: 600;
    font-size: 1.2em;
    text-align: center;
}

.nutrition-image {
    width: 250px;
    aspect-ratio: 2 / 3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
}

.nutrition-section {
    display: flex;
    flex-direction: row;
    width: 60%;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 20px;
    padding-bottom: 20px;
    column-gap: 50px;
    align-items: center;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
    z-index: 0;
}

.nutrition-section-line {
    display: flex;
    flex-direction: column;
    width: 60%;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 20px;
    padding-bottom: 20px;
    row-gap: 20px;
    align-items: center;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
}

.nutrition-list {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: nowrap;
}

#abonnements_illustration {
    background-image: url(img/placeholders/abonnements.jpg);
    background-repeat: no-repeat;
    aspect-ratio: 13/4;
    width: 100%;
    border-radius: 20px;
    background-position: center center;
    background-size: cover;
}

.coach-picture {
    aspect-ratio: 2/3;
    width: 200px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: var(--color-8);
}

#tag_list {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.tag {
    background-color: var(--color-9);
    padding: 8px 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: .9em;
}

.tag-alternate {
    background-color: var(--color-5);
    color: var(--color-7);
    padding: 8px 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: .9em;
}

.classic-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    column-gap: 40px;
    row-gap: 50px;
    justify-content: center;
}

.popup-style {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 50px;
    padding: 30px;
}

.programme-presentation {
    align-items: flex-start;
    width: 70%;
}

.programme-details {
    align-items: center;
    max-width: 50%;
    width: 100%;
}

.programme-info {
    background-color: var(--color-8);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    font-weight: 600;
    width: 50%;
}

.programme-cat {
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 30px;
    row-gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.programme-details-picture {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 6/3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    background-color: var(--color-8);
}

.seance-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
}

.seance-picture {
    aspect-ratio: 16/9;
    width: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
}

.seance-picture-mask {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--mask-color);
    border-radius: 20px;
    row-gap: 10px;
    pointer-events: none;
}

.seance-title {
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    padding-left: 20px;
    border-radius: 20px;
    transition: all .2s ease-out;
    text-align: center;
    width: 310px;
    overflow: hidden;
    display: block;
}

.seance-picture-data {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--color-2);
    font-weight: 600;
    width: 50%;
    text-align: right;
    justify-content: center;
    text-transform: uppercase;
}

.seance-info {
    background-color: var(--color-9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px);
    border-radius: 20px;
    padding: 10px;
    row-gap: 10px;
    max-width: 330px;
}

.seance-stats {
    display: flex;
    width: 100%;
    justify-content: center;
}

.seance-info-line {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    font-size: 0.9em;
}

.seance-info-ref {
    color: var(--color-5);
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.seance-info-data {
    color: var(--color-2);
    text-transform: uppercase;
    font-weight: 600;
}

.seance-block:hover .seance-title {
    background-color: var(--color-2);
    color: var(--color-7);
}

.seance-info-line-icons {
    justify-content: flex-start;
    column-gap: 15px;
    width: 100%;
    margin-left: 15px;
}

.seance-info-icon {
    width: 25px;
    opacity: 50%;
    transition: all .2s ease-out;
}

.seance-info-icon:hover {
    opacity: 1;
}

.seance-info-award {
    width: 22px;
}

.seance-complete {
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: var(--color-2);
}

.seance-complete img {
    width: 25px;
    border-radius: 0;
}

.recette-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    cursor: pointer;
    color: var(--color-5);
}

.recette-block-illustration {
    aspect-ratio: 16/9;
    width: 360px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.recette-block-illustration-mask {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: var(--mask-color);
    border-radius: 20px;
    justify-content: center;
    opacity: 0;
    transition: all .2s ease-out;
    pointer-events: none;
}

.recette-block:hover .recette-block-illustration-mask {
    opacity: 1;
}

.recette-block-illustration-mask img {
    width: 60px;
}

.recette-block-info-line {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.recette-block-preparation {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    column-gap: 5px;
}

.recette-block-preparation img {
    width: 20px;
}

.recette-block-titre {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2em;
}

.faq-line {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 15px;
    border-radius: 20px;
    transition: all .2s ease-out;
    height: fit-content;
    width: 100%;
}

.faq-question {
    font-weight: 600;
    color: var(--color-2);
    display: flex;
    flex-direction: row;
    font-size: 1.2em;
    justify-content: space-between;
    cursor: pointer;
    transition: all .2s ease-out;
}

.faq-question:hover {
    color: var(--color-5);
}

.faq-question img {
    width: 20px;
    transform: rotateZ(180deg);
    transition: all .2s ease-out;
}

.faq-reponse {
    transition: all .2s ease-out;
}

.faq-line-off {
    background: var(--color-8);
    row-gap: 0px;
}

.faq-reponse-off {
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-arrow-off {
    transform: rotateZ(0deg) !important;
}

.connexion-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 80px;
    row-gap: 20px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    background-color: var(--color-8);
}

.social-button {
    width: 300px;
    justify-content: space-between;
}

.social-button-logo {
    width: 20px;
}

.connexion-section {
    column-gap: 10px;
    row-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.connexion-section img {
    width: 30px;
}

input[type="email"],
input[type="password"],
input[type="tel"],
.profil-form-line input[type="number"],
input[type="text"],
input[type="date"] {
    font-family: gotham, sans-serif;
    padding: 10px 20px;
    background-color: var(--color-8);
    border: none;
    border-radius: 20px;
    width: 80%;
    max-width: 300px;
    transition: all .2s ease-in-out;
    appearance: none;
    outline: none;
    color: var(--color-2);
    border: solid 1px var(--color-7);
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
.profil-form-line input[type="number"]:focus,
input[type="checkbox"]:focus {
    border: solid 1px var(--color-4);
}

.connexion-label {
    width: 220px;
    text-align: right;
}

input[type="checkbox"] {
    appearance: none;
    border: solid 1px var(--color-4);
    background-color: var(--color-8);
    width: 20px;
    height: 20px;
    background-image: url(img/check.svg);
    background-position: center center;
    background-size: 0 0;
    background-repeat: no-repeat;
    transition: all .1s ease-in-out;
    border-radius: 3px;
}

input[type="checkbox"]:checked {
    background-color: var(--color-8);
    background-size: 20px 20px;
}

input[type="checkbox"]:focus {
    border-color: var(--color-2);
}

.mon-fitaya-conseil-banner {
    width: 100vw;
    padding: 20px 0;
    background-color: var(--color-8);
    overflow: hidden;
    transform-origin: center center;
    animation: mon-fitaya-conseil-animation .3s cubic-bezier(0, 0, 0, 1) 1;
}

@keyframes mon-fitaya-conseil-animation {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    60% {
        transform: scaleY(1.05);
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.mon-fitaya-conseil {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 10px;
    row-gap: 5px;
    justify-content: center;
    max-width: 800px;
    margin: auto;
}

.mon-fitaya-conseil img {
    width: 20px;
    height: 20px;
}

.mon-fitaya-conseil-titre {
    font-weight: 600;
    color: var(--color-2);
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
    font-size: 1.2em;
    white-space: nowrap;
    margin-top: -3px;
}

#mon-fitaya-conseil_content {
    font-style: italic;
}

.shortcut-thumbnail {
    max-width: 360px;
    width: 90vw;
    aspect-ratio: 16/9;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.shortcut-thumbnail-mask {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mask-color);
    width: 100%;
    height: 100%;
}

#mon_fitaya_programmes_list {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
    margin-top: -50px;
}

.mon_fitaya_programmes-container {
    overflow-x: hidden;
    width: 420px;
    padding-bottom: 145px;
}

.mon_fitaya_programmes-block {
    width: 400px;
    aspect-ratio: 16/9;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all .2s ease-out;
    align-items: center;
    justify-content: end;
    overflow: visible;
    margin-top: 50px;
}

.mon_fitaya_programmes-block-no-workout {
    justify-content: center;
}

.mon_fitaya_programmes-info {
    display: flex;
    flex-direction: column;
    margin-bottom: -145px;
    text-align: center;
    row-gap: 5px;
    align-items: center;
}

.mon_fitaya_programmes-info-seance {
    margin-bottom: -95px;
}

.mon_fitaya_programmes-info-program {
    margin-bottom: -135px;
}

.mon_fitaya_programmes-titre {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-2);
    font-size: 1.3em;
    margin-bottom: 0px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    max-width: 400px;
    text-overflow: ellipsis;
}

.mon_fitaya_programmes-seance {
    font-weight: 600;
    margin-bottom: 0px;
    display: block;
}

.mon_fitaya_seance_validee {
    display: flex;
    color: var(--color-2);
    align-items: center;
    column-gap: 5px;
    font-weight: 600;
    margin-top: 10px;
}

.mon_fitaya_seance_validee img {
    width: 25px;
}

.mon_fitaya_seance_validee-off {
    opacity: 0;
}

#programs_pending {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

#video_player {
    aspect-ratio: 16/9;
    background-color: var(--color-6);
}

.seance-stat {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.seance-stat div {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}

.seance-stat img {
    width: 30px;
}

.evolution-section-stat {
    position: relative;
    height: fit-content;
    overflow: hidden;
    background-color: var(--color-6);
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 10px;
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
}

.evolution-section-stat-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-color: var(--color-6);
    opacity: .5;
}

.evolution-section-text {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 50px;
}

.evolution-stat {
    font-size: 1.2em;
    font-weight: 200;
    text-align: center;
    color: var(--color-7);
    text-transform: uppercase;
}

.evolution-stat-number {
    font-weight: 600;
    font-size: 2.8em;
    white-space: nowrap;
}

.poids-objectif-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
}

.poids-objectif-line input[type="number"],
.poids-actuel input[type="number"],
.mensurations-form-line input[type="number"] {
    appearance: none;
    padding: 15px;
    width: 90%;
    border-radius: 30px;
    border: none;
    font-family: gotham, sans-serif;
    outline: none;
    background-color: var(--color-8);
    color: var(--color-5);
    font-size: 1.2em;
}

.poids-objectif-line input[type="number"] {
    width: 60px;
}

.poids-chart-line {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    row-gap: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.poids-actuel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: fit-content;
    row-gap: 10px;
}

.poids-actuel input[type="number"] {
    width: 60px;
}

.mensurations-line {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    row-gap: 20px;
}

.mensurations-suivi {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    row-gap: 10px;
    margin-right: 50px;
    max-height: 400px;
    overflow-y: auto;
}

.mensurations-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 10px;
}

.mensurations-form-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 600;
    column-gap: 5px;
    white-space: nowrap;
}

.mensurations-form-line input[type="number"] {
    width: 60px;
    font-size: 1em;
}

.evolution-photos-list {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    max-width: 100%;
    overflow-x: auto;
}

.evolution-photo {
    width: 122px;
    min-width: 122px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
    font-weight: 600;
    cursor: pointer;
}

.evolution-photo img {
    aspect-ratio: 9/16;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

#big_photo {
    max-width: 90%;
    max-height: 50vh;
    border-radius: 20px;
}

.programme-realise-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    row-gap: 10px;
}

.programme-realise-block {
    background-color: var(--color-8);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    min-width: 380px;
    width: 100%;
    row-gap: 10px;
    display: flex;
    flex-direction: column;
    height: 155px;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
}

.programme-realise-block-off {
    height: 50px;
}

.programme-realise-titre {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
}

.programme-realise-titre img {
    width: 30px;
    cursor: pointer;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
    transform-origin: center center;
}

.develop-hide {
    transform: rotateZ(180deg);
}

.programme-realise-pourcent {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
    column-gap: 10px;
    align-items: center;
}

.programme-realise-pourcent .progress {
    width: 200px;
    height: 15px;
    background-color: var(--color-4);
    border-radius: 20px;
    overflow: hidden;
}

.programme-realise-pourcent .progress-bar {
    height: 100%;
    background-color: var(--color-5);
    border-radius: 20px;
}

.programme-realise-data {
    display: flex;
    flex-direction: row;
    column-gap: .5em;
}

.programme-realise-data span {
    font-weight: 600;
}

.programme-realise-data img {
    width: 25px;
}

.programme-realise-photos {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
    overflow: hidden;
    width: 180px;
}

.programme-realise-photos-off {
    height: 0px;
}

.photo-start {
    aspect-ratio: 9/16;
    min-width: 60px;
    width: 60px;
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 0;
}

.photo-end {
    aspect-ratio: 9/16;
    min-width: 80px;
    width: 80px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: -4px 0 4px 0 rgba(0, 0, 0, 0.25);
    z-index: 1;
    margin-left: -15px;
}

.programme-realise-reset {
    width: 100%;
    text-align: right;
    margin-top: -35px;
}

.programme-realise-reset img {
    cursor: pointer;
}

#info input[type="file"] {
    display: none;
}

.profil-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
}

.profil-picture {
    width: 150px;
    min-width: 150px;
    height: 150px;
    background-color: var(--color-2);
    background-image: url(img/profil.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.profil-picture img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.profil-name {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.profil-form {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}

.profil-form-line {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    align-items: center;
    column-gap: 20px;
    margin: auto;
    width: 100%;
    justify-content: space-between;
    text-align: right;
}

.profil-form-line input {
    width: 100%;
    min-width: 300px;
}

.profil-genre-line {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}

.profil-genre-choice {
    color: var(--color-2);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all .3s cubic-bezier(0, 1, 1, 1);
}

.genre {
    width: 50px;
    height: 50px;
    background-color: var(--color-2);
    background-position: center center;
    background-size: 70% 70%;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.genre-off {
    opacity: .2;
}

.profil-line .subscription-block {
    white-space: nowrap;
}

.loading-icon {
    aspect-ratio: 1/1;
    width: 15px;
    animation: loading-icon-animation .5s ease-in-out infinite;
    overflow: hidden;
    transition: all .1s ease-out;
}

.loading-icon-big {
    width: 25px !important;
}

.loading-icon-off {
    width: 0;
}

@keyframes loading-icon-animation {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

.recette-view {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    width: 95%;
    max-width: 800px;
}

.recette-illustration {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 20px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.recette-illustration img {
    width: 25px;
    margin-top: 10px;
    margin-left: 10px;
    cursor: pointer;
}

.recette-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 5px;
    align-items: flex-start;
}

.recette-prep-cuiss {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    white-space: nowrap;
    column-gap: 50px;
}

.recette-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    column-gap: 50px;
}

.recette-info-line {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
}

.recette-info-line img {
    width: 25px;
}

.recette-section-portion {
    justify-content: center;
    column-gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.recette-section-portion input[type="number"] {
    font-family: gotham, sans-serif;
    padding: 10px 20px;
    background-color: var(--color-8);
    border: none;
    border-radius: 20px;
    width: 30px;
    transition: all .2s ease-in-out;
    appearance: none;
    outline: none;
    color: var(--color-2);
    border: solid 1px var(--color-7);
    font-weight: 600;
    font-size: 1.1em;
}

.recette-section-preparation {
    align-items: flex-start;
}

.recette-ingredients {
    background-color: var(--color-8);
    padding: 20px;
    border-radius: 20px;
}

.recette-preparation {
    padding: 20px;
}

.plan-section-description {
    align-items: flex-start;
}

.plan-illustration {
    object-fit: cover;
    aspect-ratio: 2/3;
    border-radius: 20px;
    max-width: 250px;
    width: 90%;
}

.plan-description {
    line-height: 2em;
}

.plan-section-jours {
    align-items: flex-start
}

.plan-jours {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    background-color: var(--color-8);
    overflow-y: auto;
    overflow-x: visible;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    align-items: flex-start;
    max-height: 495px;
    white-space: nowrap;
    width: 250px;
}

.plan-semaine {
    color: var(--color-5);
    font-weight: 600;
    text-transform: uppercase;
}

.plan-courses {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--color-2);
}

.plan-jour {
    background-color: var(--color-9);
    padding: 8px 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: .9em;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.plan-jour-current {
    background-color: var(--color-2);
    color: var(--color-7);
}

.plan-jour-done {
    background-color: var(--color-5);
    color: var(--color-7);
}

.plan-jour-done::after {
    content: url(img/done.svg);
    margin-left: 5px;
    vertical-align: middle;
}

.plan-du-jour {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}

.plan-conseil {
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--color-9);
    padding: 10px 20px;
    border-radius: 20px;
}

.plan-recettes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
}

.recette-block-moment {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2em;
    color: var(--color-2);
}

.collation-image {
    width: 150px;
    aspect-ratio: 2 / 3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
}

.collation-titre {
    font-weight: 600;
    text-transform: uppercase;
}

/* -------------------------------- */
/* ---------- CALENDRIER ---------- */
/* -------------------------------- */

#calendar {
    border: none !important;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background-color: var(--color-7) !important;
    font-family: gotham, sans-serif;
}

.homepage-section-line #calendar {
    width: 900px;
}

.homepage-section-column #calendar {
    width: 500px;
}

.ib-hamburger,
.left-divider-line,
.ib-pin,
.ib-arrow-right-full-line,
.ib-plus,
.left-divider-line-events,
.ib-refresh {
    display: none !important;
}

.title-bar {
    background-color: var(--color-7) !important;
}

.header-days,
.row-cells {
    background-color: var(--color-7) !important;
    color: var(--color-2) !important;
    border: none !important;
}

.year-dropdown-button {
    background-color: var(--color-7) !important;
    border: none !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.cell {
    border: none !important;
    min-width: 40px;
}

.today {
    aspect-ratio: 1/1 !important;
    padding: 5px !important;
    min-width: 20px;
}

.first-day {
    background-color: transparent !important;
}

.event {
    width: 100%;
    white-space: normal !important;
    font-weight: 600;
    border-left: none !important;
    background-color: var(--color-7) !important;
    color: var(--color-2) !important;
    cursor: pointer;
}

div.calendar div.drag-over {
    background-color: var(--color-8) !important;
}

.years-drop-down {
    border: none !important;
}

.ib-arrow-left-full,
.ib-arrow-right-full {
    border: none !important;
    background-image: url(img/calendar-left.svg) !important;
    height: 16px;
    width: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.ib-arrow-right-full {
    transform: rotateY(180deg);
}

.calendar-dialog,
.disabled-background {
    display: none !important;
}

.ib-search {
    display: none !important;
}

div.calendar div.full-month-view div.row-cells div.cell div.event {
    background-color: var(--color-8) !important;
    border-radius: 10px;
    margin-left: -3px;
    color: var(--color-5) !important;
}

.event-day {
    background-color: var(--color-8);
    aspect-ratio: 1/1 !important;
    padding: 5px !important;
    min-width: 20px;
}

.month-name {
    display: none !important;
}

.selected-date {
    background-color: var(--color-4) !important;
    border-radius: 20px;
}

input[type="range"] {
    appearance: none;
    background-color: var(--color-8);
    background: linear-gradient(90deg, var(--color-8) 0%, var(--color-4) 100%);
    border-radius: 20px;
    width: 30vw;
    max-width: 800px;
    display: flex;
    accent-color: var(--color-2);
}

input[type="range"]::-webkit-slider-thumb,
input[type="range"]::-moz-range-thumb {
    background-color: var(--color-2);
}

.error {
    width: 100%;
    text-align: center;
}

.delete {
    display: none !important;
}

#pagination {
    display: flex;
    column-gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center
}

#pagination a {
    height: 25px;
    width: 25px;
    border-radius: 20px;
    text-align: center;
    line-height: 180%;
}

#pagination a:hover {
    background-color: var(--color-9);
}

.pagination-current {
    font-weight: 600;
    background-color: var(--color-2);
    color: var(--color-7);
    cursor: default;
}

.pagination-current:hover {
    background-color: var(--color-2) !important;
    color: var(--color-7) !important;
}

/* -------------------------------- */
/* ---------- RESPONSIVE ---------- */
/* -------------------------------- */

@media all and (max-width: 1700px) {

    .homepage-section,
    .homepage-section-line,
    #programmes_content .homepage-section-line,
    #liste_complete_programmes_content .homepage-section {
        width: 80%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .nutrition-image {
        width: 200px;
    }

    .tous_les_programmes_entete {
        width: 105%;
    }
}

@media all and (max-width: 1500px) {

    .homepage-section,
    .homepage-section-line,
    #programmes_content .homepage-section-line,
    #liste_complete_programmes_content .homepage-section {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        min-width: 0px;
    }

    #menu {
        column-gap: 20px;
        font-size: .9em;
    }

    #menu_content {
        column-gap: 3px;
    }

    #menu_options {
        column-gap: 5px;
    }

    .menu-item {
        padding: 10px 10px;
    }

    .menu-logo {
        margin-left: 20px;
    }

    footer {
        font-size: .75em;
    }

    .tous_les_programmes_entete {
        width: 95%;
    }

}

@media all and (max-width: 1000px) {
    body {
        font-size: .8em;
    }

    /* ---------- MENU MOBILE ---------- */
    #menu_mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 0px;
        z-index: 200;
        position: fixed;
        top: 0;
    }

    .menu-mobile-logo-link {
        margin-top: 3px;
        width: 100%;
        margin-left: 20px;
        text-align: center;
    }

    #menu_mobile_burger {
        margin-right: 10px;
    }

    #menu_mobile_header {
        width: 100vw;
        height: 50px;
        background: linear-gradient(90deg, var(--menu-gradiant-1) 0%, var(--menu-gradiant-1) 50%, var(--menu-gradiant-2) 100%);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100vw;
        height: 50px;
        align-items: center;
        backdrop-filter: blur(5px);
    }

    #menu_mobile_content {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--menu-gradiant-2);
        width: 100vw;
        font-weight: 600;
        text-transform: uppercase;
        row-gap: 10px;
        transform-origin: center top;
        transition: all .2s cubic-bezier(0, .5, .3, 1);
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    #menu_mobile_options {
        padding: 10px 0;
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 500px;
        justify-content: space-around;
    }

    .menu-mobile-off {
        transform: scaleY(0);
        opacity: 0;
    }

    h1 {
        margin-top: 20px;
        font-size: 1.75em;
        max-width: 85%;
        text-align: center;
    }

    h2 {
        text-align: center;
    }

    #homepage_slider {
        margin-top: 50px;
    }

    .homepage-section,
    .homepage-section-line,
    #programmes_content .homepage-section-line,
    #liste_complete_programmes_content .homepage-section {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    .homepage-section-column {
        align-items: center;
        width: 90%;
    }

    .subscription-offers {
        flex-direction: column;
        align-items: center;
        row-gap: 50px;
        margin-bottom: 50px;
    }

    .subscription-block-promo {
        margin-top: -120px;
        margin-left: 270px;
    }

    .coach-container,
    .programme-slider-content,
    .review-container {
        width: 90vw;
        overflow-x: scroll;
    }

    .next-arrow,
    .previous-arrow {
        display: none;
    }

    #homepage_slider_arrows .next-arrow,
    #homepage_slider_arrows .previous-arrow {
        display: block;
    }

    #menu {
        display: none;
    }

    footer {
        flex-direction: column;
        row-gap: 20px;
        padding: 10px 10px;
        font-size: 1em;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .footer-links a {
        white-space: nowrap;
    }

    .homepage-video-pack {
        margin-left: -50px;
        margin-top: 50px;
    }

    .homepage-video-background {
        width: 350px;
        height: 350px;
    }

    .homepage-video {
        margin-top: -50px;
        margin-left: -270px;
    }

    .homepage-review {
        flex-direction: column;
    }

    #back {
        margin: 70px 0px 0px 10px;
    }

    .margin-back {
        margin-top: -53px !important;
    }

    #filtre_container,
    #popup_container {
        background-color: var(--color-7);
        align-items: flex-start;
        margin-top: 50px;
        position: fixed;
        height: 100%;
        top: 0;
        overflow-y: scroll;
    }

    #filtre_form,
    #popup_form {
        box-shadow: none;
        max-height: none;
    }

    .filtre-close {
        margin-right: -85%;
        position: fixed;
    }

    #filtre_button {
        margin-bottom: 30px;
    }

    .nutrition-section,
    .nutrition-section-line {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        column-gap: 20px;
    }

    .nutrition-list {
        width: 100%;
        overflow-x: scroll;
        justify-content: flex-start;
    }

    #nutrition_content .homepage-section-column img {
        width: 80vw;
    }

    .classic-list {
        justify-content: center;
    }

    .programme-details {
        max-width: 100%;
    }

    .programme-details-picture {
        width: 80%;
    }

    .programme-details h1 {
        margin-top: 0;
    }

    .programme-info {
        align-items: flex-start;
    }

    .popup-style {
        box-shadow: none;
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    .connexion-label {
        width: fit-content;
        text-align: center;
    }

    .connexion-socials {
        box-shadow: none;
        width: 100vw;
        padding: 30px 0;
        border-radius: 0;
    }

    .connexion-section-line {
        flex-direction: row;
    }

    #mon_fitaya_content {
        margin-top: 50px;
    }

    .mon-fitaya-conseil {
        width: 90%;
        flex-direction: column;
    }

    .mon_fitaya_programmes-container {
        overflow-x: scroll;
        width: 90vw;
    }

    #calendar {
        border: none !important;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        background-color: var(--color-7) !important;
        font-family: gotham, sans-serif;
    }

    .homepage-section-column #calendar,
    .homepage-section-line #calendar {
        width: 95vw;
    }

    .homepage-section-line div.calendar div.full-month-view div.row-cells div.cell div.event::before,
    .homepage-section-column div.calendar div.full-month-view div.row-cells div.cell div.event::before {
        width: 30px;
        height: 30px;
        margin-top: -39px;
        margin-left: 29%;
    }

    .today {
        min-width: 15px;
    }

    .evolution-section-text {
        flex-direction: column;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .poids-chart-line {
        flex-direction: column;
    }

    .mensurations-line {
        flex-direction: column;
    }

    .mensurations-suivi {
        margin-right: 0;
    }

    .programme-realise-line {
        flex-direction: column;
    }

    .programme-realise-block {
        min-width: 0;
        width: 80vw;
    }

    .evolution-photos-list {
        overflow-x: scroll;
    }

    .profil-line {
        flex-direction: column;
    }

    .profil-form-line {
        flex-direction: column;
    }

    .recette-prep-cuiss {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .recette-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .recette-tags {
        justify-content: center;
        width: 100%;
    }

    .recette-ingredients {
        width: 90%;
    }

    .plan-jours {
        flex-direction: row;
        align-items: center;
        column-gap: 20px;
        overflow-x: auto;
        width: 95%;
    }

    .seance-info {
        align-items: flex-start;
    }

    .review-block {
        width: 75vw;
    }
}

@media all and (max-width: 700px) {

    .homepage-section-line div.calendar div.full-month-view div.row-cells div.cell div.event::before,
    .homepage-section-column div.calendar div.full-month-view div.row-cells div.cell div.event::before {
        width: 30px;
        height: 30px;
        margin-left: 16%;
        margin-top: -35px;
    }
}