.webinarContainer{

}


.chat-open-btn{
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 1000000;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #F000F0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
    background-image: url("img/icon-chat.png");
}

#chat-send-btn{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #F000F0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
    background-image: url("img/icon-send.png");

}

.webinar-chat{
    display: none;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1000000;
    background-color: rgb(98 103 154 / 80%);
    box-sizing: border-box;
    padding: 10px;
    border-radius: 8px;
    width: 300px;
}

.questions{
}
.userCommentsContainer{
    background-color: rgba(255,255,255,.1);
    margin-bottom: 10px;
    padding: 10px;
    font-size: 20px;
    max-height: 400px;
    overflow-y: auto;
}
.scrollable{
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
  overflow-anchor: none;

}

#anchor {
  overflow-anchor: auto;
  height: 1px;
}

.question{
    display: flex;
    flex-direction: column;
}
.input-container{
    display: flex;
    gap: 10px;
    align-items: flex-end;
}


.close-chat{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.close-chat::before{
    font-family: sans-serif;
    font-size: 18px;
    content: '✖';
    color: #fff;
    text-align: center;
}
.question-header{
 font-size: 30px;
 position: relative;
 margin-bottom: 10px;
}
.question-nome{
    
display: none;
}
.question-data{font-size: .8em;color: #ccc;}
.question-testo{
    
}
#chatInput{
      min-height: 40px;
      max-height: 120px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      resize: none;
      overflow-y: hidden;
      box-sizing: border-box;
      font-size: 16px;
      line-height: 1.2;
      flex: 1;
}
#chat-send-btn{
    
}




/* width */
.userCommentsContainer::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.userCommentsContainer::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3); 
}
 
/* Handle */
.userCommentsContainer::-webkit-scrollbar-thumb {
  width: 8px;
  background: #F000F045;
  border-radius: 10px; 
}

/* Handle on hover */
.userCommentsContainer::-webkit-scrollbar-thumb:hover {
  background: #F000F0de; 
}