* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.fa-solid {
  font-size: 80px;
  display: block;
  position: fixed;
  left: 87%;
  top: 77%;
  cursor: pointer;
  transform-origin: center;
  animation: launcherFloat 2.8s ease-in-out infinite;
}

.fa-solid.launcher-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.6);
  transition: opacity 220ms ease, transform 220ms ease;
}

.launcher-icon {
  color: rgba(59, 131, 109, 1.00);
}

.main {
  display: none;
  height: 500px;
  width: 400px;
  background-color: rgb(27, 44, 38);
  border-radius: 5%;
  overflow: hidden;
  position: fixed;
  left: 70%;
  top: 25%;
  opacity: 0;
  transform: translateY(28px) scale(0.86);
  transform-origin: bottom right;
  will-change: transform, opacity;
}
.main.is-opening {
  animation: openChat 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.main .header {
  height: 15%;
  background-color: rgb(92, 126, 78);
  width: 100%;
  position: relative;
}
.main .header .fold {
  width: 30px;
  height: 10px;
  border: solid 1px black;
  border-radius: 10%;
  background-color: rgb(172, 203, 162);
  position: absolute;
  left: 85%;
  top: 10px;
  cursor: pointer;
}
.main .content {
  height: 70%;
  width: 100%;
  background-color: rgb(70, 87, 89);
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 5px;
}
.main .content::before {
  content: "";
  flex: 1 0 0;
}
.main .content .user {
  border: solid 1px black;
  padding: 10px;
  border-radius: 15px;
  background-color: rgb(172, 203, 162);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  align-self: flex-end;
  font-size: 17px;
}
.main .content .gpt {
  border: solid 1px black;
  padding: 10px;
  border-radius: 15px;
  background-color: sandybrown;
  align-self: flex-start;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 17px;
}
.main .content .gpt ol, .main .content .gpt ul {
  padding-left: 20px;
  margin: 8px 0;
}
.main .content .gpt ol li, .main .content .gpt ul li {
  margin-bottom: 5px;
}
.main .content .gpt strong {
  font-weight: bold;
}
.main .content .spacer {
  flex: 1 1 auto;
}
.main .footer {
  height: 15%;
  background-color: rgb(0, 118, 55);
}
.main .footer form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.main .footer form .text_conteiner {
  background-color: white;
  height: 60%;
  width: 80%;
  border-radius: 10px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
  gap: 10px;
}
.main .footer form .text_conteiner .text {
  width: 80%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
}
.main .footer form .text_conteiner .send {
  background-color: white;
  border: none;
}
.main .footer form .text_conteiner .send svg {
  transform: rotate(90deg);
  cursor: pointer;
  background-color: none;
}

@keyframes openChat {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.86);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes launcherFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}/*# sourceMappingURL=index.css.map */
