#conchat {
    display: none;
    width: 750px;
    height: 450px;
    background: #FEF6E6;
    font-size: 0;
    border-radius: 50px;
    position: fixed;
    transition: all 250ms ease-out;
    margin: auto;
    right: 150px;
    bottom: 10px;
    z-index: 99;
}

.chataside {
    width: 200px;
    background-color: #191D88;
    display: inline-block;
    font-size: 15px;
    vertical-align: top;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

    .chataside header {
        padding: 30px 20px;
    }

    .chataside input {
        width: 100%;
        height: 50px;
        line-height: 50px;
        padding: 0 50px 0 20px;
        background-color: #5e616a;
        border: none;
        border-radius: 3px;
        color: #fff;
        background-repeat: no-repeat;
        background-position: 170px;
        background-size: 40px;
        border-radius: 10px;
    }

    .chataside ul {
        margin: 0;
        list-style-type: none;
        overflow-y: auto;
        height: 390px;
        padding: 15px;
    }

.activ {
    background-color: gray;
    border-radius: 10px;
    padding: 8px 16px;
    text-align: center;
}

.mainup {
    width: 550px;
    height: 400px;
    display: inline-block;
    font-size: 15px;
    vertical-align: top;
}

    .mainup header {
        height: 30px;
        padding: 15px 20px 30px 20px;
        background-color: #F7A400;
        font-weight: 700;
        color: #ffffff;
        border-top-right-radius: 50px;
    }

.messages-container {
    overflow-y: auto;
    flex-grow: 1;
    padding: 10px;
    height: 330px;
}

.no-messages-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.ismine {
    flex-direction: row-reverse;
}

.message-item {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
}

.ismine .message-content {
    background: #F7A400;
    color: white;
}

.message-item .message-content {
    font-size: 16px;
    padding: 7px 10px;
    border-radius: 10px;
    max-width: 60%;
}

.mainup footer {
    padding-top: 10px;
}

.message-item .message-content .timestamp {
    font-size: 13px;
}

.ismine .message-info {
    flex-direction: row-reverse;
}

.align-items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.d-flex {
    display: flex !important;
}

.ismine .message-info .author {
    margin-right: 0;
    margin-left: 10px;
}

.message-item .message-content .author {
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
    white-space: nowrap;
}

.write-message {
    border: none !important;
    width: 80%;
    height: 50px;
    margin-left: 20px;
    padding: 10px;
}

.senbtn {
    height: 45px;
}

.user .username {
    color: #ffffff;
    font-weight: 700;
}

#btnSendMessage.btn.btn-primary.senbtn::after {
    display: none;
}
