.list-box {
    background-color: #F5F5F5;
    height: 700px;
    overflow-y: auto;
}

.contact-chat {
    height: 35px;
    background-color: lightgray;
    padding-top: 6px;
    font-weight: bold;
}

.contact-list {
    height: 50px;
    border-bottom: lightgray solid thin;
    padding-bottom: 8px;
    padding-top: 10px;
    font-size: 12px;
    cursor: pointer;
}

.contact-list:hover {
    background-color: #DCDCDC;
}

.show-message {
    height: 620px;
    overflow-y: auto;
    border: lightgray solid thin;
    border-top: 0px;
    margin-bottom: 70px;
    background-color: lightsteelblue;
}

.input-chat-box {
    position: absolute;
    bottom: 0;
    /* margin-left: -15px; */
    /* display: block; */
}

.input-chat-admin {
    padding-left: 15px;
    width: 94%;
    border: lightslategray solid thin;
    border-radius: 5px;
    padding-top: 7px;
    margin-left: -10px;
}

.input-chat-admin:focus {
    border-color: black;
    outline-offset: 0px;
    outline: none;
}

.sent-message-admin {
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    margin-top: 10px;
    margin-left: 5px;
}

.sent-message-admin:hover {
    font-size: 40px;
    margin-top: 6px;
}

.image-chat-list {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: #3366CC solid thin;
    margin-right: 15px;
}

.memberCard {
    height: 170px;
    width: 450px;
    border-radius: 10px;
    border: lightgray solid thin;
    box-shadow: 2px 2px 6px lightgray;
    position: fixed;
    background-color: white;
    margin-left: -470px;
    margin-top: -100px;
    display: none;
}

.image-card-box {
    width: 35%;
    padding-top: 10px;
    padding-left: 20px;
}

.image-card {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    border: #3366CC solid thin;
    box-shadow: 2px 2px 7px gray;
}

.member-info-box {
    width: 65%;
    padding-top: 10px;
    padding-left: 10px;
}

.card-name {
    font-size: 16px;
    font-weight: bold;
}

.hr-chat {
    border-top: 2px solid lightgray;
    margin-top: 10px;
}

.countryCard {
    border-top: lightgray solid thin;
    color: gray;
    font-size: 12px;
    font-weight: bold;
    padding-top: 7px;
}

.addressCard {
    height: 65px;
    color: lightslategrey;
}

.flagCard {
    width: 40px;
    height: 23px;
    float: right;
    margin-right: 10px;
    margin-top: -2px;
    -webkit-filter: drop-shadow(2px 3px 1px gray);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
    filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
}

.chat-message-green {
    font-size: 14px;
    word-wrap: break-word;
    max-width: 400px;
    padding-top: 5px;
    float: right;
    padding-left: 10px;
    padding-right: 15px;
    padding-bottom: 5px;
    margin-left: 20px;
    min-height: 35px;
    border-radius: 10px 10px 1px 10px;
    margin-bottom: 10px;
    /* background-color: #98FB98; */
    background-color: #CCFFCC;
    box-shadow: 2px 2px 3px gray;
    color: black;
}

.chat-message-yellow {
    font-size: 14px;
    word-wrap: break-word;
    max-width: 400px;
    padding-top: 5px;
    float: left;
    padding-left: 15px;
    padding-right: 10px;
    padding-bottom: 5px;
    min-height: 35px;
    border-radius: 10px 10px 10px 1px;
    margin-bottom: 10px;
    /* background-color: #FFCC66; */
    background-color: #FFFF99;
    box-shadow: 2px 2px 3px gray;
    color: black;
}

.show-name {
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    border: lightgray solid thin;
    border-bottom: 0px;
    padding-top: 5px;
    background: white;
    background: -webkit-linear-gradient(left, lightgray, white);
    background: -o-linear-gradient(right, lightgray, white);
    background: -moz-linear-gradient(right, lightgray, white);
    background: linear-gradient(to right, lightgray, white);
}

.image-in-chat {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    /* border: lightslategrey solid thin; */
    margin-right: 5px;
    margin-top: 5px;
    margin-left: 10px;
}

.unread {
    float: right;
    margin-top: 5px;
    font-size: 12px;
}

.add-question {
    float: right;
    font-size: 12px;
    background-color: #66FF99;
    border: 0px;
    padding: 7px;
    width: 200px;
    margin-top: -1px;
    margin-right: 20px;
    cursor: pointer;
    z-index: 200;
}

.total-question {
    float: right;
    font-size: 14px;
    padding: 7px;
    margin-top: -3px;
    width: 100px;
    background: white;
    background: -webkit-linear-gradient(left, gray, white);
    background: -o-linear-gradient(right, gray, white);
    background: -moz-linear-gradient(right, gray, white);
    background: linear-gradient(to right, gray, white);
}

.create-member-question {
    display: none;
}

.create-success {
    display: none;
}

.form-create-question {
    position: absolute;
    z-index: 1;
    background-color: white;
    border: lightgray solid thin;
    box-shadow: 2px 2px 2px lightgrey;
    width: 70%;
    height: 530px;
    overflow-y: auto;
    right: 0;
}

.member-question {
    height: 100px !important;
}

.admin-answer {
    height: 150px !important;
}

.create-question-success {
    position: absolute;
    z-index: 1;
    background-color: white;
    border: lightgray solid thin;
    box-shadow: 2px 2px 2px lightgrey;
    width: 70%;
    height: 200px;
    overflow-y: auto;
    right: 0;
    padding-top: 30px;
}