.chat_box {
    width: 400px;
    /*height: 400px;*/
    position: fixed;
    bottom: 42px;
    right: 20px;
    border-top: 20px solid #d83b31;
    /* background: #dedede; */
    z-index: 1000;
    transition: all 0.3s ease-out;
    transform: scaleY(0);
	}
.chat_box.active {
    transform: scaleY(1);
}
#chat_icon {
    display: flex;
    position: fixed;
    bottom: 10px;
    /* text-align: center; */
    /* margin-top: 20px; */
    right: 4px;
    z-index: 1001;
    padding: 0;
    color: #FFF;
    font-size: 30px;
    background: #06b79a;
    cursor: pointer;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vertical-align {
    /* position: absolute; */
    /* bottom: 0; */
    transform: translateY(-5%);
    /* right: 0; */
    /* width: 586px; */
}

#chat_box{
	padding:14px;
}

