.videochat-global-container {
  position: relative;
  padding: 20px;
  width: 100%;
  height: 100%;
  min-height: 500px;
  font-family: "maneuropelight", Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #303C49;
  box-sizing: border-box;
  background: white;
}

.videochat-global-container.full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  z-index: 99999999999;
}

.videochat-global-container .expand {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  color: white;
  text-indent: -9999em;
  background: url('images/expand.svg') no-repeat 50%;
  background-size: 20px;
  border: none;
  z-index: 9999999;
  cursor: pointer;
  outline: 0;
}

.videochat-global-container .expand:hover {
  transform: scale(1.25);
}

.videochat-global-container .heading {
  margin: 0 0 20px;
  padding: 0;
  color: white;
  font-family: "maneuropebold_condensed", Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

.videochat-global-container .videochat {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
  min-height: 75vh;
}

@media(max-width: 1024px) {
  .videochat-global-container .videochat {
    flex-direction: column;
  }
}

/* two-view (one-on-one) WITHOUT SCREENSHARE */
.videochat-global-container .videochat.two-view:not(.includes-screenshare) .videochat-video-list {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: stretch;
  width: 100%;
  background: #383C45;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat.two-view:not(.includes-screenshare) .videochat-video-list {
    bottom: 100px;
    overflow: hidden;
  }
}

.videochat-global-container .videochat.two-view:not(.includes-screenshare) .videochat-video-list-item {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat.two-view:not(.includes-screenshare) .videochat-video-list-item {
    margin: 0;
    height: 100%;
    min-width: 100%;
    width: 100%;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.videochat-global-container .videochat-hello {
  width: 100%;
  color: #383C45;
  text-align: center;
  background: white;
}

.videochat-global-container .videochat-hello h2 {
  margin: 0 0 20px;
}

.videochat-global-container .videochat-hello button {
  padding: 10px 20px;
  background: radial-gradient(circle at 100% 50%,rgba(72,218,208,1),rgba(252,219,127,1));
	color: #3f454d;
	transition: all .2s ease-out;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: .1px;
  border: none;
  cursor: pointer;
  outline: 0;
}

.videochat-global-container .videochat-hello button:hover {
  color: #3f454d;
  background: #58d7be;
}

.videochat-global-container .videochat-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 75%;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-stage {
    width: 100%;
    height: 75%;
  }
}

.videochat-global-container .videochat-sidebar {
  display: flex;
  flex-direction: column;
  width: 25%;
  background: white;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-sidebar {
    flex-direction: row;
    width: 100%;
    height: 25%;
  }
}

@media (max-width: 640px) {
  .videochat-global-container .videochat-sidebar {
    flex-direction: column;
    width: 100%;
  }
}

.videochat-global-container .videochat-sidebar .videochat-vanity {
  position: relative;
  width: 100%;
  background: black;
  border-bottom: 4px solid #00A69D;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-sidebar .videochat-vanity {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .videochat-global-container .videochat-sidebar .videochat-vanity {
    width: 100%;
  }
}

.videochat-global-container .videochat-sidebar .videochat-vanity span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  letter-spacing: 1px;
  font-size: 14px;
  background: white;
  border-radius: 5px;
  z-index: 99;
}

.videochat-global-container .videochat-sidebar .videochat-vanity::before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 56.25%;
}

.videochat-global-container .videochat-sidebar .videochat-vanity::after { /* to clear float */
  content: "";
  display: table;
  clear: both;
}

.videochat-global-container .videochat-vanity.non-live {
  position: relative;
}

.videochat-global-container .videochat-global-container-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 48px;
  text-align: center;
  background: #202934;
  z-index: 9999;
}

.videochat-global-container .vanity-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  overflow: hidden;
}

.videochat-global-container .vanity-media-container .no-camera {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 0 60px;
  min-height: 300px;
  min-width: 100%;
}

@media (max-width: 1024px) {
  .videochat-global-container .vanity-media-container .no-camera {
    align-items: flex-start;
  }
}

.videochat-global-container .vanity-media-container .no-camera div {
  padding: 20px;
  color: #161D27;
  background: white;
  border: 4px;
}

.videochat-global-container .vanity-media-container .video.mute {
  padding-bottom: 60px;
  width: 100%;
  min-height: 200px;
  background: #161D27 url('images/camera-off.svg') no-repeat 50%;
  background-size: 80px;
}

.videochat-global-container .vanity-media-container .video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.videochat-global-container .vanity-media-container video {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.videochat-global-container .vanity-media-container .video-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
}

.videochat-global-container .vanity-media-container .video-meta strong {
  margin: 0 0 10px;
}

.videochat-global-container .vanity-media-container .video-meta .button {
  margin: 0 0 0 5px;
  width: 40px;
  height: 40px;
  color: white;
  text-indent: -9999em;
  background: #E40045;
  border: none;
  border-radius: 99999em;
  cursor: pointer;
  outline: 0;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-camera {
  background: url('images/camera-off.svg') no-repeat 50%;
  background-size: 100%;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-camera.active {
  background: url('images/camera.svg') no-repeat 50%;
  background-size: 100%;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-microphone {
  background: url('images/microphone-off.svg') no-repeat 50%;
  background-size: 100%;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-microphone.active {
  background: url('images/microphone.svg') no-repeat 50%;
  background-size: 100%;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-hand {
  background: #00A69D url('images/hand-off.png') no-repeat 50%;
  background-size: 50%;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-hand.active {
  background: #FFF url('images/hand.png') no-repeat 50%;
  background-size: 50%;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-screensharing {
  background: url('images/screensharing.svg') no-repeat 50%;
  background-size: 100%;
}

.videochat-global-container .vanity-media-container .video-meta .button.button-screensharing.active {
  background: url('images/screensharing.svg') no-repeat 50%;
  background-size: 100%;
}

.videochat-global-container .vanity-media-container .video-meta .button:hover {
  transform: scale(1.1);
}

.videochat-global-container .videochat-list {
  position: relative;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-list {
    display: flex;
    flex-direction: row;
    bottom: 25%;
    position: absolute;
    height: 100px;
    width: 100%;
    overflow: scroll;
  }
}

.videochat-global-container .videochat-list .videochat-list-inner {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-list .videochat-list-inner {
    width: 100%;
    min-width: 100%;
    overflow: scroll;
  }
}

.videochat-global-container .videochat-list .no-participants {
  padding: 20px 10px;
  color: #3F454D;
  text-align: center;
}

.videochat-global-container .videochat-list ul {
  position: relative;
  margin: 0;
  padding: 10px;
  list-style: none;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-list .videochat-list-inner > ul {
    padding: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    flex-direction: row;
  }
}

.videochat-global-container .videochat-list li {
  position: relative;
  margin: 0 0 10px;
  padding: 15px 15px;
  color: #3F454D;
  font-size: 16px;
  background: #F6F6F6;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-list li {
    margin: 0 10px 0 0;
    min-width: 60%;
  }
}

.videochat-global-container .videochat-list li.hand-up {
  color: #F6F6F6;
  background: #00A69D;
}

.videochat-global-container .videochat-list li.hand-up {
  color: #F6F6F6;
  background: #00A69D;
}

.videochat-global-container .videochat-list li:hover {
  color: white;
  background: #3F454D;
}

.videochat-global-container .videochat-list li:hover a {
  color: #3F454D;
  background: white;
}

.videochat-global-container .videochat-list li.live:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 3px;
  content:  '';
  background: #3F454D;
}

.videochat-global-container .videochat-list li.mute:before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 100%;
  content:  '';
  background: url('images/microphone-off.svg') no-repeat 50%;
  background-size: 50%;
}

.videochat-global-container .videochat-list li:hover.live:before {
  background: white;
}

.videochat-global-container .videochat-list li ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.videochat-global-container .videochat-list li ul li {
  margin: 0 5px 0 0;
  padding: 5px 0 0;
  background: transparent;
}

.videochat-global-container .videochat-list li ul li a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 12px;
  background: #3F454D;
  overflow: hidden;
  border-radius: 4px;
  transition: 0.25s all;
}

.videochat-global-container .videochat-list li ul li a:hover {
  transform: scale(1.1);
}

.videochat-global-container #local-screenshare-container {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #000;
}

.videochat-global-container #local-screenshare-container.active {
  display: flex;
  height: calc(100% - 150px);
}
@media(max-width: 1024px) {
  .videochat-global-container #local-screenshare-container.active {
    height: calc(100% - 100px);
  }
}

.videochat-global-container #local-screenshare-container video {
  max-width: 100%;
  max-height: 100%;
}

.videochat-global-container .includes-screenshare .videochat-video-list {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 150px;
}
.videochat-global-container .videochat-stage:not(.includes-screenshare) .videochat-video-list {
  height: auto;
}

.videochat-global-container .videochat-video-list-item {
  position: relative;
  /* flex: 1 0 auto;
  margin: 0 1px 0 0; */
  /* max-width: 300px; */
  width: 100%;
  background: #000 url('images/camera-off.svg') no-repeat 50%;
  background-size: 20%;
}

.videochat-global-container .videochat-stage:not(.includes-screenshare) .videochat-video-list-item {
  width: 50%;
}
@media(max-width: 1024px) {
  .videochat-global-container .includes-screenshare .videochat-video-list-item {
    display: none;
  }
}

.videochat-global-container .videochat-video-list-item::before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 56.25%;
}

.videochat-global-container .videochat-video-list-item::after { /* to clear float */
  content: "";
  display: table;
  clear: both;
}

.videochat-global-container .videochat-video-list-item-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.videochat-global-container .videochat-video-list-item video {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.videochat-global-container .videochat-video-list-item strong {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .videochat-global-container .videochat-video-list-item strong {
    bottom: auto;
    top: 0;
  }
}

.videochat-global-container .videochat-video-list-item.mute strong:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  content: '';
  background: url('images/microphone-off.svg') no-repeat 50%;
  background-size: 50%;
}

.videochat-global-container .error-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #202934;
  z-index: 9999999999999;
}

.videochat-global-container .error-container-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
  text-align: center;
  color: white;
}

.videochat-global-container .error-container h1 {
  margin: 0 5px 0;
  padding: 0;
  font-size: 14px;
}

.videochat-global-container .error-container p {
  margin: 0 5px 0;
  padding: 0;
  font-size: 14px;
}

.videochat-global-container .error-container > button {
  position: absolute;
  right: 10px;
  margin: 0 5px;
  padding: 5px 10px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: 0;
  border-radius: 4px;
}

.videochat-global-container .button {
  margin: 0 5px;
  padding: 5px 10px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  background: #E40045;
  border: none;
  cursor: pointer;
  outline: 0;
  border-radius: 4px;
}@font-face {
  font-family: "Maison Neue";
  src: url("/platform-content/themes/generic-2021/fonts/maisonneuebold-webfont.woff2") format("woff2"), url("/platform-content/themes/generic-2021/fonts/maisonneuebold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Maison Neue";
  src: url("/platform-content/themes/generic-2021/fonts/maisonneuebook-webfont.woff2") format("woff2"), url("/platform-content/themes/generic-2021/fonts/maisonneuebook-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.tns-nav {
  text-align: center;
}
.tns-nav button {
  margin: 0 5px;
  background: #ccc;
  border: 0;
  width: 24px;
  height: 2px;
}
.tns-nav button.tns-nav-active {
  background: #2A96CE;
}