#bot-page{
  background: #dddddd;
  transition: transform 0.3s ease-in-out;
  transform: scale(0) translateY(-100%);
  box-sizing: border-box;
  touch-action: none;
  position: fixed;
  max-height: 100vh;
  max-width: 100%;
  height: 100vh;
  width: 100%;
  z-index: 10;
}

#bot-page.active{
  transform: scaleY(1);
}

.bot-head{
  background: #fff;
  display: flex;
  justify-content: space-between;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: bold;
  padding: 20px;
  text-align: center;
  align-items: center;
  height: 60px;
  width: 100%;
  z-index: 5;
}
#returnBot{
  background: transparent;
  border-radius: 10px;
  font-size: 25px;
  height: 40px;
  width: 40px;
}

.home-synbol{
  position: absolute;
  pointer-events: none;
  filter: brightness(1.2);
  height: 100vh;
  width: 100%;
  left: 0%;
  top: 0%;
}


.bot-home{
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: wrap;
  transform: translate(-0%, -0%,);
  padding: 10px;
  min-height: 100vh;
  max-height: 100vh;
  min-width: 100%;
  max-width: 100%;
  height: 100vh;
  gap: 10px;
}
#bot{
  flex-wrap: wrap;
  overflow-y: auto;
  max-height: 70vh;
  padding: 20px;
  height: auto;
  width: 100%;
  z-index: 5;
  gap: 15px;
}

#bot nav{
  background: #fff;
  display: grid;
  place-content: center;
  word-break: break-word;
  max-width: 200px;
  min-height: 20px;
  min-width: 200px;
  border-radius: 10px;
  padding: 10px;
  height: auto;
  width: auto;
  float: left;
  animation: scale 2s linear infinite reverse;
}
@keyframes scale{
  50%{
    transform: scale(0.8);
    opacity: 0.5;
  }100%{
    transform: scale(1);
    opacity: 1;
  }
}

#bot span{
  border-top-left-radius: 30px;border-bottom-right-radius: 30px;
  box-shadow: 0 0 5px 5px #000;
  background: #fff;
  font-family: monospace;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: left;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  max-height: 300px;
  max-width: 200px;
  min-height: 40px;
  min-width: 50%;
  height: auto;
  width: auto;
  float: right;
}
#bot p{
  box-shadow: 0 0 5px 5px #000;
  background: #fff;
  font-family: monospace;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
  border-radius: 10px;
  min-height: 100px;
  min-width: 50%;
  max-height: auto;
  max-width: 200px;
  width: auto;
  height: auto;
  word-wrap: break-word;
  padding: 10px;
  float: left;
}

#bot span, #bot p, #bot nav{
  display: inline-block;
  flex-direction: column;
  padding: 20px;
  margin: 6px;
  gap: 20px;
  z-index: 5;
}




#textBot-home{
  box-shadow: inset 1px 1px 30px rgb(0,0,0,0.50);
  clip-path: inset(5px 5px 5px round 20px 0);
  background: rgb(0,0,0,0.40);
  position: fixed;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: flex-end;
  padding: 10px;
  max-height: 200px;
  height: auto;
  width: 90%;
  bottom: 0%;
  gap: 10px;
  z-index: 5;
}
#line{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: flex-end;
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
  padding: 5px;
  height: auto;
  width: 8px;
}
#input{
  background: #000;
  font-size: 17px;
  display: flex;
  flex-wrap: wrap-reverse;
  font-family: monospace;
  align-items: flex-end;
  color: royalblue;
  word-break: break-all;
  border: none;
  border-radius: 10px;
  outline: none;
  padding: 5px;
  height: 50px;
  width: 100%;
}
#send{
  color: #000;
  display: grid;
  place-content: center;
  border-radius: 50px;
  font-size: 25px;
  min-height: 50px;
  min-width: 50px;
  height: 50px;
  width: 50px;
}