.floating-nuan-chat {
  position: fixed;
  height: 1px;
  width: 1px;
  right: 0px;
  bottom: 0px;
  background: transparent;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-style: none;
  border-width: 0px;
  z-index: 99999;
  padding: 5px;
  -webkit-transition: height 200ms linear, opacity 1000ms linear;
  transition: height 200ms linear, opacity 1000ms linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0px;
}

body.chatopen {
  position: fixed;
  width: 100%;
  top: 0px;
  overflow: hidden;
}

/*
@media only screen and (min-width : 320px) and (max-width : 560px) {
    body.chatopen {-webkit-text-size-adjust: none;}
}
*/
.floating-nuan-chat iframe {
  width: 1px;
  height: 1px;
  opacity: 0;
  -webkit-transition: opacity 1000ms linear;
  transition: opacity 1000ms linear;
  z-index: 100;
  position: relative;
}

.floating-nuan-chat iframe.enter {
  opacity: 1;
  -webkit-box-shadow: 2px 3px 19px -2px rgb(0, 0, 0);
  box-shadow: 2px 3px 19px -2px rgb(0, 0, 0);
  border-radius: 0.5em;
}

.floating-nuan-chat.adjust-height {
  top: 0px;
  height: auto !important;
}

.floating-nuan-chat.adjust-width {
  left: 0px;
  width: auto !important;
}

.floating-nuan-chat.adjust-height iframe {
  -webkit-transition: none;
  transition: none;
  height: 100% !important;
}

.floating-nuan-chat.adjust-width iframe {
  -webkit-transition: none;
  transition: none;
  width: 100% !important;
}

.floating-nuan-chat.adjust-height .nuance-chat-button {
  display: none;
}