/* ------------------------ RESET ------------------------ */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
              url(https://res.cloudinary.com/odn92/image/upload/w_1200,f_auto/v1588876930/ybitv4ibvmfq0yqtozda.jpg) no-repeat;
  background-size: cover;
  font-family: "Open Sans", sans-serif;
  color: #000;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ------------------------ HEADER ------------------------ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.2);
  color: #fff;
  padding: 0.5rem 1rem;
}

/* Logo + titre */
header div {
  display: flex;
  align-items: center;
  font-size: 1.8rem; /* taille par défaut */
  font-family: 'Montserrat', sans-serif;
  color: #ff6f00;
  font-weight: bold;
  gap: 1rem;
}

header div img {
  width: 60px;
  height: 60px;
}

header div i {
  font-size: 1.8rem;
}

/* Navigation */
header nav {
  padding: 0.5rem 1rem;
}

.first-ul {
  margin: 0;
  padding: 0;
}

.first-ul li {
  list-style: none;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
}

.first-ul li a {
  font-size: 1rem; /* taille par défaut */
  padding: 1rem;
  margin: 0.5rem;
  text-decoration: none;
  color: #fff;
  transition: all 250ms ease-in;
  position: relative;   /* ajouté pour le badge */
  display: inline-block; /* ajouté pour le badge */
}

.first-ul li a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
}

/* ------------------------ RESPONSIVE ------------------------ */
@media (max-width: 1024px) {
  header div {
    font-size: 1.5rem;
  }
  .first-ul li a {
    font-size: 0.9rem;
    padding: 0.7rem;
    margin: 0.3rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  header div {
    font-size: 1.2rem;
  }
  
  .first-ul li {
    display: block;
    margin: 0.2rem 0;
  }
  
  .first-ul li a {
    font-size: 0.8rem;
    padding: 0.5rem;
    margin: 0.2rem 0;
  }
}


/* ------------------------ TOP SECTION ----------------*/

.titles{
  color:#fff;
  text-align: center;
  width: 50vw;
  margin: 0 auto;
}

.titles h1{
  font-family: Pacifico;
  font-size: 5rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 0 black;

}

.titles h2{
  font-family: Pacifico;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 black;

}

.titles p{
  letter-spacing: 3px;
  text-shadow: 1px 1px 0 #000;
}


/* ------------------------ BOT SECTION ----------------*/
.container-boxes{
  margin: 0 auto;
  padding: 0;
  display:flex;
  justify-content: space-around;
  align-items: flex-end;
  max-width: 80vw;
}

.box{
  background: rgba(255,255,255,.5);
  margin: 1rem;
  padding: .5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 350px;
  max-width: 350px;
  max-height: 180px;
  min-height: 180px;
  transition: all 250ms ease-out;
}

.box:hover{
  background: rgba(255,255,255,.7);
  transform: translateY(-20%);
}

.box a{
  text-decoration: none;
  color:#000;
}

.icon{
  font-size: 3rem;
  padding: 1rem;
}

.texti h3{
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0;
 font-weight: bold;
}

.texti p{
  margin-top: 1rem;
  line-height: 1.5rem;
  text-align: left;
}

.texti{
  padding: .5rem;
}

/* MEDIAQUERIES */

@media (max-width: 1160px){
   .icon{
    font-size: 2rem;
    padding: 0.5rem;
  }
  .texti h3{
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0;
    font-size: 1rem;
  }

  .texti p{
    margin-top: 1rem;
    line-height: 1.5rem;
    text-align: left;
    font-size: 1.8rem;
  }
  nav li a:hover{
  background: none;
  color: black;
  }
}


@media (max-width: 850px){
  body{
    height: 100%;
  }
  .container-boxes{
    flex-direction: column;
  }
  .box:hover{
    background: rgba(255,255,255,.7);
    transform: none;
  }
  .titles h1{
  font-size: 3rem;
  }
}


/**/
.login-container {
    box-sizing: border-box;
    background: #feedf6;
    background: -webkit-gradient(linear,left top,right bottom,from(#feedf6),to(#fcf0e2));
    background: -webkit-linear-gradient(top left,#feedf6,#fcf0e2);
    background: linear-gradient(to bottom right,#feedf6,#fcf0e2);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 40px
}

.login-box {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
    padding: 20px 10px;
}

.header-sprite {
    background: url(https://cdn.myntassets.com/myx/images/header@2x-new16.a409d46af2e211afcaa82c1359787a90408024be.png) no-repeat 0 0;
    background-size: 336px 48px
}

.login-logo {
    background-position: 0 0;
    margin-top: 30px;
    width: 50px;
    height: 38px
}

.login-title {
    font-size: 32px;
    margin-top: 15px;
    color: #535766
}

.login-third-party-login {
    margin-top: 30px
}

.login-info-text {
    color: #94969f;
    font-size: 12px
}

.login-button-info-text {
    margin-top: 0;
    margin-bottom: 20px
}

.login-button-container {
    margin-top: 10px;
    margin-bottom: 40px
}

.login-button {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding-left: 40%;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #696b79;
    height: 50px;
    border: 1px solid #bfc0c6;
    background-color: #fff;
    border-radius: 5px;
    text-align: left
}

.login-button:focus {
    outline: 0
}

.login-button:hover {
    box-shadow: 0 2px 5px #eaeaec
}

.login-facebook {
    margin-bottom: 20px
}

.login-gplus-logo {
    background-position: -298px 0!important;
    width: 23px;
    top: 13px
}

.login-fb-logo,.login-gplus-logo {
    height: 29px;
    position: absolute;
    left: 15px
}

.login-fb-logo {
    background-position: -269px 0!important;
    width: 28px;
    top: 10px
}

.login-login-form {
    margin: 0
}

.login-input-container {
    margin: 20px;
    border: 1px solid #bfc0c6;
    border-radius: 5px;
    padding: 0
}

.login-input-container:hover {
    box-shadow: 0 2px 5px #eaeaec
}

.login-input-container-pink {
    border: 1px solid #6a2c91;
    box-shadow: 0 2px 5px #ffd9e2
}

.login-input-item {
    position: relative
}

.login-user-input {
    display: block;
    color: #282c3f;
    padding-right: 40px;
    font-size: 15px;
    width: 100%;
    border: 0;
    padding: 15px
}

.login-user-input-email {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.login-user-input-password {
    border-top: 1px solid #d5d6d9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

.login-error-icon {
    border: 2px solid #ee5f73;
    padding: 0 7px;
    color: #ee5f73;
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 10px;
    font-weight: 500;
    border-radius: 21px
}

.login-error-message {
    font-size: 11px;
    margin-left: 15px;
    color: #ee5f73;
    text-align: left;
    margin-top: -9px;
    max-height: 500px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier(0,1,.5,1);
    transition-timing-function: cubic-bezier(0,1,.5,1)
}

.login-captcha {
    width: 200px;
    padding: 5px;
    border: 1px solid #d5d6d9;
    border-radius: 5px
}

.login-user-input-captcha {
    border-radius: 5px
}

.login-user-input:focus {
    outline: 0
}

.login-login-button-container {
    padding: 10px 20px;
    margin: 0;
    border: 0
}

.login-login-button {
    background-color: #6a2c91;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 15px;
    display: block;
    width: 100%;
    border: 0;
    text-transform: uppercase;
    border-radius: 3px;
    font-family: Whitney
}

.login-login-button:hover {
   background: #A543E2;
}

.login-login-button:focus {
    outline: 0;
    box-shadow: inset 1px 2px 8px rgba(0,0,0,.2);
    background-color: #ff3f6c
}

.login-link-container {
    text-align: left;
    padding: 20px
}

.login-right-links {
    float: right
}

.login-link {
    cursor: pointer;
    text-decoration: none;
    color: #6a2c91;
    font-size: 13px;
    padding: 10px 0
}

.login-create-account-link {
    margin-left: 5px
}

@media (min-width: 360px) {
    .login-button {
        width:100%;
        display: inline-block
    }

    .login-facebook {
        margin-right: 15px;
        margin-bottom: 0
    }
}

@media (min-width: 400px) {
    .login-box {
        display:inline-block;
    }
}

.register-container {
    box-sizing: border-box;
    background: #feedf6;
    background: -webkit-gradient(linear,left top,right bottom,from(#feedf6),to(#fcf0e2));
    background: -webkit-linear-gradient(top left,#feedf6,#fcf0e2);
    background: linear-gradient(to bottom right,#feedf6,#fcf0e2);
    text-align: center;
    padding-top: 30px;
    position: relative;
    padding-bottom: 40px
}

.register-box {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
    padding: 20px 10px;
}

.register-sprite {
    background: url(https://cdn.myntassets.com/myx/images/header@2x-new16.a409d46af2e211afcaa82c1359787a90408024be.png) no-repeat 0 0;
    background-size: 327px 48px;
    display: inline-block
}

.register-logo {
    background-position: 0 0;
    margin-top: 30px;
    width: 50px;
    height: 38px
}

.register-title {
    font-size: 32px;
    margin-top: 15px;
    color: #535766
}

.register-third-party-register {
    margin-top: 30px
}

.register-info-text {
    color: #94969f;
    font-size: 12px
}

.register-button-info-text {
    margin-top: 0;
    margin-bottom: 20px
}

.register-button-container {
    margin-top: 10px;
    margin-bottom: 40px
}

.register-button {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 162px;
    padding-left: 18%;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #696b79;
    height: 50px;
    border: 1px solid #bfc0c6;
    background-color: #fff;
    border-radius: 5px;
    text-align: left
}

.register-button:focus {
    outline: 0
}

.register-button:hover {
    box-shadow: 0 2px 5px #eaeaec
}

.register-facebook {
    margin-bottom: 20px
}

.register-gplus-logo {
    background-position: -290px 0;
    width: 23px;
    top: 13px
}

.register-fb-logo,.register-gplus-logo {
    height: 29px;
    position: absolute;
    left: 15px
}

.register-fb-logo {
    background-position: -262px 0;
    width: 28px;
    top: 10px
}

.register-input-item {
    position: relative
}

.register-input-container {
    margin: 20px;
    border: 1px solid #bfc0c6;
    border-radius: 5px;
    padding: 0
}

.register-input-container:hover {
    box-shadow: 0 2px 5px #eaeaec
}

.register-input-container-pink {
    border: 1px solid #ff527b;
    box-shadow: 0 2px 5px #ffd9e2
}

.register-user-input {
    display: block;
    color: #282c3f;
    font-size: 15px;
    padding-right: 40px;
    width: 100%;
    border: 0;
    padding: 15px
}

.register-user-input-email {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.register-user-input-password {
    border-top: 1px solid #d5d6d9
}

.register-captcha {
    width: 200px;
    padding: 5px;
    border: 1px solid #d5d6d9;
    border-radius: 5px
}

.register-user-input-captcha {
    border-radius: 5px
}

.register-user-input-mobile {
    border-top: 1px solid #d5d6d9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

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

.register-user-input:focus {
    outline: 0
}

.register-error-icon {
    border: 2px solid #ee5f73;
    padding: 0 7px;
    color: #ee5f73;
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 10px;
    font-weight: 500;
    border-radius: 21px
}

.register-error-message {
    font-size: 11px;
    margin-left: 15px;
    color: #ee5f73;
    text-align: left;
    margin-top: -9px;
    max-height: 500px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier(0,1,.5,1);
    transition-timing-function: cubic-bezier(0,1,.5,1)
}

.register-gender-error-icon {
    font-size: 16px
}

.register-gender-error-message {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 0
}

.register-gender {
    position: relative;
    border: 0;
    font-size: 13px;
    color: #696e79;
    text-align: left;
    padding: 15px;
    margin: 0;
    border-top: 1px solid #d5d6d9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

.register-gender-title {
    display: inline;
    font-weight: 500
}

.register-gender-radio {
    margin-left: 15px;
    margin-right: 5px
}

.register-gender-label {
    cursor: pointer;
    font-weight: 500
}

.register-register-button-container {
    padding: 10px 20px;
    margin: 0;
    border: 0
}

.register-register-button {
    background-color: #ff527b;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 15px;
    display: block;
    width: 100%;
    border: 0;
    text-transform: uppercase;
    border-radius: 3px;
    font-family: Whitney-SemiBold
}

.register-register-button:hover {
    background: -webkit-gradient(linear,left top,right bottom,from(#ff527b),to(#ff3f6c));
    background: -webkit-linear-gradient(top left,#ff527b,#ff3f6c);
    background: linear-gradient(to bottom right,#ff527b,#ff3f6c)
}

.register-register-button:focus {
    outline: 0;
    box-shadow: inset 1px 2px 8px rgba(0,0,0,.2);
    background-color: #ff3f6c
}

.register-link-container {
    text-align: left;
    padding: 20px
}

.register-login-link {
    text-align: center
}

.register-register-form {
    margin: 0
}

.register-link {
    cursor: pointer;
    text-decoration: none;
    color: #ff527b;
    padding: 10px 0;
    font-size: 13px
}

.register-create-account-link {
    margin-left: 5px
}

@media (min-width: 360px) {
    .register-button {
        width:49%;
        display: inline-block
    }

    .register-facebook {
        margin-right: 15px;
        margin-bottom: 0
    }
}

@media (min-width: 400px) {
    .register-box {
        display:inline-block;
        width: 400px
    }
}

.forgot-password-container {
    box-sizing: border-box;
    background: #feedf6;
    background: -webkit-gradient(linear,left top,right bottom,from(#feedf6),to(#fcf0e2));
    background: -webkit-linear-gradient(top left,#feedf6,#fcf0e2);
    background: linear-gradient(to bottom right,#feedf6,#fcf0e2);
    text-align: center;
    padding-top: 30px;
    position: relative;
    padding-bottom: 40px
}

.forgot-password-sprite {
    background: url(https://cdn.myntassets.com/myx/images/header@2x-new16.a409d46af2e211afcaa82c1359787a90408024be.png) no-repeat 0 0;
    background-size: 327px 48px;
    display: inline-block
}

.forgot-password-logo {
    background-position: 0 0;
    margin-top: 30px;
    width: 50px;
    height: 38px
}

.forgot-password-box {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
    padding: 20px 10px;
    max-width: 430px
}

.forgot-password-title {
    font-size: 32px;
    margin-top: 15px;
    color: #535766
}

.forgot-password-subtitle {
    color: #535766
}

.forgot-password-form {
    padding: 10px 20px
}

.forgot-password-user-input {
    display: block;
    margin-top: 50px;
    color: #282c3f;
    font-size: 15px;
    border: 1px solid #bfc0c6;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px
}

.forgot-password-user-input:hover {
    box-shadow: 0 2px 5px #eaeaec
}

.forgot-password-user-input:focus {
    outline: 0;
    border: 1px solid #ff527b;
    box-shadow: 0 2px 5px #ffd9e2
}

.forgot-password-button {
    background-color: #ff527b;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 15px;
    display: block;
    width: 100%;
    border: 0;
    text-transform: uppercase;
    border-radius: 3px
}

.forgot-password-button:focus {
    outline: 0;
    box-shadow: inset 1px 2px 8px rgba(0,0,0,.2);
    background-color: #ff3f6c
}

.forgot-password-button:hover {
    background: -webkit-gradient(linear,left top,right bottom,from(#ff527b),to(#ff3f6c));
    background: -webkit-linear-gradient(top left,#ff527b,#ff3f6c);
    background: linear-gradient(to bottom right,#ff527b,#ff3f6c)
}

.forgot-password-login-link {
    cursor: pointer;
    text-decoration: none;
    color: #ea5e8b;
    padding: 20px;
    display: inline-block;
    font-size: 13px
}

.forgot-password-message {
    font-weight: 500;
    margin: 20px 0
}

@media (min-width: 400px) {
    .forgot-password-box {
        display:inline-block;
        width: 400px
    }
}

.fa-stack[data-count]:after {
  position: absolute;
  right: 0%;
  top: 1%;
  content: attr(data-count);
  font-size: 50%;
  padding:.6em;
  border-radius: 999px;
  line-height:.75em;
  color: white;
  background: rgba(255, 0, 0, 0.85);
  text-align: center;
  min-width: 2em;
  font-weight: bold;
}

div#flex{
position: run-in;
align: center;
text-align: center;
bottom: 30px;
left: 30px;
margin: 0 auto;
  margin-top: 0;
  background: rgba(0,0,255,0.3);
  padding: 10px;
  font-size: 0.8rem;
}

div#flex a{
  text-decoration: none;
  color: white;
  transition: all 250ms ease-in;
}
div#flex a:hover{
  background: rgba(255,255,255,.3);
  color: red;
}

.second-ul li{
  list-style: none;
  display: inline;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.second-ul li a{
  padding: 0.5rem;
  margin: 0.5rem;
  text-decoration: none;
  color: red;
  transition: all 250ms ease-in;
}

.second-ul li a:hover{
  background: rgba(255,255,255,.3);
  color: black;
}

/* MESSAGERIE */
/*
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #27ae60;
  font-family: "proxima-nova", "Source Sans Pro", sans-serif;
  font-size: 1em;
  letter-spacing: 0.1px;
  color: #32465a;
  text-rendering: optimizeLegibility;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -webkit-font-smoothing: antialiased;
}
*/

#frame {
  width: 95%;
  min-width: 360px;
  max-width: 1000px;
  height: 92vh;
  min-height: 300px;
  max-height: 720px;
color:white;
  background: rgba(0,0,255,0.3);
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 360px) {
  #frame {
    width: 100%;
    height: 100vh;
  }
}

#frame a{
  text-decoration: none;
  color: white;
  transition: all 250ms ease-in;
}
#frame a:hover{
  background: rgba(255,255,255,.3);
  color: red;
}

#frame #sidepanel {
  float: left;
  min-width: 280px;
  max-width: 340px;
  width: 40%;
  height: 100%;
  background: #2c3e50;
  color: #f5f5f5;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel {
    width: 58px;
    min-width: 58px;
  }
}

#frame #sidepanel #profile {
  width: 80%;
  margin: 25px auto;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile {
    width: 100%;
    margin: 0 auto;
    padding: 5px 0 0 0;
    background: #32465a;
  }
}
#frame #sidepanel #profile.expanded .wrap {
  height: 210px;
  line-height: initial;
}
#frame #sidepanel #profile.expanded .wrap p {
  margin-top: 20px;
}
#frame #sidepanel #profile.expanded .wrap i.expand-button {
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
#frame #sidepanel #profile .wrap {
  height: 60px;
  line-height: 60px;
  /*overflow: hidden;*/
      position: relative; /* déjà probablement ok */
    overflow: visible;  /* important si le menu dépasse */
  -moz-transition: 0.3s height ease;
  -o-transition: 0.3s height ease;
  -webkit-transition: 0.3s height ease;
  transition: 0.3s height ease;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap {
    height: 55px;
  }
}
#frame #sidepanel #profile .wrap img {
  width: 50px;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid #e74c3c;
  height: auto;
  float: left;
  cursor: pointer;
  -moz-transition: 0.3s border ease;
  -o-transition: 0.3s border ease;
  -webkit-transition: 0.3s border ease;
  transition: 0.3s border ease;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap img {
    width: 40px;
    margin-left: 4px;
  }
}
#frame #sidepanel #profile .wrap img.online {
  border: 2px solid #2ecc71;
}
#frame #sidepanel #profile .wrap img.away {
  border: 2px solid #f1c40f;
}
#frame #sidepanel #profile .wrap img.busy {
  border: 2px solid #e74c3c;
}
#frame #sidepanel #profile .wrap img.offline {
  border: 2px solid #95a5a6;
}
#frame #sidepanel #profile .wrap p {
  float: left;
  margin-left: 15px;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap p {
    display: none;
  }
}
#frame #sidepanel #profile .wrap i.expand-button {
  float: right;
  margin-top: 23px;
  font-size: 0.8em;
  cursor: pointer;
  color: #435f7a;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap i.expand-button {
    display: none;
  }
}
#frame #sidepanel #profile .wrap #status-options {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 150px;
  margin: 70px 0 0 0;
  border-radius: 6px;
  z-index: 99;
  line-height: initial;
  background: #435f7a;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options {
    width: 58px;
    margin-top: 57px;
  }
}
#frame #sidepanel #profile .wrap #status-options.active {
  opacity: 1;
  visibility: visible;
  margin: 75px 0 0 0;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options.active {
    margin-top: 62px;
  }
}
#frame #sidepanel #profile .wrap #status-options:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #435f7a;
  margin: -8px 0 0 24px;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options:before {
    margin-left: 23px;
  }
}
#frame #sidepanel #profile .wrap #status-options ul {
  /*overflow: hidden;*/
  border-radius: 6px;
}
#frame #sidepanel #profile .wrap #status-options ul li {
  padding: 15px 0 30px 18px;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li {
    padding: 15px 0 35px 22px;
  }
}
#frame #sidepanel #profile .wrap #status-options ul li:hover {
  background: #496886;
}
#frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px 0 0 0;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li span.status-circle {
    width: 14px;
    height: 14px;
  }
}
#frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  margin: -3px 0 0 -3px;
  background: transparent;
  border-radius: 50%;
  z-index: 0;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li span.status-circle:before {
    height: 18px;
    width: 18px;
  }
}
#frame #sidepanel #profile .wrap #status-options ul li p {
  padding-left: 12px;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile .wrap #status-options ul li p {
    display: none;
  }
}
#frame #sidepanel #profile .wrap #status-options ul li#status-online span.status-circle {
  background: #2ecc71;
}
#frame #sidepanel #profile .wrap #status-options ul li#status-online.active span.status-circle:before {
  border: 1px solid #2ecc71;
}
#frame #sidepanel #profile .wrap #status-options ul li#status-away span.status-circle {
  background: #f1c40f;
}
#frame #sidepanel #profile .wrap #status-options ul li#status-away.active span.status-circle:before {
  border: 1px solid #f1c40f;
}
#frame #sidepanel #profile .wrap #status-options ul li#status-busy span.status-circle {
  background: #e74c3c;
}
#frame #sidepanel #profile .wrap #status-options ul li#status-busy.active span.status-circle:before {
  border: 1px solid #e74c3c;
}
#frame #sidepanel #profile .wrap #status-options ul li#status-offline span.status-circle {
  background: #95a5a6;
}
#frame #sidepanel #profile .wrap #status-options ul li#status-offline.active span.status-circle:before {
  border: 1px solid #95a5a6;
}
#frame #sidepanel #profile .wrap #expanded {
  padding: 100px 0 0 0;
  display: block;
  line-height: initial !important;
}
#frame #sidepanel #profile .wrap #expanded label {
  float: left;
  clear: both;
  margin: 0 8px 5px 0;
  padding: 5px 0;
}
#frame #sidepanel #profile .wrap #expanded input {
  border: none;
  margin-bottom: 6px;
  background: #32465a;
  border-radius: 3px;
  color: #f5f5f5;
  padding: 7px;
  width: calc(100% - 43px);
}
#frame #sidepanel #profile .wrap #expanded input:focus {
  outline: none;
  background: #435f7a;
}
#frame #sidepanel #search {
  border-top: 1px solid #32465a;
  border-bottom: 1px solid #32465a;
  font-weight: 300;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #search {
    display: none;
  }
}
#frame #sidepanel #search label {
  position: absolute;
  margin: 10px 0 0 20px;
}
#frame #sidepanel #search input {
  font-family: "proxima-nova", "Source Sans Pro", sans-serif;
  padding: 10px 0 10px 46px;
  width: calc(100% - 25px);
  border: none;
  background: #32465a;
  color: #f5f5f5;
}
#frame #sidepanel #search input:focus {
  outline: none;
  background: #435f7a;
}
#frame #sidepanel #search input::-webkit-input-placeholder {
  color: #f5f5f5;
}
#frame #sidepanel #search input::-moz-placeholder {
  color: #f5f5f5;
}
#frame #sidepanel #search input:-ms-input-placeholder {
  color: #f5f5f5;
}
#frame #sidepanel #search input:-moz-placeholder {
  color: #f5f5f5;
}
//////////////////////////////////////////////////////////////////////miniwrap
#frame #sidepanel #profile ul li.miniwrap {
  position: relative;
  padding: 10px 0 15px 0;
  font-size: 0.9em;
  cursor: pointer;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #profile ul li.miniwrap {
    padding: 6px 0 46px 8px;
  }
}
#frame #sidepanel #profile ul li.miniwrap:hover {
  background: #32465a;
}
#frame #sidepanel #profile ul li.miniwrap.active {
  background: #32465a;
  border-right: 5px solid #435f7a;
}
///////////////////////////////////////////////////////////////////////////////////////////fin miniwrap

#frame #sidepanel #contacts {
 /* height: 500px;
    width: 500px;*/
  min-height: calc(100% - 93px);
  max-height: calc(100% - 93px);
  overflow-y: scroll;
  overflow-x: hidden;
       flex-direction:column-reverse;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts {
    height: calc(100% - 149px);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #frame #sidepanel #contacts::-webkit-scrollbar {
    display: none;
  }
}
#frame #sidepanel #contacts.expanded {
  height: calc(100% - 334px);
}
#frame #sidepanel #contacts::-webkit-scrollbar {
  width: 8px;
  background: #2c3e50;
}
#frame #sidepanel #contacts::-webkit-scrollbar-thumb {
  background-color: #243140;
}

#frame #sidepanel #contacts ul li.contact {
  position: relative;
  padding: 10px 0 15px 0;
  font-size: 0.9em;
  cursor: pointer;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact {
    padding: 6px 0 46px 8px;
  }
}
#frame #sidepanel #contacts ul li.contact:hover {
  background: #32465a;
}
#frame #sidepanel #contacts ul li.contact.active {
  background: #32465a;
  border-right: 5px solid #435f7a;
}
#frame #sidepanel #contacts ul li.contact.active span.contact-status {
  border: 2px solid #32465a !important;
}
#frame #sidepanel #contacts ul li.contact .wrap {
  width: 88%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact .wrap {
    width: 100%;
  }
}
#frame #sidepanel #contacts ul li.contact .wrap span {
  position: absolute;
  left: 0;
  margin: -2px 0 0 -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #2c3e50;
  background: #95a5a6;
}
#frame #sidepanel #contacts ul li.contact .wrap span.online {
  background: #2ecc71;
}
#frame #sidepanel #contacts ul li.contact .wrap span.away {
  background: #f1c40f;
}
#frame #sidepanel #contacts ul li.contact .wrap span.busy {
  background: #e74c3c;
}
#frame #sidepanel #contacts ul li.contact .wrap img {
  width: 40px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact .wrap img {
    margin-right: 0px;
  }
}
#frame #sidepanel #contacts ul li.contact .wrap .meta {
  padding: 5px 0 0 0;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #contacts ul li.contact .wrap .meta {
    display: none;
  }
}
#frame #sidepanel #contacts ul li.contact .wrap .meta .name {
  font-weight: 600;
}
#frame #sidepanel #contacts ul li.contact .wrap .meta .preview {
  margin: 5px 0 0 0;
  padding: 0 0 1px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -moz-transition: 1s all ease;
  -o-transition: 1s all ease;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}
#frame #sidepanel #contacts ul li.contact .wrap .meta .preview span {
  position: initial;
  border-radius: initial;
  background: none;
  border: none;
  padding: 0 2px 0 0;
  margin: 0 0 0 1px;
  opacity: 0.5;
}
#frame #sidepanel #bottom-bar {
  position: absolute;
  width: 100%;
  bottom: 0;
}
#frame #sidepanel #bottom-bar button {
  float: left;
  border: none;
  width: 50%;
  padding: 10px 0;
  background: #32465a;
  color: #f5f5f5;
  cursor: pointer;
  font-size: 0.85em;
  font-family: "proxima-nova", "Source Sans Pro", sans-serif;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button {
    float: none;
    width: 100%;
    padding: 15px 0;
  }
}
#frame #sidepanel #bottom-bar button:focus {
  outline: none;
}
#frame #sidepanel #bottom-bar button:nth-child(1) {
  border-right: 1px solid #2c3e50;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid #2c3e50;
  }
}
#frame #sidepanel #bottom-bar button:hover {
  background: #435f7a;
}
#frame #sidepanel #bottom-bar button i {
  margin-right: 3px;
  font-size: 1em;
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button i {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 735px) {
  #frame #sidepanel #bottom-bar button span {
    display: none;
  }
}

#frame .content {
  float: right;
  width: 60%;
  height: 100%;
  overflow: hidden;
  position: relative;
display: none;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0 0 2em 0;
}
@media screen and (max-width: 735px) {
  #frame .content {
    width: calc(100% - 58px);
    min-width: 300px !important;
  }
}
@media screen and (min-width: 900px) {
  #frame .content {
    width: calc(100% - 340px);
  }
}
#frame .content::-webkit-scrollbar {
  width: 8px;
  background: #2c3e50;
}
#frame .content::-webkit-scrollbar-thumb {
  background-color: #243140;
}
#frame .content .contact-profile {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #7d3333;
}
#frame .content .contact-profile img {
  width: 40px;
  border-radius: 50%;
  float: left;
  margin: 9px 12px 0 9px;
}
#frame .content .contact-profile p {
  float: left;
}
#frame .content .contact-profile .social-media {
  float: right;
}
#frame .content .contact-profile .social-media i {
  margin-left: 14px;
  cursor: pointer;
}
#frame .content .contact-profile .social-media i:nth-last-child(1) {
  margin-right: 20px;
}
#frame .content .contact-profile .social-media i:hover {
  color: #435f7a;
}
#frame .content .messages {
  height: auto;
  min-height: calc(100% - 93px);
  max-height: calc(100% - 93px);
  overflow-y: scroll;
  overflow-x: hidden;
}
@media screen and (max-width: 735px) {
  #frame .content .messages {
    max-height: calc(100% - 105px);
  }
}
#frame .content .messages::-webkit-scrollbar {
  width: 8px;
  background: rgba(0, 0, 0, 0);
}
#frame .content .messages::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.9);
}
#frame .content .messages ul li {
  display: inline-block;
  clear: both;
  float: left;
  margin: 15px 15px 5px 15px;
  width: calc(100% - 25px);
  font-size: 0.9em;
}
#frame .content .messages ul li:nth-last-child(1) {
  margin-bottom: 20px;
}
#frame .content .messages ul li.sent img {
  margin: 6px 8px 0 0;
}
#frame .content .messages ul li.sent p {
  background: #435f7a;
  color: #f5f5f5;
}
#frame .content .messages ul li.replies img {
  float: right;
  margin: 6px 0 0 8px;
}
#frame .content .messages ul li.replies p {
 background: #7d3333;
  float: right;
}
#frame .content .messages ul li img {
  width: 22px;
  border-radius: 50%;
  float: left;
}
#frame .content .messages ul li p {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 205px;
  line-height: 130%;
}
@media screen and (min-width: 735px) {
  #frame .content .messages ul li p {
    max-width: 300px;
  }
}
#frame .content .message-input {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 99;
}
#frame .content .message-input .wrap {
  position: relative;
}
#frame .content .message-input .wrap input {
  font-family: "proxima-nova", "Source Sans Pro", sans-serif;
  float: left;
  border: none;
  width: calc(100% - 90px);
  padding: 11px 32px 10px 8px;
  font-size: 0.8em;
  color: #32465a;
}
@media screen and (max-width: 735px) {
  #frame .content .message-input .wrap input {
    padding: 15px 32px 16px 8px;
  }
}
#frame .content .message-input .wrap input:focus {
  outline: none;
}
#frame .content .message-input .wrap .attachment {
  position: absolute;
  right: 60px;
  z-index: 4;
  margin-top: 10px;
  font-size: 1.1em;
  color: #435f7a;
  opacity: 0.5;
  cursor: pointer;
}
@media screen and (max-width: 735px) {
  #frame .content .message-input .wrap .attachment {
    margin-top: 17px;
    right: 65px;
  }
}
#frame .content .message-input .wrap .attachment:hover {
  opacity: 1;
}
#frame .content .message-input .wrap button {
  float: right;
  border: none;
  width: 50px;
  padding: 12px 0;
  cursor: pointer;
  background: #32465a;
  color: #f5f5f5;
}
@media screen and (max-width: 735px) {
  #frame .content .message-input .wrap button {
    padding: 16px 0;
  }
}
#frame .content .message-input .wrap button:hover {
  background: #435f7a;
}
#frame .content .message-input .wrap button:focus {
  outline: none;
}

#frame #bloc_divid {
    display : none;
  scroll-behavior: auto;

}
#frame #dividloc{
    display : inline;
  scroll-behavior: auto;

}

#frame #bloc_dividdefault {
   display : block;
}



/* NOTIFICATION MESSAGE NON LU */

/* STYLE barre recherche lieu*/
    .search-box{
	margin: auto;
        width: 300px;
        position: relative;
        //display: inline-block;
        font-size: 14px;
    }
    .search-box input[type="text"]{
        height: 32px;
        padding: 5px 10px;
        border: 1px solid #CCCCCC;
        font-size: 14px;
    }
    .result{
        position: absolute;        
        z-index: 999;
        top: 100%;
        left: 0;
        background: #f2f2f2;
    }
    .search-box input[type="text"], .result{
        width: 100%;
        box-sizing: border-box;
    }
    /* Formatting result items */
    .result p{
        margin: 0;
        padding: 7px 10px;
        border: 1px solid #CCCCCC;
        border-top: none;
        cursor: pointer;
    }
    .result p:hover{
        background: #f2f2f2;
    }
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
$positive-circle   : #82d428;
$negative-circle   : #ff6e00;
$circle-gray       : black; /*//#e4e4e4;*/
$header-black      : #242a32;
$background-color  : black; /*#6fcae7;*/
$tab-text          : #5d5d5d;
$white			   : blue; /*#fff;*/
$reviews-text-black: #363636;
$white-light-gray  : blue; /*#f9f9f9;*/
$divdiv : blue;

@mixin user-select() {
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

@mixin chart($radius, $width) {
  .chart-pie {
    position: relative;
    display: inline-block;
    height: $radius;
    width: $radius;
    border-radius: 50%;
    background-color: $circle-gray;
    vertical-align: middle;
     
    &:after {
      content: '';
      display: block;
      position: absolute;
      height: $radius - $width;
      width: $radius - $width;
      top: $width / 2;
      left: $width / 2;
      border-radius: 50%;
      background-color: $white;
    }
  }
  .chart-pie-count {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 44px;
    color: $header-black;
    text-align: center;
    z-index: 1;
  }
  .chart-pie > div {
    clip: rect(0, $radius, $radius, $radius / 2);
  }
  .chart-pie > div,
  .chart-pie.over50 .first-fill {
    position: absolute;
    height: $radius;
    width: $radius;
    border-radius: 50%;
  }
  .chart-pie.over50 > div {
    clip: rect(auto,auto,auto,auto);
  }
  .chart-pie.over50 .first-fill {
    clip: rect(0, $radius, $radius, $radius / 2);
  }
  .chart-pie:not(.over50) .first-fill {
      display: none;
  }
  .second-fill {
    position: absolute;
    clip: rect(0, $radius / 2, $radius, 0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-width: $width - 1;
    border-style: solid;
    box-sizing: border-box;
  }
  .chart-pie.positive {
    .first-fill {
      background-color: $positive-circle;
    }
    .second-fill {
      border-color: $positive-circle;
    }
  }
  .chart-pie.negative {
    .first-fill {
      background-color: $negative-circle;
    }
    .second-fill {
      border-color: $negative-circle;
    }
  }
}
/*
#aspect-content {
  margin: 50px 0 1em;
  font-family: "Poppins", sans-serif;
    * {
      box-sizing: border-box;
    }
}
.aspect-tab {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 10px;
  padding-bottom: 1em;
  border-radius: 4px;
  background-color: $white;
  box-shadow: 0 0 0 1px rgba(236,236,236,1);
  opacity: 1;
  transition: box-shadow .2s, opacity .4s;
  
  &:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .11);
  }
      background: #2c3e50;


}
.aspect-input {
  display: none;
}
.aspect-input:checked ~ .aspect-content + .aspect-tab-content {
  max-height: 3000px;
}
.aspect-input:checked ~ .aspect-content:after {
    transform: rotate(0);
}

.aspect-inputbis {
  display: none;
}
.aspect-inputbis ~ .aspect-content + .aspect-tab-content {
  max-height: 3000px;
}

.aspect-label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-height: 80px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0;
  z-index: 1;
  cursor: pointer;
  &:hover ~ .aspect-content:after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTI0IDI0SDBWMGgyNHoiIG9wYWNpdHk9Ii44NyIvPgogICAgICAgIDxwYXRoIGZpbGw9IiM1NTZBRUEiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE1Ljg4IDE1LjI5TDEyIDExLjQxbC0zLjg4IDMuODhhLjk5Ni45OTYgMCAxIDEtMS40MS0xLjQxbDQuNTktNC41OWEuOTk2Ljk5NiAwIDAgMSAxLjQxIDBsNC41OSA0LjU5Yy4zOS4zOS4zOSAxLjAyIDAgMS40MS0uMzkuMzgtMS4wMy4zOS0xLjQyIDB6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=');
  }
}
.aspect-content {
  position: relative;
  display: block;
  height: 80px;
  margin: 0 0 1em 0;
  padding: 0 87px 0 30px;
  font-size: 0;
  white-space: nowrap;
  cursor: pointer;
  @include user-select();
  &:before,
  &:after  {
    content: '';
    display: inline-block;
    vertical-align: middle;
  }
  &:before {
    height: 100%;
  }
  &:after {
    position: absolute;
    width: 24px;
    height: 100%;
    right: 30px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTI0IDI0SDBWMGgyNHoiIG9wYWNpdHk9Ii44NyIvPgogICAgICAgIDxwYXRoIGZpbGw9IiNBOUFDQUYiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTE1Ljg4IDE1LjI5TDEyIDExLjQxbC0zLjg4IDMuODhhLjk5Ni45OTYgMCAxIDEtMS40MS0xLjQxbDQuNTktNC41OWEuOTk2Ljk5NiAwIDAgMSAxLjQxIDBsNC41OSA0LjU5Yy4zOS4zOS4zOSAxLjAyIDAgMS40MS0uMzkuMzgtMS4wMy4zOS0xLjQyIDB6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=');
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
  }
}
.aspect-name {
  display: inline-block;
  width: 90%;
  margin-left: 16px;
  font-weight: 500;
  color: $header-black;
  white-space: normal;
  text-align: left;
  vertical-align: middle;
}
.aspect-stat {
  width: 40%;
  text-align: right;
}
.all-opinions,
.aspect-name {
  font-size: 14px;
  line-height: 22px;
}
.all-opinions {
  color: $tab-text;
  text-align: left;
}
.aspect-content + .aspect-tab-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.aspect-content > div,
.aspect-stat > div {
  display: inline-block;
}
.aspect-content > div {
  vertical-align: middle;
}
.positive-count,
.negative-count,
.neutral-count,
.without-count {
  display: inline-block;
  margin: 0 0 0 20px;
  padding-left: 26px;
  background-repeat: no-repeat;
  font-size: 13px;
  line-height: 20px;
  color: $reviews-text-black;
}
.positive-count {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiM3RUQzMjEiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEwIDE4LjU3MWMtNC43MjYgMC04LjU3MS0zLjg0NS04LjU3MS04LjU3MSAwLTQuNzI2IDMuODQ1LTguNTcxIDguNTcxLTguNTcxIDQuNzI2IDAgOC41NzEgMy44NDUgOC41NzEgOC41NzEgMCA0LjcyNi0zLjg0NSA4LjU3MS04LjU3MSA4LjU3MXpNMjAgMTBjMCA1LjUxNC00LjQ4NiAxMC0xMCAxMFMwIDE1LjUxNCAwIDEwIDQuNDg2IDAgMTAgMHMxMCA0LjQ4NiAxMCAxMHpNNSAxMS40MjdhNSA1IDAgMCAwIDEwIDAgLjcxNC43MTQgMCAxIDAtMS40MjkgMCAzLjU3MSAzLjU3MSAwIDAgMS03LjE0MiAwIC43MTQuNzE0IDAgMSAwLTEuNDI5IDB6bTEuMDcxLTVhMS4wNzEgMS4wNzEgMCAxIDAgMCAyLjE0MyAxLjA3MSAxLjA3MSAwIDAgMCAwLTIuMTQzem03Ljg1OCAwYTEuMDcxIDEuMDcxIDAgMSAwIDAgMi4xNDMgMS4wNzEgMS4wNzEgMCAwIDAgMC0yLjE0M3oiLz4KPC9zdmc+Cg==');
}
.negative-count {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNGRjZFMDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEwIDE4LjU3MWMtNC43MjYgMC04LjU3MS0zLjg0NS04LjU3MS04LjU3MSAwLTQuNzI2IDMuODQ1LTguNTcxIDguNTcxLTguNTcxIDQuNzI2IDAgOC41NzEgMy44NDUgOC41NzEgOC41NzEgMCA0LjcyNi0zLjg0NSA4LjU3MS04LjU3MSA4LjU3MXpNMjAgMTBjMCA1LjUxNC00LjQ4NiAxMC0xMCAxMFMwIDE1LjUxNCAwIDEwIDQuNDg2IDAgMTAgMHMxMCA0LjQ4NiAxMCAxMHpNNSAxNC45OThhLjcxNC43MTQgMCAwIDAgMS40MjkgMCAzLjU3MSAzLjU3MSAwIDAgMSA3LjE0MiAwIC43MTQuNzE0IDAgMSAwIDEuNDI5IDAgNSA1IDAgMSAwLTEwIDB6bTEuMDcxLTguNTdhMS4wNzEgMS4wNzEgMCAxIDAgMCAyLjE0MiAxLjA3MSAxLjA3MSAwIDAgMCAwLTIuMTQzem03Ljg1OCAwYTEuMDcxIDEuMDcxIDAgMSAwIDAgMi4xNDIgMS4wNzEgMS4wNzEgMCAwIDAgMC0yLjE0M3oiLz4KPC9zdmc+Cg==');
}
.neutral-count {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNCQUMyRDYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEwIDE4LjU3MWMtNC43MjYgMC04LjU3MS0zLjg0NS04LjU3MS04LjU3MSAwLTQuNzI2IDMuODQ1LTguNTcxIDguNTcxLTguNTcxIDQuNzI2IDAgOC41NzEgMy44NDUgOC41NzEgOC41NzEgMCA0LjcyNi0zLjg0NSA4LjU3MS04LjU3MSA4LjU3MXpNMjAgMTBjMCA1LjUxNC00LjQ4NiAxMC0xMCAxMFMwIDE1LjUxNCAwIDEwIDQuNDg2IDAgMTAgMHMxMCA0LjQ4NiAxMCAxMHpNNS43MTQgMTEuNDI3YS43MTQuNzE0IDAgMSAwIDAgMS40MjloOC41NzJhLjcxNC43MTQgMCAxIDAgMC0xLjQyOUg1LjcxNHptLjM1Ny01YTEuMDcxIDEuMDcxIDAgMSAwIDAgMi4xNDMgMS4wNzEgMS4wNzEgMCAwIDAgMC0yLjE0M3ptNy44NTggMGExLjA3MSAxLjA3MSAwIDEgMCAwIDIuMTQzIDEuMDcxIDEuMDcxIDAgMCAwIDAtMi4xNDN6Ii8+Cjwvc3ZnPgo=');
}
.aspect-info {
  width: 60%;
  white-space: nowrap;
  font-size: 0;
  &:before {
    content: '';
    display: inline-block;
    height: 44px;
    vertical-align: middle;
  }
}
@include chart(44px, 4px);
.aspect-tab-content {
  background-color: $white-light-gray;
  font-size: 0;
  text-align: justify;
}
.sentiment-wrapper {
  padding: 24px 30px 30px;
}
.sentiment-wrapper > div {
  display: inline-block;
  width: 33.3%;
  max-width: 390px;
  padding: 0 5px;
  box-sizing: border-box;
  vertical-align: top;
  cursor: default;
}
.sentiment-wrapper > div > div {
  width: 100%;
  padding: 16px 24px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: $divdiv;
  border: 1px solid #ececec;
  text-align: left;
}

.divfans {
  width: 100%;
  height:100%;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 1em;
  text-align: left;
}
.opinion-header {
 position: relative;
  width: 100%;
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: $header-black;
  text-transform: capitalize;
}
.opinion-header > span:nth-child(2) {
  position: absolute;
  right: 0;
}
.opinion-header + div > span {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: $reviews-text-black;
}
@media screen and (max-width: 800px) {
  .aspect-label {
    max-height: 102px;
  }
  .aspect-content {
    height: auto;
    padding: 10px 87px 10px 30px;
    &:before {
      display: none;
    }
    &:after {
      top: 0;
    }
  }
  .aspect-content > div {
    display: block;
    width: 100%;
  }
  .aspect-stat {
    margin-top: 10px;
    text-align: left;
  }
}
@media screen and (max-width: 750px) {
  .sentiment-wrapper > div {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .sentiment-wrapper > div:not(:first-child) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .aspect-label {
    max-height: 140px;
  }
  .aspect-stat > div {
    display: block;
    width: 100%;
  }
  .all-opinions {
    margin-bottom: 10px;
  }
  .all-opinions + div > span:first-child {
    margin: 0;
  }
}
*/
////////////////////////////////////////////////////////////////////////////////////

#test ul li.contact {
  position: relative;
  padding: 10px 0 15px 0;
  font-size: 0.9em;
  cursor: pointer;
}
@media screen and (max-width: 735px) {
#test ul li.contact {
    padding: 6px 0 46px 8px;
  }
}
#test ul li.contact:hover {
  background: #32465a;
}
#test ul li.contact.active {
  background: #32465a;
  border-right: 5px solid #435f7a;
}
#test ul li.contact.active span.contact-status {
  border: 2px solid #32465a !important;
}
#test ul li.contact .wrap {
  width: 88%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 735px) {
#test ul li.contact .wrap {
    width: 100%;
  }
}
#test ul li.contact .wrap span {
  position: absolute;
  left: 0;
  margin: -2px 0 0 -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #2c3e50;
  background: #95a5a6;
}
#test ul li.contact .wrap span.online {
  background: #2ecc71;
}
#test ul li.contact .wrap span.away {
  background: #f1c40f;
}
#test ul li.contact .wrap span.busy {
  background: #e74c3c;
}
#test ul li.contact .wrap img {
  width: 40px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}
@media screen and (max-width: 735px) {
#test ul li.contact .wrap img {
    margin-right: 0px;
  }
}
#test ul li.contact .wrap .meta {
  padding: 5px 0 0 0;
}
@media screen and (max-width: 735px) {
#test ul li.contact .wrap .meta {
    display: none;
  }
}
#test ul li.contact .wrap .meta .name {
  font-weight: 600;
}
#test ul li.contact .wrap .meta .preview {
  margin: 5px 0 0 0;
  padding: 0 0 1px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -moz-transition: 1s all ease;
  -o-transition: 1s all ease;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}
#test ul li.contact .wrap .meta .preview span {
  position: initial;
  border-radius: initial;
  background: none;
  border: none;
  padding: 0 2px 0 0;
  margin: 0 0 0 1px;
  opacity: 0.5;
}

.date_avis {
  font-size: 14px;
  line-height: 22px;
}

/*STYLE NOTE ETOILE*/
.stars {
	margin: 50px;
	text-align: center;
}

.stargrey {
	color: #96969d;
}

.yellow {
	color: #fedc18;
}

.star:hover {
	cursor: pointer;
}

.badge-count {
    position: absolute;
    top: 0px;      /* ajuster selon ton icône */
    right: 0px;    /* ajuster selon ton icône */
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

/* cacher badge si vide */
.badge-count:empty {
    display: none;
}
/* Style badge messagerie */
.icon-wrapper {
    position: relative;
}

.has-badge {
    position: absolute;
    top: -2px;        /* ↓ rapproche verticalement */
    right: -4px;      /* ← rapproche horizontalement */
    
    min-width: 18px;
    height: 18px;
    padding: 0 5px;

    background: red;
    color: #fff;
    font-size: 11px;
    font-weight: bold;

    border-radius: 50%;
    line-height: 18px;
    text-align: center;

    display: none; /* contrôlé par JS */
}