

:root {
    --width-content: 90vw;
    --main-color: #1F82B1;
    --second-color: #005993;
    --color-3: #32A4DA;
    color-scheme: light;
}

* {
    margin:0;
    padding:0;
    text-decoration:none;
    list-style:none;
    forced-color-adjust: none;
}

html {
    height: -webkit-fill-available;
    scrollbar-width: none;
}

body {
    background:white;
}

a, strong {
    color: var(--color-3);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px; /* 128.571% */
    text-decoration:none;
}

a.important {
    display:block;
    width:max-content;
    min-width:170px;
    max-width:calc(100% - 60px);
    padding:12px 30px;
    margin-left:auto;
    margin-right:auto;
    border-radius: 30px;
    background: var(--main-color);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.08);
    color: #fafafa;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
    text-align:center;
    height: max-content;
}

a.important.valid {
    background:#32A05F;
}

a.important.cancel {
    background:white;
    color:#DB554F;
}

a.important.margin-top {
    margin-top:30px;
}

h1 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: 33px; /* 110% */
    letter-spacing: 0.3px;
    width:max-content;
    max-width:100%;
    text-align:center;
}

h2 {
    color: var(--second-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px; /* 137.5% */
    letter-spacing: 0.16px;
}

h3 {
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    text-transform: uppercase;
}

h4 {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
}

img {
   pointer-events: none;
}
dd img {
   pointer-events: auto;
}

p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
}

html {
    scroll-behavior: smooth;
    overflow-x:hidden;
    width:100vw;
}

body {
    font-family:"Montserrat";
    overflow-x:clip;
    background:#f7f7f7;
    user-select: none;
}

body > .background {
    background:url("/media/background/background-site.png");
    background-size:cover;
    background-position:center;
    width:100vw;
    height:calc(100vh);
    position:fixed;
    z-index:-1;
    top:0;
    left:0;
    background-color: white;
}

footer {
    position:fixed;
    bottom:0;
    left:0;
    padding-left:calc((100vw - var(--width-content)) / 2);
    padding-right:calc((100vw - var(--width-content)) / 2);
    width:var(--width-content);
    height:44px;
    overflow-y:hidden;
    overflow-x:visible;
    padding-top:20px;
    padding-bottom:10px;
    background:#ffffff;
    box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

footer .menu {
    display:flex;
    flex-wrap:wrap;
    width:100%;
    height:100%;
}

footer .menu li {
    width:max-content;
    height:100%;
    margin-right:auto;
}

footer .menu li:last-child {
    margin-right:0;
}

footer .menu li a {
    color: #7A7A7A;
    font-family: "Inter";
    font-size: 11px;
    font-weight: 400;
    line-height: 18px; /* 163.636% */
    text-transform: uppercase;
    padding-top:26px;
    height:18px;
    display:block;
    text-align:center;
    width:100%;
    position:relative;
}

footer .menu li.active a {
    color:var(--color-3);
}

footer .menu li a:before {
    content:"";
    display:block;
    width:25px;
    height:23px;
    position:absolute;
    top:0;
    left:50%;
    transform:translate(-50%,0);
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
}

footer .menu li a.cards-link:before {
    background-image:url("/media/icons/card.svg");
}

footer .menu li.active a.cards-link:before {
    background-image:url("/media/icons/card-blue.svg");
}

footer .menu li a.sellers-link:before {
    background-image:url("/media/icons/shop.svg");
}

footer .menu li.active a.sellers-link:before {
    background-image:url("/media/icons/shop-blue.svg");
}

footer .menu li a.offers-link:before {
    background-image:url("/media/icons/offer.svg");
}

footer .menu li.active a.offers-link:before {
    background-image:url("/media/icons/offer-blue.svg");
}

footer .menu li a.account-link:before {
    background-image:url("/media/icons/user.svg");
}

footer .menu li.active a.account-link:before {
    background-image:url("/media/icons/user-blue.svg");
}

footer .menu li a.scanner-link:before {
    background-image:url("/media/icons/scanner.svg");
}

footer .menu li.active a.scanner-link:before {
    background-image:url("/media/icons/scanner-blue.svg");
}

footer .menu li a.invoices-link:before {
    background-image:url("/media/icons/invoices.svg");
}

footer .menu li.active a.invoices-link:before {
    background-image:url("/media/icons/invoices-blue.svg");
}

footer .menu li a .count {
    border-radius: 8px;
    background: #FC412E;
    display:block;
    width:max-content;
    padding:0 5px;
    color: #fafafa;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px; /* 150% */
    position:absolute;
    top:0;
    right:0;
    transform:translate(20%,-50%);
}

footer .menu li a#menu-account-link .count {
    right:2px;
    transform:translate(0,-50%);
}

.page-content {
    padding-top:30px;
    padding-bottom:100px;
    position:relative;
    min-height:calc(100vh - 130px);
}

.page-buy-gift-card {
    min-height:calc(100vh - 160px);
    padding-bottom:30px;
}

.page-content.auth-content {
    padding-bottom:30px;
    min-height:calc(100vh - 60px);
}

.page-content.page-content-with-qr {
    padding-bottom:170px;
    min-height:calc(100vh - 200px);
}

.page-content.page-content-begin {
    padding-bottom:0;
    padding-top:0;
    min-height:calc(100vh);
}

.my-qr-code {
    position:fixed;
    bottom:100px;
    left:50%;
    transform:translate(-50%,0);
    border-radius: 25px;
    background: var(--second-color);
    padding:10px 25px;
    padding-left:60px;
    color: #fafafa;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px; /* 116.667% */
    letter-spacing: 0.18px;
    width: max-content;
    max-width:calc(100% - 115px);
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    text-align:center;
    z-index: 1000;
    cursor:pointer;
}

.my-qr-code span {
    font-size:30px;
    margin-right:10px;
    position:absolute;
    left:25px;
    top:50%;
    transform:translate(0,-50%);
}

.not-all-width {
    width:var(--width-content);
    padding-left:calc((100% - var(--width-content)) / 2);
    padding-right:calc((100% - var(--width-content)) / 2);
    position:relative;
}

form {
    margin-top:30px;
}

form .form-group.two-columns {
    display:flex;
    flex-wrap:wrap;
}

form .form-group.two-columns .form-group-element {
    width:calc(50% - 5px);
    margin-right:10px;
}

form .form-group.two-columns .form-group-element:last-child {
    margin-right:0;
}

.auth-page {
    min-height:100%;
    overflow:hidden;
    position:relative;
    width:100%;
}

.auth-page .logo {
    height:calc(25vh);
    max-height:calc(100% - 665px);
    min-height:115px;
    width:max-content;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:50px;
}

.auth-page.subscription-page .logo, .auth-page.login-page .logo {
    margin-bottom:30px;
    height:200px;
}

.auth-page .logo img {
    height:100%;
    width:100%;
    object-fit:contain;
    object-position:center;
}

.auth-page .illustration-bottom {
    width:max-content;
    width:100%;
    height:calc(100vw * 0.77);
    max-height:calc(100vh - 30px - 25vh - 104px - 100px);
    position:fixed;
    bottom:0;
    left:0;
}

.auth-page .illustration-bottom img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.auth-page .buttons {
    width:max-content;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
}

.auth-page .buttons > a.important {
    margin-top:20px;
}

.auth-page .buttons > a.important:first-child {
    margin-top:0;
}

.auth-page .buttons > a.important:nth-child(2n), .subscription-page a.important {
    background:var(--second-color);
}

.auth-page form {
    margin-top:30px;
}

form.form-login dt, form dt#submit-label, form dt#btnSubmit-label, form dt#btnSubmitById-label, form dt#btnSubmitByName-label, form dt#submit_name-label {
    display:none;
}

form.form-login dd {
    width:100%;
    margin-bottom:0;
}

form.form-login > * {
    margin-top:20px;
    display:block;
}

form.form-login > *:first-child {
    margin-top:0;
}

form dt {
    margin-bottom:10px;
}

form dd {
    margin-bottom:20px;
}

form dd:last-child {
    margin-botom:0;
}

form dt label {
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    text-transform: uppercase;
}

form select, form input[type="text"], form input[type="password"], form input[type="number"], form textarea {
    border-radius: 30px;
    background: #FaFaFa;
    box-shadow:  0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    padding:11px 15px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
    border:none;
    user-select: auto;
}

form input[type="text"]::placeholder, form input[type="password"]::placeholder, form input[type="number"]::placeholder {
    color:#AAA;
    opacity:1;
}

form input[type="text"], form input[type="password"], form input[type="number"], form textarea {
    width:calc(100% - 30px);
}

form button {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 105% */
    letter-spacing: 0.2px;
    padding:12px 30px;
    max-width:calc(100% - 60px);
    width:max-content;
    margin-left:auto;
    margin-right:auto;
    border-radius: 25px;
    background: #32A05F;
    cursor:pointer;
    border:none;
    display:block;
}

form.form-login button {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.2px;
    background:none;
    border:none;
    text-align:right;
    width:100%;
    position:relative;
    width:100%;
    padding:0;
    padding-right:90px;
    cursor:pointer;
    max-width:100%;
    display: inline-block;
}

form.form-login button:after {
    content:"";
    background:url("/media/icons/arrow-login.svg") no-repeat;
    background-size:contain;
    background-position:center;
    width: 70px;
    height: 50px;
    position:absolute;
    bottom:0;
    right:0;
}

form.form-login.form-subscription button:after {
    background-image:url("/media/icons/arrow-login-2.svg");
}

form.form-login .lost-password {
    color: #AAA;
    text-align: right;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
}

.auth-page .link-subscription-login {
    margin-top:50px;
    text-align:center;
}

.success_subscription {
    border-radius:10px;
    overflow:hidden;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.success_subscription .top, .success_subscription .content {
    padding:20px;
    width:calc(100% - 40px);
}

.success_subscription .top {
    background:var(--second-color);
}

.success_subscription .top h1 {
    color:#fafafa;
    text-align:center;
    font-size: 19px;
    font-weight: 700;
    line-height: 21px; /* 110.526% */
    letter-spacing: 0.19px;
    width:100%;
}

.success_subscription .content {
    background:#fafafa;
    text-align:center;
}

.success_subscription .content > * {
    margin-top:10px;
}

.success_subscription .content > *:first-child {
    margin-top:0;
}

.success_subscription .content strong {
    width: 100%;
    display: block;
}

.success_subscription .content > a.important {
    margin-top:20px;
}

.block {
    margin-top:35px;
}

.block:first-child {
    margin-top:0;
}

.cards {
    display:flex;
    flex-wrap:wrap;
    margin-top:20px;
}

.cards > div {
    width:calc((100% - 10px) / 2);
    margin-right:10px;
    margin-top:20px;
    position:relative;
}

.cards > div:nth-child(2n) {
    margin-right:0;
}

.cards > div:nth-child(-n + 2) {
    margin-top:0;
}

.cards > div a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.cards > div img {
    width:100%;
}

.cards > div h4 {
    color: var(--color-3);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
    margin-top:4px;
}

.cards > div p {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 21px; /* 163.636% */
    padding-left:20px;
}

.cards > div .ammount {
    position:absolute;
    top:0;
    right:0;
    transform:translate(10px,-10px);
    border-radius: 18.5px;
    background: #1F82B1;
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px; /* 120% */
    letter-spacing: 0.15px;
    padding:10px 15px;
}

.cards-v2 {
    display:flex;
    flex-wrap:wrap;
    margin-top:20px;
}

.cards-v2 > div {
    width:calc((100% - 10px) / 2 - 30px);
    padding:10px 15px;
    margin-right:10px;
    margin-top:20px;
    position:relative;
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
}

.cards-v2 > div:nth-child(2n) {
    margin-right:0;
}

.cards-v2 > div:nth-child(-n + 2) {
    margin-top:0;
}

.cards-v2 > div a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.cards-v2 > div .flex {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.cards-v2 > div .flex img {
    width:65px;
}

.cards-v2 > div .flex .left {
    margin-left:0;
    margin-right:auto;
    width:max-content;
    position:relative;
    padding-bottom:26px;
}

.cards-v2 > div .flex .ammount {
    color: var(--second-color);
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 18px; /* 72% */
    letter-spacing: 0.25px;
    margin-left:auto;
    margin-right:0;
    width:max-content;
}

.cards-v2 > div .flex .left > p {
    margin-top:8px;
    color: #7A7A7A;
    font-size: 11px;
    font-weight: 500;
    line-height: 18px; /* 163.636% */
    position:absolute;
    bottom:0;
    left:0;
    width:max-content;
}

.cards-v2 > div .flex .expire {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(10px,-10px);
    padding: 5px 15px;
    border-radius: 30px;
    background: #E4861A;
    display: flex;
    flex-wrap: wrap;
    width: max-content;
    align-items: center;
    color: #fafafa;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.12px;
}

.one-card {
    position:relative;
}

.one-card .expire {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(10px,-10px);
    padding: 5px 15px;
    border-radius: 30px;
    background: #E4861A;
    display: flex;
    flex-wrap: wrap;
    width: max-content;
    align-items: center;
    color: #fafafa;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.12px;
}

.actions {
    position:absolute;
    top:0;
    right:calc((100vw - var(--width-content)) / 2);
    display:flex;
}

.actions span {
    font-size:30px;
    color:var(--main-color);
}

.actions span.count {
    position:absolute;
    top:0;
    right:0;
    border-radius: 8px;
    background: #FC412E;
    display: block;
    width: max-content;
    padding: 0 5px;
    color: #fafafa;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    transform: translate(20%,-50%);
}

.actions > * {
    margin-right:15px;
    position:relative;
}

.actions > *:last-child {
    margin-right:0;
}

.actions > a {
    display:block;
}

.one-card {
    margin-top:18px;
}

.one-card img {
    width:100%;
    max-width:380px;
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.one-card h4 {
    color: var(--color-3);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
    margin-top:20px;
    text-align:center;
}

.one-card > p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 163.636% */
    margin-top:14px;
    text-align:center;
}

.transactions, .commercants {
    margin-top:10px;
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
}

.transactions > div, .commercants > div {
    border-radius:10px;
    overflow:hidden;
    margin-top:20px;
    padding:10px;
    position:relative;
    width:calc(100% - 22px);
    background:#ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.commercants > div {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.commercants > div > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.commercants > div > a:before {
    content:"\f054";
    font-family:"FontAwesome";
    font-size:17px;
    color:#CCCCCC;
    position:absolute;
    top:10px;
    right:10px;
}

.transactions > div:first-child, .commercants > div:first-child {
    margin-top:0;
}

.commercants > div > .img {
    width:calc((100% - 25px) * 4 / 10);
    margin-left:0;
    margin-right:auto;
}

.commercants > div > .img img {
    display:block;
    width:100%;
}

.commercants > div > .text {
    width:calc((100% - 25px) * 6 / 10);
    margin-left:auto;
    margin-right:0;
}

.transactions > div > *, .commercants > div > .text > *, .commercants > div > .text > * > a, .seller-element .flex .right .content > *, .seller-element .flex .right .content > * > a {
    margin-bottom:5px;
    color: #7A7A7A;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
}

.transactions > div > *:last-child, .commercants > div > .text > *:last-child, .seller-element .flex .right .content > *:last-child {
    margin-bottom:0;
}

.transactions > div .prix {
    color: #000;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    position:absolute;
    top:10px;
    right:10px;
}

.transactions > div .etablissement, .commercants > div .etablissement, .seller-element .flex .right .content .etablissement {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    padding-right:70px;
}

.commercants > div .etablissement {
    padding-right:20px;
    overflow:hidden;
}

.seller-element .flex .right .content .etablissement {
    padding-right:0;
}

a.return {
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    text-transform: uppercase;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    margin-bottom:9px;
}

a.return span {
    font-size:19px;
    margin-right:5px;
}

.categories {
    display:flex;
    width:100%;
    overflow-x: auto;
    margin-top:10px;
    padding-bottom:10px;
    margin-left:calc(((100vw - var(--width-content)) / 2) * (-1));
    padding-left:calc((100vw - var(--width-content)) / 2);
    padding-right:calc((100vw - var(--width-content)) / 2);
    scrollbar-width: none;
}

.categories > a {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
    padding:9px 20px;
    border-radius: 30px;
    border: 1px solid #000;
    background: #ffffff;
    margin-right:5px;
    display:block;
    width:max-content;
    white-space: nowrap;
}

.categories > a:last-child {
    margin-right:0;
}

.begin-page {
    height:calc(100vh);
    display:flex;
    position:absolute;
    left:0;
    top:0;
    transition:0.5s;
}

.begin-page > div {
    height:100%;
    width:100vw;
    position:relative;
}

.begin-page > div .img {
    width:100%;
    height:calc(100vw * 0.77);
    max-height:calc(100vh - 300px);
}

.begin-page > div .img img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.begin-page > div h1 {
    text-align:center;
    width:100%;
    margin-top:50px;
}

.begin-page > div p {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    margin-top:30px;
}

.begin-page > div .pages-controller {
    position:absolute;
    left:calc((100vw - var(--width-content)) / 2);
    bottom:30px;
    display:flex;
    flex-wrap:wrap;
    width:var(--width-content);
    align-items:center;
}

.begin-page > div .pages-controller > * {
    margin-left:auto;
    margin-right:0;
}

.begin-page > div .pages-controller > *:first-child {
    margin-left:0;
}

.begin-page > div .pages-controller .right, .begin-page > div .pages-controller .left {
    width:70px;
    cursor:pointer;
}

.begin-page > div .pages-controller .right img, .begin-page > div .pages-controller .left img {
    width:100%;
    display: block;
}

.begin-page > div .pages-controller .position {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    display:flex;
    flex-wrap:wrap;
    width:max-content;
}

.begin-page > div .pages-controller .position > div {
    width:6px;
    height:6px;
    border-radius:100%;
    margin-right:12px;
    background:#CCCCCC;
}

.begin-page > div .pages-controller .position > div:last-child {
    margin-right:0;
}

.begin-page > div#begin-page-1 .pages-controller .position > div:nth-child(1),
.begin-page > div#begin-page-2 .pages-controller .position > div:nth-child(2),
.begin-page > div#begin-page-3 .pages-controller .position > div:nth-child(3),
.begin-page > div#begin-page-4 .pages-controller .position > div:nth-child(4) {
    background:#3E3E3E;
}

.begin-page > div .pages-controller .go {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 21px; /* 105% */
    letter-spacing: 0.2px;
    width:130px;
}

.commercant-page {
    background:#ffffff;
    border-radius: 10px;
    padding:20px;
    margin-top:20px;
}

.commercant-page #map {
  height: 330px;
  margin-top: 20px;
  border-radius: 10px;
}

.commercant-page img {
    display:block;
    width:100%;
    margin-top:20px;
}

.commercant-page .coordonnees {
    margin-top:20px;
}

.commercant-page .coordonnees > div {
    margin-top:20px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.commercant-page .coordonnees > div:first-child {
    margin-top:0;
}

.commercant-page .coordonnees > div span {
    text-align:center;
    color:var(--main-color);
    font-size:30px;
    width:37px;
    margin-right:10px;
}

.commercant-page .coordonnees > div p, .commercant-page .coordonnees > div p a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px; /* 128.571% */
    letter-spacing: 0.14px;
    width:calc(100% - 47px);
    display:block;
}

.offres-block {
    width: var(--width-content);
    padding-bottom: 20px;
    margin-left: calc(((100vw - var(--width-content)) / 2) * (-1));
    padding-left: calc((100vw - var(--width-content)) / 2);
    padding-right: calc((100vw - var(--width-content)) / 2);
    overflow-x: auto;
    margin-top:10px;
    scrollbar-width: none;
}

.offres {
    display:flex;
    width: max-content;
}

.offres.offres-v2 {
    flex-wrap:wrap;
    width:100%;
    overflow:hidden;
}

.offres > div {
    width:calc(var(--width-content) * 2 / 5);
    margin-right:10px;
    margin-left:0;
    position:relative;
    overflow:hidden;
}

.offres.offres-v2 > div {
    width:calc((var(--width-content) - 40px) / 3);
    margin-left:10px;
    margin-right:10px;
    margin-top:20px;
}

.offres.offres-v2 > div:nth-child(-n + 3) {
    margin-top:0;
}

.offres > div:last-child {
    margin-right:0;
}

.offres.offres-v2 > div:last-child {
    margin-right:10px;
}

.offres.offres-v2 > div:nth-child(3n) {
    margin-right:0;
}

.offres.offres-v2 > div:nth-child(3n + 1) {
    margin-left:0;
}

.offres > div > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.offres > div a.cancel {
    position: absolute;
    left: inherit;
    top: 5px;
    right: 5px;
    padding: 5px;
    display: inline-block;
    background: #EF0000;
    color: #FFFFFF;
    width: auto;
    height: auto;
}

.offres > div > .img {
    width:100%;
    height:calc(var(--width-content) * 2 / 5);
    border-radius:10px;
    overflow:hidden;
}

.offres.offres-v2 > div > .img {
    height:calc((var(--width-content) - 40px) / 3);
}

.offres > div > .img img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

.offres > div > h4 {
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
    margin-top:5px;
    text-align:center;
}

.offres > div > p {
    color: #000;
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
    text-align:center;
}

.offres > div > .online {
    position:absolute;
    top:0;
    right:0;
    transform:translate(-10px,10px);
    background:green;
    color:white;
    padding:3px 8px;
    border-radius:8px;
}

.offer-page {
    margin-top:35px;
}

.offer-page .img {
    position:relative;
    width:100%;
    height:var(--width-content);
    max-width:400px;
    max-height:400px;
    margin-left:auto;
    margin-right:auto;
}

.offer-page .img img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    border-radius:10px;
}

.offer-page .img .category {
    color: #fafafa;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
    padding:9px 20px;
    border-radius: 30px;
    background: #4C39B2;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translate(-50%,50%);
}

.offer-page .img .waiting {
    position:absolute;
    right:0;
    top:0;
    transform:translate(10px,-10px);
    padding:5px 15px;
    border-radius: 30px;
    background: #E4861A;
    display:flex;
    flex-wrap:wrap;
    width:max-content;
    align-items:center;
}

.offer-page .img .waiting > img {
    width:30px;
    margin-right:10px;
}

.offer-page .img .waiting > p {
    color: #fafafa;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
}

.offer-page > p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    margin-top:20px;
    text-align:center;
}

.offer-page > .img {
    margin-bottom:40px;
}

.offer-page > h2 {
    color: #000;
    font-size: 25px;
    font-weight: 700;
    line-height: 33px; /* 132% */
    letter-spacing: 0.25px;
    text-align:center;
}

.qrcode {
    width:100%;
    max-width:130px;
    display:block;
    margin-left:auto;
    margin-right:auto;
}

.identifiants {
    margin-top: 20px;
}

.identifiants > p {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-align:center;
}

.identifiants > p strong {
    font-weight: 600;
    color:#000;
}

a.gestion {
    margin-top:20px;
    color: var(--color-3);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px; /* 112.5% */
    text-transform: uppercase;
    display:block;
    text-align:center;
    width:max-content;
    margin-left:auto;
    margin-right:auto;
}

.links-account {
    margin-top:20px;
    background:#ffffff;
    border-radius:10px;
    padding:10px;
}

.links-account > a {
    display:flex;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    align-items:center;
    margin-top:5px;
    position:relative;
    border-bottom:1px solid #e5e5e5;
    padding-top:8px;
    padding-bottom:13px;
}

.links-account > a:first-child {
    margin-top:0;
}

.links-account > a:last-child {
    border-bottom:none;
    padding-bottom:8px;
}

.links-account > a:after {
    position:absolute;
    right:0;
    top:50%;
    transform:translate(0,-50%);
    content:"\f054";
    font-family:"FontAwesome";
    font-size:17px;
    color:#CCCCCC;
}

.links-account > a > span, .links-account > a > img {
    font-size:27px;
    width:32px;
    height:32px;
    margin-right:12px;
}

.links-account > a > span {
    text-align:center;
    color:var(--color-3);
}

.links-account > a > img {
    object-fit:contain;
    object-position:center;
}

.links-account > a > p {
    width:calc(100% - 44px);
}

.seller-element {
    width:100%;
    max-width:370px;
    margin-left:auto;
    margin-right:auto;
}

.seller-element .flex {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.seller-element .flex .left {
    width: calc((100% - 25px) * 5 / 10);
    margin-left: 0;
    margin-right: auto;
}

.seller-element .flex .left .img {
    width:100%;
}

.seller-element .flex .left .img img {
    width:100%;
    display:block;
}

.types_seller {
    display:flex;
    flex-wrap:wrap;
    margin-top:10px;
}

.types_seller > div {
    width:max-content;
    margin-right:10px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.types_seller > div:last-child {
    margin-right:0;
}

.types_seller > div span {
    font-size:15px;
    color:var(--color-3);
    width:20px;
    text-align:center;
    margin-right:3px;
}

.types_seller > div p {
    color: #7A7A7A;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px; /* 200% */
    letter-spacing: 0.09px;
}

.seller-element .flex .right {
  width: calc((100% - 25px) * 5 / 10);
  margin-left: auto;
  margin-right: 0;
}

.seller-element .flex .right .content {
    width:max-content;
    max-width:100%;
    margin-left:auto;
    margin-right:0;
}

.seller-element .site {
    margin-top:10px;
    color: #7A7A7A;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
    text-align:center;
}

.account-infos {
    background:#ffffff;
    border-radius:10px;
    padding:20px 10px;
    margin-top:20px;
}

table.table-custom {
    margin-top:10px;
    background:white;
    border-radius:10px;
    overflow:hidden;
    width:100%;
    border-collapse:collapse;
}

table.table-custom thead, table.table-custom tfoot {
    border-radius:10px 10px 0 0;
    background: var(--color-3);
    color:white;
}

table.table-custom td, table.table-custom th {
    padding:18px 10px;
    text-align:left;
}

table.table-custom td, table.table-custom td a {
    color: #000;
    font-size: 13px;
    font-weight: 400;
}

table.table-custom th {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px; /* 137.5% */
    letter-spacing: 0.16px;
}

table.table-custom tbody tr {
    border-bottom:1px solid var(--color-3);
}

table.table-custom tbody tr:last-child {
    border-bottom:0;
}

table.table-custom td a.pdf {
    padding-left:25px;
    position:relative;
}

table.table-custom td a.pdf:before {
    position:absolute;
    top:50%;
    left:0;
    transform:translate(0,-50%);
    content:"\f1c1";
    font-family:"FontAwesome";
    color:var(--color-3);
    font-size:22px;
}

table.table-custom.one-on-two-color tr:nth-child(2n) {
    background:#E9F3F8;
}

#qr-canvas {
  margin: auto;
  width: 100%;
  max-width: 400px;
  display:block;
  margin-top:30px;
  height: calc(100vh - 345px);
  min-height:200px;
  background:url("/media/background/scan-illustration.png") no-repeat;
  background-size:contain;
  background-position:center;
}

#qr-canvas.qr-gift {
    height: calc(100vh - 375px);
    background:url("/media/background/scan-gift-card.png") no-repeat;
    background-size:contain;
    background-position:center;
}

#btn-scan-qr, a.saisie_manuelle {
  color: #32A4DA;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    cursor:pointer;
    margin-left:auto;
    margin-right:auto;
    width: 170px;
    min-width: max-content;
    max-width: calc(100% - 60px);
    padding: 12px 30px;
    border-radius: 19px;
    background: #FFF;
    backdrop-filter: blur(15px);
    margin-top:20px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.08);
}

#qr-result {
  font-size: 1.2em;
  margin: 20px auto;
  padding: 20px;
  max-width: 700px;
  background-color: black;
  color:white;
}

.pot-and-qr-code {
    display:flex;
    flex-wrap:wrap;
    margin-top:20px;
}

.pot-and-qr-code > div {
    padding:15px;
    width:calc((100% - 15px) / 2 - 30px);
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-left:15px;
    position:relative;
}

.pot-and-qr-code > div:nth-child(2n + 1) {
    margin-left:0;
}

.pot-and-qr-code > div > h4 {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
    text-align:center;
}

.pot-and-qr-code > div > p {
    color: #000;
    font-size: 9px;
    font-weight: 400;
    line-height: 18px; /* 200% */
    letter-spacing: 0.09px;
    text-align:center;
}

.pot-and-qr-code > div > .ammount, .one-card > .ammount {
    width:100%;
    height:calc((var(--width-content) - 15px) / 2 - 30px);
    max-width:140px;
    max-height:140px;
    border-radius:100%;
    margin-left:auto;
    margin-right:auto;
    position:relative;
    background:#ffffff;
    margin-top:15px;
}

.pot-and-qr-code > div > .ammount > #lottie-container {
    position:absolute;
    z-index:4;
    background:white;
    opacity:1;
    transition:0.3s;
    width:calc(100% - 10px);
    height:calc(100% - 10px);
    top:0;
    left:50%;
    transform:translate(-50%,0);
}

.pot-and-qr-code > div > .ammount > #ammount_supp {
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translate(-50%,0);
    z-index:5;
    background:white;
    border:1px solid #ccc;
    border-radius: 8px;
    opacity:1;
    transition:0.3s;
    width:max-content;
    min-width:calc(40% - 22px);
    height:max-content;
    text-align:center;
    padding:3px 10px;
    font-size:10px;
    font-weight:600;
}

.one-card > .ammount {
    height:var(--width-content);
}

.pot-and-qr-code > div > .ammount p, .one-card > .ammount p {
    color: var(--second-color);
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    line-height: 21px; /* 100% */
    letter-spacing: 0.18px;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:3;
}

.ammount > svg {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index:5;
}

@keyframes dash {
    from {
      stroke-dashoffset: -320;
    }
    to {
      stroke-dashoffset: 0;
    }
}

.ammount > svg.cercle-percent > path {
    stroke-dasharray: 320;
    stroke-dashoffset: 0;
    animation: dash 1s linear;
}

.pot-and-qr-code > div.pot > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10;
}

.pot-and-qr-code > div > img {
    width:100%;
    margin-top:20px;
    max-width:140px;
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.pot-and-qr-code > div > .information, .pot-and-qr-code > div > .information a {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    margin-top:10px;
}

.pot-and-qr-code > div > .information strong {
    font-weight:600;
    color:#000;
}

.manual-input {
    min-height: calc(100vh - 263px);
}

.manual-input.add-gift-card-manual {
    min-height: calc(100vh - 563px);
}

.manual-input form {
    margin-top:30px;
}

form .errors {
    color:red;
    margin-top:10px;
}

.customers-found {
    margin-top:30px;
}

.customers-found > div {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    padding: 10px;
    position: relative;
    width: calc(100% - 22px);
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border-top: 15px solid var(--main-color) !important;
}

.customers-found > div:first-child {
    margin-top:0;
}

.customers-found > div > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.customers-found > div > p {
    margin-top:10px;
}

.customers-found > div > p:first-child {
    margin-top:0;
}

.customers-found > div > p strong {
    color:#000;
}

.customers-found > .error {
    color:red;
    text-align:center;
}

.dashboard-block {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
    padding:12px;
    width:calc(100% - 24px);
    max-width:400px;
    margin-left:auto;
    margin-right:auto;
    margin-top:30px;
}

.dashboard-block h4 {
    margin-bottom:10px;
}

.dashboard-block .montant {
    position:relative;
}

.dashboard-block .montant .dates {
    color: #000;
    text-align: right;
    font-family: Poppins;
    font-size: 9px;
    font-style: italic;
    font-weight: 500;
    margin-bottom:10px;
}

.dashboard-block .montant > p {
    color: var(--color-3);
    font-family: Poppins;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    text-align: right;
}

.dashboard-block .montant > .details_montant {
    position:absolute;
    bottom:0;
    left:0;
    max-width:50%;
}

.dashboard-block .montant > .details_montant > p {
    font-size:10px;
    line-height:15px;
    font-weight:400;
}

.dashboard-block .montant > .details_montant > p > span {
    font-weight:700;
    color:#1F82B1;
}

.form-achat {
    margin-top:20px;
}

form.form-achat dt label {
    color:var(--main-color);
}

form.form-achat select, form.form-achat input[type="text"], form.form-achat input[type="password"], form.form-achat input[type="number"], form.form-achat textarea {
  border:1px solid var(--main-color);
  box-shadow:none;
  border-radius: 12px;
}

form.form-achat #ammount-element {
    width:200px;
    padding-right:40px;
    position:relative;
}

form.form-achat #ammount-element:after {
    content:"€";
    position:absolute;
    top:50%;
    right:0;
    transform:translate(0,-50%);
    color: #1F82B1;
    font-size: 30px;
    font-weight: 700;
    line-height: 18px; /* 60% */
    letter-spacing: 0.3px;
}

form.form-achat h4 {
    display:flex;
    font-family: Montserrat;
    flex-wrap:wrap;
    width:100%;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 150% */
    text-transform: uppercase;
    align-items:center;
    margin-top:30px;
    margin-bottom:20px;
}

form.form-achat h4 #remaining_ammount {
    color: var(--second-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 21px; /* 120% */
    letter-spacing: 0.15px;
    margin-left:5px;
}

.means-payment {
    display:flex;
    flex-wrap:wrap;
}

.means-payment > div {
    border-radius: 7px;
    border: 1px solid var(--main-color);
    background: #D4E7EF;
    padding:8px;
    width:calc((100% - 39px) / 3 - 18px);
    max-width:80px;
    text-align:center;
    color:var(--main-color);
    margin-right:13px;
    margin-top:13px;
    transition:0.5s;
    cursor:pointer;
    position:relative;
}

.means-payment.only-three > div {
    width:calc((100% - 16px) / 3 - 14px);
    padding:6px;
    margin-right:8px;
    position:relative;
}

.means-payment.only-three > div:last-child {
    margin-right:0;
}

.means-payment.only-three > div > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.means-payment > div.active {
    background:#7BB6D1;
}

.means-payment > div.not_usable {
    cursor:default;
    background: #ddd;
    border:1px solid #666;
}

.means-payment > div p {
    color: var(--main-color);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px; /* 163.636% */
    margin-bottom:7px;
    transition:0.5s;
}

.means-payment > div.active p {
    color:white;
}

.means-payment > div.not_usable p {
    color:#666;
}

.means-payment > div .ammount {
    color: var(--second-color);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px; /* 120% */
    letter-spacing: 0.15px;
    transition:0.5s;
}

.means-payment.only-three > div .ammount {
    font-size: 12px;
    line-height: 14px;
}

.means-payment > div.active .ammount {
    color:white;
}

.means-payment > div.not_usable .ammount {
    color:#666;
}

.means-payment > div .number_value {
    border-radius:100%;
    padding:2px;
    background:white;
    border:1px solid var(--main-color);
    font-size:14px;
    line-height:14px;
    font-weight:600;
    color:var(--main-color);
    width:14px;
    height:max-content;
    text-align:center;
    position:absolute;
    top:0;
    right:0;
    transform:translate(5px,-5px);
}

.confirm-purchase a.important {
    margin-top:30px;
    background:#32A05F;
}

.confirmation {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px; /* 150% */
    margin-top:10px;
}

form .conditions {
    color: var(--main-color);
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.summary-offer h3 {
    margin-top:20px;
}

.summary-offer h3:first-child {
    margin-top:0;
}

.summary-offer p, .summary-offer .img {
    margin-top:10px;
    display:block;
}

.summary-offer p {
    padding:10px;
    background:white;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
}

.summary-offer .img {
    border-radius: 10px;
    overflow:hidden;
    width:100%;
    height:var(--width-content);
    max-width:400px;
    max-height:400px;
}

.summary-offer .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.white-block {
    background: #FFF;
    border-radius:10px;
    padding:10px;
    margin-top:20px;
}

.white-block > * {
    margin-top:15px;
}

.white-block > *:first-child {
    margin-top:0;
}

.white-block > p {
    color: #000;
    font-family: Poppins;
    font-size: 13px;
    font-weight: 400;
}

.white-block > a {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
}

.white-block > a > span {
    color: var(--main-color);
    width:20px;
    text-align:center;
    font-size:16px;
}

.white-block > a > p {
    color: var(--main-color);
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    margin-left:12px;
}

.flex-notif {
    display:flex;
    flex-wrap:wrap;
}

.flex-notif > p {
    color: #000;
    font-family: Poppins;
    font-size: 13px;
    font-weight: 400;
    width:calc(100% - 50px);
}

.flex-notif > #all-notifications {
    margin-left:auto;
    margin-right:0;
    cursor:pointer;
}

.flex-notif > #all-notifications > span {
    width:30px;
    height:30px;
    position:relative;
    display:block;
}

.flex-notif > #all-notifications > span:before {
    margin-left:auto;
    margin-right:0;
    content:"\f204";
    font-family:"FontAwesome";
    color: #7A7A7A;
    width:30px;
    font-size:25px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.flex-notif > #all-notifications.active > span:before {
    content:"\f205";
    color:var(--main-color);
}

.notifications {
    border-top:1px solid var(--color-3);
    padding-top:15px;
}

.notifications > div {
    margin-top:15px;
    cursor:pointer;
    display:flex;
    align-items:center;
}

.notifications > div:first-child {
    margin-top:0;
}

.notifications > div > p {
    margin-left:0;
    margin-right:auto;
    color: #7A7A7A;
    font-family: Poppins;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.notifications > div.active > p {
    color:var(--main-color);
}

.notifications > div > span {
    width:30px;
    height:30px;
    position:relative;
}

.notifications > div > span:before {
    margin-left:auto;
    margin-right:0;
    content:"\f204";
    font-family:"FontAwesome";
    color: #7A7A7A;
    width:30px;
    font-size:25px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.notifications > div.active > span:before {
    content:"\f205";
    color:var(--main-color);
}

.fields > div {
    padding-top:5px;
    padding-bottom:5px;
    border-bottom:1px solid #CCC;
}

.fields > div:first-child {
    padding-top:0;
}

.fields > div:last-child {
    padding-bottom:0;
    border-bottom:none;
}

.fields > div > p {
    color: #7A7A7A;
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.fields > div > h3 {
    color: var(--main-color);
    font-size: 10px;
    font-weight: 500;
    line-height: 18px; /* 180% */
}

.fields > div > .not-verified {
    display:block;
    width:max-content;
    background:#E4861A;
    color:white;
    padding:3px 10px;
    border-radius:7px;
    margin-top:10px;
    font-size:10px;
}

.img-card {
    width:400px;
    max-width:100%;
    margin-top:30px;
    display:block;
    margin-left:auto;
    margin-right:auto;
}

form dd#invoice-element, form .form-element-radio dd {
    display:flex;
    flex-wrap:wrap;
}

form dd#invoice-element > label, form .form-element-radio dd > label {
    margin-right:30px;
}

form dd#invoice-element > label > input, form .form-element-radio dd > label > input {
    margin-right:5px;
}

form dd#invoice-element > br, form .form-element-radio dd > br {
    display:none;
}

form .form-element-ammount dd {
  width: 200px;
  padding-right: 40px;
  position: relative;
}

form .form-element-ammount dd::after {
  content: "€";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.3px;
}

.page-buy-gift-card .next, .page-buy-gift-card .back {
    position:absolute;
    bottom:0;
    right:calc((100% - var(--width-content)) / 2);
    color: #7A7A7A;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    text-transform: uppercase;
    cursor:pointer;
    display:flex;
    align-items:center;
}

.page-buy-gift-card .back {
    right:auto;
    left:calc((100% - var(--width-content)) / 2);
}

.page-buy-gift-card .next span, .page-buy-gift-card .back span {
    font-size:20px;
    margin-left:10px;
}

.page-buy-gift-card .back span {
    margin-left:0;
    margin-right:10px;
}

.quantity_p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    margin-top:30px;
    margin-bottom:20px;
}

.quantity_p span {
    color:var(--color-3);
}

.gift_card_fields {
    border-top:1px solid var(--color-3);
    padding-top:20px;
    margin-bottom:20px;
}

.gift_card_fields#gift_card_field_1 {
    border-top:none;
    padding-top:0;
}

.gift_card_fields > .white-block {
    margin-top:0;
}

#qrcode_slide {
    position:fixed;
    bottom:0;
    left:0;
    height:calc(100vh);
    transform:translate(0,100%);
    transition:0.5s;
    background:var(--second-color);
    z-index:1001;
}

#qrcode_slide .close {
    width:20px;
    height:20px;
    cursor:pointer;
    margin-top:30px;
    padding:5px;
    color:white;
    margin-left: auto;
    margin-right: 0;
    display: block;
    position:relative;
}

#qrcode_slide .close:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('/media/icons/close.png') no-repeat;
    background-size:contain;
    background-position:center;
}

#qrcode_slide h1 {
    color:white;
    margin-top:20px;
}

#qrcode_slide .card-qr {
    width:calc(100% - 40px);
    height:calc(var(--width-content) - 40px);
    max-width:320px;
    max-height:320px;
    margin-left:auto;
    margin-right:auto;
    margin-top:30px;
    background:white;
    position:relative;
    padding:20px;
    border-radius:10px;
}

#qrcode_slide .card-qr .content {
    width:max-content;
    height:max-content;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

#qrcode_slide .card-qr .content > * {
    z-index:1;
    position:relative;
}

#qrcode_slide .card-qr .background {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
    background:url('/media/background/etoiles_bg.svg') repeat;
    background-size:90px;
    opacity:0.2;
}

#qrcode_slide .card-qr .content .img {
    width:170px;
    margin-left:auto;
    margin-right:auto;
}

#qrcode_slide .card-qr .content .img img {
    width:100%;
}

#qrcode_slide .card-qr .content .name, #qrcode_slide .card-qr .content .id {
    font-weight:600;
    margin-top:20px;
    text-align:center;
    background:white;
    margin-left:auto;
    margin-right:auto;
    padding:2px 5px;
    width:max-content;
}

.pot-and-qr-code > div > p.id {
    font-size: 12px;
    font-weight: 500;
    margin-top:20px;
}

form.form-login dt#remember_me-label {
    display:block;
}

form .form-checkbox .form-group-element {
    display:flex;
    flex-wrap:wrap;
}

form .form-checkbox .form-group-element dd {
    width:max-content;
    display:inline-block;
}

form .form-checkbox .form-group-element dt {
    margin-left:5px;
    margin-bottom:0;
    display:inline-block;
}

form .form-checkbox .form-group-element dt label {
    color:#4a4a4a;
    text-transform:none;
    font-weight:400;
    font-size:13px;
}

.message_inscription {
    margin-top:20px;
}

.add-card {
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    padding:10px 15px;
    width:calc(100% - 30px);
    max-width:400px;
    margin-left:auto;
    margin-right:auto;
    color: var(--main-color);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
}

.add-card > img:first-child {
    margin-right:15px;
    width:25px;
}

.add-card > img:last-child {
    margin-left:auto;
    width:10px;
    margin-right:0;
}

.white-block.contact-block > p {
    font-size:14px;
    line-height:20px;
}

.white-block.contact-block > a > span {
    width: 24px;
    font-size: 20px;
}

.white-block.contact-block > a > p {
  font-size: 16px;
  line-height:24px;
  margin-left: 12px;
}

.auth-page .link-subscription-login > a {
    font-weight:500;
}

form.form-login > .form-checkbox {
    margin-top:80px;
}

form.form-login > .form-button-login {
    margin-top:8px;
}

ul.pagination-pages {
    display:flex;
    flex-wrap:wrap;
    margin-top:20px;
    margin-left:auto;
    margin-right:auto;
    width:max-content;
    max-width:100%;
}

ul.pagination-pages > li {
    margin: 3px 0;
    line-height: 26px;
    vertical-align: middle;
    width: 25px;
}

ul.pagination-pages .pagination-pages-previous, ul.pagination-pages .pagination-pages-next {
    padding: 0 10px;
    width: auto;
}

ul.pagination-pages li {
    margin-left:5px;
}

ul.pagination-pages li:first-child {
    margin-left:0;
}

.pagination-pages li a {
    color:var(--color-3);
    margin-left:auto;
    margin-right:auto;
    display:block;
    width: calc(100% - 10px);
    padding:0 5px;
    font-size:16px;
    line-height: 26px;
    font-weight: 500;
    text-align:center;
}

.pagination-pages li.pagination-pages-previous a, .pagination-pages li.pagination-pages-next a {
    width: 100%;
    padding:0;
}

.pagination-pages .page-count-active {
    background: #666666;
    border: 1px solid #666666;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
}

.pagination-pages .page-count-active {
    background: var(--color-3);
    border: 1px solid var(--color-3);
    color:white;
}

.popup {
    position:fixed;
    top:0;
    left:0;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index:1000;
}

.popup .close-popup {
    position:absolute;
    top:25px;
    right:25px;
    height:30px;
    width:30px;
    background:white;
    border-radius:100%;
    cursor:pointer;
    z-index: 10;
}

.popup .close-popup span {
    color:black;
    font-size:18px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.popup .content {
    position:absolute;
    top:50%;
    left:50%;
    height:max-content;
    transform:translate(-50%,-50%);
}

.popup img {
    display:block;
    width:60%;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:20px;
}

.popup p {
    text-align:center;
    color:white;
    margin-bottom:20px;
}

.popup #notifications {
    padding:5px 20px;
    background:white;
    width:max-content;
    margin-left:auto;
    margin-right:auto;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

form.paiement_monetico dd, form.paiement_monetico dt {
    margin-bottom:0;
}

form.paiement_monetico dt {
    height:0;
}

form.paiement_monetico input[type=submit] {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:max-content;
    min-width:170px;
    max-width:calc(100% - 60px);
    padding:12px 30px;
    border-radius: 30px;
    background: #32A05F;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.08);
    color: #fafafa;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
    text-align:center;
    height: max-content;
    border:none;
    cursor:pointer;
}

.form-date-dashboard {
    margin-top:10px;
}

.form-date-dashboard .form-group {
    display:flex;
    flex-wrap:wrap;
    width:max-content;
    margin-left:0;
    margin-right:auto;
    align-items:end;
}

.form-date-dashboard .form-group .form-group-element {
    width:max-content;
    margin-left:20px;
}

.form-date-dashboard .form-group .form-group-element:first-child {
    margin-left:0;
}

.form-date-dashboard dt {
    margin-bottom:5px;
}

.form-date-dashboard dd {
    margin-bottom:0;
}

.form-date-dashboard label {
    font-size: 11px;
}

.form-date-dashboard input[type="text"] {
    width:64px;
    font-size:12px;
    border-radius:0;
    padding: 5px 8px;
}

.form-date-dashboard button {
    width:max-content;
    max-width:max-content;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
}

.delete-account {
    color:#d80000;
    text-align:center;
    position:absolute;
    bottom:100px;
    left:50%;
    transform:translate(-50%,0);
    width:max-content;
    display:block;
    font-weight: 400;
}

.form-confirm {
    margin-top:0;
}

.form-confirm #token-label, .form-confirm #token-element, .form-confirm #question-label, .form-confirm #validate-label {
    display:none;
}

.form-confirm #question-element {
    text-align:center;
    color:var(--second-color);
}

.form-confirm #validate-element {
    margin-left:auto;
    margin-right:auto;
    width:100%;
}

.form-confirm #validate-element {
    color:#f7f7f7;
}

.form-confirm #validate-element input {
    display:block;
    width:max-content;
    margin-left:auto;
    margin-right:auto;
    min-width:170px;
    max-width:calc(100% - 60px);
    padding:12px 30px;
    border-radius: 30px;
    background: #ee404c;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.08);
    color: #fafafa;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
    text-align:center;
    height: max-content;
    border:none;
    cursor:pointer;
}

.form-confirm #validate-element .cancel {
     display:block;
    width:max-content;
    margin-left:auto;
    margin-right:auto;
    min-width:120px;
    max-width:calc(100% - 40px);
    padding:8px 20px;
    border-radius: 30px;
    background: white;
    box-shadow: 0px 0 3px 0px rgba(0, 0, 0, 0.12);
    color: var(--color-3);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
    text-align:center;
    height: max-content;
    border:none;
    cursor:pointer;
    text-transform:capitalize;
}

/* Media query pour le mode sombre */
@media (prefers-color-scheme: dark) {
  /* Aucun style spécifique au mode sombre */
  * {
    forced-color-adjust: none !important;
  }

  body {
    background-color: white !important;
    color: black !important;
  }
}

#password-element {
    position:relative;
}

#password-element .eye {
    position:absolute;
    top: 9px;
    right:15px;
}

#password-element .eye:after {
    content:"\f06e";
    color:#AAA;
    font-family:"FontAwesome";
    font-size:22px;
    cursor:pointer;
}

#password-element .eye.close:after {
    content:"\f070";
}

#loader {
    min-height:calc(100vh - 130px);
}

#loader .loading, #loader > svg {
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%) !important;
    width: 120px !important;
    height: 120px !important;
}

#video_container {
    min-height: calc(100vh - 130px);
}

#video_container > video {
    position:absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%) !important;
    width: 120px !important;
    height: 120px !important;
}

.links_menu {
    display:flex;
    flex-wrap:wrap;
}

.links_menu a {
    width:max-content;
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.links_menu a span {
    font-size:40px;
    color:#7A7A7A;
    text-align:center;
    display:block;
    margin-left:auto;
    margin-right:auto;
}

.links_menu a h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0.01em;
    text-align: center;
    color:#7A7A7A;
}

.links_menu a.active span, .links_menu a.active h4 {
    color:#1F82B1;
}


@media all and (max-height:900px) {
    .auth-page.subscription-page .logo, .auth-page.login-page .logo {
        margin-bottom:20px;
    }
    
    .auth-page .link-subscription-login {
        margin-top:30px;
    }
}

@media all and (max-width:600px) { 
    .cards > div {
        width:100%;
        margin-right:0;
    }
    
    .cards > div:nth-child(2n) {
        margin-right:0;
    }
    
    .cards > div:nth-child(-n + 2) {
        margin-top:20px;
    }
    
    .cards > div:first-child {
        margin-top:0;
    }
    
    .cards-v2 > div {
        width:calc(100% - 30px);
        margin-right:0;
    }
    
    .cards-v2 > div:nth-child(2n) {
        margin-right:0;
    }
    
    .cards-v2 > div:nth-child(-n + 2) {
        margin-top:20px;
    }
    
    .cards-v2 > div:first-child {
        margin-top:0;
    }
    
    .offres > div {
        width:calc(var(--width-content) * 7 / 12);
    }
    
    .offres > div > .img {
        height:calc(var(--width-content) * 7 / 12);
    }
    
    table td, table td a {
        font-size: 11px;
    }
    
    table th {
        font-size: 12px;
        line-height: 19px; /* 137.5% */
    }
    
    .pot-and-qr-code.one-column > div {
        width:calc(100% - 30px);
        margin-left:0;
        margin-top:20px;
    }
    
    .pot-and-qr-code.one-column > div:first-child {
        margin-top:0;
    }
    
    .pot-and-qr-code.one-column > div > .ammount {
        height:var(--width-content);
    }
    
    table.table-custom th {
        font-size:13px;
    }
    
    table.table-custom td, table.table-custom td a {
        font-size: 11px;
    }
    
    table.table-custom td, table.table-custom th {
        padding:18px 6px;
    }
    
    .offres.offres-v2 > div {
        width:calc((var(--width-content) - 20px) / 2);
    }
    
    .offres.offres-v2 > div:nth-child(-n + 3) {
        margin-top:20px;
    }
    
    .offres.offres-v2 > div:nth-child(-n + 2) {
        margin-top:0;
    }
    
    .offres.offres-v2 > div:nth-child(3n) {
        margin-right:10px;
    }
    
    .offres.offres-v2 > div:nth-child(3n + 1) {
        margin-left:10px;
    }
    
    .offres.offres-v2 > div:nth-child(2n) {
        margin-right:0;
    }
    
    .offres.offres-v2 > div:nth-child(2n + 1) {
        margin-left:0;
    }
    
    .offres.offres-v2 > div > .img {
        height:calc((var(--width-content) - 20px) / 2);
    }
    
    ul.pagination-pages .pagination-pages-previous, ul.pagination-pages .pagination-pages-next {
      padding: 0 3px;
      font-size: 12px;
    }
    
    ul.pagination-pages > li {
      line-height: 20px;
      width: 16px;
      margin: 2px 0;
    }
    
    .pagination-pages li a {
      width: calc(100% - 6px);      
      padding: 0 3px;
      font-size: 12px;
      line-height: 20px;
    }
    
    .pagination-pages .page-count-active {
        font-size: 12px;
    }
    
    ul.pagination-pages li {
      margin-left: 3px;
    }
}