/*!
 * @license
 * Accretive Technology Group, Inc.
 * ============================
 *
 * For use only by Accretive Technology Group, Inc., its employees and contractors.
 *
 * All rights reserved.
 *
 */
.pc-debugpanel__dropdownContainer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
}

.pc-textstyles__headertext {
  font-family: Roboto-Medium, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  text-align: left;
  color: var(--primary-font);
}

.pc-textstyles__text {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -0.1px;
  text-align: left;
  color: var(--primary-font);
}

.pc-textstyles__text30 {
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
}

.pc-textstyles__text28 {
  font-size: 28px;
}

.pc-textstyles__text24 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: normal;
}

.pc-textstyles__text20 {
  font-size: 20px;
}

.pc-textstyles__text18 {
  font-size: 18px;
  font-weight: normal;
}

.pc-textstyles__text16 {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: normal;
}

.pc-textstyles__text14 {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: normal;
}

.pc-textstyles__text12 {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: normal;
}

.pc-textstyles__monotext {
  font-family: monospace;
}

.pc-component__base-component {
  font-family: Roboto-Regular, Helvetica, sans-serif;
  text-transform: capitalize;
  background-color: var(--container-bg);
  color: var(--container-text);
  margin: 0;
}

.pc-component__header {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pc-component__spinner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 32px 10px 10px;
  cursor: default !important;
}

input[type='text'],
textarea {
  text-indent: 5px;
}

.pc-encoderpath__snackbar {
  background-color: white;
  color: var(--primary-font);
  z-index: 2100 !important; /* must cover the dialog modal */
}

.pc-encoderpath__snackbar > div {
  background-color: white;
  color: #1c1d1d;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.pc-encoderpath__entry {
  margin-bottom: 24px;
}

.pc-encoderpath__entry p {
  margin-bottom: 8px;
}

.pc-encoderpath__entry svg {
  cursor: pointer;
}

.pc-encoderpath__input {
  width: 510px;
  height: 36px;
  border: 0;
  color: var(--dialog-text);
  background-color: var(--textinput-bg);
  margin-right: 16px;
}

.pc-encoderpath__authFooterMsg {
  animation-duration: 3s;
  animation-name: pc-encoderpath__fadeAuthTextIn;
  width: 544px;
  color: var(--dialog-text);
}

@keyframes pc-encoderpath__fadeStreamContentIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pc-encoderpath__fadeAuthTextOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.pc-encoderpath__contentContainer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 100%;
}

.pc-encoderpath__textContent {
  flex-grow: 2;
}

.pc-encoderpath__inputContent {
  opacity: 0;
  color: var(--dialog-text);
  margin-bottom: 24px;
}

.pc-encoderpath__fadeInputContentIn {
  animation-duration: 1s;
  animation-delay: 1s;
  animation-name: pc-encoderpath__fadeStreamContentIn;
  animation-fill-mode: forwards;
}

.pc-encoderpath__waitContent {
  color: var(--dialog-text);
  opacity: 0;
}

.pc-encoderpath__fadeWaitContentIn {
  animation-duration: 1s;
  animation-delay: 1s;
  animation-name: pc-encoderpath__fadeStreamContentIn;
  animation-fill-mode: forwards;
}

.pc-encoderpath__whipContent {
}

.pc-encoderpath__fadeWhipContentIn {
  align-self: center;
}

.pc-encoderpath__authContent {
  color: var(--dialog-text);
  flex-grow: 2;
}

.pc-encoderpath__fadeAuthContentOut {
  animation-duration: 1s;
  animation-name: pc-encoderpath__fadeAuthTextOut;
  animation-fill-mode: forwards;
  position: absolute;
}

.pc-encoderpath__spinner {
}

.pc-buttons__buttonLabel {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  line-height: 24px;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  color: #f0f0f0;
  text-transform: none;
}

.pc-buttons__buttonContent {
  font-weight: 300;
  line-height: 18px;
  color: #f0f0f0;
  text-transform: capitalize;

  /* need these next two properties until icf- handles labels better */
  width: 100%;
  text-align: center;
}

.pc-dialogmodal__dialogButton {
  border: 0;
  background: var(--dialog-default-button-inactive);
  border-radius: var(--button-border-radius);
  outline: none;
  min-width: 140px;
  margin-left: 12px; /* space btwn buttons */
  padding: 8px 16px; /* edges of buttons, to their content */
}

.pc-dialogmodal__dialogButton:hover {
  background: var(--dialog-default-button-inactive-hover);
}

.pc-dialogmodal__dialogButton.pc-dialogmodal__active {
  background: var(--gradient-blue);
}

.pc-dialogmodal__dialogButton.pc-dialogmodal__active:hover {
  background: var(--gradient-blue-hover);
}

.pc-dialogmodal__buttonLabel {
  color: var(--dialog-button-text-inactive);
}

.pc-dialogmodal__dialogButton.pc-dialogmodal__active .pc-dialogmodal__buttonLabel {
  color: var(--dialog-button-text-active);
}

.pc-dialogmodal__dialogButton.pc-dialogmodal__inactive .pc-dialogmodal__buttonLabel {
  color: var(--dialog-button-text-inactive);
}

.pc-dialogmodal__dialogButton:disabled {
  background: var(--dialog-button-disabled-bg);
}

.pc-dialogmodal__dialogButton:disabled .pc-dialogmodal__buttonLabel {
  color: var(--dialog-button-disabled);
}

.pc-goldshowalertmodal__title {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
}

.pc-goldshowalertmodal__contentContainer {
  display: flex;
  flex-flow: column;
  align-content: stretch;
  height: 100%;
  width: 100%;
  overflow-y: hidden;
}

.pc-goldshowalertmodal__descriptionMsg {
  width: 552px;
  color: var(--dialog-text);
  margin-bottom: 55px;
}

.pc-goldshowalertmodal__footer {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}

.pc-goldshowalertmodal__countdownContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-goldshowalertmodal__buttonContainer {
  flex-grow: 2;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
}

.pc-goldshowalertmodal__countdownText {
  color: var(--accent-tomato);
}

.pc-goldshowalertmodal__alertIcon {
  width: 24px;
  height: 24px;
  fill: var(--dialog-text);
  text-align: center;
  cursor: default;
  display: inline;
  margin-right: 4px;
}

.pc-breakpanel__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--weakest-primary);
  background-size: cover;
  border-radius: 5px;
}

.pc-breakpanel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-breakpanel__heading {
  text-align: center;
  color: white;
  padding-bottom: 8px;
}

.pc-breakpanel__subheading {
  text-align: center;
  text-transform: none;
  color: white;
}

.pc-breakpanel__timerContainer {
  margin-top: 12px;
  width: 125px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-breakpanel__timerText {
  color: #000;
}

.pc-rectangulartimedisplay__countdownContainer {
  margin-top: 12px;
  width: 288px;
  height: 56px;
  border-radius: 6px;
  background-color: var(--timer-background);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-rectangulartimedisplay__countdownTextContainer {
  display: flex;
  flex-direction: row nowrap;
  justify-content: center;
}

.pc-rectangulartimedisplay__countdownText {
  color: var(--primary-font);
}

.pc-rectangulartimedisplay__countdownTextAlert {
  color: var(--accent-tomato) !important;
}

.pc-rectangulartimedisplay__countdownTextStatic {
  margin-left: 3px;
  margin-right: 3px;
}

.pc-countdownpanel__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--weakest-primary);
  background-size: cover;
  border-radius: 5px;
}

.pc-countdownpanel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-countdownpanel__heading {
  text-align: center;
  color: white;
  padding-bottom: 8px;
}

.pc-countdownpanel__subheading {
  text-align: center;
  text-transform: none;
  color: white;
}

.pc-countdownpanel__timerContainer {
  margin: 12px 0;
  width: 125px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-countdownpanel__timerText {
  color: black;
}

.pc-countdownpanel__returnLink {
  text-align: center;
  color: var(--link-color);
  cursor: pointer;
  font-weight: 500;
}

.pc-countdownpanel__returnLink:hover {
  color: var(--link-color-hover);
}

.pc-countdownpanel__returnLink svg {
  fill: var(--link-color);
  margin-top: -2px;
}

.pc-countdownpanel__returnLink:hover svg {
  fill: var(--link-color-hover);
}

.pc-tooltip__tooltip {
  background: var(--primary);
  color: var(--weakest-primary);
  font-size: 10px;
  z-index: 5; /* in front of adjustable scrolls, userlist */
}

.pc-recorder__recorderButton {
  display: flex;
  z-index: 2;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 123px;
  height: 40px;
  padding: 0 10px;
  margin-left: 5px;
  border: none;
  border-radius: 26px;
  background: var(--recording-button-background);
  cursor: pointer;
  outline: none;
}

.pc-recorder__recorderButtonDisabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pc-recorder__recorderButton:hover {
  background: var(--recording-button-hover);
}

.pc-recorder__recorderButton:active {
  background: var(--recording-button-active);
}

.pc-recorder__icon {
  position: relative;
  top: 1px;
}

.pc-recorder__circle {
  height: 15px;
  width: 15px;
  background-color: var(--recording-circle);
  border-radius: 50%;
  display: inline-block;
}

.pc-recorder__circleGlow {
  box-shadow: 0 0 6px 2px rgba(255, 0, 0, 0.5);
  background-color: var(--recording-circle-glow);
}

.pc-recorder__timerText {
  text-align: right;
  color: var(--recording-timer);
}

.pc-recorder__tooltip {
  word-wrap: break-word;
  max-width: 123px;
}

.pc-streamingcontrolpanel__container {
  display: flex;
  flex-direction: row;
}

.pc-streamingcontrolpanel__button {
  height: 40px;
  border-radius: 26px;
  font-weight: normal;
  z-index: 2; /* in front of resize handles */
  flex-grow: 1;
  border: 0; /* cancel icf-react's border */
}

.pc-streamingcontrolpanel__streamingButtonContent {
  font-size: 20px !important; /* @TODO remove important with icf v4 */
  color: var(--show-button-text);
  font-weight: normal;
}

.pc-streamingcontrolpanel__startShow,
.pc-streamingcontrolpanel__stopShow {
  background: var(--show-button-background);
}

.pc-streamingcontrolpanel__startShow:active,
.pc-streamingcontrolpanel__stopShow:active {
  background: var(--show-button-background-active);
}

.pc-streamingcontrolpanel__startShow:hover,
.pc-streamingcontrolpanel__stopShow:hover {
  background: var(--show-button-background-hover);
}

.pc-streamingcontrolpanel__startShow:hover label {
  color: var(--show-button-start-hover);
}

.pc-streamingcontrolpanel__stopShow:hover label {
  color: var(--show-button-stop-hover);
}

.pc-streamingcontrolpanel__disabled {
  background: var(--gradient-green-hover);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.pc-breakbutton__breakbutton {
  flex-grow: 0;
  width: 40px;
  margin-right: 6px;
  padding: 0;
}

.pc-breakbutton__breakbutton svg,
.pc-breakbutton__breakbutton:hover svg {
  fill: var(--show-button-text);
  width: 28px;
  height: 28px;
}

.pc-breakbutton__breakbutton:hover {
  background: var(--show-button-background-hover);
}

.pc-breakbutton__tooltip {
}

.pc-layout__flex-column--nowrap,
.pc-layout__flex-column--wrap,
.pc-layout__flex-row--nowrap,
.pc-layout__flex-row--wrap {
  display: flex;
}

.pc-layout__flex-column--nowrap,
.pc-layout__flex-column--wrap {
  flex-direction: column;
}

.pc-layout__flex-row--nowrap,
.pc-layout__flex-row--wrap {
  flex-direction: row;
}

.pc-layout__flex-column--nowrap,
.pc-layout__flex-row-reverse--nowrap,
.pc-layout__flex-column-reverse--nowrap,
.pc-layout__flex-row--nowrap {
  flex-wrap: nowrap;
}

.pc-layout__flex-column--wrap,
.pc-layout__flex-column-reverse--wrap,
.pc-layout__flex-row-reverse--wrap,
.pc-layout__flex-row--wrap {
  flex-wrap: wrap;
}

.pc-layout__flex-column-reverse--nowrap,
.pc-layout__flex-column-reverse--wrap {
  flex-direction: column-reverse;
}

.pc-layout__flex-row-reverse--nowrap,
.pc-layout__flex-row-reverse--wrap {
  flex-direction: row-reverse;
}

.pc-inputs__textarea {
  background-color: var(--textinput-bg);
}

.pc-inputs__textarea input,
.pc-inputs__textarea textarea {
  color: var(--primary-font);
  font-size: 14px;
  text-indent: 0;
  overflow-y: hidden;
  padding: 0 10px;
  resize: none;
}

/* styled-components located /src/client/lib/themes/inputs.js */
.pc-inputs__inputHighlight {
  border: 1px solid;
  border-color: var(--accent-windows-blue);
  box-sizing: border-box;
}

.pc-inputs__inputErrorHighlight {
  border: 1px solid;
  border-color: #f00;
  box-sizing: initial;
}

.pc-inputs__checkboxContainer svg {
  align-self: flex-start;
  stroke: var(--strong-primary); /* this is generally the modal bg color */
}

.pc-inputs__checkboxContainer label {
  margin: 5px 0;
  white-space: pre-line; /* line breaks for consent modal */
}

.pc-inputs__checkboxContainer label > span {
  color: var(--dialog-text);
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.1px;
  line-height: 18px;
}

.pc-inputs__dropdown {
  width: 250px;
  background-color: var(--dropdown-bg);
}

.pc-inputs__dropdown > label > div {
  color: var(--weaker-primary);
}

.pc-inputs__dropdown > label > div > div > svg {
  fill: var(--weak-primary);
}

.pc-chat__displayNormal {
  display: flex;
  flex-direction: column;
}

.pc-chat__displayInverted {
  display: flex;
  flex-direction: column-reverse;
}

/**
 * System and Gold Messages
 */
.pc-chat__savedResponseInput {
  background-color: var(--textinput-bg);
  margin-bottom: 0;
  padding: 1px;
  width: 100%;
}

.pc-chat__savedResponseInputHighlight {
}

.pc-chat__savedResponseInput input {
  background-color: var(--textinput-bg);
  color: var(--weakest-primary);
}

.pc-chat__autoScrollButton {
  padding: 12px 24px 11px;
  opacity: 0.7;
  border-radius: 22px;
  border: solid 2px var(--weak-primary);
  background-color: var(--strongest-primary) !important;
  position: sticky;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pc-chat__autoScrollButton:hover {
  opacity: 1;
}

.pc-chat__autoScrollButton > svg {
  fill: var(--primary-font);
}

.pc-chat__autoScrollButton > label {
  color: var(--primary-font);
}

.pc-savedresponses__footer {
  position: absolute;
  margin-top: 10px;
  margin-bottom: 10px;
  bottom: 10px;
  right: 36px;
}

.pc-savedresponses__savedresponsetextbox:focus-within {
  border: 2px solid var(--accent-windows-blue);
}

.pc-savedresponses__dialogHeaderContainer {
  display: flex;
  justify-content: space-between;
}

/* This is needed because the drag-sorting feature
makes a copy of the DOM element, but needs to have the
correct Z position to display it. Since we're displaying
this with a higher z-index modal, we need something high
to display over the modal. 1500 is the lowest working
number. */
.pc-savedresponses__dialogSortableHelper {
  z-index: 1500;
}

.pc-savedresponses__input {
  width: 90%;
  border-color: var(--primary);
}

.pc-savedresponses__responseContainer {
  display: flex;
  flex-flow: row nowrap;
  align-content: left;
  margin-bottom: 10px;
}

.pc-savedresponses__entry {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pc-savedresponses__savedResponse {
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin: 5px;
  color: var(--strongest-primary);
  align-items: normal;
  flex-grow: 2;
}

/* hardcoding these to white & black (instead of theming) pending comps */
.pc-savedresponses__container {
  color: var(--dialog-text);
  cursor: pointer;
}

.pc-savedresponses__icon {
  width: var(--saved-response-button-height);
  height: var(--saved-response-button-height);
  min-width: var(--saved-response-button-height);
  border-style: solid;
  border-radius: 100%;
  margin: 5px 3px;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.pc-savedresponses__iconsvg {
  padding: 0;
  fill: rgba(255, 255, 255, 0.7);
  width: 56%;
  height: 56%;
  overflow-y: hidden;
  position: relative;
}

.pc-savedresponses__closeicon {
  height: 0;
  padding: 0;
}

.pc-savedresponses__closeicon svg {
  fill: var(--dialog-text) !important;
}

.pc-savedresponses__tooltip {
  z-index: 1301;
}

.pc-savedresponses__deleteIcon {
  width: 36px;
  height: 36px;
  fill: var(--dialog-text);
  padding: 0;
}

.pc-savedresponses__deleteIcon svg {
  width: 24px;
  height: 24px;
}

.pc-emojipicker__outerStyle {
  width: 184px;
  margin: 8px;
}

.pc-emojipicker__popover > span {
  border-top-color: var(--strong-primary);
  border-bottom-color: var(--strong-primary);
}

.pc-emojipicker__popover > div {
  background: var(--strong-primary);
}

.pc-emojipicker__grid {
  display: flex;
  flex-wrap: wrap;
}

.pc-emojipicker__gridCell {
  flex: 1;
  padding: 4px 1px 0 1px;
  width: 22px;
  cursor: pointer;
}

.pc-emojipicker__gridCell:hover {
  background-color: var(--primary);
}

/* Base classes for all media */
.pc-emojipicker__Grid--fit > .pc-emojipicker__Grid-cell {
  flex: 1;
}

.pc-emojipicker__Grid--full > .pc-emojipicker__Grid-cell {
  flex: 0 0 100%;
}

.pc-emojipicker__Grid--1of2 > .pc-emojipicker__Grid-cell {
  flex: 0 0 50%;
}

.pc-emojipicker__Grid--1of3 > .pc-emojipicker__Grid-cell {
  flex: 0 0 33.3333%;
}

.pc-emojipicker__Grid--1of4 > .pc-emojipicker__Grid-cell {
  flex: 0 0 25%;
}

/* Small to medium screens */
@media (min-width: 24em) {
  .pc-emojipicker__small-Grid--fit > .pc-emojipicker__Grid-cell {
    flex: 1;
  }

  .pc-emojipicker__small-Grid--full > .pc-emojipicker__Grid-cell {
    flex: 0 0 100%;
  }

  .pc-emojipicker__small-Grid--1of2 > .pc-emojipicker__Grid-cell {
    flex: 0 0 50%;
  }

  .pc-emojipicker__small-Grid--1of3 > .pc-emojipicker__Grid-cell {
    flex: 0 0 33.3333%;
  }

  .pc-emojipicker__small-Grid--1of4 > .pc-emojipicker__Grid-cell {
    flex: 0 0 25%;
  }
}

/* Large screens */
@media (min-width: 48em) {
  .pc-emojipicker__large-Grid--fit > .pc-emojipicker__Grid-cell {
    flex: 1;
  }

  .pc-emojipicker__large-Grid--full > .pc-emojipicker__Grid-cell {
    flex: 0 0 100%;
  }

  .pc-emojipicker__large-Grid--1of2 > .pc-emojipicker__Grid-cell {
    flex: 0 0 50%;
  }

  .pc-emojipicker__large-Grid--1of3 > .pc-emojipicker__Grid-cell {
    flex: 0 0 33.3333%;
  }

  .pc-emojipicker__large-Grid--1of4 > .pc-emojipicker__Grid-cell {
    flex: 0 0 25%;
  }
}

svg.pc-emojipicker__GoodMoodIcon {
  fill: var(--accent-grey);
  height: 36px;
  width: 36px;
  cursor: pointer;
  vertical-align: middle;
}

.pc-savedresponsecolorpicker__colorPickerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 2px solid var(--self-font);
  cursor: pointer;
}

.pc-savedresponsecolorpicker__colorPicker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.pc-savedresponsecolorpicker__colorGrid {
  display: flex;
  flex-flow: row wrap;
  width: 265px;
  padding: 9px 12px;
}

.pc-savedresponsecolorpicker__colorGridCell {
  margin: 4px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.pc-savedresponsecolorpicker__popover > span {
  border-top-color: var(--strong-primary);
  border-bottom-color: var(--strong-primary);
}

.pc-savedresponsecolorpicker__popover > div {
  background: var(--strong-primary);
}

.pc-savedresponseiconpicker__grid {
  display: flex;
  flex-flow: row wrap;
  width: 342px;
  padding: 9px 14px;
}

.pc-savedresponseiconpicker__gridCell {
  min-height: 36px;
  min-width: 36px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0); /* transparent; keep positioning consistent */
  border-radius: 50%;
}

.pc-savedresponseiconpicker__gridCellSelected {
  border: 1px solid var(--accent-windows-blue);
}

.pc-savedresponseiconpicker__gridCell:hover {
  background-color: var(--primary);
}

.pc-savedresponseiconpicker__iconComponent {
  fill: var(--self-font);
  height: 24px;
  width: 24px;
  position: relative;
  top: 7px;
  left: 6px;
}

.pc-savedresponseiconpicker__iconContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 2px solid var(--self-font);
  cursor: pointer;
}

.pc-savedresponseiconpicker__selectedIcon {
  fill: var(--self-font);
  height: 20px;
  width: 20px;
}

.pc-savedresponseiconpicker__popover > span {
  border-top-color: var(--strong-primary);
  border-bottom-color: var(--strong-primary);
}

.pc-savedresponseiconpicker__popover > div {
  background: var(--strong-primary);
}

.pc-fonttools__container {
  display: flex;
  flex-flow: row nowrap;
}

.pc-fonttools__fontbuttons {
  min-width: 40px;
  height: 32px;
  background-color: var(--font-size-background);
  color: var(--accent-grey);
}

.pc-fonttools__fontbuttons:hover {
  background-color: var(--font-size-background);
}

.pc-fonttools__smaller {
  border-radius: 50% 0 0 50%;
  border: 3px solid var(--font-size-border);
  justify-content: center;
  align-items: end;
  padding-right: 4px;
}

.pc-fonttools__bigger {
  border-radius: 0 50% 50% 0;
  border-right: 3px solid var(--font-size-border);
  border-top: 3px solid var(--font-size-border);
  border-bottom: 3px solid var(--font-size-border);
  border-left: none;
}

.pc-fonttools__label {
  line-height: 24px;
}

.pc-pregoldshowtoolbar__body {
  padding: 12px 16px;
  user-select: none;
  z-index: 1;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
}

.pc-pregoldshowtoolbar__buttonContainer {
  display: flex;
  justify-content: space-around;
}

.pc-pregoldshowtoolbar__buttonContainer > button {
  height: 24px;
  min-width: 90px;
  padding: 0;
  margin-top: 1px;
}

.pc-pregoldshowtoolbar__buttonContainer > button > label {
  font-size: 14px;
}

.pc-pregoldshowtoolbar__showtimer {
  width: 100%;
}

.pc-pregoldshowtoolbar__startShowButton {
  height: 38px;
  border-radius: 18.5px;
  box-shadow: 1px 1px 3px 0 #00000080;
  background-image: linear-gradient(to bottom, #ffc107, #cf910d);
}

.pc-pregoldshowtoolbar__progressContainer {
  height: 16px;
  border-radius: 12px;
  border: 2px solid var(--stronger-primary);
  background-color: var(--stronger-primary);
  display: flex;
  align-items: center;
  margin-right: 16px;
  flex-grow: 9;
}

.pc-pregoldshowtoolbar__goalReachedText {
  color: var(--accent-yellow);
}

.pc-pregoldshowtoolbar__showDescription {
  width: 288px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: var(--primary-font);
  margin-bottom: 10px;
}

.pc-pregoldshowtoolbar__goldmeterContainer {
  width: 100%;
  display: flex;
  align-items: center;
  padding-right: 20%;
}

.pc-pregoldshowtoolbar__goldmeterContainerAtGoal {
}

.pc-pregoldshowtoolbar__tooltipContainer {
  width: fit-content;
  height: 34px;
  border-radius: 4px;
  box-shadow: 1px 1px 3px 0 #00000080;
  background-color: var(--goldshow-tooltip-bg);
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: -47px;
  right: -19px;
}

.pc-pregoldshowtoolbar__arrowDown {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--goldshow-tooltip-bg);
  margin-top: 40px;
}

.pc-pregoldshowtoolbar__goalbar {
  text-align: center;
}

.pc-pregoldshowtoolbar__dollarStyle {
  font-size: 10px;
  vertical-align: super;
}

.pc-pregoldshowtoolbar__goldDollarStyle {
  color: var(--accent-yellow);
}

.pc-pregoldshowtoolbar__goldUnmetDollarStyle {
}

.pc-pregoldshowtoolbar__goalText {
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
}

.pc-pregoldshowtoolbar__goldPledgedText {
}

.pc-pregoldshowtoolbar__goldGoalText {
  color: var(--accent-yellow);
}

.pc-pregoldshowtoolbar__goldUnmetText {
}

.pc-pregoldshowtoolbar__contributorContainer {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.pc-pregoldshowtoolbar__contributor {
  display: flex;
  flex-direction: row nowrap;
  height: 40px;
  max-height: 40px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
  padding-left: 15px;
  padding-right: 16px;
  background-color: var(--contributor-background);
}

.pc-pregoldshowtoolbar__contributorName {
  color: var(--primary-font);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-pregoldshowtoolbar__contributorValue {
  color: var(--accent-yellow);
  font-weight: 500;
}

button.pc-pregoldshowtoolbar__setupGoldShowButtonActive {
  background-image: var(--gradient-gold);
  border-radius: var(--button-border-radius);
  box-shadow: 3px 3px 5px 0 #00000080 !important;
  color: #f0f0f0;
  display: flex;
  flex-flow: column-nowrap;
  height: 38px;
  line-height: 26px;
  margin: 4px 4px 16px 0;
  min-width: 288px;
  text-transform: none;
}

button.pc-pregoldshowtoolbar__setupGoldShowButtonInactive {
  background-image: var(--gradient-grey);
  border-radius: var(--button-border-radius);
  box-shadow: 3px 3px 5px 0 #00000080 !important;
  color: #f0f0f0;
  display: flex;
  flex-flow: column-nowrap;
  height: 38px;
  line-height: 26px;
  margin: 4px 4px 16px 0;
  min-width: 288px;
  text-transform: none;
}

button.pc-pregoldshowtoolbar__startButton {
  border-radius: var(--button-border-radius);
  height: 30px;
  min-width: 100px;
  box-shadow: 2px 2px 2px 0 #00000080 !important;
  margin: 10px 4px 10px;
  background-image: var(--gradient-gold);
  padding: 0;
}

button.pc-pregoldshowtoolbar__cancelButton {
  border-radius: var(--button-border-radius);
  height: 30px;
  min-width: 100px;
  box-shadow: 2px 2px 2px 0 #00000080 !important;
  margin: 10px 4px 10px;
  background-image: var(--dialog-default-button-inactive);
  padding: 0;
}

.pc-pregoldshowtoolbar__buttonLabel {
  font-size: 14px;
}

.pc-pregoldshowtoolbar__preshowText {
  text-transform: none;
  font-weight: 300;
}

.pc-pregoldshowtoolbar__timerWrapper {
  display: inline;
}

.pc-pregoldshowtoolbar__timerContainer {
  display: inline-block;
  background-color: var(--gold-show-timer-bg);
  color: var(--gold-show-timer-color);
  line-height: 18px;
  border-radius: 6px;
  margin: 0 16px;
  padding: 4px 16px;
}

.pc-pregoldshowtoolbar__timerText {
  font-size: 18px;
}

.pc-pregoldshowtoolbar__timerTextPlain {
  font-size: 16px;
}

.pc-pregoldshowtoolbar__timerContainerDanger {
  color: var(--accent-red-dark);
  font-size: 18px;
}

.pc-pregoldshowtoolbar__timerContainerPlain {
  display: inline-block;
  font-weight: 700;
}

.pc-pregoldshowtoolbar__iconContainer {
  padding: 8px 16px;
  display: flex;
  flex-grow: 9;
  align-items: center;
}

.pc-pregoldshowtoolbar__alertIcon {
  width: 24px;
  height: 24px;
  fill: var(--dialog-text);
  text-align: center;
  cursor: default;
  display: inline;
  margin-right: 4px;
}

.pc-featurebuttontoolbar__featureToolbar {
  display: flex;
  text-align: right;
  padding-right: 16px;
}

.pc-featurebutton__featurebutton {
  cursor: pointer;
  fill: var(--mute-icon-fill);
  background-color: var(--accent-grey-dark);
  position: relative;
  z-index: 100;
  width: 22px;
  height: 22px;
  padding: 5px;
  margin-left: 6px;
  border-radius: 50%;
  display: inline-block;
  outline: none;
  text-align: center;
  align-items: center;
  user-select: none;
  vertical-align: middle;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.pc-featurebutton__featurebuttonenabled {
  background-color: var(--accent-windows-blue);
}

.pc-featurebutton__essbutton,
.pc-featurebutton__goldmenubutton,
.pc-featurebutton__spingoldbutton,
.pc-featurebutton__goldshowbutton {
}

.pc-featurebutton__essbuttonenabled,
.pc-featurebutton__goldmenubuttonenabled,
.pc-featurebutton__spingoldbuttonenabled {
}

.pc-featurebutton__goldshowbuttonenabled {
  background-color: var(--accent-yellow);
}

.pc-featurebutton__featurebutton > g,
.pc-featurebutton__featurebutton > path,
.pc-featurebutton__featurebuttonenabled > g,
.pc-featurebutton__featurebuttonenabled > path {
  pointer-events: none;
}

.pc-featurebutton__featurebutton:hover {
  fill: widget-icon;
  background-color: var(--accent-grey-darker);
  transition: all 100ms;
}

.pc-featurebutton__featurebutton:active {
  fill: widget-icon;
  background-color: var(--accent-grey-darkest);
}

.pc-featurebutton__featurebuttonenabled:hover {
  background-color: var(--accent-windows-blue-dark);
}

.pc-featurebutton__featurebuttonenabled:active {
  background-color: var(--accent-windows-blue-darker);
}

.pc-featurebutton__goldshowbuttonenabled:hover {
  background-color: var(--accent-yellow-dark);
}

.pc-featurebutton__goldshowbuttonenabled:active {
  background-color: var(--accent-yellow-darker);
}

.pc-featurebutton__essbutton > g,
.pc-featurebutton__essbuttonenabled > g {
  pointer-events: none;
  transform: translate(2px);
}

.pc-featurebutton__goldmenubutton > g,
.pc-featurebutton__goldmenubuttonenabled > g,
.pc-featurebutton__spingoldbutton > g,
.pc-featurebutton__spingoldbuttonenabled > g {
  pointer-events: none;
  transform: scale(0.9) translate(1px, 1px);
}

.pc-featurebutton__goldShowButtonContainer {
  position: relative;
}

.pc-featurebutton__loadingIndicator {
  position: absolute;
  z-index: 150;
  top: 4px;
  left: 3px;
  pointer-events: none;
}

.pc-featureflyout__containerWithContent {
  padding: 8px;
  border-radius: 4px;
  width: 240px;
  box-shadow: 3px 3px 8px 2px widget-icon !important;
  position: relative;
  z-index: 2500;
  transition: all 100ms;
  pointer-events: all;
}

.pc-featureflyout__popover > span {
  border-bottom-color: var(--strong-primary);
}

.pc-featureflyout__popover > div {
  background: var(--strong-primary);
}

.pc-featureflyout__headerWithContent {
  color: var(--weakest-primary);
  font-weight: 500;
  flex-grow: 2;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.pc-featureflyout__container {
  display: flex;
}

.pc-featureflyout__buttonContainer {
  display: flex;
}

.pc-featureflyout__header {
  color: var(--weakest-primary);
  font-weight: 500;
  flex-grow: 2;
}

.pc-featureflyout__subheader {
  text-transform: none;
  margin-top: 1em;
}

.pc-featureflyout__listItem {
  font-weight: normal;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  text-transform: none;
}

.pc-featureflyout__cost {
  color: var(--accent-yellow);
  font-weight: 500;
}

.pc-featureflyout__statusContainer {
  display: flex;
  flex-grow: 1;
  align-items: baseline;
  margin: 10px 0 0 0;
}

.pc-featureflyout__live_sign {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 100%;
}

.pc-featureflyout__indicatorContainer {
  height: auto;
  flex-shrink: 0;
}

.pc-featureflyout__indicatorContainer label {
  font-weight: normal;
  text-transform: uppercase;
}

.pc-featureflyout__indicatorGreen {
  background-color: #20ca0a;
}

.pc-featureflyout__indicatorYellow {
  background-color: yellow;
}

.pc-featureflyout__indicatorRed {
  background-color: red;
}

.pc-featureflyout__indicatorGrey {
  background-color: grey;
}

.pc-featureflyout__anchor {
  margin-top: 8px;
  cursor: pointer;
  color: var(--accent-windows-blue);
  display: block;
  font-weight: 500;
}

.pc-featureflyout__anchor:hover {
  color: var(--accent-windows-blue-light);
}

.pc-featureflyout__edit {
  display: inline-block;
  fill: var(--accent-windows-blue);
  margin-bottom: 2px;
}

.pc-featureflyout__goldShowHoverTopic {
  margin-top: 5px;
  font-size: 12px;
  line-height: 17px;
  text-transform: none;
}

.pc-featureflyout__line {
  border: solid 1px var(--primary);
}

.pc-featureflyout__vibesContainer {
  margin: 10px 0 0 0;
}

.pc-featureflyout__vibeContainer {
  display: flex;
  justify-content: space-between;
}

.pc-collapsablewidget__container {
  background-color: var(--strong-primary);
}

.pc-collapsablewidget__collapsableContainer {
  max-height: 0;
  overflow: hidden;
  transition: 300ms max-height ease-in-out 0s;
  margin: 0;
}

.pc-collapsablewidget__open {
  max-height: 99999px;
}

.pc-collapsablewidget__header {
  display: flex;
  flex-flow: row;
  background-color: var(--strong-primary);
  height: 40px;
  margin: 0;
}

.pc-collapsablewidget__header:hover {
  cursor: pointer;
}

.pc-collapsablewidget__title {
  padding-left: 16px;
  width: 100%;
}

.pc-collapsablewidget__chevron {
  height: 26px;
  flex-shrink: 0;
  background-color: var(--strong-primary);
  padding-right: 10px;
}

.pc-collapsablewidget__caret {
  transition: transform 150ms ease-in-out 0ms;
  transform: rotate(-90deg);
  fill: var(--primary-font);
  color: var(--primary-font);
}

.pc-collapsablewidget__caret_rotate {
  transition: transform 150ms ease-in-out 0ms;
  transform: rotate(0deg);
  fill: var(--primary-font);
  color: var(--primary-font);
}

.pc-collapsablewidget__expanded {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-collapsablewidget__expandedContent {
  display: flex;
  flex: 1;
}

.pc-collapsablewidget__spaced {
  margin-top: 1px;
}

.pc-potentialmembers__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  padding: 12px 16px;
  flex-shrink: 0;
  border-top: 1px solid var(--stronger-primary);
}

.pc-potentialmembers__tooltip {
}

.pc-userlistitem__container {
  justify-content: space-between;
  padding: 6px 16px 6px 8px;
  background: var(--container-bg);
  border-bottom: 1px solid var(--stronger-primary);
  align-items: center;
  cursor: pointer;
  text-transform: none;
  transition: all 0.3s ease;
}

.pc-userlistitem__container:hover {
  background: var(--stronger-primary);
}

.pc-userlistitem__popover > span {
  border-top-color: var(--strong-primary);
  border-bottom-color: var(--strong-primary);
}

.pc-userlistitem__popover > div {
  background: var(--strong-primary);
}

.pc-userlistitem__selected {
  background: var(--strongest-primary);
}

.pc-userlistitem__unreadMessage {
  animation: pc-userlistitem__pulse 1s 3;
  animation-fill-mode: forwards;
}

.pc-userlistitem__userContent {
  font-size: 16px;
  align-items: center;
  color: var(--primary-font);
  overflow: hidden;
  line-height: 24px;
}

.pc-userlistitem__nickname {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pc-userlistitem__goldpledge {
  font-size: 16px;
  color: var(--accent-yellow);
  margin-left: auto;
  margin-right: 8px;
}

.pc-userlistitem__notes {
  padding-left: 8px;
  flex-shrink: 0;
}

.pc-userlistitem__notes path {
  fill: var(--notes-icon);
  -webkit-transition: fill 200ms ease;
  -ms-transition: fill 200ms ease;
  transition: fill 200ms ease;
}

.pc-userlistitem__notes:hover path {
  fill: var(--notes-icon-hover);
  -webkit-transition: fill 200ms ease;
  -ms-transition: fill 200ms ease;
  transition: fill 200ms ease;
}

.pc-userlistitem__tooltip {
}

.pc-userlistitem__offline {
  animation: pc-userlistitem__fadeOut 0.3s ease;
  animation-fill-mode: forwards;
}

@keyframes pc-userlistitem__fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

@keyframes pc-userlistitem__pulse {
  0% {
    background-color: rgba(var(--accent-windows-blue-rgb), 0.4);
  }

  50% {
    background-color: rgba(var(--accent-windows-blue-rgb), 0);
  }

  100% {
    background-color: rgba(var(--accent-windows-blue-rgb), 0.4);
  }
}

.pc-userlevelicon__container {
  position: relative;
  text-align: center;
  width: auto;
  font-weight: bold;
  user-select: none;
  margin-left: 8px;
  margin-right: 8px;

  /* override 'center' from chat.userMessage */
  align-self: flex-start;
  line-height: 0;
}

.pc-userlevelicon__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--strongest-primary);
}

.pc-userlevelicon__roundedIcon {
  border-radius: 50%;
  fill: var(--strongest-primary);
  margin: 0 0 auto;
  flex-shrink: 0;
  padding: 5px;
}

.pc-userlistpopover__container {
  padding: 16px;
  display: flex;
  flex-flow: column nowrap;
  background-color: var(--strong-primary);
}

.pc-userlistpopover__language {
  font-weight: 500;
  font-size: 14px;
  height: 17px;
  padding-top: 8px;
}

.pc-userlistpopover__popoverButtonContainer {
  display: flex;
  margin: 0 -4px;
}

/* easier to use these !importants than to use inline styles */
.pc-userlistpopover__popoverButtonContainer span {
  font-size: 18px !important;
  font-weight: 300 !important;
  font-family: Roboto-Regular, Helvetica, sans-serif !important;
}

.pc-userlistpopover__username {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  line-height: 24px; /* match the height of favicon */
}

.pc-userlistpopover__button {
  width: 90px;
  height: 24px;
  border-radius: 18.5px;
  background-color: var(--userlist-popover-button);
  line-height: 24px;
  margin: 8px 4px;
  text-transform: none;
}

.pc-userlistpopover__button:hover {
  background-color: var(--userlist-popover-button-hover);
}

.pc-userlistpopover__button > label {
  font-weight: 400;
}

.pc-userlistpopover__buttonHidden {
  visibility: hidden;
}

.pc-userlistpopover__separator {
  border-top-color: var(--weak-primary);
  border-top-style: solid;
  border-top-width: thin;
  border-bottom: none;
  margin: 16px 0 8px;
}

.pc-userlistpopover__favicon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.pc-userlistpopover__favicon svg {
  position: absolute;
  fill: var(--accent-yellow);
  width: 24px;
}

.pc-userlistpopover__favicon svg:hover {
  fill: var(--accent-yellow);
}

.pc-userlistpopover__tooltip {
}

.pc-scrollbar__scrollbar {
  /* firefox only. https://drafts.csswg.org/css-scrollbars-1/#propdef-scrollbar-color */
  scrollbar-color: var(--user-message-border) var(--stronger-primary);
  scrollbar-width: thin;
}

.pc-scrollbar__scrollbar::-webkit-scrollbar {
  /* background-color: var(--stronger-primary); */
  outline: 1px solid slategrey;
  width: 6px;
}

.pc-scrollbar__scrollbar::-webkit-scrollbar-thumb {
  /* border: solid 2px var(--stronger-primary); */
  background-color: var(--user-message-border);
  border-radius: 6px;
}

.pc-splitchat__userListAndChatContainer {
  display: flex;
  flex: 1;
}

.pc-splitchat__userListContainer {
  flex-grow: 1;
}

.pc-splitchat__userListDisplay {
  position: relative;
  overflow-y: scroll;
  flex-grow: 1; /* take up as much vertical space as possible */

  /* magic! fixes Firefox scrolling issue. this basically tells the element not
  to base its height on its content */
  height: 0;
}

.pc-splitchat__userListDisplay:first-child {
  border-top: 1px solid var(--stronger-primary);
}

.pc-splitchat__userList {
  display: flex;
  flex-flow: column nowrap;
  flex-shrink: 0;
}

.pc-earnings__container {
}

.pc-earnings__header {
}

.pc-earnings__content {
  margin: 0 24px;
  color: var(--strong-primary-font);
}

.pc-earnings__lineitem {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 10px 0;
  font-family: Roboto-Medium, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.pc-earnings__separator {
  border-top-color: var(--weak-primary);
  border-top-style: solid;
  border-top-width: thin;
  border-bottom: none;
}

.pc-earnings__totaltime {
  font-weight: bold;
}

.pc-earnings__newearnings {
  animation: pc-earnings__highlightEarnings 1s ease-in-out 1 both;
}

@keyframes pc-earnings__highlightEarnings {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  90% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

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

.pc-roomtopic__display {
  flex-grow: 1;
  height: auto;
}

.pc-roomtopic__container {
  padding: 16px;
}

.pc-roomtopic__header {
}

.pc-roomtopic__body {
  min-height: 50px;
  margin-left: 16px;
  margin-right: 13px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pc-roomtopic__characterContainer {
  display: flex;
  flex-direction: row nowrap;
  margin-bottom: 16px;
}

.pc-roomtopic__characterDesc {
  flex-grow: 1;
  font-size: 12px;
}

.pc-roomtopic__charactersRemaining {
  flex-shrink: 0;
  flex-grow: 1;
  padding-left: 15px;
  text-align: right;
}

.pc-roomtopic__buttonContainer {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 16px;
  padding-right: 4px;
}

.pc-roomtopic__buttonContainer > button {
  height: 36px;
}

.pc-roomtopic__buttonContainer > button > span {
  font-size: 16px;
}

.pc-sessiontimer__container {
}

.pc-sessiontimer__header {
}

.pc-sessiontimer__content {
  margin: 0 24px;
  color: var(--strong-primary-font);
}

.pc-sessiontimer__lineitem {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 10px 0;
  font-family: Roboto-Medium, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.pc-sessiontimer__separator {
  border-top-color: var(--weak-primary);
  border-top-style: solid;
  border-top-width: thin;
  border-bottom: none;
}

.pc-sessiontimer__totaltime {
  font-weight: bold;
}

.pc-streamhealth__container {
  margin-left: 17px;
  margin-right: 15px;
  text-align: center;
  text-transform: none;
  padding-bottom: 15px;
}

.pc-streamhealth__webRtcContainer {
  background-color: var(--popover-bg);
  display: flex;
  height: 36px;
  padding: 2px;
  margin: 2px 2px 4px 2px;
}

.pc-streamhealth__iconContainer {
  display: flex;
  padding: 9px 5px 0 15px;
}

.pc-streamhealth__enabledIcon {
  background-color: var(--accent-green);
  border-radius: 13px;
  height: 17px;
  width: 17px;
}

.pc-streamhealth__webRtcStatus {
  font-size: 12px;
  padding: 11px 0 5px 0;
}

.pc-streamhealth__resolutionContainer {
  position: relative;
}

.pc-streamhealth__resolutionContainerLively {
  position: relative;
  flex-grow: 0;
  width: 100%;
  height: 64px;
  margin-left: 2px;
  margin-bottom: 4px;
}

.pc-streamhealth__resolution {
  font-size: 24px;
  margin-right: 4px;
}

.pc-streamhealth__resolutionLively {
  font-size: 22px;
  margin-right: 4px;
}

.pc-streamhealth__messageContainer {
  position: relative;
}

.pc-streamhealth__displayRatio {
  position: absolute;
  top: 8px;
  right: 13px;
}

.pc-streamhealth__healthItemRow {
  display: flex;
  flex-flow: row;
  font-size: 24px;
}

.pc-streamhealth__live_sign {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 100%;
}

.pc-streamhealth__bitrateLively {
  font-size: 22px;
  flex-grow: 0;
  width: 100%;
  height: 64px;
  margin-right: 2px;
  margin-bottom: 4px;
}

.pc-streamhealth__green {
  background-color: var(--accent-green);
}

.pc-streamhealth__yellow {
  background-color: var(--accent-yellow);
}

.pc-streamhealth__red {
  background-color: var(--accent-red);
}

.pc-streamhealth__none {
  display: none;
}

.pc-streamhealth__greenText {
  color: var(--accent-green);
}

.pc-streamhealth__yellowText {
  color: var(--accent-yellow);
}

.pc-streamhealth__redText {
  color: var(--accent-red);
}

.pc-streamhealth__greyText {
  color: var(--accent-grey);
}

svg.pc-streamhealth__disabledIcon {
  height: 17px;
  width: 17px;
  font-family: MaterialIcons;
  font-size: 38px;
  fill: var(--accent-red);
  cursor: default;
  display: inline;
}

.pc-healthitem__container {
  background-color: var(--stronger-primary);
  flex-grow: 0;
  width: 100%;
  height: 64px;
  margin: 2px;
}

.pc-healthitem__warningContainer {
  background-color: var(--stronger-primary);
  flex-grow: 0;
  width: 100%;
  height: 84px;
  margin: 2px;
}

.pc-healthitem__title {
  font-size: 14px;
}

.pc-healthitem__warning {
  font-size: 10px;
}

.pc-healthitem__healthStat {
  font-weight: bold;
  height: 10px;
  padding-top: 8px;
  padding-bottom: 4px;
}

.pc-healthnote__container {
  background-color: var(--popover-bg);
  flex-grow: 0;
  margin: 2px;
}

.pc-healthnote__healthNote {
  padding: 8px;
  text-align: left;
  font-size: 12px;
}

.pc-volumeanalyzer__container {
  background-color: var(--stronger-primary);
  flex-grow: 0;
  height: 36px;
  margin: 2px;
}

.pc-volumeanalyzer__equalizer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  text-transform: capitalize;
  padding: 10px 20px;
}

.pc-volumeanalyzer__equalizerIcons {
  display: flex;
  flex-flow: row nowrap;
}

.pc-volumeanalyzer__equalizerIcon {
  width: 6px;
  height: 16px;
  border-radius: 6px;
  opacity: 0.3;
  margin: 0 1px;
}

.pc-volumeanalyzer__equalizerIconGreen {
  background-color: var(--accent-green);
}

.pc-volumeanalyzer__equalizerIconYellow {
  background-color: var(--accent-yellow);
}

.pc-volumeanalyzer__equalizerIconRed {
  background-color: var(--accent-red);
}

.pc-volumeanalyzer__illuminated {
  opacity: 0.8;
}

.react-resizable {
  position: relative;
}

.react-resizable-handle {
  position: absolute;
  width: 30px;
  height: 100%;
  right: -15px;
  padding: 0 3px 3px 0;
  box-sizing: border-box;
  cursor: col-resize;
  z-index: 5;
}

.pc-desktopcontainer__leftward > span {
  right: -10px;
  cursor: w-resize;
}

/* this is the thing that hides the toolbar. */
.pc-desktopcontainer__rightward > span {
  cursor: e-resize;
  width: 15px;
  right: -10px;
}

.pc-desktopcontainer__container {
  font-family: Roboto, Helvetica, sans-serif;
  background-color: var(--strongest-primary);
  width: 100%;
  height: 100%;
  min-width: 650px;
  display: flex;
  flex-flow: column nowrap;
  flex-grow: 1;
  align-items: center;
  padding: 3px;
  box-sizing: border-box;
}

.pc-desktopcontainer__content {
  color: var(--primary-font);
  width: 100%;
  height: 100%;
  background-color: var(--main-background);
}

.pc-desktopcontainer__content a,
a:link,
a:visited,
a:hover,
a:active {
  color: var(--accent-windows-blue);
  text-decoration: none;
}

.pc-desktopcontainer__content > div {
  padding: 3px;
}

.pc-desktopcontainer__chatstuff {
  width: 100%;
  min-width: 200px;
  margin-bottom: 6px !important;
}

.pc-desktopcontainer__rightbox {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
}

.pc-desktopcontainer__box {
  display: flex;
  flex-flow: row nowrap;
  flex: auto;
  height: 0;
}

.pc-desktopcontainer__streambar {
  display: flex;
  flex-flow: column nowrap;
  flex-shrink: 0;
}

.pc-desktopcontainer__userlist {
  display: flex;
  flex-flow: column nowrap;
  flex-shrink: 0;
}

.pc-desktopcontainer__hidden {
  display: none;
}

.pc-desktopcontainer__toolbarView {
  height: 100%;
  overflow-y: auto;
}

/* scrollable content */
.pc-desktopcontainer__toolbar {
  flex-grow: 1;
  height: 0;
}

.pc-desktopcontainer__toolbar > div {
  margin-bottom: 6px;
}

.pc-desktopcontainer__toolbar > div:last-child {
  margin-bottom: 0;
}

.pc-userlist__container {
  display: flex;
  flex-flow: column;
  cursor: default;
  font-size: 18px;
  background-color: var(--container-bg);
  z-index: 4; /* in front of chat fade */
  height: 100%;
  overflow-y: auto;
}

.pc-userlist__listcontainer {
  flex-grow: 1;
  overflow-y: auto;
  border-top: 1px solid var(--stronger-primary);
}

.pc-userlistsection__user_count_container {
  height: 40px;
  line-height: 40px;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--strongest-primary);
  background-color: var(--container-bg);
  color: var(--primary-font);
}

.pc-userlistsection__leftContent {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.pc-userlistsection__flex_start {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease;
}

.pc-userlistsection__flex_start:hover {
  background-color: var(--stronger-primary);
}

.pc-userlistsection__activeBg {
  background: var(--strongest-primary);
}

.pc-userlistsection__unreadMessagesBg {
  animation: pc-userlistsection__pulse 1s 3;
  animation-fill-mode: forwards;
}

.pc-userlistsection__collapseButton {
  padding: 0 8px 0 0; /* cancel icf-'s padding to vertically align */
}

.pc-userlistsection__collapseButton svg {
  fill: var(--primary-font);
}

.pc-userlistsection__caret svg {
  transition: transform 150ms ease-in-out 0ms;
  transform: rotate(-90deg);
  fill: var(--primary-font);
  color: var(--primary-font);
}

.pc-userlistsection__caret_rotate svg {
  transition: transform 150ms ease-in-out 0ms;
  transform: rotate(0deg);
  fill: var(--primary-font);
  color: var(--primary-font);
}

.pc-userlistsection__caret:hover svg,
.pc-userlistsection__caret_rotate:hover svg {
  fill: var(--primary-font);
}

.pc-userlistsection__selectionMarkerActive {
  width: 8px;
  height: 100%;
  margin-right: 16px;
  background: var(--weaker-primary);
}

.pc-userlistsection__selectionMarkerInactive {
  background: var(--primary);
}

.pc-userlistsection__selectionMarkerUnreadMessages {
  animation: pc-userlistsection__pulse 1s 3;
  animation-fill-mode: forwards;
}

@keyframes pc-userlistsection__pulse {
  0% {
    background-color: rgba(var(--accent-windows-blue-rgb), 0.4);
  }

  50% {
    background-color: rgba(var(--accent-windows-blue-rgb), 0);
  }

  100% {
    background-color: rgba(var(--accent-windows-blue-rgb), 0.4);
  }
}

.pc-quicklinks__container {
  white-space: nowrap;
  background-color: var(--quicklinks-background);
  overflow: hidden;
}

.pc-quicklinks__container a,
.pc-quicklinks__container a:link,
.pc-quicklinks__container a:visited,
.pc-quicklinks__container a:active {
  font-size: 14px;
  color: var(--quicklinks-font);
  padding: 10px 12px;
}

.pc-quicklinks__button {
  padding: 8px;
}

.pc-quicklinks__button:hover {
  background-color: var(--quicklinks-hover);
}

.pc-header__container {
  background-color: var(--header-bg);
  width: 100%;
  height: 56px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  flex-shrink: 0;
}

.pc-header__titlebar {
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.pc-header__logospace {
  flex-grow: 2;
  display: flex;
  align-items: center;
}

.pc-header__logospace > div {
  margin: 0 0 0 16px;
}

.pc-header__avatarspace {
  display: flex;
  align-items: center;
  height: 100%;
}

.pc-header__nickname {
  color: var(--header-font);
  font-size: 16px;
  font-weight: bold;
}

.pc-header__headerNickname {
  vertical-align: middle;
}

.pc-header__headerNickname:hover {
  color: var(--accent-grey);
  fill: var(--accent-grey);
}

.pc-header__clipcircle {
  clip-path: circle(42%);
  height: 32px;
  margin-top: 3px;
}

.pc-header__headerClipcircle {
  vertical-align: middle;
}

.pc-header__img {
  margin: 0 0 0 8px;
}

.pc-header__headerMenuItem {
  padding: 5px;
  color: #eee;
  fill: #eee;
  position: relative;
  cursor: pointer;
  margin-left: 16px;
  white-space: nowrap;
}

.pc-header__headerMenuItemSvg {
  padding-right: 16px;
}

.pc-header__headerMenuIcon {
  cursor: default;
  margin-right: 16px;
  white-space: nowrap;
  text-align: center;
}

.pc-header__headerMenuItem:hover {
  color: var(--accent-grey);
  fill: var(--accent-grey);
}

.pc-header__headerMenuItem svg {
  fill: #eee;
  position: absolute;
  top: 0;
  right: 0;
}

.pc-header__headerMenuItemSvg svg {
  fill: #eee;
  position: absolute;
  top: 7px;
}

.pc-header__headerAvatarMenuItem svg {
  position: absolute;
  top: 10px;
  left: 37px;
}

.pc-header__headerMenuItem:hover svg {
  fill: var(--accent-grey);
}

.pc-header__container a.pc-header__headerMenuItem {
  color: #eee;
}

.pc-header__container a.pc-header__headerMenuItem:hover {
  color: var(--accent-grey);
}

.pc-header__badge span {
  top: -2px;
  min-width: 18px;
  height: 18px;
  color: #fff;
  padding-top: 2px;
}

.pc-header__popover > span {
  border-top-color: var(--quicklinks-background);
  border-bottom-color: var(--quicklinks-background);
}

.pc-header__popover > div {
  background: var(--quicklinks-background);
}

.pc-recordingsmodal__recordedItemWrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  border-top: 1px solid #9e9e9e;
  padding-top: 16px;
}

.pc-recordingsmodal__recordedVideo {
  object-fit: cover;
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.pc-recordingsmodal__recordedVideoWrapper {
  position: relative;
  cursor: pointer;
}

.pc-recordingsmodal__recordedVideoPlayOverlay {
  position: absolute;
  top: 17px;
  left: 17px;
  pointer-events: none;
}

.pc-recordingsmodal__playIconWrapper {
  width: 24px;
  border: 3px solid transparent;
  border-radius: 50%;
}

.pc-recordingsmodal__playIconWrapper:hover {
  border-color: var(--accent-windows-blue);
}

.pc-recordingsmodal__recordedItemInformation {
  display: flex;
  flex-grow: 2;
  justify-content: space-between;
  align-items: center;
}

.pc-recordingsmodal__recordedItemName {
  word-break: break-all;
  font-weight: bold;
  margin: 0 16px;
  line-height: 1.8;
}

.pc-recordingsmodal__recordedItemDate {
  word-break: break-all;
  font-weight: 100;
}

.pc-recordingsmodal__recordedItemActions svg {
  cursor: pointer;
}

.pc-recordingsmodal__recordedItemActions svg:last-of-type {
  margin-left: 32px;
  width: 24px;
  display: inline-block;
  vertical-align: middle;
  height: 24px;
}

.pc-recordingsmodal__novideos {
  margin-top: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--weak-primary);
}

.pc-recordingsmodal__lightboxVideo {
  height: 400px;
}

.pc-recordingsmodal__closeIcon {
  z-index: 100;
  background-color: var(--strong-primary);
  fill: var(--primary-font);
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 0;
}

.pc-settings__container {
  display: flex;
  flex-flow: row nowrap;
  overflow-x: hidden;
  margin-left: -24px; /* kill the margin from Dialog component */
  height: 630px;
  background-color: var(--settings-active-bg);
}

.pc-settings__container > div {
  padding: 18px 0 0 22px;
}

.pc-settings__overflowContainer {
  flex-grow: 1;
  overflow-x: hidden;
}

.pc-settings__tooltip {
}

.pc-settings__content {
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  margin: 24px 24px 24px 14px;
  width: 600px;
}

.pc-settings__optionLabel {
  color: var(--primary-font);
  font-weight: 300;
  margin: 3px 0 5px 0;
  text-transform: capitalize;
}

.pc-settings__cameraContainer {
  width: 100%;
  padding-right: 58px;
}

.pc-settings__img {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
}

.pc-settings__title {
  color: var(--primary-font);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top: -8px; /* better alignment; complicated due to close button */
  margin-bottom: 0;
}

.pc-settings__break {
  border: 1px solid var(--primary);
  width: 100%;
  margin: 18px 0;
}

.pc-settings__closeIcon {
  right: 0;
  top: 0;
  padding: 0 !important;
}

.pc-settings__radio span {
  font-family: Roboto-Regular, Helvetica, sans-serif;
  font-weight: 300;
  color: var(--primary-font);
}

.pc-settings__radio svg {
  fill: var(--primary-font);
  height: 22px;
}

.pc-settings__languageContainer {
  max-width: 180px;
}

.pc-settings__individualSettingContainer {
  margin-top: 8px;
}

.pc-settings__dropdownDisabledText {
  color: var(--accent-red);
  margin-bottom: 15px;
}

.pc-settings__cameraOptionsDisabled {
}

.pc-settings__dropdownContainer {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  flex-flow: column nowrap;
}

.pc-settings__icon svg {
  padding: 0;
  fill: #eee;
}

.pc-settings__dropdown > div > div > svg {
  fill: var(--dropdown-carat);
  color: var(--dropdown-carat);
}

.pc-settings__icon svg:hover {
  padding: 0;
  fill: #eee;
}

.pc-settings__dropdown {
  width: 340px;
  margin: 8px 0 24px;
}

.pc-settings__dropdownLabel {
  font-weight: 300;
  margin: 8px 0 4px;
}

.pc-settings__paper > div > div {
  max-width: 670px;
}

.pc-settings__optioncontainer {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}

.pc-settings__buttonContainer {
  margin-left: auto;
}

.pc-settings__invertChatDirectionContainer {
  margin-bottom: 30px;
}

.pc-settings__invertChatDirectionLabel {
  font-weight: 300;
  margin-bottom: 3px;
  color: var(--dialog-text);
}

.pc-settings__checkboxContainer {
}

.pc-settings__checkboxTitle {
  font-weight: 300;
  color: var(--dialog-text);
  margin-bottom: 12px;
}

.pc-settings__audioSettingsContainer {
  margin-bottom: 24px;
}

.pc-settings__headerMenuItem {
}

.pc-settings__radioButtonContainer {
  font-weight: 300;
  line-height: 17px;
  color: var(--dialog-text);
  margin-top: 8px;
  margin-bottom: 2px;
  max-width: 325px;
}

.pc-settings__radioButtonDescription {
  margin-top: 0;
}

.pc-settings__radioButtonText {
  margin-top: 2px;
}

.pc-settings__chatLayoutContainer {
  margin-bottom: 30px;
}

.pc-settings__chatLayoutLabel {
  font-weight: 300;
  margin-bottom: 3px;
  color: var(--dialog-text);
}

.pc-settings__chatLayoutDescription {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-settings__chatLayoutRadioButtonContainer {
  display: flex;
  flex-direction: row;
}

.pc-settings__chatRadioButton {
  margin: 2px 8px;
}

.pc-settings__input {
  width: 218px;
  padding-bottom: 20px;
}

.pc-settings__textAreaContainer {
  width: 460px;
}

.pc-settings__textArea {
  background-color: var(--textinput-bg);
  border: 1px solid;
  border-color: var(--stronger-primary);
  width: 460px;
  max-height: 118px;
  resize: none;
  display: block;
  overflow-y: hidden;
  box-sizing: initial;
}

.pc-settings__textAreaHighlight {
  border-color: var(--accent-windows-blue);
}

.pc-settings__textInputError {
  border-color: #f00;
}

.pc-settings__textArea textarea {
  font-size: 14px;
  width: 440px;
  text-indent: 0;
  padding: 0 10px;
  color: var(--primary-font);
  overflow-y: hidden;
  overflow-x: hidden;
}

.pc-onofftoggle__switch {
  width: 60px;
  height: 28px;
  border-radius: 13px;
  cursor: pointer;
  display: inline-block;
  background: var(--weak-primary);
}

.pc-onofftoggle__switchOn {
  background: var(--accent-windows-blue);
}

.pc-onofftoggle__switchDisabled {
  background: var(--accent-grey-darker);
}

.pc-onofftoggle__switchToggle {
  width: 20px;
  height: 20px;
  box-shadow: 0 1px 2px 0 #0000005a;
  background-color: #eee;
  left: 4px;
  top: 4px;
  border-radius: 12px;
  position: relative;
  transition: left 0.2s ease-in-out;
}

.pc-onofftoggle__switchToggleOn {
  left: 36px;
}

.pc-onofftoggle__switch.pc-onofftoggle__disabled {
  cursor: not-allowed;
}

.pc-toggleoption__container {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  margin-bottom: 24px;
}

.pc-toggleoption__optionheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-grow: 1;
  align-items: center;
}

.pc-toggleoption__title {
  font-weight: 300;
  color: var(--dialog-text);
}

.pc-toggleoption__description {
  font-weight: 300;
  line-height: 17px;
  color: var(--dialog-text);
  margin-top: 8px;
  max-width: 325px;
}

.pc-vibes__overflowContainer {
}

.pc-vibes__anchor {
  display: flex;
  padding: 0 16px;
  background-color: var(--stronger-primary);
  margin-bottom: 16px;
  height: 36px;
  line-height: 36px;
  border-radius: 3px;
  cursor: pointer;
  align-items: center;
}

.pc-vibes__anchor:hover {
  background-color: var(--strongest-primary);
}

.pc-vibes__anchor .pc-vibes__anchorContent {
  flex-grow: 1;
}

.pc-vibes__back {
  display: block;
  color: var(--accent-windows-blue);
  margin-left: -8px;
  margin-bottom: 16px;
  cursor: pointer;
}

.pc-vibes__dropdown {
  margin-bottom: 10px;
  width: auto;
}

.pc-vibes__link {
}

.pc-vibes__toySettingsContainer {
  flex-grow: 1;
  margin-bottom: 5px;
}

.pc-vibes__toy {
}

.pc-vibes__description {
  margin-bottom: 16px;
}

.pc-vibes__stepContainer {
  margin-bottom: 10px;
}

.pc-vibes__helpContainer {
  margin-bottom: 10px;
}

.pc-vibes__centeredContainer {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.pc-vibes__qrCode {
  margin: 16px auto;
}

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

.pc-vibes__indicatorContainer label {
  font-weight: normal;
}

.pc-vibes__indicatorGreen {
}

.pc-vibes__indicatorRed {
}

.pc-vibes__logoContainer {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.pc-vibes__feelAppLogo {
  height: 32px;
  width: 32px;
  margin-left: 10px;
}

.pc-vibes__footerButtons {
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}

/* advanced settings */
.pc-vibes__collapseHeader {
  display: flex;
  flex-flow: row;
  background-color: var(--stronger-primary);
  height: 40px;
  margin: 0 0 2px 0;
}

.pc-vibes__collapseTitle {
  width: 100%;
}

.pc-vibes__chevron {
  height: 26px;
  flex-shrink: 0;
  background-color: var(--stronger-primary);
  padding-right: 10px;
}

.pc-vibes__caret {
  transition: transform 150ms ease-in-out 0ms;
  transform: rotate(-90deg);
  fill: var(--primary-font);
  color: var(--primary-font);
}

.pc-vibes__caret_rotate {
  transition: transform 150ms ease-in-out 0ms;
  transform: rotate(0deg);
  fill: var(--primary-font);
  color: var(--primary-font);
}

.pc-vibes__collapsableContainer {
  max-height: 0;
  overflow: hidden;
  transition: 300ms max-height ease-in-out 0s;
  margin: 0;
}

.pc-vibes__open {
  max-height: 99999px;
}

.pc-vibes__individualVibe {
  display: flex;
  padding: 0 16px;
  background-color: var(--stronger-primary);
  height: 36px;
  line-height: 36px;
  border-radius: 3px;
  cursor: pointer;
  align-items: center;
}

.pc-vibes__individualVibe:hover {
  background-color: var(--strongest-primary);
}

.pc-vibes__individualVibe .pc-vibes__individualVibeContent {
  flex-grow: 1;
}

.pc-vibes__advancedSettingsArea {
  color: var(--primary-font);
  background-color: var(--stronger-primary);
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin-bottom: 2px;
}

.pc-vibes__settingInput {
  color: var(--primary-font);
  background-color: var(--strongest-primary);
  height: 24px;
  width: 50px;
}

.pc-vibes__settingInputHighlight {
}

.pc-vibes__settingInputErrorHighlight {
  box-sizing: border-box;
}

.pc-vibes__saveButtonContainer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.pc-vibes__advancedSettingsRow {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.pc-vibes__levelText {
  width: 60px;
}

.pc-vibes__minGold {
  width: 60px;
}

.pc-vibes__toText {
  width: 20px;
}

.pc-vibes__maxGold {
  width: 50px;
}

.pc-vibes__goldText {
  width: 50px;
}

.pc-vibes__seconds,
.pc-vibes__duration {
  min-width: 40px;
}

.pc-vibes__secondsText,
.pc-vibes__durationText {
  width: 65px;
  margin-left: 4px;
}

.pc-vibes__speed {
  margin-left: auto;
  min-width: 125px;
  position: relative;
}

.pc-vibes__strength {
  bottom: -5px;
}

.pc-vibes__advancedSettingsColumn {
  display: flex;
  flex-direction: column;
}

.pc-vibes__kiirooRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}

.pc-vibes__kiirooDescriptionText {
  width: 324px;
}

.pc-vibes__kiirooInput {
  margin-right: 5px;
}

.pc-vibes__kiirooDescriptionTextEnd {
  margin-right: 5px;
}

.pc-vibes__inputError {
}

.pc-appcontainer__root {
  color: var(--header-font);
  background-color: var(--strongest-primary);
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.pc-appcontainer__content a,
a:link,
a:visited,
a:hover,
a:active {
  color: var(--accent-windows-blue);
  text-decoration: none;
}

/* 3px around everywhere, except the bottom, because all the child divs have a
3px margin on the bottom. and we don't want a double-3px margin-bottom. */
.pc-appcontainer__content > div {
  margin: 3px 3px 0 3px;
}

.pc-appcontainer__subcontent {
  flex-grow: 1;
  min-width: 200px;
  margin-bottom: 6px !important;
}

.pc-appcontainer__streambar {
  width: 320px;
  display: flex;
  flex-flow: column nowrap;
}

.pc-appcontainer__streambar > div {
  margin-bottom: 6px;
}

.pc-appcontainer__toolbar {
  flex-grow: 0;
  min-width: 320px; /* or 300? */
  overflow: auto;
}

.pc-appcontainer__toolbar > div {
  margin-bottom: 6px;
}

@media (max-width: 760px) {
  .pc-appcontainer__content {
    flex-flow: column nowrap;
  }

  .pc-appcontainer__subcontent {
    flex-flow: column nowrap;
  }

  .pc-appcontainer__streambar {
    max-width: 100%;
  }
}

.pc-appcontainer__toolbar::-webkit-scrollbar {
  background-color: var(--stronger-primary);
  outline: 1px solid slategrey;
  width: 10px;
}

.pc-appcontainer__toolbar::-webkit-scrollbar-thumb {
  border: solid 2px var(--stronger-primary);
  background-color: var(--user-message-border);
  border-radius: 10px;
}

.pc-appcontainer__broadcaster {
  width: 200px;
  color: green;
}

.pc-appcontainer__mobilecontainer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-background);
}

.pc-appcontainer__sidebar {
  display: flex;
  flex-flow: column nowrap;
  flex-grow: 0;
  min-width: 200px;
}

.pc-appcontainer__widgetcontainer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

