.bounce {
	animation: bounce 3s ease 3 !important;
	-webkit-animation: bounce 3s 3 !important;
	-moz-animation: bounce 3s 3 !important;
	-o-animation: bounce 3s 3 !important;
	right: 5px;
	bottom: 130px;
	/* width: 85px;
	height: 48px; */
	position: fixed;
	display: flex;
	z-index: 99999 !important;
	/* background-color: white; */
}


@keyframes bounce {
    70% {
        transform: translateY(0%);
    }
    80% {
        transform: translateY(-15%);
    }
    90% {
        transform: translateY(0%);
    }
    95% {
        transform: translateY(-7%);
    }
    97% {
        transform: translateY(0%);
    }
    99% {
        transform: translateY(-3%);
    }
    100% {
        transform: translateY(0);
    }
}

.fa {
    color: #fff;
    background-color: #f14517;
    /* padding: 7px; */
    padding: 9.5px 12px;
    border-radius: 5px;
}

.fa:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f14517;
    height: 0;
    right: 21px;
    bottom: -10px;
    width: 0;
}

.fa:after,
.fa:before {
    content: " ";
    position: absolute;
}

.fa-angle-double-down {
    font-style: normal;
}

.chat-icon-link{
    position: fixed;
    display: flex;
    right: 5px;
    bottom: 55px;
    width: 60px;
    height: 60px;
    /* background-color: blue; */
    cursor: pointer;
    box-shadow: 0px 0px 5px 5px rgba(94, 150, 194, 0.2);
    border-radius: 50%;
    background: url(/assets/img/images/livechart.png) no-repeat;
    z-index: 99999;
}
@media only screen and (max-width: 460px) {
    .chat-icon-link{
    
        bottom: 20px;

    }
    .bounce{
        bottom: 96px;
    }

}
.chat-icon-move {
    animation-name: iconmove;
    animation-duration: 1s;
}

.chat-icon-link:hover {
    bottom: 55px;
    right: 5px;
    animation-name: rotate;
    animation-duration: 1s;
}

.chat-icon-link.active {
    background: url(/assets/img/images/close-icon.png) no-repeat center center;
    background-size: 50% 50%;
}

@keyframes iconmove {
    from {
        right: -50px;
    }
    to {
        right: 15px;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

.chat-wrapper {
    position: fixed;
    display: none;
    width: 356px;
    height: 528px;
    bottom: 55px;
    right: 94px;
    background-color: #fff;
    box-shadow: 0px 0px 5px 5px rgba(94, 150, 194, 0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 9999;
}

@media only screen and (max-width: 460px) {
    .chat-wrapper {
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        bottom: 0px;
        right: 0px;
        background-color: #fff;
        box-shadow: 0px 0px 5px 5px rgba(94, 150, 194, 0.2);
        border-radius: 8px;
        overflow: hidden;
    }
}

.chat-wrapper .chat-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 8px;
    font-family: 'Century Gothic';
    overflow: hidden;
}

.chat-container .chat-title-container {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: rgba(94, 150, 194, 1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    align-items: center;
    padding: 0px 8px;
}

.chat-title-container .chat-title {
    display: flex;
    padding: 0px;
    margin: 0px;
    font-size: 1.8rem;
    color: #fff;
    flex-grow: 1;
}

.chat-title-container .chat-title-icons {
    display: flex;
    width: 20px;
    height: 20px;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
}

.min::after {
    content: "_";
}

.max::after {
    content: "[]";
}

.chat-container .chat-body {
    position: relative;
    padding: 24px;
    margin: 0px;
    font-size: 0.8rem;
    color: #555;
    width: 100%;
    height: 426px;
    font-size: 13px;
    overflow: hidden;
    overflow-y: auto;
}

@media only screen and (max-width: 460px) {
    .chat-container .chat-body {
        position: relative;
        padding: 24px;
        margin: 0px;
        font-size: 0.8rem;
        color: #555;
        width: 100%;
        height: 77%;
        font-size: 13px;
        overflow: hidden;
        overflow-y: auto;
    }
}

.chat-body .chat-replied-messages {
    width: 100%;
    min-height: 142px;
}

.chat-body .chat-ready-questions {
    width: 100%;
}

.chat-body .chat-bubble-info {
    overflow: hidden;
    word-break: break-word;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 8px;
    width: auto;
    max-width: 70%;
    float: left;
    background-color: rgba(94, 150, 194, 1);
    color: #fff;
}

.chat-body .chat-questions {
    border: 1px solid #c9e3f2;
    padding: 8px;
    margin-bottom: 3px;
    border-radius: 8px;
    width: auto;
    max-width: 70%;
    clear: both;
    cursor: pointer;
}

.chat-input-send {
    width: 100%;
    height: 60px;
    padding: 8px;
}

.chat-input-send input {
    width: calc(100% - 52px);
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 8px;
    height: 51px;
}

.chat-input-send .send-icon {
    width: 52px;
    float: right;
    /* text-align: center; */
    padding: 16px 24px;
}

.chat-body .chat-bubble-receiver {
    /* display: flex; */
    overflow: hidden;
    word-break: break-word;
    justify-items: end;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 8px;
    width: auto;
    max-width: 70%;
    float: right;
    background-color: rgba(94, 150, 194, 1);
    color: #fff;
    clear: both;
}

.chat-body .chat-bubble-sender {
    /* display: flex; */
    overflow: hidden;
    word-break: break-word;
    justify-items: end;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: 8px;
    /* max-width: 70%; */
    float: left;
    background-color: #c9e3f2;
    clear: both;
}


