.chatbot{
    position: fixed;
    right: 2%;
    bottom: 13%;
    height: 600px;
    border-radius: 10px;
    width: 25%;
    /* box-shadow: 0px 0px 5px #ccc; */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 1px 1px 1px, rgba(0, 0, 0, 0.12) 0px 1px 5px 1px;
    overflow-y: scroll;
}

.chatbot{
    display: none;
}

.prompt{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 5%;
    border:unset;
    border-top: 2px solid #000;
}

.send{
    position: absolute;
    bottom: -4px;
    right: 30px;
    cursor: pointer;
}
.send img{
    width: 30px;
    transform: rotate(45deg);
}

input:focus{
    outline: unset;
}

.enquiry input{
    width: 100%;
    padding: 3%;
    margin-bottom: 7%;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-family: 'Poppins';
}

.enquiry button{
    background: #e9204f;
    border: unset;
    color:#fff;
    font-family: 'Poppins';
    padding: 5%;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
}
.enquiry button.disabled{
    background: grey;
    pointer-events: none;
}
.enquiry{
    padding: 1%;
    margin-top: 20px;
}

.social{
    text-decoration: underline;
    color:#E9204F;
}

.formlink a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.formlink{
    padding-bottom: 0px;
    margin: 0px;
}

.chatinit{
    position: fixed;
    bottom: 1%;
    right: 2%;
    background: #E9204F;
    border-radius: 50px;
    width: 70px;
    height: 70px;
    text-align: center;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.quickview{
    position: fixed;
    bottom: 12%;
    right: 2%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 1px 1px 1px, rgba(0, 0, 0, 0.12) 0px 1px 5px 1px;
    border-radius: 10px;
    padding: 15px 44px;
    padding-left: 15px;
}

.close{
    cursor: pointer;
    position: relative;
    left: 25px;
}
.chatinit img{
    width: 100%;
    transform: scale(0.5);
    filter: brightness(0) invert(1);
}

.chatcontent{
    padding: 5%;
}

.resimg{
    width: 100%;
    margin-bottom: 3%;
}

div.script{
    margin-top: 3%;
}

.heading{
    background: #E9204F;
    color: #fff;
    padding: 1% 5%;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.reslogo img{
    width: 50%;
    margin-bottom: 2%; 
 }
 
.logo {
    text-align: right;
    position: absolute;
    right: 28px;
    cursor: pointer;
}
.heading img{
    width: 50%;
}

.message{
    background: rgb(209, 66, 0) !important;
}
.mm{
    display: none !important;
}
.content,.goback, .mainmenu, .yes, .no{
    border: 1px solid #ccc;
    width: fit-content;
    padding: 3% 6%;
    border-radius: 50px;
    margin-left: 5px;
    margin-bottom: 0px;
    cursor: pointer;
    color: #101010;
}

.script{
    background: rgb(236, 236, 236);
    width: fit-content;
    padding: 3% 6%;
    border-radius: 10px;
    margin-bottom: 0px;
    color: #101010;
}

.response{
    display: flex;
    flex-direction: row-reverse;
}

.catcontent{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

/* .catcontent{
    margin-top:25px;
} */

body{
    font-family: 'Poppins';
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    .chatbot{
        width: 93%;
    }
}