﻿/*#region comment*/
.active-comment {
    color: white !important;
    background-color: green;
}

.comment {
    color: green;
    border-color: lightgreen;
    border-style: solid;
    padding-left: 5px;
    border-width: 0.5px;
    border-top-right-radius: 7px;
}

    .comment:hover {
        border-color: black;
    }

.comment-font {
    font-size: 10px;
    position: relative;
    right: 2px;
    top: -1px;
}

#pointsCommentModal {
    z-index: 1152 !important;
}
/*#endregion*/

/*#region messages*/
.message {
    background-color: #d8d8d8;
    padding: 20px;
    float: left;
    min-width: 50%;
    margin-bottom: 5%;
}

.local-message {
    float: left;
    border-bottom-left-radius: 50px;
}

.another-message {
    float: right;
    border-bottom-right-radius: 50px;
}
/*#endregion*/

@media screen and (max-width: 400px) {
    .body-comment {
        font-size: 11px !important;
    }

    .chat-header {
        display: grid;
        white-space: pre-line;
    }

    .chat-text {
        font-size: 17px !important;
        white-space: pre-line;
    }

    .chat-moponent {
        max-width: 280px;
        display: none
    }

    .message {
        width: 100%;
    }
}

@media screen and (min-width: 400px) {
    .chat-moponent {
        max-width: 540px;
        display: none
    }
}