body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/**
* Rangeslider
*/
.rangeslider {
  -webkit-appearance: none;
  margin: 20px 0;
  position: relative;
  background: #e6e6e6;
  -ms-touch-action: none;
  touch-action: none;
}
.rangeslider,
.rangeslider .rangeslider__fill {
  display: block;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.rangeslider .rangeslider__handle {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 -1px 3px rgba(0, 0, 0, 0.4);*/

  box-sizing: border-box;

  border: solid 0.3125em #fefefe;
  border-right-width: .5em;
  border-left-width: .5em;
  width: 2em;
  height: 1.5em;
  border-radius: .25em;
  box-shadow: 0 .25em .125em #d2d2d2;
  background: #fefefe linear-gradient(90deg, #cfcfcf 50%, rgba(0, 0, 0, 0) 50%) 1px 50% content-box;
  /* wtf is wrong with you, Chrome? */
  background-size: .25em 100%;
}
.rangeslider .rangeslider__handle .rangeslider__active {
  opacity: 1;
}
.rangeslider .rangeslider__handle-tooltip {
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  font-weight: normal;
  font-size: 14px;
  transition: all 100ms ease-in;
  border-radius: 4px;
  display: inline-block;
  color: white;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.rangeslider .rangeslider__handle-tooltip span {
  margin-top: 12px;
  display: inline-block;
  line-height: 100%;
}
.rangeslider .rangeslider__handle-tooltip:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
}
/**
* Rangeslider - Horizontal slider
*/
.rangeslider-horizontal {
  height: 12px;
  border-radius: 10px;
}
.rangeslider-horizontal .rangeslider__fill {
  height: 100%;
  background-color: #7cb342;
  border-radius: 10px;
  top: 0;
}
.rangeslider-horizontal .rangeslider__handle {
  box-sizing: border-box;
  border: solid 0.3125em #fefefe;
  border-right-width: .5em;
  border-left-width: .5em;
  box-shadow: 0 .25em .125em #d2d2d2;
  background: #fefefe linear-gradient(90deg, #cfcfcf 50%, rgba(0, 0, 0, 0) 50%) 1px 50% content-box;
  background-size: 55% 55%;
  width: 30px;
  height: 25px;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.rangeslider__handle::-webkit-slider-thumb {
  -webkit-appearance: none!important;
}

.rangeslider-horizontal .rangeslider__handle:after {

  position: absolute;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background-color: #dadada;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) inset, 0 -1px 3px rgba(0, 0, 0, 0.4) inset;
}
.rangeslider-horizontal .rangeslider__handle-tooltip {
  top: -55px;
}
.rangeslider-horizontal .rangeslider__handle-tooltip:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.8);
  left: 50%;
  bottom: -8px;
  transform: translate3d(-50%, 0, 0);
}
/**
* Rangeslider - Vertical slider
*/
.rangeslider-vertical {
  margin: 20px auto;
  height: 150px;
  max-width: 10px;
  background-color: transparent;
}
.rangeslider-vertical .rangeslider__fill,
.rangeslider-vertical .rangeslider__handle {
  position: absolute;
}
.rangeslider-vertical .rangeslider__fill {
  width: 100%;
  background-color: #7cb342;
  box-shadow: none;
  bottom: 0;
}
.rangeslider-vertical .rangeslider__handle {
  width: 30px;
  height: 10px;
  left: -10px;
  box-shadow: none;
}
.rangeslider-vertical .rangeslider__handle-tooltip {
  left: -100%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.rangeslider-vertical .rangeslider__handle-tooltip:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  left: 100%;
  top: 12px;
}
/**
* Rangeslider - Reverse
*/
.rangeslider-reverse.rangeslider-horizontal .rangeslider__fill {
  right: 0;
}
.rangeslider-reverse.rangeslider-vertical .rangeslider__fill {
  top: 0;
  bottom: inherit;
}
/**
* Rangeslider - Labels
*/
.rangeslider__labels {
  position: relative;
}
.rangeslider-vertical .rangeslider__labels {
  position: relative;
  list-style-type: none;
  margin: 0 0 0 24px;
  padding: 0;
  text-align: left;
  width: 250px;
  height: 100%;
  left: 10px;
}
.rangeslider-vertical .rangeslider__labels .rangeslider__label-item {
  position: absolute;
  transform: translate3d(0, -50%, 0);
}
.rangeslider-vertical .rangeslider__labels .rangeslider__label-item::before {
  content: '';
  width: 10px;
  height: 2px;
  background: black;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.rangeslider__labels .rangeslider__label-item {
  position: absolute;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  top: 10px;
  transform: translate3d(-50%, 0, 0);
}

body {
    margin: 20px;
    height: 90%;
    font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
}

video {
    object-fit: contain;
    width: 100%;
    height: 100%;
    /*max-height: 360px;*/
    /*max-width: 640px;*/
}

.res_fixed {
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-height: 360px;
    max-width: 640px;
}

.res_video {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.virtual_segment {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.ingest_segment {
    display: flex;
    align-items: center;
    padding: .8rem .5rem;
    flex-wrap:wrap;
    max-width: 700px;
    /*min-width: 470px;*/
}

.stream_segment {
    max-width: 400px;
}

.ui.dropdown .menu>.disabled.item {
    opacity: .99!important;
}

.ingest_segment > .menu,
.ingest_segment >.input {
    margin: .2rem .5rem !important;
}
.ingest_segment .menu:nth-child(2) {
    flex: 1 0 auto;
}
.videos_segment {
    flex: 1 0 auto;
    display: flex;
}

.video-wrapper {
    display: flex;
    background: #000;
    padding: 1.6em;
    flex: 1 0 100%;
    transition: .2s all linear;

}
.virtual_segment--chat-open .video-wrapper{
    flex: 1 0 calc(100% - 400px);
}
.chat-wrapper {
    flex: 0 0 400px;
    padding: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
}

.ui.selection.dropdown .menu {
    max-height: 30rem;
}

.talk {
    border: 1px solid yellow;
}

.mirror {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.hidden {
    display: none;
}

/*.select_device {*/
    /*min-width: 10em!important;*/
/*}*/

.vumeter {
    width: 15px;
    height: 35px;
    top: 150px;
    left: 45%;
    text-align: center;
    margin-left: 5px;
    border: 1px solid #a5e4b5;
}

.vu {
    padding: 0.1em 0.5em!important;
}

.canvas_vu {
    position: relative;
    top: 2.5px;
}

.timer {
    font-size: 3em!important;
    padding: 0.0em 0.2em!important;
}

.ui.massive.menu {
    font-size: 1.28571429rem;
}

.admin_table {
    cursor: pointer!important;
}

.admin_table .ui.table tr.warning, .ui.table td.warning {
    background: #aed6b7 !important;
    color: #20522c !important;
}

.admin_table .ui.selectable.table tr.warning:hover, .ui.table tr td.selectable.warning:hover, .ui.selectable.table tr:hover td.warning {
    background: #aed6b7 !important;
    color: #20522c !important;
}

.ui.table tr.active, .scoped-semantic-ltr .ui.table td.active {
    background: #f7ffe6 !important;
    color: #275b28 !important;
    font-weight: bold!important;
    /*color: #287ab7!important;*/
}

.ui.table tr.positive, .scoped-semantic-ltr .ui.table td.positive {
    background: #e1e6d4 !important;
    font-weight: normal!important;
    /*color: #2C662D;*/
}

.group_list {
    overflow-y:scroll;
    top:0px; left:0px;
    width:100%; height:270px;
}

.messages_list {
    overflow-y:scroll;
    flex: 1 0 auto;

    /* top:0px; left:0px;
    width:100%; height:400px; */
}

.disabled_list {
    overflow-y:scroll;
    top:0px; left:0px;
    width:100%; height:70px;
}

.preview_segment {
    width: 430px;
    height: 250px;
    cursor: pointer!important;
    background-color: silver!important;
}

.program_segment {
    width: 430px;
    height: 250px;
    background-color: silver!important;
}

.segment_conteiner {
    width: 460px;
    height: 920px;
}

.shidur_overlay {
    font-family: "Liberation Serif";
    line-height: 1.1285em;
    position: absolute;
    right: 50px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    background-color: blue;
    width: auto;
    padding: 0px 10px;
    z-index: 2147483647;
    float: right !important;
}


/*# sourceMappingURL=main.0992035c.css.map*/