/* shared botkit ui styles */
* {
  box-sizing: border-box; }

body,
html {
  margin: 0;
  padding: 0;
  font-size: 18px;
  background-color: #FFF;
  font-family: 'helvetica', sans-serif; }

.wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto; }
  .wrapper:after {
    content: "";
    display: table;
    clear: both; }

.box {
  border: 2px solid #CCC;
  padding: 1rem calc(1rem - 2px);
  margin-bottom: 1rem; }
  .box:after {
    content: "";
    display: table;
    clear: both; }
  .box h1,
  .box h2,
  .box h3 {
    margin-top: 0; }

footer {
  text-align: center; }

.hero {
  text-align: center;
  padding: 2rem; }
  .hero h1 {
    font-size: 4rem;
    margin: 0; }

a {
  color: #a795ef; }

.copyurl {
  width: 100%;
  font-size: 1.25rem; }

div.input label {
  font-weight: bold;
  font-size: smaller; }

.addon {
  display: flex;
  border: 1px solid #999;
  border-radius: 6px;
  padding: 5px;
  background: #F0F0F0; }
  .addon input,
  .addon textarea {
    flex-grow: 1;
    border: 0;
    background: transparent; }
  .addon button {
    flex-grow: 0;
    background: transparent;
    border: 1px solid #999;
    border-radius: 6px;
    font-weight: bold; }
    .addon button.textarea {
      align-self: flex-start;
      padding: 0.5rem; }
    .addon button:hover {
      background: #FFF;
      color: #a795ef; }

div.hr {
  border: 1px dashed #ccc;
  width: 10%;
  margin: 4rem auto;
  height: 1px; }

a.button {
  border: 2px solid #a795ef;
  font-weight: bold;
  margin: 0;
  border-radius: 3px;
  display: inline-block;
  padding: 0.5rem 2rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  transition: box-shadow 0.1s linear; }
  a.button:hover {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); }

/* chat client */
#message_window {
  background: #E2E2E2;
  /* border-left: 1px solid #CCC;
  border-right: 1px solid #CCC; */
  /*height: 500px;
  width: 320px;*/
  height: 100%;
  width: 100%;
  /*margin: 2rem auto;*/
  display: flex;
  flex-direction: column;
  font-family: 'helvetica', sans-serif; }
  #message_window .disconnected {
    background: #FFFFCC;
    padding: 0.25rem; }
  #message_window.connected .disconnected {
    display: none; }
  #message_window .offline {
    display: none; }
  #message_window.offline .disconnected {
    display: none; }
  #message_window.offline .offline {
    background: #FF0000;
    color: #FFF;
    padding: 0.25rem;
    display: block; }
  #message_window .powered_by {
    background-color: #E2E2E2;
    flex-shrink: 0;
    text-align: left;
    border-bottom: 1px solid #CCC;
    font-size: 18px;
    padding: 0.25rem;
    color: #777; }
    #message_window .powered_by a {
      text-decoration: none;
      color: #777; }
    #message_window .powered_by img {
      /* bottom: 20px; */
      position: relative;
      left: 5px; 
      top: 6px;
    }
  #message_window section {
    flex-grow: 1;
    flex-direction: column-reverse;
    display: flex;
    overflow-y: auto; }
    #message_window section div div {
      margin: 0.25rem;
      clear: both; }
  #message_window footer {
    border-top: 1px solid #CCC;
    padding: 0.25rem;
    bottom: 22px;
    background: white;
    border-radius: 10px;
    /* display: flex; */
    align-items: center;
    }
    #message_window footer textarea {
      flex-grow: 1;
      font-size: 14px;
      outline: none;
      border: none;
      resize: none;
      overflow: auto; /* Добавляем полосу прокрутки, если текст не помещается */
      min-height: 40px; /* Задаем минимальную высоту, чтобы textarea не схлопывался */
      max-height: 200px; /* Ограничиваем максимальную высоту, чтобы textarea не росла бесконечно */
      font-family: 'helvetica', sans-serif;
      padding: 5px; /* Добавляем отступы внутри textarea для лучшего вида */
    }
    #message_window footer button[type="submit"] {
      width: 45px;
      background: none;
      /* background-color: E2E2E2;  */
      /* border: 0; */
      border-radius: 30px;
      cursor: pointer;
      padding: 0;
      transition: transform 0.1s ease, box-shadow 0.1s ease; /* Плавные переходы для эффекта нажатия */
      box-shadow: 0 1px 0px rgba(0, 0, 0, 0.3);
      outline: none; /* Убираем стандартную обводку при фокусе */
    }
    #message_window footer input[type="text"] {
      flex-grow: 1;
      font-size: 14px;
      overflow: auto; /* Добавляем полосу прокрутки, если текст не помещается */
      min-height: 40px; /* Задаем минимальную высоту, чтобы textarea не схлопывался */
      font-family: 'helvetica', sans-serif; 
      outline: none;
      border: none;}

    /* При наведении */
    #message_window footer button[type="submit"]:hover {
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3); /* Увеличиваем тень при наведении */
    }
    /* При нажатии */
    #message_window footer button[type="submit"]:active {
      transform: translateY(1px); /* Сдвигаем кнопку немного вниз */
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); /* Уменьшаем тень при нажатии */
    }
  #message_window form {
    display: flex;
    margin: 0;
    padding: 0.25rem; }
  #message_window #message_template {
    display: none; }
  #message_window .message {
    font-size: 14px;
    padding: 0.5rem;
    background: #FFFFFF;
    color: #333;
    border-radius: 10px;
    width: auto;
    display: inline-block;
    max-width: 75%; }
  #message_window .file_attachment {
    background: #F0F0F0;
    color: #333;
    border-radius: 5px;
    display: inline-block;
    max-width: 75%; }
    #message_window .file_attachment img {
      max-width: 100%;
      display: block; }
  #message_window .button_message {
    margin: 1rem 0;
    border-radius: 4px;
    border-color: orange;
    border-style: solid;
    color: orange;
    border-width: 1px;
    padding: 0.25rem 1rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    display: block; }
  #message_window .message p {
    margin-top: 0;
    margin-bottom: 0.5rem; }
  #message_window .message p:last-child {
    margin-bottom: 0; }
  #message_window .message.outgoing {
    float: right;
    background: #9B9081;
    color: white; }
  #message_window #message_replies {
    text-align: center;
    overflow-x: auto;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
    /* Lets it scroll lazy */ }
    #message_window #message_replies ul {
      list-style-type: none;
      margin: 0px auto;
      padding: 0; }
      #message_window #message_replies ul li {
        display: inline-block;
        margin: 0.5rem;
        margin-left: 0; }
    #message_window #message_replies a {
      text-decoration: none;
      display: block;
      border: 1px solid #a795ef;
      color: #a795ef;
      border-radius: 16px;
      padding: 0.25rem 1rem;
      font-size: 14px;
      cursor: pointer; }
      #message_window #message_replies a:hover {
        background: #a795ef;
        color: #FFF; }

/* typing indicator CSS based on code by Joseph Fusco -> https://codepen.io/fusco/pen/XbpaYv */
.typing-indicator {
  display: table;
  margin: 0 auto;
  position: relative; }
  .typing-indicator span {
    height: 5px;
    width: 5px;
    float: left;
    margin: 0 1px;
    background-color: #333;
    display: block;
    border-radius: 50%;
    opacity: 0.4; }
    .typing-indicator span:nth-of-type(1) {
      animation: 1s blink infinite 0.3333s; }
    .typing-indicator span:nth-of-type(2) {
      animation: 1s blink infinite 0.6666s; }
    .typing-indicator span:nth-of-type(3) {
      animation: 1s blink infinite 0.9999s; }

@keyframes blink {
  50% {
    opacity: 1; } }
/* special styles for homepage */
#home {
  position: relative;
  max-width: 650px;
  margin: auto; }
  #home:after {
    content: "";
    display: table;
    clear: both; }

#homepage_bot {
  width: 650px;
  height: 450px;
  float: left;
  border: 5px solid #333;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); }
  #homepage_bot iframe {
    border: 0;
    height: 100%;
    width: 100%; }

#welcome {
  margin-left: 440px; }

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