.main .proactive-chat-wrapper {
  position: absolute;
  margin: 0;
  padding: 0;
  max-height: 0;
}
.proactive-chat-container {
  position: fixed;
  right: -1000px;
  bottom: 50px;
  width: 87.5%;
  z-index: 110;
  padding: 10px;
  margin: 0;
  border: solid 1px #E7E6E6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: transform linear 0.2s;
}
.proactive-chat-container.is-opened {
  transform: translateX(-1000px);
  transition: transform linear 0.4s;
}
@media screen and (orientation: landscape) {
  .proactive-chat-container {
    width: 72%;
  }
}
@media only screen and (min-width: 980px) {
  .proactive-chat-container {
    width: 320px;
    bottom: 60px;
  }
}
.proactive-chat-container .proactive-chat-header {
  display: flex;
  align-items: center;
  height: 35px;
  margin: -10px -10px 0;
  padding: 0 10px;
  background-color: #3dcd58;
}
.proactive-chat-container .proactive-chat-header div {
  flex-grow: 1;
  margin-left: 10px;
  height: 100%;
  line-height: 35px;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
}
.proactive-chat-container .proactive-chat-header .chat-close-icon {
  color: #ffffff;
  cursor: pointer;
}
.proactive-chat-container .proactive-chat-header .chat-close-icon:hover {
  opacity: 0.7;
}
.proactive-chat-container .proactive-chat-header .chat-close-icon:active {
  color: #009530;
}
.proactive-chat-container .proactive-chat-content {
  display: flex;
  padding: 15px 0;
}
.proactive-chat-container .chat-manager-icon {
  height: 35px;
  min-width: 35px;
  background: url(/shop-static/assets/images/proactive_chat_avatar.png) left top / 100% no-repeat;
}
.proactive-chat-container .chat-message {
  position: relative;
  margin-left: 7px;
  padding: 5px 10px;
  border: solid 1px #E7E6E6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 12px;
}
.proactive-chat-container .corner-left-outer {
  position: absolute;
  left: -15px;
  top: 0.85em;
  border: 7px solid transparent;
  border-right: 7px solid #E7E6E6;
}
.proactive-chat-container .corner-left-inner {
  position: absolute;
  left: -0.3em;
  top: -0.45em;
  border: 6px solid transparent;
  border-right: 6px solid #ffffff;
}
.proactive-chat-container > button {
  height: 35px;
  width: 100%;
  background-color: #42b4e6;
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  border: none;
  outline: none;
}
.proactive-chat-container > button:hover {
  background: linear-gradient(180deg, #55D1FE 0%, #42b4e6 100%);
}
.proactive-chat-container .proactive-chat-icon {
  height: 25px;
  width: 25px;
  background: url(/shop-static/assets/images/chat_icon.svg) center no-repeat;
}
.proactive-chat-container .proactive-chat-icon.proactive-chat-show {
  position: absolute;
  right: 1000px;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-color: #3ACD55;
  background-size: 75% 75%;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(51, 51, 51, 0.3);
}
@media only screen and (min-width: 980px) {
  .proactive-chat-container .proactive-chat-icon.proactive-chat-show {
    width: 35px;
    height: 35px;
  }
  .proactive-chat-container .proactive-chat-icon.proactive-chat-show:hover {
    background: url(/shop-static/assets/images/chat_icon.svg) center / 75% no-repeat, linear-gradient(180deg, #51EB6E 0%, #3ACD55 100%);
  }
}

