.headerMembre {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 10vh;
}
.headerMembre .goback {
  background-color: #768698;
  display: flex;
  align-items: center;
  flex: 1 1 100px;
}
.headerMembre .subnavmenu {
  flex: 5 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2%;
}
.headerMembre .subnavmenu .subnavmenuTitle a {
  text-decoration: none;
}
.headerMembre .subnavmenu h1 {
  color: #c28788;
}
.headerMembre .subnavmenu .subnavmenuOptions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.headerMembre .subnavmenu .subnavmenuOptions a {
  display: flex;
}
.headerMembre .subnavmenu .subnavmenuOptions a:hover {
  opacity: 0.5;
}
.headerMembre .subnavmenu .subnavmenuOptions .settingsWheel {
  width: 30px;
}

.membreContentGlobal {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}

.sideMenu {
  display: flex;
  flex-direction: column;
  min-width: 20vh;
}
.sideMenu a {
  text-decoration: none;
  font-size: larger;
  text-align: left;
  color: #768698;
  border-bottom: 1px #76869814 solid;
  min-height: 10vh;
  display: flex;
  padding: 10%;
}
.sideMenu a:hover {
  background-color: #768698;
  color: white;
}
.sideMenu a:first-child {
  border-top: 1px #76869814 solid;
}
.sideMenu .sideBarItems {
  display: flex;
  min-height: 50px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  width: 100%;
}
.sideMenu .sideBarItems .notifMessage {
  background-color: #c28788;
  min-width: 30px;
  text-align: center;
  border-radius: 50%;
  color: white;
}
.sideMenu .sideBarItemsPicto {
  display: none;
  justify-content: center;
  min-height: 50px;
  margin-left: 20%;
}
.sideMenu .sideBarItemsPicto:hover {
  background-color: #768698;
}
.sideMenu .sideBarItemsPicto img {
  width: 100%;
  object-fit: none;
}

.membreContent {
  width: 100%;
  padding: 15px;
  background-color: #f8f8f8;
  min-height: 90vh;
  border: 1px #76869814 solid;
}
.membreContent h1 {
  color: #c28788;
  padding: 2% 0;
}
.membreContent .goHomeFromTile {
  display: flex;
}
.membreContent .goHomeFromTile a {
  color: #768698;
  text-decoration: none;
}
.membreContent .goHomeFromTile a:hover {
  color: #616161;
}
.membreContent .goHomeFromTile a span {
  display: flex;
}
.membreContent .goHomeFromTile a svg {
  fill: #768698;
}
.membreContent .goHomeFromTile a svg:hover {
  fill: #616161;
}

.messageFlash {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.messageFlash .alert {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  min-height: 50px;
  border-radius: 10px;
}
.messageFlash .alert-danger {
  background-color: red;
}
.messageFlash .alert-success {
  background-color: #4caf50;
}
.messageFlash .alert-info {
  background-color: #f3eee4;
}

.goback {
  display: flex;
  padding: 20px;
}
.goback a {
  text-decoration: none;
  color: black;
}
.goback a:visited {
  color: inherit;
}
.goback span {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goback svg {
  margin-right: 15px;
}

.show {
  display: flex;
  opacity: 1;
}

.hidden {
  display: none !important;
}

/* Classe pour l'animation de la transition */
.transition {
  animation: fade-in 0.5s;
}

/* Animation de la transition */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 600px) {
  .goHomeFromTile {
    padding: 5%;
  }

  hr {
    margin: 5% 0;
  }

  .headerMembre {
    height: 100%;
  }
  .headerMembre .subnavmenu {
    background-color: #f8f8f8;
  }
  .headerMembre .subnavmenu .subnavmenuOptions {
    display: flex;
    align-items: center;
    padding: 5px;
  }

  h1 {
    font-size: 20px;
  }

  .membreContentGlobal {
    flex-direction: column;
  }
  .membreContentGlobal .sideMenu {
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
    width: 100% !important;
  }
  .membreContentGlobal .sideMenu .sideBarItemsPicto {
    display: flex;
  }
  .membreContentGlobal .sideMenu .sideBarItems {
    display: none;
  }
  .membreContentGlobal .sideMenu .sideBarItems .notifMessage {
    min-width: 25px;
  }
  .membreContentGlobal .sideMenu a {
    padding: inherit;
    width: 25%;
  }
}

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