#chat-icon {
    z-index: 9999;
    position: fixed;
    top: 50%;
    right: 0;
}

#chat-bot {
    border-width: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    background-color: #f0fdfe;
}

h1 {
    margin: 0;
    font-size: 16px;
    line-height: 1;
}

button {
    color: inherit;
    background-color: transparent;
    border: 0;
    outline: 0 !important;
    cursor: pointer;
}

button.chatbox-open {
    position: fixed;
    bottom: 0;
    right: 0;
    color: #fff;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    margin: 16px;
}

button.chatbox-close {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.15);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    margin: 16px;
}


.chat-greeting {
    /*     bottom: 68px;
        right: 25px;*/
    /*box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);*/
    flex-direction: column;
    display: block;
    border-radius: 16px;
    border-bottom-right-radius: 0px;
    position: fixed;
    animation: spring 3s;
    animation-timing-function: cubic-bezier(0, 0, 0, 0.01);
    animation-iteration-count: infinite;

}
.chat-greeting :before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 15px;
    bottom: -10px;
    border: 11px solid;
    border-color: #fafafa #fafafa transparent transparent;
}
.chat-greeting p {
    background: #fafafa none repeat scroll 0 0;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 18px;
    margin: 0;
    padding: 5px 10px 5px 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    box-shadow: 8px 10px 20px #000;
}
.chatbox-popup {
    bottom: 60px;
    right: 0;
    width: 100%;
    height: 90%;

    display: flex;
    box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
    flex-direction: column;
    display: none;
    /* bottom: calc(2 * 16px + 52px);
    right: 16px; */
    /* bottom: calc(2 * 2px + 22px); */
    /* right: 80px; */
    /* width: 400px;
    height: 600px; */
    /* bottom: calc(2 * 16px + 340px); */
    /* right: 250px; */

    background-color: #fff;
    border-radius: 16px;
    box-shadow: -5px 10px 20px #3a3737;
    position: fixed;
}
@media (min-width: 760px) {
    .chatbox-popup {
        bottom: calc(2 * 20px + 24px);
        right: 50px;
        width: 350px;
        height: 500px;
    }
}


.chatbox-popup .chatbox-popup__header {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px;
    color: #fff;
    background-color: #0360a5;
    align-items: center;
    justify-content: space-around;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.chatbox-popup .chatbox-popup__header .chatbox-popup__avatar {
    margin-top: -32px;
    background-color: #0360a5;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.chatbox-popup .chatbox-popup__main {
    box-sizing: border-box;
    width: 100%;
    padding: calc(2 * 16px) 16px;
    line-height: calc(16px + 16px / 2);
    color: #888;
    text-align: center;
}

.chatbox-popup .chatbox-popup__footer {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px;
    border-top: 1px solid #ddd;
    align-items: center;
    justify-content: space-around;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.chatbox-popup:before {
    position: absolute;
}

.chatbox-panel {
    display: flex;
    box-shadow: 5px 5px 25px 0 rgba(46, 61, 73, 0.2);
    flex-direction: column;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    width: 350px;
    background-color: #fff;
}

.chatbox-panel .chatbox-panel__header {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px;
    color: #fff;
    background-color: #0360a5;
    align-items: center;
    justify-content: space-around;
    flex: 0 0 auto;
}

.chatbox-panel .chatbox-panel__main {
    box-sizing: border-box;
    width: 100%;
    padding: calc(2 * 16px) 16px;
    line-height: calc(16px + 16px / 2);
    color: #888;
    text-align: center;
    flex: 1 1 auto;
}

.chatbox-panel .chatbox-panel__footer {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 16px;
    border-top: 1px solid #ddd;
    align-items: center;
    justify-content: space-around;
    flex: 0 0 auto;
}
.intro-chatbox {
    margin-top: 22px;
    margin-bottom: 12px;
    padding-bottom: 8px !important;
    position: fixed;
    z-index: 999;
    bottom: 0px;
}
.chatclosebtn{
    padding: 3px;
    background-color: white !important;
    border: 4px solid #004795 !important;
    border-radius: 50% !important;
    animation:spin 2s linear;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }



/*# sourceMappingURL=chat.css.map */