
/* body{
  background: #000;
} */

.cont{
  width: 100%;
  /* max-width: 350px; */
  text-align: center;
  margin: 4% auto;
  padding: 30px 0;
  /* background: #111; */
  background:#f4f6f7;
  color: #EEE;
  border-radius: 5px;
  /* border: thin solid #444; */
  overflow: hidden;
}

/* hr{
  margin: 20px;
  border: none;
  border-bottom: thin solid rgba(255,255,255,.1);
} */

/* div.title{
  font-size: 2em;
} */

/* h1 span{
  font-weight: 300;
  color: #Fd4;
} */

div.stars{
  width: 320px;
  display: inline-block;
}

input.star{
  display: none;
}

label.star {
  float: right;
  padding: 10px;
  font-size: 36px;
  color: #444;
  transition: all .2s;
}

input.star:checked ~ label.star:before {
  content:'\f005';
  color: #FD4;
  transition: all .25s;
}


input.star-5:checked ~ label.star:before {
    color: #ffb777;
  /* color:#FE7; */
  /* text-shadow: 0 0 20px #952; */
  text-shadow: 0 0 20px #f7d9ae;
}

input.star-1:checked ~ label.star:before {
  color: #F62;
}

label.star:hover{
  transform: rotate(-15deg) scale(1.3);
}

label.star:before{
  content:'\f006';
  font-family: FontAwesome;
}

.rev-box{
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all .25s;
}

textarea.review{
  background: #fff;
  border: none;
  border-radius: 5px;
  /* width: 100%; */
  max-width: 80%;
  height: 100px;
  padding: 10px;
  box-sizing: border-box;
  /* color: #EEE; */
  color: #8f8f8f;
}

label.review{
  color: black;
  display: block;
  transition:opacity .25s;
}



input.star:checked ~ .rev-box{
  height: 125px;
  overflow: visible;
}



input[type="range"] {
    accent-color:var(--theme-color);
    background: linear-gradient(to right, #82CFD0 0%, #82CFD0 50%, #fff 50%, #fff 100%);
  }
  


.addons-questions{
    color:#ffb777;
    margin-bottom: 10px;
    /* margin-top: 5px; */
    padding: 15px;
    border-radius: 5px;
    width: 320px;
    background-color: #f4f6f7;
}

.rating-stars {
    font-size: 24px;
}



@media (min-width: 992px) {

  .img-review-cover{
    max-width: 300px
  }

  #avalie-nos{
    flex-direction: column;
  }
}


/* .input-wrapper-file label {
  cursor: pointer;
  background-color: #1e874d;
  border-radius: 25px;
  color: #fff;
  margin-top: 10px;
  padding: 6px 20px;
}

input[type=file] {
  display: none;
} */


#avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  /* background-color: #ddd; */
   /* Cor de fundo padrão em cinza */
}

#avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
}

.file-input {
  display: none;
}


.author_img {
    width: 150px;
    height: 150px;
    object-fit: cover; /* ou object-fit: contain; dependendo do efeito desejado */
}

