/* app/assets/stylesheets/share/popup.css */
.popup {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section#rateCmp {
  width: 100%;
  margin: 50px 0 50px 0;
  background-color: rgb(167, 152, 152);
}
button#rateCtrl_sendBtn {
  height: 40px;
  margin: 2% 0 0 2%;
}
.closeCmpBtn {
  font-size: 22px;
  float: right;
  cursor: pointer;
}
.leftCmpBtn {
  font-size: 22px;
  float: left;
  cursor: pointer;
}
.rating {
  font-size: 38px;
  cursor: grab;
  float: left;
}
.rating > span {
  opacity: 60%;
}
.rating > span:hover {
  opacity: 100%;
  font-size: 44px;
}
[data-tooltip] {
  display: inline-block;
  position: relative;
  cursor: help;
  padding: 4px;
}
[data-tooltip]:before {
  content: attr(data-tooltip);
  display: none;
  position: absolute;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1.4;
  min-width: 100px;
  text-align: center;
  border-radius: 4px;
}
[data-tooltip-position=top]:before {
  bottom: 100%;
  margin-bottom: 6px;
}
[data-tooltip]:after {
  content: "";
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  display: block;
  z-index: 50;
}
span.clicked {
  opacity: 100%;
  font-size: 48px;
}

/* app/assets/stylesheets/share/trix.css */
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}
trix-toolbar * {
  box-sizing: border-box;
}
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: rgb(239, 206, 206);
}
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}
@media (max-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}
trix-toolbar .trix-button-group[data-trix-button-group=file-tools] {
  display: none !important;
}
.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}
.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}
.trix-content li {
  margin-left: 1em;
}
.trix-content [dir=rtl] li {
  margin-right: 1em;
}
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}
.trix-content img {
  max-width: 100%;
  height: auto;
}
body.dark-theme trix-editor {
  background-color: #2d2d2d;
  color: #e0e0e0;
  border-color: #555;
}
body.dark-theme trix-toolbar .trix-button-group {
  border-color: #555;
  background-color: #2d2d2d;
}
body.dark-theme trix-toolbar .trix-button {
  color: #e0e0e0 !important;
  background: #4a4a4a !important;
  border-bottom-color: #555;
}
body.dark-theme trix-toolbar .trix-button:hover {
  background: #5a5a5a !important;
}
body.dark-theme trix-toolbar .trix-button:not(:first-child) {
  border-left-color: #555;
}
body.dark-theme trix-toolbar .trix-button.trix-active {
  background: #6a6a6a !important;
  color: #fff !important;
}
body.dark-theme trix-toolbar .trix-button--icon::before {
  filter: invert(1);
}
body.dark-theme .trix-content pre {
  background-color: #3d3d3d;
  color: #e0e0e0;
}

/* app/assets/stylesheets/user/styles.css */
:root {
  --main-text-color: #e6a756;
  --light-grey-bg-color:hsla(0,0%,100%,.85);
  --light-s2-bg-color: rgba(230, 167, 86, .9);
  --dark-grey-bg-color:hsla(0,0%,100%,.85);
  --dark-modal-grey-bg-color:hsla(42, 39%, 55%, 0.85);
  --dark-modal-text-color:hsla(0,0%,100%,.85);
  --dark-theme-body-bg-color: #1a1a1a;
  --dark-theme-text-color: #e0e0e0;
  --dark-theme-navbar-bg-color: #2d2d2d !important;
  --dark-s2-bg-color: rgba(112, 79, 36, .9);
  font-family:
    "Lucida Console",
    "Courier New",
    monospace;
}
html {
  margin: 0px auto;
  max-width: 1400px;
}
body {
  margin: 0;
  background: rgb(241, 242, 244) no-repeat fixed center;
}
a.card-link,
a#bSignUp_terms {
  color: var(--main-text-color);
  cursor: pointer;
}
img {
  padding-bottom: 5px;
}
.cover {
  object-fit: cover;
  width: 1200px;
}
.containerV {
  max-width: 760px;
  margin: auto;
  padding: 4px 10px 0 10px;
}
.center {
  margin-left: 10%;
}
.page-container {
  padding: 100px 10px 30px 10px;
}
.item-bootstrap {
  margin-bottom: 10px;
}
.panel-heading {
  width: 100%;
  background-color: rgb(208, 208, 216);
}
.panel-body {
  overflow-y: scroll;
  width: 100%;
}
.panel .slidedown .glyphicon,
.chat .glyphicon {
  margin-right: 5px;
}
#topNav-ctrl h5 {
  color: var(--main-text-color);
}
#showCctr,
#showP-ctrl {
  background-color: aliceblue;
}
input[type=checkbox] {
  transform: scale(0.8);
  margin: 10px;
}
#main-content {
  min-height: 800px;
  background: linear-gradient(rgba(155, 153, 235, 0.1), rgba(49, 19, 216, 0.1)), url("/assets/bg-c610c08a.jpg") no-repeat fixed center;
}
li.active {
  border-bottom: 1px solid #fff;
}
ul.navbar-nav {
  margin-left: 20%;
}
.dropdown:hover .dropdown-menu {
  display: block;
  margin: -2px 0 0 -40px;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--main-text-color);
}
.navbar-light .navbar-nav .nav-link {
  color: var(--main-text-color);
  font-weight: 400;
  font-size: 1.2rem;
  font-family: Raleway;
}
.nav-item:hover {
  background-color: rgba(240, 239, 228, 0.3);
}
.navbar-toggler {
  background-color: var(--main-text-color);
  margin-right: 10px;
}
.dropdown-item {
  padding: .25rem 1rem;
  cursor: pointer;
}
.dropdown-menu a.dropdown-item:hover {
  background-color: var(--main-text-color);
}
.intro-block {
  background-color: rgb(238, 233, 225);
  padding: 40px;
}
.intro-img {
  margin: 0 0 -10px -50px;
  height: auto;
}
.alert {
  position: fixed;
  width: 90%;
  z-index: 1500;
}
#alert {
  display: none;
  padding: 10px auto;
  top: 25px;
  right: 0;
  width: 100%;
  border: 3px solid #73AD21;
  background-color: black;
  z-index: 1500;
}
#alertMess a {
  color: #cf0c26;
  cursor: pointer;
}
#S2 {
  margin-top: -85px;
  background: var(--light-s2-bg-color);
}
.site-heading .site-heading-upper {
  display: block;
  font-weight: 350;
}
#loginCtrlMainPanel {
  background: rgb(228, 237, 247);
}
.red {
  background: rgb(238, 90, 184);
}
.green {
  background: rgb(11, 207, 11);
}
.btn.fa-toggle-on {
  color: rgb(11, 207, 11);
  font-size: 48px;
}
.btn.fa-toggle-off {
  color: red;
  font-size: 48px;
}
.chat {
  list-style: none;
  margin: 0;
  padding: 0;
}
.chat li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #B3A9A9;
}
.chat li.left .chat-body {
  float: left;
  border-radius: 25px;
  background: rgba(240, 69, 203, 0.5);
  width: 70%;
}
.chat li.right .chat-body {
  float: right;
  border-radius: 25px;
  background: rgba(157, 238, 133, 0.5);
  width: 70%;
}
.primary-font {
  padding: 0 10px 0 10px;
}
.chat li .chat-body p {
  margin: 0;
  color: #777777;
}
.modal-dialog {
  max-width: 700px;
}
.modal-content {
  background-color: #fafaf9;
  padding: 10px;
}
.flex-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 900px;
  padding: 10px;
}
#show#ChatMain,
#show#ChatMain {
  margin: 0 -15px 0 -15px;
}
#pcandidate {
  background-color: var(--light-grey-bg-color);
}
.flex-item-left {
  flex: 190px;
}
.flex-item-midle {
  padding-bottom: 4px;
  flex: 50;
}
.flex-item-right {
  padding-top: 4px;
  flex: 10%;
}
.wide {
  width: 100%;
  border: none;
  background: rgb(233, 229, 209);
}
.container-interactive-help {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
  justify-content: center;
  margin-top: 50px;
}
.container-interactive-help > div {
  height: 100px;
  background: red;
}
.biggerFont {
  font-size: 130%;
}
.logo {
  float: left;
  margin: 0 10px 0 10px;
}
.gallery-block {
  cursor: zoom-in;
  float: left;
  width: 70px;
  height: 80px;
}
#gallery_section_img {
  cursor: pointer;
  margin-top: -28px;
}
.chat-img {
  width: 60px;
  height: 60px;
}
.w-80 {
  width: 86% !important;
}
.nav-link {
  cursor: pointer;
}
.grid-container {
  margin: 70px 0 10px 0;
  display: grid;
  grid-template-columns: 90px 180px 170px 1fr;
  gap: 2px;
}
.grid-container button {
  line-height: 0.6;
}
.grid-item {
  font-size: 0.77rem;
  line-height: 1.7;
  overflow: hidden;
  margin-bottom: 10px;
}
.container-label {
  font-size: 16px;
}
#exitVideoCall {
  float: right;
}
.call-buttons {
  padding-top: 10px;
}
video {
  display: flex;
  width: 20rem;
  border-radius: 0.438rem;
  margin: 0 auto;
}
.error,
.error_explanation,
.vErr {
  color: rgb(247, 101, 239);
}
.footer {
  background-color: #181b1e !important;
}
#footer p {
  color: var(--main-text-color);
}
#joinOrLeave {
  float: left;
  margin-bottom: 4px;
}
#videoBtns {
  margin-top: 20px;
}
#loginCtrlformForgotPsw,
#loginCtrlformCodeFromServer {
  background-color: var(--light-grey-bg-color);
}
.full {
  width: 100%;
}
.turbo-progress-bar {
  height: 5px;
  background-color: green;
}
.goBackLink {
  cursor: pointer;
}
@media (min-width: 1200px) {
  .intro .intro-text {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .intro .intro-img {
    width: 70%;
  }
  .intro .intro-text {
    margin: -2% 0 0 -9%;
  }
}
@media (max-width: 992px) {
  .intro-left {
    margin: 0 auto;
  }
  .intro .intro-img {
    margin: -20px 0px -30px 0px;
  }
}
@media (max-width: 768px) {
  .navbar-brandV {
    display: none;
  }
  .modal-content {
    max-width: 98%;
  }
  .intro .intro-img {
    margin: -20px 0px 0px 0px;
  }
}
@media (max-width: 576px) {
  .navbar-brandV {
    display: block;
  }
  .modal-content {
    max-width: 98%;
  }
  #mainContainer {
    background: url("/assets/bg_m-ce1ad3f4.jpg") no-repeat fixed center;
  }
  #footer {
    display: none;
  }
  body {
    width: 100%;
    margin: 0 auto;
    display: grid;
    align-items: center;
    font-family: sans-serif;
  }
  video {
    width: 24rem;
    border-radius: 0;
  }
}
@media (max-width: 500px) {
  .flex-item-left {
    flex: 100%;
  }
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  video {
    width: 20rem;
    border-radius: 0;
  }
}
@media (max-width: 370px) {
  video {
    width: 16rem;
    border-radius: 0;
  }
}
@media (max-width: 290px) {
  #logo-text {
    display: none;
  }
}
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.system-message {
  align-self: flex-start;
  background-color: #f1f1f1;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  max-width: 75%;
}
.system-message p {
  margin-bottom: 0;
}
.user-message {
  align-self: flex-end;
  background-color: #0d6efd;
  color: white;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  max-width: 75%;
  margin-left: auto;
}
.user-message p {
  margin-bottom: 0;
}
#ios-a2hs-instructions {
  padding: 10px;
}
.gm-style .gm-style-iw {
  font-weight: 100;
  color: rgb(29, 28, 28);
}
body.dark-theme {
  background: var(--dark-theme-body-bg-color);
  color: var(--dark-theme-text-color);
}
body.dark-theme #main-content {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/assets/bg-c610c08a.jpg") no-repeat fixed center;
}
body.dark-theme .navbar {
  background-color: var(--dark-theme-navbar-bg-color) !important;
}
body.dark-theme .containerV,
body.dark-theme #showCctr,
body.dark-theme #showP-ctrl,
body.dark-theme #pcandidate {
  background-color: var(--dark-theme-navbar-bg-color);
}
body.dark-theme .modal-content {
  background-color: #4d4a38;
  color: var(--dark-theme-text-color);
}
body.dark-theme .intro-block {
  background-color: var(--dark-theme-navbar-bg-color);
}
body.dark-theme #loginCtrlMainPanel,
body.dark-theme #loginCtrlformForgotPsw,
body.dark-theme #loginCtrlformCodeFromServer {
  background: var(--dark-theme-navbar-bg-color);
}
body.dark-theme .chat li.left .chat-body {
  background: rgba(100, 30, 85, 0.7);
}
body.dark-theme .chat li.right .chat-body {
  background: rgba(50, 100, 40, 0.7);
}
body.dark-theme .system-message {
  background-color: #3d3d3d;
  color: var(--dark-theme-text-color);
}
body.dark-theme .bg-faded,
body.dark-theme .intro-text {
  background-color: var(--dark-theme-navbar-bg-color) !important;
  color: var(--dark-theme-text-color);
}
body.dark-theme .section-heading-upper,
body.dark-theme .section-heading-lower {
  color: var(--dark-theme-text-color);
}
body.dark-theme .cta-inner {
  background-color: var(--dark-theme-navbar-bg-color) !important;
  color: var(--dark-theme-text-color);
}
body.dark-theme .dropdown-menu {
  background-color: var(--dark-theme-navbar-bg-color);
}
body.dark-theme .dropdown-item {
  color: var(--dark-theme-text-color);
}
body.dark-theme .dropdown-item:hover {
  background-color: #3d3d3d;
  color: var(--dark-theme-text-color);
}
body.dark-theme .card,
body.dark-theme .list-group-item,
body.dark-theme .card-header,
body.dark-theme .card-body {
  background-color: var(--dark-theme-card-bg-color);
  color: var(--dark-theme-text-color);
}
body.dark-theme .btn-link {
  color: var(--dark-theme-text-color);
}
body.dark-theme #S2 {
  background: var(--dark-s2-bg-color);
}
body.dark-theme,
th,
td,
body.dark-theme .flex-container,
body.dark-theme .form-control,
body.dark-theme .panel-heading {
  color: var(--dark-theme-text-color);
  background: rgb(101, 98, 98);
}
body.dark-theme .wide {
  color: var(--dark-theme-text-color);
  background: rgb(146, 139, 139);
}
body.dark-theme input::placeholder {
  color: rgb(232, 194, 139);
  opacity: 1;
}

/* app/assets/stylesheets/user/video.css */
body {
  margin: 0 auto;
  display: grid;
  align-items: center;
  font-family: sans-serif;
}
#participants {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.participant {
  position: relative;
  border-radius: 0.625rem;
  width: 35vw;
  overflow: hidden;
  background-color: rgb(233, 230, 230);
}
.identity {
  position: absolute;
  left: 0;
  bottom: 0.9375rem;
  color: white;
  padding-left: 0.9375rem;
  z-index: 10;
}
#videoForm button {
  width: 10rem;
  height: 4rem;
  background: rgb(120, 247, 150);
  color: rgb(45, 42, 42);
  border: none;
  font-size: 1rem;
}
button:hover,
button:active {
  background: rgb(245, 237, 241);
}
video {
  width: 15rem;
  border-radius: 0.438rem;
  margin: 10 auto;
}

/* app/assets/stylesheets/user.css */
