:root {
  --v-theme-surface-variant: 0, 123, 255 !important; }

@keyframes message-fade-in {
  0% {
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

@keyframes error-hint-fade-in {
  0% {
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

img {
  display: block;
  max-width: 100%;
  height: auto; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  color: #333333;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative; }

.sticky-header {
  position: sticky;
  top: 0;
  background-color: #333333;
  padding: 10px;
  display: flex;
  align-items: center;
  z-index: 999; }

.logo {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px; }

.chat {
  background: #ffffff no-repeat center top;
  background-size: cover;
  font-family: "Open Sans", sans-serif;
  max-height: 100vh;
  height: calc(100vh - 61px);
  max-height: 100dvh;
  height: calc(100dvh - 61px);
  overflow: auto; }
  .chat__container {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    margin-top: 30px;
    position: relative;
    padding: 10px;
    max-width: 600px;
    width: 100%; }
  .chat__header {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    display: flex;
    justify-content: center; }
  .chat__messages {
    padding: 20px;
    margin: 0;
    background: #FFF;
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow-y: hidden;
    height: 80vh;
    height: 80dvh;
    display: flex;
    flex-direction: column;
    position: relative; }
  .chat__msg-wrapper {
    display: flex;
    gap: 10px;
    height: 100%;
    overflow-y: auto;
    margin: -20px -20px 0;
    padding: 20px 20px 0; }
  .chat__msg-list {
    animation: message-fade-in .3s ease;
    flex: 1 0 auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%; }
  .chat__user-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -70px; }
  .chat__body {
    margin-top: auto; }
  .chat__form {
    min-height: 44px; }
  .chat__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    min-height: 28px; }
  .chat__datepicker {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px; }
  .chat__btn-send {
    display: flex; }
  .chat__datepicker-send {
    opacity: 0.6;
    cursor: pointer; }
  .chat__cropper-input {
    padding: 20px 20px 20px 70px;
    margin: 0 -20px -20px;
    background: #F3F3F3;
    max-height: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .chat__cropper-input .chat__input {
      padding: 0;
      margin: 0; }
  .chat__cropper-prev-button {
    position: absolute;
    bottom: 20px;
    left: 20px; }
  .chat__cropper.vue-advanced-cropper {
    max-height: calc(100% - 56px); }
  .chat__cropper-image {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%; }
  .chat__input {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: auto;
    padding: 20px;
    margin: 0 -20px -20px;
    background: #F3F3F3; }
  .chat__input-skeleton {
    min-height: 86px;
    padding: 20px;
    margin: 0 -20px -20px;
    background: #F3F3F3; }
  .chat__registration-form {
    display: grid;
    gap: 4px;
    width: auto;
    padding: 20px;
    margin: 0 -20px -20px;
    background: #F3F3F3; }
    .chat__registration-form .text-field {
      width: 60%;
      margin-left: auto; }
  .chat__registration-form-prev-button {
    position: absolute;
    bottom: 20px;
    left: 20px; }
  .chat__registration-form-submit {
    display: flex;
    margin-left: auto; }
  .chat__chip-group {
    animation: message-fade-in .3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
    min-width: 60%;
    width: fit-content;
    margin-left: auto; }
    @media (max-width: 400px) {
      .chat__chip-group {
        grid-template-columns: 1fr; } }
  .chat__location-search {
    display: flex;
    flex-direction: column;
    min-width: 60%;
    width: min-content;
    margin-left: auto;
    animation: message-fade-in .3s ease; }
  .chat__location-chip-wrapper {
    animation: message-fade-in .3s ease; }
  .chat__location-chip-group {
    display: flex;
    flex-direction: column; }
  .chat__datepicker-box {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    margin: 0 -20px -20px;
    background: #F3F3F3; }
  .chat__datepicker-input {
    display: inline-flex;
    flex-direction: column;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden; }
  .chat__datepicker-prev-button {
    margin-right: auto; }
  .chat__datepicker {
    display: flex;
    align-items: flex-end;
    gap: 10px; }
  .chat__datepicker-title {
    padding: 5px 10px 7px;
    background-color: #ffffff;
    box-shadow: none;
    width: 100%;
    margin-left: auto;
    margin-bottom: -4px;
    max-width: 261px;
    text-align: center;
    font-weight: 600; }
  .chat__upload-file {
    position: relative;
    width: 100%;
    cursor: pointer; }
    .chat__upload-file .v-file-input input {
      visibility: hidden; }
  .chat__upload-label {
    position: absolute;
    top: 8px;
    left: 42px;
    z-index: 10;
    pointer-events: none; }
  .chat__loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background: #F3F3F3;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .chat__range {
    padding: 0 20px; }

.text-field {
  position: relative; }
  .text-field .v-field__input {
    transition: 0.3s all; }
  .text-field .v-input__details {
    animation: error-hint-fade-in 0.3s ease;
    position: absolute;
    bottom: 2px;
    pointer-events: none; }
    .text-field .v-input__details .v-messages {
      color: #df4141;
      opacity: 1; }
  .text-field .v-field__input {
    padding-bottom: 15px;
    padding-top: 5px; }

.message {
  animation: message-fade-in .3s ease;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.95);
  margin-bottom: 4px;
  border-radius: 10px;
  width: fit-content;
  position: relative;
  color: #333333;
  scroll-margin-top: 50px; }
  .message:first-child {
    margin-top: auto; }
  .message--incoming {
    background-color: #F3F3F3;
    margin-left: 70px; }
  .message--outgoing {
    color: #ffffff;
    margin-left: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
    max-width: 70%; }
    .message--outgoing:hover .message__edit-action {
      width: 18px;
      margin-left: 10px;
      opacity: 1; }
  .message--error {
    background-color: #df4141;
    color: #ffffff;
    margin-left: 70px;
    display: flex;
    gap: 10px;
    align-items: center; }
  .message__spacer {
    min-height: 10px; }
  .message--outgoing + .message--incoming + .message__spacer {
    min-height: 20px; }
  .message--edit .message__edit-action {
    width: 18px;
    margin-left: 10px;
    opacity: 1; }
  .message__content {
    white-space: pre-line;
    font-size: 16px;
    line-height: 1.3; }
  .message__edit-action {
    transition: all .3s;
    opacity: 0;
    width: 0;
    font-size: 12px; }

.input {
  flex: 1;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px; }

.button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease; }
  .button:hover {
    background-color: #0062cc; }

.progress-bar {
  position: relative;
  width: auto;
  margin: 0 -20px; }
  .progress-bar__body {
    width: 100%;
    height: 14px;
    background-color: rgba(0, 123, 255, 0.2);
    overflow: hidden; }
  .progress-bar__line {
    height: 100%;
    background-color: #007bff;
    transition: width 0.6s; }
  .progress-bar__label {
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .progress-bar__current {
    font-size: 12px;
    left: 4px;
    color: #333333; }
    .progress-bar__current--active {
      color: #ffffff; }

.chat .v-chip.v-chip--size-default {
  --v-chip-height: auto;
  min-height: 35px;
  border-radius: 10px;
  white-space: pre-line;
  margin: 0 0 4px 0;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(51, 51, 51, 0.2); }

.chat .dp__main input {
  height: 44px;
  border: none; }

.chat .dp__main .dp__menu {
  border: none;
  overflow: hidden; }

.chat .dp__main .dp__arrow_bottom {
  border: none;
  transform: translate(-50%, 40%) rotate(45deg); }

.chat .dp__flex_display {
  justify-content: flex-end; }

.chat .dp__overlay {
  border-radius: 20px; }

.chat .dp__overlay_cell_active {
  background: transparent;
  color: #333333; }
  .chat .dp__overlay_cell_active:hover {
    background: var(--dp-hover-color); }

.chat .dp__menu_inner {
  min-height: 288px; }

.chat .dp__flex_display {
  width: auto;
  margin-left: auto; }

.chat .v-btn--icon.v-btn--density-default {
  height: calc(var(--v-btn-height) + 10px);
  width: calc(var(--v-btn-height) + 10px);
  box-shadow: 0 5px 12px rgba(51, 51, 51, 0.12);
  border-radius: 10px; }

.header {
  padding: 15px 0; }
  .header .btn {
    min-width: 130px; }

.logo--link {
  display: inline-block; }
  .logo--link--img {
    height: 25px;
    width: auto; }

.v-input--density-compact .v-field--no-label,
.v-input--density-compact .v-field--single-line,
.v-input--density-compact .v-field--variant-outlined {
  box-shadow: 0 5px 12px rgba(51, 51, 51, 0.12);
  border-radius: 10px; }

.v-text-field .v-field--active input,
.v-text-field .v-field--no-label input {
  padding-top: 11px;
  padding-bottom: 11px; }

.v-chip--variant-tonal .v-chip__underlay {
  opacity: 0;
  background-color: #ffffff; }

.v-theme--light {
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible; }

.message__chip-group {
  gap: 0 4px; }

@media (max-width: 767px) {
  .chat {
    display: flex;
    align-items: flex-end; }
    .chat__container {
      margin: 15px 0 15px 15px;
      width: calc(100vw - 30px);
      max-width: 100%;
      padding: 0; } }

/*# sourceMappingURL=registration_fct.sass */