@font-face {
  font-family: system;
  font-style: normal;
  font-weight: 300;
  src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"), local(".LucidaGrandeUI"), local("Ubuntu Light"), local("Segoe UI Light"), local("Roboto-Light"), local("DroidSans"), local("Tahoma");
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes chatbotBounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes dropshadow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(.5);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 1000000000;
  bottom: 0px;
  right: 0px;
  padding: 5px 5px 15px 5px;
  margin: 0px;
}

@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.chatbot-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 1000000000;
  transition: 0.3s;
  margin: 10px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  position: relative;
  animation-name: chatbotBounce;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

}

.circle-anime {
  width: 40px;
  height: 0px;
  box-shadow: 0px 6px 15px 2px rgba(0, 0, 0, 0.5);
  position: absolute;
  align-self: flex-end;
  left: 26px;
  bottom: 15px;
  animation: dropshadow 1s ease-out infinite;
}

.popup-chatbot {
  display: none;
  position: absolute;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 0;
  bottom: 85px;
  right: 6px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: white;
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both;
}

@media (max-width: 680px) {
  .popup-chatbot p {
    font-size: 0.9em;
  }

  .popup-chatbot .closePopup {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000000001;
    margin: 8px;
    padding: 0;
  }
}

.closePopup {
  display: none;
  width: 30px;
  height: 30px;
  margin: 10px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f76060;
  -webkit-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}

.closePopup:hover {
  background-color: #f71d1d;
  transition: 0.3s;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  padding: 0;
}

.send-msPopup:hover {
  background-color: #f8f8f8;
  transition: 0.3s;
}

.send-msPopup img {
  width: 24px;
  height: 24px;
}

.is-active-chatbot {
  overflow: auto;
}

.is-active-chatbot-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
}

.icon-chatbot-small {
  width: 24px;
  height: 24px;
}

.icon-chatbot,
.icon-close {
  width: 55px;
}

.icon-close {
  display: none;
}

.is-active-button,
.is-active-button~.circle-anime {
  animation: unset;
}

.is-active-button .icon-close {
  display: block;
}

.is-active-button .icon-chatbot {
  display: none;
}

.icon-font-color {
  color: #ffffff;
}

.icon-font-color--black {
  color: #333333;
}

.widget-iframe {
  border: 0;
  outline: 0;
  min-height: 400px;
  max-height: 450px;
  width: 360px;
}

@media (max-width: 680px) {
  .is-active-chatbot {
    overflow: hidden;
  }

  .widget-iframe {
    max-height: unset;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    left: 0;
    top: 0;
  }
}


.is-active-button button {
  animation: unset;
}


@media (max-width: 680px) {
  .is-active-chatbot {
    overflow: hidden;
  }

  iframe.widget-iframe {
    max-height: unset;
    min-height: unset;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    left: 0;
    top: 0;
  }
}
