@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
section.countdown {
  display: flex;
  width: 100%;
  padding: 1.6rem;
  border: 4px solid #FBD6B7;
  border-radius: 0.8rem;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  section.countdown {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  section.countdown {
    width: 40%;
  }
}
section.countdown .countdown__section {
  width: 100%;
}
section.countdown .countdown__divider {
  position: relative;
  top: -0.25rem;
  font-size: 3.2rem;
  color: #698A9D;
}
section.countdown .countdown__section p {
  color: #698A9D;
  text-align: center;
}
section.countdown .countdown_number {
  margin-bottom: 0.4rem;
  font-size: 3.2rem;
}
section.countdown .countdown__text {
  font-weight: bold;
}

.searchMobile {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.searchMobile__searchBar {
  background-color: #22404E;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-radius: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.searchMobile--textarea {
  background-color: #22404E;
  border: none;
  width: 18rem;
  color: #FBD6B7;
  margin-left: 1.5rem;
  outline: none;
  margin-top: 2rem;
}
.searchMobile__search {
  color: #FBD6B7;
  margin: 0 0.5rem 0 0.1rem;
  cursor: pointer;
}
.searchMobile__filter {
  background-color: #FBD6B7;
  padding: 2rem;
  border-radius: 2.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.searchMobile__button {
  background-color: transparent;
  border: none;
}

.form__address-suggestion {
  text-align: left;
  margin-top: 2px;
  list-style: none;
}

#button__address-suggestion {
  background-color: #22404E;
  padding: 0.8rem 1.5rem;
  border-radius: 5rem;
  color: #FBD6B7;
  border: none;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}

.searchBar-suggestion {
  display: flex;
  justify-content: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.button--small {
  padding: 0.8rem 1.6rem;
  border-radius: 1.6rem;
  font-size: 1.6rem;
}
.button--medium {
  padding: 1.2rem 2.4rem;
  border-radius: 3.2rem;
  font-size: 1.7rem;
}
.button--large {
  padding: 1.2rem 4.8rem;
  border-radius: 3.2rem;
  font-size: 1.7rem;
}
.button--brown {
  background-color: #AD886D;
}
.button--blue {
  background-color: #22404E;
  color: #FBD6B7;
}
.button--fit {
  width: fit-content;
}
.button--text-blue {
  color: #22404E;
}
.button--text-light-blue {
  color: #A3BAC9;
}
.button--text-beige {
  color: #FBD6B7;
}
.button--shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.button__image {
  height: 2.8rem;
  margin-left: 0.8rem;
}
.button--clear {
  background-color: transparent;
  border: none;
}

.cardFile {
  display: flex;
  flex-direction: column;
  margin: 2rem 3.2rem;
  padding: 3rem 2.4rem;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4rem);
  align-items: center;
}
.cardFile__input {
  margin-bottom: 2rem;
}

.cardFile-modif {
  display: flex;
  flex-direction: column;
  margin: 2rem 3.2rem 0rem 3.2rem;
  padding: 3rem 2.4rem;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4rem);
  align-items: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  align-content: center;
  grid-gap: 3rem;
  margin-top: 2rem;
  position: relative;
  overflow-x: hidden;
}

.card {
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 75%;
  margin: 0 auto;
}
.card__content {
  padding: 1rem 1.5rem;
}
.card__title {
  font-size: 2.4rem;
  color: #22404E;
}
.card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 2rem 2rem 5rem 5rem;
}
.card__localisation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.card__localisation-icon {
  width: 2rem;
  height: 2rem;
}
.card__localisation-name {
  font-size: 2rem;
  color: #22404E;
}
.card__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.card__tag {
  border-radius: 0.8rem;
  background-color: #FBD6B7;
  padding: 0.7rem 1.2rem;
  margin: 2rem 0;
  text-align: center;
  color: #22404E;
  font-size: 1.6rem;
  max-width: 100%;
}
.card__label {
  cursor: pointer;
  caret-color: transparent;
  display: inline-flex;
}
.card__checkbox {
  display: none;
}
.card__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  margin-top: 1.5rem;
}
.card__buttons .card__button {
  align-self: center;
  cursor: pointer;
}
.card__buttons .card__button--path {
  transform-origin: center;
  transition: fill 0.3s ease-in-out, transform 0.1s linear;
}
.card__buttons .card__button--filled {
  fill: #FBD6B7;
  transform: scale(1.1);
}
.card__money {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card__money .card__price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-basis: 90%;
  gap: 2.1rem;
}
.card__money .card__price--title {
  font-size: 1.6rem;
  color: #22404E;
  width: 50%;
  text-align: right;
}
.card__money .card__price--text {
  font-size: 1.6rem;
  color: #22404E;
  text-align: left;
  width: 50%;
}
.card__money--space {
  padding-left: 2rem;
  text-align: center;
}

.page__title {
  font-size: 4rem;
  text-align: center;
}

.cardList {
  display: flex;
  flex-direction: row;
  padding: 1.2rem 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  border-radius: 1.6rem;
  gap: 1rem;
  margin: 1rem auto;
}
.cardList--validated {
  background-color: #FBD6B7;
}
.cardList--marginCote {
  margin: 1.95rem;
}
.cardList__validated {
  background-color: #FBD6B7;
  margin-bottom: 0.8rem;
}
.cardList__img {
  border-radius: 1rem;
  aspect-ratio: 130/98;
  object-fit: cover;
  max-height: 98px;
  height: 100%;
  flex-basis: 45%;
}
.cardList__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 50%;
}
.cardList__localisation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.cardList__title {
  color: #22404E;
}
.cardList__boxImg {
  height: fit-content;
  width: 25%;
}
.cardList__img {
  width: 100%;
  height: auto;
}
.cardList__validation {
  background-color: #FBD6B7;
  border-radius: 999rem;
  padding: 0.2rem;
  aspect-ratio: 1;
  stroke: black;
  width: auto;
}
.cardList__loyer-icon {
  display: flex;
  justify-content: space-between;
}

.swipe-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.swipe-element {
  flex-basis: 90%;
}
.swipe-right, .swipe-left {
  display: none;
}
.swipe-right__link, .swipe-left__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FBD6B7;
  border-radius: 2rem;
  font-size: 1.2rem;
  padding: 1rem 0;
  gap: 1rem;
}
.swipe-right__link-icon, .swipe-left__link-icon {
  width: 3rem;
  height: 3rem;
}
.swipe-right--active, .swipe-left--active {
  display: block;
}
.swipe-left__link {
  background-color: #AD886D;
}
@keyframes yay {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(40deg) translateY(-80px);
  }
}
@keyframes nope {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-40deg) translateY(-80px);
  }
}
.card.yes {
  animation: yay 0.5s ease-out;
}

.card.nope {
  animation: nope 0.5s ease-out;
}

.tinder--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.tinder--status svg {
  font-size: 100px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 100px;
  margin-left: -50px;
}

.card.yes .like {
  opacity: 0.7;
  transform: scale(2);
}

.card.nope .remove {
  opacity: 0.7;
  transform: scale(2);
}

.like path {
  fill: #FBD6B7;
}

.card-details {
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 100%;
  margin: 0 auto;
}

.cardsList__empty {
  font-size: 2.4rem;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 75%;
  margin: 2rem auto 0;
  padding: 1rem;
  text-align: center;
}
.cardsList__link {
  font-size: 2.4rem;
  color: #FBD6B7;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 75%;
  margin: 2rem auto 0;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border-radius: 1.6rem;
}
.form__back {
  display: flex;
  width: min-content;
  margin-bottom: 3.2rem;
  padding: 0.8rem;
  border: none;
  border-radius: 50%;
  background-color: #22404E;
  cursor: pointer;
}
.form__back--modifAnnonce {
  align-self: baseline;
}
.form__link {
  color: #FBD6B7;
  text-decoration: underline;
}
.form__login--error {
  color: #EB5757;
  width: 70%;
  padding: 1.6rem;
  font-size: 1.7rem;
  font-weight: 600;
  background: rgba(105, 138, 157, 0.2);
  backdrop-filter: blur(4rem);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-bottom: 2rem;
  border-radius: 1.6rem;
}
.form--step {
  width: 80%;
}
.form--step .form__form {
  width: 100%;
}
.form--step .form__stepper {
  position: relative;
  width: 80%;
  height: 0.4rem;
  border-radius: 0.2rem;
  background-color: #AD886D;
}
.form--step .form__step {
  position: absolute;
  left: 0;
  height: 100%;
  border-radius: 0.2rem;
  background-color: #FBD6B7;
}
.form--step .form__section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60vh;
  padding: 3.2rem 3.2rem 4.8rem 3.2rem;
  background: rgba(105, 138, 157, 0.2);
  backdrop-filter: blur(4rem);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 1.6rem;
}
.form--step .form__section[data-step="1"] {
  padding-top: 8rem;
}
.form--step .form__section:not([data-step="2"]) .form__input-container {
  margin-bottom: 0.8rem;
}
.form--step .form__section--disabled {
  display: none;
}
.form--step .form__error {
  font-size: 1.7rem;
  font-weight: 600;
  color: #EB5757;
}
.form--step .form__label {
  display: block;
  font-size: 2.8rem;
  color: #22404E;
}
.form--step .form__input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #22404E;
}
.form--step .form__input-container--block {
  display: block;
}
.form--step .form__input {
  flex-grow: 1;
  padding: 0.8rem 0;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 1.8rem;
  width: 100%;
}
.form--step .form__input:is(textarea) {
  font-size: 1.6rem;
  font-family: "Liberation", sans-serif;
}
.form--step .form__input--hide {
  display: none;
}
.form--step .form__checkbox input {
  margin-right: 0.8rem;
}
.form--step .form__checkbox label {
  font-size: 1.7rem;
  color: #22404E;
}
.form--step .form__info {
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
}
.form--step .form__hint {
  font-size: 1.8rem;
  text-align: center;
  color: #FBD6B7;
}
.form--step .form__button {
  margin: 3.2rem auto 0 auto;
}
.form--step .form__suggestions {
  list-style-type: none;
}
.form--step .form__suggestion {
  border-bottom: 1px solid #22404E;
}
.form--step .form__suggestion:not(:last-child) {
  margin-bottom: 1.2rem;
}
.form--step .form__suggestion-button {
  padding-bottom: 0.8rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.form--step .form__suggestion-name {
  font-size: 1.6rem;
}
.form--card {
  row-gap: 1.6rem;
  width: 70%;
  padding: 3.2rem;
  background: rgba(105, 138, 157, 0.2);
  backdrop-filter: blur(4rem);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.form--card .form__section {
  width: 100%;
}
.form--card .form__section--checkbox {
  display: flex;
  margin: 1.6rem 0;
  align-items: center;
}
.form--card .form__section--checkbox .form__input {
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
}
.form--card .form__section--checkbox .form__label {
  font-size: 1.8rem;
  background-color: #22404E;
  color: #FBD6B7;
  padding: 0.2rem;
}
.form--card .form__section:not(.form--card .form__section--checkbox) .form__label {
  margin-bottom: 0.8rem;
}
.form--card .form__label {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #22404E;
}
.form--card .form__input {
  width: 100%;
  padding: 0.8rem 2.4rem;
  border: none;
  border-radius: 1.6rem;
  background-color: #FBD6B7;
  outline: none;
  font-size: 1.6rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.form--card .form__input--hide {
  display: none;
}

.edit-advert__h1 {
  text-align: center;
  color: #22404E;
}
.edit-advert__span {
  color: #22404E;
}
.edit-advert__span--compteur {
  width: 100%;
  display: block;
  text-align: right;
}
.edit-advert__container {
  background-color: #FBD6B7;
  border-radius: 1.6rem;
  width: 100%;
  gap: 1.2rem;
}
.edit-advert__container--photo {
  padding: 0.8rem 1.6rem 0.6rem 0.8rem;
  margin-top: 0.8rem;
}
.edit-advert__container--textarea {
  display: block;
  padding: 0.8rem;
}
.edit-advert__buttons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  margin-top: 2.4rem;
  gap: 1.2rem;
}
.edit-advert__section {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
  gap: 0.8rem;
  justify-content: space-between;
}
.edit-advert__section--sansLabel {
  gap: 0;
}
.edit-advert__section--sansLabel img {
  gap: 0;
  width: 100%;
}
.edit-advert__section--images {
  flex-direction: column;
}
.edit-advert__section--description {
  display: block;
}
.edit-advert__section--name {
  display: block;
}
.edit-advert__section--location {
  display: block;
}
.edit-advert__label {
  font-size: 1.6rem;
  color: #22404E;
  width: 100%;
}
.edit-advert__input {
  width: 70%;
  padding: 0.8rem 1.6rem 0.6rem 0.8rem;
  border: none;
  background-color: transparent;
  outline: none;
  font: 1.6rem "Times", sans-serif;
  color: #22404E;
}
.edit-advert__input--nomBien {
  font: 2.4rem "Times", sans-serif;
}
.edit-advert__input--widthCent {
  width: 100%;
  resize: none;
}
.edit-advert__input--hide {
  display: none;
}

.images-announce {
  display: flex;
}

.carousel {
  overflow: hidden;
  position: relative;
}
.carousel-images {
  display: flex;
}

.supprIcon {
  bottom: 1rem;
  right: 0;
  position: absolute;
  display: block;
}
.supprIcon img {
  background-color: #22404E;
  padding: 1rem;
  border-radius: 50%;
  width: 7rem;
  height: auto;
}

.form__input-container p {
  margin-top: 1rem;
  font-size: 2rem;
}

.title {
  font-size: 3rem;
  font-weight: 500;
  color: #22404E;
  margin: 0 auto 3.2rem auto;
}
.title--center {
  width: 70%;
  text-align: center;
}

.header {
  display: flex;
  margin: 3.2rem;
  align-items: center;
  justify-content: space-between;
}
.header__title {
  font-size: 4rem;
  font-family: "Vanilla Ravioli", sans-serif;
  color: #22404E;
}
.header .nav {
  z-index: 1000;
}
.header .nav--menu, .header .nav--notifications {
  position: absolute;
  top: 0;
  transition: transform 0.5s ease;
}
.header .nav--menu {
  left: 0;
  padding: 3.2rem;
  background-color: #22404E;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.header .nav--menu.nav--inactive {
  transform: translateX(-100%);
}
.header .nav--notifications {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  right: 0;
  padding: 2.4rem;
  background-color: #22404E;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  max-width: 28rem;
}
.header .nav--notifications.nav--inactive {
  transform: translateX(100%);
}
.header .nav__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header .nav__link {
  padding: 10px 10px 10px 0;
  font-size: 2.4rem;
  color: #FBD6B7;
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
}
.header .nav__title {
  font-size: 2.4rem;
  color: #FBD6B7;
  padding-top: 2rem;
}
.header .nav__title::before {
  padding-right: 1rem;
}
.header .nav__title--chip-brown::before {
  content: url("../../img/icons/nav/notif1.svg");
}
.header .nav__title--chip-blue::before {
  content: url("../../img/icons/nav/notif2.svg");
}
.header .nav__icon--close {
  cursor: pointer;
  margin-bottom: 1.2rem;
}
.header .nav__description {
  font-size: 1.6rem;
  color: #FBD6B7;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.header .nav__separation {
  width: 18rem;
  height: 0.3rem;
  border: none;
  background-color: #698A9D;
  align-items: center;
}
.header .nav__notifications {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__icon {
  cursor: pointer;
}

.empty__container {
  padding: 1.6rem;
}

.advert--error {
  color: #EB5757;
  width: 85%;
  padding: 1.6rem;
  font-size: 1.7rem;
  font-weight: 600;
  background: rgba(105, 138, 157, 0.2);
  backdrop-filter: blur(4rem);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  margin: 1.2rem auto;
  border-radius: 1.6rem;
}
.advert__error {
  margin-top: 0.8rem;
  font-size: 1.5rem;
}
.advert__error--email {
  font-weight: 600;
  color: #EB5757;
}
.advert--edit {
  margin-bottom: 4.8rem;
}
.advert--show {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
}
.advert--show .advert__back {
  display: flex;
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  padding: 0.4rem;
  border-radius: 2.4rem;
  background-color: #FBD6B7;
  z-index: 10;
}
.advert--show .advert__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.advert--show .advert__data {
  width: 100%;
  padding: 3.2rem 2.4rem;
  z-index: 10;
  bottom: 0;
}
.advert--show .advert__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.advert--show .advert__location {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}
.advert--show .advert__location img {
  height: 2.4rem;
  margin-right: 0.8rem;
}
.advert--show .advert__location p {
  font-size: 1.6rem;
}
.advert--show .advert__date {
  font-size: 1.6rem;
}
.advert--show .advert__title {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: 500;
}
.advert--show .advert__description {
  margin-bottom: 1.6rem;
  word-wrap: break-word;
}
.advert--show .advert__additional {
  display: flex;
  column-gap: 2rem;
  margin-bottom: 2.4rem;
  overflow-x: scroll;
}
.advert--show .advert__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 999rem;
}
.advert--show .advert__circle p {
  margin-top: -1rem;
  padding: 0.4rem 0.8rem;
  text-align: center;
  border-radius: 0.8rem;
  background-color: #AD886D;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}
.advert--show .advert__svg {
  width: 5.6rem;
  height: 5.6rem;
  padding: 1.2rem;
  border-radius: 999rem;
  background-color: #FBD6B7;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}
.advert--show .advert__prices {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.advert--show .advert__prices p {
  font-size: 1.8rem;
}
.advert--show .advert__buttons {
  display: flex;
}
.advert--show .advert__buttons--center {
  justify-content: center;
}
.advert--show .advert__buttons--spacing {
  justify-content: space-between;
}

.delete-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 0 0 15px 15px;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(40px);
  width: 60%;
  padding: 0.5rem;
  font-size: 1.6rem;
}
.delete-button__link {
  color: #22404E;
  font-size: 1.6rem;
}

.card404 {
  display: flex;
  flex-direction: column;
  margin: 0 1.5em;
  padding: 3em 1em;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(40px);
  align-items: center;
  text-align: center;
}

.card404__h1 {
  display: flex;
  align-items: center;
  border: none;
  padding: 0.8rem 5.6rem;
  border-radius: 3.2rem;
  background-color: #22404E;
  color: #FBD6B7;
  text-align: center;
  justify-content: center;
  font-size: 4rem;
  width: fit-content;
  margin: 3.2rem 0;
}

.card404__svgLost {
  height: 30rem;
}

.card404__content {
  font-size: 2.4rem;
}

.filter-mobile {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  background-color: #698A9D;
  border-radius: 15px;
  z-index: 10;
  transition: transform 0.5s ease;
  left: 0;
}
.filter-mobile--inactive {
  transform: translateY(100%);
  animation: ease-in 0.5s;
}

.filter {
  max-width: 100%;
}
.filter__title {
  font-size: 2rem;
  color: #22404E;
}
.filter__valid {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  padding: 2rem 1rem;
  width: 20rem;
  border-radius: 2rem;
  margin: 3rem;
  font-size: 2.4rem;
  background-color: #AD886D;
  color: #FBD6B7;
}
.filter__container {
  display: flex;
  padding-top: 1.4rem;
  padding-bottom: 2rem;
  overflow-x: auto;
}
.filter__buttons__button {
  border: 3px solid #22404E;
  color: #22404E;
  background-color: #698A9D;
  border-radius: 2rem;
  margin-right: 1rem;
  padding: 0.4rem 1rem;
  font-size: 1.6rem;
}
.filter__buttons__button.active {
  border: 3px solid #FBD6B7;
  color: #FBD6B7;
  background-color: #22404E;
}
.filter-input__title {
  font-size: 2rem;
  color: #22404E;
  padding-top: 1rem;
  margin-bottom: 0.8rem;
}
.filter-input__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-input__input {
  width: 60%;
  margin-left: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 1.6rem;
  background-color: #FBD6B7;
  border: none;
  outline: none;
  color: #22404E;
  font-size: 1.6rem;
}
.filter-input__label {
  font-size: 1.4rem;
  color: #22404E;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}
.filter-input__label--euro, .filter-input__label--carre {
  position: relative;
}
.filter-input__label--euro::after, .filter-input__label--carre::after {
  position: absolute;
  right: 3rem;
}
.filter-input__label--euro::after {
  content: "€";
}
.filter-input__label--carre::after {
  content: "m²";
}

.filter__checkbox {
  display: none;
}

section.countdown {
  display: flex;
  width: 100%;
  padding: 1.6rem;
  border: 4px solid #FBD6B7;
  border-radius: 0.8rem;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  section.countdown {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  section.countdown {
    width: 40%;
  }
}
section.countdown .countdown__section {
  width: 100%;
}
section.countdown .countdown__divider {
  position: relative;
  top: -0.25rem;
  font-size: 3.2rem;
  color: #698A9D;
}
section.countdown .countdown__section p {
  color: #698A9D;
  text-align: center;
}
section.countdown .countdown_number {
  margin-bottom: 0.4rem;
  font-size: 3.2rem;
}
section.countdown .countdown__text {
  font-weight: bold;
}

.searchMobile {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 6rem;
  margin-bottom: 2rem;
}
.searchMobile__searchBar {
  background-color: #22404E;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-radius: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.searchMobile--textarea {
  background-color: #22404E;
  border: none;
  width: 18rem;
  color: #FBD6B7;
  margin-left: 1.5rem;
  outline: none;
  margin-top: 2rem;
}
.searchMobile__search {
  color: #FBD6B7;
  margin: 0 0.5rem 0 0.1rem;
  cursor: pointer;
}
.searchMobile__filter {
  background-color: #FBD6B7;
  padding: 2rem;
  border-radius: 2.5rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.searchMobile__button {
  background-color: transparent;
  border: none;
}

.form__address-suggestion {
  text-align: left;
  margin-top: 2px;
  list-style: none;
}

#button__address-suggestion {
  background-color: #22404E;
  padding: 0.8rem 1.5rem;
  border-radius: 5rem;
  color: #FBD6B7;
  border: none;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}

.searchBar-suggestion {
  display: flex;
  justify-content: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.button--small {
  padding: 0.8rem 1.6rem;
  border-radius: 1.6rem;
  font-size: 1.6rem;
}
.button--medium {
  padding: 1.2rem 2.4rem;
  border-radius: 3.2rem;
  font-size: 1.7rem;
}
.button--large {
  padding: 1.2rem 4.8rem;
  border-radius: 3.2rem;
  font-size: 1.7rem;
}
.button--brown {
  background-color: #AD886D;
}
.button--blue {
  background-color: #22404E;
  color: #FBD6B7;
}
.button--fit {
  width: fit-content;
}
.button--text-blue {
  color: #22404E;
}
.button--text-light-blue {
  color: #A3BAC9;
}
.button--text-beige {
  color: #FBD6B7;
}
.button--shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.button__image {
  height: 2.8rem;
  margin-left: 0.8rem;
}
.button--clear {
  background-color: transparent;
  border: none;
}

.cardFile {
  display: flex;
  flex-direction: column;
  margin: 2rem 3.2rem;
  padding: 3rem 2.4rem;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4rem);
  align-items: center;
}
.cardFile__input {
  margin-bottom: 2rem;
}

.cardFile-modif {
  display: flex;
  flex-direction: column;
  margin: 2rem 3.2rem 0rem 3.2rem;
  padding: 3rem 2.4rem;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4rem);
  align-items: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  align-content: center;
  grid-gap: 3rem;
  margin-top: 2rem;
  position: relative;
  overflow-x: hidden;
}

.card {
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 75%;
  margin: 0 auto;
}
.card__content {
  padding: 1rem 1.5rem;
}
.card__title {
  font-size: 2.4rem;
  color: #22404E;
}
.card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 2rem 2rem 5rem 5rem;
}
.card__localisation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.card__localisation-icon {
  width: 2rem;
  height: 2rem;
}
.card__localisation-name {
  font-size: 2rem;
  color: #22404E;
}
.card__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.card__tag {
  border-radius: 0.8rem;
  background-color: #FBD6B7;
  padding: 0.7rem 1.2rem;
  margin: 2rem 0;
  text-align: center;
  color: #22404E;
  font-size: 1.6rem;
  max-width: 100%;
}
.card__label {
  cursor: pointer;
  caret-color: transparent;
  display: inline-flex;
}
.card__checkbox {
  display: none;
}
.card__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  margin-top: 1.5rem;
}
.card__buttons .card__button {
  align-self: center;
  cursor: pointer;
}
.card__buttons .card__button--path {
  transform-origin: center;
  transition: fill 0.3s ease-in-out, transform 0.1s linear;
}
.card__buttons .card__button--filled {
  fill: #FBD6B7;
  transform: scale(1.1);
}
.card__money {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card__money .card__price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-basis: 90%;
  gap: 2.1rem;
}
.card__money .card__price--title {
  font-size: 1.6rem;
  color: #22404E;
  width: 50%;
  text-align: right;
}
.card__money .card__price--text {
  font-size: 1.6rem;
  color: #22404E;
  text-align: left;
  width: 50%;
}
.card__money--space {
  padding-left: 2rem;
  text-align: center;
}

.page__title {
  font-size: 4rem;
  text-align: center;
}

.cardList {
  display: flex;
  flex-direction: row;
  padding: 1.2rem 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  border-radius: 1.6rem;
  gap: 1rem;
  margin: 1rem auto;
}
.cardList--validated {
  background-color: #FBD6B7;
}
.cardList--marginCote {
  margin: 1.95rem;
}
.cardList__validated {
  background-color: #FBD6B7;
  margin-bottom: 0.8rem;
}
.cardList__img {
  border-radius: 1rem;
  aspect-ratio: 130/98;
  object-fit: cover;
  max-height: 98px;
  height: 100%;
  flex-basis: 45%;
}
.cardList__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 50%;
}
.cardList__localisation {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.cardList__title {
  color: #22404E;
}
.cardList__boxImg {
  height: fit-content;
  width: 25%;
}
.cardList__img {
  width: 100%;
  height: auto;
}
.cardList__validation {
  background-color: #FBD6B7;
  border-radius: 999rem;
  padding: 0.2rem;
  aspect-ratio: 1;
  stroke: black;
  width: auto;
}
.cardList__loyer-icon {
  display: flex;
  justify-content: space-between;
}

.swipe-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.swipe-element {
  flex-basis: 90%;
}
.swipe-right, .swipe-left {
  display: none;
}
.swipe-right__link, .swipe-left__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FBD6B7;
  border-radius: 2rem;
  font-size: 1.2rem;
  padding: 1rem 0;
  gap: 1rem;
}
.swipe-right__link-icon, .swipe-left__link-icon {
  width: 3rem;
  height: 3rem;
}
.swipe-right--active, .swipe-left--active {
  display: block;
}
.swipe-left__link {
  background-color: #AD886D;
}
@keyframes yay {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(40deg) translateY(-80px);
  }
}
@keyframes nope {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-40deg) translateY(-80px);
  }
}
.card.yes {
  animation: yay 0.5s ease-out;
}

.card.nope {
  animation: nope 0.5s ease-out;
}

.tinder--status {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.tinder--status svg {
  font-size: 100px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 100px;
  margin-left: -50px;
}

.card.yes .like {
  opacity: 0.7;
  transform: scale(2);
}

.card.nope .remove {
  opacity: 0.7;
  transform: scale(2);
}

.like path {
  fill: #FBD6B7;
}

.card-details {
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 100%;
  margin: 0 auto;
}

.cardsList__empty {
  font-size: 2.4rem;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 75%;
  margin: 2rem auto 0;
  padding: 1rem;
  text-align: center;
}
.cardsList__link {
  font-size: 2.4rem;
  color: #FBD6B7;
  border-radius: 1.6rem;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(64px);
  width: 75%;
  margin: 2rem auto 0;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border-radius: 1.6rem;
}
.form__back {
  display: flex;
  width: min-content;
  margin-bottom: 3.2rem;
  padding: 0.8rem;
  border: none;
  border-radius: 50%;
  background-color: #22404E;
  cursor: pointer;
}
.form__back--modifAnnonce {
  align-self: baseline;
}
.form__link {
  color: #FBD6B7;
  text-decoration: underline;
}
.form__login--error {
  color: #EB5757;
  width: 70%;
  padding: 1.6rem;
  font-size: 1.7rem;
  font-weight: 600;
  background: rgba(105, 138, 157, 0.2);
  backdrop-filter: blur(4rem);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-bottom: 2rem;
  border-radius: 1.6rem;
}
.form--step {
  width: 80%;
}
.form--step .form__form {
  width: 100%;
}
.form--step .form__stepper {
  position: relative;
  width: 80%;
  height: 0.4rem;
  border-radius: 0.2rem;
  background-color: #AD886D;
}
.form--step .form__step {
  position: absolute;
  left: 0;
  height: 100%;
  border-radius: 0.2rem;
  background-color: #FBD6B7;
}
.form--step .form__section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60vh;
  padding: 3.2rem 3.2rem 4.8rem 3.2rem;
  background: rgba(105, 138, 157, 0.2);
  backdrop-filter: blur(4rem);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 1.6rem;
}
.form--step .form__section[data-step="1"] {
  padding-top: 8rem;
}
.form--step .form__section:not([data-step="2"]) .form__input-container {
  margin-bottom: 0.8rem;
}
.form--step .form__section--disabled {
  display: none;
}
.form--step .form__error {
  font-size: 1.7rem;
  font-weight: 600;
  color: #EB5757;
}
.form--step .form__label {
  display: block;
  font-size: 2.8rem;
  color: #22404E;
}
.form--step .form__input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #22404E;
}
.form--step .form__input-container--block {
  display: block;
}
.form--step .form__input {
  flex-grow: 1;
  padding: 0.8rem 0;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 1.8rem;
  width: 100%;
}
.form--step .form__input:is(textarea) {
  font-size: 1.6rem;
  font-family: "Liberation", sans-serif;
}
.form--step .form__input--hide {
  display: none;
}
.form--step .form__checkbox input {
  margin-right: 0.8rem;
}
.form--step .form__checkbox label {
  font-size: 1.7rem;
  color: #22404E;
}
.form--step .form__info {
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
}
.form--step .form__hint {
  font-size: 1.8rem;
  text-align: center;
  color: #FBD6B7;
}
.form--step .form__button {
  margin: 3.2rem auto 0 auto;
}
.form--step .form__suggestions {
  list-style-type: none;
}
.form--step .form__suggestion {
  border-bottom: 1px solid #22404E;
}
.form--step .form__suggestion:not(:last-child) {
  margin-bottom: 1.2rem;
}
.form--step .form__suggestion-button {
  padding-bottom: 0.8rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.form--step .form__suggestion-name {
  font-size: 1.6rem;
}
.form--card {
  row-gap: 1.6rem;
  width: 70%;
  padding: 3.2rem;
  background: rgba(105, 138, 157, 0.2);
  backdrop-filter: blur(4rem);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.form--card .form__section {
  width: 100%;
}
.form--card .form__section--checkbox {
  display: flex;
  margin: 1.6rem 0;
  align-items: center;
}
.form--card .form__section--checkbox .form__input {
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
}
.form--card .form__section--checkbox .form__label {
  font-size: 1.8rem;
  background-color: #22404E;
  color: #FBD6B7;
  padding: 0.2rem;
}
.form--card .form__section:not(.form--card .form__section--checkbox) .form__label {
  margin-bottom: 0.8rem;
}
.form--card .form__label {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #22404E;
}
.form--card .form__input {
  width: 100%;
  padding: 0.8rem 2.4rem;
  border: none;
  border-radius: 1.6rem;
  background-color: #FBD6B7;
  outline: none;
  font-size: 1.6rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.form--card .form__input--hide {
  display: none;
}

.edit-advert__h1 {
  text-align: center;
  color: #22404E;
}
.edit-advert__span {
  color: #22404E;
}
.edit-advert__span--compteur {
  width: 100%;
  display: block;
  text-align: right;
}
.edit-advert__container {
  background-color: #FBD6B7;
  border-radius: 1.6rem;
  width: 100%;
  gap: 1.2rem;
}
.edit-advert__container--photo {
  padding: 0.8rem 1.6rem 0.6rem 0.8rem;
  margin-top: 0.8rem;
}
.edit-advert__container--textarea {
  display: block;
  padding: 0.8rem;
}
.edit-advert__buttons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  margin-top: 2.4rem;
  gap: 1.2rem;
}
.edit-advert__section {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
  gap: 0.8rem;
  justify-content: space-between;
}
.edit-advert__section--sansLabel {
  gap: 0;
}
.edit-advert__section--sansLabel img {
  gap: 0;
  width: 100%;
}
.edit-advert__section--images {
  flex-direction: column;
}
.edit-advert__section--description {
  display: block;
}
.edit-advert__section--name {
  display: block;
}
.edit-advert__section--location {
  display: block;
}
.edit-advert__label {
  font-size: 1.6rem;
  color: #22404E;
  width: 100%;
}
.edit-advert__input {
  width: 70%;
  padding: 0.8rem 1.6rem 0.6rem 0.8rem;
  border: none;
  background-color: transparent;
  outline: none;
  font: 1.6rem "Times", sans-serif;
  color: #22404E;
}
.edit-advert__input--nomBien {
  font: 2.4rem "Times", sans-serif;
}
.edit-advert__input--widthCent {
  width: 100%;
  resize: none;
}
.edit-advert__input--hide {
  display: none;
}

.images-announce {
  display: flex;
}

.carousel {
  overflow: hidden;
  position: relative;
}
.carousel-images {
  display: flex;
}

.supprIcon {
  bottom: 1rem;
  right: 0;
  position: absolute;
  display: block;
}
.supprIcon img {
  background-color: #22404E;
  padding: 1rem;
  border-radius: 50%;
  width: 7rem;
  height: auto;
}

.form__input-container p {
  margin-top: 1rem;
  font-size: 2rem;
}

.title {
  font-size: 3rem;
  font-weight: 500;
  color: #22404E;
  margin: 0 auto 3.2rem auto;
}
.title--center {
  width: 70%;
  text-align: center;
}

/* FILES CREAT */
.h1_create {
  font-size: 3.2rem;
  color: #22404E;
  text-align: center;
}

.cardFile__input {
  background-color: #FBD6B7;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  border: none;
  outline: none;
  border-radius: 1.6rem;
  height: 13vh;
  padding: 1.6rem;
  white-space: normal;
  width: 67vw;
}
.cardFile__label {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.6rem;
  color: #22404E;
}
.cardFile__link {
  color: #22404E;
  text-decoration: underline;
  margin-top: 1.6rem;
}
.cardFile__checkbox {
  display: inline;
}

.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Couleur noire semi-transparente */
  z-index: 99; /* Assure que le fond noir est en arrière-plan de la modal mais devant le reste du contenu */
}

.formModal {
  display: none;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  background-image: url("../../img/fondModal.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  z-index: 100;
  right: 0;
  left: 0;
}
.formModal--card {
  row-gap: 1.2rem;
  width: 35rem;
  padding: 5.8rem;
}
.formModal--card .form__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #FBD6B7;
}
.formModal--card .form__input {
  width: 100%;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 1.6rem;
  background-color: #FBD6B7;
  outline: none;
  font-size: 1.6rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  color: #22404E;
}
.formModal--card .form__p {
  color: #FBD6B7;
  font-size: 1.6rem;
  text-align: center;
}
.formModal--active {
  display: flex;
}

@font-face {
  font-family: "Liberation Serif";
  font-weight: normal;
  src: url("../fonts/liberation_serif/LiberationSerif-Regular.woff2") format("woff2"), url("../fonts/liberation_serif/liberationserif-regular-webfont.woff") format("woff");
}
@font-face {
  font-family: "Vanilla Ravioli";
  font-weight: normal;
  src: url("../fonts/vanilla/vanillaravioli_demo-webfont.woff2") format("woff2"), url("../fonts/vanilla/vanillaravioli_demo-webfont.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 400;
  user-select: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  overflow-x: hidden;
  background-color: #A3BAC9;
  background-image: url("../img/fondMobile.svg");
  background-size: 100% auto;
}
body a {
  text-decoration: unset;
}
body p, body h2, body a {
  color: #22404E;
}
body input, body button {
  font-family: "Times", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*   ACCUEIL   */
.bodyAccueil {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(40px);
  width: 90%;
  padding: 2rem;
  overflow-y: hidden;
  min-height: 80vh;
  margin: 0 auto 4.8rem;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 6rem;
}
.content__text {
  font-family: Liberation Serif, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #22404E;
  text-align: center;
}

/*  Page About  */
.about-content {
  width: 90%;
  padding: 2rem;
  margin-left: 2rem;
}
.about-content__text {
  font-weight: bold;
  font-family: Liberation Serif, sans-serif;
  color: #FBD6B7;
  font-size: 1.6rem;
}
.about-content__article {
  font-family: Liberation Serif, sans-serif;
  color: #FBD6B7;
  font-size: 1.4rem;
}

.bubble {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%/50%;
  padding: 15% 0 15% 0;
  margin: 0 0 5rem -15%;
}
.bubble--fonce {
  background-color: #22404E;
  width: 115%;
}
.bubble--clair {
  background-color: #698A9D;
  width: 103%;
}

.new-content {
  padding: 2rem;
  margin-left: 2rem;
}
.new-content__text {
  font-weight: bold;
  font-family: Liberation Serif, sans-serif;
  color: #FFF;
  font-size: 1.6rem;
}
.new-content__article {
  font-family: Liberation Serif, sans-serif;
  color: #FFF;
  font-size: 1.4rem;
}

/*  Profil  */
.body-profil {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: url("../img/fond.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}

.icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  margin-bottom: 1rem;
  padding: 1rem 1rem 0.5rem 1rem;
  border-radius: 999rem;
  background-color: #A3BAC9;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.icon__input {
  position: absolute;
  visibility: hidden;
  top: 0;
}
.icon::after {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  content: url("../img/icons/pen.svg");
}
.icon__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999rem;
}

.user-data {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  background-color: #22404E;
  border-radius: 3rem;
  gap: 2rem;
  padding: 2rem;
}
.user-data__verification {
  color: #EB5757;
}
.user-data__text {
  color: #FBD6B7;
}

.links__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
  gap: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.links__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
}

.float__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
}

.float__icon {
  width: 80px;
  height: 80px;
}

/* Page Register */
.register {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.register__title {
  color: #22404E;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 3.2rem;
}
.register__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 0 0 15px 15px;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(40px);
  width: 60%;
  padding: 0.5rem;
  font-size: 1.6rem;
}
.register--edit {
  border: none;
  color: #22404E;
}
.register__btn {
  margin-top: 1.6rem;
  color: #FBD6B7;
  background-color: #22404E;
  border: none;
  padding: 1.2rem 2.4rem;
  border-radius: 3.2rem;
  font-size: 1.6rem;
}

/* Page Signin */
.signin {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.signin__title {
  margin-bottom: 3.2rem;
  color: #22404E;
  text-align: center;
  font-size: 3.2rem;
}
.signin__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 0 0 15px 15px;
  background: rgba(105, 138, 157, 0.2);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(40px);
  width: 60%;
  padding: 0.5rem;
  font-size: 1.6rem;
}
.signin__btn {
  margin-top: 1.6rem;
  color: #FBD6B7;
  background-color: #22404E;
  border: none;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  border-radius: 3.2rem;
}

/* Desktop */
.desktop {
  display: none;
}

/* Media query pour les écrans de 768px et plus */
/*
@media screen and (min-width: 768px) {


  .desktop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;

    &__message {
      font-size: 2.4rem;
      border-radius: 1.6rem;
      background: rgba(105, 138, 157, 0.20);
      box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(64px);
      width: 75%;
      margin: 2rem auto 0;
      padding: 1rem;
      text-align: center;
    }

    &__title {
      font-size: 3rem;
      font-weight: 500;
      color: #22404E;
      margin: 0 auto 3.2rem auto;
      font-family: 'Vanilla Ravioli', sans-serif;
    }

    &__logo {
      margin-bottom: 2rem;
    }
  }

  .header {
    display: none;
  }

  .main {
    display: none;
  }
}*/

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