@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100;0,200;0,300;0,400;0,600;0,900;1,100;1,200;1,400;1,900&display=swap");
body {
  font-family: "Inter Tight", sans-serif;
  font-size: 1em;
  font-weight: 300;
  padding: 0 20px;
}
a,
h1,
h2,
p,
.question_title {
  color: #676952;
}

.maintenance_text {
  margin: 10em auto;
}

.show_password {
  text-align: left;
  margin: 20px 0;
}

.question_title,
.renvoi_page {
  font-weight: bold;
}

.close_alert {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 25px;
}

.renvoi_page {
  text-align: right;
}

.description_title {
  font-weight: bold;
}

.new_encart {
  margin-top: 30px;
}

.a-light-btn {
  color: #000 !important;
}
.big_image {
  width: -webkit-fill-available;
  height: 250px;
  object-fit: cover;
  margin-top: -60px;
  margin-left: -25px;
  margin-right: -25px;
  z-index: -5;
  position: relative;
}

.container {
  padding-left: 180px !important;
  padding-bottom: 50px;
  padding-top: 30px;
}

.signUpBody {
  background-color: #b7b9a6;
}

.signup .container {
  padding-left: 0 !important;
}

a {
  text-decoration: none !important;
}

/*profil*/
.profil {
  display: flex;
}

.profil_picture {
  max-width: 12rem;
  max-height: 12rem;
}

.display-picture {
  padding: 0 24px;
  z-index: 1;
}

.display-picture img {
  max-width: 250px;
  border-radius: 50%;
  top: 40px;
  right: 0px;
  position: absolute;
}

.presentation,
.content {
  padding: 25px;
  text-align: justify;
}

.social_media {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  list-style-type: none;
}

.social_media i {
  font-size: 35px;
  padding: 0 8px;
  color: #000;
}
/*Footer*/
.footer_cp {
  color: #fff;
  position: absolute;
  bottom: 10px;
  font-size: 14px;
  width: 280px;
}

/*Content*/
section {
  vertical-align: top;
}

/**PageExercice**/
table {
  border-collapse: collapse;
}

th {
  border: 1px #fff solid;
  background-color: #f2f2f2;
}

td {
  border: 1px #f2f2f2 solid;
}

/**Sidebar**/
button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  visibility: hidden;
  transition: 0.4s;
}

body.open .overlay {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  background: #b7b9a6;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transition-property: filter, visibility, opacity;
  transition-duration: 0.6s;
}

.sidebar a {
  text-decoration: none;
  color: #fff;
}

@media (width <= 330px) {
  .sidebar {
    transition-property: translate;
  }
}

@media (width >= 400px) {
  .sidebar {
    translate: 100% 0;
    width: 400px;
    transition-duration: 0.4s;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (width >= 800px) {
  .sidebar {
    translate: 0 0;
    opacity: 1;
    visibility: visible;
    filter: blur(0);
  }
}

body.open .sidebar {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}

.sidebar-avatar {
  width: 250px;
  height: 150px;
  object-fit: cover;
}

.sidebar-role {
  width: 200px;
  text-align: justify;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.57);
}

.sidebar-menu {
  display: grid;
  width: 100%;
  padding: 10px 0;
  padding-left: 20px;
}

.sidebar-menu .fa {
  color: #676952;
}

.sidebar hr {
  border: solid 1px #676952;
  width: 220px;
}

@media (width >= 350px) {
  .sidebar-menu {
    padding-left: 0;
    width: 250px;
  }
}

.titre_sidebar {
  font-size: 1.25rem;
  padding: 0 20px;
  color: #fff;
}

.sidebar-menu > button {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: Arial;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 2px;
  line-height: 1;
  padding: 10px 20px;
}

.sidebar-menu > button > img {
  width: 17px;
  height: 17px;
}

.sidebar-menu > button > span {
  color: #f9f9f9;
  font-size: 11px;
  translate: 0 1px;
}

/*Animation accueil*/
.loader {
  font-weight: 500;
  font-size: 25px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.words {
  overflow: hidden;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #b1bca6;
  animation: animation_spin 5s infinite;
}

@keyframes animation_spin {
  10% {
    -webkit-transform: translateY(-105%);
    transform: translateY(-105%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-205%);
    transform: translateY(-205%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-305%);
    transform: translateY(-305%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-405%);
    transform: translateY(-405%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}

/*Fin animation accueil*/

.thematic i {
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 15px;
  background-color: #000;
}

.bonjour_content p {
  color: grey;
  font-size: smaller;
}

.bonjour_content a {
  text-decoration: none;
  color: #fff;
}

.encart_skill {
  padding: 2px 5px;
  margin: 1%;
  border-radius: 10px;
  border: solid 2px;
  border-color: #fff;
}

.soft_skill {
  background-color: #fff;
  color: #000;
}

/* Recipes */
.cat_vegetarian {
  background-color: green;
}
.cat_asiatic {
  background-color: orange;
}
.cat_malgache {
  background-color: red;
}
.cat_italian {
  background-color: cyan;
}
.cat_rapide {
  background-color: grey;
}
.cat_aperitif {
  background-color: brown;
}

.list_recipes {
  height: 200px;
  width: auto;
  object-fit: cover;
}
.heart_category {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #000;
  font-size: 20px;
}

.heart_category_read {
  color: #fff;
  font-size: 20px;
}

.details_cook {
  color: grey !important;
  font-size: 13px;
}

/* Commentaries */
.avatar_profil,
.avatar_profil_commentaire {
  border-radius: 50%;
  margin-right: 2%;
}
.avatar_profil {
  width: 60px;
  height: 60px;
}
.avatar_profil_commentaire {
  width: 35px;
  height: 35px;
}
.comment {
  line-height: 15px;
  margin: 20px 0;
}

.empty_page {
  width: 350px;
}

.list_structures {
  border-radius: 50%;
  height: 120px;
  width: 120px;
  min-width: 120px;
  object-fit: cover;
}

.tab_bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.btn-trash {
  width: 35px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 12px !important;
  border: solid 1px #f2f2f2 !important;
}

.btn-trash:hover {
  background-color: red;
}
