:root {
  --white: #ffffff;
  --black: #000000;
  --vcx-primary: #f13d3d;
  --vcx-secondary: #a0198e;
  --body-bg-color: #070707;
  --login-body-bg-color: var(--body-bg-color);
  --header-bg-color: #ffffff;
  --background-color: #ffffff;
  --stream-bg-color: #474747;
  --player-bg: #4d4d4d;
  --selection-color: #efdadb;
  --line-icons-color: #ffffff;
  --secondary-red-color: #cc292a;
  --tertiary-red-color: #c71fb059;
  --disabled: #ccc7c7;
  --vcx-red: #ed1c24;
  --vcx-gray: #484646;
  --vcx-purple: #a20a90;
  --disabled: rgb(110 108 108 / 70%);

  --vcx-loading: 0%;

  --font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;

  --box-shadow-sm: var(--shadow-2);
  --box-shadow-md: rgba(0, 0, 0, 0.24) 3px 4px 8px;
  --box-shadow-lg: rgba(0, 0, 0, 0.24) 3px 6px 8px;

  --border: 2px solid #c3c0c0;
  --btn-border-radius: 5px;
  --self-view-border-color: #605e5e;

  /* Icons */
  --icon-muted-state: red;
  --icon-unmuted-state: green;

  /* gaps for layout grid */
  --border-radius-grid: 10px;
  --border-radius-icons: 5px;

  --player-background-color: var(--video-muted-color);
  --player-name-color: #fff;
  --player-name-bg: #000000;
  --player-name-border: 1px solid #fff;
  --player-name-border-radius: 5px;
  --player-name-padding: 10px 5px;
  --player-name-chars-length: 10ch;
  --player-name-bottom: 5px;
  --player-name-left-padding: 5px;

  /* Pop Ups */
  --popup-background-color: #fff;
  --popup-text-color: #000000;
  --popup-button-color: #cc292a;

  /* Layout Manager */
  --layout-grid-gap: 5px;
  --layout-grid-padding: 10px;
  --layout-place-content: center;
  --tile-icons-gap: 5px;
  --tile-icons-padding: 5px;

  /* BG */
  --background: color-mix(in srgb, var(--body-bg-color), white 50%);
  --box-shadow-dropdown: var(--shadow-1);
  --video-player-border-width: 2px;
  --video-player-border-radius: 10px;

  /* BTN */
  --button-gradient: linear-gradient(#c12747, #9c2b87);

  --brightness-range: 100%;
  --contrast-range: 100%;

  --toolbar-items-gap: 20px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  outline: none;
}

::selection {
  background: var(--selection-color) !important;
}

.overflow-visible {
  overflow: visible !important;
}

/* ::-webkit-scrollbar {
  width: 15px !important;
} */

html,
body {
  overflow: hidden;
  color: var(--black);
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background: var(--body-bg-color);
}
.width-100 {
  width: 100%;
}
.poppover-text-color {
  color: var(--popup-text-color);
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.disabled {
  cursor: not-allowed;
}

.click-disabled {
  pointer-events: none;
  cursor: not-allowed;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: transparent;
  border-radius: var(--video-player-border-radius);
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pointer:hover {
  color: var(--vcx-primary);
}

.login-page {
  background: var(--background);
}

svg.active path,
svg.active line,
svg.active rect,
svg.active circle {
  stroke: var(--vcx-primary);
}

#stream101,
#stream102, #con_101 [id^="player_"] video {
  object-fit: contain;
  background: #636060;
}

#main {
  width: calc(100vw - 85px);
  height: calc(100vh - 77px);
  height: calc(100dvh - 77px);
  height: calc(100svh - 77px);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

#slide-panel {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  height: 100vh;
  height: 100dvh;
  height: 100dvh;
}

header.site-header {
  position: relative;
  z-index: 5;
}

.pad-l-85 {
  padding-left: 85px;
}

/* .share-started #layout_manager {
  --grid-template-columns: 1fr 1fr;
} */

#layout_manager {
  --grid-template-columns: "auto";
  display: grid;
  grid-gap: var(--layout-grid-gap);
  border-radius: var(--border-radius-grid);
  place-content: var(--layout-place-content);
  grid-template-columns: var(--grid-template-columns);
  grid-auto-rows: var(--grid-auto-rows) !important;
}

#layout_manager.player-maximized {
  --player-name-padding: 4px;
  --player-name-bottom: 3px;
}

.user-video-muted-container {
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #484646;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-grid);
}

#br-self-view-avatar {
  top: 0;
  left: 0;
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 8px;
  background: var(--vcx-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user-video-muted-container svg,
.user-video-muted-container img {
  height: 70%;
  width: 70%;
  border-radius: 50%;
  z-index: 2;
  aspect-ratio: 1 / 1;
}

.user-video-muted-img {
  border-radius: 100%;
  width: 50% !important;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  max-width: 160px;
  max-height: 160px;
}

/* .user-video-muted-img svg {
  box-shadow: var(--box-shadow-sm);
} */

.at-cicle-indicator-h,
.at-cicle-indicator-m,
.at-cicle-indicator-l,
.at-cicle-indicator-n {
  -webkit-transition: height 0.25s ease, width 0.25s ease;
  transition: height 0.25s ease, width 0.25s ease;
}

.at-cicle-indicator-h:before,
.at-cicle-indicator-h:after,
.at-cicle-indicator-m:before,
.at-cicle-indicator-m:after,
.at-cicle-indicator-l:before,
.at-cicle-indicator-l:after,
.at-cicle-indicator-n:before,
.at-cicle-indicator-n:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 5px solid red;
  z-index: 1;
  opacity: 0;
}

.at-cicle-indicator-n:before,
.at-cicle-indicator-n:after {
  border: 5px solid var(--vcx-purple);
}

.at-cicle-indicator-h:before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.at-cicle-indicator-h:after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0);
  }

  75% {
    -webkit-transform: scale(0.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
  }

  75% {
    transform: scale(0.75);
    opacity: 1;
  }

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

.at-cicle-indicator-m:before {
  -webkit-animation: ripple-medium 2s linear infinite;
  animation: ripple-medium 2s linear infinite;
}

.at-cicle-indicator-m:after {
  -webkit-animation: ripple-medium 2s linear 1s infinite;
  animation: ripple-medium 2s linear 1s infinite;
}

@-webkit-keyframes ripple-medium {
  0% {
    -webkit-transform: scale(0);
  }

  75% {
    -webkit-transform: scale(0.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.85);
    opacity: 0;
  }
}

@keyframes ripple-medium {
  0% {
    transform: scale(0);
  }

  75% {
    transform: scale(0.75);
    opacity: 1;
  }

  100% {
    transform: scale(0.85);
    opacity: 0;
  }
}

.at-cicle-indicator-l:before {
  -webkit-animation: ripple-low 2s linear infinite;
  animation: ripple-low 2s linear infinite;
}

.at-cicle-indicator-l:after {
  -webkit-animation: ripple-low 2s linear 1s infinite;
  animation: ripple-low 2s linear 1s infinite;
}

@-webkit-keyframes ripple-low {
  0% {
    -webkit-transform: scale(0);
  }

  75% {
    -webkit-transform: scale(0.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.7);
    opacity: 0;
  }
}

@keyframes ripple-low {
  0% {
    transform: scale(0);
  }

  75% {
    transform: scale(0.75);
    opacity: 1;
  }

  100% {
    transform: scale(0.7);
    opacity: 0;
  }
}

.at-cicle-indicator-n:before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.at-cicle-indicator-n:after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.at-indicator {
  height: 18px;
  width: 18px;
  cursor: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#video-container {
  position: relative;
}

.line-icons-container {
  position: absolute;
  background: var(--line-icons-bg-color);
  left: var(--player-name-left-padding);
  top: var(--player-name-left-padding);
  border-radius: 5px;
  color: white;
  z-index: 5;
  padding: 5px;
  display: flex;
  gap: 5px;
}

.bw-icon-container {
  position: absolute;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  max-width: 170px;
}

.svg-container {
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(54, 54, 54, 0.3)); */
  width: 70%;
  height: 70%;
  margin: 2px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 6px;
}

svg.icon_network path {
  fill: revert-layer !important;
}

.line-icons {
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.line-icons i,
.line-icons svg,
.line-icons > div {
  width: 15px !important;
  height: 15px !important;
  display: grid;
  place-content: center;
}

.maximize_player {
  background: var(--line-icons-bg-color);
  border-radius: 5px;
  position: absolute;
  height: 25px;
  width: 25px;
  top: var(--layout-grid-padding);
  right: var(--layout-grid-padding);
  cursor: pointer;
  padding: var(--layout-grid-padding) !important;
  z-index: 20;
  margin: 0 0 0 6px;
  display: grid;
  place-content: center;
}

.maximize_player svg {
  width: 15px;
  height: 15px;
}

.vcx_player .stream-name-and-icons {
  color: var(--player-name-color);
  padding: var(--player-name-padding);
  border-radius: var(--player-name-border-radius);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  z-index: 5;
  height: 20px;
  left: var(--player-name-left-padding);
  bottom: var(--player-name-bottom);
  background: var(--player-name-bg);
  max-width: 90%;
}

.mobile .stream-name-and-icons {
  height: 20px;
  left: var(--layout-grid-gap);
  bottom: 2px;
}

.line-icons .more-video-options {
  cursor: pointer;
}

.annotate-div .stream-name-and-icons {
  width: auto;
  color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  position: absolute;
  z-index: 5;
  right: 0%;
  left: unset;
  bottom: 0;
  height: 25px;
  transform: unset;
}

.at-indicator-container {
  margin-left: 4px;
}

#network-msgs {
  position: fixed;
  top: 0;
  z-index: 99999;
  background: #fff;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.98);
}

#network-msgs h3 {
  text-align: center;
}

.n-link {
  margin-top: 20px;
}

.slash {
  stroke: red !important;
}

.stream-max-icon {
  position: absolute;
  z-index: 2;
  right: var(--layout-grid-padding);
  background: rgb(87, 85, 85);
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 3px 5px;
  top: var(--layout-grid-padding);
  border-radius: var(--border-radius-icons);
  display: grid;
  place-content: center;
}

#ss-fullscreen {
  width: 20px;
  height: 20px;
}

.vcx_player.default_vcx_player {
  position: relative;
  transition: width 0.1s linear, height 0.1s linear;
}

#list_home_user svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.sidebar svg {
  width: 35px;
  height: 35px;
  color: #000;
}

.sidebar nav.navbar ul li.list-group-item .submenu {
  top: 58px;
  height: calc(100vh - 58px);
  height: calc(100dvh - 58px);
  height: calc(100svh - 58px);
}

/* Action buttons */

#share_screen_btn {
  display: block;
}

.action-disabled {
  color: #6b6b6b !important;
  pointer-events: none;
  cursor: not-allowed;
}

/* UI changes */
#navbarSupportedContent .navbar-nav {
  gap: 5px;
}

#navbarSupportedContent .navbar-nav li a.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  line-height: normal;
  height: 33px;
  padding: 4px;
}

#sidebar-items-container {
  position: absolute;
  left: 85px;
  top: 48px;
  width: 315px;
}

#user-local-stream {
  overflow: hidden;
}

#user-local-stream video {
  object-fit: cover;
  transform: scaleX(-1);
  height: 180px;
  background: var(--video-muted-color);
  border-radius: 10px;
}

/* Sidebar */

#mySidebar .sidebar-item {
  cursor: pointer;
}

#pcr__participants_list {
  width: 100%;
  height: calc(100vh - 200px);
  height: calc(100dvh - 200px);
  height: calc(100svh - 200px);
  overflow: hidden;
}

.attendeeList {
  max-height: calc(100vh - 285px);
  overflow-x: hidden;
  overflow-y: auto;
  border-top: none;
  margin: 0 0 5px;
  padding: 5px 0;
  min-height: 90px;
}

.collapsable-attendee {
  max-height: calc(100vh - 310px);
}

.roleName {
  padding: 8px 10px;
  margin: 5px 0 0;
  border: 1px solid #fbf2f2;
  border-radius: 5px;
}

.roleName.active {
  background-color: #ffeff0;
  color: #ed1c24;
}

.roleName i.fa {
  padding-top: 5px;
  color: #b3a7a7;
  font-size: 12px;
}

.tooltip {
  pointer-events: none;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #ed1c24;
  outline: 0;
  box-shadow: none;
}

.send-txt {
  bottom: 4px;
  padding: 10px 10px 5px 10px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 5px 5px 5px 5px;
}

#main .video-controls {
  bottom: 8%;
  left: 50%;
  box-shadow: var(--box-shadow-md);
  transition: left 0.3s linear;
}

.mobile #main .video-controls {
  bottom: 72px;
  transform: translate(-50%, 0);
}

#group-chat-icon {
  width: 25px;
  height: 25px;
}

.st0 {
  display: block !important;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#group-chat-icon .st0 {
  stroke: #ffffff;
}

.fullScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Confirm box */

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title,
.jconfirm .jconfirm-box div.jconfirm-content-pane {
  color: #000000;
}

.jconfirm-buttons {
  float: none !important;
  display: flex;
  justify-content: center;
}

.jconfirm-box-container.sign-out-popup.participant .jconfirm-content-pane {
  display: none;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
  text-transform: capitalize;
}

.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
  padding: 35px 0;
}

#setting-ul {
  height: calc(100vh - 77px);
  height: calc(100svh - 77px);
  height: calc(100dvh - 77px);
  overflow-y: auto;
  overflow-x: hidden;
}

#setting-ul svg {
  width: 20px;
  height: 20px;
}

.sub-settings {
  font-size: 14px;
  color: #747474;
  font-weight: 700 !important;
}

/* Blur video */

#canvasVideo {
  width: 100%;
  height: 100%;
}

.sidebar .list-group-item.sidebar-item.active {
  background: #ffeff0 !important;
  border-right: 4px solid #ed1c24;
  border-radius: 0;
}

#slide-panel .submenu li.list-group-item div.accessgiven.dark-provoke {
  background: #6f6b7d;
  color: #fff;
}

.user-setting .revoke_button,
.user-setting .btn-light {
  border: transparent;
  background: #eeeef4;
  padding: 5px 4px;
  font-size: 14px;
  color: #000000;
}

.user-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.user-setting .btn-light i.fa-check,
.user-setting .btn-light i.fa-times,
.user-setting .revoke_button i.fa-times {
  background: linear-gradient(180deg, #f13d3d 22%, #a0198e 100%);
  color: #fff;
  border-radius: 50%;
  padding: 0;
  line-height: 20px;
  font-size: 12px;
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.user-setting button.btn-light:hover,
.user-setting button.btn-light:hover,
.user-setting .revoke_button:hover {
  background: linear-gradient(180deg, #f13d3d 22%, #a0198e 100%);
  color: #fff;
}

.user-setting button.btn-light:hover i.fa-check,
.user-setting button.btn-light:hover i.fa-times,
.user-setting .revoke_button:hover i.fa-times {
  background: #fff;
  color: #4292a6;
}

#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 1);
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  color: #fff;
}

.reverse-spinner {
  position: relative;
  height: 70px;
  width: 70px;
  border: 2px solid transparent;
  border-top-color: #c81b45;
  border-left-color: #c81b45;
  border-radius: 50%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.reverse-spinner::before {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  content: "";
  border: 2px solid transparent;
  border-top-color: rgb(200 27 69 / 0.45);
  border-left-color: rgb(200 27 69 / 0.45);
  border-radius: 50%;
  -webkit-animation: spinBack 1s linear infinite;
  animation: spinBack 1s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinBack {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg);
  }
}

@keyframes spinBack {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg);
  }
}

header .navbar .navbar-brand .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pinned {
  transform: rotate(45deg);
}

.pinned-participant path {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emoji-picker__wrapper {
  z-index: 99999;
}

.pvt-chat-utilities {
  display: flex;
  align-self: center;
  align-items: center;
  padding: 4px 4px 4px;
  gap: 4px;
}

#slide-panel .submenu li.list-group-item .messages .message-row,
.br-chat-list .message-row {
  margin-bottom: 20px;
}

#slide-panel
  .submenu
  li.list-group-item
  .messages
  .message-row
  .message--sent
  .message-bubble,
#breakout-room-modal .br-chat-list .message-row .message--sent .message-bubble {
  background-color: #f6f6f6;
  color: #000000;
}

.br-chat-list .message-row .msg-info-time {
  font-size: 9px;
}

.wait-for-mod-container {
  display: none;
}

.wait-for-mod-container.show {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  color: #000000;
  display: block;
}

.wait-for-mod-container .image {
  position: absolute;
  min-height: 8vmax;
  min-width: 8vmax;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wait-for-mod-container .image-container {
  position: relative;
  min-height: 18vmax;
  min-width: 18vmax;
}

.wait-for-mod-container .ring-1 {
  position: absolute;
  min-height: 18vmax;
  min-width: 18vmax;
  overflow: hidden;
  border-radius: 50%;
  background: #fbfbfb;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wait-for-mod-container .ring-2 {
  position: absolute;
  min-height: 13vmax;
  min-width: 13vmax;
  overflow: hidden;
  border-radius: 50%;
  background: #f7f7f7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wait-for-mod-container .name {
  font-size: 3vmax;
  color: #333333;
  margin: 3rem 0 1rem 0;
  font-weight: 600;
  text-align: center;
  /* font-size: 2vmax; */
}

.wait-for-mod-container .message {
  color: #5d5d5d;
  margin: 0;
  font-weight: 600;
  text-align: center;
  font-size: 1.6vmax;
}

@media (max-width: 480px) {
  .wait-for-mod-container .message {
    font-size: 1.8vmax;
  }
}

.wait-for-mod-container .btn-round {
  background: linear-gradient(180deg, #f13d3d 22%, #a0198e 100%) !important;
  color: #fff;
  border-bottom: transparent;
  min-height: 5vmin;
  min-width: 5vmin;
  border-radius: 50%;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.wait-for-mod-container .btn-round #lobby-exit-icon .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 0.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.lobby-data-container {
  height: 100vh;
  width: 100%;
  justify-content: space-between;
}

.lobby-col-1,
.lobby-col-2 {
  padding: 1rem;
  flex: 1;
}

.lobby-col-2 {
  background: #ebf3f8;
}

.lobby-center-stage {
  border-radius: 10px;
  box-shadow: 1px 1px 12px 4px #00000017;
  background: #ffffff;
  position: relative;
  width: 40vw;
  height: 40vh;
}

@media (orientation: landscape) {
  .wait-for-mod-container {
    overflow-y: auto;
  }

  .mobile {
    display: flex;
    flex-direction: row;
  }

  .music-container {
    left: 85% !important;
  }

  .wait-for-mod-container .name {
    margin: 0;
  }
}

@media (orientation: portrait) {
  .mobile {
    flex-direction: column;
  }

  .lobby-col-1,
  .lobby-col-2 {
    height: 50vh;
    width: 100vw;
  }

  .mobile .name {
    margin: 1rem 0;
  }

  .lobby-col-2 {
    justify-content: initial !important;
  }

  .mobile .lobby-center-stage {
    width: 100%;
    height: 70%;
    margin-top: 10px;
  }

  .music-container {
    left: 90% !important;
  }

  .lobby-timer {
    right: auto !important;
    bottom: 65px !important;
  }
}

.wait-for-mod-container .lobby-message {
  color: #5d5d5d;
  margin: 0;
  font-weight: 300;
  font-size: 1.5vmax;
  padding: 0 !important;
  height: 100%;
}

#lobby-texts-carousel {
  /* border-radius: 10px;
    box-shadow: 1px 1px 12px 4px #00000017;
    background: #ffffff; */
  height: 100%;
}

.carousel-inner {
  border-radius: 10px;
}

.carousel-inner .text-message {
  background: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 10px;
  font-size: 2vmax;
  padding: 0 15%;
  color: #000000;
}

#slide-panel .submenu li.list-group-item ul.user-setting li {
  border: none !important;
  padding: 0 5px 0 0;
}

#breakout-rooms-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.breakout-room-modal .modal-dialog {
  width: 95% !important;
  max-width: 1350px !important;
}

#br_layout_manager {
  display: grid;
  grid-gap: 4px;
  background: var(--background-color);
  /* height: 419px; */
  max-height: 500px;
  padding: 20px;
}

.br-layout-grid {
  grid-template-columns: repeat(2, 50%);
  /* grid-template-rows: repeat(auto-fill, 120px); */
}

.br-layout-grid-single {
  grid-template-columns: 100%;
}

.br-layout-list {
  grid-template-columns: 100%;
  grid-template-rows: repeat(auto-fill, 85px);
  max-height: 300px;
  overflow-y: scroll;
}

#br-self-view {
  position: absolute;
  bottom: 20px;
  z-index: 90;
  left: 10px;
  padding: 3px;
  border: 1px solid rgb(34, 34, 34);
  border-radius: 8px;
}

#br-self-view-mobile {
  position: inherit;
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--background-color);
  border: none;
  border-radius: 0px;
  padding: 12px 0;
}

#br-self-view-video video {
  object-fit: cover;
  transform: scaleX(-1);
  border-radius: 10px;
}

.br_room:nth-child(3) {
  grid-column: 1/3;
  width: 50% !important;
  justify-self: center;
}

div.br_room {
  background: #ffffff;
  border-radius: 10px;
  margin: 5px 0;
  color: #202020;
}

.br-end-call {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate3d(-50%, 0px, 10px);
  z-index: 98888;
}

.br-toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#lobby-audio-visualizer-container.add-bg {
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 12px 4px #00000017;
  width: 40vw;
  height: 40vh;
}

#playpause-btn-cont img {
  border-radius: 15px;
  box-shadow: 2px 2px 2px 0px rgb(0 0 0 / 40%);
}

.image-carousel-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 12px 4px #00000017;
  position: relative;
}

.image-carousel-container #lobby-audio-visualizer-container {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1200;
}

.image-carousel-container #playpause-btn-cont {
  position: relative;
}

.carousel-indicators li {
  background-color: #404041;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23404041' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23404041' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.lobby-timer {
  position: absolute;
  bottom: 20px;
  right: 30px;
}

.music-container {
  position: absolute;
  z-index: 1500;
  top: 10px;
  left: 92%;
}

.music-only {
  top: 43%;
  left: 43%;
  transform: translate(50%, 50%);
}

.carousel {
  position: relative;
  height: 100%;
}

.carousel .carousel-inner {
  height: 100%;
}

.carousel .carousel-inner img {
  display: block;
  object-fit: cover;
}

.carousel-item {
  height: 100%;
}

#timer {
  width: 200px;
  height: 30px;
  border-radius: 15px;
  box-shadow: 2px 2px 2px 0px rgb(0 0 0 / 40%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #5d5d5d;
  font-size: 14px;
}

.sound-wave {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.dot {
  height: 20px;
  border-radius: 16px;
  transition-timing-function: ease-in-out;
  animation: audio-low 1s infinite;
  transform-origin: center;
}

.dot1 {
  height: 10px;
  animation-delay: 0.3s;
}

.dot2 {
  height: 12px;
  animation-delay: 0.2s;
}

.dot3 {
  height: 16px;
  animation-delay: 0.1s;
}

.dot4 {
  height: 12px;
  animation-delay: 0.2s;
}

.dot5 {
  height: 10px;
  animation-delay: 0.3s;
}

@keyframes audio-high {
  0%,
  100% {
    transform: scaleY(0.7);
  }

  25% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(0.2);
  }

  75% {
    transform: scaleY(0.45);
  }
}

@keyframes audio-medium {
  0%,
  100% {
    transform: scaleY(0.5);
  }

  25% {
    transform: scaleY(0.1);
  }

  50% {
    transform: scaleY(0.1);
  }

  75% {
    transform: scaleY(0.25);
  }
}

@keyframes audio-low {
  0%,
  100% {
    transform: scaleY(0.5);
  }

  25% {
    transform: scaleY(0.1);
  }

  50% {
    transform: scaleY(0);
  }

  75% {
    transform: scaleY(0.25);
  }
}

@keyframes noise {
  0% {
    transform: scaleY(0.5);
    fill: gray !important;
  }

  100% {
    transform: scaleY(0);
  }
}

.noise-wave {
  fill: none;
  stroke: gray;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#sound-wave {
  width: 30px;
  height: 30px;
}

#noise-wave {
  width: 30px;
  height: 30px;
}

#list_participants .sound-wave {
  fill: none;
  stroke: var(--line-icon-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#list_participants .noise-wave {
  fill: none;
  stroke: gray;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#list_participants #sound-wave {
  width: 20px;
  height: 20px;
}

#list_participants #noise-wave {
  width: 20px;
  height: 20px;
}

.participant-controls svg {
  width: 20px;
  height: 20px;
}

@media (orientation: portrait) {
  .pad-l-85 {
    padding-left: 0;
  }
}

@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  .pad-l-85 {
    padding-left: 0px;
  }
}

@media (orientation: landscape) and (max-device-height: 736px) {
  .user-video-muted-img {
    width: 35% !important;
  }
}

@media (orientation: landscape) and (max-device-height: 736px) {
  .user-video-muted-img {
    width: 35% !important;
  }
}

@media only screen and (min-device-width: 800px) {
  #create-br-rooms,
  #go-to-first-form {
    font-size: 0.8rem;
  }
}

#breakout-room-modal::-webkit-scrollbar {
  width: 0px !important;
}

@media only screen and (max-width: 845px) and (orientation: landscape) {
  .breakout-room-modal .modal-dialog {
    max-width: 90%;
  }

  .breakout-room-modal .modal-dialog .modal-body {
    flex-wrap: nowrap;
  }
}

#slide-panel .submenu li.list-group-item {
  background: #ffffff !important;
}

#slide-panel .submenu li.list-group-item div.user-list {
  background: #f5f5f5;
}

#toggleAllMute,
#toggleLobby,
#toggleFloor {
  background: linear-gradient(180deg, #f13d3d 22%, #a0198e) !important;
  color: #fff;
  border-radius: 5px;
  border-bottom: transparent;
  font-size: 11px;
  padding: 5px;
  height: auto;
  min-width: 95px;
}

.message-popup-backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 5;
}

.message-popup-backdrop .message-popup {
  background-color: #fff;
  color: #000;
  max-width: 500px;
  width: inherit;
  text-align: left;
}

.message-popup-backdrop .message-popup .message-heading {
  margin-bottom: 20px;
}

.message-popup-backdrop .message-popup p {
  font-size: 1.2em;
  font-weight: inherit;
}

.message-popup-backdrop .message-popup p,
.message-popup-backdrop .message-popup h1,
.message-popup-backdrop .message-popup h2,
.message-popup-backdrop .message-popup h3,
.message-popup-backdrop .message-popup h4,
.message-popup-backdrop .message-popup h5,
.message-popup-backdrop .message-popup h6,
.message-popup-backdrop .message-popup button {
  font-style: normal !important;
  font-family: var(--font-family);
}

.message-popup-backdrop .message-popup .dismiss-button {
  text-align: end;
}

.message-popup-backdrop .message-popup .dismiss-button button {
  border: none;
  line-height: 2em;
  border-radius: 5px;
  background: #fff;
  color: #678cc5;
}

.message-popup-backdrop .message-popup .dismiss-button button:hover {
  background: #eff6fc;
}

.message-popup span.participant-name {
  font-weight: bold;
  text-decoration: underline;
}

.message-popup .permission-buttons {
  padding: 10px 0 2px;
}

.message-popup .button-container {
  margin: 10px;
}

.message-popup .btn {
  padding: 2px 17px;
  margin: 0 4px;
  font-size: 0.875rem;
}

.message-popup .btn.cancel {
  background: #cc292a;
  background: linear-gradient(90deg, #cc292a, #a20a90);
  color: #fff;
}

.sort-participants i.fa {
  font-size: 22px;
  padding: 5px 0;
}

.toast-info {
  background-color: #51a351 !important;
}

#chat-notification,
#qna-notification,
#poll-notification #lobby-notification,
#br-notification {
  position: absolute;
  color: #fff;
  background: #ba2556;
  border: 1px solid #ba2556;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  right: 10px;
}

#chat-notification,
#poll-notification,
#qna-notification,
#br-notification {
  fill: red !important;
}

#dot-notification {
  fill: red !important;
  border: 2px solid red;
  position: absolute;
  width: 15px;
  height: 15px;
  background: red;
  border-radius: 50%;
  font-size: 11px;
  text-align: center;
  color: white;
}

/*FACEAI CSS */

.grey-box {
  background: #f2f2f2;
  border-radius: 5px;
  padding: 5px 15px;
  position: relative;
}

.grey-box .row {
  border-bottom: 1px solid #d6d6d6;
  clear: both;
  overflow: hidden;
}

.grey-box .row .span6 {
  width: 45%;
  float: left;
  padding: 10px;
}

.progress {
  padding: 0;
  width: 90%;
  height: 5px;
  overflow: hidden;
  background: #e5e5e5;
  border-radius: 2px;
}

.bar {
  position: relative;
  float: left;
  min-width: 1%;
  height: 100%;
  background: #273186;
}

.percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: var(--font-family);
  font-size: 12px;
  color: white;
}

.row.custom-bottom-section {
  border: 0;
}

.custom-bottom-section .item {
  clear: both;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cross-icon {
  position: absolute;
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.cross-icon span {
  width: calc(100% - 14px);
  height: 2px;
  background: #fb3535;
  position: absolute;
  top: 50%;
  left: 50%;
}

.cross-icon span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross-icon span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

span.low {
  color: #fb3535;
  font-weight: bold;
}

.grey-box .row {
  width: auto !important;
  margin: 0;
}

.custom-bottom-section .item {
  width: 100%;
}

.custom-bottom-section .item h5 {
  margin: 0;
  line-height: normal;
  font-size: 13px;
}

.grey-box {
  background: #f2f2f2;
  border-radius: 5px;
  padding: 5px 15px;
  position: relative;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: normal;
  padding-top: 15px;
}

.grey-box .row .span6 {
  width: 50%;
  padding: 5px;
}

#slide-panel .submenu li.list-group-item div.user-list .row {
  margin: 0 !important;
}

.pcr__participant.active ul.user-details {
  padding-left: 5px;
  padding-top: 10px;
}

.pcr__participant.active .row {
  align-items: initial !important;
  /* to change this css on active */
}

#slide-panel .submenu li.list-group-item div.user-list {
  background: #fff;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

#slide-panel .submenu li.list-group-item ul.user-setting {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  margin-bottom: 10px;
}

#slide-panel .submenu li.list-group-item div.user-list .row .w-25 {
  text-align: center;
}

#slide-panel .submenu li.list-group-item div.user-list ul.user-details {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.br_room {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.br_room .vcx_player {
  width: 100%;
  height: 100%;
}

.br-user {
  color: #000;
  font-size: 1rem;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  text-transform: capitalize;
  z-index: 10;
}

.br-user svg {
  width: 100%;
  height: 100%;
}

.br-layout-list .br_room .br-user {
  background: var(--white);
  padding: 0 8px;
}

.br-name-line-icon-list .br-audio-mute #br_line_icon_mic .line_icon_mic {
  stroke: var(--line-icon-color) !important;
}

.br-top-bar {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

.br-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.br-control-item {
  width: 20px;
  height: 20px;
}

.br-chat-list {
  min-height: 430px;
  max-height: 430px;
  height: 430px;
  overflow: auto;
}

.br-exit-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: linear-gradient(180deg, #f13d3d 22%, #a0198e) !important;
  color: #fff;
  border-radius: 5px;
  min-width: 95px;
  height: 30px;
  align-items: center;
  border: none;
  font-size: 0.9rem;
}

#br-exit-icon {
  height: 20px;
  width: 20px;
  margin: 0 5px 0 0;
}

#br-timer {
  height: 20px;
}

.br_room {
  overflow: hidden;
}

.br-join-room-btn {
  font-size: 0.9rem;
}

#breakout-room-modal {
  background: rgb(72 72 72 / 87%) !important;
}

.grab-element {
  cursor: grab;
}

.br-room-header {
  font-size: 1rem;
}

.br-room-info {
  display: flex;
  flex-direction: column;
}

.max-participant {
  font-size: 0.7em;
  color: #9f9f9f;
}

.br-user-name {
  width: 100%;
  height: 100%;
  display: flex;
  grid-gap: 8px;
}

.br-self-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  grid-gap: 8px;
  justify-content: center;
}

.br-username-grid-layout {
  flex-direction: column;
  justify-content: center;
  background: var(--vcx-gray);
}

.br-username-list-layout {
  flex-direction: row;
  width: auto;
}

.br-name-line-icon-grid {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 8px 8px 8px;
  align-items: center;
}

.br-name-line-icon-grid .br-audio-mute {
  background: rgb(52 42 40 / 75%);
  padding: 4px;
  border-radius: 4px;
}

#audio-status {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  background: rgb(52 42 40 / 75%);
  padding: 2px;
  border-radius: 4px;
}

.br-name-line-icon-list {
  width: 100%;
  display: flex;
  padding-left: 20px;
}

.br-user-name div {
  align-self: center;
}

.br-self-avatar div {
  align-self: center;
}

.br-username-span-grid {
  align-self: flex-end;
  background: rgb(52 42 40 / 75%);
  color: white;
  padding: 4px;
  border-radius: 4px;
  font-size: 80%;
}

.br-username-span-list {
  align-self: center;
}

#invite-card-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#invite-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #80808052;
}

.button-container-br {
  width: 100%;
  align-self: center;
  justify-content: space-between;
}

#Join-br-btn {
  background: linear-gradient(6deg, #9e248c, #c12844);
  border: none;
}

#cancel-br-btn {
  background: transparent;
  color: #9e248c;
  border: none;
}

#cancel-br-btn:hover {
  outline: 1px solid #9e248c;
}

.limit-exceeds {
  animation: horizontal-shaking 0.5s;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.message-popup {
  position: absolute !important;
  z-index: 999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: var(--popup-background-color);
  background-clip: padding-box;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 15px 20px;
  width: 100%;
  border-radius: 8px;
  background-position: 15px;
  background-repeat: no-repeat;
  box-shadow: var(--box-shadow-sm);
  color: var(--popup-text-color);
  filter: alpha(opacity=40);
}

/* .message-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: red;
} */

.message-popup span.participant-name {
  font-weight: bold;
  text-decoration: underline;
}

.message-popup .permission-buttons {
  padding: 10px 0 2px;
}

.message-popup .button-container {
  margin: 10px;
}

.message-popup .btn {
  padding: 2px 17px;
  margin: 0 4px;
  font-size: 0.875rem;
}

.message-popup .btn.ok {
  background: var(--white);
  color: var(--popup-button-color);
  border: 1px solid var(--popup-button-color);
}

.message-popup .btn.cancel {
  background: var(--popup-button-color);
  background: linear-gradient(90deg, var(--popup-button-color), #a20a90);
  color: var(--white);
}

.br_room {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.br-top-bar {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

.br-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.br-control-item {
  width: 20px;
  height: 20px;
}

.br-exit-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: linear-gradient(180deg, #f13d3d 22%, #a0198e) !important;
  color: #fff;
  border-radius: 5px;
  min-width: 95px;
  height: 30px;
  align-items: center;
  border: none;
  font-size: 0.9rem;
}

#br-exit-icon {
  height: 20px;
  width: 20px;
  margin: 0 5px 0 0;
}

#br-timer {
  height: 20px;
}

.br_room {
  overflow: hidden;
}

.br-join-room-btn {
  font-size: 0.9rem;
}

#breakout-room-modal {
  background: rgb(72 72 72 / 87%) !important;
}

.br-room-header {
  font-size: 0.9rem;
}

.br-user-name img {
  border-radius: 50%;
}

.user-self-view {
  position: absolute;
  bottom: 20px;
  z-index: 100000;
  left: 20px;
  display: grid;
  place-content: center;
}

.user-self-view.small {
  border: 2px solid var(--self-view-border-color);
  cursor: move;
  border-radius: 10px;
  padding: 3px 0px 0 3px;
  background: var(--video-muted-color);
  box-shadow: var(--box-shadow-sm);
}

.user-self-view.small.mobile {
  bottom: auto;
  top: 40px;
  left: auto;
  right: 40px;
}

.user-self-view.small.mobile #pip-close-btn {
  display: none;
}

#pip-toggle-btn {
  width: 2rem;
  height: 2rem;
  position: absolute;
  z-index: 120;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  right: -14px;
  top: -14px;
  cursor: pointer;
  background: red;
  border-radius: 50%;
  color: #fff;
}

/* #pip-toggle-btn div {
  display: block;
  height: 12px;
  width: 12px;
} */

.user-self-view.small .user-video-muted-container {
  border-radius: 10px;
}

.user-self-view.small .user-video-muted-container .user-video-muted-img {
  width: 60% !important;
}

#bottom-nav-mobile {
  position: absolute;
  bottom: 80px;
  left: 5px;
  display: none;
  z-index: 101;
  transition: all 0.5s ease 0s;
}

.wait-for-others {
  width: 100%;
  height: 100%;
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wait-for-others-br {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* Face AI CSS */
.stream-name-and-icons .faceai-participant,
.stream-name-and-icons .faceai-participant * {
  stroke: var(--white) !important;
}

.stream-name-and-icons .faceai-participant.red,
.stream-name-and-icons .faceai-participant.red *,
.user-setting .faceai-participant.red,
.user-setting .faceai-participant.red * {
  stroke: #f00 !important;
}

#faceai_grid_element {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #000;
  width: 300px;
}

.custom-face-ai-section {
  border: 2px solid #b22069;
  border-radius: 10px;
}

.custom-face-ai-section .face-ai-name h4 {
  font-size: 18px;
  line-height: normal;
  color: #000;
}

.custom-face-ai-section img {
  border-radius: 10px !important;
  overflow: hidden;
  object-fit: cover;
}

.custom-face-ai-section .attention > div.span6 {
  width: auto;
}

.custom-face-ai-section .custom-bottom-section .item .span6 {
  width: 70%;
}

.custom-face-ai-section .custom-bottom-section .bar {
  background: #b22069;
}

.custom-face-ai-section.grey-box .row.d-flex {
  border: 0;
}

.custom-face-ai-section .face-ai-name {
  display: flex;
  align-items: center;
}

.custom-face-ai-section .face-ai-name svg {
  width: 20px;
  margin-left: 10px;
}

.custom-face-ai-section#faceai_grid_element {
  width: 400px;
  background: #fff;
}

.custom-face-ai-section .grey-box {
  background: #fff;
  position: static;
  padding: 0;
}

.custom-face-ai-section .grey-box .cross-icon {
  top: 5px;
  width: 35px;
  height: 35px;
  right: 5px;
}

.custom-face-ai-section .custom-bottom-section .item .span6:first-child {
  width: 30%;
}

.custom-face-ai-section .custom-bottom-section .progress {
  width: 100%;
}

.custom-face-ai-section .w-75.pl-2 {
  padding-left: 20px !important;
  padding-top: 10px;
}

text.highcharts-credits {
  display: none;
}

div[id^="tn-"].talker-notif {
  border-radius: 8px;
  z-index: 989898;
  grid-area: 1/2;
  justify-self: flex-end;
}

.more-vertical {
  stroke: var(--vcx-primary);
}

.more-video-options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.more-video-options .dropdown-menu {
  min-width: auto !important;
}

.gray-bg {
  background: #f6f6f6;
  border-radius: 5px;
  padding: 3px;
  position: relative;
}

.vb-image {
  width: 105px !important;
}

.preview-msg {
  font-size: 0.9rem;
  color: #747474;
}

.desktop #presenter-self-stream .vcx_player.default_vcx_player,
.desktop #presenter-self-stream .vcx_player.default_vcx_player video {
  border-radius: 10px;
}

.mobile #presenter-self-stream .vcx_player.default_vcx_player,
.mobile #presenter-self-stream .vcx_player.default_vcx_player video {
  height: 70px;
  width: 110px;
  border-radius: 10px;
}

.player-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: var(--video-player-border-radius);
  box-shadow: var(--box-shadow-sm);
  background: var(--player-background-color);
}

#layout_manager.player-maximized {
  align-items: normal !important;
  --layout-place-content: normal;
}

.share-started .player-container.screen-share-stream,
.canvas-started .player-container.canvas-share-stream {
  display: block;
}

.share-started .player-container:not(.screen-share-stream) {
  display: block;
  grid-column: auto;
}

.canvas-started .player-container:not(.canvas-share-stream) {
  display: block;
  grid-column: auto;
}

.share-started-by-me.share-started .player-container:not(.screen-share-stream) {
  display: flex;
  grid-column: span 2;
}

.player-container:not(.canvas-share-stream),
.player-container:not(.screen-share-stream) {
  display: flex;
}

.ss-talker-enabled .player-container.screen-share-stream,
.ss-talker-enabled .player-container.ss-talker {
  display: block !important;
}

.ss-talker {
  display: block !important;
}

/*
.ss-talker.top-active-talker:after {
  content: '';
  position: absolute;
  top: calc(-1* 1px);
  left: calc(-1* 1px);
  height: calc(100% + 3px* 2);
  width: calc(100% + 3px* 2);
  background: linear-gradient(180deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: 3px;
  z-index: -1;
  animation: animatedgradient 2s linear infinite;
  background-size: 300% 300%;
  border-radius: var(--border-radius-grid);
} */

.ss-talker-self-enabled.ss-talker-enabled .player-container:not(.presentation) {
  display: block !important;
}

.ss-talker-enabled .player-container:not(.presentation) {
  display: none !important;
}

.ss-talker-enabled .player-container.ss-talker {
  padding: 2px;
  /* filter: drop-shadow(0 0 4px var(--vcx-purple)); */
  display: block !important;
  border: none !important;
}

.mobile.ss-talker-enabled .player-container.ss-talker video {
  width: 90%;
  height: 90%;
  border-radius: 10px;
}

.desktop.ss-talker-enabled .player-container.ss-talker video {
  border-radius: 10px;
}

.player-maximized .player-container.maximized {
  grid-column: auto;
}

.player-maximized .player-container:not(.maximized) {
  grid-column: auto;
  display: block;
}

.share-started .player-maximized .player-container:not(.maximized) {
  grid-column: 2;
}

.player-maximized .player-container.maximized .user-video-muted-container {
  border-radius: var(--border-radius-grid);
}

.player-maximized
  .player-container:not(.maximized)
  .user-video-muted-container
  .user-video-muted-img {
  width: 70% !important;
}

.share-started.desktop
  .player-container:not(.screen-share-stream)
  .user-video-muted-container
  .user-video-muted-img,
.canvas-started.desktop
  .player-container:not(.canvas-share-stream)
  .user-video-muted-container
  .user-video-muted-img {
  width: 50% !important;
}

.share-started.mobile
  .player-container:not(.screen-share-stream)
  .user-video-muted-container
  .user-video-muted-img,
.canvas-started.mobile
  .player-container:not(.canvas-share-stream)
  .user-video-muted-container
  .user-video-muted-img {
  width: 50% !important;
}

.share-started
  .player-container:first-child
  .user-video-muted-container
  .user-video-muted-img {
  width: 20% !important;
}

.share-started
  .player-container:not(.screen-share-stream)
  .vcx_player.default_vcx_player.line-icons
  i,
.share-started
  .player-container:not(.screen-share-stream)
  .vcx_player.default_vcx_player.line-icons
  svg,
.canvas-started
  .player-container:not(.canvas-share-stream)
  .vcx_player.default_vcx_player.line-icons
  i,
.canvas-started
  .player-container:not(.canvas-share-stream)
  .vcx_player.default_vcx_player.line-icons
  svg {
  width: 12px !important;
  height: 12px !important;
}

.share-started
  .player-container:not(.screen-share-stream)
  .vcx_player.default_vcx_player
  .stream-name-and-icons
  .canvas-started
  .player-container:not(.canvas-share-stream)
  .vcx_player.default_vcx_player
  .stream-name-and-icons {
  height: 15px;
}

.who-is-sharing {
  position: absolute;
  color: var(--white);
  z-index: 99;
  left: 50%;
  top: 5px;
  transform: translate(-50%, 0%);
  font-size: 12px;
  background: var(--vcx-gray);
  padding: 3px 5px;
  border-radius: var(--border-radius-icons);
}

#slide-panel .submenu li.list-group-item .has-search input.search {
  background: #f8f9fa;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid #ced4da;
}

#slide-panel .submenu li.list-group-item .has-search input.search::placeholder {
  color: #000;
  font-size: 14px;
  font-weight: 300;
}

#slide-panel .submenu li.list-group-item .has-search .form-control:active,
#slide-panel .submenu li.list-group-item .has-search .form-control:focus,
#slide-panel .submenu li.list-group-item .has-search .form-control:hover,
#slide-panel .submenu li.list-group-item .has-search .form-control:visited {
  border: 1px solid #ced4da !important;
}

.enable_wb_enablex-center-div .enable_wb_enablex-edt-tool li {
  padding: 10px;
}

.enable_wb_enablex-center-div .enable_wb_enablex-edt-tool li button {
  display: block;
  margin: 0 auto;
}

.v-hr {
  margin: 10px 5px !important;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  width: 100% !important;
}

#call-duration {
  width: fit-content;
  height: 20px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

#drop-br-confirmation {
  position: absolute !important;
  z-index: 999999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgb(0 0 0 / 60%);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 20px;
  width: 250px;
  border-radius: var(--border-radius-icons);
  background-position: 15px;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px #999;
  color: var(--white);
  -ms-filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=40);
}

#drop-br-confirmation .btn {
  padding: 2px 17px;
  margin: 0 4px;
  font-size: 0.875rem;
}

#drop-br-confirmation .btn.ok {
  background: var(--white);
  color: var(--secondary-red-color);
}

#drop-br-confirmation .btn.cancel {
  background: var(--secondary-red-color);
  background: linear-gradient(
    90deg,
    var(--secondary-red-color),
    var(--vcx-purple)
  );
  color: var(--white);
}

div[id^="tn-"].talker-notif {
  border-radius: var(--border-radius-icons);
  z-index: 50;
}

.more-video-options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.more-video-options .dropdown-menu {
  min-width: auto !important;
}

.dropdown-menu {
  padding: 0.25rem 0 !important;
}

.dropdown-item {
  padding: 0.25rem 0.5rem !important;
}

.spotlight .st0 {
  fill: none;
  stroke: var(--line-icon-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: transparent !important;
}

.dropdown-item {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.dropdown-item svg {
  height: 20px !important;
  width: 20px !important;
}

.presenter-view-thumbnail {
  position: absolute !important;
  right: 120px;
  bottom: 60px;
  transition: all 0.2s ease-in-out;
}

.mobile .presenter-view-thumbnail {
  bottom: 60px;
  right: 10px;
}

.ss-talker-enabled .presenter-view-thumbnail {
  position: absolute !important;
  right: 20px;
  bottom: 60px;
}

.desktop #presenter-self-stream {
  padding: 5px;
  border-radius: var(--border-radius-grid);
  height: 132px;
  width: 230px;
  box-shadow: 0px 1px 4px var(--vcx-secondary);
}

.mobile #presenter-self-stream {
  padding: 5px 3px;
  border: 2px solid #222;
  border-radius: var(--border-radius-grid);
  height: 80px;
  width: 120px;
}

.mobile .user-self-view.small {
  padding: 0;
}

#presenter-self-stream .user-video-muted-container.remote {
  border-radius: var(--border-radius-grid);
}

.action-disabled svg,
.action-disabled svg > *,
.action-disabled svg .stroked,
.action-disabled svg path,
.action-disabled svg line,
.action-disabled svg rect,
.action-disabled svg circle,
.controls_ul .action-disabled svg,
.controls_ul .action-disabled svg > *,
.controls_ul .action-disabled svg .stroked,
.controls_ul .action-disabled svg path,
.controls_ul .action-disabled svg line,
.controls_ul .action-disabled svg rect,
.controls_ul .action-disabled svg circle {
  stroke: var(--disabled) !important;
}

#sound-notes-container .note {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#slide-panel .submenu hr {
  width: 100% !important;
}

.custom-control-input:checked ~ .custom-control-label:before {
  background-color: var(--vcx-secondary);
  border-color: var(--vcx-secondary);
  color: var(--white);
}

.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
  background-color: var(--vcx-secondary);
  border-color: var(--vcx-secondary);
  color: var(--white);
}

.share-options .custom-control-input,
.share-options .custom-control-input:checked ~ .custom-control-label:before,
.share-options .custom-control-input ~ .custom-control-label:after,
.share-options .custom-control-input ~ .custom-control-label:before {
  display: none;
}

.share-options {
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.share-options .custom-control-input:checked ~ .custom-control-label {
  border: 1px solid var(--vcx-secondary);
  border-radius: 10px;
}

.share-options .custom-control.custom-radio.custom-control-inline {
  height: 12ch;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

.share-options label {
  display: inline-flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 5px;
  cursor: pointer;
}

.share-options svg {
  width: 50px !important;
  height: 50px !important;
}

#slide-panel .submenu li.list-group-item h3.setting-h3 {
  width: 100%;
  cursor: pointer;
  padding: 10px 0px;
  position: relative;
}

#slide-panel .submenu li.list-group-item h3.setting-h3::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  color: var(--secondary-red-color);
}

#slide-panel
  .submenu
  li.list-group-item
  h3.setting-h3[aria-expanded="true"]::after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  color: var(--secondary-red-color);
}

#slide-panel .list-group-item {
  align-items: initial;
}

.bw-notification {
  display: none !important;
}

.mobile header .navbar .navbar-nav:nth-child(2n + 2) {
  display: none;
}

.mobile #main .video-controls .controls_ul .control-item {
  padding: 5px 5px 0 5px;
}

.mobile #main .video-controls .controls_ul .control-item svg {
  height: 30px !important;
  width: 30px !important;
}

@media (orientation: portrait) {
  .mobile .vcx_player .stream-name-and-icons {
    bottom: var(--layout-grid-gap);
  }

  .stream-user-name {
    padding: 2px;
  }
}

@media (orientation: landscape) {
  .mobile #main .video-controls {
    bottom: 72px;
  }
}

.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#devicePermissionModal {
  z-index: 999999;
}

#devicePermissionModal .modal-dialog {
  max-width: 408px;
  margin: 0;
}

#devicePermissionModal .modal-dialog .modal-content {
  border: 0;
  border-radius: 16px;
}

#devicePermissionModal .modal-header {
  border: 0;
  text-align: center;
}

#devicePermissionModal .modal-header .modal-title {
  font-family: var(--font-family);
  font-size: 18px;
  color: #000;
  line-height: 26px;
}

#devicePermissionModal .modal-header button.close {
  display: none;
}

#devicePermissionModal .modal-body ol {
  padding: 0px 8px;
  margin: 24px 0;
  color: #000;
  text-align: left;
  list-style: none;
  counter-reset: order;
  font-family: var(--font-family);
}

#devicePermissionModal .modal-body ol li {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 24px;
  counter-increment: order;
}

#devicePermissionModal .modal-body ol li:before {
  content: counter(order);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  margin-right: 20px;
  font-size: 14px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.6);
  background-color: #fff;
  box-shadow: 0 0 0 var(--spacing-1) #fff;
}

#devicePermissionModal .modal-body ol li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.12);
}

#devicePermissionModal .modal-body ol li:not(:last-of-type) {
  padding-bottom: 24px;
}

#devicePermissionModal .modal-body ol li img {
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  border-radius: 8px;
  display: block;
  width: 100%;
  height: auto;
}

#devicePermissionModal .modal-body ol li .chromeAllow-2Cyv {
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  border-radius: 8px;
  padding: 8px 16px 8px 12px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: flex-start;
}

#devicePermissionModal .modal-body ol li .chromeAllow-2Cyv svg {
  flex: 0 0 16px;
  margin-top: 0.1em;
  margin-right: 12px;
}

#devicePermissionModal .modal-footer {
  border-color: rgba(0, 0, 0, 0.24);
  text-align: center;
  padding: 16px;
}

#devicePermissionModal .modal-footer button {
  display: block;
  width: 100%;
  border: 1px solid rgb(43, 24, 155);
  color: rgb(43, 24, 155);
  border-radius: 12px;
  font-size: 16px;
  line-height: 46px;
  padding: 0;
  font-family: var(--font-family);
}

.progress {
  background-color: #4dac4a;
  animation: progressBar 5s ease-in-out;
  animation-fill-mode: both;
}

@keyframes progressBar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

span#mic-progress-bar {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0.8;
  z-index: 0;
}

span#speaker-progress-bar {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0.8;
  z-index: 0;
}

span#external-speaker-progress-bar {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0.8;
  z-index: 0;
}

#vb-input-video-element,
#vb-preview-input-video-element,
#vb-main-input-video-element {
  top: 20%;
  left: 20%;
}

.btn-cross {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

#test-mic-trigger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
}

#test-speaker-trigger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
}

#external-speaker-test-trigger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
}

.flipVideoX12 {
  transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
}

.center-align-text {
  display: grid;
  height: 100vh;
  width: 100%;
  place-items: center;
}

#presenter-self-stream {
  transition: all 0.2s ease-in-out;
}

.no-at-present #presenter-self-stream video,
.presenter-pip-first-time #presenter-self-stream video {
  width: 190px;
  height: 105px;
}

.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#devicePermissionModal {
  z-index: 999999;
}

#devicePermissionModal .modal-dialog {
  max-width: 408px;
  margin: 0;
}

#devicePermissionModal .modal-dialog .modal-content {
  border: 0;
  border-radius: 16px;
}

#devicePermissionModal .modal-header {
  border: 0;
  text-align: center;
}

#devicePermissionModal .modal-header .modal-title {
  font-family: var(--font-family);
  font-size: 18px;
  color: #000;
  line-height: 26px;
}

#devicePermissionModal .modal-header button.close {
  display: none;
}

#devicePermissionModal .modal-body ol {
  padding: 0px 8px;
  margin: 24px 0;
  color: #000;
  text-align: left;
  list-style: none;
  counter-reset: order;
  font-family: var(--font-family);
}

#devicePermissionModal .modal-body ol li {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  line-height: 24px;
  counter-increment: order;
}

#devicePermissionModal .modal-body ol li:before {
  content: counter(order);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  margin-right: 20px;
  font-size: 14px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.6);
  background-color: #fff;
  box-shadow: 0 0 0 var(--spacing-1) #fff;
}

#devicePermissionModal .modal-body ol li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.12);
}

#devicePermissionModal .modal-body ol li:not(:last-of-type) {
  padding-bottom: 24px;
}

#devicePermissionModal .modal-body ol li img {
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  border-radius: 8px;
  display: block;
  width: 100%;
  height: auto;
}

#slide-panel .float-bottom {
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 80px; */
  width: 100%;
  background-color: #eee !important;
}

#devicePermissionModal .modal-body ol li .chromeAllow-2Cyv {
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  border-radius: 8px;
  padding: 8px 16px 8px 12px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.72);
  display: flex;

  align-items: flex-start;
}

#devicePermissionModal .modal-body ol li .chromeAllow-2Cyv svg {
  flex: 0 0 16px;
  margin-top: 0.1em;
  margin-right: 12px;
}

#devicePermissionModal .modal-footer {
  border-color: rgba(0, 0, 0, 0.24);
  text-align: center;
  padding: 16px;
}

#devicePermissionModal .modal-footer button {
  display: block;
  width: 100%;
  border: 1px solid rgb(43, 24, 155);
  color: rgb(43, 24, 155);
  border-radius: 12px;
  font-size: 16px;
  line-height: 46px;
  padding: 0;
  font-family: var(--font-family);
}

#request_layout #usersTable .user-name {
  color: black;
}

#role_switch_layout .users-switch-table .user-name {
  color: black;
}

.private-chats a svg {
  border-radius: 50%;
}

.br-user-name img {
  border: 2px solid grey;
  border-radius: 50%;
  max-width: 50px;
  max-height: 50px;
}

.p-event-none {
  pointer-events: none;
}

#loading-spinner .loading-text {
  color: #000;
  font-size: 1rem;
  font-family: var(--font-family);
  margin-bottom: 10px;
}

#loading-spinner .progress {
  background-color: #cecece;
  animation: none;
  animation-fill-mode: both;
  width: 40%;
  padding: 0;
}

#loading-spinner .progress-bar {
  background-color: var(--vcx-purple);
}

.not-session-page #loading-spinner .loading-text,
.not-session-page .progress,
.session-page .reverse-spinner {
  display: none;
}

#camera-change-icon path,
#camera-change-icon circle {
  stroke-width: 1.5px;
}

#slide-panel #split-panel.submenu li.list-group-item .messages {
  height: calc(52vh - 170px);
}

#split-panel .card {
  border: none !important;
}

#split-panel .card-header {
  padding: 8px 10px;
  margin: 5px 0 0;
  border: 1px solid #fbf2f2;
  border-radius: 5px;
}

#split-panel li.list-group-item .col-md-12 {
  padding: 0 !important;
}

#slide-panel #split-panel.submenu li.list-group-item div.user-list {
  box-shadow: none !important;
  margin-top: 0px;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  border-radius: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
  margin-left: 0;
  margin-right: 0;
}

#split-panel .card-header i {
  transform: rotate(0deg);
}

#split-panel .card-header .collapsed i {
  transform: rotate(180deg);
}

#split-panel #pm-list-container {
  position: relative !important;
  top: 0 !important;
}

#split-panel .chat-messages {
  height: calc(52vh - 170px);
}

#split-panel .chat-heads a.chat-head {
  width: 25px !important;
  height: 25px !important;
  font-size: 12px !important;
}

.initial-svg .text {
  line-height: 1;
  font-family: var(--font-family);
}

.url-svg {
  border-radius: 50%;
}

#chat-heads-slider .chat-head .url-svg {
  border: none;
}

#chat-heads-slider .chat-head .url-svg image {
  clip-path: circle(38%) !important;
}

#chat-heads-slider .chat-head .circle {
  stroke-width: 0 !important;
  r: 19;
}

#group-chat-icon .st0 {
  stroke: #ffffff !important;
}

#openVBSidebar.action-disable-active {
  opacity: 0.7;
}

#controls-toolbar :active #openVBSidebar.action-disable-active {
  pointer-events: none;
}

a.action-disable-active :active {
  pointer-events: none;
}

/* Speech to text CSS start */
.speech-to-text {
  overflow-y: scroll;
}

.speech-to-text-block {
  display: grid;
  grid-template-columns: 11fr 1fr;
  position: absolute;
  background: black;
  opacity: 0.6;
  bottom: 25%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  z-index: 4;
  color: white;
  padding: 5px;
  text-decoration: none;
  transition: height 0.25s, visibility 0.25s;
}

.speech-to-text-block .arrow::before,
.speech-to-text-block .arrow::after {
  position: relative;
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: white;
  transition: 0.3s ease-in-out;
}

.speech-to-text-block .arrow::before {
  transform: rotate(-45deg);
}

.speech-to-text-block .arrow::after {
  left: 6px;
  top: -1px;
  transform: rotate(45deg);
}

.speech-to-text-block.active .arrow::before {
  transform: rotate(45deg);
}

.speech-to-text-block.active .arrow::after {
  transform: rotate(-45deg);
}

.speech-to-text-block .transcript-row {
  /* display: grid;
  grid-template-columns: 2fr 10fr; */
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.speech-to-text-block .transcript-row span {
  padding-right: 1.2rem;
  font-weight: bolder;
}

.speech-to-text-block.non-scrollable-transcript {
  height: 5%;
}

.speech-to-text-block .speech-to-text {
  height: 100%;
}

.speech-to-text-block.non-scrollable-transcript .speech-to-text {
  overflow-y: hidden;
}

.speech-to-text-block.scrollable-transcript {
  height: 15%;
}

.speech-to-text-block.scrollable-transcript .speech-to-text {
  overflow-y: scroll;
}

.speech-to-text-block.speech-to-text-fadeOut {
  visibility: hidden;
}

.speech-to-text-block.speech-to-text-fadeIn {
  visibility: visible;
}

@media only screen and (max-width: 600px) {
  .speech-to-text-block {
    bottom: 20%;
    width: 95%;
  }

  .speech-to-text-block .speech-to-text-download svg {
    height: 18px;
    width: 18px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 800px) and (min-height: 200px) and (max-height: 350px) and (orientation: landscape) {
  .speech-to-text-block {
    bottom: 30%;
  }

  .speech-to-text-block.scrollable-transcript {
    height: 30%;
  }
}

/* Speech To Text CSS ends */

.name-screen-sharing {
  position: absolute;
  top: var(--player-name-left-padding);
  left: var(--player-name-left-padding);
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--player-name-border-radius);
  color: #fff;
  padding: 5px 10px;
  font-size: 15px;
  z-index: 1;
  background-clip: padding-box;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 12px;
}

/* .mobile .name-screen-sharing {
  bottom: 43vh;
  left: 50%;
  transform: translateX(-50%);
} */

/* .mobile.landscape .name-screen-sharing {
  bottom: 75vh;
} */

.name-canvas-sharing {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  color: #fff;
  padding: 10px;
  font-size: 15px;
  z-index: 1;
}

.name-whiteBoard-sharing {
  position: absolute;
  top: 10px;
  left: 20px;
  background: rgba(0, 0, 0);
  border-radius: 5px;
  color: white;
  padding: 10px;
  font-size: 15px;
  z-index: 150;
}

.animated-progress {
  height: 15px;
  border-radius: 5px;
  margin: 3px 3px;
  background-color: white;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  width: 250px;
}

.participant-time {
  margin-left: 5px;
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  padding: 10px 10px 0px 10px;
}

.poll_per {
  font-size: 12px;
  text-align-last: end;
  margin: 3px 3px;
}

.animated-progress span {
  display: block;
  color: rgb(255, 251, 251);
  line-height: 30px;
  position: absolute;
  text-align: end;
  padding-right: 5px;
  top: 2px;
  left: 2px;
  height: 10px;
  border-radius: 5px;
}

.progress-green span {
  /* background-color: blue; */
  background: linear-gradient(90deg, #4dac4a 40%, #3f90e1 70%);
}

.progress-blue span {
  /* background-color: green; */
  background: linear-gradient(90deg, #4d7bde 40%, #1facbe 70%);
}

.progress-purple span {
  background-color: indigo;
}

.progress-red span {
  /* background-color: red; */
  background: linear-gradient(90deg, #9e248c 40%, #c12844 70%);
}

.options_element {
  display: flex;
  flex-direction: column;

  /* justify-content: space-around; */
}

#polling-ul {
  overflow-y: auto;
  overflow-x: hidden;
}

.polling-list {
  list-style: none;
  background: #f1e2e9 !important;
  border-radius: 10px;
}

.options {
  padding: 25px;
}

#timerAndBtnDiv {
  color: #ffff;
}

#answered-div {
  display: flex;
  z-index: 1;
  height: 40px;
  border-radius: 6px;
}

#answered-participant-tab {
  border: none;
  background: inherit;
  font-size: 14px;
  padding: 6px 7px;
}

.dropdown-btn {
  width: 100%;
  border: none;
  background: inherit;
  font-size: 14px;
  padding: 6px 7px;
}

.dropdown-btn {
  background: #fff;
  color: rgb(237, 28, 36);
  border-radius: 10px;
}

#answered-participant-tab:hover {
  background: #fff;
  color: rgb(237, 28, 36);
  border-radius: 10px;
}

#answered-participant-tab:hover #answered-div {
  display: block;
}

#timeForPolling,
#timeForPollingEdit {
  margin-bottom: 1rem;
}

.d-none {
  display: none;
}

#answerOptions {
  justify-content: space-evenly;
  background: #dcdcdc7d !important;
  margin: 3px;
  border-radius: 10px;
  padding: 2px;
}

#answerOptionsForMod {
  justify-content: space-evenly;
  background: #dcdcdc7d !important;
  margin: 3px;
  border-radius: 10px;
  padding: 2px;
}

.questionbtn {
  width: 100%;
  font-size: 14px;
  padding: 6px 7px;
  color: black;
  text-align: center;
}

.questionbtn:hover {
  cursor: pointer;
}

.questionbtnactive {
  background: #fff;
  color: #ed1c24;
  border-radius: 10px;
}

/* css start */
.poll-wrapper {
  width: 100%;
}

.poll-wrapper .options {
  padding: 18px;
}

.poll-wrapper .polling-list {
  display: flex;
  flex-direction: column;
  background: linear-gradient(80deg, #f1e2e9, #dbbdcb99) !important;
}

.poll-wrapper .polling-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.poll-wrapper .polling-controls .apply {
  min-width: 100px;
  height: initial !important;
}

.poll-wrapper .polling-controls .apply.btn-white {
  background: #fff !important;
  color: #000 !important;
}

.polling-desc {
  /* min-width: 50px; */
  white-space: normal;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  font-size: 14px;
  color: black;
  margin: 3px 3px;
  width: 60%;
}

.poll-desc {
  display: flex;
  padding: 0px;
  justify-content: space-between;
}

#btn-create-poll,
#btn-create-poll-edit {
  width: 50%;
}

#btn-edit-cancel {
  width: 50%;
  background: #fff !important;
  color: #9e248c !important;
}

#btn-cancel-poll,
#btn-cancel-poll-edit {
  width: 50%;
  background: #fff !important;
  color: #9e248c !important;
}

#btn-cancel-poll:hover {
  border: 1px solid #9e248c !important;
}

#btn-edit-poll {
  width: 50%;
}

#btn-edit-cancel :hover {
  border: 1px solid #9e248c !important;
}

.savePoll:hover {
  border: 1px solid #9e248c !important;
}

.poling-modal {
  top: 30%;
  left: 0%;
}

.poling-modal .modal-dialog {
  max-width: 350px;
}

.poling-modal .modal-header {
  border: none;
  padding-bottom: 0;
}

.poling-modal .modal-body p {
  text-align: center;
}

.poling-modal .modal-content {
  background: #00000096;
  padding: 10px;
  border-radius: 15px;
}

.poling-modal .close {
  color: #ffff;
  opacity: 1;
  font-size: 25px;
  font-weight: inherit;
  padding: 10px;
}

.submit-btn {
  border-radius: 15px;
  padding: 5px 20px;
  background: linear-gradient(6deg, #9e248c, #c12844);
  display: block;
  margin: auto;
}

.has-scroll .radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  margin: 8px 0;
  z-index: 10;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.has-scroll .radio input[type="radio"] + .radio-label:before {
  content: "";
  /* background: #fff; */
  border: 2px solid #fff;
  display: inline-flex;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0px;
  margin-right: 5px;
  vertical-align: baseline;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  left: 0;
  padding-left: 0;
  border-radius: 100%;
}

.has-scroll .radio input[type="radio"]:checked + .radio-label:before {
  background-color: rgb(237, 28, 36);
  /* box-shadow: inset 0 0 0 4px #fff; */
  border-color: rgb(237, 28, 36);
}

.radio-label {
  font-size: 13px;
  color: #fff;
}

.polls-result-div {
  width: 100%;
}

.input-container {
  display: flex;
  width: 100%;
}

.icon {
  padding: 10px;
  background: grey;
  color: white;
  min-width: 10px;
  text-align: center;
  cursor: pointer;
}

#polling_result_graph {
  overflow: inherit !important;
}

#pollResulltsParent {
  align-items: normal !important;
}

.question-poll {
  padding-top: 5px;
  padding-left: 5px;
}

/* .highcharts-container svg path, svg line, svg circle, svg > *, svg.active path, svg.active line, svg.active rect, svg.active circle {
  fill: inheri !important;
  stroke: inheri !important;
} */

/* css end */

/* hand raise css start */
.hand-raised {
  border-radius: 5px;
  color: #fff;
  position: absolute;
  top: 20px;
  left: 5px;
  z-index: 100;
  font-size: 25px;
  display: flex;
  flex-wrap: wrap;
  z-index: 10;
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.hand-raised:hover .rasied-down {
  font-size: 13px;
  color: #fff;
  background-color: black;
  z-index: 0;
  margin-top: 23px;
  display: block;
  border-radius: 5px;
  padding: 6px;
  opacity: 0.7;
  position: absolute;
  pointer-events: none;
  width: 85px;
}

.myhandRaised {
  border-radius: 5px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  z-index: 6;
}

#HandRaise {
  background: none;
}

.rasied-down {
  display: none;
}

/* hand raise css end */

@media only screen and (max-width > 1920px) {
  .user-video-muted-img {
    max-width: 285px;
  }

  .bw-icon-container {
    max-width: 285px;
  }
}

/* reactions-set */
.reaction-btn {
  background: #f6f6f6;
  border-radius: 5px;
  padding: 0 6px;
}

.mobile-reaction-btn {
  position: absolute;
  right: 30px;
  top: 0.1rem;
}

.mobile-rec-btn {
  position: absolute;
  right: 75px;
  top: 0.1rem;
  height: 30px;
  border-radius: 30px;
  padding: 5px;
  background: red;
  display: flex;
  justify-content: center;
  text-align: center;
}

.mobile-rec-btn a {
  text-decoration: none !important;
  color: white !important;
  width: 100%;
  padding-right: 4px;
}

.mobile-rec-btn .blink-me {
  color: #ffffff !important;
  border-radius: 50%;
  animation: blinker 1.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
  width: 20px;
  height: 20px;
}

@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .mobile-reaction-btn {
    display: none;
  }

  .mobile-rec-btn {
    display: none !important;
  }
}

.mobile-reaction-btn .reaction-btn {
  padding: 0;
  width: 40px;
  height: 30px;
}

.mobile-reaction-btn .reaction-btn .reaction-emoji {
  width: 40px;
  height: 30px;
}

@media (orientation: landscape) {
  .mobile-reaction-btn {
    display: none;
  }
}

.reaction-btn.dropdown-toggle::after {
  display: none;
}

.reactions .dropdown-menu.show,
.mobile-reaction-btn .dropdown-menu.show {
  width: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.reactions .dropdown-menu > a,
.mobile-reaction-btn .dropdown-menu > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 4px !important;
  border-radius: 8px;
}

.reactions .dropdown-menu > a:hover {
  background: #e8e8e899 !important;
}

.reaction-container-muted,
.reaction-container-unmuted {
  position: absolute;
  z-index: 4;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.5),
    rgba(54, 54, 54, 0.3)
  );
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: visibility 1s linear;
}

.reaction-container-unmuted {
  top: 0;
}

.reaction-container-muted div,
.reaction-container-unmuted div {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 60px;
  min-width: 25px;
  width: 25%;
  aspect-ratio: 1/1;
}

.reaction-container-muted div .reaction-emoji,
.reaction-container-unmuted div .reaction-emoji {
  width: 70%;
  height: 70%;
}

.fade-away {
  animation: bounce-in 3s ease;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

/* /* keyBoard shortcuts css start */
.modal-backdrop {
  z-index: -1;
}

.shortcut-data ul li {
  font-size: 20px;
  padding: 5px;
  color: #000;
}

#keyboard-data {
  overflow-y: scroll;
  height: 300px;
  padding: 20px;
}

.shortcut-table {
  width: 100%;
}

.shortcut-table tr {
  margin-top: 10px;
}

.shortcut-table td {
  /* border-collapse: collapse; */
  padding: 5px;
  font-size: 15px;
  padding: 15px;
  color: #000;
  margin-top: 10px;
  font-weight: bolder;
}

.shortcut-table td span {
  border-radius: 4px;
  padding: 2px 6px;
  margin: 4px;
  box-shadow: 0px 0px 8px gray;
  font-weight: bolder;
  width: 65px;
  height: 27px;
  display: inline-block;
  text-align: center;
}

.control {
  flex-direction: row;
  justify-content: flex-end;
}

#letter {
  width: 40px;
}

#keyboard-shortcut-title {
  font-weight: bolder;
}

/* keyboard css end */

/* whiteboard layout */
.enable_wb_enablex-drag-ul li {
  margin-top: 30px;
}

/* HLS css start*/

.enx-hls-audience #layout_manager video {
  object-fit: contain;
  background: #636060;
  height: inherit;
  width: inherit;
}

.enx-hls-audience #layout_manager {
  grid-auto-rows: auto !important;
  --grid-template-columns: "" !important;
}

.enx-hls-audience #controls-toolbar {
  bottom: 20% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.enx-hls-audience #bottom-nav-mobile {
  display: none !important;
}

.enx-hls-user #navbarSupportedContent .navbar-nav li a#audience-nav-link {
  border-radius: 0px 5px 5px 0px;
}

#particpant_count a#audience-nav-link {
  cursor: default !important;
}

.enx-hls-user #navbarSupportedContent li#particpant_count {
  background: #f6f6f6;
  border-radius: 5px;
}

.enx-hls-user #navbarSupportedContent .navbar-nav li a#participant-nav-link {
  border-radius: 5px 0px 0px 5px;
}

.enx-hls-user #navbarSupportedContent .navbar-nav li a#audience-nav-link {
  border-radius: 0px 5px 5px 0px;
}

.enx-hls-user #navbarSupportedContent #particpant_count .vertical-line {
  border-left: 1px solid #c0c1c2;
  height: 18px;
}

/* HLS css end */

/* Qa css start */
#slide-panel .submenu li.list-group-item.qa-list-tab {
  border: none;
}

.inside-qa-list-tab {
  width: 100%;
  background: #dcdcdc7d !important;
  border-radius: 10px;
  padding: 2px !important;
}

.inside-qa-list-tab li {
  width: 33.3%;
}

.inside-qa-list-tab .nav-link.active {
  background: #fff;
  color: rgb(237, 28, 36);
  border-radius: 10px;
}

.inside-qa-list-tab .nav-link {
  width: 100%;
  border: none;
  background: inherit;
  font-size: 13px;
  padding: 6px 7px;
}

.postQuestion {
  width: 100%;
}

/* .postQuestion.postQuestion-edit textarea.form-control {
  background: linear-gradient(90deg,#2ea1c9d4 22%,#80a4aca6 100%);
  border: none;
  border-radius: inherit;
  height: 70px;
  color: #fff;
}
.postQuestion.postQuestion-edit .chat-utitlities  {
  padding: 0.375rem 0.75rem;
  background: linear-gradient(90deg,#198cb4f7 22%,#80a4accc 100%);
}
.postQuestion.postQuestion-edit .fa-smile, .postQuestion.postQuestion-edit .fa-paper-plane {
  color: #fff;
  font-size: 20px;
}
.postQuestion.postQuestion-edit textarea.form-control::placeholder {
  color: #fff;
} */
.short-name {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  background: #ed1c24d6;
  color: #ffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.short-name.short-name-edit {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  background: #7d7979;
  color: #ffff;
  width: 32px;
  height: 32px;
}

#slide-panel .submenu li.list-group-item div.user-list.user-list-edit {
  padding: 8px 10px;
}

.user-list.user-list-edit .row p span {
  margin-right: 10px;
}

.user-name {
  font-size: 14px;
}

.date-update {
  color: gray;
  font-size: 10px;
}

.collapse-update:not(.collapsed) .rotate-icon {
  transform: rotate(180deg);
}

.collapse-update .title {
  color: #ed1c24;
  font-size: 17px;
  margin-right: 15px;
}

.accicon {
  background: #ed1c24;
  padding: 3px 9px;
  border-radius: 5px;
}

.accicon .fa-angle-down {
  color: #fff;
}

.user-qa {
  font-size: 14px;
}

#slide-panel .submenu li.list-group-item .question-btn button.apply {
  font-size: 10px;
  padding: 5px 10px;
  margin-left: 10px;
}

#slide-panel .submenu li.list-group-item .question-btn button.apply.white-btn {
  background: white;
  color: #000;
  border-color: darkgray;
}

.no-question {
  text-align: center;
  padding-top: 200px;
  font-size: 20px;
}

#slide-panel .submenu li.list-group-item.qa-list-tab ::-webkit-scrollbar {
  width: 0;
}

#qna-tab-participantContent,
#qna-tab-hostContent {
  overflow-y: auto;
  overflow-x: hidden;
}

/* Qa css end */

.menu_more ul li .dropdown-item:hover {
  background: #e9e9e9 !important;
}

/* Virtual background css start */

#virtual-back-list.loading::after {
  content: "Loading...";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.49);
  z-index: 1000;
}

#main_login_video.loading::after {
  content: "Applying Background...";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.49);
  z-index: 1000;
}

#virtual-back-list.applying::after {
  content: "Applying...";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.49);
  z-index: 1000;
}

/* Virtual background css end */

/* Excalamation css start*/

#main .video-controls .controls_ul .control-item.exclamation-point,
.custom-video-wrapper .bottom-desc .icon.exclamation-point.disable,
.video-controls-mobile .controls_ul .control-item.exclamation-point,
#main .video-controls .controls_ul .control-item.exclamation-point:hover,
.custom-video-wrapper .bottom-desc .icon.exclamation-point.disable:hover,
.video-controls-mobile .controls_ul .control-item.exclamation-point:hover {
  background-color: var(--disabled) !important;
}

#main .video-controls .controls_ul .control-item.exclamation-point::after,
.video-controls-mobile .controls_ul .control-item.exclamation-point::after {
  top: 0px;
  right: 0px;
  width: 15px;
  height: 15px;
  font-size: 13px;
  line-height: 15px;
}

/* Excalamation css end*/
/* privacy mode css start */

.privacy-mode-ul {
  list-style: none;
  width: 250px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 8px;
  padding: 10px !important;
  margin: 5px !important;
}

.privacy-mode-ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}

.privacy-mode-ul li span {
  color: #333;
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.5;
}

/* privacy mode css end */

/* url preview card css start */
.previewCardLayout {
  max-width: fit-content;
  margin-bottom: 10px;
  display: none;
}

.previewCardLayout * {
  max-width: 220px;
}

.preview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.preview-image {
  width: 200px;
  height: 100px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-info {
  padding: 10px;
}

.preview-title {
  font-size: 15px;
  margin: 0;
  margin-bottom: 5px;
  text-align: left !important;
  font-weight: 700;
}

.previewCardLayout .preview-description {
  font-size: 12px;
  margin: 0;
  margin-bottom: 10px;
  text-align: left !important;
  max-height: 80px;
  overflow: hidden !important;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.preview-domain {
  font-size: 10px;
  margin: 0;
  color: #666;
  text-align: left !important;
}

.preview-close {
  position: absolute !important;
  top: 4px;
  right: 4px;
  z-index: 2 !important;
  color: white;
  background: grey;
  border-radius: 50%;
}

.preview-close :hover {
  cursor: pointer;
}

.message-bubble .preview-card-reference {
  text-decoration: none;
  color: #000;
}

.message-bubble .preview-card-reference :hover {
  text-decoration: none !important;
  color: #000;
}

/* url preview card css end */

/* invitation on the basis of role */
.roleForInvitation {
  color: #333;
  display: inline-flex;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: left;
}

.invitaion-role-container {
  display: flex;
  flex-direction: column;
  color: #333;
}

.invitaion-role-container input {
  margin-left: 10px;
}

/* invite css end */

/*chat typing css start */
.typing-message {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.typeDiv::after {
  display: inline-block;
  animation: dots steps(1, end) 1s infinite;
  content: "";
}

@keyframes dots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75% {
    content: "...";
  }

  100% {
    content: "";
  }
}

.typeDiv {
  font-size: small;
  color: grey;
}

#typyingContainer {
  height: 20px;
  padding-left: 12px;
  display: flex;
}

/*chat typing css ends */

/* Q&A deletion css start */
.deleteContainer {
  width: 20%;
}

.deleteQnA {
  cursor: pointer;
}

.questionContainer {
  width: 100%;
}

.initialContainer {
  width: 90%;
  display: flex;
  align-items: center;
}

.initialContainer span {
  margin-left: 15px;
}

.openQes {
  margin-left: 10px;
}

.qna-ans {
  font-size: 14px;
}

.mt-10 {
  margin-top: 10px;
}

/* Q&A css end */

/* Chat deletion css start */
.delete-chat-container {
  display: none;
  position: absolute;
  right: 20%;
  z-index: 2;
  box-shadow: 1px 1px 12px 4px #00000017;
  background-color: #f9f9f9;
  width: 50px;
  height: 30px;
  align-content: center;
  justify-content: center;
  padding: 3px;
  bottom: -25px;
  border-radius: 5px;
  cursor: pointer;
}

.p-relative {
  position: relative !important;
}

.message-row:hover .delete-chat-container {
  display: flex;
}

/* toxicity analysis css start */
.alertToxicity {
  position: absolute;
  bottom: 20px;
  right: 23px;
  z-index: 200;
  cursor: pointer;
  width: 20px;
}

.pm-alertToxicity {
  position: absolute;
  bottom: 0px;
  right: 23px;
  z-index: 200;
  cursor: pointer;
  width: 20px;
}

.sending {
  margin-right: 36px;
  text-align: right;
  font-size: 10px;
  color: gray;
}

.blur-text {
  filter: blur(3px);
  user-select: none;
  text-shadow: 0 0 14px #000;
}

.sending-qna {
  position: absolute;
  top: 50px;
  width: 0;
  height: 0;
}

.alertToxicity-ans {
  position: absolute;
  top: 0px;
  right: 30px;
  width: 0;
  height: 0;
}

.blurTextArea {
  color: transparent;
  text-shadow: 0 0 5px rgba(0, 0, 0, 1);
  user-select: none;
}

#alertToxicity-qna {
  position: absolute;
  right: 20px;
  z-index: 200;
  top: -12px;
  width: 0;
  height: 0;
}

#alertToxicity-poll {
  position: absolute;
  right: 30px;
  z-index: 200;
  top: 40px;
  width: 0;
  height: 0;
}

/* toxicity analysis css end */
/* preview card layout for Q&A */
.previewCardLayoutqna {
  max-width: 100%;
  margin-bottom: 10px;
  background: rgb(255, 255, 255);
  position: relative;
}

.previewCardLayoutqna .preview-description {
  font-size: 12px;
  margin: 0;
  margin-bottom: 10px;
  text-align: left !important;
  max-height: 80px;
  overflow: hidden !important;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.preview-close-qna {
  position: absolute !important;
  top: 4px;
  right: 4px;
  z-index: 2 !important;
  border-radius: 50%;
  cursor: pointer;
}

.preview-card-reference {
  text-decoration: none !important;
  color: #000 !important;
}

.preview-card-reference :hover {
  text-decoration: none !important;
  color: #000 !important;
}

.preview-image-qna {
  width: 220px;
  height: 100px;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
}

.preview-image-qna img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-close-poll {
  position: absolute !important;
  right: 10px;
  z-index: 101 !important;
  border-radius: 50%;
  cursor: pointer;
}

.poll-edit {
  cursor: pointer;
  height: 20px;
  position: relative;
}

#editPoll::-webkit-scrollbar {
  background-color: #ddd;
  border: 6px solid #fff;
  border-radius: 99em;
  width: 15px !important;
}

#editPoll {
  overflow-y: auto;
  overflow-x: hidden;
}

.poll-edit::after {
  content: "Edit";
  display: none;
  position: absolute;
  top: 3px;
  right: 22px;
  width: 36px;
  height: 20px;
  text-align: center;
  background-color: #090909;
  color: #fff;
  border-radius: 8px;
  z-index: 200;
  padding: 2px;
  font-size: 10px;
}

.poll-edit:hover::after {
  display: block;
}

.option-result {
  margin-top: 10px;
  font-size: 13px;
}

#co_browsing_iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.opac-50 {
  opacity: 0.5;
}

.sidebar-timer {
  display: flex;
  justify-content: flex-end;
  margin-right: 5px;
}

/* Toastr css start */

.toast-top-center {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}

.toast-bottom-center {
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}

#recording-toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}

#recording-toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#recording-toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#recording-toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#recording-toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#recording-toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#recording-toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#recording-toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#recording-toast-container.toast-top-center > div,
#recording-toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#recording-toast-container.toast-top-full-width > div,
#recording-toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  #recording-toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }

  #recording-toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  #recording-toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }

  #recording-toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  #recording-toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/* Toastr css end */
/* Meeting summary css start */
.summary-description,
.transcription-description {
  color: gray !important;
  font-size: 13px !important;
  padding-left: 10px !important;
  margin-bottom: 5px !important;
}

.meeting-notes-description,
.summary-description {
  color: gray !important;
  font-size: 13px !important;
  padding-left: 10px !important;
  margin-bottom: 5px !important;
}

.get-summary,
#get-summary-more {
  width: 100%;
  overflow-y: scroll;
  height: 100%;
  border: 0;
  font-size: 12px;
  color: grey;
}

.download-transcript {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.send-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 300px;
  position: fixed;
  bottom: 0px;
}

.get-summary:focus {
  color: #495057;
  background-color: var(--white);
  border-color: var(--vcx-red);
}

#meeting-summary-icon {
  padding-left: 10px;
  padding-top: 10px;
}

/* #meeting-summary-description {
  padding-right: 10px;
} */

.get-summary,
#get-summary-more {
  border: none;
}

.get-summary:focus {
  outline: none;
  border: 1px solid #ccc;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

#get-summary-more:focus {
  outline: none;
  border: 1px solid #ccc;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

#meeting-summary-notification {
  position: absolute;
  color: var(--white);
  background: #ba2556;
  border: 1px solid #ba2556;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  font-size: 10px;
  right: 8px;
  top: 4px;
}

#meeting-summary-icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#summary-alert {
  background: 0 0;
  bottom: 10px;
  position: fixed;
  right: 10px;
  z-index: 999999;
}

#summary-alert .awaiting-msg {
  background-clip: padding-box;
  background-color: #000;
  background-position: 15px;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 0 5px #999;
  color: #fff;
  flex-basis: 250px;
  font-size: 0.875rem;
  margin: 0 0 6px;
  max-width: 250px;
  opacity: 0.6;
  overflow: hidden;
  padding: 15px 20px;
  position: relative;
  text-align: center;
  width: 250px;
}

#summary-alert .awaiting-msg span.participant-name {
  font-weight: 700;
  text-decoration: underline;
}

#summary-alert .awaiting-msg .permission-buttons {
  padding: 10px 0 2px;
}

#summary-alert .awaiting-msg .btn {
  font-size: 0.875rem;
  margin: 0 4px;
  padding: 2px 17px;
}

#summary-alert .awaiting-msg .btn.allow {
  background: #fff;
  color: #cc292a;
}

#summary-alert .awaiting-msg .btn.deny {
  background: #cc292a;
  background: linear-gradient(90deg, #cc292a, #a20a90);
  color: #fff;
}

.ellipsis-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Styles for the ellipsis icon */
.ellipsis-icon {
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 50%;
}

/* Styles for the pop-up button */
.popup-button {
  display: none;
  position: absolute;
  top: -34px;
  right: 0px;
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 200px;
}

/* Show the pop-up button when hovering over the ellipsis container */
.ellipsis-container.clicked .popup-button {
  display: block;
}

.transcript-bubble {
  padding: 5px 12px 0;
}

.transcription--received {
  font-size: 12px;
  text-align: left;
}

.UserName {
  font-size: 11px;
  color: gray;
  font-weight: 400;
}

.transcript-block {
  margin-top: 10px;
}

.transcription-msg {
  min-width: 50px;
  text-align: left;
  font-size: 12px;
  color: black;
  font-weight: 400;
}

.transcription-avatar {
  margin-right: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(33, 32, 31);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}

.trans-summary-tab {
  justify-content: space-evenly;
  background: #dcdcdc7d !important;
  margin: 3px;
  border-radius: 10px;
  padding: 2px;
  height: 35px;
  display: flex;
  align-items: center;
}

.trans-btn-active {
  background: #fff;
  color: #ed1c24 !important;
  border-radius: 10px;
}

.trans-btn {
  width: 50%;
  font-size: 14px;
  padding: 6px 14px;
  color: black;
  text-align: center;
}

.start-transcript-btn,
.start-rec-transcript-btn,
.download-transcript-btn,
.btn-summary,
.btn-trans {
  background: linear-gradient(6deg, #9e248c, #c12844);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  height: 39px;
  margin: 6px 6px;
  padding: 6px 0;
  text-align: center;
  width: 140px;
  border: 0;
}

#summary-email {
  border: 0;
}

.download-transcript {
  position: absolute;
  bottom: -55px;
  display: flex;
  justify-content: center;
  width: 100%;
}

#transcription-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: fixed;
  bottom: 10px;
  width: 300px;
}

#trans-controls {
  height: 60px;
  width: 105px;
}

#meeting-summary-description {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

#meeting-summary-description .checkbox {
  margin: 5px 10px;
  color: var(--black);
}

.meeting-option-span {
  font-size: 12px;
  padding: 6px 14px;
  color: #000;
  text-align: center;
  cursor: pointer;
}

.button-group-summary {
  /* margin-right: 20px; */
  float: right;
}

.button-group-summary span {
  color: black;
  font-size: 13px;
}

.button-group-summary:hover {
  border: 0;
}

.summary-selection {
  color: black;
  min-width: 95px !important;
  font-size: 12px;
  padding: 5px !important;
}

.summary-selection:after {
  content: none !important;
}

#settings-link {
  color: transparent !important;
  text-decoration: none !important;
}

#settings-link:hover {
  color: transparent !important;
  text-decoration: none !important;
}

#summary-btn-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 300px;
  position: fixed;
  bottom: 0px;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}

/* Button styles */
.btn-transcription,
.btn-start-summary {
  width: 100px;
  height: 40px;
  background: linear-gradient(90deg, #cc292a, #a20a90);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-on-summary {
  color: #000;
}

.download-script {
  color: #000;
  position: absolute;
  right: 18px;
  font-size: medium;
}

.live-points {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.summary-tabs {
  display: flex;
  flex-direction: row;
  color: #000;
}

.tab {
  /* padding: 10px 20px; */
  cursor: pointer;
  font-size: 10px;
  padding: 5px 5px;
}

.tab:hover {
  background-color: #f0f0f0;
}

.tab.active {
  font-weight: bold;
  border-bottom: 1px solid #cc292a;
}

.summary-tab-content {
  display: none;
  padding-left: 10px;
}

.content .active {
  display: block;
}

.heading-summar-type {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.content {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 600px) {
  #summary-btn-list {
    width: 350px;
  }
}

.heading {
  color: black;
}

#loadingContainer {
  margin-left: 20px;
}

.trans-time {
  font-size: 9px;
}

#search-input-qna:focus {
  border-color: #333333;
}

#QnasearchIcon {
  margin-left: 8px;
  margin-top: 11px;
  cursor: pointer;
}

.popup-hold {
  display: flex;
  justify-content: center;
}

#pause-msg {
  max-width: 350px;
}

.resume-btn {
  background: red;
  color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#hide-players {
  background-color: rgba(0, 0, 0, 1);
}

.image-container-pause {
  width: 500px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  object-fit: contain;
}

.image-container-pause img {
  max-width: 100%;
  height: 100%;
}

#pause-room-participant {
  background-color: #000;
  color: white;
  border: 1px solid black;
  box-shadow: none !important;
  max-width: 600px;
  max-height: 600px;
  top: 45%;
}

.modal-img-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* tooltip info css start */
.tooltip-info {
  position: relative;
  display: inline-block;
  color: black;
}

.tooltip-info-text {
  visibility: hidden;
  width: 180px;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 3;
  bottom: 150%;
  left: 50%;
  margin-left: 1px;
  top: 0%;
  opacity: 0;
  transition: opacity 0.3s;
  height: max-content;
  background-clip: padding-box;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 13px !important;
  text-align: left;
}

#feature-description-audience-text {
  font-size: 11px !important;
}

#feature-description-moderator-text {
  font-size: 11px !important;
}

#feature-description-participant-text {
  font-size: 11px !important;
}

#feature-description-audience:hover #feature-description-audience-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-audience:hover #info-audio-svg {
  color: #9c2b87;
}

#feature-description-moderator:hover #feature-description-moderator-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-moderator:hover #info-audio-svg {
  color: #9c2b87;
}

#feature-description-participant:hover #feature-description-participant-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-participant:hover #info-audio-svg {
  color: #9c2b87;
}

#feature-description-audioOnly:hover #feature-description-audioOnly-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-audioOnly:hover #info-audio-svg {
  color: #9c2b87;
}

#audio_only_toggle {
  overflow: visible;
}

#feature-description-noise-suppression:hover #feature-description-noise-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-noise-suppression:hover #info-noise-svg {
  color: #9c2b87;
}

#noise_suppression {
  overflow: visible;
}

#feature-description-lecture-mode:hover #feature-description-lecture-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-lecture-mode:hover #info-lecture-svg {
  color: #9c2b87;
}

#switch_mode_toggle {
  overflow: visible;
}

#feature-description-bandwidth-mode:hover #feature-description-bandwidth-text,
#feature-sound-notifications-mode:hover #feature-sound-notifications-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-bandwidth-mode:hover #info-bandwidth-svg {
  color: #9c2b87;
}

#switch_bandwidth_toggle {
  overflow: visible;
}

#feature-description-toxicity-mode:hover #feature-description-toxicity-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-toxicity-mode:hover #info-toxicity-svg {
  color: #9c2b87;
}

#switch_toxic_mode_toggle {
  overflow: visible;
}

#no-participants {
  overflow: visible;
}

#feature-description-no-participant:hover
  #feature-description-no-participant-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-no-participant:hover #info-no-participant-svg {
  color: #9c2b87;
}

#feature-description-screen-share-controls:hover
  #feature-description-screen-share-controls-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-screen-share-controls:hover
  #info-screen-share-controls-svg {
  color: #9c2b87;
}

#screen_mode_toggle,
#choose-language {
  overflow: visible;
}

#feature-description-screen-share-mode:hover
  #feature-description-screen-share-mode-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-screen-share-mode:hover #info-screen-share-mode-svg {
  color: #9c2b87;
}

#feature-description-choose-lang:hover #feature-description-choose-lang-text {
  visibility: visible;
  opacity: 1;
}

#feature-description-choose-lang:hover #info-choose-lang-svg {
  color: #9c2b87;
}

@media only screen and (max-width: 600px) {
  .tooltip-info-text {
    width: 130px;
    font-size: 10px !important;
  }
}

/* Tooltip css ends */

/* clip img css */
#msg-container {
  position: relative;
}

#imagePreview {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 285px;
  height: 250px;
  overflow: auto;
}

.img-preview-container {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 10px;
}

.editable-div {
  height: 35px;
  /* Adjust as needed */
  border: 1px solid #ccc;
  padding: 8px;
  font-family: var(--font-family);
  overflow: auto;
}

.sent-time {
  color: #5c5c5cd1;
  margin-right: 36px;
  text-align: right !important;
  font-size: 10px;
}

#image-preview {
  width: 500px;
  height: 450px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.closeImgpreview {
  margin-right: 10px;
}

.message-bubble p {
  font-size: 14px !important;
}

.receive-time {
  color: #5c5c5cd1;
  margin-left: 36px;
  text-align: left !important;
  font-size: 10px;
}

/* clip image css end */

/* switch role css */
#alertToxicity-qna-mod {
  position: absolute;
  right: 20px;
  z-index: 200;
  top: -12px;
  width: 0;
  height: 0;
}

#alertToxicity-qna-part {
  position: absolute;
  right: 20px;
  z-index: 200;
  top: -12px;
  width: 0;
  height: 0;
}

#SVGRepo_iconCarrier {
  fill: var(--line-icon-color);
}

#chat-text-area:empty::after {
  content: "Type here...";
  color: gray;
  position: absolute;
  top: 5px;
  left: 10px;
  pointer-events: none;
  font-size: medium;
}

#chat-text-area:not(:empty)::after {
  display: none;
}

.part_chat_search {
  position: absolute;
  top: 40px;
  right: 0;
  width: 40%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 12px 4px #00000017;
  z-index: 40;
}

#dialOutPopup.message-popup p.dial_status {
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 50% !important;
  font-size: 18px;
  font-weight: bolder;
}

.alert {
  margin-bottom: 0.5rem;
  background-color: white !important;
  border: none !important;
  font-size: 15px;
}

.green-text {
  color: green;
}

#alert-success-call {
  border: none !important;
}

#make-another-call {
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 12px;
}

li.nav-item {
  box-shadow: var(--box-shadow-sm);
  border-radius: var(--btn-border-radius);
}

.grid-center {
  display: grid;
  place-content: center;
}

#zoom {
  width: 24px;
  height: 24px;
}

.spotlighted .st1 {
  stroke: var(--icon-color);
  fill: var(--icon-color);
}

.speech-to-text-block .arrow::before,
.speech-to-text-block .arrow::after {
  background: var(--icon-color);
}

svg:not(
    .highcharts-root,
    .reaction-emoji,
    .whiteboard-svg,
    .info-svg,
    .cross_camera_icon,
    .br-icons,
    .role_switch_Icon,
    .annotaion-svg
  )
  path,
svg:not(
    .highcharts-root,
    .reaction-emoji,
    .whiteboard-svg,
    .info-svg,
    .cross_camera_icon,
    .br-icons
  )
  line,
svg:not(.info-svg) circle,
svg:not(
    .highcharts-root,
    .reaction-emoji,
    .whiteboard-svg,
    .info-svg,
    .cross_camera_icon,
    .br-icons,
    .role_switch_Icon,
    .annotaion-svg
  )
  > *,
svg:not(
    .highcharts-root,
    .reaction-emoji,
    .whiteboard-svg,
    .info-svg,
    .cross_camera_icon,
    .br-icons
  ).active
  path,
svg:not(
    .highcharts-root,
    .reaction-emoji,
    .whiteboard-svg,
    .info-svg,
    .cross_camera_icon,
    .br-icons
  ).active
  line,
svg:not(
    .highcharts-root,
    .reaction-emoji,
    .whiteboard-svg,
    .info-svg,
    .cross_camera_icon,
    .br-icons
  ).active
  rect,
svg:not(
    .highcharts-root,
    .reaction-emoji,
    .whiteboard-svg,
    .info-svg,
    .cross_camera_icon,
    .br-icons
  ).active
  circle {
  fill: none !important;
  stroke: var(--icon-color);
}

.line-icons svg path,
.line-icons svg line,
.line-icons svg circle,
line-icons svg > *,
.line-icons svg.active path,
.line-icons svg.active line,
.line-icons svg.active rect,
.line-icons svg.active circle,
.rec {
  stroke: var(--line-icon-color);
  /* fill: var(--line-icon-color); */
  fill: none;
}

.stream-name-and-icons {
  .stream-user-name {
    color: var(--text-color);
    border-radius: var(--border-radius-icons);
    text-align: left;
    max-width: max-content;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    font-size: 12px;
    text-shadow: 0px 1px 1px rgb(33 33 33);
    white-space: nowrap;
    text-transform: capitalize;
    line-height: 12px;
  }
}

.line-icons .more-video-options.dropdown:hover,
.line-icons .dropdown-item svg:hover {
  background: #797979 !important;
  border-bottom: 1px solid var(--icon-hover-state);
}

svg .rec {
  stroke: none !important;
  fill: var(--line-icon-color);
}

svg .recp,
.privacy-Icon,
.role_switch_Icon {
  stroke: none !important;
  fill: var(--icon-color);
}

.fa {
  color: var(--icon-color);
}

#main .video-controls .controls_ul .control-item:hover {
  background: #e9e9e9 !important;
  border-bottom: 4px solid var(--icon-hover-state);
}

.st0,
.st1,
.st2,
.st3,
.st4 {
  font-family: var(--font-family) !important;
}

svg text {
  font-family: var(--font-family) !important;
}

.user-video-muted-container {
  background: var(--video-muted-color);
}

header .navigation-wrap .navbar .text-logo {
  font-size: var(--room-name-font-size) px;
}

.mobile .text-logo {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  margin-left: 0 !important;
  padding-left: 0 !important;
  z-index: 900;
}

.message-bubble p {
  font-size: var(--chat-msg-font-size) px;
}

a.nav-link.gra-bg div,
a.nav-link.gra-bg span {
  font-size: var(--topbar-font-size) px;
}

.initial-svg .circle {
  fill: #3d5059 !important;
  stroke: #3d5059 !important;
  stroke-width: 2px;
}

.initial-svg .text {
  fill: var(--white) !important;
  stroke: none;
  color: var(--white);
}

.user-details .url-svg,
.wait-for-mod-container .image .url-svg {
  border: 2px solid gray !important;
}

.top-active-talker {
  border: var(--video-player-border-width) solid #f13d3d;
  border-radius: var(--video-player-border-radius);
  border: double var(--video-player-border-width) transparent;
  background-image: linear-gradient(
      var(--video-muted-color),
      var(--video-muted-color)
    ),
    linear-gradient(
      180deg,
      #f79533,
      #f37055,
      #ef4e7b,
      #a166ab,
      #5073b8,
      #1098ad,
      #07b39b,
      #6fba82
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  overflow: hidden;
}

@keyframes bg-animation {
  0% {
    background-position: 0% 25%;
  }

  50% {
    background-position: 100% 76%;
  }

  100% {
    background-position: 0% 25%;
  }
}

.desktop .top-active-talker .user-video-muted-container,
.desktop .top-active-talker video {
  height: calc(100% - 4px);
  margin-top: 2px;
}

.desktop.canvas-started,
.desktop.share-started {
  .vcx_player .stream-name-and-icons {
    left: 2px;
    bottom: 2px;
    max-width: 85%;
  }

  .top-active-talker {
    .user-video-muted-container,
    video {
      margin-top: 0;
    }
  }
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.icon_mic_unmuted .st0,
.icon_mic_muted .st0 {
  fill: none;
  /* stroke: #ffffff; */
  stroke: var(--line-icon-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#main .confo-container {
  place-content: center;
  height: 100%;
}

header .navbar .navbar-nav li a.nav-link svg,
header .navbar .navbar-nav li a.nav-link svg :is(circle, path) {
  height: 20px;
  width: 20px;
  stroke: var(--line-icon-color) !important;
}

.mini-view-toggle {
  position: absolute;
  top: var(--layout-grid-padding);
  right: var(--layout-grid-padding);
  z-index: 98;
  cursor: pointer;
  background: var(--line-icons-bg-color);
  width: 25px;
  height: 25px;
  display: grid;
  place-content: center;
  padding: 5px;
  border-radius: 5px;
}

/* .mini-view-toggle svg > * {
  stroke: var(--white) !important;
} */

.pip-players-grid {
  --grid-template-cols-pip: 1fr;
  --grid-template-rows-pip: 114px;
  display: grid;
  grid-template-columns: var(--grid-template-cols-pip);
  grid-template-rows: var(--grid-template-rows-pip);
  grid-gap: 5px;
  padding: 5px;
}

.in-pip-message {
  position: absolute;
  z-index: 950;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.pip-header,
.pip-tools-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* background: #07b39b; */
  gap: 15px;
  font-size: 12px;
  padding: 5px;
}

.pip-header {
  height: 30px;

  button {
    background-color: #fff;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
    box-sizing: border-box;
    color: #0f1111;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    padding: 0 5px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;

    &:hover {
      background-color: #f7fafa;
    }

    &:focus {
      border-color: #008296;
      box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
      outline: 0;
    }

    &.pip-close-button {
      background-color: #e62828;
      border: 1px solid #e62828;
      color: #ffffff;
      box-shadow: rgba(225, 46, 33, 0.5) 0 2px 5px 0;
    }
  }
}

.pip-tools-container {
  color: rgb(255, 255, 255);
  justify-content: center;
  transition: opacity 0.2s ease-out;
}

.pip-icon {
  cursor: pointer;

  svg {
    width: 20px;
    height: 20px;
  }
}

.pip-player-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;

  &.active-talker {
    border: 1px solid red;
    border-radius: var(--video-player-border-radius);
  }
}

.pip-player-name {
  position: absolute;
  bottom: 2vmin;
  left: 2vmin;
  background: rgb(20 20 20 / 54%);
  padding: 2px 5px;
  height: 16px;
  line-height: 15px;
  border-radius: 3px;
  z-index: 10;
  color: var(--text-color);
  border-radius: var(--border-radius-icons);
  text-align: left;
  max-width: max-content;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  font-size: 12px;
  text-shadow: 0px 1px 1px rgb(33 33 33);
  width: 10ch;
  white-space: nowrap;
  text-transform: capitalize;
}

body .pip-tools-container svg > * {
  stroke: #fff !important;
  fill: #fff !important;
  stroke-width: 0px !important;
}

body .pip-tools-container .pip-signout-icon svg > * {
  stroke-width: 2px !important;
  fill: none !important;
}

.layout-manager-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgb(36, 35, 35);
  z-index: 990;

  .layout-manager-overlay-content {
    display: grid;
    place-content: center;
    color: #fff;
    height: 100%;
    width: 100%;

    .layout-manager-overlay-msgs {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
      font-size: 16px;

      .layout-manager-overlay-btn {
        display: block;
        text-align: center;
        background: var(--button-gradient);
        color: #fff;
        font-size: 16px;
        border-radius: 5px;
        padding: 5px 10px;
        max-width: 200px;
        border: none;
      }
    }
  }
}

.pip-player-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background: black;
  border-radius: var(--video-player-border-radius);
}

.pip-player-audio-state-container {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 15px;
  height: 15px;
  display: grid;
  place-content: center;
  background: black;
  border-radius: 5px;
  padding: 2px;
  z-index: 999;

  .pip-player-audio-state {
    width: 15px;
    height: 15px;
    display: grid;
    place-content: center;

    svg {
      width: 13px;
      height: 13px;
    }
  }
}

@media (display-mode: picture-in-picture) {
  body {
    background: #67686f;
  }
}

.mobile.share-started.portrait .player-container:nth-child(4),
.mobile.canvas-started.portrait .player-container:nth-child(4) {
  grid-column-start: 1 !important;
}

.mobile.landscape header .navigation-wrap .logo-txt-container {
  margin: 0 !important;
  padding: 0 35px !important;

  .navbar {
    margin: 0 !important;
    padding: 0 !important;
  }
}

.mobile.portrait .confo-container {
  padding: 0 8px !important;
}

.mobile.landscape .confo-container {
  padding: 0;
}

#controls-toolbar-mobile {
  box-shadow: var(--box-shadow-md);
  border-radius: 5px;
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
  header .navigation-wrap .navbar .text-logo {
    font-size: 10px;
    font-weight: bolder;
  }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  header .navigation-wrap .navbar .text-logo {
    font-size: 10px;
    font-weight: bolder;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .mobile-rec-btn {
    display: none !important;
  }

  #reaction_set {
    width: 30px;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
}

@media only screen and (max-width: 310px) and (orientation: portrait) {
  #controls-toolbar-mobile .controls_ul .control-item {
    padding: 2px;
  }
  .tab-wrap .tab-title,
  .tab-wrap .tab-title.active,
  .tab-wrap .tab-title:hover {
    padding: 5px 10px !important;
  }
}
.load-more-button {
  display: block;
  width: 100px;
  margin: 5px auto;
  padding: 5px 10px;
  background-color: #007bff;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.load-more-button:hover {
  background-color: #0056b3;
}

.load-more-button:active {
  background-color: #0056b3;
}

.load-more-button:focus {
  outline: none;
}

.newChat {
  position: absolute;
  right: 0;
  width: 74px;
  margin: 5px auto;
  padding: 5px 3px;
  background-color: #007bff;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  bottom: 35px;
  z-index: 1;
}

.newchatNo {
  margin-left: 2px;
}

/* switch role css start */
.popupMenu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 120px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  padding: 12px;
}

.popupMenu button {
  display: block;
  width: 100%;
  padding: 8px 0;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
}

.popupMenu button:hover {
  background-color: #ddd;
}

#popupButton {
  float: right;
  border: none;
  background: none;
  color: black;
  font-size: large;
}

.role-switch-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.role-switch-close {
  cursor: pointer;
}

.audience_switch_request {
  display: none;
}

.role-switch-info {
  width: 300px !important;
}

.user-name-role {
  font: 11px;
  color: black;
}

.postlogs {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#modRoleSwitch {
  max-width: 450px;
}

#role-switch-modal {
  max-width: 350px;
}

.highlight-handRaise {
  background: yellow;
}

#request_for_role_switch_audience {
  cursor: pointer;
}

.video-controls {
  ::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #d8dce27a;
  }

  ::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: grey;
  }
}

#postLogBtn {
  background: linear-gradient(
    90deg,
    rgb(156, 43, 111) 0%,
    rgb(244, 31, 63) 100%
  );
  border: none;
  padding: 8px 16px;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

#postLogBtn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

#noSoundNot {
  flex-direction: column;
  align-items: center;
}

.video-controls,
.video-controls-mobile {
  ::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #d8dce27a;
  }

  ::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: grey;
  }
}

#noSoundNot {
  flex-direction: column;
  align-items: center;
}

.message-hls {
  text-align: center;
}

.active-bg {
  background: var(--white);

  svg.active rect {
    stroke: var(--icon-color) !important;
  }
}

#mySidebar {
  display: none !important;
  width: 1px !important;
}

#slide-panel {
  margin: 0 !important;
  z-index: 7;
}

#pcr__participants_list {
  overflow-x: hidden;
  overflow-y: hidden;
}

#menu_more {
  position: absolute;
  bottom: 45px;
  right: 5%;
}

#menu_more ul {
  background: #fff;
  margin: 0;
  padding: 10px 8px;
  list-style: none;
  border: 1px solid #fff;
  border-radius: 10px 10px 0 0;
  color: #000;
  font-size: 13px;
}

#menu_more ul li {
  margin: 5px 0;
  cursor: pointer;
}

#menu_more svg {
  width: 20px;
  height: 20px;
}

.controls_ul svg .stroked,
#menu_more svg .stroked {
  stroke: var(--line-icon-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.controls_ul svg .filled,
#menu_more svg .filled {
  fill: var(--line-icon-color);
}

#controls-toolbar-mobile {
  z-index: 5;
  position: fixed;
  bottom: 5%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
}

.green-bg {
  background: #28a745;
  color: #fff !important;
  padding: 0 15px !important;
  font-size: 16px !important;
  border-radius: 5px;
}

header .navigation-wrap .navbar .text-logo {
  color: #fff;
  border-left: none;
}

.chat-messages {
  height: calc(100vh - 232px);
  height: calc(100dvh - 232px);
  height: calc(100svh - 232px);
}

@media only screen and (min-device-width: 480px) and (max-device-width: 812px) and (orientation: landscape) {
  #slide-panel {
    margin-left: 0;
    top: 0px;
    width: 0;
    position: fixed;
    height: 100%;
    bottom: 0;
    z-index: 9999;
  }

  #list_lobby,
  #list_participants,
  #setting-ul,
  #share-details {
    margin-left: 0;
    top: 0px;
    width: 100%;
    position: fixed;
    height: 100%;
    bottom: 0;
  }

  #list_chat {
    margin-left: 0;
    top: 0px;
    width: 100%;
    position: fixed;
    height: 100%;
    bottom: 0;
  }

  #slide-panel .submenu li.list-group-item .messages {
    height: calc(100vh - 300px) !important;
    height: calc(100dvh - 300px) !important;
    height: calc(100svh - 300px) !important;
  }
}

@media (orientation: portrait) {
  #slide-panel {
    margin-left: 0;
    top: 0px;
    width: 0;
    position: fixed;
    height: 100%;
    bottom: 0;
    z-index: 9999;
  }

  #list_lobby,
  #list_participants,
  #setting-ul,
  #share-details {
    margin-left: 0;
    top: 0px;
    width: 100%;
    position: fixed;
    height: 100%;
    bottom: 0;
  }

  #list_chat {
    margin-left: 0;
    top: 0px;
    width: 100%;
    position: fixed;
    height: 100%;
    bottom: 0;
  }

  #slide-panel .submenu li.list-group-item .messages {
    height: calc(100vh - 248px) !important;
    height: calc(100dvh - 248px) !important;
    height: calc(100svh - 248px) !important;
  }
}

svg.enxSVG * {
  fill: #000000 !important;
  stroke: #000000 !important;
}

input#changeEraserWidth {
  width: 40px !important;
}

input#changeDW {
  width: 40px !important;
}

#dialOutPopup.message-popup {
  width: 400px;
  background: #fff;
  color: #000;
  text-align: left;
  position: relative;
  padding-bottom: 40px;
}

#cobrowsing.message-popup {
  width: 400px;
  position: relative;
  padding-bottom: 40px;
}

#cobrowsing.message-popup .button-container {
  text-align: center;
}

#dialOutPopup.message-popup .custom-wrapper-dialout {
  margin-bottom: 10px;
}

#dialOutPopup.message-popup p.dial_status {
  margin: 0;
  position: absolute;
  bottom: 10px;
  right: 20px;
}

#dialOutPopup.message-popup .button-container {
  text-align: center;
}

/* Stats overlay and buttons */
.stats-overlay {
  --pos: calc(var(--border-radius-grid) + 1.66vmin);
  z-index: 996 !important;
  bottom: var(--border-radius-icons) !important;
  right: var(--pos) !important;
  background: rgb(14 15 16 / 80%) !important;
  border-radius: var(--border-radius-icons) !important;
  top: auto !important;
  color: #fff !important;
  width: fit-content;
  height: fit-content;
}

.stats-container {
  z-index: 997 !important;
  bottom: var(--border-radius-icons) !important;
  top: auto !important;
  right: var(--border-radius-icons) !important;
  background: var(--line-icons-bg-color) !important;
  border-radius: var(--border-radius-icons) !important;
}

.stats-left-partition,
.stats-right-partition {
  .stats-detail {
    strong {
      font-weight: 700 !important;
      color: #ffffff !important;
    }
  }
}

.player-maximized .stats-container,
.player-maximized .stats-overlay {
  display: none !important;
}

.stats-button svg rect {
  fill: var(--icon-color) !important;
  stroke: none !important;
}

.stats-overlay-inner {
  flex-direction: column !important;
  font-size: 12px !important;
  color: #fff !important;
}

/* Overlay Chat */
#overlay-chat {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  height: fit-content;
  background: rgb(0 0 0 / 65%);
  /* color: #fff; */
  /* font-size: 1.3rem; */
  text-align: center;
  z-index: 10000000000;
  border-radius: 5px;

  .overlay-chat-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 5px;
  }

  .over-sender-name {
    font-size: 1rem;
    color: #ffffff;
    padding: 0 5px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #555454;
  }

  .over-message {
    font-size: 1.3rem;
    color: var(--white);
    text-align: left;
    padding: 5px;
  }

  /* .over-time {
    font-size: 0.7rem;
    color: var(--player-bg);
  } */
}

#exit-meeting-popup {
  width: 300px;
}

.lobby-description {
  font-size: 13px;
}

#main .video-controls .controls_ul {
  overflow: unset;
  background: var(--toolbar-bg-color) !important;
}

.audio-icons-group {
  display: flex;
  flex-direction: row;
  position: relative;

  .selection-chevron {
    position: absolute;
    right: -7px;
    top: -2px;
    cursor: pointer;
    z-index: 9999999;

    &.dropdown-toggle::after,
    &.dropdown-toggle:after {
      display: none;
    }

    svg {
      background: var(--line-icons-bg-color);
      border-radius: 5px;
    }
  }
}

.mic-speakers-list-container {
  color: #000000;
  padding: 5px 10px !important;
  width: 200px;

  .devices-header {
    padding: 5px 0;
  }

  .list-group-item {
    --translatex: 0;
    font-size: 14px;
    background-color: #fff;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 0;

    &:hover {
      background: #eeeeee;
    }

    svg {
      width: 18px;
      height: 18px;
    }

    .icon {
      width: 20px;
      height: 20px;
      background: transparent;
      display: grid;
      place-content: center;
      opacity: 0;

      &.show {
        opacity: 1;
      }

      &.hide {
        opacity: 0;
      }
    }

    .text-scroll-area {
      position: relative;
      overflow: hidden;
      width: 180px;

      .text {
        display: inline-block;
        overflow: visible;
        white-space: nowrap;
        cursor: pointer;

        &:hover {
          animation: 2450ms linear 0s infinite alternate none running
            text-marquee;
        }
      }
    }
  }

  .speakers-list {
    margin-bottom: 5px;
  }
}

.mics-list ::-webkit-scrollbar {
  width: 0 !important;
  background: transparent !important;
}

@keyframes text-marquee {
  0%,
  20% {
    transform: translateX(0%);
    left: 0%;
  }

  80%,
  100% {
    transform: translateX(var(--translatex));
    left: 100%;
  }
}

#controls-toolbar-mobile .controls_ul {
  overflow: unset !important;
}

.layout_actions_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  background: #3d5059;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--box-shadow-lg);
}

.layout_actions_container .share-pin path {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.player-container.presentation:not(.maximized) {
  /* .name-screen-sharing {
    display: none;
  } */

  .stream-max-icon {
    display: none;
  }
}

.mobile.landscape.share-started.cobrowse-started .name-screen-sharing {
  /* display: none; */
  font-size: 12px;
  line-height: 12px;
  top: auto;
  bottom: var(--player-name-left-padding);
  left: var(--player-name-left-padding);
}

.chatbot #controls-toolbar-mobile,
.chatbot #controls-toolbar {
  &.toolbar-rounded {
    padding: 5px;
    border-radius: 3rem;
    background-color: var(--toolbar-bg-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    .controls_ul {
      gap: var(--toolbar-items-gap, "20px");
      border-radius: 0;
      background: none !important;

      .control-item {
        padding: 5px !important;
        width: 40px !important;
        height: 40px !important;
        display: grid;
        place-content: center !important;
        border-radius: 50% !important;
        background: var(--toolbar-icons-bg-color) !important;
        border-bottom: none !important;

        &:hover {
          border-bottom: none !important;
          background: #363a3d !important;
        }

        &:active {
          border-bottom: none !important;
          background: none !important;

          svg,
          line,
          path {
            stroke: #ffffff !important;
          }
        }

        svg {
          width: 30px !important;
          height: 30px !important;
        }

        svg#exit-icon,
        svg#icon_chat {
          margin: 5px 0 0 0;
        }
      }
    }

    .dropdown-menu {
      background-color: var(--toolbar-bg-color) !important;

      .devices-header svg {
        width: 18px !important;
        height: 18px !important;
      }

      .list-group-item {
        background-color: var(--toolbar-bg-color) !important;
        color: var(--white) !important;

        .icon svg {
          width: 18px !important;
          height: 18px !important;
        }
      }

      .devices-header {
        color: var(--white) !important;
      }
    }
  }
}

.chatbot #pip-toggle-btn,
.mobile .user-self-view.small {
  width: 1.4rem;
  height: 1.4rem;
  right: -10px;
  top: -10px;
}

#main .video-controls.toolbar-rounded .controls_ul .control-item:hover {
  border-bottom: none !important;
}

#speaker-selection .dropup .dropdown-toggle:after {
  display: none;
}

#pin-me-for-everyone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background: red;
  padding: 5px;
  border-radius: 50%;
  opacity: 0;
}

#user-self-view:hover #pin-me-for-everyone {
  opacity: 1;
}

.toolbar-rounded.toolbar-bg-removed {
  box-shadow: none !important;
  background-color: transparent !important;
}

#pin-me-for-everyone[data-state="pinned"] a svg {
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
  transform-origin: 50% 50%;
}

#pin-me-for-everyone[data-state="unpinned"] a svg {
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  transform-origin: 50% 50%;
}

.toggle-mirror-view {
  position: absolute;
  bottom: var(--tile-icons-gap);
  right: var(--tile-icons-gap);
  z-index: 100;
}

#user-self-view[data-state="mirrored"] video {
  transform: scaleX(-1);
  transition: 0.3s ease-in-out;
  transform-origin: 50% 50%;
}

#user-self-view[data-state="unmirrored"] video {
  transform: scaleX(1);
  transition: 0.3s ease-in-out;
  transform-origin: 50% 50%;
}

.adjust-brightness {
  position: absolute;
  width: 24px;
  aspect-ratio: 1 / 1;
  bottom: 5px;
  z-index: 999999999;
  left: 5px;
}

.img-video-area video {
  filter: brightness(var(--brightness-range)) contrast(var(--contrast-range));
}

.slide-range-container {
  padding: 5px;

  datalist {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 60%;

    option {
      padding: 0;
      font-size: 8px;
    }
  }
}

.slide-range-container
  input[id="brightness-range"]:disabled::-webkit-slider-runnable-track,
.slide-range-container
  input[id="contrast-range"]:disabled::-webkit-slider-runnable-track {
  background: linear-gradient(to right, gray, gray), gray;
  opacity: 1;
}

.slide-range-container
  input[id="brightness-range"]:disabled::-webkit-slider-thumb,
.slide-range-container
  input[id="contrast-range"]:disabled::-webkit-slider-thumb {
  background: gray;
}

.slide-range-container input[type="range"]:disabled {
  cursor: not-allowed;
}

.player-container.local-stream-player.local
  video.vcx_stream.default_vcx_stream {
  filter: brightness(var(--brightness-range)) contrast(var(--contrast-range));
}

.chatbot.toolbar-fixed #controls-toolbar,
.chatbot.toolbar-fixed #controls-toolbar-mobile {
  left: 50%;
  transform: translate(-50%, 0px);
}

@media (max-width: 576px) {
  .user-self-view.small {
    padding: 1px 0px 0 1px;
  }

  #user-self-view {
    width: 130px !important;
    height: 90px !important;
    min-height: 90px !important;
    max-height: 90px !important;

    #user-local-stream {
      width: 120px !important;
      height: 80px !important;
      min-height: 80px !important;

      .default_vcx_player {
        width: 120px !important;
        height: 80px !important;
        min-height: 80px !important;
        margin: 2px;

        video {
          width: 120px !important;
          height: 80px !important;
          min-height: 80px !important;
        }
      }
    }
  }

  #pm-list-container {
    width: 100% !important;
    .chat-messages {
      width: 100% !important;
      overflow-y: auto !important;
    }
  }
}

/* Small devices (larger phones) */
@media (min-width: 577px) and (max-width: 768px) {
}

.audio-only.mobile.landscape {
  .custom-tabber-section {
    width: 60%;
    height: 70vh;
  }
}
.audio-only.mobile.portrait {
  .custom-tabber-section {
    height: 50vh;
  }
  .tab-c .login-card {
    height: fit-content;
  }
  div#deviceSettingsTab {
    max-height: fit-content;
  }
}
.notification-permission-popup .close-icon-container {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 25px;
  height: 25px;

  .close-permission-icon {
    width: 25px;
    height: 25px;
    color: #ff0000;
    font-size: 1rem;
    font-weight: 200;
    .close-icon {
      margin: 0;
      width: 25px;
      height: 25px;
    }
  }
}
.dropdown-menu.show.to-the-toolbar {
  display: flex !important;
}

#main .video-controls .controls_ul .control-item .to-the-toolbar svg {
  stroke: none !important;
}
#main
  .video-controls
  .controls_ul
  .control-item:hover
  .to-the-toolbar
  svg
  path {
  stroke: none !important;
}

#main .video-controls .controls_ul .control-item .reaction-btn {
  background: none;
}

#layout_manager.mirrored
  .player-container:not(.presentation)
  [id^="player_"]
  video {
  transform: scaleX(-1);
}

svg#toggle-mirror-view-icon path,
svg#toggle-mirror-view-icon g {
  fill: var(--icon-color, #000000) !important;
}

.meeting-info-container {
  min-width: 200px;
  max-width: 300px;
  width: fit-content;
  color: #000000;
  font-size: 12px;

  .bg-alt {
    background-color: #f8f9fa;
  }
  .info-row {
    padding: 0.5rem;
    text-align: left;
  }
  .info-label {
    font-weight: 700;
  }

  .info-data {
    font-size: 12px;
  }

  .info-table td {
    border: 1px solid red;
    padding: 0.5rem;
  }
  .column-left,
  .column-right {
    & > * {
      border: 1px solid red;
    }

    flex: 1;
    /* align-items: flex-start; */
    text-align: left;
  }
  .column-left {
    & > * {
      border-right: none;
    }
  }
}
.popover-header {
  display: flex;
  justify-content: space-between;
}

#mi-close-popover {
  cursor: pointer;
}

#info-choose-lang-svg,
#info-no-participant-svg,
#info-toxicity-svg,
#info-bandwidth-svg,
#info-lecture-svg,
#info-noise-svg,
#info-audio-svg {
  stroke: #5eadfb !important;
  fill: none !important;
}

.login-card-left {
  padding: 10px !important;
  width: 50% !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.login-card-right {
  padding: 10px !important;
  width: 50% !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.custom-tabber-section .form-group select,
.custom-tabber-section .form-group .select-section p {
  background: #ffffff !important;
  height: 32px !important;
  margin-bottom: 5px !important;
}

.form-group .title-area {
  padding-bottom: 15px;
}

.virt-wrapper .button-area {
  margin-top: 0 !important;
}

@media (max-width: 480px) and (orientation: portrait) {
  .login-card-left,
  .login-card-right {
    width: 100% !important;
    .form-group {
      overflow: visible;
    }
  }
  #postLogBtn {
    font-size: 13px;
  }
}

@media (max-width: 992px) and (orientation: landscape) {
  .mobile.landscape {
    .tab-c.change-room-settings .login-card.virt-wrapper {
      flex-wrap: nowrap;
      overflow-y: scroll;
      overflow-x: hidden;
      flex-direction: row;
      height: 90%;
    }
  }
}

.mobile-web-view-minimized {
  #controls-toolbar-mobile .controls_ul {
    .control-item {
      display: none !important;
    }
  }
  .mobile-reaction-btn,
  .name-screen-sharing,
  .name-whiteBoard-sharing,
  .mobile-rec-btn,
  .mini-view-toggle,
  .line-icons-container {
    display: none !important;
  }
  #user-self-view {
    display: none !important;
  }
  #controls-toolbar-mobile .controls_ul .control-item {
    padding: 5px 5px 2px 5px;
  }
  #controls-toolbar-mobile .controls_ul .control-item svg {
    height: 20px;
    width: 25px;
  }
}

#icon_mic .st0 {
  fill: none;
  stroke: var(--line-icons-color, #202020);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.addon-video-area {
  border: 1px solid #dddddd;
  border-radius: 5px;
}

#addon-video-preview,
.addon-video-area {
  min-height: 20vh;
}

.mobile #addon-video-preview {
  min-height: 15vh;
  max-height: 25vh;
}

#start-addon-cam-btn,
.addon-message-popup-backdrop button {
  display: block;
  text-align: center;
  background: -webkit-linear-gradient(#c12747, #9c2b87);
  color: #fff;
  font-size: 15px;
  line-height: normal;
  border-radius: 10px;
  padding: 13px 30px;
}

#addonCameraSelectionModal .modal-header button {
  font-size: 1rem;
}

.addon-message-popup-backdrop {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 5px;
  width: fit-content;
  display: none;
  max-width: 600px;
  align-items: center;
  justify-content: space-around;
  height: fit-content;
  gap: 10px;
  border-radius: 5px;
  z-index: 9999999;
  min-width: 300px;
}

.addon-message-popup {
  gap: 5px;
}

.addon-message-popup-backdrop button {
  padding: 5px;
  width: 60px;
  height: 40px;
}

.addon-message-popup-text {
  font-size: 15px;
}

#show-video-from-other-camera span {
  color: var(--black);
  text-decoration: none;
}


