.Bot {
  position: fixed;
  right: 20px;
  z-index: 1011;
  min-width: 180px;
  bottom: 100px;
}
.Bot button {
  cursor: pointer;
  border: 0px;
  background-color: transparent;
}
.Bot button img {
  width: 70px;
}
.Bot .Chat {
  box-sizing: border-box;
  width: 0px;
  height: 0px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #EDEDED;
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  background-color: #EDEDED;
}
.Bot .Chat .chat_title {
  position: relative;
  background-color: #002C51;
  padding: 20px 14px;
}
.Bot .Chat .chat_title h4 {
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  color: white;
}
.Bot .Chat .chat_title h4 b {
  color: white;
}
.Bot .Chat .chat_title .close_bot {
  position: absolute;
  top: 25px;
  right: 20px;
  cursor: pointer;
}
.Bot .Chat .chat_title .riduci_bot {
  position: absolute;
  right: 55px;
  top: 19px;
  cursor: pointer;
}
.Bot .Chat .chat_title .riduci_bot img {
  width: auto;
}
.Bot .Chat .chat_body {
  margin: 10px 10px;
  overflow: auto;
  height: 336px;
}
.Bot .Chat .chat_body .rendering_messaggio {
  margin: 10px 0px;
  background-color: #002C51;
  padding: 10px;
  border-radius: 11px 11px 11px 0px;
  overflow: hidden;
}
.Bot .Chat .chat_body .rendering_messaggio * {
  color: white;
}
.Bot .Chat .chat_body .rendering_messaggio p {
  margin: 0px;
  font-weight: 500;
  font-size: 14px;
}
.Bot .Chat .chat_body .rendering_messaggio b,
.Bot .Chat .chat_body .rendering_messaggio u {
  font-size: 14px;
}
.Bot .Chat .chat_body .opzioni {
  margin: 10px 0px;
}
.Bot .Chat .chat_body .opzioni span {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: capitalize;
  padding: 8px 6px;
  box-sizing: border-box;
  border-radius: 6px;
  cursor: pointer;
  color: #002C51;
  border: 1px solid #002C51;
  background-color: #FFFFFF;
}
.Bot .Chat .chat_body .opzioni span:hover {
  color: white;
  background-color: #002C51;
}
.Bot .Chat .chat_body .rendering_messaggio_utente {
  margin: 10px 0px;
  background-color: white;
  padding: 10px;
  border: 1px solid #DDDDDD;
  border-radius: 11px 11px 0px 11px;
  overflow: hidden;
}
.Bot .Chat .chat_body .rendering_messaggio_utente * {
  color: #676767;
}
.Bot .Chat .chat_body .rendering_messaggio_utente p {
  margin: 0px;
  font-weight: 500;
  font-size: 15px;
}
.Bot .Chat .chat_body .rendering_messaggio_utente b {
  font-size: 15px;
}
.Bot .Chat .chat_footer {
  background-color: #fff;
}
.Bot .Chat .chat_footer .Input {
  width: 100%;
  height: 50px;
  position: relative;
}
.Bot .Chat .chat_footer .Input input {
  outline: unset;
  border: 0px;
  width: 100%;
  height: 100%;
  color:#676767;  
  padding: 10px 15px;
}
.Bot .Chat .chat_footer .Input button {
  position: absolute;
  right: 10px;
  top: 11px;
}
.Bot .Chat .chat_footer .Input button img {
  width: 25px;
}
.Bot .sidebar-resources-categories {
  display: none;
  margin-bottom: 20px;
  background-color: #002C51;
  font-weight: 600;
  line-height: 50px;
  border-radius: 8px;
  font-size: 20px;
  padding: 10px;
}
.Bot .sidebar-resources-categories * {
  font-size: 15px;
  color: white;
  line-height: 22px;

}
.Bot .sidebar-resources-categories::after {
  content: '';
  position: absolute;
  left: 45%;
  top: 64px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #002C51;
  clear: both;
}
.Bot .ButtonChat {
  position: relative;
  left: 45px;
}
.BottoneApriBot {
  display: block;
}
.ChatOpen .BottoneApriBot {
  display: none;
}
.ChatOpen .Chat {
  width: 434px;
  height: 471px;
  opacity: 1;
}
@media (max-width: 500px) {
  .Bot {
    bottom: 0px;
    right: 0px;
  }
  .ChatOpen .BottoneApriBot {
    display: none;
  }
  .ChatOpen .Chat {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}
