/* this declares a better box model */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

body::-webkit-scrollbar {
  width: 0.3rem;
}
body::-webkit-scrollbar-track {
  background: #0F1924;
}
body::-webkit-scrollbar-thumb {
  background: -webkit-radial-gradient(
    circle,
    #FF4C58 0%,
    #BC3F47 50%,
    #BC3F47 100%
  );
}

.list-wrap label {
  float:left;
  color:#00BDE8;
}
.search-box {
  float:left;
  clear:left;
  width:70%;
  padding:0.4em;
  font-size:1em;
  color:#555;
}

.list-count {
  float:left;
  text-align:left;
  width:50%;
  padding:0.5em;
  color:#ddd;
}

li {
  transition-property: margin, background-color, border-color;
  transition-duration: .4s, .2s, .2s;
  transition-timing-function: ease-in-out, ease, ease;
}

.empty-item {
  transition-property: opacity;
  transition-duration: 0s;
  transition-delay: 0s;
  transition-timing-function: ease;
}

.empty .empty-item {
  transition-property: opacity;
  transition-duration: .2s;
  transition-delay: .3s;
  transition-timing-function: ease;
}

.hiding {
  margin-left:-100%;
  opacity:0.5;
}

.hidden {
  display:none;
}

ul {
  float:left;
  width:100%;
  margin:0,1em 0;
  padding:0;
  position:relative;
}

ul:before {
  content:'Membres';
  position:absolute;
  left:-2.8em;
  font-size:3em;
  text-align:right;
  top:1.5em;
  color:#ededed;
  font-weight:bold;
  font-family: 'Maven Pro', sans-serif;
  transform:rotate(-90deg);
}

li {
  float:left;
  clear:left;
  width:100%;
  margin:0.2em 0;
  padding:0.5em 0.8em;
  list-style:none;
  background-color:#f2f2f2;
  border-left:5px solid #003842;
  cursor:pointer;
  color:#333;
  position:relative;
  z-index:2;
}

li:hover {
  background-color:#f9f9f9;
  border-color:#00BDE8;
}

.empty-item {
  background:#fff;
  color:#ddd;
  margin:0.2em 0;
  padding:0.5em 0.8em;
  font-style:italic;
  border:none;
  text-align:center;
  visibility:hidden;
  opacity:0;
  float:left;
  clear:left;
  width:100%;
}

.empty .empty-item {
  opacity:1;
  visibility:visible;
}

body {
  background: #0F1924;
  background: url(../img/origazoom-star-03.webp) center no-repeat;
  background-size: cover;
  position: relative;
  font-family:'Open Sans', sans-serif;
  margin:0;
  padding:0;
  font-size:1em;
  width: 100%;
  height: 100vh;
  min-height: 750px;
}

html {
  background: #0F1924;
}

a {color:#AD3058;}

h1 {
  font-size:2.6em;
  margin:0;
  padding-top:1.5em;
  text-align:center;
  font-family: 'Maven Pro', sans-serif;
  color:#fff;
}

h3 {
  margin:0 0 2em;
  text-align:center;
  font-weight:normal;
  font-family: georgia, times;
  font-style:italic;
  color:#FFFF00;
  font-size:1em;
}

.info {
  float:left;
  width:60%;
  margin:2em 20%;
  padding:2em 0;
  background:#f9f9f9;
  border-left:5px solid #003842;
  padding:10px 20px;
}

.list-wrap {
  float:left;
  width:60%;
  margin:2em 20%;
  padding:2em 0;
}

p {
  text-align:left;
  font-size:1em;
}

.cta {
  float:left;
  width:100%;
  text-align:center;
  color:#FFFF00;
  font-family:georgia, times;
  font-style:italic;
  margin:2em 0;
}

.cta a {
  font-size:1.5em;
  font-style:normal;
  font-family: 'Maven Pro', sans-serif;
  text-decoration:none;
  line-height:1.5em;
}

.topdeco {
  float:left;
  width:100%;
  height:10px;
  position:fixed;
  z-index:10;
}

.topdeco span {
  float:left;
  width:25%;
  height:100%;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid #00B4CC;
  border-right: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
  float:left;
  clear:left;
  padding:0.4em;
  font-size:1em;
  
}

.searchTerm:focus{
  color: #00B4CC;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #00B4CC;
  background: #00B4CC;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

#emme {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
}
#emme img {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #CC3043;
  transition: border-radius 0.2s ease-in-out;
}
#emme img:hover {
  border-radius: 30%;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    margin-top: 20px;
}

nav #logo {
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    top: -3px;
    margin-left: 80px;
    color: white;
}
nav #logo:hover {
    position: relative;
    top: 0px;
    display:block;
}

nav > span {
    margin-left: 0rem;
    color: white;
}

.slide-down {
    opacity: 0;
    animation: slide-down 1s 1s ease-in-out forwards;
}

/* Animation keyframes */
@keyframes slide-down {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}