.ft-chatbox{
	position: fixed;
    z-index: 10150;
    left: 10px;
    bottom: 10px;
}
.ft-chatbox button{
	border:none;
	box-sizing: border-box;
	margin:0px;
}
.ft-chatbox #chatona {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    animation: logo 2000ms infinite;
    padding: 0px;
    box-sizing: border-box;
    line-height: 0;
	background: #4caf50;
}
.ft-chatbox #chatona img{
	width:40px;
	margin:auto;
}
@keyframes logo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33.3333% {
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  66.6666% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  
  0% { box-shadow: 0 0 0 0px #4caf50,0 0 0 0px #4caf50;}
  50% { transform: scale(0.8); }
  100% { box-shadow: 0 0 0 15px rgba(0,210,255,0),0 0 0 30px rgba(0,210,255,0); }
}
.ft-chaton {
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 10px;
	position:relative;
    box-shadow: 0px 0px 10px #00000057;
	margin-bottom:25px;
	-webkit-animation: duoilen 2s ease forwards;
	animation: duoilen 2s ease forwards;
	min-width: 230px;
}
@keyframes duoilen{
  from {
    opacity:0.3;
  }
  to {
    opacity:1;
  }
}
@-webkit-keyframes duoilen{
  from {
    opacity:0.3;
  }
  to {
    opacity:1;
  }
}
.ft-chaton-scroll{
	max-height: 300px;
	overflow: auto;
	padding:0px 10px;
}
.ft-chaton::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    margin-left: 10px;
    width: 0;
    height: 0;
    border-top: 15px solid #ffffff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.ft-chaton a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #444;
}
.ft-chaton a:hover{
	opacity:0.8;
}
.ft-chaton a:not(:last-child){
	margin-bottom:10px;
}
.ft-chaton img{
	width:40px;
	margin-right:15px;
}
/* thanh scrool */
.ft-chaton * {
    scrollbar-color: #eee #ffffff00;
    scrollbar-width: thin !important;
}
.ft-chaton ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: none;
}
.ft-chaton ::-webkit-scrollbar-thumb {
    background-color: #eee;
    border-radius: 2px;
}
.ft-chaton ::-webkit-scrollbar-track {
    background-color: none;
}
