@charset "UTF-8";

html {
  height: 100%;
}

body {
  background-color: rgb(54, 57, 62);
  min-height: 100%;
}

video {
  display: block;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.profile-pic {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-left: 10px;
  background: transparent;
}

.asset-preview-container {
  background: #ccc;
  width: 465px;
  height: 261px;
  position: relative;
}

#update-asset-preview-talent,
#asset-preview-talent {
  position: absolute;
  background: #666;
  width: 144px;
  height: 73px;
  bottom: 0px;
  right: 0px;
}

#update-asset-preview-talent {
  overflow: auto;
  height: 50%;
  width: 50%;
}

.broadcaster {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.broadcaster-monitor {
  height: 100%;
  width: 100%;
}

.broadcaster-viewer {
  width: min(calc(100vh * 0.2), calc(100vw * 0.1125));
  height: min(calc(100vh * 0.2), calc(100vw * 0.1125));
  margin: min(calc(100vh * 0.02), calc(100vw * 0.0117));
}

.live-body {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  max-width: 70vw;
  position: relative;
  height: min(100vh, calc(100vw * 0.5625));
  width: min(100vw, calc(100vh * 1.7778));
  background-color: transparent;
  border: 0;
}

.video-element {
  max-width: 70vw;
  height: min(100vh, calc(100vw * 0.5625));
  width: min(100vw, calc(100vh * 1.7778));
  background-color: rgb(54, 57, 62);
  border: 0;
  margin: auto;
}

.video-sync {
  z-index: 1;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

/*#broadcaster1container {*/
/*  z-index: 2; */
/*  position:absolute; */
/*  bottom: 0px; */
/*  right:  min(calc(100vh * 0.214), calc(100vw * 0.12));*/
/*}*/

/*#broadcaster2container {*/
/*  z-index: 2; */
/*  position:absolute; */
/*  bottom: 0px; */
/*  right: 0px;*/
/*}*/

.playerInfo {
  overflow: hidden;
  background-image: none;
  border-left: 1px solid #000;
  max-width: 445px;
  display: flex;
  flex-direction: column;
}

.syncing {
  text-transform: uppercase;
  font-weight: bold;
  color: yellow;
  animation: 1s linear infinite condemned_blink_effect;
  display: none;
}

.synced {
  color: green;
  display: none;
}

.blink {
  animation: 1s linear infinite condemned_blink_effect;
}

.polling {
  color: red;
  animation: 1s linear infinite condemned_blink_effect;
  display: none;
  padding: 4px 14px 4px 14px;
}

.connecting {
  color: orange;
  display: none;
  padding: 4px 14px 4px 14px;
}

.connected {
  color: green;
  display: none;
  padding: 4px 14px 4px 14px;
}

.idle {
  padding: 4px 14px 4px 14px;
}

.viewers {
  text-transform: uppercase;
  font-weight: bold;
  color: red;
}

.starting {
  text-transform: uppercase;
  font-weight: bold;
  color: orange;
  animation: 1s linear infinite condemned_blink_effect;
  display: none;
}

.error {
  text-transform: uppercase;
  color: red;
  display: none;
  font-weight: bold;
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

.form-label {
  margin-bottom: 0;
  font-size: 13px;
}

.audioControls,
.mediaControls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.broadcastControls {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 18vw;
  min-width: 300px;
  padding: 12px;
  border-left: 1px solid #000;
}

.broadcastControls h6 {
  margin-left: 10px !important;
  margin-top: 5px;
  margin-bottom: 0;
}

.broadcastControls ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 10px;
}

.broadcastControls li {
  padding: 10px;
  padding-top: 0px;
}

.viewer-video-poster {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.video-wrapper {
  position: relative;
  width: 33%;
  margin: 0 8px;
  display: flex;
  align-items: center;
  height: 100%;
}

.gray {
  filter: grayscale();
}

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

.error-body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.error-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-message {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: black;
  font-family: sans-serif;
}

.error-message h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.error-message p {
  font-size: 18px;
  margin-bottom: 20px;
}

.error-message a {
  color: #fff;
  background-color: #007bff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.error-message a:hover {
  background-color: #0056b3;
}

.retry-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #7289da;
  color: white;
  border: none;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

.retry-button:hover {
  background-color: #445282;
}

.welcome-div {
  display: absolute;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 70px;
  text-align: center;
}

.welcome-message {
  border-radius: 10px;
  color: #ffff;
  background-color: #212529;
  display: absolute;
  z-index: 6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 70px;
  text-align: center;
}

#overlayControls {
  width: 100%;
}

#overlayControls .form-label,
#overlayControls h6 {
  color: #ffffff;
}

.broadcastControls .form-label,
.broadcastControls h6 {
  color: #ffffff;
}

.audioControls .form-label,
.audioControls b {
  color: #ffffff;
}

#discordContainer {
  width: 30vw;
  height: 70vh;
  position: relative;
  vertical-align: top;
}

#discordContainer widgetbot {
  position: absolute;
  top: 0;
}

.spinner-border-overlay-add {
  margin: 200px 0;
}

#mainTable {
  width: 100vw;
}

.discordHidden #discordContainer {
  width: 0;
  display: none;
}

.discordHidden .video-element {
  max-width: none;
}

.discordHidden .video-container {
  max-width: none;
}

.broadcaster-viewer {
  width: min(calc(100vh * 0.3), calc(100vw * 0.15));
  height: min(calc(100vh * 0.3), calc(100vw * 0.15));
  margin: 0;
}

.discordHidden .broadcaster-viewer {
  width: 10vw;
  height: 10vw;
  margin: 0;
}

.discordHidden .broadcaster1containerWeb {
  right: 10vw;
  left: auto;
}

.broadcaster1containerWeb {
  z-index: 2;
  position: fixed;
  bottom: 0px;
  left: 70vw;
}

.broadcaster2containerWeb {
  z-index: 2;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.broadcaster2containerMobile {
  left: calc((80vh * 1.778 / 2) + 10vh);
}

.broadcaster2containerMobile video {
  width: 20vh;
  height: 20vh;
}

.discordHidden .broadcaster2containerMobile {
  right: 0;
  left: auto;
}

.discordHidden .broadcaster2containerMobile video {
  width: calc(80vh / 2);
  height: calc(80vh / 2);
}

.broadcaster1containerMobile {
  bottom: 0px;
  left: calc((80vh * 1.778 / 2) - 10vh);
}

.broadcaster1containerMobile video {
  width: 20vh;
  height: 20vh;
}

.discordHidden .broadcaster1containerMobile {
  top: 0px;
  right: 0;
  left: auto;
}

.discordHidden .broadcaster1containerMobile video {
  width: calc(80vh / 2);
  height: calc(80vh / 2);
}

.time-display {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px;
  text-align: center;
}

.color-white {
  color: white;
}

.color-white:hover,
.color-white:focus {
  color: white;
}

.assetControlToggle {
  cursor: pointer;
}
#filterAssetsParent {
  position: relative;
}

#filterAssets {
  height: 56px;
  width: 80%;
  padding-left: 50px;
  max-width: 80%;
}

.filterAssetsIcon {
  position: absolute;
  top: 28px;
  left: 18px;
  color: gray;
}

.copy-navigation-btn {
  color: #b69df8 !important;
}

.main-logo {
  width: 108px;
}

.main-logo-img {
  height: 100%;
  width: 100%;
  padding-bottom: 7px;
}

.broadcaster-right-block {
  display: flex;
  justify-content: space-between;
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.accordion-button,
.accordion-body {
  background: transparent !important;
  padding-right: 0;
  padding-left: 0;
}
.accordion-body-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
}
.accordion-borderless .accordion-item .accordion-button:not(.collapsed) {
  color: var(--mdb-yellow);
}

.producer-toggle-checkbox {
  display: none;
}

.producer-toggle {
  margin-top: 4px;
  width: 52px;
  height: 32px;
  background-color: #ccc;
  border-radius: 8vw;
  position: relative;
  cursor: pointer;
  border: 3px solid gray;
}

.producer-toggle__circle {
  width: 16px;
  height: 16px;
  background-color: #79747e;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  transition: transform 1s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.producer-toggle-checkbox:checked + .producer-toggle .producer-toggle__circle {
  transform: translateX(13px);
  width: 24px;
  height: 24px;
  background-color: #fff;
  top: 1px;
}

.producer-toggle {
  transition: background-color 1s cubic-bezier(0.25, 1.5, 0.5, 1);
}

.producer-toggle-checkbox:checked + .producer-toggle {
  background-color: var(--mdb-yellow);
  border: 3px solid var(--mdb-yellow);
}

.carousel-item {
  display: flex !important;
}

.broadcaster-left-block {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.broadcaster-action-btn {
  color: var(--mdb-danger);
  padding: 9px 22px;
  border-radius: 30px;
  min-width: 75px;
  background: #36343b;
  border: none;
  font-size: 14px;
  letter-spacing: 0.7px;
}

.broadcaster-action-btn:hover {
  box-shadow: 0px 1px 4px 0px gray;
}

.broadcaster-action-btn-icon {
  padding: 9px 10px;
  background: var(--mdb-secondary);
  color: var(--mdb-yellow);
}

.icon-green, .icon-green:active, .icon-green:focus, .icon-green:hover, .icon-green:focus-visible {
  background-color: var(--mdb-success);
}

.tooltip-btn {
  z-index: 1;
  position: absolute;
  top: 0px;
  right: 0px;
}

.tooltip-name {
  z-index: 1;
  position: absolute;
  top: 0px;
  left: 3px;
}

.tooltip-icon {
  z-index: 1;
  position: absolute;
  bottom: 15px;
  right: 0px;
}

.tooltip-dot {
  z-index: 1;
  position: absolute;
  bottom: 0px;
  left: -12px;
}

.panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.discord-chat {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.my-widgetbot {
  height: 100%;
  width: 100%;
}

.mini-modal {
  display: none;
  height: 270px;
  width: 300px;
  position: absolute;
  bottom: -270px;
  right: 0;
  z-index: 100;
  box-shadow: 0px 2px 1px 0px #141414;
}

.cursor-pointer {
  cursor: pointer;
}


.selected-option {
  background-color: #ffffff !important;
  color: #333 !important;
}

.selected-question-text {
  color: #000000;
}

@media (max-width: 768px) {
  .hidden-on-mobile {
    display: none!important;
  }
}


.welcome-full-screen-background{
  width: 100vw;
  height: 100vh;
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 999999999999999999999999;
}

.video-parent{
  flex: 60%;
}

.broadcasters-parent{
  flex: 40%;
}

.first-tooltips{
  bottom: 60px;
}
#asset-preview-talent-survey {
  position: absolute;
  /* width: 16% !important; */
  height: 6% !important;
  left: 50%;
  text-align: center;
  bottom: 56px;
  transform: translate(-50%, -50%);
}