/*
.container {
  margin-top: 74px;
  height: clac(100vh - 74px);
  width: 100%;
  position: relative;
}
*/
#room__container {
  height:90%;
  top:10px;
  position:absolute;
  width:97%;
}

#members__container {
  height: 100%;
  float: left;
  position: absolute;
  width: 100%;
  max-width: 10rem;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid #1a1a1a60;
}

#members__header {
  display: flex;
  font-size: 18px;
  width: 150px;
}

#members__header span {
  float: right;
}

#member__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 6.5rem;
}

.members__list::-webkit-scrollbar {
  height: 14px;
}

.member__wrapper {
  display: flex;
  align-items: center;
}

.member_name{
  font-size: 14px;
  margin: auto;
}

#stream__box{
  background-color: #3f434a;
  height: 60vh;
  display: none;
}

#stream__box .video__container{
  border: 2px solid #000;
  border-radius: 0;
  height: 100%!important;
  width:100%!important;

  background-size: 300px;
}


#stream__box video{
  border-radius: 0;
}

#streams__container{
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 225px;
}

#messages__container {
  height: 100%;
  float: right;
  width: 100%;
  max-width: 15rem;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: 1px solid #1a1a1a60;
  padding-left: 5px;
}

.video__container{
  display: flex;
  justify-content: center;
  align-items: center;
  border:2px solid #1a1a1a60;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  height: 300px;
  width: 300px;

  background-image: url("../images/icons/chat-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75px;
}

.video-player{
  height: 100%;
  width: 100%;
}

.video-player video{
  border-radius: 50%;
}

#stream__container {
  overflow: hidden;
  top: 0px;
  margin-left: 10rem;
}

@media (max-width: 1400px) {
  .video__container{
    height: 200px;
    width: 200px;
  }
}

@media (max-width: 1200px) {
  #members__container {
    display: none;
  }

  #members__button {
    display: block;
  }

  #stream__container {
    width: calc(100% - 25rem);
    left: 0;
  }
}

@media (max-width: 980px) {
  #stream__container {
    width: calc(100% - 20rem);
    left: 0;
  }
  #messages__container {
    max-width: 20rem;
  }

  #message__form {
    width: 18.2rem;
  }
}

@media (max-width: 768px) {
  #stream__container {
    width: 100%;
  }

  .video__container{
    height: 100px;
    width: 100px;
  }

  #messages__container {
    display: none;
  }

  #chat__button {
    display: block;
  }
}

#stream__box {
  position: relative;
}

.stream__focus {
  width: 100%;
  height: 100%;
}

.stream__focus iframe {
  width: 100%;
  height: 100%;
}

.stream__actions {
  bottom: 1rem;
  padding: 1rem;
  display: none;
  gap: 1rem;
}


