@charset "UTF-8";
.chat-btn {
    position: fixed;
    right: 50px;
    bottom: 260px;
    width: 60px;
    height: 60px;
}

.chat-btn1 {
    position: fixed;
    right: 50px;
    bottom: 190px;
    width: 60px;
    height: 60px;
}

.chat-btn2 {
    position: fixed;
    right: 50px;
    bottom: 120px;
    width: 60px;
    height: 60px;
}

.chat-btn3 {
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 60px;
    height: 60px;
}

.cmp-name {
    text-align: left !important;
}

.chat-btn:hover {
    opacity: 1;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 150px;
    height: 500px;
    width: 400px;
    /* min-width: 200px; */
    background-color: white;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
    border: 1rem;
    /* margin: 0;  */
    z-index: 1;
}

.chat-popup3 {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 100px;
    height: 600px;
    width: 400px;
    /* min-width: 200px; */
    background-color: white;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
    border: 1rem;
    /* margin: 0;  */
    z-index: 1;
}

.show {
    display: flex;
}

.chatbot-frame {
    height: 100%;
    width: 100%;
    flex-grow: 1;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 15px;
}


/* The Close Button */

.close {
    color: #ffffff;
    position: fixed;
    font-weight: bold;
    width: 30px;
    bottom: 580px;
    right: 160px;
}

.close:hover,
.close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}


/* Changes size from tablet downwards including landscape  */

@media only screen and (max-width: 768px) {
    .chat-popup {
        position: relative;
        display: none;
        position: fixed;
        top: 0px;
        bottom: 0px;
        right: 0px;
        height: 100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
        border: 1rem;
        z-index: 1;
    }
    .show {
        display: flex;
    }
    /* Iframe */
    .chatbot-frame {
        height: 100%;
        width: 100%;
        flex-grow: 1;
        border: none;
        margin: 0;
        padding: 0;
    }
    .chat-btn {
        position: fixed;
        right: 18px;
        width: 60px;
        /* height: 60px; */
        bottom: 260px;
    }
    .chat-btn1 {
        position: fixed;
        right: 18px;
        width: 60px;
        /* height: 40px; */
        bottom: 190px;
    }
    .chat-btn2 {
        position: fixed;
        right: 18px;
        width: 60px;
        /* height: 40px; */
        bottom: 120px;
    }
    .chat-btn3 {
        position: fixed;
        right: 18px;
        width: 60px;
        /* height: 60px; */
        bottom: 50px;
    }
    .close {
        /* background-color: #ffffff; */
        color: #ffffff;
        position: fixed;
        font-weight: bold;
        width: 30px;
        bottom: 93%;
        right: 20px;
    }
    .close:hover,
    .close:focus {
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
    }
}