.chat_icon {
  /*background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%),*/
  /*  linear-gradient(180deg, #95d4ff 0%, #eeeeee 100%);*/
  background-color: #0077C9;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  /*box-shadow: 0px 3px 6px rgba(59, 65, 94, 0.12), 0px 3px 9px rgba(0, 0, 0, 0.08);*/
  /*border-radius: 50%;*/
  border-radius: 25px;
  /*width: 64px;*/
  /*height: 64px;*/
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  left: 10px;
  bottom: 100px;
  z-index: 900;
  color: #fff;
  font-size: 13px;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.chat_icon .chat_icon_t {
  display: none;
}
.chat_icon:hover{
  width: 105px;
}
.chat_icon:hover img{
  margin-right: 5px;
}
.chat_icon:hover .chat_icon_t{
  display: block;
}
.chat_icon img {
  width: 25px;
  /*width: 38px;*/
  /*height: 38px;*/
}
.chat_frame {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: -1000;
  width: 280px;
  height: 410px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  opacity: 0;
  /*opacity: 1;*/
  /*z-index: 1000;*/
}
.open{
  opacity: 1;
  z-index: 1000;
}
.chat_frame iframe {
  width: 100%;
  height: 100%;
  /*height: calc(100% - 66px);*/
  overflow: hidden;
}
/*.chat_header2 {*/
/*  height: 66px;*/
/*  display: flex;*/
/*  padding: 0 10px;*/
/*  position: relative;*/
/*}*/
.close_iframe {
  cursor: pointer;
  position: absolute;
  left: 15px;
  top: 25px;
}
@media only screen and (max-width: 568px) {
  .chat_icon{
    width: 40px;
    height: 40px;
    bottom: 60px;
    -webkit-transition: all ease-in-out 0s;
    -moz-transition: all ease-in-out 0s;
    -o-transition: all ease-in-out 0s;
    transition: all ease-in-out 0s;
  }
  .chat_icon img{
    width: 25px;
    height: 25px;
  }
  .chat_frame{
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0px;
  }
  .chat_icon:hover{
    width: 40px;
  }
  .chat_icon:hover img{
    margin-right: 0px;
  }
  .chat_icon:hover .chat_icon_t{
    display: none;
  }
}
.panel_open{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden !important;
}
