HTML:
<style>
@media screen and (min-width: 900px) {
.chat-box-custom {
max-height: 500px;
}
}
@media screen and (min-width: 1560px) {
.chat-box-custom {
max-height: 800px;
}
}
@media screen and (max-width: 1000px) {
.chat-collapser {
display: none !important;
}
}
.chat-collapser {
width: 40px;
height: 40px;
border-radius: 5px;
font-size: 20px;
background: transparent;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
outline: none;
position: fixed;
right: 0;
bottom: 0;
margin-right: 35px;
margin-bottom: 20px;
z-index:1052;
}
.chat-collapser:hover {
width: 40px;
height: 40px;
border-radius: 5px;
font-size: 20px;
background: #E8E8E8;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
outline: none;
position: fixed;
right: 0;
bottom: 0;
margin-right: 35px;
margin-bottom: 20px;
z-index:1052;
}
.chat-box-custom {
border-width: none;
position: fixed;
right: 0;
bottom: 0;
min-height: 120px;
display: flex;
flex-direction: column;
box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
margin-right: 85px;
margin-bottom: 20px;
z-index:1052;
}
.frame_messages {
width: 360px;
height: 640px;
border : 0px;
}
.counter-badge {
position: absolute;
right: calc(50% - 16px);
top: 8px;
border-radius: 2px;
font-size: 10px;
line-height: 20px;
display: flex;
align-items: center;
justify-content: center;
min-width: 14px;
height: 14px;
margin-left: 7px;
padding: 2px 4px;
background: #D4380D;
color: #fff;
}
.qc-elma-icons {
display: inline-block;
font-family: elma365!important;
font-style: normal;
line-height: 1;
}
</style>