/* line 3, app/assets/stylesheets/react_app/chat.css.scss */
.chat-page {
  float: left;
  height: calc(100vh - 50px);
  width: calc(100vw - 250px);
  min-width: 776px;
  padding: 20px 40px;
}

/* line 11, app/assets/stylesheets/react_app/chat.css.scss */
.chat {
  background: white;
  border-radius: 4px;
  box-shadow: 0 8px 14px 0 rgba(216, 221, 230, 0.5);
}

/* line 17, app/assets/stylesheets/react_app/chat.css.scss */
.chat-content {
  height: calc(100vh - 50px - 40px);
  overflow: auto;
}

/* line 22, app/assets/stylesheets/react_app/chat.css.scss */
.chat-user {
  border-bottom: 1px solid #dedee3;
}

/* line 24, app/assets/stylesheets/react_app/chat.css.scss */
.chat-user img {
  display: block;
  float: left;
  height: 70px;
  width: 70px;
  margin: 15px;
  border-radius: 50%;
}

/* line 32, app/assets/stylesheets/react_app/chat.css.scss */
.chat-user a {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 30px;
}

/* line 39, app/assets/stylesheets/react_app/chat.css.scss */
.chat-user .preview-message {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #575a69;
}

/* line 48, app/assets/stylesheets/react_app/chat.css.scss */
.chat-nav {
  float: left;
  width: 250px;
  height: calc(100vh - 50px - 40px);
  padding: 20px;
  border-right: 1px solid #dedee3;
}

/* line 54, app/assets/stylesheets/react_app/chat.css.scss */
.chat-nav img {
  display: block;
  height: 100px;
  width: 100px;
  margin: auto;
  border-radius: 50%;
}

/* line 63, app/assets/stylesheets/react_app/chat.css.scss */
.chat-nav-link {
  display: block;
  padding-top: 10px;
  padding-bottom: 30px;
  color: #575a69;
}

/* line 70, app/assets/stylesheets/react_app/chat.css.scss */
.receiver-name {
  text-align: center;
  font-weight: bold;
  margin: 0.5em;
}

/* line 76, app/assets/stylesheets/react_app/chat.css.scss */
.receiver-details {
  margin: 20px 0;
}

/* line 80, app/assets/stylesheets/react_app/chat.css.scss */
.receiver-detail {
  line-height: 25px;
}

/* line 84, app/assets/stylesheets/react_app/chat.css.scss */
.chat-profile {
  margin: 20px 40px;
}

/* line 86, app/assets/stylesheets/react_app/chat.css.scss */
.chat-profile .secondary {
  float: right;
  margin-bottom: 40px;
  margin-right: 0;
}

/* line 93, app/assets/stylesheets/react_app/chat.css.scss */
.button-container {
  overflow: hidden;
}

/* line 98, app/assets/stylesheets/react_app/chat.css.scss */
.chat-message-container textarea {
  box-sizing: border-box;
  width: 100%;
  height: 94px;
  resize: none;
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  line-height: 24px;
}

/* line 110, app/assets/stylesheets/react_app/chat.css.scss */
.messages {
  display: grid;
  grid-gap: 30px;
}

/* line 115, app/assets/stylesheets/react_app/chat.css.scss */
.message-container {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  grid-gap: 15px;
}

/* line 119, app/assets/stylesheets/react_app/chat.css.scss */
.message-container img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

/* line 126, app/assets/stylesheets/react_app/chat.css.scss */
.message {
  grid-column: span 2;
}

/* line 128, app/assets/stylesheets/react_app/chat.css.scss */
.message .license-settings {
  width: 200px;
  margin: 18px 0;
  padding: 12px;
}

/* line 135, app/assets/stylesheets/react_app/chat.css.scss */
.message-card {
  padding: 20px;
  border-radius: 6px;
  line-height: 24px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

/* line 140, app/assets/stylesheets/react_app/chat.css.scss */
.message-card pre {
  margin: 0;
  font-family: 'Proxima Nova', sans-serif;
  color: #575a69;
  white-space: pre-wrap;
}

/* line 146, app/assets/stylesheets/react_app/chat.css.scss */
.message-card .validation-error {
  position: inherit;
}

/* line 151, app/assets/stylesheets/react_app/chat.css.scss */
.message-footer {
  color: #bcbcc0;
  margin-top: 15px;
}

/* line 156, app/assets/stylesheets/react_app/chat.css.scss */
.chat-header {
  background: #dedee3;
  padding: 20px;
  border-radius: 4px 4px 0 0;
}

/* line 162, app/assets/stylesheets/react_app/chat.css.scss */
.empty-inbox {
  color: #575a69;
  text-align: center;
  padding-top: 40px;
}

/* line 168, app/assets/stylesheets/react_app/chat.css.scss */
.read {
  background: #f7f7f8;
}

/* line 172, app/assets/stylesheets/react_app/chat.css.scss */
.unread {
  font-weight: bolder;
}

/* line 176, app/assets/stylesheets/react_app/chat.css.scss */
.license-request {
  padding-bottom: 100px;
}

/* line 178, app/assets/stylesheets/react_app/chat.css.scss */
.license-request .license-settings {
  margin: 4px;
}

/* line 181, app/assets/stylesheets/react_app/chat.css.scss */
.license-request h1 {
  font-size: 24px;
}

/* line 184, app/assets/stylesheets/react_app/chat.css.scss */
.license-request h3, .license-request .chat-message-container {
  font-size: 18px;
  margin: 40px 0 0 0;
}

/* line 188, app/assets/stylesheets/react_app/chat.css.scss */
.license-request h4 {
  font-size: 16px;
  margin: 0;
}

/* line 192, app/assets/stylesheets/react_app/chat.css.scss */
.license-request p {
  margin: 8px 0;
}

/* line 195, app/assets/stylesheets/react_app/chat.css.scss */
.license-request img {
  max-width: 420px;
}

/* line 198, app/assets/stylesheets/react_app/chat.css.scss */
.license-request label {
  max-width: 500px;
  min-width: 100px;
}

/* line 202, app/assets/stylesheets/react_app/chat.css.scss */
.license-request .my-select label {
  display: grid;
  grid-template-columns: 60px auto;
  margin-top: 24px;
}

/* line 206, app/assets/stylesheets/react_app/chat.css.scss */
.license-request .my-select label .auth-label {
  font-size: 16px;
  font-weight: bold;
}

/* line 211, app/assets/stylesheets/react_app/chat.css.scss */
.license-request .button {
  min-width: 50%;
}

/* line 216, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons {
  margin: 0 -4px;
  overflow: hidden;
}

/* line 219, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons .button {
  margin: 12px 4px;
  display: inline-block;
}

/* line 222, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons .button i {
  margin-left: -10px;
}

/* line 225, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons .button:disabled {
  background: #848484;
}

/* line 229, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons .decline {
  background: white;
  color: #848484;
  border: 1px solid #848484;
}

/* line 234, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #575a69;
}

/* line 240, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons .license-declined, .license-buttons .license-accepted {
  margin: 12px 0;
  cursor: default;
}

/* line 244, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons .license-declined {
  background: #dedee3;
  color: #575a69;
}

/* line 248, app/assets/stylesheets/react_app/chat.css.scss */
.license-buttons .license-accepted {
  background: #1CD589;
}

/* line 253, app/assets/stylesheets/react_app/chat.css.scss */
.license-header {
  display: grid;
  grid-template-columns: 30px auto;
  margin-bottom: 20px;
}

/* line 257, app/assets/stylesheets/react_app/chat.css.scss */
.license-header i {
  font-size: 22px;
  grid-row: span 2;
}

/* line 261, app/assets/stylesheets/react_app/chat.css.scss */
.license-header h3 {
  font-size: 18px;
  margin: 0;
}

/* line 265, app/assets/stylesheets/react_app/chat.css.scss */
.license-header p {
  font-size: 14px;
  line-height: 20px;
  margin: 4px 0;
}

/* line 272, app/assets/stylesheets/react_app/chat.css.scss */
.license-thumbnail {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

/* line 276, app/assets/stylesheets/react_app/chat.css.scss */
.license-thumbnail img {
  width: 100px;
  height: auto;
  border-radius: 0;
}

/* line 281, app/assets/stylesheets/react_app/chat.css.scss */
.license-thumbnail span {
  margin-left: 12px;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}

/* line 289, app/assets/stylesheets/react_app/chat.css.scss */
.payment-price-explanation {
  margin-top: 50px;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
}

/* line 298, app/assets/stylesheets/react_app/chat.css.scss */
.license-purchased span {
  font-size: 14px;
  line-height: 8px;
}

/* line 302, app/assets/stylesheets/react_app/chat.css.scss */
.license-purchased a {
  color: #ff3c37;
  text-decoration: underline;
}

/* line 306, app/assets/stylesheets/react_app/chat.css.scss */
.license-purchased img {
  display: block;
  width: unset;
  max-width: 500px;
  height: auto;
  border-radius: 3px;
  margin: 12px 0;
}

/* line 316, app/assets/stylesheets/react_app/chat.css.scss */
.vyrill-message {
  display: flex;
  align-items: center;
  border-radius: 50%;
  height: 50px;
  border: 1px solid #dedee3;
}

/* line 322, app/assets/stylesheets/react_app/chat.css.scss */
.vyrill-message img {
  width: 80%;
  height: 80%;
  margin: 0 auto;
  border-radius: unset;
}

/* line 330, app/assets/stylesheets/react_app/chat.css.scss */
.download-link {
  color: #ff3c37;
  text-decoration: underline;
}

/* line 335, app/assets/stylesheets/react_app/chat.css.scss */
.icon-handshake {
  font-size: 20px;
}

/* line 339, app/assets/stylesheets/react_app/chat.css.scss */
.icon-congrats {
  color: #ff3c37;
}

/* line 343, app/assets/stylesheets/react_app/chat.css.scss */
.licensed-video {
  color: #575a69;
  font-style: italic;
}

/* line 348, app/assets/stylesheets/react_app/chat.css.scss */
.important-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

/* line 352, app/assets/stylesheets/react_app/chat.css.scss */
.important-header h4 {
  font-size: 16px;
  margin: 0;
}

/* line 357, app/assets/stylesheets/react_app/chat.css.scss */
.play-video-in-new-tab {
  margin-left: 50px;
}

/* line 361, app/assets/stylesheets/react_app/chat.css.scss */
.audioIconsClass {
  width: 45px;
  height: 45px;
  padding: 7px;
  margin-right: 2px;
}
