@charset "UTF-8";
.flex {
  display: flex;
}
.flex.spread {
  justify-content: space-between;
}
.flex.col {
  flex-direction: column;
}
.flex.center {
  align-items: center;
  justify-content: center;
}
.flex.center-vrt {
  align-items: center;
}

.mtd-btn {
  background: #275CE9;
  color: white;
  border-radius: 4px;
  font-size: 16px;
  padding: 6px 16px;
  border: none;
  text-decoration: none !important;
}

.mtd-video-info {
  background: #2E3142;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 4px;
  padding: 6px 16px;
  margin-right: 16px;
}

.mtd-video-icon {
  color: #686B7C;
  margin-right: 8px;
}

#mtd-session-message {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.mtd-mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mtd-hide {
  display: none !important;
}

.glm-session-error {
  color: #EF4444;
}

.glm-session-chat-btn {
  background: #275CE9;
  padding: 10px 8px 8px 8px;
  line-height: 1;
  border-radius: 6px;
}

#mtd-chat-window {
  font-family: "Open Sans";
  font-size: 18px;
  flex: 1;
  position: relative;
  top: -35px;
}
#mtd-chat-window #mtd-chat-header {
  background: #275CE9;
  color: white;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mtd-chat-window #mtd-inner-chat {
  height: calc(100% - 79px);
  border: 3px solid #DDE8F8;
  flex: 1;
  min-height: 300px;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container {
  flex: 1;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages {
  height: 100%;
  background: white;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  max-height: 300px;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages::-webkit-scrollbar {
  width: 8px;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 transparent;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages::-webkit-scrollbar-thumb {
  background: #b3cbef;
  width: 10px;
  border-radius: 10px;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages::-webkit-scrollbar-thumb:hover {
  background: #DDE8F8;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages .mtd-user-message {
  margin-bottom: 16px;
  display: flex;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages .mtd-user-message .glm-session-message-time {
  font-size: 12px;
  color: #aec6cf;
  display: flex;
  align-items: center;
  margin-left: 8px;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages .mtd-user-message .mtd-message-contents {
  padding: 4px 0;
  line-height: 1;
  border-radius: 5px;
  font-size: 14px;
  color: #333948;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages .mtd-user-message a.mtd-message-contents {
  color: #275CE9;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages .mtd-user-message .mtd-message-label {
  color: #333948;
  font-size: 14px;
  display: flex;
  font-weight: bold;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages .mtd-user-message .glm-session-chat-user-logo {
  margin-right: 8px;
  margin-top: 4px;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-messages-container #mtd-chat-messages .mtd-user-message .glm-session-chat-user-logo i {
  padding: 8px;
  border-radius: 50%;
  background: #b3cbef;
  color: white;
}
#mtd-chat-window #mtd-inner-chat #mtd-chat-users {
  border-left: 2px solid #DDE8F8;
  background: white;
  padding: 8px;
  width: 150px;
}
#mtd-chat-window #mtd-chat-message-form {
  background: #DDE8F8;
  padding: 8px;
  flex: 1;
  border-bottom-left-radius: 5px;
}
#mtd-chat-window #mtd-chat-message-form #mtd-chat-message {
  border-radius: 5px;
  border: none;
  padding: 4px;
  margin: 0;
  background: white;
  height: 28px;
}
#mtd-chat-window #mtd-chat-message-form #mtd-chat-message:focus {
  outline: none;
}
#mtd-chat-window #mtd-chat-input-container {
  border-bottom-left-radius: 5px;
  display: flex;
}
#mtd-chat-window #mtd-chat-input-container #mtd-file-controls {
  background: #DDE8F8;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 12px 0 8px;
}
#mtd-chat-window #mtd-chat-input-container #mtd-file-controls #mtd-chat-file-input {
  color: #73a0e2;
  font-size: 20px;
}
#mtd-chat-window #mtd-chat-input-container #mtd-file-controls #mtd-chat-file-input:hover {
  cursor: pointer;
}
#mtd-chat-window #mtd-chat-input-container #mtd-file-controls:hover {
  cursor: pointer;
}
#mtd-chat-window #mtd-chat-input-container #mtd-chat-send {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px 0 12px;
  background: #00DF72;
  color: white;
  font-size: 24px;
  border-bottom-right-radius: 5px;
}
#mtd-chat-window #mtd-chat-input-container #mtd-chat-send:hover {
  cursor: pointer;
}
#mtd-chat-window #mtd-chat-controls {
  padding: 4px;
  background: white;
}

.mtd-modal-error {
  color: #EF4444;
}

.glm-session-logout {
  background: #DDE8F8;
  color: #73a0e2;
  display: flex;
  align-items: center;
  padding-left: 12px;
  padding-right: 4px;
}
.glm-session-logout:hover {
  cursor: pointer;
}

#glm-session-login-wrapper {
  background: white;
  padding: 16px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#glm-session-login-wrapper.hide {
  display: none;
}

.ant-tabs-nav {
  margin: 0;
}

.ant-tabs-tab {
  margin: 0;
  padding: 12px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.ant-tabs-tab.ant-tabs-tab-active {
  background: white;
  background: #00317E;
}
.ant-tabs-tab.ant-tabs-tab-active span, .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: white;
}

.ant-tabs-ink-bar.ant-tabs-ink-bar-animated {
  background: #00317E;
}

.ant-tabs-tab:not(.ant-tabs-tab-active) {
  transition: background 300ms ease-in-out;
  background: #EEF3F5;
}

.glm-session-chat-user::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 4px;
  font-size: 8px;
  position: relative;
  bottom: 4px;
}
.glm-session-chat-user.user-online::before {
  color: #00DF72;
}
.glm-session-chat-user.user-offline::before {
  color: #d5e2f6;
}

#mtd-chat-guest-input-container {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  left: 0;
  top: 0;
}
#mtd-chat-guest-input-container.input-error input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: red;
  opacity: 1;
  /* Firefox */
}
#mtd-chat-guest-input-container.input-error input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: red;
}
#mtd-chat-guest-input-container #glm-session-chat-guest-input {
  height: 38px;
  padding: 10px 8px 8px 8px;
}
#mtd-chat-guest-input-container #glm-session-chat-guest-input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a4a4a4;
  font-size: 20px;
  opacity: 1;
  /* Firefox */
}
#mtd-chat-guest-input-container .ant-input-wrapper.ant-input-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  min-width: 350px;
}

#glm-sessions-user-list {
  height: 300px;
  overflow-y: scroll;
}
