/** Open Sans **/
/** Light */
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  src: url("/css_common/propios/fonts/Open_Sans/OpenSans-Light.ttf");
  font-style: light;
}

/** Regular */
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url("/css_common/propios/fonts/Open_Sans/OpenSans-Regular.ttf");
  font-style: regular;
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url("/css_common/propios/fonts/Open_Sans/OpenSans-SemiBold.ttf");
  font-style: semibold;
}

/** Bold */
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  src: url("/css_common/propios/fonts/Open_Sans/OpenSans-Bold.ttf");
  font-style: bold;
}

/** Montserrat Alternates **/
/** Light */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 300;
  src: url("/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Light.ttf");
  font-style: light;
}

/** Regular */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  src: url("/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Regular.ttf");
  font-style: regular;
}

@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 600;
  src: url("/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-SemiBold.ttf");
}

/** Bold */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 700;
  src: url("/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Bold.ttf");
  font-style: bold;
}

* {
  font-family: "Open Sans";
}

.montserrat {
  font-family: 'montserrat Alternates', sans-serif;
}

.openSans {
  font-family: 'Open Sans', sans-serif;
}

.montserratOriginal {
  font-family: 'montserrat', sans-serif;
}

.text {
  font-size: 1rem;
  font-weight: 400;
}

.text.title {
  font-size: 3.2rem;
}

.text.size-xxl {
  font-size: 4.5rem;
}

.text.size-xl {
  font-size: 2.5rem;
}

.text.size-l {
  font-size: 2.2rem;
}

.text.size-md2 {
  font-size: 2rem;
}

.text.size-md {
  font-size: 1.8rem;
}

.text.size-sm2 {
  font-size: 1.5rem;
}

.text.size-sm {
  font-size: 1.2rem;
}

.text.size-s {
  font-size: 1.1rem;
}

.text.size-xs {
  font-size: .8rem;
}

.text.semibold {
  font-weight: 600;
}

.text.bold {
  font-weight: 700;
}

.text.medium {
  font-weight: 500;
}

.text.light {
  font-weight: 400;
}

.text.capital {
  text-transform: capitalize;
}

.text.uppercase {
  text-transform: uppercase;
}

.text.underline {
  text-decoration: underline !important;
}

.text.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}

.text.elipsis-two-lines {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  max-height: 4rem;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2rem;
  margin-top: 1px;
}

.text.break-word {
  overflow-wrap: break-word;
}

.text.text-shadow {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.text.text-shadow-white {
  text-shadow: 3px 3px 3px rgba(255, 255, 255, 0.3);
}

.text.text-white {
  color: #fff;
}

.text.text-gray {
  color: #808080;
}

.text.text-darkGray {
  color: #707070;
}

.text.text-black {
  color: #000 !important;
}

.text.text-red, .text.alert-error {
  color: #fa225b;
}

.text.text-blue {
  color: #7a89ab;
}

.text.text-green, .text.alert-success {
  color: #62A215 !important;
}

.text.text-darkGreen {
  color: #053a05;
}

.text.text-classonlive-green {
  color: #62A215;
}

.text.text-classonlive-orange {
  color: #FF751A;
}

.text.text-classonlive-gray {
  color: #424e4f;
}

.text.text-blog-gray {
  color: #cccccc;
}

.text.center {
  text-align: center;
}

.text.left {
  text-align: left;
}

.text.right {
  text-align: right;
}

.modal .modal-dialog {
  max-width: 600px;
  margin: 30px auto;
  height: 100%;
  top: .5rem;
  min-width: 50%;
}

.modal .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-header .modal-title {
  width: 100%;
}

.modal .center {
  text-align: center;
}

.modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

.modal .modal-footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-footer .btn {
  border: 0px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}

.modal .modal-footer .btn-orange {
  background: #FF751A;
}

.modal .modal-footer .btn-orange:hover {
  background: #f46200;
}

.modal .modal-footer .btn-outline-secondary {
  border: 1px solid transparent;
  border-color: #6c757d;
}

/*loader principal*/
#backg {
  background: #b0c4de repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: .5;
  height: 10000px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999990;
  width: 100px;
  height: 100px;
  margin: -75px 0 0 -75px;
  border: 16px solid #fff;
  border-radius: 50%;
  border-top: 16px solid #00de00;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

/*fin loader*/
.loader {
  background: white repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 1;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cssload-loader {
  z-index: 99999;
  display: block;
  height: 6em;
  width: 6em;
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background: -moz-linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background-blend-mode: multiply;
  border-top: 5px solid #B3B3B3;
  border-left: 5px solid #B3B3B3;
  border-bottom: 5px solid #CCCCCC;
  border-right: 5px solid #CCCCCC;
  animation: cssload-roto 1.15s infinite linear;
  -o-animation: cssload-roto 1.15s infinite linear;
  -ms-animation: cssload-roto 1.15s infinite linear;
  -webkit-animation: cssload-roto 1.15s infinite linear;
  -moz-animation: cssload-roto 1.15s infinite linear;
}

.cssload-loader.classonlive {
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background: -moz-linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background-blend-mode: multiply;
  border-top: 5px solid #00C900;
  border-left: 5px solid #00C900;
  border-bottom: 5px solid #01DE01;
  border-right: 5px solid #01DE01;
}

@keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
  }
}

.container-loader-square {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader-square {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 33% 33%;
      grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 80px;
  height: 80px;
  border: 0;
}

.loader-square > div {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #2c3e50;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: loaderSquare 2s infinite linear;
          animation: loaderSquare 2s infinite linear;
}

.loader-square > div:nth-of-type(1), .loader-square > div:nth-of-type(5), .loader-square > div:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loader-square > div:nth-of-type(4), .loader-square > div:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loader-square > div:nth-of-type(2), .loader-square > div:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loader-square > div:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

.calendar-container {
  position: relative;
}

.calendar-container .container-loader-square {
  position: absolute;
  top: 3%;
  left: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 97%;
}

ul, li, a {
  text-decoration: none !important;
  list-style: none;
}

.customText {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  width: 100%;
}

.customText ul {
  text-decoration: inherit !important;
  list-style: disc;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText ol {
  display: block;
  list-style-type: decimal;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText li {
  display: list-item;
  text-align: -webkit-match-parent;
  text-decoration: inherit !important;
  list-style: inherit !important;
  padding: inherit !important;
  padding-left: 0 !important;
}

.note-toolbar {
  position: relative;
  z-index: inherit !important;
}

a {
  cursor: pointer;
}

.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}

p {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
}

.contentSalaWebinar {
  height: 100%;
}

.bigSection {
  height: 90%;
}

@media (max-width: 1024px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 10px;
  }
}

body.noscroll {
  overflow: hidden;
}

.btn-classonlive {
  background-color: #00bc00;
  border: 0px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  height: 50px;
}

.btn-classonlive:hover {
  background-color: #00de00;
  color: #fff;
  border: 0px;
}

.btn-orange {
  background: #FF751A;
}

.btn-orange:hover {
  background: #f46200;
}

.btn {
  outline: none;
  border-radius: 3px !important;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.btn.btn-green {
  background: #62A215 !important;
  color: #fff;
}

.btn.btn-green:hover {
  opacity: .8;
}

.btn.btn-orange {
  background: #FF751A;
  color: #fff;
}

.btn.btn-orange:hover {
  opacity: .8 !important;
}

.btn.btn-line-green {
  background: #fff;
  color: #62A215;
  border: 2px solid #62A215;
}

.btn.btn-line-green:hover {
  background: #62A215;
  color: #fff;
}

.btn.btn-line-orange {
  background: #fff;
  color: #FF751A;
  border: 2px solid #FF751A;
}

.btn.btn-line-orange:hover {
  background: #FF751A;
  color: #fff;
}

.btn.btn-grey {
  color: #1b1d1e !important;
  background: #758789 !important;
  color: white !important;
}

.btn.btn-white {
  color: #1b1d1e !important;
  background: white !important;
  border: 1px solid #1b1d1e !important;
}

.btn.btn-white:hover {
  background: lightgray !important;
}

.panel-default > .panel-heading, .panel {
  background-color: #e6e6e6;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: initial !important;
  top: 35px !important;
}

.note-popover {
  display: none;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.note-editor.note-frame .note-editing-area .note-editable {
  padding: 10px;
  overflow: auto;
  color: #000;
  word-wrap: break-word;
  background-color: #fff;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.bg_sala {
  background-color: #1b1d1e;
}

.loader {
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.boardSelected {
  background: gray;
  color: black;
  border-radius: 5px;
}

.navbar-salas {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.navbar-salas.full {
  width: 100%;
}

.navbar-salas .navbar-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          width: 20%;
}

.navbar-salas .navbar-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  width: 80%;
}

.navbar-salas .teacherOption, .navbar-salas .option-container,
.navbar-salas .attendeeOption, .navbar-salas .navbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
      align-items: center;
}

.navbar-salas .teacherOption .micro-cam, .navbar-salas .option-container .micro-cam,
.navbar-salas .attendeeOption .micro-cam, .navbar-salas .navbar-right .micro-cam {
  margin-right: 2rem;
}

.navbar-salas .teacherOption .options, .navbar-salas .option-container .options,
.navbar-salas .attendeeOption .options, .navbar-salas .navbar-right .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-salas .teacherOption .options .btn_rec, .navbar-salas .option-container .options .btn_rec,
.navbar-salas .attendeeOption .options .btn_rec, .navbar-salas .navbar-right .options .btn_rec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          padding: 5px 5px;
          padding-right: 10px;
}

.navbar-salas .teacherOption .options .btn, .navbar-salas .option-container .options .btn,
.navbar-salas .attendeeOption .options .btn, .navbar-salas .navbar-right .options .btn {
  margin: 0 .25rem;
}

.navbar-salas .teacherOption .options .li-dropdownShare, .navbar-salas .option-container .options .li-dropdownShare,
.navbar-salas .attendeeOption .options .li-dropdownShare, .navbar-salas .navbar-right .options .li-dropdownShare {
  margin: 0 1rem;
}

.navbar-salas .teacherOption .btn-secondary, .navbar-salas .option-container .btn-secondary,
.navbar-salas .attendeeOption .btn-secondary, .navbar-salas .navbar-right .btn-secondary {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
}

.navbar-salas .teacherOption .optionBar .dropdown-toggle::after,
.navbar-salas .teacherOption .dropdown .dropdown-toggle::after, .navbar-salas .option-container .optionBar .dropdown-toggle::after,
.navbar-salas .option-container .dropdown .dropdown-toggle::after,
.navbar-salas .attendeeOption .optionBar .dropdown-toggle::after,
.navbar-salas .attendeeOption .dropdown .dropdown-toggle::after, .navbar-salas .navbar-right .optionBar .dropdown-toggle::after,
.navbar-salas .navbar-right .dropdown .dropdown-toggle::after {
  border: 0;
}

.section-video {
  width: 80%;
  margin-right: 0px;
  height: 100%;
}

.section-video .container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.section-video.full {
  width: 100%;
}

.section-video .fullScreenTeacherButton,
.section-video .btn-fullscreen {
  background: #000;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-video .videOption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  bottom: 0;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: -30px;
  float: left;
}

.section-video .videOption .text {
  margin: 0;
  padding: .5rem;
}

.section-video .videoCam {
  width: 100%;
  background-color: #0C0C0C;
  position: relative;
  margin-bottom: 15px;
}

.colArea {
  margin-top: 1rem;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn-cancel {
  background-color: #fff;
  color: #ac2925;
  border-color: #ac2925;
  margin-right: 5px;
  padding: 10px 15px;
}

.btn-cancel:hover {
  background-color: #fff;
  color: #ac2925;
  border-color: #ac2925;
}

#board {
  height: 100%;
  width: 100%;
  margin-right: 50px;
  position: absolute;
  top: 30px;
  border: 1px solid grey;
}


#reconect-section {
  position: fixed;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 4px 8px;
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (width: 360px) and (max-width: 800px) {
  #reconect-section {
    bottom: 7%;
  }
}

#reconect-section:hover {
  opacity: 1;
  cursor: pointer;
}

#reconect-section .reconnectButton {
  margin-left: 1rem;
}

#reconect-section .reconnectButton .text {
  margin: 0;
}

.control {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 25px;
  cursor: pointer;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control .control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #aaaaaa;
  border-radius: 15px;
}

/* Hover and focus states */
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}

/* Checked state */
.control input:checked ~ .control__indicator {
  background: #00bc00;
}

/* Hover state whilst checked */
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #008800;
}

/* Check mark */
.control__indicator:after {
  position: absolute;
  display: none;
  content: '';
}

/* Show check mark */
.control input:checked ~ .control__indicator:after {
  display: block;
}

/* Checkbox tick */
.control--checkbox .control__indicator:after {
  top: 2px;
  left: 5px;
  width: 6px;
  height: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

/* Disabled tick colour */
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

/* Radio button inner circle */
.control--radio .control__indicator:after {
  top: 7px;
  left: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Disabled circle colour */
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

#uploadPdf-modal .progress-bar-success {
  background: #62A215;
}

#errorWS-modal .modal-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#errorWS-modal .modal-header .text {
  width: 100%;
}

#errorWS-modal .modal-dialog {
  height: auto;
}

.btn_stop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#youtubeVideo {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

#youtubeVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.navbar-salas.mobile-landscape {
  margin-right: 50px;
  width: calc(100% - 50px);
}

.navbar-salas.mobile-landscape.extend {
  /* margin-right: 280px; */
  width: 80%;
}

@media (width: 360px) and (max-width: 800px) {
  .navbar-salas {
    width: 100%;
  }
}

.navbar-salas.full {
  margin-right: 0;
}

.section-video.mobile-landscape {
  width: calc(100% - 50px);
  margin: 0 auto;
}

.section-video.mobile-landscape.extend {
  width: 80%;
}

@media (width: 360px) and (max-width: 800px) {
  .section-video {
    width: 100%;
  }
}

.section-video.full {
  width: 100%;
}

.section-video .videoTeachersContainer .videoCam {
  position: relative;
}

.section-video .videoTeachersContainer .btn-fullscreen {
  position: absolute;
  margin-left: 0;
  margin-bottom: 0;
  width: 1.6rem;
  top: 0;
  z-index: 2;
  border-radius: 0;
}

.section-video .webinarContainer {
  position: relative;
  height: 100%;
}

.section-video .webinarContainer .backToShareScreenBtn {
  position: absolute;
  left: 6rem;
  top: 1rem;
  font-size: 2em;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  z-index: 99999;
}

.section-video .webinarContainer .webinarVisualization {
  width: 90%;
  margin: 0 auto;
  background-color: black;
}

.section-video #youtubeVideo {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.section-video #hlsArea {
  position: relative;
  width: 96%;
  /*height: 0;*/
  padding-bottom: 56.25%;
}

.section-right-webinar {
  z-index: 99999;
  position: fixed;
  right: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: #f9f9f9;
  -webkit-box-shadow: 6px 0px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 0px 5px rgba(0, 0, 0, 0.1);
}

.section-right-webinar.mobile-landscape {
  width: 50px;
}

.section-right-webinar.mobile-landscape #wrapper {
  display: none;
  overflow-y: scroll;
}

.section-right-webinar.mobile-landscape .ul-navbar-phone {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-right-webinar.mobile-landscape .container-fluid {
  padding: 0;
}

@media (width: 360px) and (max-width: 800px) {
  .section-right-webinar.mobile-landscape .ul-navbar-phone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.section-right-webinar.mobile-landscape.extend {
  width: 280px;
}

.section-right-webinar.mobile-landscape.extend #wrapper {
  display: block;
}

.input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control {
  flex: 0 0 auto;
}

.navbar-salas .dropdown-menu .specialOption, .navbar-salas .dropdown-menu .specialTeacherOption {
  display: none;
}

.containerShare {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  -ms-flex: 0 0 70% !important;
  flex: 0 0 70% !important;
  max-width: 100% !important;
}

.container-flex > .videoTeachersContainer  {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 20%;
  margin: 0 auto !important;
  top: 5% !important;
  flex: 0 0 20% !important;
  max-width: 20% !important;
  height: 90%;
  padding: 0 !important;
}

.section-video.full > .container-flex > .containerShare {
  width: 80%;
  -ms-flex: 0 0 80% !important;
  flex: 0 0 80% !important;
}

.pdf-outerdiv {
  padding: 0 !important;
  left: 0 !important;
}

.attendeeOnlyAudio > .embed-responsive {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.btn-OpenChat, .btn-CloseChat {
  padding: 10px 15px 10px 15px;
  border-radius: 4px 0 0 4px;
  background-color: #f9f9f9;
  text-align: center;
  float: right;
  position: fixed;
  z-index: 999;
  cursor: pointer;
  bottom: 50%;
  opacity: 1;
}

.btn-OpenChat {
  right: 0;
}

.btn-CloseChat {
  right: 100%;
}

#hlsVideo {
  width: 100% !important;
}

.template_privateMessage .input-group {
  justify-content: space-around;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_privateMessages .template_privateMessage {
  background-color: #f9f9f9 !important;
  border-bottom: 1px solid #797979;
  border-radius: 0 !important;
}

.section-right-webinar.animated.fadeInRight > .navbar.navbar-default.navbar-phone-webinar {
  height: 5% !important;
}

.section-right-webinar #wrapper {
  width: 100%;
  height: 95% !important;
}

.section-right-webinar #wrapper .title-section{
  height: 5% !important;
}

@media (max-width: 800px) {
  html {
    font-size: 12px;
    height: 100%;
  }

  html body {
    height: 100%;
  }

  .section-video {
    width: 100%;
  }

  .screenSharingButton {
    display: none !important;
  }

  .modal-dialog {
    width: calc(100% - 20px);
  }

  .section-right-webinar.animated.fadeInRight.mobile-landscape.extend > .navbar.navbar-default.navbar-phone-webinar {
    border-bottom: 1px solid #efefef !important;
  }

  .section-right-webinar.mobile-landscape {
    width: 100%;
    top: inherit;
    bottom: 0;
  }

  .section-right-webinar.mobile-landscape.extend {
    width: 100%;
    height: 100%;
  }

  #check-modal {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  #check-modal-student {
    overflow-x: hidden;
    overflow-y: scroll;
  }

  #check-modal.modal {
    height: auto;
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  .modal-dialog {
    margin-top: 0 !important;
  }

  .camera-container .col-md-4 {
    margin: auto;
  }

  .form-sendMessageChat .input-group {
    align-items: center;
    justify-content: space-around;
  }

  .navbar-salas {
    width: 100%;
  }

  .navbar.navbar-salas.mobile-landscape {
    width: 100%;
  }

  .navbar-salas .navbar-header {
    height: auto;
    width: 20%;
  }

  .containerShare {
    width: 100%;
  }

  .containerShare > .pdfArea > #pdfShare {
    height: 100%;
  }

  .containerShare > .pdfArea > #pdfShare > .pdf-outerdiv {
    padding: 0 !important;
    height: 100%;
  }

  .containerShare > .pdfArea > #pdfShare > .pdf-outerdiv > .pdf-toolbar {
    left: 50% !important;
    top: 1rem !important;
  }

  .containerShare > .pdfArea > #pdfShare > .pdf-outerdiv > .pdf-viewer {
    top: 5.5rem !important;
    height: 100%;
  }

  .containerShare > .pdfArea > #pdfShare > .pdf-outerdiv > .pdf-toolbar > .pdf-button > * {
    padding: 1rem !important;
  }

  .navbar-salas .teacherOption .micro-cam,
  .navbar-salas .option-container .micro-cam,
  .navbar-salas .attendeeOption .micro-cam,
  .navbar-salas .navbar-right .micro-cam {
    margin-right: 0;
    display: flex;
  }

  .btn-OpenChat {
    display: none !important;
  }

  #reconect-section {
    display: none !important;
  }

  .videOption {
    display: none !important;
  }

  .dropdown-menu {
    right: 0;
    left: auto;
  }

  .attendeeOption > .btn-icon-menu > * {
    font-size: 2rem;
  }

  .fullScreenTeacherButton,
  .fullScreenPresenterButton {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
  }

  .fullScreenTeacherButton > *,
  .fullScreenPresenterButton > * {
    color: transparent !important;
  }

  .section-right-webinar.animated.fadeInRight > .navbar.navbar-default.navbar-phone-webinar {
    height: 100% !important;
  }

  .stateBoard {
    display: none !important;
  }

  #board {
    pointer-events: none !important;
  }

  .navbar-salas .teacherOption .options .li-dropdownShare,
  .navbar-salas .option-container .options .li-dropdownShare,
  .navbar-salas .attendeeOption .options .li-dropdownShare,
  .navbar-salas .navbar-right .options .li-dropdownShare {
    margin: auto;
  }
}

.navbar-salas > .navbar-header > .salaLogotipo {
  width: auto;
  max-width: 220px;
  max-height: 55px;
}

@media (max-width: 850px) {
  .navbar-salas > .navbar-header > .salaLogotipo {
    width: 100% !important;
  }
}

.presenterCameraOptions {
  width: 50%;
}

@media (max-width: 800px)  and (orientation: portrait) {
  #check-modal .modal-dialog {
    width: 90%;
    margin: 0 auto;
    top: .5rem;
  }

  .modal-dialog .modal-content .modal-footer.footerTest .btn-container {
    flex-direction: column;
    justify-content: center;
  }

  .modal-dialog .modal-content .modal-footer.footerTest .btn-container button:not(:first-child) {
    margin-top: 10px;
  }

  .modal-dialog .modal-content .modal-footer.footerTest .btn-container button {
    margin-left: 0;
  }

  .section-right-webinar.animated.fadeInRight.mobile-landscape.extend > .navbar.navbar-default.navbar-phone-webinar {
    height: 7% !important;
  }

  .section-right-webinar #wrapper {
    width: 100%;
    height: 93% !important;
  }

  .section-right-webinar #wrapper .menuAccordionRight {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .section-right-webinar #wrapper .menuAccordionRight .form-sendMessageChat,
  .section-right-webinar #wrapper .menuAccordionRight .sendMessageQuestion {
    height: 15% !important;
    background: #f9f9f9 !important;
  }

  .sendEncuesta, .zoomButton, .sendReview, .configOption {
    display: none !important;
  }

  .navbar-salas .dropdown-menu .specialOption,  .navbar-salas .dropdown-menu .specialTeacherOption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
  }

  .section-video .container-flex {
    margin-top: 10%;
    flex-direction: column;
  }

  .section-video .videoTeachersContainer {
    width: 100%;
    height: 100%;
    margin: 0 auto !important;
    top: 0 !important;
    margin-left: 0 !important;
    flex-grow: 0 !important;
    max-width: 100% !important;
    flex: 0 0 25% !important;
  }

  .section-video .videoTeachersContainer .container-videoCam {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .section-video .videoTeachersContainer .container-videoCam .videoCam {
    width: 40%;
    margin-right: 5%;
  }

  .section-video .videoTeachersContainer .container-videoCam .videoCam:last-child {
    margin-right: 0;
    margin-left: 5%;
  }

  .section-right-webinar #wrapper .menuAccordionRight .messagesArea1,
  .section-right-webinar #wrapper .menuAccordionRight .questionsArea1,
  .section-right-webinar #wrapper .menuAccordionRight .privateMessage {
    height: 75% !important;
  }

  .section-right-webinar.mobile-landscape {
    height: 8%;
  }
}

@media (max-width: 800px)  and (orientation: landscape) {
  .section-video .videoCam {
    width: 65% !important;
  }

  #check-modal .modal-dialog {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    top: .5rem;
  }

  .modal-body .row .col-xs-6.col-md-6 {
    width: 50%;
  }

  #testCamera {
    width: 50% !important;
  }

  .section-right-webinar.animated.fadeInRight.mobile-landscape.extend > .navbar.navbar-default.navbar-phone-webinar {
    height: 15% !important;
  }

  .section-right-webinar #wrapper {
    width: 100%;
    height: 90% !important;
  }

  .section-right-webinar #wrapper .menuAccordionRight {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .section-right-webinar #wrapper .menuAccordionRight .form-sendMessageChat,
  .section-right-webinar #wrapper .menuAccordionRight .sendMessageQuestion {
    height: 20% !important;
    background: #f9f9f9 !important;
  }

  .section-video.mobile-landscape .container-flex {
    justify-content: center;
    align-items: center;
    height: 82%;
  }

  .section-video.mobile-landscape .videoTeachersContainer {
    margin: 0 auto !important;
    top: 0 !important;
    margin-left: 0 !important;
  }

  .section-right-webinar #wrapper .menuAccordionRight .messagesArea1,
  .section-right-webinar #wrapper .menuAccordionRight .questionsArea1,
  .section-right-webinar #wrapper .menuAccordionRight .privateMessage {
    height: 75% !important;
  }

  #askForPresenter-modal > .modal-dialog > .modal-content {
    height: 90%
  }

  .previewPromo {
    width: 50% !important;
    margin: 0 auto;
  }

  .section-video .webinarContainer .webinarVisualization {
    width: 80%;
  }

  .section-right-webinar.mobile-landscape {
    height: 12%;
  }
}

#askForPresenter-modal > .modal-dialog > .modal-content > .modal-body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

#askForPresenter-modal > .modal-dialog > .modal-content > .modal-body > .form-group,
#askForPresenter-modal > .modal-dialog > .modal-content > .modal-body > .test-micro-content {
  margin-right: -15px;
  margin-left: -15px;
}

.section-right-webinar.mobile-landscape.extend .ul-navbar-phone {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.section-right-webinar .ul-navbar-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.section-right-webinar .ul-navbar-phone .btn-chat {
  color: #a9abad;
}

.section-right-webinar .ul-navbar-phone .btn-chat:hover, .section-right-webinar .ul-navbar-phone .btn-chat:focus {
  color: #374142;
}

.section-right-webinar .ul-navbar-phone li.active {
  border-bottom: 2px solid #c0c0c0;
}

.section-right-webinar .ul-navbar-phone li.active .btn-chat {
  color: black;
}

.section-right-webinar .ul-navbar-phone li:focus {
  border-top: 2px solid #1b1d1e;
}

.section-right-webinar #wrapper {
  width: 100%;
  height: 100%;
}

.section-right-webinar #wrapper .menuAccordionRight {
  height: 100%;
  padding: 0;
}

@media (max-width: 800px) {
  .section-right-webinar #wrapper .menuAccordionRight {
    overflow-y: scroll;
  }
}

.section-right-webinar #wrapper .menuAccordionRight .itemChat,
.section-right-webinar #wrapper .menuAccordionRight .itemQuestions,
.section-right-webinar #wrapper .menuAccordionRight .itemAttendees,
.section-right-webinar #wrapper .menuAccordionRight .itemPrivateMessages,
.section-right-webinar #wrapper .menuAccordionRight .itemPromo {
  height: 100%;
  position: relative;
  padding: 1rem;
}

.section-right-webinar #wrapper .menuAccordionRight .itemChat .title-section,
.section-right-webinar #wrapper .menuAccordionRight .itemQuestions .title-section,
.section-right-webinar #wrapper .menuAccordionRight .itemAttendees .title-section,
.section-right-webinar #wrapper .menuAccordionRight .itemPrivateMessages .title-section,
.section-right-webinar #wrapper .menuAccordionRight .itemPromo .title-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid black;
}

.section-right-webinar #wrapper .menuAccordionRight .itemChat .title-section button,
.section-right-webinar #wrapper .menuAccordionRight .itemQuestions .title-section button,
.section-right-webinar #wrapper .menuAccordionRight .itemAttendees .title-section button,
.section-right-webinar #wrapper .menuAccordionRight .itemPrivateMessages .title-section button,
.section-right-webinar #wrapper .menuAccordionRight .itemPromo .title-section button {
  background: transparent;
}

.section-right-webinar #wrapper .menuAccordionRight .itemChat .title-section button:focus,
.section-right-webinar #wrapper .menuAccordionRight .itemQuestions .title-section button:focus,
.section-right-webinar #wrapper .menuAccordionRight .itemAttendees .title-section button:focus,
.section-right-webinar #wrapper .menuAccordionRight .itemPrivateMessages .title-section button:focus,
.section-right-webinar #wrapper .menuAccordionRight .itemPromo .title-section button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.section-right-webinar #wrapper .menuAccordionRight .messagesArea1,
.section-right-webinar #wrapper .menuAccordionRight .questionsArea1,
.section-right-webinar #wrapper .menuAccordionRight .privateMessage {
  /* overflow: scroll; */
  overflow-x: hidden;
  /* margin-bottom: 3rem; */
  padding-right: 1rem;
  height: 80%;
  padding-left: 0;
}

.section-right-webinar #wrapper .menuAccordionRight .messagesArea1 .msg_container,
.section-right-webinar #wrapper .menuAccordionRight .questionsArea1 .msg_container,
.section-right-webinar #wrapper .menuAccordionRight .privateMessage .msg_container {
  background-color: rgba(216, 222, 214, 0.28);
  margin-top: .8rem;
  border-radius: 10px;
  margin-left: auto;
  padding: .5rem;
}

.section-right-webinar #wrapper .menuAccordionRight .messagesArea1 .msg_container .messages,
.section-right-webinar #wrapper .menuAccordionRight .questionsArea1 .msg_container .messages,
.section-right-webinar #wrapper .menuAccordionRight .privateMessage .msg_container .messages {
  word-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.section-right-webinar #wrapper .menuAccordionRight .numberMenu {
  background: #424E4F;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-size: .75rem !important;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_attendees,
.section-right-webinar #wrapper .menuAccordionRight .ul_privateMessages,
.section-right-webinar #wrapper .menuAccordionRight .ul_promotions {
  height: 90%;
  overflow-x: hidden;
  margin-bottom: 3em;
  padding-right: 0em;
  padding-left: 0;
}


.section-right-webinar #wrapper .menuAccordionRight .ul_attendees .template_attendee,
.section-right-webinar #wrapper .menuAccordionRight .ul_privateMessages .template_attendee,
.section-right-webinar #wrapper .menuAccordionRight .ul_promotions .template_attendee {
  background-color: rgba(216, 222, 214, 0.28);
  margin-top: .8rem;
  border-radius: 10px;
  margin-left: auto;
  padding: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_attendees .template_attendee .btn-group-attendees,
.section-right-webinar #wrapper .menuAccordionRight .ul_privateMessages .template_attendee .btn-group-attendees,
.section-right-webinar #wrapper .menuAccordionRight .ul_promotions .template_attendee .btn-group-attendees {
  margin-top: .8rem;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_attendees .template_attendee {
  flex-direction: row;
  border-bottom: 1px solid #797979;
  margin-top: 0;
  border-radius: 0;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_attendees .template_attendee .btn-group-attendees {
  margin-top: 0;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_promotions .template_promo {
  margin-left: auto;
  padding: .5rem;
  border-bottom: 1px solid #797979 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: row;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_promotions .template_promo .btn-group-promos {
  margin-top: .8rem;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_promotions .template_promo .btn-group-promos button {
  background-color: #f9f9f9;
}


/* .section-right-webinar #wrapper .menuAccordionRight .ul_privateMessages,
.section-right-webinar #wrapper .menuAccordionRight .ul_attendees,
.section-right-webinar #wrapper .menuAccordionRight .ul_promotions {
  height: 85%;
} */

.section-right-webinar #wrapper .menuAccordionRight .ul_privateMessages .template_privateMessage,
.section-right-webinar #wrapper .menuAccordionRight .ul_attendees .template_privateMessage,
.section-right-webinar #wrapper .menuAccordionRight .ul_promotions .template_privateMessage {
  background-color: rgba(216, 222, 214, 0.28);
  margin-top: 2px;
  border-radius: 10px;
  padding: 1rem;
}

.section-right-webinar #wrapper .menuAccordionRight .ul_privateMessages .template_privateMessage .privateMessage,
.section-right-webinar #wrapper .menuAccordionRight .ul_attendees .template_privateMessage .privateMessage,
.section-right-webinar #wrapper .menuAccordionRight .ul_promotions .template_privateMessage .privateMessage {
  /* overflow: scroll; */
  height: 100px;
  overflow-x: hidden;
  margin-bottom: 3em;
  padding-right: 1em;
}

.section-right-webinar #wrapper .menuAccordionRight .form-sendMessageChat,
.section-right-webinar #wrapper .menuAccordionRight .sendMessageQuestion {
  width: 100%;
  padding: 20px 6px;
  background: #fafafa;
  height: 15%;
  display: flex;
  align-items: center;
  /* position: fixed;
  bottom: 0;
  left: 0; */
}

.section-right-webinar #wrapper .menuAccordionRight .emojiPickerIconWrap {
  width: 80% !important;
}

.section-right-webinar #wrapper .menuAccordionRight .emojiPickerIconWrap .emojiPickerIcon {
  height: 50px !important;
  width: 50px !important;
}

.section-right-webinar #wrapper .menuAccordionRight #collapseExample .privateMessage {
  /* overflow: scroll; */
  height: 100px;
  overflow-x: hidden;
  margin-bottom: 3em;
  padding-right: 1em;
}

.feature-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.privateChat-modal .messagePrivate {
  margin-bottom: 1rem;
}

#launchPromo-modal .img-modal,
#launchPromo-modal .imgPromo {
  margin: 1rem 0;
}

@media (max-width: 800px) {
  #launchPromo-modal .imgPromo {
    width: auto;
    height: 100px;
  }
}

#launchPromo-modal .modal-lg {
  max-width: 800px;
}

#launchPromo-modal .previewPromo {
  width: 280px;
  background-color: #f9f9f9;
  border: 1px solid #e2e2e2;
  max-height: 400px;
  height: 100vh;
  margin: 0 auto;
  padding: 25px 15px;
  text-align: center;
}

#launchPromo-modal .btnPromo {
  width: 100%;
  margin: 15px 0;
  background-color: #ff7519;
  color: #fff;
  opacity: 1;
}

#solutionPromo-modal #promoClicksTable {
  margin-top: 1rem;
}

#solutionPromo-modal #promoClicksTable thead {
  display: block;
  width: 100%;
}

#solutionPromo-modal #promoClicksTable tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#solutionPromo-modal #promoClicksTable tr th, #solutionPromo-modal #promoClicksTable tr td {
  width: 50%;
}

#solutionPromo-modal #promoClicksTable .clickers {
  display: block;
  height: 150px;
  overflow-y: auto;
}

.btn-newCream {
  background-color: transparent;
}

.previewPromo {
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #e2e2e2;
  max-height: 400px;
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.previewPromo .imgPromo {
  width: 100%;
  height: auto;
  margin: 1rem 0;
}

.previewPromo .btnPromoUser {
  width: 100%;
}

#packetsLost {
  z-index: 12000;
  position: fixed;
  bottom: 50px;
  background-color: rgba(243, 61, 61, 0.4);
  padding: 8px 20px;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.installExtensionChromeButton {
  margin-right: 1rem;
}

@media (max-width: 800px) {
  .installExtensionChromeButton {
    margin: 0;
  }
}

.camera-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}

.btn-container .btn:last-child {
  margin-left: 1rem;
}

.testMicroInput {
  margin-left: 0 !important;
}

.test-micro-content {
  margin-top: 1rem;
}

.chatMessageWebinar1,
.questionMessage1,
.chatPrivateMessageInput {
  width: 70% !important;
  overflow: hidden;
  margin-right: 15px !important;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border-top-right-radius: 10px !important;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px;
  resize: none;
}

.chatSendButtonWebinar1,
.chatSendQuestionButton1 {
  padding: .9rem;
}

.blink {
  animation: blink 2s steps(5, start) infinite;
  -webkit-animation: blink 1s steps(5, start) infinite;
  color: orange;
}

.containerShare > .pdfArea > #pdfShare > .pdf-outerdiv > .pdf-viewer {
  height: 100% !important;
}

.containerShare > .pdfArea > #pdfShare > .pdf-outerdiv > .pdf-viewer .pdf-drag {
  transform: inherit !important;
}

a.btn-share:not([href]):not([tabindex]) {
  color: #fff;
}

.btn-group-attendees > .btn-default {
  padding: 1px 6px;
}

.fullScreenButton.newFullScreen {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink {
  to {
    visibility: hidden;
  }
}
