#peekobot-container {
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 12px;
    box-shadow: 2px 2px 5px hsl(0, 0%, 60%);
    padding: 1rem 1rem 2rem 1rem;
    height: var(--peekobot-height);
    position: relative;
    width: 420px;
    height: 500px;
}
@media only screen and (max-width: 750px) {
  #peekobot-container {
    border: 1px solid hsl(0, 0%, 90%);
    border-radius: 12px;
    box-shadow: 2px 2px 5px hsl(0, 0%, 60%);
    padding: 1rem 1rem 2rem 1rem;
    height: var(--peekobot-height);
    position: relative;
    width: 100%;
    height: 438px;
  }
}
#peekobot-inner {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    /* Hiding scrollbars is a pain. This is from: https://redstapler.co/css-hidden-scrollbar-while-scrollable-element/ */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#peekobot-inner::-webkit-scrollbar { 
    display: none;  /* Chrome Safari */
}

.chat-response,
.chat-ask {
    opacity: 0;  /* Set to activated to show */
    transform: translateY(-50%); /* Set to activated to move down */
    transition: all 0.3s 0.3s;
    border-radius: 12px;
    background-color: #f7f0f0;
    padding: 0.5rem 0.7rem;
    line-height: 1.4;
    color: black;
    width: 70%;
    margin-bottom: 0.5rem;
    font-size: 1.4em;
}
@media only screen and (max-width: 750px) {
  .chat-response,
  .chat-ask {
      opacity: 0;  /* Set to activated to show */
      transform: translateY(-50%); /* Set to activated to move down */
      transition: all 0.3s 0.3s;
      border-radius: 12px;
      background-color: #f7f0f0;
      padding: 0.5rem 0.7rem;
      line-height: 1.4;
      color: black;
      width: 61%;
      margin-bottom: 0.5rem;
      font-size: 1.1em;
  }
}
.chat-response {
    margin-left: 50px;
    position: relative;
}
.chat-response:before {
    display: block;
    content: '';
    width: 37px;
    height: 37px;
    position: absolute;
    left: -45px;
    top: -2px;
    background-image: url(../images/acc_chat_h.png);
    /* background-color: #999; */
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 100%;
}
.chat-ask {
  background-color: #23a7c1;
  margin-right: 0;
  margin-left: auto;
  color: hsl(0, 0%, 100%);
}
.choices {
  opacity: 0; /* Set to active to show */
  transform: translateY(-50%); /* Set to activated to move down */
  transition: all 0.3s 0.3s;
  transition: opacity 0.3s 0.3s;
  margin-top: 0.5rem;
  margin-left: 30px;
}
.choice {
  display: inline-block;
  outline: none;
  border: 1px solid hsl(0, 0%, 0%);
  padding: 0.5rem 1.2rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  margin-right: 0.2rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  width: 75%;
  text-align: justify;
}
@media only screen and (max-width: 750px) {
  .choice {
    display: inline-block;
    outline: none;
    border: 1px solid hsl(0, 0%, 0%);
    padding: 0.5rem 1.2rem;
    background-color: hsl(0, 0%, 100%);
    border-radius: 1rem;
    font-size: 0.9em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    margin-right: -0.5rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 80%;
    text-align: justify;
  }
}
.choice:disabled {
  color: hsl(0, 0%, 80%);
  border-color: hsl(0, 0%, 80%);
}
.activated {
  opacity: 1;
  transform: translateY(0);
}
.restart {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  outline: none;
  font-size: 12px;
  color: hsl(0, 0%, 50%);
  box-shadow: none;
  border: 1px solid hsl(0, 0%, 60%);
  border-radius: 1rem;
  background: hsl(0, 0%, 100%);
  padding: 0.2rem 0.5rem; 
  cursor: pointer;
}

