:root {
    --background-color: #e6eded;
    --text-color: #333;
    --theme-blue: rgb(0, 154, 209);
    --theme-purple: #B81374;
    --theme-dark-blue: #203349;
    --theme-grey: #9c9b9b;
    --base-font-size: 30px;
    --font-size-2: calc(var(--base-font-size) * (33 / 41));
    --font-size-3: calc(var(--base-font-size) * (25 / 41));
    --font-size-4: calc(var(--base-font-size) * (28 / 41));
    --font-size-5: calc(var(--base-font-size) * (21.3 / 41));
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-size: 1.1em;
}

/*
div.lyra-header_platforms.lyra-header_platforms,
div.lyra-header_message {
    display: none;
}
*/

.banner {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    color: var(--theme-purple);
    background-color: var(--background-color);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: var(--base-font-size);
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-container,
.banner {
    padding-left: 20px;
    padding-right: 20px;
    
}

.page-container {
    max-width: 500px;
    margin: 0 auto;
}

.page-container>div {
    opacity: 0;
    /* Start initially invisible */
    animation: fadeIn 1s forwards;
    /* Apply fade-in animation */
}

.button-foward,
.button-backward,
.button {
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    margin: 15px 0px;
}

.button-arrow-foward.thin-margin,
.button-arrow-backward.thin-margin {
    margin: 5px 0px;
    padding: 15px 30px;
}

.button-arrow-foward.top-margin,
.button-arrow-backward.top-margin {
    margin-top: 30px;
}

.button-arrow-foward.bottom-margin,
.button-arrow-backward.bottom-margin {
    margin-bottom: 30px;
}

.button-foward {
    float: right;
}

.button-backward {
    float: left;
}

.button-color-dark-blue {
    color: white;
    background-color: var(--theme-dark-blue);
    border: solid 2px var(--theme-dark-blue);
    transition-duration: 0.5s;
    position: relative;
    /* Ensures that the pseudo-element can be positioned relative to the button */
}

.button-color-dark-blue:hover {
    background-color: white;
    color: var(--theme-dark-blue);
}

.button-color-grey {
    color: white;
    background-color: var(--theme-grey);
    border: solid 2px var(--theme-grey);
    transition-duration: 0.5s;
    position: relative;
    /* Ensures that the pseudo-element can be positioned relative to the button */
}

.button-color-grey:hover {
    background-color: white;
    color: var(--theme-grey);
}

.button-color-purple {
    color: white;
    background-color: var(--theme-purple);
    border: solid 2px var(--theme-purple);
    transition-duration: 0.5s;
    position: relative;
    /* Ensures that the pseudo-element can be positioned relative to the button */
}

.button-color-purple:hover {
    background-color: white;
    color: var(--theme-purple);
}

.button-color-blue {
    color: white;
    background-color: var(--theme-blue);
    border: solid 2px var(--theme-blue);
    transition-duration: 0.5s;
    position: relative;
    /* Ensures that the pseudo-element can be positioned relative to the button */
}

.button-color-blue:hover {
    background-color: white;
    color: var(--theme-blue);
}

.button-border-purple {
    color: var(--theme-purple);
    background-color: white;
    border: solid 1px var(--theme-purple);
    transition-duration: 0.5s;
    position: relative;
    /* Ensures that the pseudo-element can be positioned relative to the button */
}

.button-border-purple:hover {
    background-color: var(--theme-purple);
    color: white;
}

.button-border-black {
    color: black;
    background-color: white;
    border: solid 1px black;
    transition-duration: 0.5s;
    position: relative;
    /* Ensures that the pseudo-element can be positioned relative to the button */
}

.button-border-black:hover {
    background-color: black;
    color: white;
}

.button-border-blue {
    color: var(--theme-blue);
    background-color: white;
    border: solid 2px var(--theme-blue);
    transition-duration: 0.5s;
    position: relative;
    /* Ensures that the pseudo-element can be positioned relative to the button */
}

.button-border-blue:hover {
    background-color: var(--theme-blue);
    color: white;
}

/* New class to add the '›' character at the end of elements */
.button-arrow-foward::after {
    content: '›';
    font-size: 25px;
    position: absolute;
    right: 10px;
    /* Adjust the position as needed */
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
    /* Ensures the arrow has the same color as the parent's text */
}

.button-arrow-backward::before {
    content: '‹';
    font-size: 25px;
    position: absolute;
    left: 10px;
    /* Adjust the position as needed */
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
    /* Ensures the arrow has the same color as the parent's text */
}


h2 {
    padding: 10px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    /* Allows positioning of the pseudo-element */
    font-weight: 300;
    text-transform: uppercase;
}

.page-container  h2 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    color: black;
    text-align: left;
    margin-bottom: 0;
    border-bottom: solid 1px black;
    padding: 0 0 10px 0;
    font-size: var(--font-size-2);
}

.page-container h4 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    color: var(--theme-purple);
}

/*
.page-container h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 8px;
    background-color: var(--theme-purple);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
*/

ul:not(.simple-list), ol:not(.simple-list) {
    counter-reset: custom-counter;
    list-style-type: none;
    padding: 0;
    margin: 0;
}



.page-container ul:not(.simple-list) > li, .page-container ol > li {
    padding: 10px 0;
    border-bottom: solid 1px black;
    counter-increment: custom-counter;
}

ul:not(.simple-list) li::before, ol li::before {
    content: counter(custom-counter) ' ▪';
    margin-right: 8px;
    color: var(--theme-purple);
    font-weight: bold;
}

ul.cheked.cheked li {
    border-bottom: solid 0px transparent;
}

ul.cheked li::before {
    content: '✓';
    display: inline-block;
    width: unset;
    height: unset;
    background-color: transparent;
    /* Set the color of the bullet points here */
    margin-right: 8px;
    /* Adjust based on your needs */
    vertical-align: middle;
}

li {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* simple list */

.simple-list {
  list-style: none;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border-collapse: collapse;
  width: fit-content;
}

.simple-list li {
  padding: 8px 0;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
}

.simple-list li:last-child {
  border-bottom: none;
}

.simple-list img {
  margin-right: 10px;
  vertical-align: middle;
}

.simple-list a {
  color: #004aad; /* bleu comme dans l’image */
  text-decoration: none;
  font-weight: bold;
}

/* -- simple list -- */

.side-by-side {
    display: flex;
    align-items: center;
    /* Aligne les items verticalement au centre, facultatif */
}

.button-section {
    display: flex;
    justify-content: space-around;
    font-size: 15px;
    /* Aligne les boutons avec un espacement autour */
}

.button-container {
    text-align: center;
    flex-grow: 1;
    width: 100%;
    padding: 5px;
    font-weight: 100;
    /* Centre le texte à l'intérieur de chaque conteneur */
}

.button-container>.button.fixed-height {
    height: 50px;
}


.select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select select {
    width: 100%;
    padding: 10px 30px 10px 10px;
    border-radius: 5px;
    color: #37474f;
    font-size: 16px;
    transition: border-color 0.3s, background-color 0.3s;
    border: solid 2px #b81374;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    position: relative;
    z-index: 1;
    background-color: white;
}

.select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    color: black;
    font-size: 25px;
    background-image: url(data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-chevron-down%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M6%209l6%206l6%20-6%22%20/%3E%3C/svg%3E);
    background-size: contain;
    background-repeat: no-repeat;
}

.bottom-bar.bottom-bar.bottom-bar {
    border-top: solid 1px black;
}

@media (min-width: 1000px) {

    .page-container,
    .banner {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 1200px) {

    .page-container,
    .banner {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width: 1600px) {

    .page-container,
    .banner {
        padding-left: calc(100% / 2 - 1400px / 2);
        padding-right: calc(100% / 2 - 1400px / 2);
    }
}

@media (max-width: 700px) {

    .button-foward,
    .button-backward,
    .button {
        margin: 5px 0px;
    }

    .button-container>.button.fixed-height {
        height: 50px;
        padding: 10px 10px;
    }

    .button-row {
        padding: 10px 10px;
    }

    .banner {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .bottom-bar.bottom-bar.bottom-bar {
        position: fixed;
        left: 0;
        right: 0;
        padding: 10px;
        bottom: 0;
        background-color: white;
        /*border-top: solid 1px black;*/
        /*box-shadow: 0px -3px 7px 0 rgb(0 0 0 / 10%);*/
    }

    .lyra-header_middle_user,
    .lyra-header_middle_search-bar,
    .lyra-header_top {
        display: none !important;
    }

    .lyra-header_middle {
        display: inline-block !important;
    }

    .lyra-header {
        text-align: center;
    }

    h2 {
        margin-top: 10px;
    }

    .page-container {
        position: fixed;
        top: 285px;
        bottom: 100px;
        left: 0;
        right: 0;
        overflow-y: auto;
    }
}

@media (max-width: 360px) {
    .banner {
        font-size: 15px;
    }
}

.page-break {
    break-after: always;
}

@media print {

    .banner {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .bottom-bar.bottom-bar.bottom-bar {
        display: none !important;
    }

    .lyra-header_middle_user,
    .lyra-header_middle_search-bar,
    .lyra-header_top {
        display: none !important;
    }

    .lyra-header_middle {
        display: inline-block !important;
    }

    .lyra-header {
        text-align: center;
    }

    h2, h1 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .button,
    .button-foward,
    .button-backward,
    .button-color-purple,
    .button-color-blue,
    .button-border-purple,
    .button-border-blue {
        display: none !important;
    }

    .lyra-header .lyra-header_middle {
        padding-top: 0;
    }

    .no-print {
        display: none !important;
    }


}


@keyframes fadeIn {
    to {
        opacity: 1;
        /* End the animation with full opacity */
    }
}