#chat-box-container{
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1040;
}


.chat-icon{
  color: var(--1stcolor);
  text-align: center;
  width: auto;
  padding: 5px 10px;
  background: #FFF;
  border-radius: 10px;
  font-weight: 500;
  box-shadow:0px 3px 5px 0px rgba(35, 65, 91, 0.15);
  cursor: pointer;
  right: 4.5%;
  position: fixed;
  bottom: 90px;
  border:1px solid #DDD;
  font-size:16px;
}

.close-chat{
  color: var(--1stcolor);
  position: fixed;
  right: 4.5%;
  bottom: 560px;
  z-index: 9999;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
}


iframe#chatbox{
  position: fixed;
  bottom: 90px;
  right: 4.5%;
  height: 500px;
  border-radius: 8px;
  box-shadow: 1px 5px 10px #CCC;
  border:1px solid #DDD;
  overflow: auto;
}