@import url('https://fonts.googleapis.com/css?family=Roboto');
#hi-chat-container, #hi-chat-conversation {
  border: none;
  height: 420px;
  position: fixed;
  width: 300px;
  transition: border-radius 0.5s ease-in-out, transform 0.5s ease-in-out;
  z-index: 3999999;
  /*MAX Z-INDEX*/
}

#hi-chat-conversation {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  z-index: 3999999;
  /*MAX Z-INDEX*/
}

#hi-chat-container.chatMinimized #hi-chat-conversation {
  border-radius: 100%;
  transform: scale(0);
}

#hi-chat-container.chatMinimized #hi-chat-widget {
  transform: scale(1);
}

#hi-chat-container.chatMinimized {
  height: 0px;
  width: 0px;
}

#hi-chat-notification {
  background: red;
  border-radius: 50%;
  color: #ffff;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: 0;
  text-align: center;
  top: -10px;
  width: 20px;
}

#hi-chat-widget {
  background-color: orange;
  background-image: url('./chat-widget-icon.png');
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  cursor: pointer;
  height: 60px;
  position: fixed;
  transform: scale(0);
  transition: 0.5s ease-in-out;
  z-index: 99;
  width: 60px;
  background-position: center;
  background-size: auto 50%;
}

#hi-chat-container #hi-chat-widget.hidden {
  transform: scale(0);
}

.BottomRight {
  right: 30px;
  bottom: 10px;
}

.BottomCenter {
  left: calc(50% - 150px);
  bottom: 10px;
}

.BottomLeft {
  left: 30px;
  bottom: 10px;
}

.TopRight {
  right: 30px;
  top: 10px;
}

.TopCenter {
  left: calc(50% - 150px);
  top: 10px;
}

.TopLeft {
  left: 30px;
  top: 10px;
}

#hi-chat-container.MiddleLeft {
  left: 10px;
  top: 50%;
}

.MiddleLeft #hi-chat-conversation {
  transform-origin: left top;
}

#hi-chat-container.MiddleRight {
  right: 75px;
  left: auto;
  top: 50%;
}

.BottomRight #hi-chat-widget {
  right: 30px;
  bottom: 10px;
}

.BottomRight #hi-chat-conversation {
  transform-origin: 269px 374px;
}

.BottomCenter #hi-chat-widget {
  right: calc(50% - 50px);
  bottom: 10px;
}

.BottomCenter #hi-chat-conversation {
  transform-origin: bottom center;
}

.BottomLeft #hi-chat-widget {
  left: 30px;
  bottom: 10px;
}

.BottomLeft #hi-chat-conversation {
  transform-origin: 40px 374px;
}

.TopRight #hi-chat-widget {
  right: 30px;
  top: 10px;
}

.TopRight #hi-chat-conversation {
  transform-origin: right bottom;
}

.TopRight #hi-chat-conversation {
  transform-origin: 263px 27px;
}

.TopCenter #hi-chat-widget {
  right: calc(50% - 50px);
  top: 10px;
}

.TopCenter #hi-chat-conversation {
  transform-origin: top center;
}

.TopLeft #hi-chat-widget {
  left: 30px;
  top: 10px;
}

.TopLeft #hi-chat-conversation {
  transform-origin: 40px 27px;
}

.None #hi-chat-widget {
  height: auto;
  width: auto;
  background-color: transparent!important;
}

.Balloon #hi-chat-widget {
  border-radius: 8%;
  height: 50px;
  width: 100px;
  margin-bottom: 20px;
}

.Balloon #hi-chat-widget:before {
  position: absolute;
  border: 10px solid transparent;
  bottom: -24px;
  right: 15px;
  border-top-width: 14px;
  border-top-color: currentColor;
  content: ''
}

.Balloon #hi-chat-notification #hi-chat-notification {
  top: -6px;
  right: -3px;
}

.Circle #hi-chat-widget {}

.Box #hi-chat-widget {
  border-radius: 8%;
  height: 50px;
  width: 100px;
}

.Box #hi-chat-widget #hi-chat-notification {
  top: -6px;
  right: -3px;
}

.Oval #hi-chat-widget {
  width: 100px;
}

.Oval #hi-chat-widget #hi-chat-notification {
  top: 5px;
}

#hi-chat-container.MiddleRight.Box, #hi-chat-container.MiddleRight.Balloon, #hi-chat-container.MiddleRight.Oval {
  right: 110px;
}

.TopCenter.Circle #hi-chat-widget, .BottomCenter.Circle #hi-chat-widget {
  right: calc(50% - 30px);
}

#img-widget {
  max-width: 130px;
  max-height: 100px;
}

@media screen and (max-width: 520px) {
  #hi-chat-container, #hi-chat-conversation {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
  }
}