@charset "UTF-8";
.hide_footer {
  display: none;
}

/*-----------------------------------*/
/*-------- LOGIN/REGISTER -----------*/
/*-----------------------------------*/
.section-account {
  height: 100vh;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-account .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-account .container h1 {
  color: var(--dark-color);
  font-size: 41px;
  margin-bottom: 4.5rem;
}
.section-account .container .content {
  width: 100%;
  max-width: 330px;
}
.section-account .container .content .error {
  margin-top: 1rem;
  color: #912f2f;
}
.section-account .container .content .error-forgot {
  margin-bottom: 1rem;
  color: #912f2f;
}
.section-account .container .content .valid-forgot {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  line-height: 26px;
  color: var(--green-color);
}
.section-account .container .content .label_email {
  margin-bottom: 2rem;
  font-size: 15px;
  font-weight: 800;
  text-align: start;
}
.section-account .container .content .form-account {
  display: flex;
  flex-direction: column;
}
.section-account .container .content .form-account input[type=text], .section-account .container .content .form-account input[type=password], .section-account .container .content .form-account input[type=email] {
  margin-bottom: 1.5rem;
  box-shadow: none;
  background: var(--grey-color);
  border-radius: 2px;
  padding-top: 6px;
  padding-bottom: 2px;
  font-size: 14px;
}
.section-account .container .content .form-account .row {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.section-account .container .content .form-account .row .btn {
  border-radius: 7px;
  font-size: 16px;
}
.section-account .container .content .form-account .row .valider {
  padding: 11px 3rem 6px 3rem;
  text-transform: math-auto;
  font-weight: 800;
}
.section-account .container .content .form-account .row .creer-compte {
  background: var(--dark-color);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3px;
}
.section-account .container .content .forgot a {
  text-decoration: underline;
  font-size: 11px;
}
.section-account .container .content .form-forgot {
  margin-top: 2rem;
}
.section-account .container .content .form-forgot input {
  margin-bottom: 1.5rem;
  box-shadow: none;
  background: var(--grey-color);
  border-radius: 2px;
  padding-top: 6px;
  padding-bottom: 2px;
  font-size: 14px;
}
.section-account .container .content .form-forgot .valider {
  border-radius: 7px;
  font-size: 16px;
  padding: 11px 3rem 6px 3rem;
  text-transform: math-auto;
  font-weight: 800;
  background: var(--green-color);
  width: 100%;
}
.section-account .container .content .form-forgot .valider:hover {
  background: var(--dark-color);
}

/*--------------------------------*/
/*---------- ACCOUNT -------------*/
/*--------------------------------*/
.section-mon-compte {
  padding-top: calc(6rem + var(--header-height));
  display: flex;
}
@media screen and (max-width: 768px) {
  .section-mon-compte {
    flex-direction: column;
  }
}

/*--- Global Main Content ---*/
.mon-compte-content {
  margin-left: 270px;
  min-height: 650px;
  width: 100%;
  transition: all 1s;
  padding-right: 2rem;
  padding-left: 2rem;
}
.mon-compte-content select {
  box-shadow: none;
  border-radius: 11px;
  color: var(--dark-color);
  height: 32px;
  min-height: 32px;
  line-height: 43px;
  max-width: 450px;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  background: var(--color-content-bg-alt);
  border-color: var(--color-content-text);
  color: var(--color-content-text);
  box-shadow: 0px 0px 0px 2px var(--color-content-text);
}
.mon-compte-content h1 {
  color: var(--dark-color);
  text-align: start;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1000px) {
  .mon-compte-content {
    margin-left: 212px;
  }
}
@media screen and (max-width: 768px) {
  .mon-compte-content {
    margin-left: 0;
  }
  .mon-compte-content h1 {
    font-size: 21px;
    text-align: center;
  }
}

/*--- Mon Compte---*/
.mon-compte-menu {
  height: calc(100vh - 7rem - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 270px;
  position: fixed;
  transition: all 1s;
  margin-bottom: 3rem;
  /*-- Onglet --*/
  /*-- Sous onglet --*/
  /*-- Deconnexion --*/
}
.mon-compte-menu .menu {
  padding: 0 1rem;
}
.mon-compte-menu .onglet {
  border-radius: 5px;
  max-width: 210px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}
.mon-compte-menu .onglet a {
  border-radius: 5px;
  background: var(--light-grey-color);
  color: var(--dark-color);
  font-weight: 800;
  font-size: 18px;
  padding-top: 13px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mon-compte-menu .onglet a:hover {
  background: var(--dark-color);
  color: var(--light-grey-color);
}
.mon-compte-menu .onglet a.active {
  background: var(--dark-color);
  color: var(--light-grey-color);
}
.mon-compte-menu .onglet a.active .sous-onglet {
  display: block;
}
.mon-compte-menu .sous-onglet {
  display: none;
  padding: 0 1rem;
}
.mon-compte-menu .sous-onglet a {
  border: 2px solid var(--dark-color);
  background: transparent;
  border-radius: 5px;
  font-size: 12px;
  padding-top: 3px;
  padding-bottom: 1px;
}
.mon-compte-menu .row-deconnexion {
  padding: 0 1rem;
}
.mon-compte-menu .row-deconnexion .deconnexion {
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.mon-compte-menu .row-deconnexion .deconnexion a {
  background: var(--green-color);
  color: var(--dark-color);
}
@media screen and (max-width: 1000px) {
  .mon-compte-menu {
    max-width: 212px;
  }
}
@media screen and (max-width: 768px) {
  .mon-compte-menu {
    max-width: 768px;
    display: block;
    position: relative;
    height: auto;
  }
  .mon-compte-menu .onglet {
    max-width: 400px;
  }
}

/*----- Accueil -----*/
.mon-compte-accueil {
  margin-bottom: 2rem;
}
.mon-compte-accueil .bienvenue h1 {
  color: var(--dark-color);
  text-align: start;
  text-transform: uppercase;
}
.mon-compte-accueil h3 {
  font-weight: 700;
  margin-top: 3.5rem;
}
.mon-compte-accueil .table thead tr th {
  border-bottom: 2px solid red;
}
.mon-compte-accueil .row {
  /*-- Dernières commandes --*/
  /*-- Donnez votre avis /  Ces articles peuvent vous interresser --*/
}
.mon-compte-accueil .row .dernieres-commandes table {
  border: none;
  border-collapse: collapse;
  max-width: 900px;
}
.mon-compte-accueil .row .dernieres-commandes table thead tr {
  font-size: 15px;
}
.mon-compte-accueil .row .dernieres-commandes table thead tr th {
  border: 0 !important;
}
.mon-compte-accueil .row .dernieres-commandes table thead tr th.first {
  padding-left: 2rem;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr {
  background: var(--grey-color);
  font-weight: 900;
  font-size: 17px;
  height: 65px;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr td {
  border: 0 !important;
  font-weight: 600;
  vertical-align: middle;
  padding: 10px;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr td i {
  margin-left: 7px;
  font-size: 21px;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr td a {
  text-wrap: nowrap;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr td.bold {
  font-weight: 900;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr td.first {
  padding-left: 2rem;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr a.underline {
  display: none;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.mon-compte-accueil .row .dernieres-commandes table tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.mon-compte-accueil .row .dernieres-commandes table tbody .space {
  background: transparent;
  height: 20px;
}
@media screen and (max-width: 890px) {
  .mon-compte-accueil .row .dernieres-commandes .date, .mon-compte-accueil .row .dernieres-commandes .montant {
    display: none;
  }
  .mon-compte-accueil .row .dernieres-commandes .montant {
    display: none;
  }
  .mon-compte-accueil .row .dernieres-commandes tr .seconde {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .mon-compte-accueil .row .dernieres-commandes .montant {
    display: none;
  }
  .mon-compte-accueil .row .dernieres-commandes tbody tr {
    font-size: 11px !important;
  }
  .mon-compte-accueil .row .dernieres-commandes tbody tr .td-voir-details {
    text-align: center;
  }
  .mon-compte-accueil .row .dernieres-commandes tbody tr .td-voir-details a {
    width: 100%;
    display: block;
    padding: 1rem 1rem;
  }
  .mon-compte-accueil .row .dernieres-commandes tbody tr .td-voir-details a .underline {
    display: none;
  }
  .mon-compte-accueil .row .dernieres-commandes tbody tr .td-livraison {
    width: 100%;
  }
}
.mon-compte-accueil .row .donnez-votre-avis .cards, .mon-compte-accueil .row .ces-articles-peuvent .cards {
  display: flex;
  flex-wrap: wrap;
}
.mon-compte-accueil .row .donnez-votre-avis .cards .card, .mon-compte-accueil .row .ces-articles-peuvent .cards .card {
  width: 100%;
  max-width: 185px;
  border: 2px solid;
  border-radius: 7px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.mon-compte-accueil .row .donnez-votre-avis .cards .card .image img, .mon-compte-accueil .row .ces-articles-peuvent .cards .card .image img {
  height: 141px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 4px 0 0;
}
.mon-compte-accueil .row .donnez-votre-avis .cards .card .titre, .mon-compte-accueil .row .ces-articles-peuvent .cards .card .titre {
  border-top: 2px solid var(--dark-color);
  border-bottom: 2px solid var(--dark-color);
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  padding-top: 9px;
  padding-bottom: 5px;
}
.mon-compte-accueil .row .donnez-votre-avis .cards .card .btn, .mon-compte-accueil .row .ces-articles-peuvent .cards .card .btn {
  border-radius: 0px 0px 4px 5px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}
.mon-compte-accueil .row .donnez-votre-avis .cards .card .btn a, .mon-compte-accueil .row .ces-articles-peuvent .cards .card .btn a {
  background: var(--green-color) !important;
  color: var(--dark-color);
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 4px;
  border-radius: 0px 0px 4px 5px;
}
.mon-compte-accueil .row .donnez-votre-avis .cards .card .btn a:hover, .mon-compte-accueil .row .ces-articles-peuvent .cards .card .btn a:hover {
  background: var(--dark-color) !important;
  color: white !important;
}
@media screen and (max-width: 500px) {
  .mon-compte-accueil .donnez-votre-avis .card, .mon-compte-accueil .ces-articles-peuvent .card {
    max-width: 100% !important;
    margin-right: 0 !important;
    text-align: center;
  }
}

/*----- Profil -----*/
.mon-compte-profil h2 {
  color: var(--dark-color);
  text-align: start;
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-size: 26px;
}
.mon-compte-profil .card {
  max-width: 428px;
  width: 100%;
}
.mon-compte-profil .card .titre {
  background: var(--green-color);
  padding: 11px 1rem 4px 1rem;
  border-radius: 8px 8px 0 0;
}
.mon-compte-profil .card .titre h3 {
  font-weight: 800;
}
.mon-compte-profil .card .content {
  border-radius: 0 0 8px 8px;
  background: var(--light-grey-color);
  padding: 1rem;
  /* test */
}
.mon-compte-profil .card .content h4 {
  font-size: 17px;
}
.mon-compte-profil .card .content .row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 6px;
}
.mon-compte-profil .card .content .row .infos {
  display: flex;
}
.mon-compte-profil .card .content .row .infos .info {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.mon-compte-profil .card .content .row .infos .info .picto-poids {
  width: 14px;
}
.mon-compte-profil .card .content .row .infos .info .picto-taille {
  width: 17px;
  height: 19px;
  margin-right: 5px;
}
.mon-compte-profil .card .content .row .infos .info .picto-taille-pantalon {
  width: 12px;
  margin-right: 7px;
}
.mon-compte-profil .card .content .row .infos .info img {
  margin-right: 7px;
}
.mon-compte-profil .card .content .row .infos .info h5 {
  padding-top: 3px;
}
.mon-compte-profil .card .content .btn {
  text-wrap: nowrap;
  padding-top: 8px;
  display: flex;
  font-weight: 600;
  border-radius: 3px;
  justify-content: end;
}
.mon-compte-profil .card .content .btn a {
  background: white;
  padding: 5px 9px;
}
.mon-compte-profil .users-saved {
  margin-bottom: 2rem;
}
.mon-compte-profil .users-saved .titre {
  background: var(--dark-color) !important;
}
.mon-compte-profil .users-saved .titre h3 {
  color: white !important;
}
@media screen and (max-width: 768px) {
  .mon-compte-profil h1 {
    font-size: 21px;
    text-align: center;
  }
  .mon-compte-profil h2 {
    font-size: 19px;
    text-align: center;
  }
  .mon-compte-profil .card {
    max-width: 100%;
  }
  .mon-compte-profil .card .infos {
    margin-top: 5px;
  }
}
@media screen and (max-width: 450px) {
  .mon-compte-profil .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mon-compte-profil .btn {
    margin-top: 0.7rem;
    width: 100%;
  }
  .mon-compte-profil .btn a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.mon-compte-content {
  position: relative;
}

/*.mon-compte-content.animate{
    transform: translateX(0);
}*/
/*--- Profil: Mes informations personelles ---*/
/*--- Profil: Mes adresses ---*/
.mes-informations-personnelles .row, .mes-adresses .row, .mes-identifiants .row {
  display: flex;
  flex-direction: column;
}
.mes-informations-personnelles .row input, .mes-informations-personnelles .row a, .mes-adresses .row input, .mes-adresses .row a, .mes-identifiants .row input, .mes-identifiants .row a {
  max-width: 450px;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  font-weight: 600;
}
.mes-informations-personnelles .row label, .mes-adresses .row label, .mes-identifiants .row label {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
}
.mes-informations-personnelles .row a, .mes-adresses .row a, .mes-identifiants .row a {
  padding-top: 13px;
  padding-bottom: 9px;
  border-radius: 4px;
  text-transform: math-auto;
  font-weight: 900;
}

/*--- Profil: Mes identifiants et mot de passe ---*/
/*----- Commandes -----*/
.mon-compte-commandes .card {
  margin-bottom: 2rem;
  background: var(--grey-color);
  border-radius: 9px;
  padding: 1.5rem 2rem;
  max-width: 769px;
  display: flex;
  justify-content: space-between;
}
.mon-compte-commandes .card .column-infos h4 {
  font-weight: 900;
  margin-bottom: 0;
  font-size: 17.28px;
}
.mon-compte-commandes .card .column-infos .date {
  font-weight: 700;
  font-size: 12px;
}
.mon-compte-commandes .card .column-infos .produits {
  margin: 1.5rem 0;
}
.mon-compte-commandes .card .column-infos .produits h5 {
  padding: 0;
}
.mon-compte-commandes .card .column-infos .prix {
  font-size: 22px;
  font-weight: 900;
  margin-top: 2rem;
}
.mon-compte-commandes .card .column-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mon-compte-commandes .card .column-details .btn-detail {
  background: var(--dark-color);
  color: white;
  padding: 7px 3rem 4px 3rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.mon-compte-commandes .card .column-details .lien {
  margin-bottom: 6px;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  .mon-compte-commandes .card {
    flex-direction: column;
    align-items: center;
  }
  .mon-compte-commandes .card .column-infos {
    text-align: center;
    margin-bottom: 2rem;
  }
}

/*----- Détail commande ----*/
.mon-compte-detail-commande {
  width: 100%;
  max-width: 860px;
  transform: translateX(0%) !important;
  /*--- Barre titre ---*/
  /*--- Content ---*/
  /*--- Expedition / moyen de paiement ---*/
  /*--- Barre Prix ---*/
}
.mon-compte-detail-commande .titre {
  display: flex;
  justify-content: space-between;
  background: var(--dark-color);
  color: white;
  padding: 1rem 1rem;
  border-radius: 6px;
  font-weight: 900;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mon-compte-detail-commande .titre .commande {
  font-size: 19px;
  padding: 0.5rem;
}
.mon-compte-detail-commande .titre .statut {
  font-size: 15px;
}
.mon-compte-detail-commande .row {
  display: flex;
  /*-- Produits --*/
  /*-- Btns --*/
}
.mon-compte-detail-commande .row .column-produits {
  flex: 1;
}
.mon-compte-detail-commande .row .column-produits .card {
  border: 2px solid var(--dark-color);
  border-radius: 10px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.mon-compte-detail-commande .row .column-produits .card h4 {
  font-weight: 800;
  font-size: 18px;
}
.mon-compte-detail-commande .row .column-produits .card .info {
  font-weight: 600;
  margin-bottom: 9px;
  font-size: 15px;
}
.mon-compte-detail-commande .row .column-produits .card .pictos {
  display: flex;
  flex-wrap: wrap;
}
.mon-compte-detail-commande .row .column-produits .card .pictos .picto {
  display: flex;
  margin-top: 2px;
  align-items: baseline;
  width: 50%;
}
.mon-compte-detail-commande .row .column-produits .card .pictos .picto img {
  margin-right: 5px;
}
.mon-compte-detail-commande .row .column-produits .card .pictos .picto .genre-svg {
  width: 13px;
}
.mon-compte-detail-commande .row .column-produits .card .pictos .picto .poids-svg {
  width: 14px;
}
.mon-compte-detail-commande .row .column-produits .card .pictos .picto .taille-svg {
  width: 14px;
}
.mon-compte-detail-commande .row .column-produits .card .pictos .picto .taille-pant-svg {
  width: 11px;
}
.mon-compte-detail-commande .row .column-produits .card .pictos .picto h6 {
  padding-top: 1px;
  font-size: 16px;
}
.mon-compte-detail-commande .row .column-produits .matelas .cotes {
  display: flex;
}
.mon-compte-detail-commande .row .column-produits .matelas .cotes .cote {
  padding: 0 9px;
}
.mon-compte-detail-commande .row .column-produits .matelas .cotes .cote .info.label {
  margin-top: 1rem;
  font-weight: 800;
}
.mon-compte-detail-commande .row .column-produits .matelas .cotes .cote .picto-taille-pant {
  width: 100%;
}
.mon-compte-detail-commande .row .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 1rem;
}
.mon-compte-detail-commande .row .btns a {
  background: var(--dark-color);
  color: white;
  padding: 12px 19px 8px 19px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 3px;
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
}
.mon-compte-detail-commande .row-moyen-paiement {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 14px;
  margin-left: 1rem;
  margin-right: 1rem;
  align-items: end;
}
.mon-compte-detail-commande .prix {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border: 2px solid var(--dark-color);
  border-radius: 6px;
  margin-bottom: 3rem;
  padding: 1px 16px 1px 16px;
}
.mon-compte-detail-commande .prix h4 {
  font-weight: 900;
  font-size: 25px;
}
@media screen and (max-width: 930px) {
  .mon-compte-detail-commande .card .pictos .picto {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .mon-compte-detail-commande .row {
    flex-direction: column;
  }
  .mon-compte-detail-commande .row .column-produits {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 650px) {
  .mon-compte-detail-commande .row-moyen-paiement {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mon-compte-detail-commande .row-moyen-paiement .expedition {
    margin-bottom: 1rem;
  }
  .mon-compte-detail-commande .prix h4 {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 8px;
  }
}

/*--- Popup edit profil ---*/
.popup-content-edit-profil input[type=number], .popup-content-edit-profil input[type=text] {
  box-shadow: none;
  background: var(--grey-color);
  border-radius: 11px !important;
  color: var(--dark-color) !important;
  height: 43px !important;
  min-height: 43px !important;
  line-height: 43px;
}
.popup-content-edit-profil label {
  display: block;
  margin-bottom: 1rem;
}
.popup-content-edit-profil .email {
  background: var(--grey-color) !important;
}
.popup-content-edit-profil .label-radio {
  margin-bottom: 1rem;
}
.popup-content-edit-profil .label-radio div {
  margin: 6px 0px;
}
.popup-content-edit-profil .label-radio label {
  margin-bottom: 0;
}
.popup-content-edit-profil .titre {
  font-size: 18px !important;
  color: var(--dark-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px !important;
}
.popup-content-edit-profil .btn {
  background: var(--green-color);
  font-size: 14px !important;
  font-weight: 900 !important;
  color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-top: 20px;
  padding: 8px 29px;
  border-radius: 11px;
  line-height: 0;
  height: 43px;
  width: 100%;
}
.popup-content-edit-profil .btn:hover {
  background: var(--dark-color);
  color: white !important;
}
.popup-content-edit-profil .message_mdp_oublie {
  text-align: center;
  margin-top: 12px;
  margin-bottom: -5px;
  font-weight: 700;
  font-size: 12px;
}
.popup-content-edit-profil .remove-profil {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: -3rem;
  text-decoration: underline;
}