/******************************************************************************\
|                                                                              |
|                                 styles.scss                                  |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
/******************************************************************************\
|                                                                              |
|                                  buttons.scss                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
.btn {
  border-radius: 20px;
  background-color: #f0f0f0;
  font-size: 16px;
  border: none;
  outline: none;
}
.btn:focus, .btn:hover, .btn:active, .btn:active:hover {
  background-color: lightgrey;
  border-color: lightgrey;
  outline: none;
}
.btn a {
  color: grey;
  text-decoration: none;
}
.btn i, .btn span {
  pointer-events: none;
}
.btn.begin i {
  color: green;
}
.btn.resume i {
  color: orange;
}

.btn-primary {
  color: black;
  background-color: lightgrey;
  border-color: lightgrey;
}
.btn-primary a {
  color: black;
}
.btn-primary:focus, .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover {
  background-color: darkgrey;
  border-color: darkgrey;
  outline: none;
}

.send.btn {
  color: white;
  background: hsl(150, 60%, 40%);
}
.send.btn a {
  color: white;
}
.send.btn:focus, .send.btn:hover, .send.btn:active {
  background: hsl(150, 60%, 30%);
}

.buttons .btn {
  margin-top: 5px;
  margin-right: 5px;
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  .buttons {
    padding: 0;
  }
}
/******************************************************************************\
|                                                                              |
|                                   chats.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
#page.chat {
  display: flex;
  flex-direction: column;
  background-image: url("../images/backgrounds/whatsapp-background.png");
  height: calc(100% - 50px);
  overflow: hidden;
}
#page.chat .main.container {
  width: 100%;
  height: calc(100% - 50px);
  overflow: hidden;
}
#page.chat .main.container .content {
  width: 100%;
  height: 100%;
}
#page.chat .main.container .content .chat {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
#page.chat .main.container .content .chat .progress-bar {
  width: 100%;
  height: 25px;
  background: lightgrey;
  margin-bottom: 25px;
  color: black;
}
#page.chat .main.container .content .chat .progress-bar .bar {
  height: 25px;
  background: green;
}
#page.chat .main.container .content .chat .progress-bar:empty {
  display: none;
}
#page.chat .main.container .content .chat .messages {
  flex-grow: 1;
  overflow: auto;
}
#page.chat .main.container .content .chat .messages + form {
  margin-top: 30px;
}
#page.chat .footer {
  display: none;
}

.comment {
  display: flex;
  margin-bottom: 10px;
}
.comment i, .comment img {
  margin: 10px;
  font-size: 1.5em;
}
.comment img.icon {
  height: 30px;
  border-radius: 5px;
}
.comment.user .comment-bubble {
  background: white;
}
.comment.chatbot, .comment.connection {
  flex-flow: row-reverse;
}
.comment.chatbot .comment-bubble, .comment.connection .comment-bubble {
  background: #d7f0b0;
}
.comment .comment-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.comment .comment-bubble {
  display: inline-block;
  position: relative;
  border-style: solid;
  border-color: lightgrey;
  border-radius: 10px;
  padding: 10px;
  white-space: pre-line;
}
.comment .comment-bubble.user .comment-arrow {
  top: 50%;
  margin-top: -1px;
  left: -1px;
  border-width: 1px 1px 1px 0;
  margin-top: -1px;
  border-right-color: unset;
}
.comment .comment-bubble.chatbot .comment-arrow, .comment .comment-bubble.connection .comment-arrow {
  top: 50%;
  margin-top: -1px;
  right: -1px;
  border-width: 1px 0 1px 1px;
  border-left-color: unset;
}

.ratings {
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 0 10px;
  margin-top: -10px;
  text-align: right;
}
.ratings label {
  margin: 5px;
  margin-right: 10px;
}
.ratings .rating {
  display: inline-flex;
  padding: 0;
}
.ratings .rating + .rating {
  margin-left: 10px;
}
.ratings .rating .btn {
  padding: 0;
  width: 25px;
  height: 25px;
  border-radius: 5px;
}

.chat-input {
  width: 100%;
  border-width: 2px;
  border-style: solid;
  border-color: lightgrey;
  border-radius: 10px;
  padding: 10px;
  background: #f7f7f7;
  outline: none;
}
.chat-input:focus {
  outline: none;
}

.buttons {
  margin-top: 5px;
}

/******************************************************************************\
|                                                                              |
|                            dialog-transitions.less                           |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines the dom and svg visual styles for this application.      |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
.modal.opening {
  -webkit-animation: opening 0.5s;
  -moz-animation: opening 0.5s;
  -ms-animation: opening 0.5s;
  -o-animation: opening 0.5s;
  animation: opening 0.5s;
}

@keyframes opening {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.modal.closing {
  -webkit-animation: closing 0.5s;
  -moz-animation: closing 0.5s;
  -ms-animation: closing 0.5s;
  -o-animation: closing 0.5s;
  animation: closing 0.5s;
}

@keyframes closing {
  from {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.modal.closed {
  display: none;
}

/******************************************************************************\
|                                                                              |
|                                   forms.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
.form-label, .control-label {
  float: left;
  width: 25%;
}

.form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
}

.separator {
  text-align: center;
  font-weight: bold;
}

.separator::before, .separator::after {
  content: "- ";
}

.required label:after,
label.required:after,
span.required:after {
  content: "*";
  color: #c2002f;
  margin-left: 5px;
}

.alert label {
  margin-right: 10px;
}

.inline-radio {
  margin-right: 15px;
}
.inline-radio input {
  margin-right: 5px;
}

/*
 * country selector styles
 */
.country-code.input-group {
  width: 100px;
}

#country-selector {
  position: absolute;
}

#country-selector .dropdown-menu {
  position: relative;
  margin: 0;
  padding: 0;
}

#country-selector button img {
  margin-top: -3px;
  margin-left: 5px;
}

.country-code.input-group {
  width: 100px;
}

/*
 * validation styles
 */
label.error {
  font-weight: bold;
  color: #c2002f;
  padding-top: 0;
  background: url(../images/forms/error.png) 5px 0px no-repeat;
  padding-left: 30px;
}

label.error:empty {
  display: none;
}

label.error.valid {
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border: 1px solid #c2002f;
}

/*
 * popover styles
 */
.popover {
  max-width: 360px;
  width: auto;
}

@media (max-width: 480px) {
  .breadcrumb {
    padding: 0;
  }
  .form-label, .control-label {
    width: 100%;
  }
}
/******************************************************************************\
|                                                                              |
|                                  headings.less                               |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
h1 {
  font-size: 150%;
  margin-top: 50px;
  margin-bottom: 30px;
}
h1:first-child {
  margin-top: 0;
}
h1 .icon {
  height: 30px;
  margin-right: 10px;
}
h1 i {
  float: left;
  padding-right: 5px;
}

h2 {
  font-size: 125%;
  margin-top: 30px;
  margin-bottom: 15px;
}

h3 {
  font-size: 110%;
  margin-top: 10px;
  margin-bottom: 10px;
}

/******************************************************************************\
|                                                                              |
|                                   layout.less                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
body {
  font-family: "Open Sans", sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 16px;
}

.main.container {
  padding-top: 50px;
}

#page {
  background-color: #f6f6f6;
  margin-top: 50px;
  min-height: calc(100% - 50px);
}

.section {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: lightgrey;
  margin: 20px 0;
}
.section h2 {
  margin-top: 0;
}

#footer {
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  .section {
    padding: 10px;
  }
}
/******************************************************************************\
|                                                                              |
|                                   modals.less                                |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
.modal {
  pointer-events: none;
  padding-bottom: 30px;
}
.modal .modal-dialog {
  display: flex;
  margin: auto;
  margin-top: 100px;
}
.modal .modal-dialog .modal-content {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: auto;
  margin: auto;
  width: 600px;
  min-width: 300px;
}
.modal .modal-dialog .modal-content .modal-header h1 {
  font-size: 24px;
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-header.ui-draggable-handle {
  cursor: move;
}

@media (min-width: 768px) and (max-height: 550px) {
  .modal {
    text-align: center;
  }
  .modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
  }
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
}
.modal.backdrop {
  pointer-events: all;
  background-color: fade(black, 25%);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal-extents {
  width: 100%;
  margin: auto;
}

@media (min-width: 480px) {
  .modal .modal-dialog .modal-header {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  .modal .modal-dialog .modal-body.flexible {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .modal .modal-dialog .modal-footer {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .modal .modal-dialog .modal-footer .buttons {
    float: right;
    text-align: left;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .modal .modal-dialog .modal-footer .buttons .btn, .modal .modal-dialog .modal-footer .buttons .btn + .btn {
    margin-bottom: 5px;
  }
  .modal .modal-dialog:not(.ui-resizable) .modal-body .vertically.scrollable {
    max-height: 220px;
  }
  .modal .modal-dialog:not(.ui-resizable) .modal-body {
    overflow: auto;
  }
}
body[device=desktop] .modal.in .modal-dialog {
  transform: translateZ(0);
}

@media (max-width: 480px) {
  .modal-extents {
    height: auto !important;
    margin: 0;
  }
  .modal {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-bottom: 0;
  }
  .modal .modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0 !important;
  }
  .modal .modal-dialog .modal-content {
    width: 100%;
    height: 100%;
    border: none;
  }
  .modal .modal-dialog .modal-content .modal-header .modal-title {
    margin-right: 0;
  }
  .modal .modal-dialog .modal-content .modal-header .buttons {
    margin-left: 0;
  }
  .modal .modal-dialog .modal-content .modal-body {
    flex-grow: 1;
  }
  .modal .modal-dialog .modal-content .modal-body .vertically.scrollable {
    max-height: none;
  }
  .modal .modal-dialog .modal-content .modal-footer .notes {
    float: none;
    text-align: left;
  }
  .modal .modal-dialog .modal-content .modal-footer .buttons {
    margin-bottom: 10px;
  }
  .modal .modal-dialog .modal-content .modal-footer .btn + .btn {
    margin-left: 0;
  }
  .modal .modal-dialog:not(.maximized) {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/******************************************************************************\
|                                                                              |
|                                    navs.less                                 |
|                                                                              |
|******************************************************************************|
|                                                                              |
|        This defines various CSS styles used in this application.             |
|                                                                              |
|        Author(s): Abe Megahed                                                |
|                                                                              |
|        This file is subject to the terms and conditions defined in           |
|        'LICENSE.txt', which is part of this source code distribution.        |
|                                                                              |
|******************************************************************************|
|        Copyright (C) 2016-2019, Megahed Labs LLC, www.sharedigm.com          |
\******************************************************************************/
.navbar i.fa {
  margin-right: 5px;
}

.nav-tabs {
  margin-bottom: 20px;
}

.navbar-right {
  height: 50px;
}
.navbar-right .buttons {
  display: flex;
  height: 100%;
  margin: auto;
}
.navbar-right .buttons .btn {
  margin: auto;
}
.navbar-right .buttons .btn + .btn {
  margin-left: 10px;
}

a {
  color: grey;
}
a:hover {
  color: grey;
}

@media (max-width: 480px) {
  .navbar-right {
    display: block;
    height: auto;
  }
  .navbar-right .buttons {
    display: block;
    padding: 10px;
    margin-left: 0;
  }
  .navbar-right .buttons .btn {
    width: 100%;
  }
  .navbar-right .buttons .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
}

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