body {
    background-color: var(--first-light);
}
main {
    padding-top: 200px;
    width: 100%;
}
.commande_detail_title {
    margin-bottom: 30px;
}
/** Offre top **/
.offre {
    width: 100%;
    height: 45px;
    border-bottom: 2px solid var(--second-light);
    position: fixed;
    top: 80px;
    z-index: 1000;
    transition: 400ms linear;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    -moz-backdrop-filter: blur(30px);
}
.offre.scrolled {
    top: 0;
}
.offre .limit {
    text-align: center;
    width: calc(100% - 60px);
}
.offre h3 {
    color: var(--secondary-normal);
    font-family: var(--primary-font);
    font-size: 0.75em;
    font-weight: 300;
}
.menu:has(>.banner-operation)~main .offre {
    top: 160px;
}
.menu:has(>.banner-operation)~main .offre.scrolled {
    top: 0px;
}
/** Page **/
.dashboard-bloc-content {
    margin: 0px auto 0px auto;
    max-width: 1200px;
    width: calc(100% - 100px);
}
/** Top informations **/
.reduction {
    padding: 20px;
    background-color: var(--blue);
    margin-bottom: 50px;
    border-radius: var(--primary-border-radius);
    justify-content: space-around;
}
.reduction img {
    height: 40px;
    margin-right: 15px;
}
.reduction .arguments {
    width: 20%;
}
.reduction .arguments p {
    font-family: var(--primary-font);
    font-size: 0.75em;
    color: var(--black);
    font-weight: 300;
}
/** Products Informations **/
.category-list {
    margin-top: 80px;
}
.filtre {
    padding: 5px 7px 5px 15px;
    border: none;
    background-color: var(--secondary-normal);
    border-radius: 190px;
    cursor: pointer;
    width: max-content;
}
.filtre p {
    font-family: var(--primary-font);
    font-weight: 500;
    color: var(--white);
    font-size: 0.75em;
    margin-right: 15px;
}
.filtre img {
    height: 20px;
    transform: rotate(-90deg);
}
.dashboard-bloc-content .category-list:last-child {
    margin-bottom: 50px;
}
.product-card-list {
    position: relative;
    width: 100%;
    overflow: auto;
    padding: 30px 0px 30px 0px;
    overflow-y: hidden;
}
.product-card {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--primary-border-radius);
    width: auto;
    text-align: center;
    margin: 10px;
    height: 410px;
    padding: 30px;
    cursor: pointer;
    border: 1px solid var(--white);
    position: relative;
    width: 23.5%;
    margin: 0;
    margin-right: 2%;
}
.product-card:nth-child(4n) {
    margin-right: 0;
}
.product-card:nth-child(n+5) {
    margin-top: 20px;
}
.product-card:hover {
    box-shadow: none;
    border: 2px solid var(--blue);
}
.product-card img {
    margin-bottom: 15px;
    max-height: 140px;
}
.product-card img:first-child {
    margin: 10px 0px 20px 0px;
}
.product-card .product-colors {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-bottom: 25px;
}
.product-card .color-card {
    height: 15px;
    width: 15px;
    border-radius: 190px;
    margin: 0px 8px 0px 8px;
}
.product-card p {
    font-weight: 400;
    font-size: 0.750em;
    text-align: left;
}
.product-card p.product-title {
    font-weight: 600;
    font-size: 0.875em;
    font-family: var(--primary-font);
    margin-bottom: 10px;
}
.product-card p.price {
    font-size: 1.125em;
    color: var(--secondary-normal);
    font-weight: 400;
    font-family: var(--primary-font);
}
.product-card .min-price {
    margin-top: 20px;
}
.product-card .min-price img {
    height: 30px;
    margin: 0;
    margin-top: 10px;
}
/** Divider **/
.divider {
    height: 80px;
}
.waves {
    position: relative;
    width: 100%;
    height: 150px;
    z-index: 100;
    margin-bottom: -10px;
    background-color: var(--white);
}
.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax>use:nth-child(1) {
    animation-delay: -1s;
    animation-duration: 10s;
}
.parallax>use:nth-child(2) {
    animation-delay: -5s;
    animation-duration: 15s;
}
.parallax>use:nth-child(3) {
    animation-delay: -10s;
    animation-duration: 20s;
}
/** Informations **/
.bigmain {
    height: auto;
    background-color: var(--white);
    padding: 50px 0px 80px 0px;
}
.bigmain.grey {
    background-color: var(--first-light);
    padding: 50px 0px 100px 0px;
}
.bigmain_content {
    margin: 0px auto 0px auto;
    max-width: 1200px;
}
.bigmain .infos-reco-text {
    background-color: var(--first-light);
    width: 58%;
    padding: 40px;
    border-radius: var(--primary-border-radius);
}
.bigmain .infos-reco-text p {
    font-size: 0.875em;
    line-height: 1.2;
    font-weight: 300;
    margin-top: 10px;
}
.bigmain .infos-reco-text img {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--secondary-border-radius);
    padding: 15px;
    height: 55px;
    margin-bottom: 20px;
    border: 2px solid var(--blue);
}
.bigmain .infos-reco-img {
    width: 38%;
    height: auto;
    border-radius: var(--primary-border-radius);
}
.bigmain .infos-reco-img-first {
    background-image: url(../img/reconditionne/photo_phone.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bigmain .infos-reco-img-second {
    background-color: var(--first-light);
    padding: 40px;
    border-radius: var(--primary-border-radius);
}
.bigmain .faq p{
    font-family: var(--primary-font);
    font-size: 0.875em;
    font-weight: 200;
}
.bigmain .faq h3 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.563em;
    color: var(--hovered);
}
.bigmain .group_questions {
    width: 48%;
}
.bigmain .question {
    margin-top: 40px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    position: relative;
    
    border-radius: var(--primary-border-radius);
    padding: 25px 60px 25px 30px;
    border: 2px solid var(--white);
}
.bigmain .question p:first-child {
    font-family: var(--primary-font);
    font-size: 0.875em;
    font-weight: 200;
    line-height: 1.2;
}
.bigmain .question .response p:nth-child(2){
    padding-top: 20px;
}
.bigmain .question .response p {
    font-family: var(--secondary-font);
    font-size: 0.875em;
    font-weight: 300;
    margin-top: 10px;
    width: calc(100% - 80px);
}
.bigmain .bigmain_content.infos strong {
    display: inline-block;
    position: relative;
    z-index: 10;
    font-weight: 400;
}
.bigmain .bigmain_content.infos strong::before {
    background-color: rgba(0, 222, 186, 0.2);
    content: "";
    position: absolute;
    width: calc(100% + 6px);
    height: 80%;
    left: -3px;
    bottom: 2px;
    z-index: -1;
    transform: rotate(-2.5deg);
}
.bigmain .bigmain_content.infos>div:last-child{
    margin-top: 40px;
}
.bigmain .close_question {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--secondary-normal);
    padding: 10px;
    border-radius: 190px;
    height: 40px;
    cursor: pointer;
}
.bigmain .response {
    position: relative;
}
.bigmain .heart {
    position: absolute;
    right: -55px;
    bottom: -5px;
    border-left: 1px solid var(--blue);
    width: 100px;
    height: 90px;
    background: url(../img/assurance/heart.png) no-repeat;
    background-position: 0 0;
    cursor: pointer;
    transition: background-position 1s steps(28);
    transition-duration: 0s;
}
.bigmain .heart.is-active {
    transition-duration: 1s;
    background-position: -2800px 0;
}
/** Overlay informations **/
.overlay .infos-product-card h5 {
    font-family: var(--primary-font);
    font-weight: 400;
    color: var(--secondary-normal);
}
.overlay .infos-product-card p{
    font-size: 0.875em;
}
.overlay .infos-product-card p.product-title{
    margin-bottom: 10px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1em;
}
#dispo-store .dispo_mag div:first-child {
    max-width: 100%;
    margin-right: 0px;
}
#dispo-store .dispo_mag div.indisponible:first-child,
#dispo-store .dispo_mag div.disponible:first-child {
    margin-right: 20px;
}
#dispo-store .dispo_mag .dispo,
#dispo-store .dispo_mag .indispo {
    color: var(--black);
}
/** Informations Etat */
.check {
    height: 120px;
    width: 100%;
    border-radius: 20px;
    border: 4px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.check:hover {
    background-color: var(--first-light);
    cursor: pointer;
    border: 4px solid black;
}
.expertise {
    width: 20%;
}
.expertise p:nth-child(2) {
    font-family: var(--primary-font);
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    font-size: 0.875em;
}
.expertise p:last-child,
.grades p {
    font-family: var(--secondary-font);
    font-weight: 300;
    font-size: 0.875em;
    text-align: center;
}
.grades {
    margin: 50px 0px 0px 0px;
}
.check img {
    height: 60px;
}
.validation {
    margin-bottom: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid #F5F5F5;
}
.validation_title h6 {
    text-align: center;
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 1.563em;
    color: var(--hovered);
}
.validation_title p {
    text-align: center;
    font-family: var(--primary-font);
    font-size: 1.000em;
    font-weight: 200;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.grades p:nth-child(2) {
    font-size: 0.875em !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    padding: 10px 0px;
}
.cta_app {
    background-color: var(--secondary-normal);
    text-align: center;
    color: var(--white);
    top: inherit;
    padding: 10px;
    border-radius: var(--secondary-border-radius);
    cursor: pointer;
    width: 210px;
    position: relative;
    margin: 50px auto 0px auto;
}
.cta_app p {
    color: var(--white);
    font-weight: 600;
    font-family: var(--primary-font);
    font-size: 0.750em;
}
/** Modale Etat **/
.tabs_radio_etat {
    position: relative;
    background-color: var(--grey-apple);
    padding: 5px;
    border-radius: var(--primary-border-radius);
    width: 100%;
    margin-bottom: 30px;
}
.tabs_radio_etat input[type="radio"] {
    display: none;
}
.tabs_radio_etat label {
    width: 50%;
    padding: 10px 5px;
    color: var(--fourth-light);
    transition: color 0.15s ease-in;
    font-family: var(--secondary-font);
    font-size: 0.875em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.tabs_radio_etat input[type="radio"]:checked+label {
    color: var(--primary-pressed);
    z-index: 100;
    background-color: var(--white);
    border-radius: 10px;
}
#general-statement .commande_detail_title h5 {
    color: var(--black);
}
.accordionEtat {
    border-radius: var(--secondary-border-radius);
    overflow: hidden;
}
.accordeonEtat {
    font-family: var(--primary-font);
    width: 100%;
    overflow: hidden;
}
.accordionEtat-text {
    font-family: var(--primary-font);
    font-size: 0.875em;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 30px;
}
.accordeonEtat-label {
    padding: 20px 0px;
    font-weight: 400;
    font-size: 0.875em;
    color: var(--primary-pressed);
    cursor: pointer;
    border-top: 1px solid var(--second-light);
}
.accordeonEtat-content .Etat_title {
    font-family: var(--primary-font);
    font-weight: 300;
    color: var(--primary-pressed);
}
.accordeonEtat-label:checked {
    color: var(--secondary-normal);
}
.accordeonEtat-label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all .20s;
}
.accordeonEtat-content {
    max-height: 0;
    transition: all .20s;
    display: none;
}
input:checked+.accordeonEtat-label {
    color: var(--blue-pausecafe);
}
input:checked+.accordeonEtat-label::after {
    transform: rotate(90deg);
}
input:checked+.accordeonEtat-label~.accordeonEtat-content {
    max-height: 100vh;
    display: block;
}
.formation_list {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 500px;
    height: 100%;
    padding: 50px 30px;
    background-color: var(--white);
    overflow: auto;
}
.formation_list_accordeon .accordeonEtat input[type="radio"] {
    display: none;
}
.accordeonEtat-content p {
    font-family: var(--secondary-font);
    font-size: 0.875em;
    font-weight: 400;
    line-height: normal;
}
.accordeonEtat-content .formation_title {
    font-size: 0.875em;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-bottom: 5px;
}
.accordeonEtat-content .media_bloc {
    overflow: auto;
}
.accordeonEtat-content img,
.accordeonEtat-content video {
    margin-right: 10px;
    border-radius: 12px;

    max-width: 250px;
    max-height: 200px;
}
.etat_title {
    font-weight: 300;
    color: var(--primary-pressed);
    font-family: var(--primary-font);
    font-size: 0.875em;
    line-height: normal;
    margin-top: 20px;
}
.etat_description {
    font-family: var(--secondary-font);
    font-size: 0.875em;
    font-weight: 400;
    line-height: normal;
    margin-top: 15px;
}
/** Keyframes **/
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/** Responsive **/
@media screen and (max-width: 1300px) {
    .bigmain.grey {
        padding: 50px 0px 80px 0px;
    }
    .bigmain_content {
        width: calc(100% - 100px);
        margin-left: 50px;
    }
}
@media screen and (max-width: 1280px) {
    main {
        max-width: inherit;
    }
    .dashboard-bloc {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .dashboard-bloc-content {
        margin: 0px 50px 0px 50px;
    }
    .product-card-list {
        left: 0px;
        padding: 30px 0px;
    }
}
@media screen and (max-width:1200px){
    .product-card {
        width: 32%;
    }
    .product-card,
    .product-card:nth-child(4n) {
        margin-right: 2%;
    }
    .product-card:nth-child(3n) {
        margin-right: 0;
    }
    .product-card:nth-child(n+4) {
        margin-top: 20px;
    }
}
@media screen and (max-width:1100px){
    .reduction {
        flex-wrap: wrap;
        justify-content: space-around
    }
    .reduction .arguments {
        width: 49%;
        border-radius: var(--primary-border-radius);
        padding: 10px;
    }
    .reduction .arguments:nth-child(n+3) {
        margin-top: 10px;
    }
}
@media screen and (max-width: 940px) {
    .bigmain_content.faq > p,
    .bigmain_content.faq > h3 {
        text-align: center;
    }
    .bigmain_content.faq .questions {
        flex-wrap: wrap;
        margin-left: 50px;
    }
    .bigmain_content.faq .group_questions {
        width: calc(100% - 50px);
        text-align: left;
    }
    .bigmain .bigmain_content.infos>div:last-child {
        flex-direction: column-reverse;
        margin-top: 30px;
    }
    .bigmain .bigmain_content.infos>div:last-child .infos-reco-text,
    .bigmain .bigmain_content.infos>div:last-child .infos-reco-img {
        width: 100%;
    }
    .bigmain .bigmain_content.infos>div:last-child .infos-reco-img {
        height: 150px;
        margin-top: 20px;
    }
    .bigmain .bigmain_content.infos>div:last-child .infos-reco-img img {
        max-width: 300px;
        width: 100%;
    }
}
@media screen and (max-width:900px){
    .product-card {
        width: 49%;
    }
    .product-card,
    .product-card:nth-child(4n),
    .product-card:nth-child(3n) {
        margin-right: 2%;
    }
    .product-card:nth-child(2n) {
        margin-right: 0;
    }
    .product-card:nth-child(n+3) {
        margin-top: 20px;
    }

    .expertise-group {
        justify-content: space-between !important;
    }
    .expertise {
        width: 30%;
    }
}
@media screen and (max-width: 760px) {
    .bigmain .infos-reco-img {
        height: 150px;
        margin-top: 20px;
    }
    .bigmain .bigmain_content.infos > div {
        flex-direction: column;
    }
    .bigmain .bigmain_content.infos>div:first-child .infos-reco-img{
        background-size: 80%;
        background-color: var(--first-light);
        height: 250px;
    }
    .bigmain .infos-reco-text,
    .bigmain .infos-reco-img {
        width: 100%;
    }
    .bigmain_content.faq .questions {
        margin-left: 0px;
    }
    .bigmain_content.faq .group_questions {
        width: 100%;
    }
}
@media screen and (max-width:680px){
    .reduction {
        flex-direction: column;
        padding: 10px 20px;
    }
    .reduction .arguments {
        width: 100%;
        border-radius: 0px;
        border-bottom: 2px dotted var(--white);
        padding: 15px 10px;
    }
    .reduction .arguments:last-child {
        border-bottom: 0px;
    }
    .reduction .arguments:nth-child(n+3){
        margin-top: 0px;
    }
    .category-list > div:first-child {
        flex-direction: column;
    }
    .filtre {
        margin-top: 10px;
    }
}
@media screen and (max-width:640px){
    .product-card {
        width: 100%;
    }
    .product-card,
    .product-card:nth-child(4n),
    .product-card:nth-child(3n),
    .product-card:nth-child(2n) {
        margin-right: 0;
    }
    .product-card:nth-child(n+2) {
        margin-top: 20px;
    }
    .expertise-group {
        flex-direction: column;
        align-items: center;
    }
    .expertise {
        width: 100%;
        max-width: 220px;
    }
}
@media screen and (max-width: 470px) {
    .filtre {
        margin-right: auto;
        margin-left: auto;
    }
    .bigmain_content.faq .faq {
        width: calc(100% - 60px);
        margin-left: 30px;
    }
    .bigmain_content.faq>p,
    .bigmain_content.faq>h3 {
        padding-left: 30px;
        padding-right: 30px;
    }
    .bigmain_content.faq .question {
        padding: 25px 80px 25px 30px;
        border-radius: 0px;
    }
    .bigmain_content.faq .close_question {
        top: 15px;
        right: 15px;
    }
    .reduction {
        border-radius: 0px;
    }
    .dashboard-bloc-content {
        margin: 0px 0px 0px 0px;
        width: 100%;
        border-radius: 0px;
    }
    .product-card-list {
        padding: 30px;
    }
    .bigmain_content h6, 
    .category-list h6 {
        padding-left: 30px;
        padding-right: 30px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
    .bigmain_content {
        margin-left: 0;
        width: 100%;
    }
    .bigmain .infos-reco-text,
    .bigmain .infos-reco-img {
        border-radius: 0px;
    }
    .validation_title,
    .expertise-group,
    .grades {
        padding: 0px 30px;
    }
    .validation_title h6 {
        font-size: 1.250em;
        padding-left: 0px;
        padding-right: 0px;
    }
    .validation_title p {
        font-size: 0.875em;
    }
}
@media screen and (max-width: 460px) {
    .tabs_radio_etat {
        flex-direction: column;
    }
    .tabs_radio_etat label {
        width: 100%;
    }
}
@media screen and (max-width: 450px) {
    .offre .limit {
        width: calc(100% - 60px);
    }
}
@media screen and (max-width: 400px) {
    .bigmain_content.faq h3 {
        font-size: 1.25em;
    }
    .bigmain_content.faq .question p:first-child {
        font-size: 0.875em;
    }
    .offre {
        height: 70px;
    }
}
@media screen and (max-width:370px) {
    .grades p:nth-child(2) {
        display: flex;
        flex-direction: column;
    }
}