.overlay-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
    display: none;
}
.custom-chat-bar {
    position: fixed;
    z-index: 9999;
    bottom: 10px;
    right: 20px;
    width: 65px;
    height: 65px;
    display: none;
}
.custom-chat-bar .custom-chat-inner {
    position: relative;
}
.custom-chat-bar .custom-chat-inner .open-chat,
.custom-chat-bar .custom-chat-inner .close-chat {
    width: 65px;
    height: 65px;
    background: #E55829;
    border-radius: 100%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    transition: all 0.5s ease-out;
	font-size: 30px;
	box-shadow: 2px 2px 5px rgba(0,0,0,.3);
}
.custom-chat-bar .custom-chat-inner .close-chat {
    background: #999;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.custom-chat-bar .custom-chat-inner .list-items {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    width: 65px;
    top: -75px;
}
.custom-chat-bar .custom-chat-inner .list-items li {
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
}
.custom-chat-bar .custom-chat-inner .list-items li a {
    width: 65px;
    height: 65px;
    background: #FFCB08;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    position: relative;
}
.custom-chat-bar .custom-chat-inner .list-items li a i {
    position: relative;
    z-index: 999;
	font-size: 30px;
}
.custom-chat-bar .custom-chat-inner .list-items li a span {
    position: absolute;
    padding: 10px;
    border-radius: 10px;
    background: #000;
    left: 0;
    top: 0;
    height: 65px;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    text-transform: uppercase;
    transition: all 0.5s ease-out;
    opacity: 0;
    visibility: hidden;
    padding: 0;
}
.custom-chat-bar .custom-chat-inner .list-items li a.whatsapp {
    background: #25D366;
}
.custom-chat-bar .custom-chat-inner .list-items li a.whatsapp span {
    background: #25D366;
}
.custom-chat-bar .custom-chat-inner .list-items li a.telegram {
    background: #2298D6;
}
.custom-chat-bar .custom-chat-inner .list-items li a.telegram span {
    background: #2298D6;
}
.custom-chat-bar .custom-chat-inner .list-items li a.commenting {
    background: #36B9AA;
}
.custom-chat-bar .custom-chat-inner .list-items li a.commenting span {
    background: #36B9AA;
}
.custom-chat-bar .custom-chat-inner .list-items li a:hover span {
    opacity: 1;
    visibility: visible;
    width: 150px;
    left: -110px;
}
