/*!************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./webpage/scss/index.scss ***!
  \************************************************************************************************************************************************************************************************************************************************/
* {
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  background-color: #fff;
  color: #fff;
  font-family: Roboto, sans-serif;
}

button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

/* a blue color as a generic focus style */
button.focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

.full-width {
  width: 100%;
  margin: 0 auto;
  max-width: 1800px;
}

.default-background-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 835px;
}

.relative {
  position: relative;
}

.alert {
  position: fixed;
  top: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  display: none;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.chat-wrapper {
  position: absolute;
  bottom: -70px;
  left: 50%;
  width: 85%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.chat {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: rgba(4, 19, 25, 0.8);
  -webkit-transition: all 1s;
  transition: all 1s;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  border-bottom: 8px solid #48efb7;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.chat.__focused {
  width: 100%;
  overflow-y: auto;
  border-color: #48efb7;
}
.chat.__focused .chat-form-label {
  display: none;
}
.chat.__focused .chat-input {
  opacity: 1;
}
.chat.__focused .chat-close-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.chat.__focused .chat-btn {
  color: #48efb7;
}
.chat.__focused[\:has\(.__initialized\)] .chat-body {
  height: 700px;
}
.chat.__focused:has(.__initialized) .chat-body {
  height: 700px;
}
.chat.__focused[\:has\(.__initialized\)] .chat-helpers {
  opacity: 0;
  max-height: 0;
  margin: 0;
}
.chat.__focused:has(.__initialized) .chat-helpers {
  opacity: 0;
  max-height: 0;
  margin: 0;
}
.chat.__focused[\:has\(.__initialized\)] .chat-input::-webkit-input-placeholder {
  color: #9c9c9c;
}
.chat.__focused[\:has\(.__initialized\)] .chat-input::-moz-placeholder {
  color: #9c9c9c;
}
.chat.__focused[\:has\(.__initialized\)] .chat-input:-ms-input-placeholder {
  color: #9c9c9c;
}
.chat.__focused[\:has\(.__initialized\)] .chat-input::-ms-input-placeholder {
  color: #9c9c9c;
}
.chat.__focused[\:has\(.__initialized\)] .chat-input::placeholder {
  color: #9c9c9c;
}
.chat.__focused:has(.__initialized) .chat-input::-webkit-input-placeholder {
  color: #9c9c9c;
}
.chat.__focused:has(.__initialized) .chat-input::-moz-placeholder {
  color: #9c9c9c;
}
.chat.__focused:has(.__initialized) .chat-input:-ms-input-placeholder {
  color: #9c9c9c;
}
.chat.__focused:has(.__initialized) .chat-input::-ms-input-placeholder {
  color: #9c9c9c;
}
.chat.__focused:has(.__initialized) .chat-input::placeholder {
  color: #9c9c9c;
}
.chat.__focused[\:has\(.__initialized\)] .typewrite {
  display: none;
}
.chat.__focused:has(.__initialized) .typewrite {
  display: none;
}

.chat-header {
  position: relative;
  width: 100%;
  padding: 40px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-size: 24px;
}
.chat-header p {
  margin-bottom: 0;
  margin-right: auto;
}

.chat-body {
  width: 100%;
  height: 0;
  -webkit-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
  overflow: hidden;
}

.chat-footer {
  width: 100%;
  background-color: #041319;
  padding: 10px 15px 10px 37px;
}

.chat-helpers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 10px;
  opacity: 1;
  max-height: 70px;
  -webkit-transition: opacity 1s, max-height 1s, margin-bottom 1s;
  transition: opacity 1s, max-height 1s, margin-bottom 1s;
  overflow: hidden;
}

.chat-list-value-btn {
  padding: 10px 20px;
  border-radius: 0;
  background-color: #48efb7;
  color: #041319;
  border: 1px solid #48efb7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.chat-list-value-btn:hover {
  background-color: #3c9;
  border-color: #3c9;
}

.chat-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.chat-form-label {
  position: absolute;
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.chat-input {
  opacity: 0;
  width: 100%;
  height: 52px;
  font-size: 30px;
  padding: 5px 0;
  outline: none;
  font-weight: 300;
  background-color: transparent;
  border: 0;
  color: #fff;
  -webkit-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}
.chat-input::-webkit-input-placeholder {
  color: transparent;
}
.chat-input::-moz-placeholder {
  color: transparent;
}
.chat-input:-ms-input-placeholder {
  color: transparent;
}
.chat-input::-ms-input-placeholder {
  color: transparent;
}
.chat-input::placeholder {
  color: transparent;
}

.chat-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 0;
  width: 70px;
  height: 70px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: transparent;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.chat-btn path {
  stroke: currentcolor;
}
.chat-btn:hover {
  color: #48efb7;
}
.chat-btn :disabled {
  opacity: 0.4;
  background-color: #27953a;
  cursor: not-allowed;
}

.chat-close-btn {
  cursor: pointer;
  display: none;
  padding: 2px;
  outline: none;
  border-radius: 4px;
  border: 0;
  color: #fff;
}
.chat-close-btn path {
  stroke: currentcolor;
  -webkit-transition: stroke 0.2s ease-in-out;
  transition: stroke 0.2s ease-in-out;
}
.chat-close-btn:hover {
  color: #48efb7;
}

.chat-list {
  width: 100%;
  height: 584px;
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
  -webkit-transition: height 1s;
  transition: height 1s;
  padding: 30px 80px;
}
.chat-list a {
  text-decoration: underline;
  font-weight: 400;
}
.chat-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.chat-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.chat-list::-webkit-scrollbar-thumb {
  background-color: #48efb7;
  border-radius: 10px;
}

.chat-message {
  display: block;
  padding: 20px 25px;
  background-color: #d5d5d5;
  font-size: 22px;
  font-weight: 300;
  color: #000;
  letter-spacing: 0;
  line-height: normal;
  border-radius: 15px;
  margin: 20px auto;
  min-height: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 70px;
  max-width: 60%;
  white-space: pre-wrap;
}
.chat-message.__bot {
  border-radius: 15px 15px 15px 0;
  margin: 20px auto 20px 0;
}
.chat-message.__user {
  border-radius: 15px 15px 0;
  margin: 20px 0 20px auto;
  background-color: #48efb7;
}

.chat-message.__usual_white_space {
  white-space: normal;
}

.chat-message.__typing {
  width: 120px;
}

.chat-message a {
  color: inherit;
}
.chat-message a:hover {
  color: #48efb7;
}

.chat-message:first-of-type {
  margin: 0 auto 20px 0;
}

.typing-loader {
  position: relative;
  left: 25px;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-animation: l5 1s infinite linear alternate;
          animation: l5 1s infinite linear alternate;
}

@-webkit-keyframes l5 {
  0% {
    -webkit-box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
            box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
    background: #000;
  }
  33% {
    -webkit-box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
            box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
    background: #c4c4c4;
  }
  66% {
    -webkit-box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
            box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
    background: #c4c4c4;
  }
  100% {
    -webkit-box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
            box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
    background: #000;
  }
}

@keyframes l5 {
  0% {
    -webkit-box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
            box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
    background: #000;
  }
  33% {
    -webkit-box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
            box-shadow: 20px 0 #000, -20px 0 #c4c4c4;
    background: #c4c4c4;
  }
  66% {
    -webkit-box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
            box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
    background: #c4c4c4;
  }
  100% {
    -webkit-box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
            box-shadow: 20px 0 #c4c4c4, -20px 0 #000;
    background: #000;
  }
}
.banner {
  max-width: 1050px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 120px;
  left: 50%;
  -webkit-transform: translate(-50%, calc(100% + 30px));
          transform: translate(-50%, calc(100% + 30px));
  padding: 20px 30px;
  background-color: #f7f7f7;
  cursor: pointer;
  color: #000;
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
}

.banner:hover {
  background-color: #ededed;
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.2);
}

.banner-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-weight: 600;
}

.bold-font {
  font-weight: 600;
}

.regular-font {
  font-weight: 300;
}

.typewrite {
  display: none;
  color: #9c9c9c;
  font-weight: 300;
  font-size: 30px;
  position: absolute;
  margin: 0;
  pointer-events: none;
}
.typewrite.__typing {
  display: block;
}
.typewrite .wrap {
  border-right: 0.08em solid #9c9c9c;
}

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