/* Default: Centered (For Mobile) */
.message-container, .submit-button-container {
    position: fixed;
    bottom: 60px;
    width: 95%;
    max-width: 400px;
    left: 50%;
    transform: translateX(-50%);
}
.message-container {
    /*background: #f8f9fa 0.5;*/
    /*background: rgba(232, 195, 185, 0.5);*/
    background: rgb(254, 248, 239, 0.5);
    border-radius: 10px 10px 0 0;
}
.input-container {
    background: rgb(254, 248, 239, 0.8);
    border-radius: 10px 10px 0 0;
}   

.submit-button-container {
    bottom: 20px; /* Lower position */
}
#minilogo {
    display:none;
}
/* For Larger Screens (Desktop) - Move to Bottom Right */
@media (min-width: 768px) {
    .message-container, .submit-button-container {
        left: auto;
        right: 20px;
        transform: none;
    }
    #minilogo {
        position: absolute;
        /*for xi*/
        /*left: 184px;
    top: -20px;*/
        /*for logo*/
        left: 138px;
        top: -70px;
        display: block;
    }
}

.message-card {
    /*background: #f8f9fa;*/
    padding: 0px 12px;
    /*border-radius: 8px;*/
    width: 100%;
    text-align: left;
    font-size: 14px;
    white-space:wrap;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    color: #592f2c;
}
.modal-content {
    border: 0;
    border-radius: 8px;
    padding-top: 0;
}
.btnclosesend {
    float: right;
    color: #FFF;
    font-weight: 700;
    text-shadow: none;
    border: 0;
    background-color: transparent;
}
/* Overlay */
.loading-overlay {
    position: absolute;
    background: rgb(254, 248, 239, 0.9);
    /*min-height: 150px;*/
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #592f2c;
    font-size: 12px;
    font-weight: bold;
    text-align: center;    
    width: 90%;
    /*margin:auto*/
}
/* GIF Loader */
.loader-gif {
    width: 100%;
    height: 80px;
    background-image: url(../images/pre-loader-3.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 12px;
}