@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
h1 {
    /* font-size: 3rem; */
}
h2 {
    /* font-size: 1.75rem; */
}
h3 {
    /* font-size: 1.25rem; */
}
h4 {
    /* font-size: 0.875rem; */
}

/* h1,
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: #222222;
} */

.margin-top {
    margin-top: 6rem;
}

.large-top {
    margin-top: 8rem;
}

.large-top2 {
    margin-top: 11rem !important;
}

.bg-color {
    background-color: var(--color-white) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
}

/* width */

::-webkit-scrollbar {
    width: 0.5rem;
}

/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #ec773f;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #ec773f;
}

a,
a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 0;
    color: #222222;
}

.p--skip {
    color: #ffffff;
}

.p--skip--success {
    color: #05b84d;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

button {
    border: none;
    cursor: pointer;
    background-color: none;
    /* font-size: 0.875rem; */
    font-weight: 700;
    line-height: 100%;
}

button:focus {
    outline: none;
}

input:focus {
    outline: none;
}

.custom--input {
    border: 1px solid var(--color-edges);
    border-radius: 24px;
    padding: 4px calc(var(--spacing-unite) * 4);
    margin-left: calc(var(--spacing-unite) * 2);
    width: 100%;
    height: calc(var(--spacing-unite) * 8);
    color: var(--color-tertiary);
}

.custom--input--product {
    border: 1px solid #dddddd;
    border-radius: 24px;
    padding: 1rem;
    width: 100%;
}

.main-content {
    padding-left: 240px;
    /* padding-bottom: 10rem; */
}

@media only screen and (max-width: 62em) {
    .main-content {
        padding-left: 0;
    }
}

.hamburger-menu {
    position: fixed;
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    background-color: #ec773f;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    cursor: pointer;
    padding: 1rem;
    display: none;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 62em) {
    .hamburger-menu {
        display: inline-block;
    }
}

.hamburger-menu img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar {
    /* width: 240px; */
    /* min-height: 100%; */
    /* position: fixed; */
    /* z-index: 200; */
    /* top: 0; */
    /* left: 0; */
    /* background-color: #1a9ab1; */
    /* padding: 4rem 2rem 2rem; */
    /* transition: all 0.6s ease-in-out; */
    /* display: flex; */
    /* justify-content: space-between; */
    /* flex-direction: column; */
    /* overflow: auto; */

    /* box-sizing: border-box; */
    /* position: fixed; */
    /* width: 240px; */
    /* left: 0px; */
    /* top: 0px; */
    /* bottom: 0px; */
    /* background: var(--color-white); */
    /* border-right: 1px solid var(--color-edges); */
}

@media only screen and (max-width: 62em) {
    .sidebar {
        left: -100%;
    }
}

.sidebar .sidebar-menu {
    margin-top: 2rem;
}

.sidebar .sidebar-menu ul li .active--nav {
    color: #ec773f;
}

.sidebar .sidebar-menu ul li .active--nav svg {
    fill: #ec773f;
}

.sidebar .sidebar-menu ul li a {
    color: var(--color-white);
    font-size: 1.6rem;
    display: block;
    padding: 1.5rem 1.5rem;
    text-transform: capitalize;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.sidebar .sidebar-menu ul li a svg {
    fill: var(--color-white);
    transition: all 0.3s ease-in-out;
}

.sidebar .sidebar-menu ul li a:hover {
    color: #ec773f;
}

.sidebar .sidebar-menu ul li a:hover svg {
    fill: #ec773f;
}

.sidebar .sidebar-menu ul li a .icon-menu {
    width: 2rem;
    height: 2rem;
    margin-right: 2rem;
}

.sidebar .sidebar-menu ul li a .icon-menu svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar .sidebar-menu ul li span {
    margin-top: 0.6rem;
    font-weight: 600;
}

.sidebar .logoBox {
    cursor: pointer;
    padding-left: 1.3rem;
}

.sidebar .logoBox .image-logo {
    height: 5rem;
}

.sidebar .logoBox .logo-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-left: 1rem;
    text-transform: capitalize;
}

@media only screen and (max-width: 62em) {
    .sidebar .logoBox .logo-title {
        font-size: 2rem;
    }
}

.sidebar .close-menu {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

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

@media only screen and (max-width: 62em) {
    .sidebar .close-menu {
        display: block;
    }
}

.sidebar--active {
    left: 0 !important;
}

@media only screen and (max-width: 62em) {
    .sidebar--responsive {
        left: -100% !important;
    }
}

.button-deconnexion {
    padding: 28px;
}

.button--deconnexion button {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #ec773f;
    padding: 1rem;
    text-align: center;
    width: 100%;
    border-radius: 3rem;
}

.button--deconnexion span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.btn-double {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 24px;
}

.btn--orange {
    height: calc(var(--spacing-unite) * 8);
    padding: calc(var(--spacing-unite) * 4) calc(var(--spacing-unite) * 4);
    border-radius: calc(var(--spacing-unite) * 4);
    background-color: var(--color-primary);
    /* border: 2px solid #EC773F; */
    transition: all 0.3s ease-in-out;
    color: var(--color-white);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--orange:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--orange:hover a {
    color: var(--color-primary);
}

.btn--orange a {
    color: var(--color-white);
}

.btn--orange_sad {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background-color: #ffd9ca;
    border: 2px solid #ffd9ca;
}

.btn--green {
    height: calc(var(--spacing-unite) * 8);
    padding: calc(var(--spacing-unite) * 4) calc(var(--spacing-unite) * 4);
    border-radius: calc(var(--spacing-unite) * 4);
    background-color: var(--color-secondary);
    /* border: 1px solid var(--color-secondary); */
    transition: all 0.3s ease-in-out;
    color: var(--color-white);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--green:hover {
    background-color: var(--color-white);
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn--green:hover a {
    color: var(--color-secondary);
}

.btn--green a {
    color: var(--color-white);
}

.btn--premium {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    background-color: #333333;
    padding: 1rem;
    text-align: center;
    width: 60%;
    border-radius: 2rem;
    margin: 2rem 0 1rem;
}

.btn--secondary {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background-color: #f1f1f1;
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease-in-out;
    color: #333333;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn--secondary:hover {
    background-color: var(--color-white);
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn--secondary::placeholder {
    font-size: 0.5em;
    color: red;
}

.btn--secondary span {
    font-size: 1.5rem;
    padding: 0.5rem;
}

.user--box ul {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.user--box ul li {
    margin-left: 24px;
}

.user--box ul li:first-child {
    /* margin-right: 5rem; */
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.user--box ul li:first-child:hover .notif--content {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 48em) {
    .user--box ul li:first-child {
        /* margin-right: 1.5rem; */
    }
}

.user--box__card {
    /* padding: 1rem; */
    /* border-radius: 0.75rem; */
    /* border: 1px solid var(--color-edges); */
    display: flex;
    align-items: center;
}

.user--box__card--profil {
    height: 5rem;
    width: 5rem;
}

.user--box__card--profil img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user--box__navbar--profil img {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
}

.user--box__profil img {
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
}

.user--box__profil_ img {
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
}

@media only screen and (max-width: 36em) {
    .user--box__card--profil img {
        height: 2rem;
        width: 2rem;
    }
    .user--box__navbar--profil img {
        height: 4rem;
        width: 4rem;
        border-radius: 50%;
    }
    .user--box__profil img {
        height: 15rem;
        width: 15rem;
        border-radius: 50%;
    }
    .user--box__profil_ img {
        height: 15rem;
        width: 15rem;
        border-radius: 50%;
    }
}

.user--box__card--info {
    margin-left: 1.5rem;
}

.user--box__card--info h3 {
    margin-bottom: 0;
}

@media only screen and (max-width: 36em) {
    .user--box__card--info h3 {
        font-size: var(--font-size);
    }
}

.user--box__card--info p {
    font-size: 1.3rem;
}

@media only screen and (max-width: 36em) {
    .user--box__card--info p {
        font-size: 1.1rem;
    }
}

.carousel--dash__card {
    padding: 2rem;
    border-radius: 0.75rem;
}

.uniskip--commercial__card {
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.carousel--dash__card--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.uniskip--commercial {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.carousel--dash__card--title .svg--carousel {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel--dash__card--title h4 {
    text-transform: capitalize;
    font-size: 1.8rem;
}

.carousel--dash__card--body h1 {
    font-weight: bold;
    margin-bottom: 0;
}

.carousel--dash__card--body h1 span {
    font-size: 1.2rem;
}

.carousel--dash__card--body p {
    font-size: 1.3rem;
}

.card--white {
    background-color: white;
}

.card--grey {
    background-color: #f6f6f6;
}

.card--grey--active {
    background-color: #fff4ef;
    border: 1px solid #ec773f;
    font-size: 1.6rem;
}

.card--grey:hover {
    background-color: #fff4ef;
    border: 1px solid #ec773f;
    /* font-size:1.6rem; */
}

.card--white .svg--carousel {
    background-color: #eeeeee;
}

.card--blue {
    background-color: #c8eeff;
}

.card--blue .svg--carousel {
    background-color: var(--color-white);
}

.card--orange {
    background-color: #ffe4d8;
}

.card--orange .svg--carousel {
    background-color: #ec773f;
}

.card--sortie {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.card--sortie__card {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.card--sortie__card canvas {
    height: 20rem;
    width: 100%;
}

.card--sortie img {
    height: 20rem;
    width: 100%;
    object-fit: contain;
}

.card--freemium {
    min-height: 20rem;
    background-image: url(../img/Rectangle-208.png);
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.card--freemium .free {
    padding: 1rem;
    /* background-color: #0f0f0f; */
    margin-top: 1rem;
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    -webkit-border-radius: 0.75rem;
    -moz-border-radius: 0.75rem;
    -ms-border-radius: 0.75rem;
    -o-border-radius: 0.75rem;
}

.card--freemium__text h2 {
    color: var(--color-white);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.card--freemium__text p {
    color: var(--color-white);
    font-size: 1.3rem;
}

.lakess--dasch__card {
    padding: 2rem;
    border: 1px solid var(--color-edges);
    border-radius: calc(var(--spacing-unite) * 2);
    /* background: var(--color-white); */
    margin: 1rem 0;
    height: 15rem;
    display: flex;
    /* align-items: normal; */
    justify-content: center;
    flex-direction: column;
}

.multipay--dasch__card {
    padding: 2rem;
    border: 1px solid var(--color-edges);
    border-radius: 0.75rem;
    background: var(--color-white);
    margin: 1rem 0;
    height: 15rem;
}

.lakess--dasch__card--body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.multipay--dasch__card--body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}

.lakess--dasch__card--body h1 {
    /* font-weight: bold; */
    margin-bottom: 0;
    /* font-size: 1.6rem; */
}

.multipay--dasch__card--body h1 {
    font-weight: bold;
    margin-bottom: 0;
}

.lakess--dasch__card--body h1 span {
    font-size: 1.2rem;
}

.multipay--dasch__card--body h1 span {
    font-size: 1rem;
}

.lakess--dasch__card--body p {
    font-size: 1.1rem;
}

.multipay--dasch__card--body p {
    font-size: 1.3rem;
}

.lakess--moins {
    height: 6rem;
    width: 6rem;
    background-color: #fad7d7;
    text-align: center;
    border-radius: 50%;
    line-height: 6rem;
}

.lakess--moins p {
    color: #ee0507;
    font-size: 1.2rem;
}

.lakess--plus {
    height: 6rem;
    width: 6rem;
    background-color: #dcf3e5;
    text-align: center;
    border-radius: 50%;
    line-height: 6rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.lakess--plus p {
    color: #05b84d;
    font-size: 1.2rem;
}

.skipout--badge--success {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 1em;
    line-height: 1;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4rem;
    background-color: #05b84d;
    -webkit-border-radius: 4rem;
    -moz-border-radius: 4rem;
    -ms-border-radius: 4rem;
    -o-border-radius: 4rem;
}

.skipout--badge--danger {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 1em;
    line-height: 1;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4rem;
    background-color: #ee0507;
    -webkit-border-radius: 4rem;
    -moz-border-radius: 4rem;
    -ms-border-radius: 4rem;
    -o-border-radius: 4rem;
}

.lakess--zero {
    height: 6rem;
    width: 6rem;
    background-color: #dcf;
    text-align: center;
    border-radius: 50%;
    line-height: 6rem;
}

.lakess--zero p {
    color: #05b;
    font-size: 1.2rem;
}

.card--skipblue {
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
}

.card--skippink {
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
}

.card--EV__skip {
    padding: 2rem;
    /* background-color: var(--color-white); */
    border-radius: 8px;
}

.card--EV__skip__card {
    background-color: #eefaff;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    height: 25rem;
}

.card--EV__skip__card .user--box__card {
    border: none !important;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
}

@media only screen and (max-width: 36em) {
    .card--EV__skip__card .user--box__card img {
        width: 3rem !important;
        height: 3rem;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 36em) {
    .card--EV__skip__card .user--box__card--info {
        text-align: center;
        margin: 0;
    }
}

@media only screen and (max-width: 36em) {
    .card--EV__skip__card .user--box__card {
        display: block;
    }
}

.card--EV__skip__card .search {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 48em) {
    .card--EV__skip__card .search {
        display: block;
    }
}

.card--EV__skip__card .search input {
    width: 40rem;
    border: none;
    background: #aee5ff;
    border-radius: 24px;
    padding: 0.5rem 1rem;
}

@media only screen and (max-width: 48em) {
    .card--EV__skip__card .search input {
        width: 85%;
    }
}

.card--EV__skip__form {
    margin-top: 4rem;
}

.card--EV__skip__form .input--group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

@media only screen and (max-width: 48em) {
    .card--EV__skip__form .input--group {
        display: block;
    }

    .file_preview {
        max-width: 100%;
        padding: 1rem;
    }
}

.card--EV__skip__form .input--group input {
    width: 40rem;
    border: none;
    border: 1px solid #dddddd;
    border-radius: 24px;
    padding: 1rem;
}

.card--EV__skip__form .text--underinput {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card--EV__skip__form .input--group select {
    width: 40rem;
    border: 1px solid #dddddd;
    border-radius: 24px;
    padding: 1rem;
}

.form--input .input--group select {
    /* width: 40rem; */
    width: 100% !important;
    border: 1px solid #dddddd;
    border-radius: 24px;
    padding: 1rem;
}

.card--EV__skip__form .input--group textarea {
    width: 40rem;
    border: 1px solid #dddddd;
    border-radius: 24px;
    padding: 1rem;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

@media only screen and (max-width: 48em) {
    .card--EV__skip__form .input--group input {
        width: 100%;
    }
    .card--EV__skip__form .input--group select {
        width: 100%;
    }
    .form--input .input--group select {
        width: 100%;
    }
    .card--EV__skip__form .input--group textarea {
        width: 100%;
    }
}

.card--EV__skip__form--button {
    text-align: right;
}

.card--EV__skipOut__card {
    background: #fff8f5 !important;
}

.card--EV__skipOut__card .search input {
    background: #ffe4d8 !important;
}

.carousel--dash {
    margin: 3rem 0;
    position: relative;
}

.owl-carousel {
    width: 100%;
    display: block !important;
}

.owl-carousel .owl-nav {
    display: block !important;
    font-size: 2rem;
    color: var(--color-white);
}

.owl-carousel .owl-prev {
    position: absolute;
    top: -6.5rem;
    width: 2rem;
    height: 2rem;
    right: 5%;
    border-radius: 50% !important;
    background-color: #0f0f0f !important;
    outline: none;
    font-size: 2rem !important;
    text-align: center;
    align-items: center;
    justify-content: center !important;
    display: flex !important;
}

@media only screen and (max-width: 36em) {
    .owl-carousel .owl-prev {
        right: 10%;
    }
}

.owl-carousel .owl-next {
    position: absolute;
    top: -6.5rem;
    right: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50% !important;
    background-color: #0f0f0f !important;
    outline: none;
    font-size: 2rem !important;
    text-align: center;
    align-items: center;
    justify-content: center !important;
    display: flex !important;
}

.owl-carousel .owl-dots {
    display: none;
}

.owl-carousel--skip {
    position: relative;
    margin-top: 2rem;
}

.owl-carousel--skip .owl-nav {
    color: #717171 !important;
}

.owl-carousel--skip .owl-prev {
    position: absolute;
    top: 20%;
    width: 2rem;
    height: 2rem;
    left: 0 !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    outline: none;
    font-size: 6rem !important;
    text-align: center;
    align-items: center;
    justify-content: center !important;
    display: flex !important;
}

@media only screen and (max-width: 36em) {
    .owl-carousel--skip .owl-prev {
        right: 10%;
    }
}

.owl-carousel--skip .owl-next {
    position: absolute;
    top: 20%;
    right: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50% !important;
    background-color: transparent !important;
    outline: none;
    font-size: 6rem !important;
    text-align: center;
    align-items: center;
    justify-content: center !important;
    display: flex !important;
}

.owl-carousel--skip .owl-dots {
    display: block !important;
}

@media only screen and (max-width: 36em) {
    .table {
        overflow: auto !important;
    }
}

@media only screen and (max-width: 48em) {
    .table--part {
        overflow: auto !important;
    }
}

.table thead {
    /* background-color: var(--color-edges); */
    border-bottom: 2px solid var(--color-tertiary);
}

.table thead th {
    padding: 1rem 0;
    color: var(--color-tertiary) !important;
    font-size: var(--font-size);
    font-weight: var(--font-weight-extra-bold);
}

.table tbody {
    /* background-color: var(--color-white); */
    /* min-height: 20rem !important; */
}

.table tbody tr {
}
.table tbody th {
    padding: 1rem 0 !important;
}

.table tbody td {
    padding: 2rem 0 !important;
    /* text-align: center; */
    vertical-align: middle;
}

.table .actions button {
    height: 3rem;
    width: 3rem;
    background-color: #feeee7;
    border-radius: 0.5rem;
    margin: 2rem 2rem 2rem 0rem;
}

.table .actions button i {
    color: #c9420a;
}

table > :not(:last-child) > :last-child > * {
    border-bottom-color: transparent !important;
}

@media only screen and (max-width: 48em) {
    .dash--table {
        overflow: auto !important;
    }
    .dash--table .table {
        width: 100rem !important;
    }
}

.product--infos {
    display: flex;
    align-items: center;
}

.product--infos img {
    height: 10rem;
    width: 10rem;
    border-radius: 8%;
    object-fit: cover;
}

.product--infos p {
    color: var(--color-tertiary);
    /* margin-left: 1.5rem;
    margin-right: -33rem; */

    display: flex;
    align-items: center;
    margin-left: calc(var(--spacing-unite) * 2);
}

.type--EA {
    background-color: #0b9ab1;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 85%;
    margin: 0 auto;
}

@media only screen and (max-width: 62em) {
    .type--EA {
        width: 80% !important;
    }
}

.type--EA p {
    color: var(--color-white);
    font-size: 1rem;
}

.type--RD {
    background-color: var(--color-primary);
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width: 62em) {
    .type--RD {
        width: 85% !important;
    }
}

.type--RD p {
    color: var(--color-white);
    font-size: 1rem;
}

.statut--R {
    /* background-color: #dcf3e5;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 60%;
    margin: 0 auto; */

    background-color: var(--color-secondary);
    width: fit-content;
    /* height: 28px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: calc(var(--spacing-unite) / 3) calc(var(--spacing-unite) * 2);
}
.elink--B {
    background-color: #aee5ff;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 60%;
    margin: 0 auto;
}
.elink--Y {
    background-color: #ffde38;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 60%;
    margin: 0 auto;
}

@media only screen and (max-width: 62em) {
    .statut--R {
        width: 80% !important;
    }
    .elink--B {
        width: 80% !important;
    }
    .elink--Y {
        width: 80% !important;
    }
}

.statut--R p {
    color: var(--color-white);
    font-size: var(--font-size-11);
    font-weight: var(--font-weight);
}

.elink--B p {
    color: #000000;
    font-size: 1rem;
}

.elink--Y p {
    color: #000000;
    font-size: 1rem;
}

.statut--E {
    /* background-color: #fad7d7;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 60%;
    margin: 0 auto; */

    background-color: var(--color-primary);
    width: fit-content;
    /* height: 28px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: calc(var(--spacing-unite) / 3) calc(var(--spacing-unite) * 2);
}

@media only screen and (max-width: 62em) {
    .statut--E {
        width: 80% !important;
    }
}

.statut--E p {
    color: var(--color-white);
    font-size: var(--font-size-11);
    font-weight: var(--font-weight);
}

.statut--EC {
    background-color: #fae8e0;
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 60%;
    margin: 0 auto;
}

@media only screen and (max-width: 62em) {
    .statut--EC {
        width: 80% !important;
    }
}

.statut--EC p {
    color: var(--color-primary);
    font-size: 1rem;
}

.container-onglets {
    background-color: var(--color-white);
}

.container-onglets .container {
    color: #000;
    width: 100%;
    height: 15%;
    display: flex;
    background-color: var(--color-white);
    z-index: 99;
}

@media only screen and (max-width: 48em) {
    .container-onglets .container {
        display: block;
    }
}

.onglets {
    /* width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    flex-direction: column;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.5s; */

    width: 100%;
    height: 40px;
    flex-wrap: wrap;
    padding: 24px;
    flex-direction: column;
    cursor: pointer;
    /* border-bottom: 3px solid transparent; */
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-edges);
}

.onglets:first-child {
    border: 1px solid var(--color-edges);
    border-radius: 24px 0 0 24px;
}

.onglets:last-child {
    border: 1px solid var(--color-edges);
    border-radius: 0 24px 24px 0;
}

.onglets p {
    font-size: var(--font-size);
    font-weight: var(--font-weight-extra-bold);
}

@media only screen and (max-width: 48em) {
    .onglets p {
        font-size: 1.4rem;
    }
}

.onglets:focus {
    outline: none;
}

.contenu {
    width: 100%;
    /* padding: 4rem 0; */
    display: none;
}

.contenu ul {
    margin: 2rem 0;
    padding-left: 0 !important;
}

/* Anim */

.active-onglet {
    /* color: #ec773f !important; */
    transition: all 0.3s ease;
    /* border-bottom: 3px solid #ec773f; */
    z-index: 1;

    background: var(--color-tertiary);
}

.active-onglet p {
    color: var(--color-white);
}

.activeContenu {
    display: block;
    animation: fade 0.5s forwards;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container-onglets--skipin {
    color: #000;
    width: 100%;
    height: 15%;
    display: flex;
    background-color: #eefaff;
    margin-top: 2rem;
    z-index: 99;
    overflow: auto;
    padding: 3rem 1rem;
}

.container-onglets--skipin .onglets {
    width: 100%;
    background-color: var(--color-white);
    margin-left: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    padding: 0rem !important;
    flex-direction: column;
    border: 3px solid var(--color-white);
    border-radius: 12px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.5s;
}

.container-onglets--skipin .onglets p {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0f0f0f !important;
}

@media only screen and (max-width: 48em) {
    .container-onglets--skipin .onglets p {
        font-size: 1.4rem;
    }
}

.container-onglets--skipin .onglets:focus {
    outline: none;
}

.container-onglets--skipin .active-onglet {
    background: #aee5ff;
    color: #0f0f0f !important;
    transition: all 0.3s ease;
    border: 3px solid #8a9ea1 !important;
    z-index: 1;
}

.container-onglets--skipin .active-onglet p {
    color: #ec773f;
}

.container-onglets--skipout {
    color: #000;
    width: 100%;
    height: 15%;
    display: flex;
    background-color: #fdefe9;
    margin-top: 2rem;
    z-index: 99;
    overflow: auto;
    padding: 3rem 1rem;
}

.container-onglets--skipout .onglets {
    width: 100%;
    background-color: var(--color-white);
    margin-left: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    padding: 0rem !important;
    flex-direction: column;
    border: 3px solid var(--color-white);
    border-radius: 12px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.5s;
}

.container-onglets--skipout .onglets p {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0f0f0f !important;
}

@media only screen and (max-width: 48em) {
    .container-onglets--skipout .onglets p {
        font-size: 1.4rem;
    }
}

.container-onglets--skipout .onglets:focus {
    outline: none;
}

.container-onglets--skipout .active-onglet {
    background: #ffd9ca;
    color: #0f0f0f !important;
    transition: all 0.3s ease;
    border: 3px solid #c9420a !important;
    z-index: 1;
}

.container-onglets--skipout .active-onglet p {
    color: #ec773f;
}

.nav {
    /* padding: 1rem 0; */
    /* background-color: var(--color-edges); */
    /* box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.08); */
    min-height: 96px;
}

nav .user--name p {
    font-weight: var(--font-weight);
    font-size: var(--font-size);
}

@media only screen and (max-width: 36em) {
    nav .user--name p {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

nav .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 36em) {
    nav .navigation {
        display: block;
    }
}

.notif {
    position: relative;
}

.notif .point {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #ec773f;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.notif .point small {
    height: 0.2rem;
    width: 0.2rem;
    color: red;
}

.notif--content {
    background-color: var(--color-white);
    border-radius: 0.75rem;
    position: absolute;
    top: 4rem;
    right: 10%;
    width: 30rem;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.08);
    z-index: 11;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 48em) {
    .notif--content {
        width: 20rem;
    }
}

@media only screen and (max-width: 36em) {
    .notif--content {
        left: 10%;
        z-index: 101;
    }
}

.notif--content::before {
    width: 1.5rem;
    height: 1.5rem;
    content: "";
    position: absolute;
    background-color: var(--color-white);
    transform: rotate(45deg);
    right: 5%;
    top: -0.6rem;
}

@media only screen and (max-width: 36em) {
    .notif--content::before {
        left: 5%;
    }
}

.notif--content ul {
    display: block !important;
}

.notif--content ul a {
    width: 100%;
}

.notif--content ul a li {
    padding: 1.5rem;
    color: #0f0f0f;
    width: 100%;
    transition: all 0.3s ease-in-out;
    border-radius: 0.75rem;
}

.notif--content ul a li:hover {
    background: rgba(241, 241, 241, 0.4);
}

.lakess--title {
    padding: calc(var(--spacing-unite) * 5) 0 0;
    border-top: 1px solid var(--color-edges);
}

.multipay--title {
    padding: 3rem 0;
    border-top: 1px solid var(--color-edges);
    background-color: var(--color-white);
}

.lakess--title .container {
    display: flex;
    justify-content: space-between;
}

.multipay--title .container {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 36em) {
    .lakess--title .container {
        display: block;
    }
    .multipay--title .container {
        display: block;
    }
}

.lakess--title div img {
    height: 4rem;
}

.multipay--title div img {
    height: 4rem;
}

.lakess--title div p {
    color: #0f0f0f;
    margin-top: 2rem;
    font-size: 1.4rem;
}

.multipay--title div p {
    color: #0f0f0f;
    margin-top: 2rem;
    font-size: 1.4rem;
}

@media only screen and (max-width: 36em) {
    .lakess--title div p {
        margin-top: 0rem;
        margin-bottom: 2rem;
    }
    .multipay--title div p {
        margin-top: 0rem;
        margin-bottom: 2rem;
    }
}

.transaction {
    margin-top: 4rem;
}

.dash--title {
    /* padding: 2rem 0; */
    padding: calc(var(--spacing-unite) * 5) 0 0;
    border-top: 1px solid var(--color-edges);
}

.dash--title h1 {
    text-transform: uppercase;
}

.dash--title--skip h1 {
    text-transform: uppercase;
    color: #ffffff;
}

.dash__subtitle_color {
    color: #ffffff;
}

.sc--compte {
    font-weight: var(--font-weight-bold);
    /* margin: 3rem 0 2rem; */
}

@media only screen and (max-width: 62em) {
    .part--right {
        display: none;
    }
}

.search--product {
    /* height: 50px;
    border: none;
    border: 1px solid var(--color-edges);
    border-radius: 24px;
    padding: 1rem;
    width: 100%; */

    border: 1px solid var(--color-edges);
    border-radius: 24px;
    padding: 4px calc(var(--spacing-unite) * 4);
    width: 100%;
    height: calc(var(--spacing-unite) * 8);
    color: var(--color-tertiary);
}

.modal-title {
    font-size: 25px;
    text-align: center !important;
}

.modal-title-client {
    font-size: 18px;
    text-align: center !important;
}

.plan input[type="radio"] {
    -webkit-appearance: none;
}

.plan {
    margin-bottom: 30px;
}

.plan label,
.payment-plan label,
.payment-type label {
    cursor: pointer;
    border-radius: 12px !important;
    background-color: var(--color-white);
    width: 100%;
    min-height: 20rem;
    text-align: center;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.08);
}

@media only screen and (max-width: 48em) {
    .plan label,
    .payment-plan label,
    .payment-type label {
        width: 100%;
    }
}

[type="radio"]:checked + label .card--abonnementchoice__top {
    background-color: #ffd3be;
    color: white;
}

[type="radio"]:checked + label .card--abonnementchoice__top p {
    color: #c9420a;
}

.plan--card button {
    width: 40%;
}

@media only screen and (max-width: 425px) {
    .plan--card button {
        width: 100%;
    }
}

.card--abonnementchoice {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.card--abonnementchoice .etiqu {
    margin: 2rem 0;
    text-align: center;
}

.card--abonnementchoice .etiqu p {
    padding: 0.7rem;
    border-radius: 24px;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    width: 15rem;
    margin: 0 auto;
    color: var(--color-white);
}

.card--abonnementchoice .etiqu .etiqu--black {
    background-color: #0f0f0f;
}

.card--abonnementchoice .etiqu .etiqu--violet {
    background-color: #d35dc9;
}

.card--abonnementchoice .etiqu .etiqu--orange {
    background-color: #ec773f;
}

.card--abonnementchoice .etiqu .etiqu--blue {
    background-color: #5a83ee;
}

.card--abonnementchoice .etiqu .etiqu--red {
    background-color: #ee0507;
}

.card--abonnementchoice .etiqu .etiqu--green {
    background-color: #05b84d;
}

.card--abonnementchoice__top {
    background-color: #c9420a;
    text-align: center;
    padding: 2rem 0;
    transition: all 0.3s ease-in-out;
    margin-bottom: 1.5rem;
}

.card--abonnementchoice__top h1 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0;
    text-transform: uppercase;
}

.card--abonnementchoice__top p {
    color: var(--color-white);
    font-size: 1.5rem;
}

.card--abonnementchoice__bottom .table tr {
    font-size: 1.3rem;
}

.notif--link {
    display: flex;
    justify-content: start;
    /* align-items: center; */
}

/* Important part */

/* .modal-dialog {
    overflow-y: initial !important
} */

/* height: 80vh; */

.modal-body {
    padding: 3rem;
}

/*# sourceMappingURL=main.css.map */

input#phone_number {
    color: #2e2e2e;
    width: 100%;
    padding: 13px;
    border: 1px solid #dddddd;
    box-shadow: 0px 0px 3px 0px rgba(1, 97, 205, 0.15);
    margin-bottom: 15px;
    border-radius: 24px;
    font-family: inherit;
    /* padding: 1rem; */
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    /* width: 40rem; */
    width: 100%;
}

.owl-carousel--form .owl-prev {
    display: none !important;
}

.owl-carousel--form .owl-next {
    display: none !important;
}

.owl-carousel--form .owl-dots {
    display: block !important;
    color: var(--color-secondary) !important;
}

.owl-carousel--form .owl-nav {
    color: var(--color-secondary) !important;
}

.my_table {
    border-collapse: collapse;
    width: 100%;
}

.my_table th {
    padding: 15px 8px;
}

.my_table td {
    padding: 8px;
    width: 50%;
}

.modal1 {
    background: url(../svg/succes_confetis.svg);
}

.modal1 form {
    text-align: center;
}

.modal1 form .p--valide {
    font-size: 2.7rem;
    font-weight: bold;
    margin: 2rem 0;
}

.modal1 form img {
    margin: 0rem 0 4rem;
    height: 13rem;
}

.modal button {
    /* padding: 0.5rem 0 !important; */
    padding: 1rem 2rem !important;
    font-size: 1.3rem;
    font-size: inherit;
}

.modal .modal-title {
    color: #ec773f;
    font-weight: bold;
}

.modal .modal-title-green {
    color: var(--color-secondary);
    font-weight: bold;
}

.modal .modal-title-orange {
    color: #ec773f;
    font-weight: bold;
}

.container--form {
    padding: 2rem 5rem;
    /* New */
    width: 75%;
}

@media only screen and (max-width: 36em) {
    .container--form {
        padding: 2rem;
        /* New */
        width: 90%;
    }
}

.mdpo {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.mdpo p a {
    color: #ec773f;
}

.check {
    /* margin: 3rem 0; */
}

.partform {
    display: flex;
    align-items: center;
    height: 100vh;
}

@media only screen and (max-width: 62em) {
    .partform {
        /* display: block; */
        min-height: 10vh !important;

        /* New */
        flex-direction: column-reverse;
        height: initial !important;
    }
}

.partform .partform--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 62em) {
    .partform .partform--title {
        display: block;
    }
}

.partform .partform--title p a {
    color: #0b9ab1;
}

.partform .part-leftform {
    height: 100%;
    width: 50%;
    overflow: auto;

    /* New */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 62em) {
    .partform .part-leftform {
        width: 100%;
        height: initial !important;
        overflow: initial !important;
    }
}

.partform .part-leftform form {
    margin-top: 4rem;
}

.partform .part-rightform {
    text-align: center;
    background: url(../svg/loginform-right-side-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    height: 100%;
    width: 50%;

    /* New */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 62em) {
    .partform .part-rightform {
        width: 100%;
        height: initial !important;
        overflow: initial !important;
    }
}

.part-rightform--carousel__card--title img {
    height: 42rem;
    object-fit: contain;
}

.part-rightform--carousel__card--body h3 {
    color: var(--color-secondary);
    font-weight: bold;
    width: 60%;
    margin: 0 auto;
}

.input--group {
    margin: 2rem 0;
}

.input--group label {
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.input--group input {
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #dddddd;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.input--group input:focus {
    border: 1px solid #ec773f;
}

.input--group__i {
    border: 1px solid #dddddd;
    transition: all 0.3s ease-in-out;
    padding: 0 1rem;
    border-radius: 24px;
}

.input--group__i:hover {
    border: 1px solid #ec773f;
}

.input--group__i input {
    border: none !important;
    width: 85% !important;
}

.input--group .password {
    position: relative;
    width: 100%;
}

.input--group .password img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
}

.input--group .password img:hover {
    cursor: pointer;
}

.input--group .password input {
    border-radius: 24px;
}

.input--numb {
    display: flex;
    align-items: center;
}

.input--group_phone input {
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #dddddd !important;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.input--group_phone input:focus {
    border: 1px solid #ec773f !important;
}

.pays {
    width: 20%;
}

@media only screen and (max-width: 36em) {
    .pays {
        width: 30%;
    }
}

.pays .input--group__i {
    border: 1px solid #dddddd;
    transition: all 0.3s ease-in-out;
    padding: 1rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pays .input--group__i img {
    height: 2.5rem;
}

.pays .input--group__i p {
    margin-left: 1rem;
    font-size: 1.3rem;
}

.pays .input--group__i:hover {
    border: 1px solid #ec773f;
}

.form--title h4 {
    font-weight: bold;
    color: #0b9ab1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.form--title h2,
.form--title p {
    margin-bottom: 1.5rem;
}

.numero-tel {
    width: 80%;
    margin-left: 1rem;
}

@media only screen and (max-width: 36em) {
    .numero-tel {
        width: 70%;
    }
}

.inputGroup {
    background-color: #f7f7f7;
    display: block;
    margin: 20px 0;
    position: relative;
}

.inputGroup label {
    padding: 2rem 6rem;
    width: 100%;
    display: block;
    border-radius: 5px;
    text-align: left;
    color: #3c454c;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    border: 2px solid #f7f7f7;
}

.inputGroup label:before {
    width: 100%;
    height: 10px;
    border-radius: 50%;
    content: "";
    background-color: #fdefe9;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.inputGroup label:after {
    width: 32px;
    height: 32px;
    content: "";
    border: 2px solid #d1d7dc;
    background-color: var(--color-white);
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label {
    border: 2px solid var(--color-primary);
}

.inputGroup input:checked ~ label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup input:checked ~ label:after {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.inputGroup1 {
    background-color: #f7f7f7;
    display: block;
    margin: 20px 0;
    position: relative;
}

.inputGroup1 label {
    padding: 2rem;
    width: 100%;
    display: block;
    border-radius: 5px;
    text-align: left;
    color: #3c454c;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    border: 2px solid #f7f7f7;
}

.inputGroup1 label:before {
    width: 100%;
    height: 10px;
    border-radius: 50%;
    content: "";
    background-color: #fdefe9;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}

.inputGroup1 label:after {
    width: 32px;
    height: 32px;
    content: "";
    border: 2px solid #d1d7dc;
    background-color: var(--color-white);
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}

.inputGroup1 label svg {
    fill: #717171;
}

.inputGroup1 input:checked ~ label {
    border: 2px solid var(--color-primary);
}

.inputGroup1 input:checked ~ label svg {
    fill: var(--color-primary) !important;
}

.inputGroup1 input:checked ~ label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup1 input:checked ~ label:after {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.inputGroup1 input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

.display-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.display-flex p {
    text-transform: uppercase;
    font-size: 1.3rem;
}

.display-flex .text--right {
    color: #0f0f0f !important;
    text-transform: lowercase !important;
    font-weight: bold;
}

.modal-input-border {
    border: none;
}

/* Pagination */

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
    cursor: pointer;
    /* width: 100px;
    background-color: #05b84d;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap; */
}

.pager li {
    display: inline;
}

.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
}

.pager li > a:focus,
.pager li > a:hover {
    text-decoration: none;
    background-color: #eee;
    cursor: pointer;
}

.pager .next > a,
.pager .next > span {
    float: right;
}

.pager .previous > a,
.pager .previous > span {
    float: left;
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
    color: #777;
    cursor: not-allowed;
    background-color: var(--color-white);
}

.my-active span {
    background-color: var(--color-primary) !important;
    color: white !important;
    border-color: var(--color-primary) !important;
}

.pager:after,
.pager:before {
    display: table;
    content: " ";
}

.pager:after {
    clear: both;
}

.control-overflow {
    width: auto;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.hide-bloc {
    display: none;
}

/* Pagination end */

.display-none {
    display: none;
}

.citoyen__card {
    width: 60%;
    display: flex;
    justify-content: space-around;
}

.btn--yes {
    padding: 1.2rem 6rem;
    border-radius: 5%;
    margin-bottom: 2rem;
    background-color: #fff4ef;
    border: 2px solid var(--color-primary);
}

.btn--no {
    padding: 1.2rem 6rem;
    border-radius: 5%;
    margin-bottom: 2rem;
}

.bg_qrcode {
    background-color: var(--color-secondary);
}

.bg_qrcode {
    background-color: #ec773f;
}

.cardo {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 60%;
    word-wrap: break-word;
    background-color: var(--color-secondary);
    background-clip: border-box;
    border-radius: 0.25rem;
}

.cardo2 {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 60%;
    word-wrap: break-word;
    background-color: #97918e;
    background-clip: border-box;
    border-radius: 0.25rem;
}

.carda {
    padding: 4px 4px 4px 4px;
    justify-content: center;
    width: max-content;
    background-color: white;
    border: 5px solid;
    border-radius: 5px;
}

.qrcode_card {
    width: 90%;
}

.recaph {
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.qrh {
    color: white;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .cardo,
    .cardo2 {
        width: 100%;
        padding: 0px;
    }

    .recaph {
        color: white;
        text-align: left;
        color: white;
    }

    .qrh {
        color: white;
        text-align: left;
        margin-top: 10px;
    }

    .p--skip__montant {
        text-align: right;
        align-items: center;
    }
}

.bg_image_success {
    background: url(../img/image-5.png);
}

.file_preview {
    /* max-width: 200px; */
    max-height: 300px;
    padding: 1rem;
}

.file_preview_icons {
    padding: 1rem;
}

.bg___ow_carousel__skipin {
    background-color: #eefaff;
    border-radius: 8px;
}

.bg___ow_carousel__skipout {
    background-color: #fff8f5;
    border-radius: 8px;
}

.text__right {
    text-align: right;
}

.text__left {
    text-align: left;
}

.skip__in__bg {
    background-color: #0b9ab1;
}

.skip__in__bg_elink_mm {
    background-color: #0b9ab1;
    padding-left: 50px;
    padding-right: 50px;
}

.skip__out__bg {
    background-color: var(--color-primary);
}

@media only screen and (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100%;
    }
}

.invalid-feedback {
    /*display: none;*/
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

/* Switch button */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.badge_notification {
    /* position: absolute; */
    top: -10px;
    right: -10px;
    padding: 5px 10px;
    border-radius: 50%;
    width: 40px;
    height: 30px;
    font-size: 20px;
    background: #0b9ab1;
    color: white;
    align-items: center;
}

.text--lowercase {
    text-transform: lowercase !important;
}

.radio-toolbar {
    margin: 10px;
}

.radio-toolbar input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.radio-toolbar label {
    display: inline-block;
    background-color: #ddd;
    padding: 10px 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.radio-toolbar label:hover {
    background-color: #dfd;
}

.radio-toolbar input[type="radio"]:checked + label {
    background-color: #45b549;
    border-color: #45b549;
}

/* Inscription */

.citoyen__card {
    width: 60%;
    display: flex;
    justify-content: space-around;
}

.btn--yes {
    padding: 1.2rem 6rem;
    border-radius: 5%;
    margin-bottom: 2rem;
    background-color: #fff4ef;
    border: 2px solid var(--color-primary);
}

.btn--no {
    padding: 1.2rem 6rem;
    border-radius: 5%;
    margin-bottom: 2rem;
}

#iframe1 {
    border: solid 1px;
    border-radius: 8px;
    width: 80%;
    min-height: 80%;
    max-height: 80%;
    color: red;
    padding-top: 1em;
    margin: 0 auto;
}

.modal-footer {
    border-top: none !important;
    padding: 2.75rem !important;
}

.button--white {
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-secondary);
    background-color: var(--color-white);
    padding: 1rem;
    text-align: center;
    border-radius: 0.75rem;
}

/* ************************************Elink */
.elink_inputtop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media only screen and (max-width: 36em) {
    .elink_inputtop {
        display: block;
    }
}

.elink_inputtop input {
    padding: 1.5rem;
    border-radius: 24px;
    border: none;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 36em) {
    .elink_inputtop input {
        display: block;
        width: 100%;
    }
}

.elink_inputtop--blue input {
    background-color: #f3f9fc;
    color: #0b9ab1;
    text-align: center;
}

.elink_inputtop--blue input::placeholder {
    color: #0b9ab1 !important;
}

.elink_inputtop--grey input {
    background-color: #f1f1f1;
    color: #333;
    text-align: center;
}

.elink--rows .row {
    margin-top: 2rem;
}

.elink--rows input,
.elink--rows select {
    background-color: var(--color-white);
    width: 100%;
    padding: 1.5rem;
    border-radius: 24px;
    border: none;
    margin-bottom: 1rem;
}

.elink--rows input:hover,
.elink--rows input:focus,
.elink--rows select:hover,
.elink--rows select:focus {
    border: none;
}

.elink--rows .input--group1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 24px;
    padding: 0 1rem;
}

.elink--rows .input--group1 input {
    margin-bottom: 0;
}

.elink--rows .input--group1 p {
    color: #000;
}

.text--blue {
    color: #0b9ab1;
}

.slider-counter {
    text-align: center;
}

.owl-theme .owl-dots .owl-dot {
    display: none !important;
}
/* .owl-pagination {
    .owl-page:nth-child(n + 3) {
        display: none !important;
    }
} */

.owl-carousel--co {
    width: 100%;
    display: block !important;
}

.owl-carousel--co .owl-nav {
    display: block !important;
    font-size: 2rem;
    color: var(--color-white);
}

.owl-carousel--co .owl-prev {
    position: absolute;
    top: 40%;
    width: 2rem;
    height: 2rem;
    left: 0;
    border-radius: 50% !important;
    background-color: #0f0f0f !important;
    outline: none;
    font-size: 2rem !important;
    text-align: center;
    align-items: center;
    justify-content: center !important;
    display: flex !important;
}

@media only screen and (max-width: 36em) {
    .owl-carousel--co .owl-prev {
        right: 10%;
    }
}

.owl-carousel--co .owl-next {
    position: absolute;
    top: 40%;
    width: 2rem;
    height: 2rem;
    border-radius: 50% !important;
    background-color: #0f0f0f !important;
    outline: none;
    font-size: 2rem !important;
    text-align: center;
    align-items: center;
    justify-content: center !important;
    display: flex !important;
}

.owl-carousel--co .owl-dots {
    display: none;
}

.owl-carousel--co .item .circle__info {
    height: 25rem;
    width: 25rem;
    border-radius: 50%;
    border: 10px solid #e2e2e2;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel--co .item .circle__info .circle__infotx {
    text-align: center;
}

.container-onglets__compte {
    background-color: #7676801f !important;
    width: 100%;
    height: 15%;
    display: flex;
    margin-top: 2rem;
    z-index: 99;
    overflow: auto;
    border-radius: 7px;
}

.container-onglets__compte .onglets {
    width: 100%;
    margin-left: 0rem;
    margin-bottom: 0rem;
    align-items: center;
    padding: 1rem 0 !important;
    flex-direction: column;
    color: #717171 !important;
    cursor: pointer;
    border-radius: 7px;
    border-bottom: 3px solid transparent;
    transition: all 0.5s;
    text-align: center;
}

.container-onglets__compte .onglets p {
    text-transform: uppercase;
    font-weight: bold;
    color: #0f0f0f !important;
}

@media only screen and (max-width: 48em) {
    .container-onglets__compte .onglets p {
        font-size: 1.4rem;
    }
}

.container-onglets__compte .onglets:focus {
    outline: none;
}

.container-onglets__compte .active-onglet {
    background: #0b9ab1;
    color: var(--color-white) !important;
    transition: all 0.3s ease;
    z-index: 1;
}

.container-onglets__compte .active-onglet-sortie {
    background: var(--color-primary);
    color: var(--color-white) !important;
    transition: all 0.3s ease;
    z-index: 1;
}

.container-onglets__compte .active-onglet p {
    color: var(--color-white) !important;
}

.compte__title {
    background-color: #0b9ab1;
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem 0;
}

.compte__title p {
    color: var(--color-white);
    text-transform: uppercase;
}

.compte__title1 {
    background-color: var(--color-primary);
    text-align: center;
    font-size: 1.4rem;
    padding: 1rem 0;
}

.compte__title1 p {
    color: var(--color-white);
    text-transform: uppercase;
}

.an_compte .contenu {
    padding: 1rem 0 2rem 0;
}

.tags .display-flex {
    margin: 2rem 0;
}

.tags .co-bl {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background-color: black;
}

.tags .co-rd {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    /* background-color: #FF3636; */
}

.tags .co-blu {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background-color: #36cfff;
}

.tags .co-gr {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background-color: #05b84d;
}

.tags .co-or {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background-color: #ffa336;
}

.tags .co-gre {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background-color: #e2e2e2;
}

.text--uppercase {
    text-transform: uppercase;
}

.modal-header {
    border-bottom: none;
}

.modal-title__color {
    color: white !important;
}
/* ----------------------------------------- */
.inputGroup408 {
    background-color: #f7f7f7;
    display: block;
    margin: 20px 0;
    position: relative;
}

.inputGroup408 label {
    padding: 2rem 6rem;
    width: 100%;
    display: block;
    border: 2px solid #f7f7f7;
}

.inputGroup408 label:before {
    width: 100%;
    height: 10px;
    border-radius: 50%;
    z-index: -1;
}

.inputGroup408 label:after {
    width: 32px;
    height: 32px;
    content: "";
    transition: all 200ms ease-in;
}

.inputGroup408 input:checked ~ label {
    border: 2px solid var(--color-primary);
}

.inputGroup408 input:checked ~ label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup408 input:checked ~ label:after {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.inputGroup408 input {
    width: 32px;
    height: 32px;
    order: 1;
    color: #000;
}

.md-checkbox {
    display: block;
    margin-bottom: 15px 0;
}

.md-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.md-checkbox label {
    position: relative;
    cursor: pointer;
}

.md-checkbox label:before {
    content: "";
    -webkit-appearance: none;
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.md-checkbox input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 5.6px;
    left: 2px;
    padding: 7px;
    background-color: #ffb594;
}

/* -------------------------------------------- */
#msform {
    /* text-align: center; */
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform .action-button {
    float: right;
}

.card {
    z-index: 0;
    border: none;
    position: relative;
}

.steps {
    font-size: 17px;
    /* color: g; */
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: white;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 33.33%;
    float: left;
    position: relative;
    font-weight: 400;
    text-align: center;
    /* display: flex; */
}

#progressbar #account:before {
    content: "1";
}

#progressbar #personal:before {
    content: "2";
}

#progressbar #payment:before {
    content: "3";
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
    /* background: #673AB7; */
    background: #c9420a;
}
.form--input h4 {
    /* color: white; */
    font-weight: bold;
}

.inputGroup1 label {
    padding: 1.3rem;
}

.bigcards__check {
    padding: 4rem;
    background-color: #ffe4d8;
    border-radius: 5px;
    margin-top: 3rem;
}

.bigcards__check h4 {
    text-transform: uppercase;
}

.two--lines {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Statistics lakess */
btn--orangep {
    padding: 0.7rem 8rem;
    border-radius: 0.75rem;
    background-color: #c9420a;
    border: 2px solid #c9420a;
    transition: all 0.3s ease-in-out;
    color: white;
}

.btn--orangep:hover {
    background-color: var(--color-white);
    border: 2px solid #c9420a;
    color: #c9420a;
}

.btn--orangep:hover a {
    color: #c9420a;
}

.btn--orangep a {
    color: var(--color-white);
}

.lakess--dasch__cardstats {
    padding: 24px;
    border-radius: 12px;
    background: transparent;
    margin: 1rem 0;
    /* width: 258px; */
    height: 128px;
}

.daily-turnover-bg {
    background: url("../svg/daily-turnover-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sales-margin-bg {
    background: url("../svg/sales-marges-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sales-benefit-lost-bg {
    background: url("../svg/sales-benefit-lost-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.expense-total-bg {
    background: url("../svg/expense-total-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.lakess--dasch__cardstats h4 {
    text-transform: capitalize;
    /* font-weight: var(--font-weight);
    color: var(--color-white); */
    font-size: var(--font-size);
    display: flex;
    align-items: center;
}

.lakess--dasch__cardstats h4 i {
    color: #717171;
    margin-left: 0.5rem;
    margin-top: -1rem;
}

.lakess--dasch__cardstats--body {
    margin-top: calc(var(--spacing-unite) * 4);
}

.lakess--dasch__cardstats--body h1 {
    /* font-weight: calc(var(--font-weight-extra-bold)); */
    font-size: calc(var(--font-size) * 2);
    /* color: var(--color-white); */
    margin-bottom: 0;
}

.lakess--dasch__cardstats--body p {
    font-size: 1.2rem;
}

.lakess--dasch__cardstats--body p strong {
    color: #0b9ab1;
}

.lakess--dasch__cardstats--body p i {
    color: #ee0507;
}

.lakess--stats {
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    text-align: center;
}

.lakess--stats img {
    width: 100%;
    height: 20rem;
    object-fit: contain;
}

.lakess--stats h4 {
    margin-bottom: 2rem;
}

.b-pnk {
    background-color: #fffaf7;
}

.lakess--class h4 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.lakess--class__elts {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.lakess--class img {
    height: 5rem;
    width: 5rem;
    margin-right: 1rem;
}

.lakess--class p {
    font-size: 1.4rem;
}

.lakess--class p strong {
    color: #0b9ab1;
}

.dflex--top0 {
    margin-top: 0 !important;
}

.dflex--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: calc(var(--spacing-unite) * 8) 0 calc(var(--spacing-unite) * 5);
}

.dflex--top select {
    background-color: var(--color-edges);
    padding: 1rem;
    border-radius: 10px;
    border: none;
    outline: none 4 !important;
    flex-wrap: wrap;
}

/* Create Group Contact */
.text-orange p {
    color: var(--color-primary);
    display: flex;
    justify-content: flex-end;
    margin-top: 0.8rem;
}
.notification {
    margin-right: 5%;
    margin-top: 3%;
    background-color: #555;
    color: white;
    text-decoration: none;
    padding: 10px 21px;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    width: 80px;
    height: 80px;
}
.notification .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 3px 8px;
    border-radius: 50%;
    background: #000000;
    color: white;
    width: 26px;
    height: 23px;
}

.badge p {
    font-size: 15px;
}

.list_contact__container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.list_contact__container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btns--container {
    display: flex;
    align-items: flex-end;
}

.btn--orange--dark {
    background-color: #c9420a;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 2px solid #ec773f;
    transition: all 0.3s ease-in-out;
    color: white;
}

.cr_gp_btn {
    margin-right: 10px;
}

.check {
    /* margin-left: auto; */
}

.checkbox_field {
    height: 30px;
    width: 30px;
}

#exampleModalLabel {
    margin-left: 2%;
}

.middle--date--picker {
    display: flex;
    align-items: center;
}

.tooltip {
    position: relative; /* making the .tooltip span a container for the tooltip text */
    border-bottom: 1px dashed #000; /* little indicater to indicate it's hoverable */
}
.tooltip:after {
    content: "";
    position: absolute;

    /* position tooltip correctly */
    left: 100%;
    margin-left: -5px;

    /* vertically center */
    top: 50%;
    transform: translateY(-50%);

    /* the arrow */
    border: 10px solid #000;
    border-color: transparent black transparent transparent;

    display: none;
}
.tooltip:hover:before,
.tooltip:hover:after {
    display: block;
}

.group_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50%;
    margin-bottom: 50%;
    color: #c8c8c8;
}

.group_contact a {
    color: var(--color-primary);
    display: flex;
    align-items: center !important;
    font-size: 0.4;
}

.boutton-see-more a {
    width: 36px;
    height: 26px;
    color: var(--color-primary);
}

.boutton-see-more {
    margin-left: auto;
}

.group_contact_no_empty {
    margin: 5%;
    display: flex;
    align-items: flex-start;
}

.libelle {
    margin-left: 10px;
}

.back {
    margin-left: 400px !important;
}

.group_name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btns--container {
    display: flex;
    align-items: flex-end;
}
.btn--orange--dark {
    background-color: #c9420a;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 2px solid #ec773f;
    transition: all 0.3s ease-in-out;
    color: white;
}
.btn--orange--dark:hover {
    background-color: #c9420a;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 2px solid #ec773f;
    transition: all 0.3s ease-in-out;
    color: white;
}

.cr_gp_btn {
    margin-right: 10px;
}

.badge {
    cursor: pointer;
}

.group_name {
    margin: 20px;
    display: flex;
    justify-content: flex-start;
}

.contact-item {
    margin: 20px;
    display: flex;
    justify-content: space-between;
}

.benefice-label {
    color: #05b84d;
}

.perte-label {
    color: #ee0507;
}

/* Style de base pour le bouton */
.dropbtn {
    background-color: #4caf50;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Style de base pour le menu déroulant */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: transparent;
    border-radius: 0.75rem;
    z-index: 1;
}

/* Afficher le menu déroulant lorsque le bouton est survolé */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style de base pour les options du menu déroulant */
.dropdown-content a {
    color: var(--color-secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-in-out;
}

.dropdown-content a button {
    color: white;
    background-color: transparent;
    text-align: left;
    font-weight: 600;
}

.dropdown-content a button:hover {
    color: var(--color-primary);
}

#loader {
    display: none; /* Caché initialement */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Style de survol pour les options du menu déroulant */
/* .dropdown-content a:hover {
    background-color: #1A9AB1;
} */

/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */

/* New design system */

:root {
    --color-primary: #ec773f;
    --color-secondary: #1a9ab1;
    --color-tertiary: #222222;
    --color-text: #666666;
    --color-helper: #aaaaaa;
    --color-edges: #dddddd;
    --color-background: #eeeeee;
    --color-white: #ffffff;
    --font-family: "Poppins", sans-serif;
    --font-size: 14px;
    --font-size-11: 11px;
    --font-weight-thin: 400;
    --font-weight: 500;
    --font-weight-bold: 600;
    --font-weight-extra-bold: 700;
    --line-height: 1.4;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.5s ease;
    --padding: 20px;
    --margin: 20px;
    --max-width: 1200px;
    --header-height: 60px;
    --footer-height: 60px;
    --button-height: 48px;
    --button-radius: 24px;
    --button-padding: 0 24px;
    --button-font-size: 14px;
    --button-font-weight: 700;
    --button-icon-size: 20px;
    --icon-size: 20px;
    --icon-color: #666666;
    --icon-hover-color: #333333;
    --link-color: #222222;
    --link-hover-color: #d65a1e;
    --link-visited-color: #a34c1b;
    --link-decoration: underline;
    --link-hover-decoration: none;
    --link-visited-decoration: none;
    --nav-bar-height: 50px;
    --nav-item-padding: 12px 16px;
    --nav-item-radius: 20px;
    --nav-item-active-bg: #1a9ab1;
    --nav-item-hover-bg: #333333;
    --nav-item-active-color: white;
    --nav-item-hover-color: white;
    --nav-pro-bg: #222222;
    --nav-pro-item-padding: 8px 16px;
    --nav-pro-item-radius: 20px;
    --nav-pro-item-active-bg: #1a9ab1;
    --nav-pro-item-active-color: white;
    --nav-pro-item-hover-bg: #333333;
    --nav-pro-item-hover-color: white;
    --form-input-height: 48px;
    --form-input-padding: 12px 16px;
    --form-input-border: 1px solid #ddd;
    --form-input-border-radius: 8px;
    --form-label-font-size: 14px;
    --form-label-font-weight: 600;
    --form-label-color: #222222;
    --form-placeholder-color: #aaaaaa;
    --form-placeholder-font-size: 14px;
    --form-placeholder-font-weight: 500;
    --form-select-height: 48px;
    --form-select-padding: 12px 16px;
    --form-select-border: 1px solid #ddd;
    --form-select-border-radius: 8px;
    --form-select-bg: white;
    --form-select-font-size: 14px;
    --form-select-font-weight: 500;
    --form-select-color: #222222;
    --form-select-option-bg: white;
    --form-select-option-color: #222222;
    --form-select-option-hover-bg: #f0f0f0;
    --form-select-option-hover-color: #222222;
    --form-select-option-active-bg: #1a9ab1;
    --form-select-option-active-color: white;
    --form-select-option-active-hover-bg: #1a9ab1;
    --form-select-option-active-hover-color: white;
    --form-select-option-disabled-bg: #f0f0f0;
    --form-select-option-disabled-color: #aaaaaa;
    --form-select-option-disabled-hover-bg: #f0f0f0;
    --form-select-option-disabled-hover-color: #aaaaaa;
    --form-select-option-selected-bg: #1a9ab1;
    --form-select-option-selected-color: white;
    --form-select-option-selected-hover-bg: #1a9ab1;
    --form-select-option-selected-hover-color: white;
    --form-select-option-selected-active-bg: #1a9ab1;
    --form-select-option-selected-active-color: white;
    --form-select-option-selected-active-hover-bg: #1a9ab1;
    --form-select-option-selected-active-hover-color: white;
    --form-select-option-selected-disabled-bg: #f0f0f0;
    --form-select-option-selected-disabled-color: #aaaaaa;
    --form-select-option-selected-disabled-hover-bg: #f0f0f0;
    --form-select-option-selected-disabled-hover-color: #aaaaaa;
    --form-select-option-selected-disabled-active-bg: #f0f0f0;
    --form-select-option-selected-disabled-active-color: #aaaaaa;
    --spacing-unite: 6px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-family);
    background-color: var(--color-white);
    /* padding: var(--padding); */
    line-height: var(--line-height);
}
.container {
    /* max-width: 100%; */
    /* margin: 0 auto; */
    /* background: var(--color-white); */
    /* padding: calc(var(--padding) * 2); */
    /* box-shadow: var(--shadow); */

    /* display: flex; */
    /* min-height: 100%; */

    margin: 0 auto;
    padding: calc(var(--spacing-unite) * 4) 48px;
    /* max-width: 1200px; */
}

/* Sidebar */
.sidebar {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: calc(var(--spacing-unite) * 6);
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    position: fixed;
    width: 240px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    border-right: 1px solid var(--color-edges);
}

.logo-with-menu {
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px;
}

.button--deconnexion .nav-menu {
    /* padding: 28px 0; */
}

.nav--link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

.nav-menu {
    /* background: var(--color-edges); */
    gap: calc(var(--spacing-unite) * 6);
}
.nav-item span {
    color: var(--color-tertiary);
}

.nav-item:hover span {
    font-weight: var(--font-weight-bold);
}

.nav-item:hover .icon-menu {
    background-color: var(--color-tertiary);
    transition: var(--transition);
}

.nav-item .icon-menu svg {
    fill: var(--color-tertiary);
}

.nav-item:hover .icon-menu svg {
    fill: var(--color-white);
    transition: var(--transition);
}

.nav-item {
    padding: 12px 28px;
    background: transparent;
    color: var(--color-helper);
    border: none;
    cursor: pointer;
    font-size: var(--font-size);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.nav-item.active {
}

.nav-item:active:not(.active) {
}

.nav-item:active span {
    font-weight: var(--font-weight-bold);
}

.nav-item:active .icon-menu {
    background-color: var(--color-tertiary);
}

.nav-item:active .icon-menu svg {
    fill: var(--color-white);
}

.nav-icon {
    width: 20px;
    height: 20px;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.icon-menu {
    height: 48px;
    width: 48px;
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-selector {
    border: 1px solid var(--color-edges);
    border-radius: 24px;
    height: 48px;
    display: flex;
    align-items: center;
    /* padding: 4px 12px; */
    width: 157px;
    justify-content: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--margin) * 2);
}
.header h1 {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--color-tertiary);
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-info {
    font-size: var(--font-size-11);
    font-weight: var(--font-weight-thin);
    color: var(--color-tertiary);
}
.author-name {
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-tertiary);
    font-size: var(--font-size);
}
.author-role {
    font-size: 12px;
    color: var(--color-text);
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-primary), #f7931e);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--margin) * 3);
}

.section {
    margin-bottom: calc(var(--margin) * 2);
}

.section-title {
    font-size: 24px;
    font-weight: var(--font-weight-extra-bold);
    color: var(--color-tertiary);
}

.section h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-tertiary);
    margin-bottom: 16px;
}
/* Typography */
.typography-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}
.title-1 {
    font-size: 48px;
    font-weight: var(--font-weight-extra-bold);
    line-height: 100%;
}
.title-2 {
    font-size: 28px;
    font-weight: var(--font-weight-extra-bold);
    line-height: 40px;
}
.title-3 {
    font-size: 20px;
    font-weight: var(--font-weight-extra-bold);
    line-height: 100%;
}
.title-4 {
    font-size: var(--font-size);
    font-weight: var(--font-weight-extra-bold);
    line-height: 24px;
}

.text-color-black {
    color: var(--color-tertiary);
}

.text-color-white {
    color: var(--color-white) !important;
    font-weight: var(--font-weight-extra-bold) !important;
}

.currency {
    font-size: var(--font-size);
    font-weight: var(--font-weight-extra-bold);
}

.text-1 {
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: 24px;
}
.text-2 {
    font-size: 11px;
    font-weight: 400;
    line-height: 100%;
}
.link {
    font-size: var(--font-size);
    font-weight: var(--font-weight-thin);
    text-decoration: var(--link-decoration);
    color: var(--link-color);
    line-height: 100%;
}
.navigation {
    font-size: 12px;
    font-weight: var(--font-weight);
    line-height: 100%;
}
.button-text {
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
}
.font-info {
    font-size: 12px;
    color: var(--color-text);
}
/* Colors */
.color-palette {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.color-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}
.color-swatch {
    width: 60px;
    height: 100%;
}
.color-info {
    flex: 1;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white);
}
.color-name {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size);
}
.color-code {
    font-size: 12px;
    color: var(--color-text);
    font-family: monospace;
}
.orange {
    background-color: var(--color-primary);
}
.orange .color-info {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.orange .color-code {
    color: rgba(255, 255, 255, 0.8);
}
.teal {
    background-color: var(--color-secondary);
}
.teal .color-info {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.teal .color-code {
    color: rgba(255, 255, 255, 0.8);
}
.black {
    background-color: var(--color-tertiary);
}
.black .color-info {
    background-color: var(--color-tertiary);
    color: var(--color-white);
}
.black .color-code {
    color: rgba(255, 255, 255, 0.8);
}
.gray-text {
    background-color: var(--color-text);
}
.gray-text .color-info {
    background-color: var(--color-text);
    color: var(--color-white);
}
.gray-text .color-code {
    color: rgba(255, 255, 255, 0.8);
}
.gray-helper {
    background-color: var(--color-helper);
}
.gray-helper .color-info {
    background-color: var(--color-helper);
    color: var(--color-white);
}
.gray-helper .color-code {
    color: rgba(255, 255, 255, 0.8);
}
.gray-edges {
    background-color: var(--color-edges);
}
.gray-background {
    background-color: var(--color-background);
}
.white {
    background-color: var(--color-white);
    border: 1px solid var(--color-background);
}
/* Buttons */
.buttons-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    margin-bottom: var(--margin);
}

.btn {
    border: none;
    font-weight: var(--button-font-weight);
    font-size: var(--button-font-size);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--button-padding);
    gap: 10px;
    width: 175px;
    height: var(--button-height);
    border-radius: var(--button-radius);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}
.btn-tertiary {
    background-color: var(--color-tertiary);
    color: var(--color-white);
}
.btn-ghost {
    background-color: transparent;
    color: var(--color-tertiary);
    border: 2px solid var(--color-tertiary);
}
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-tertiary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
}
.btn-icon.secondary {
    background-color: var(--color-background);
    color: var(--color-tertiary);
}
.smallest-label {
    font-size: 12px;
    color: var(--color-text);
}
/* Navigation */
.nav-bar {
    display: flex;
    background-color: var(--color-tertiary);
    border-radius: var(--nav-item-radius);
    padding: 8px;
    gap: 4px;
    margin-bottom: var(--margin);
}

.nav-pro {
    background-color: var(--nav-pro-bg);
    border-radius: var(--nav-pro-item-radius);
    padding: 8px;
    display: flex;
    gap: 4px;
}
.nav-pro .nav-item {
    flex: 1;
    text-align: center;
    font-size: 12px;
    flex-direction: column;
    gap: 4px;
}
/* Form Elements */
.form-group {
    margin-bottom: var(--margin);
}
.form-label {
    font-size: var(--form-label-font-size);
    font-weight: var(--form-label-font-weight);
    color: var(--form-label-color);
    margin-bottom: 8px;
    display: block;
}
.form-input-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-input-item img {
    position: absolute;
    right: 24px;
    width: var(--icon-size);
    height: var(--icon-size);
    pointer-events: none;
    vertical-align: middle;
}
.form-input {
    width: 100%;
    font-size: var(--form-placeholder-font-size);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 24px;
    gap: 12px;
    height: var(--form-input-height);
    background: var(--color-white);
    border: 1px solid var(--color-edges);
    border-radius: var(--button-radius);
    color: var(--color-tertiary);
}

input::placeholder {
    color: var(--form-placeholder-color);
    font-size: var(--form-placeholder-font-size);
    font-weight: var(--form-placeholder-font-weight);
}

/* input[type="checkbox"]:checked {
    color: var(--color-secondary);
} */

input[type="checkbox"]:checked + label:before {
    background-color: #ed820a !important;
    border-color: #ed820a !important;
    color: #fff !important;
}

.form-select {
    width: 100%;
    padding: var(--form-select-padding);
    border: var(--form-select-border);
    border-radius: var(--form-select-border-radius);
    font-size: var(--form-select-font-size);
    background: var(--form-select-bg);
    cursor: pointer;
}
.country-flag {
    display: inline-block;
    margin-right: 8px;
}

.flag--icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: inherit;
    position: relative;
    line-height: 1em;
    height: 24px;
    width: 24px;
    border-radius: 50%;
}

.flag--name {
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    color: var(--color-tertiary);
    margin-left: calc(var(--spacing-unite) * 2);
}

.dropdown-toggle::after {
    margin-left: calc(var(--spacing-unite) * 2);
    content: "";
    display: inline-block;
    vertical-align: 0.255em;
    border-top: 0.6em solid;
    border-right: 0.6em solid transparent;
    border-bottom: 0;
    border-left: 0.6em solid transparent;
    color: var(--color-tertiary);
}

/* Action Cards */
.action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.action-card {
    padding: var(--padding);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}
.action-card:hover {
    transform: translateY(-2px);
}
.card-qr {
    background: linear-gradient(135deg, #f7931e, var(--color-primary));
}
.card-mobile {
    background: linear-gradient(135deg, var(--color-primary), #e74c3c);
}
.card-bank1 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.card-bank2 {
    background: linear-gradient(135deg, #c0392b, #a93226);
}
/* Backgrounds */
.backgrounds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: var(--margin);
}
.background-sample {
    height: 120px;
    border-radius: var(--border-radius);
}
.bg-1 {
    background: linear-gradient(135deg, var(--color-secondary), #17a2b8);
}
.bg-2 {
    background: linear-gradient(135deg, var(--color-primary), #f7931e);
}
.bg-3 {
    background: linear-gradient(135deg, #e74c3c, #f7931e);
}
.bg-4 {
    background: linear-gradient(135deg, #17a2b8, var(--color-secondary));
}
/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: var(--margin);
}
.tab {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: var(--font-size);
    cursor: pointer;
    font-weight: var(--font-weight);
}
.tab.active {
    background-color: var(--color-tertiary);
    color: var(--color-white);
}
.tab:not(.active) {
    background-color: #f0f0f0;
    color: var(--color-text);
}
/* Selects */
.select-group {
    display: flex;
    justify-content: space-between;
    gap: var(--margin);
    margin-bottom: var(--margin);
    flex-wrap: wrap;
}
.checkbox-group,
.radio-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-edges);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.checkbox-label {
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    color: var(--black);
    cursor: pointer;
}
.checkbox.checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}
.radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-edges);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.radio.on {
    border-color: var(--color-primary);
}
.radio.on::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
}
/* Controls */
.controls {
    display: flex;
    align-items: center;
    gap: var(--margin);
    margin-bottom: var(--margin);
}
.counter {
    display: flex;
    align-items: center;
    gap: 16px;
}
.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-edges);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter-value {
    font-weight: var(--font-weight-bold);
}
.dropdown {
    padding: 28px;
    cursor: pointer;
}
.toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: var(--color-primary);
    border-radius: 20px;
    cursor: pointer;
}
.toggle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border-radius: 50%;
    top: 3px;
    right: 3px;
    transition: var(--transition);
}
.toggle.off {
    background-color: var(--color-edges);
}
.toggle.off::after {
    left: 3px;
}
/* Spacing */
.spacing-demo {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.spacing-box {
    height: 20px;
    background-color: var(--color-secondary);
}

.xs {
    width: 6px;
}

.s {
    width: 12px;
}

.m {
    width: 24px;
}

.l {
    width: 48px;
}

.xl {
    width: 96px;
}
.spacing-label {
    font-size: 12px;
    color: var(--color-text);
    margin-left: 8px;
}

.action-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
}

.action-buttons img {
    margin-right: calc(var(--spacing-unite) * 3);
}

.action-buttons button {
    background: transparent;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: calc(var(--margin) * 2);
    }
    .container {
        padding: var(--padding);
    }
    .action-cards {
        grid-template-columns: 1fr;
    }
    .backgrounds {
        grid-template-columns: 1fr;
    }
}
