.toast-messages {
  position: fixed;
  top: 8px;
  right: 0;
  z-index: 2;
}

.toast-message {
  clear: both;
  float: right;
  background-color: black;
  color: white;
  opacity: 0.87;
  padding: 16px;
  border-radius: 2px;
  margin: 8px 16px;
  max-width: 80%;
}

.overlay-container {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
}

.sel-modal-disconnected {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  padding: 3rem;
}
.sel-modal-disconnected button {
  width: 100%;
  padding: 0.5rem;
  color: white;
  background-color: #fbb03a;
  border-radius: 8px;
  border: none;
}
.overlay-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.overlay-content {
  overflow: auto;
}

.brand-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

.overlay-content.brand-secondary,
.overlay-content > .brand-secondary,
.overlay-content.brand-overlay {
  background-color: white;
  padding: 16px;
  border-radius: 2px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  margin: 8px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
  font: inherit;
  vertical-align: middle;
  border-radius: 0.3rem;
  padding: 0.5rem 0.7rem;
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
}
.rtl {
  text-align: right;
}
.ltr {
  text-align: left;
}

.dialog-sub-title {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dialog-sub-title span {
  color: #fbb03a;
}
.dialog-content {
  /* overflow: auto; */
  /* margin: 16px 0; */
  /*padding: 0 8px;*/
  /* max-height: 70vh; */
  text-align: initial;
  white-space: initial;
}
.alert-actions {
  /* display: inline-block; */
  text-align: right;
  white-space: nowrap;
  justify-content: space-between;
}

.btn-settings {
  width: 100%;
  padding: 0.5rem 3rem;
}
/* TODO */
.audio-bars-test {
  margin-top: 1rem;
  width: 100%;
  height: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

/* TODO END */

.audio-container {
  background-color: transparent;
  margin-bottom: 8px;
  width: 100%; /* Set the width of the container */
  height: 2rem; /* Set the height of the container */
  border-radius: 50px; /* Make the container rounded */
  padding: 0.25rem; /* Add a padding around the container */
  box-sizing: border-box; /* Include padding in the container's dimensions */
}

.audio-bars-container {
  display: flex;
  height: 100%; /* Make the container height fill the parent */
  gap: 0.75rem;
}
.audio-bars-container1 {
  display: flex;
  height: 100%; /* Make the container height fill the parent */
  gap: 1rem;
}

.audio-bar {
  flex: 1;
  background-color: lightgray;
  border-radius: 50px; /* Make the bar rounded */
  transition: background-color 0.3s ease; /* Add a transition for smooth animation */
}
.audio-bar.filled {
  background-color: #fbb03a; /* Set the filled bar color */
}
.left {
  left: -1px;
}
.right {
  right: -1px;
}
.column-container {
  /* background: linear-gradient(
    225deg,
    rgba(58, 57, 58, 0.6) 0%,
    rgba(58, 57, 58, 0.2) 100%
  ); */
  color: white;
  width: 50%; /* 50% width */
  height: 75.5%; /* 75.5% height */
  top: 14%;
  right: 0;
  position: fixed; /* Use 'fixed' to ensure the element stays in view */
  display: none;
  flex-direction: column;
  transition: all 0.5s;
  border-radius: 1rem;
  backdrop-filter: blur(10px); /* Apply blur effect */
}
@keyframes slideOut {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#addParticipantForm,
#Automatic-layout,
#disconnect-all,
#mute-all,
#participant-info-component {
  animation-duration: 0.5s;
  animation-name: slideIn;
  animation-fill-mode: forwards;
}
#Automatic-layout {
  padding: 3.3rem 5rem;
  border-radius: 1.5rem;
}
.screen-share,
.video-share {
  height: 13rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.screen-share-content,
.video-share-content {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}
.screen-share-icon img,
.video-share-icon img {
  width: 2rem;
  height: 2rem;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  margin: 0 4px;
  animation: pop 1s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s; /* Delay for the second dot */
}

.dot:nth-child(3) {
  animation-delay: 0.4s; /* Delay for the third dot */
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media screen and (min-width: 93em) {
  .audio-bars-container {
    gap: 0.75rem;
  }
}
@media screen and (max-width: 93em) {
  .audio-bars-container1 {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 75em) {
  .audio-bars-container {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 72.5em) {
  .audio-bars-container1 {
    gap: 0.3rem;
  }
}
@media screen and (max-width: 68.125em) {
  .column-container {
    width: 60%;
  }
}
@media screen and (max-width: 56.5em) {
  .column-container {
    width: 65%;
  }
}
@media screen and (max-width: 54em) {
  .audio-bars-container1 {
    gap: 0.3rem;
  }
  .audio-bars-container {
    gap: 0.3rem;
  }
}
@media screen and (max-width: 51em) {
  .audio-bars-container1 {
    gap: 0.3rem;
  }
  .audio-bars-container {
    gap: 0.25rem;
  }
}
@media screen and (max-width: 50em) {
  .column-container {
    width: 100%;
  }
  .fullscreen-btn {
    display: none;
  }
}
@media screen and (max-width: 36em) {
  .audio-bars-container1 {
    gap: 0.25rem;
  }
  .audio-bars-container {
    gap: 0.75rem;
  }
}
@media screen and (max-width: 32em) {
  .audio-bars-container1 {
    gap: 0.1rem;
  }
}
@media screen and (max-width: 27em) {
  .audio-bars-container {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 24em) {
  .audio-bars-container {
    gap: 0.3rem;
  }
}
@media screen and (min-width: 38.5em) and (max-width: 48em) {
  .audio-bars-container {
    gap: 1rem;
  }
}
