@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  background-color: #f2fafe;
}

main {
  margin: 0 auto;
  padding: 32px;
  height: calc(100vh - 64px);
  max-height: calc(100vh - 64px);
  width: 100%;
  max-width: 1024px;
}

.main-header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 5;
  width: 100%;
  height: 64px;
  padding: 16px;
  margin: 0 auto;
  max-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-header .main-header__logo {
  height: 100%;
}

.main-header .hamburger-icon {
  cursor: pointer;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-header .hamburger-icon div {
  width: 25px;
  height: 4px;
  background-color: #27a8e0;
  border-radius: 8px;
}

.main-navigation {
  display: none;
  height: 100%;
}

.mobile-navigation {
  height: 100%;
  width: 100%;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100vh;
  background-color: #f2fafe;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.side-drawer .side-drawer__logo {
  padding: 16px 32px;
  max-width: 200px;
}

.side-drawer--enable {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.navigation-items {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navigation-items .navigation-items__user {
  width: 100%;
  list-style: none;
  padding: 8px 16px;
  font-size: 1rem;
  white-space: nowrap;
  color: #27a8e0;
}

.navigation-items .navigation-item,
.navigation-items .button-cta {
  width: 100%;
  list-style: none;
}

.navigation-items .navigation-item a,
.navigation-items .button-cta a {
  display: block;
  padding: 8px 16px;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navigation-items .navigation-item a span,
.navigation-items .button-cta a span {
  white-space: nowrap;
  color: #27a8e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navigation-items .navigation-item a:hover, .navigation-items .navigation-item a:active, .navigation-items .navigation-item a.active,
.navigation-items .button-cta a:hover,
.navigation-items .button-cta a:active,
.navigation-items .button-cta a.active {
  background-color: #27a8e0;
}

.navigation-items .navigation-item a:hover span, .navigation-items .navigation-item a:active span, .navigation-items .navigation-item a.active span,
.navigation-items .button-cta a:hover span,
.navigation-items .button-cta a:active span,
.navigation-items .button-cta a.active span {
  color: #f2fafe;
}

@media (min-width: 769px) {
  .main-header .hamburger-icon {
    display: none;
  }
  .main-navigation {
    display: block;
  }
  .side-drawer {
    display: none;
  }
  .navigation-items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navigation-items .navigation-item {
    margin: 0 8px;
    height: 100%;
  }
  .navigation-items .navigation-item a {
    height: 100%;
    padding: 0 8px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navigation-items .navigation-item a span {
    color: #27a8e0;
  }
  .navigation-items .navigation-item a::before {
    position: absolute;
    bottom: 0;
    content: "";
    width: 100%;
    border-bottom: 2px solid #27a8e0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .navigation-items .navigation-item a:hover, .navigation-items .navigation-item a:active, .navigation-items .navigation-item a.active {
    background-color: unset;
  }
  .navigation-items .navigation-item a:hover::before, .navigation-items .navigation-item a:active::before, .navigation-items .navigation-item a.active::before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    border-bottom: 2px solid #27a8e0;
  }
  .navigation-items .navigation-item a:hover span, .navigation-items .navigation-item a:active span, .navigation-items .navigation-item a.active span {
    color: #27a8e0;
  }
  .navigation-items .button-cta {
    margin: 0 8px;
    background-color: #27a8e0;
    border-radius: 8px;
  }
  .navigation-items .button-cta a {
    padding: 8px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navigation-items .button-cta a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #f2fafe;
  }
  .navigation-items .button-cta a:hover, .navigation-items .button-cta a:active, .navigation-items .button-cta a.active {
    border-radius: 8px;
    background-color: #e2f4fd;
    -webkit-box-shadow: 2px 2px 3px #badbe9;
            box-shadow: 2px 2px 3px #badbe9;
  }
  .navigation-items .button-cta a:hover span, .navigation-items .button-cta a:active span, .navigation-items .button-cta a.active span {
    color: #27a8e0;
  }
}

.logo {
  height: 100%;
}

.logo img {
  height: 100%;
  width: 100%;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  opacity: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.backdrop--enable {
  display: block;
  opacity: 1;
}

.modal {
  position: absolute;
  top: -25%;
  left: 50%;
  z-index: 10;
  background-color: white;
  width: 80%;
  max-height: 300px;
  max-width: 400px;
  border-radius: 8px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal .modal-header {
  color: #27a8e0;
  font-size: 1.1rem;
  width: 100%;
  padding: 8px 16px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #f2fafe;
}

.modal .modal-body {
  padding: 16px;
}

.modal .modal-action {
  padding: 8px;
  width: 100%;
  text-align: right;
}

.modal .modal-action .modal-action__close {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #860000;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal.modal--show {
  top: 25%;
}

.form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: #f2fafe;
  padding: 16px 24px;
  -webkit-box-shadow: 2px 2px 3px #badbe9;
          box-shadow: 2px 2px 3px #badbe9;
  border: 1px solid #eee;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form .form__title {
  font-weight: bold;
  font-size: 1.2rem;
  color: #27a8e0;
  margin-bottom: 8px;
}

.form .form__error {
  margin: 4px;
  text-align: center;
  font-weight: bold;
  color: red;
  font-size: 1rem;
}

.form .form__input {
  margin: 8px 0;
  width: 100%;
  padding: 16px 16px;
  outline: none;
  font-size: 0.9rem;
  outline: none;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 3px #badbe9;
          box-shadow: 2px 2px 3px #badbe9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form .form__input--valid {
  background-color: #f5fff5;
}

.form .form__input--invalid {
  background-color: #fff5f5;
}

.form .form__btn {
  margin: 8px;
}

.form .form__link {
  text-align: center;
}

.form .form__link a {
  text-decoration: none;
}

.form .form__link a span {
  color: #4bb4e2;
}

.btn {
  padding: 12px 16px;
  font-size: 0.9rem;
  outline: none;
  border: none;
  border-radius: 8px;
  background-color: #27a8e0;
  cursor: pointer;
  color: #f2fafe;
  -webkit-box-shadow: 2px 2px 3px #badbe9;
          box-shadow: 2px 2px 3px #badbe9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #f2fafe;
  color: #27a8e0;
}

.btn:disabled {
  cursor: not-allowed;
  background-color: #e2f4fd;
  color: #555555;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #27a8e0;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.home-module {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home-module .home-module__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px;
}

.home-module .home-module__image img {
  width: 100%;
}

.home-module .home-module__content {
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home-module .home-module__content .home-module__content-heading {
  font-size: 2.5rem;
  color: #27a8e0;
  text-align: center;
}

.home-module .home-module__content .home-module__content-text {
  text-align: center;
  font-size: 1.5rem;
  color: #191919;
}

@media (min-width: 769px) {
  .home-module {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .home-module .home-module__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .home-module .home-module__content .home-module__content-heading {
    font-size: 3.5rem;
    text-align: left;
  }
  .home-module .home-module__content .home-module__content-text {
    font-size: 2rem;
    text-align: left;
  }
}

.message-module {
  height: calc(100vh - 128px);
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message-module .follow-button {
  background-color: #27a8e0;
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}

.message-module .follow-button:hover {
  background-color: #27a8e0;
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

.message-module .contact-header {
  padding: 0 8px;
  height: 48px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f2fafe;
}

.message-module .contact-header .contact-window-toggle {
  cursor: pointer;
  border: none;
  outline: none;
  padding: 6px;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #27a8e0;
  background-color: #f2fafe;
}

.message-module .contact-header .contact-name {
  font-size: 1.2rem;
  padding: 6px;
  color: #27a8e0;
}

.message-module .contact-window {
  height: 100%;
  width: 70%;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: #f2fafe;
}

.message-module .contact-window::-webkit-scrollbar {
  display: none;
}

.message-module .contact-window .contacts {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.message-module .contact-window .contacts .contact-list__empty {
  text-align: center;
  color: #27a8e0;
  width: 100%;
  margin-top: 16px;
}

.message-module .contact-window .contacts .contact {
  height: 64px;
  width: 100%;
  padding: 8px 16px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.message-module .contact-window .contacts .contact .contact-content {
  width: calc(95% - 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.message-module .contact-window .contacts .contact .contact-content .contact-image {
  display: inline-block;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid #323232;
  border-radius: 50%;
  overflow: hidden;
}

.message-module .contact-window .contacts .contact .contact-content .contact-image img {
  height: 100%;
  width: 100%;
}

.message-module .contact-window .contacts .contact .contact-content .contact-info {
  height: 100%;
  width: calc(100% - 40px);
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message-module .contact-window .contacts .contact .contact-content .contact-info .contact-info__name {
  display: block;
  font-size: 1rem;
}

.message-module .contact-window .contacts .contact .contact-content .contact-info .contact-info__name.contact-info__name--bold {
  font-weight: 500;
}

.message-module .contact-window .contacts .contact .contact-content .contact-info .contact-info__last-message {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #323232;
}

.message-module .contact-window .contacts .contact .contact-content .contact-info .contact-info__last-message.contact-info__last-message--bold {
  font-weight: 500;
}

.message-module .contact-window .contacts .contact .contact__new-message {
  display: inline-block;
  visibility: hidden;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: #27a8e0;
}

.message-module .contact-window .contacts .contact .contact__new-message.contact__new-message--show {
  visibility: visible;
}

.message-module .contact-window .contacts .contact:hover, .message-module .contact-window .contacts .contact.contact--active {
  background-color: white;
}

.message-module .contact-window--open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.message-module .message-area {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.message-module .message-area .chat-window {
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 242px);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.message-module .message-area .chat-window::-webkit-scrollbar {
  display: none;
}

.message-module .message-area .chat-window .messages {
  height: 100%;
  width: 100%;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.message-module .message-area .chat-window .messages .messages-help {
  font-size: 1.2rem;
  font-weight: normal;
  color: #27a8e0;
  text-align: center;
}

.message-module .message-area .chat-window .messages .my-message {
  margin: 4px 0;
  width: 100%;
  display: inline-block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message-module .message-area .chat-window .messages .my-message .message-author {
  font-size: 0.9rem;
  color: #323232;
  margin: 2px 0;
}

.message-module .message-area .chat-window .messages .my-message .message-text {
  max-width: 70%;
  overflow-wrap: break-word;
  padding: 8px 16px;
  background-color: #eee;
  color: #191919;
  border-radius: 16px 0 16px 16px;
}

.message-module .message-area .chat-window .messages .user-message {
  width: 100%;
  margin: 4px 0;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message-module .message-area .chat-window .messages .user-message .message-author {
  font-size: 0.9rem;
  color: #323232;
  margin: 2px 0;
}

.message-module .message-area .chat-window .messages .user-message .message-text {
  max-width: 70%;
  overflow-wrap: break-word;
  padding: 8px 16px;
  background-color: #f2fafe;
  color: #191919;
  border-radius: 0 16px 16px 16px;
}

.message-module .message-area .new-message {
  width: 100%;
  height: 64px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message-module .message-area .new-message .new-message__input {
  border-radius: 8px;
  margin-right: 8px;
  border: 1px solid transparent;
  padding: 0 16px;
  outline: none;
  height: 100%;
  width: 100%;
  background-color: #eee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.message-module .message-area .new-message .new-message__input:focus {
  border-color: #4bb4e2;
  background-color: white;
}

.message-module .message-area .new-message .new-message__input:disabled {
  cursor: not-allowed;
}

.message-module .message-area .new-message .emoji-chip {
  margin-right: 8px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.message-module .message-area .new-message .emoji-chip .emoji-btn {
  cursor: pointer;
  padding: 0 16px;
  font-size: 0.9rem;
  outline: none;
  border: none;
  height: 100%;
  background-color: #eee;
  color: #323232;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.message-module .message-area .new-message .emoji-chip .emoji-btn span {
  font-family: "Seoge UI Symbol", sans-serif;
}

.message-module .message-area .new-message .emoji-chip .emoji-btn:nth-child(1) {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.message-module .message-area .new-message .emoji-chip .emoji-btn:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.message-module .message-area .new-message .emoji-chip .emoji-btn:hover {
  background-color: #e2f4fd;
  color: #4bb4e2;
}

.message-module .message-area .new-message .emoji-chip .emoji-btn:disabled:hover, .message-module .message-area .new-message .emoji-chip .emoji-btn:disabled {
  background-color: #eee;
  color: #323232;
  cursor: not-allowed;
}

.message-module .message-area .new-message .emoji-chip .recommendation-btn {
  cursor: pointer;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.9rem;
  outline: none;
  border: none;
  height: 100%;
  background-color: #eee;
  color: #323232;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.message-module .message-area .new-message .emoji-chip .recommendation-btn:hover {
  background-color: #e2f4fd;
  color: #4bb4e2;
}

.message-module .message-area .new-message .emoji-chip .recommendation-btn:disabled:hover, .message-module .message-area .new-message .emoji-chip .recommendation-btn:disabled {
  background-color: #eee;
  color: #323232;
  cursor: not-allowed;
}

.message-module .message-area .new-message .new-message__button {
  cursor: pointer;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.9rem;
  outline: none;
  border: none;
  height: 100%;
  background-color: #4bb4e2;
  color: #f2fafe;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.message-module .message-area .new-message .new-message__button:hover {
  background-color: #e2f4fd;
  color: #4bb4e2;
}

.message-module .message-area .new-message .new-message__button:disabled:hover, .message-module .message-area .new-message .new-message__button:disabled {
  background-color: #eee;
  color: #323232;
  cursor: not-allowed;
}

@media (min-width: 769px) {
  .message-module {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .message-module .contact-header {
    display: none;
  }
  .message-module .contact-window {
    width: 30%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: relative;
  }
  .message-module .message-area {
    width: 70%;
  }
  .message-module .message-area .chat-window {
    max-height: calc(100vh - 194px);
  }
}

.account-module {
  height: calc(100vh - 128px);
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.account-module .settings-header {
  padding: 0 8px;
  height: 48px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f2fafe;
}

.account-module .settings-header .settings-window-toggle {
  cursor: pointer;
  border: none;
  outline: none;
  padding: 6px;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #27a8e0;
  background-color: #f2fafe;
}

.account-module .settings-window {
  height: 100%;
  width: 70%;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: #f2fafe;
}

.account-module .settings-window::-webkit-scrollbar {
  display: none;
}

.account-module .settings-window .settings {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.account-module .settings-window .settings .setting {
  height: 64px;
  width: 100%;
  padding: 8px 16px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.account-module .settings-window .settings .setting .setting__icon {
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5rem;
  color: #27a8e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.account-module .settings-window .settings .setting .setting__title {
  font-size: 1rem;
  color: #323232;
}

.account-module .settings-window .settings .setting:hover, .account-module .settings-window .settings .setting.setting--active {
  background-color: white;
}

.account-module .settings-window--open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.account-module .settings-area {
  width: 100%;
  height: 100%;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 769px) {
  .account-module {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .account-module .settings-header {
    display: none;
  }
  .account-module .settings-window {
    width: 30%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: relative;
  }
  .account-module .settings-area {
    width: 70%;
  }
}

.interests-module {
  width: 100%;
  max-width: 500px;
  padding: 16px;
  border-radius: 8px;
  background-color: #f2fafe;
  -webkit-box-shadow: 2px 2px 3px #badbe9;
          box-shadow: 2px 2px 3px #badbe9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.interests-module .interests-module__title {
  font-weight: bold;
  font-size: 1.2rem;
  color: #27a8e0;
  margin-bottom: 8px;
}

.interests-module .interests-module__error {
  margin: 4px;
  text-align: center;
  font-weight: bold;
  color: red;
  font-size: 1rem;
}

.interests-module .new-interest {
  width: 100%;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.interests-module .new-interest .new-interest__input {
  margin-right: 8px;
  width: 100%;
  padding: 12px 16px;
  outline: none;
  font-size: 0.9rem;
  outline: none;
  border: none;
  border-radius: 8px;
  background-color: #eee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.interests-module .new-interest .new-interest__input:focus {
  border-color: #4bb4e2;
  background-color: white;
}

.interests-module .new-interest .new-interest__input:disabled {
  cursor: not-allowed;
}

.interests-module .interest-window {
  margin: 8px;
  width: 100%;
  min-height: 100px;
  border: 1px solid #27a8e0;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.interests-module .interest-window .interest-chip {
  margin: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #f2fafe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.interests-module .interest-window .interest-chip .interest-chip__label {
  font-size: 1rem;
  margin: 0 4px;
}

.interests-module .interest-window .interest-chip .interest-chip__btn {
  font-size: 1rem;
  color: #990000;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}

.profile-picture-module .profile-picture__preview {
  height: 100px;
  width: 100px;
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
}

.profile-picture-module .profile-picture__preview img {
  height: 100%;
}

.video-chat {
  height: calc(100vh - 128px);
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 3px #badbe9;
          box-shadow: 2px 2px 3px #badbe9;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.video-chat::-webkit-scrollbar {
  display: none;
}

.video-chat .video-chat__window {
  height: calc(100vh - 128px);
  width: 100%;
  background-color: #f2fafe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-chat .video-chat__window .video-chat__users {
  height: calc(100vh - 252px);
  width: 100%;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-chat .video-chat__window .video-chat__users .video-chat__user {
  height: 48%;
  width: 100%;
  border: 1px solid eee;
  -webkit-box-shadow: 2px 2px 3px #badbe9;
          box-shadow: 2px 2px 3px #badbe9;
  border-radius: 8px;
  background-color: white;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-chat .video-chat__window .video-chat__users .video-chat__user:nth-child(1) {
  margin-bottom: 16px;
}

.video-chat .video-chat__window .video-chat__caption {
  width: 100%;
  margin-bottom: 16px;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap;
  text-overflow: clip;
  background-color: rgba(15, 15, 15, 0.7);
  color: #eee;
  direction: rtl;
}

.video-chat .video-chat__window .video-chat__actions {
  padding: 16px;
  width: 100%;
  background-color: #27a8e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.video-chat .video-chat__window .video-chat__actions .video-chat__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 1.2rem;
  border-radius: 50%;
  background-color: white;
  border: none;
  color: #27a8e0;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-chat .video-chat__window .video-chat__actions .video-chat__btn:hover {
  background-color: #e2f4fd;
}

.video-chat .video-chat__window .video-chat__actions .video-chat__btn:disabled {
  cursor: not-allowed;
  background-color: #e2f4fd;
}

.video-chat .video-chat__window .video-chat__actions .video-chat__btn.video-chat__btn--end {
  color: red;
}

.video-chat .video-chat__window .video-chat__actions .video-chat__btn.video-chat__btn--end:hover {
  background-color: red;
  color: white;
}

.video-chat .video-chat__messages {
  height: calc(100vh - 128px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-chat .video-chat__messages .chat-window {
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 196px);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.video-chat .video-chat__messages .chat-window::-webkit-scrollbar {
  display: none;
}

.video-chat .video-chat__messages .chat-window .messages {
  height: 100%;
  width: 100%;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.video-chat .video-chat__messages .chat-window .messages .messages-help {
  font-size: 1.2rem;
  font-weight: normal;
  color: #27a8e0;
  text-align: center;
}

.video-chat .video-chat__messages .chat-window .messages .my-message {
  margin: 4px 0;
  width: 100%;
  display: inline-block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-chat .video-chat__messages .chat-window .messages .my-message .message-author {
  font-size: 0.9rem;
  color: #323232;
  margin: 2px 0;
}

.video-chat .video-chat__messages .chat-window .messages .my-message .message-text {
  max-width: 70%;
  overflow-wrap: break-word;
  padding: 8px 16px;
  background-color: #eee;
  color: #191919;
  border-radius: 16px 0 16px 16px;
}

.video-chat .video-chat__messages .chat-window .messages .user-message {
  width: 100%;
  margin: 4px 0;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-chat .video-chat__messages .chat-window .messages .user-message .message-author {
  font-size: 0.9rem;
  color: #323232;
  margin: 2px 0;
}

.video-chat .video-chat__messages .chat-window .messages .user-message .message-text {
  max-width: 70%;
  overflow-wrap: break-word;
  padding: 8px 16px;
  background-color: #f2fafe;
  color: #191919;
  border-radius: 0 16px 16px 16px;
}

.video-chat .video-chat__messages .new-message {
  width: 100%;
  height: 64px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-chat .video-chat__messages .new-message .new-message__input {
  border-radius: 8px;
  margin-right: 8px;
  border: 1px solid transparent;
  padding: 0 16px;
  outline: none;
  height: 100%;
  width: 100%;
  background-color: #eee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-chat .video-chat__messages .new-message .new-message__input:focus {
  border-color: #4bb4e2;
  background-color: white;
}

.video-chat .video-chat__messages .new-message .new-message__input:disabled {
  cursor: not-allowed;
}

.video-chat .video-chat__messages .new-message .emoji-chip {
  margin-right: 8px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-chat .video-chat__messages .new-message .emoji-chip .emoji-btn {
  cursor: pointer;
  padding: 0 16px;
  font-size: 0.9rem;
  outline: none;
  border: none;
  height: 100%;
  background-color: #eee;
  color: #323232;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-chat .video-chat__messages .new-message .emoji-chip .emoji-btn span {
  font-family: "Seoge UI Symbol", sans-serif;
}

.video-chat .video-chat__messages .new-message .emoji-chip .emoji-btn:nth-child(1) {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.video-chat .video-chat__messages .new-message .emoji-chip .emoji-btn:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.video-chat .video-chat__messages .new-message .emoji-chip .emoji-btn:hover {
  background-color: #e2f4fd;
  color: #4bb4e2;
}

.video-chat .video-chat__messages .new-message .emoji-chip .emoji-btn:disabled:hover, .video-chat .video-chat__messages .new-message .emoji-chip .emoji-btn:disabled {
  background-color: #eee;
  color: #323232;
  cursor: not-allowed;
}

.video-chat .video-chat__messages .new-message .emoji-chip .recommendation-btn {
  cursor: pointer;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.9rem;
  outline: none;
  border: none;
  height: 100%;
  background-color: #eee;
  color: #323232;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-chat .video-chat__messages .new-message .emoji-chip .recommendation-btn:hover {
  background-color: #e2f4fd;
  color: #4bb4e2;
}

.video-chat .video-chat__messages .new-message .emoji-chip .recommendation-btn:disabled:hover, .video-chat .video-chat__messages .new-message .emoji-chip .recommendation-btn:disabled {
  background-color: #eee;
  color: #323232;
  cursor: not-allowed;
}

.video-chat .video-chat__messages .new-message .new-message__button {
  cursor: pointer;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.9rem;
  outline: none;
  border: none;
  height: 100%;
  background-color: #4bb4e2;
  color: #f2fafe;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-chat .video-chat__messages .new-message .new-message__button:hover {
  background-color: #e2f4fd;
  color: #4bb4e2;
}

.video-chat .video-chat__messages .new-message .new-message__button:disabled:hover, .video-chat .video-chat__messages .new-message .new-message__button:disabled {
  background-color: #eee;
  color: #323232;
  cursor: not-allowed;
}

@media (min-width: 769px) {
  .video-chat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .video-chat .video-chat__window {
    height: 100%;
    width: 50%;
  }
  .video-chat .video-chat__messages {
    height: 100%;
    width: 50%;
  }
}
/*# sourceMappingURL=styles.css.map */