﻿.ChatBotiframe
{
    width:100%;
    height:700px;
}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
    /*background-color: #555;*/
    color: white;
    /* padding: 16px 20px;*/
    border: none;
    cursor: pointer;
    /*opacity: 0.8;*/
    position: fixed;
    bottom: 23px;
    right: 28px;
    /*width: 70px;*/
}

/* The popup chat - hidden by default */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 31;
    width: 500px;
    height: 500px;
    border-radius: 28px;
    box-shadow: -5px 3px 15px 0 rgb(0 0 0 / 29%);
    border: solid 0.2px rgba(112, 112, 112, 0.43);
    background-color: #ffffff;
}

.msgBox {
    position: relative;
    overflow: hidden;
    width: 0;
    transition: width 0.5s;
    margin: 0 10px;
}

.welcome {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 80px;
    display: flex;
    border-radius: 20px;
    padding: 10px;
    transition: all 1s;
}

.welcome:hover .msgBox {
    width: 400px;
}

.welcome:hover {
    background-color: rgba(196, 213, 239, 1);
}

.chatbox__title {
    min-height: 60px;
    padding-right: 10px;
    background-color: #3e8fce;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 29%);
    border: solid 0.2px rgba(112, 112, 112, 0.43);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.navbar-toggler-icon .fa-bars {
    color: white;
}
.chat_icon {
    cursor: pointer;
    width: 60px;
    height: 60px;
}

/* Extra Small devices (landscape phones, 576px and up)*/
@media (min-width: 300px) {
    .chat-popup {
        width: 92%;
        height: 470px;
    }
    .ChatBotiframe {
        width: 100%;
        height: 400px;
    }
    .welcome:hover .msgBox {
        width: 250px;
    }
}
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .chat-popup {
        width: 325px;
        height: 470px;
    }
    .ChatBotiframe {
        width: 100%;
        height: 500px;
    }
    .welcome:hover .msgBox {
        width: 300px;
    }
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
   
}


/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

/* Large desktops and laptops */
@media (min-width: 1200px) {
    .chat-popup {
        width: 30%;
        height: 490px;
    }

    .ChatBotiframe {
        width: 100%;
        height: 500px;
    }
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .chat-popup {
        width: 40%;
        height: 485px;
    }

    .ChatBotiframe {
        width: 100%;
        height: 500px;
    }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .chat-popup {
        width: 60%;
        height: 500px;
    }

    .ChatBotiframe {
        width: 100%;
        height: 500px;
    }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
}
