@font-face {
  font-family: "Roboto";
  src: url("/css/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("/css/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}
:root {
  box-sizing: border-box;
  --color-bg: #369;
  --color-bg2: #666;
  --color-fg2: #669;
  --color-fg: white;
  --color-player-bg: #666;
}

body {
  background-color: var(--color-bg);
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
}

img.emoji {
  height: 1em;
  width: 1em;
  margin: 0 0.05em 0 0.1em;
  vertical-align: -0.1em;
}

.waiting_message {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #669;
  padding: 2em;
}

body.veedo-conference-waiting .waiting_message {
  display: flex;
}

.PlayerChatFrame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.PlayerChatFrame .Display {
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  color: var(--color-fg);
}
.PlayerChatFrame .Display a {
  color: var(--color-fg);
  text-decoration: none;
  border-bottom: 1px solid var(--color-fg);
}
@media screen and (orientation: landscape) {
  .PlayerChatFrame .Display {
    order: 5;
  }
}

.PlayerChat {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (orientation: landscape) {
  .PlayerChat {
    flex-direction: row;
  }
}
.PlayerChat .Player {
  flex-grow: 3.5;
  min-height: 180px;
  background-color: var(--color-player-bg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.PlayerChat .Player #veedoplayer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.PlayerChat .Player #veedoplayer video {
  width: 100%;
  height: 100%;
}
.PlayerChat .ChatSlider {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.PlayerChat .ChatSlider svg {
  width: 3em;
  height: 3em;
}
.PlayerChat .ChatSlider svg g {
  stroke: var(--chatslider-arrow, #ffcb06);
}
@media screen and (orientation: landscape) {
  .PlayerChat .ChatSlider {
    flex-direction: column;
  }
  .PlayerChat .ChatSlider svg {
    transform: rotate(-90deg);
  }
}
.PlayerChat .Chat {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.messages-frame {
  flex-grow: 1;
  position: relative;
}

.messages-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  margin: 0.4em;
  border: 1px solid #999;
  border-radius: 5px;
}
.messages-container .message {
  margin: 0.4em;
  background-color: #eee;
  border-radius: 5px;
  color: #333;
  padding: 0.4em;
}
.messages-container .message .metabar {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
}
.messages-container .message .metabar .from {
  flex-grow: 1;
  font-weight: bold;
  font-size: 0.8em;
}
.messages-container .message .metabar .date {
  flex-grow: 0;
  font-size: 0.6em;
}
.messages-container .message .text {
  padding: 0 0.4em 0 0.4em;
  white-space: pre-wrap;
}

.input {
  flex-grow: 0;
  padding: 0.4em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.input > input {
  box-sizing: border-box;
  flex-grow: 1;
  height: 2em;
  padding: 0.2em;
  border: 1px solid #333;
}
.input > .send-button {
  box-sizing: border-box;
  flex-grow: 0;
  height: 2em;
  padding: 0.2em;
  border: 1px solid #333;
  margin-top: 0.4em;
  background-color: rgb(198, 35, 90);
  color: white;
}
.input > .send-button:hover {
  background-color: inherit;
  color: var(--color-fg);
  border-color: var(--color-fg);
  cursor: pointer;
}

.PlayerChat.chat-none veedo-vchat, .PlayerChat.chat-none .Chat, .PlayerChat.chat-none .messages, .PlayerChat.chat-none .input {
  display: none;
}

.PlayerChat.chat-full .Player {
  display: none;
}

.waiting-message {
  display: none;
}

body.veedo-conference-waiting .waiting-message {
  display: visible;
}

.countdown-frame {
  position: fixed;
  top: 1em;
  left: 1em;
  right: 1em;
  bottom: 1em;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  transition: top 0.6s, bottom 0.6s;
}
.countdown-frame .close-button {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
}
.countdown-frame .close-button > svg {
  width: 2em;
  height: 2em;
}
.countdown-frame.hide {
  top: 110vh;
  bottom: -200vh;
}

/*# sourceMappingURL=all.css.map */
