﻿.chat-bot-container{
    width: 5rem;
    height: 4rem;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    cursor: pointer;
}

.chat-bot-container-not-close{
    width: 3.8rem;
    height: 3.8rem;
}


.chat-bot-container .chat-bot-icon{
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 3.8rem;
    height: 3.8rem;
}
.chat-bot-container .chat-bot-close{
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
}

.chat-bot-container .chat-bot-icon-animation{
    position: relative;
    animation: swing;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.tooltip-inner{
    background-color:#f56954;
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before{
    border-left-color: #f56954;
}

.chat-bot-container-iframe {
    width: 605px;
    height: 650px;
    display: none;
    border-radius: 0.75em;
    transform: translate(0px, 0px);
    box-sizing: border-box;
    padding: 10px;
    position: absolute;
    margin: 10%;
    top: 0;
    left: 0;
}

.chat-bot-container-mobile{
    width: 100%;
    height: 100%;
    padding: 0;
    display: block;
    margin: 0;
}

.chat-bot-container-iframe > iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #CCC;
}

.chat-bot-container-iframe .fakeHeader{
    position: absolute;
    width: calc(100% - 60px);
    height: 25px;
    top: 0;
    left: 0;
    cursor: grab;
    margin: 15px 0 0 10px;
}

.modal-dialog-scrollable .modal-content{
    height: 100%;
}