@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');


body {
    background: white;
    font-family: 'Roboto', sans-serif;
    font-size: calc(15px + 0.390625vw);
}

/*mgs styles*/

.header {
    width:100%;

    position: fixed;
    top: 0;
    height: 35px;
    background: #ddd;
}

.footer {
    width:100%;
    
    position: fixed;
    bottom: 0;
    height: 65px;
    background: #eee;
    padding: 10px;
}

@media screen and (min-height: 400px) {
    .content { min-height: 300px; }
}
@media screen and (min-height: 600px) {
    .content { min-height: 500px; }
}
@media screen and (min-height: 800px) {
    .content { min-height: 700px; }
}
@media screen and (min-height: 1000px) {
    .content { min-height: 900px; }
}
@media screen and (min-height: 1200px) {
    .content { min-height: 1100px; }
}

@media only screen and (min-width: 992px) {

    body {
        background: #ddd;
    }

    .header {
        left:15%;
        width: 70%;
    }

    .footer {
        left:15%;
        width: 70%;
    }

    .content {
        margin-left: 15%;
        margin-right: 15%;
    }
}

.content {
    margin-top: 55px;
    margin-bottom: 55px;
    /* min-height: 100%; */
    background-color: white; 
    /* border-left: 1px solid black;   
    border-right: 1px solid black;    */
}


/* #chat {
    position: absolute;
    top: 200px;
    bottom: 200px;
    left: 0px;
    right: 0px;
    overflow: auto;
} */


/* .chatbox {

    position:relative;
    min-height:100%;
    height:auto !important;
    height:100%;

    overflow:auto;
} */

/* end of mgs */



.card {
    width: 300px;
    border: none;
    border-radius: 15px;
}

.adiv {
    background: #04CB28;
    /* border-radius: 15px; */
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    /* font-size: 12px; */
    /* margin-top:10px; */
}

.bubble {
    border: none;
    background: #E2FFE8;
    border-radius: 20px;
}

.form-control {
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    /* font-size: 8px; */
}

.form-control:focus {
    box-shadow: none;
}

.form-control::placeholder {
    /* font-size: 8px; */
    color: #C4C4C4;
}