@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono');
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Ubuntu Mono', monospace;}

textarea {
    resize: none !important;
    outline: none;
    overflow-y: hidden;
    padding: 5px;
    width: 100%;
    border-color: #CCC;
}

footer {
    position: absolute;
    bottom: 0;
}

input {
    font-family: arial !important;
}

.icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}
  
.icon img {
    width: 100%;
    height: auto;
}

.chat {
    margin: 20px auto;
    overflow: hidden;
}

.message {
    width: 50%;
    font-size: 0.85rem;
    white-space: pre-line;
}

.message-right {
    width: 60%;
    margin: 0 0 0 auto;
}

.message .emotion {
    font-size: 1.1rem;
}

.message .content {
    background-color: #fff;
    padding: 4px 9px 4px 9px;
    border-radius: 15px;
    border: solid 1px #a0a0a0;
}

.icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}
  
.icon-large img{
    width: 100%;
    height: auto;
}

.ymd {
    width: 100%;
    text-align: center;
    height: 40px;
}

.ymd span {
    padding: 3px 6px 3px 7px;
    padding-right: 7px;
    border-radius: 5%;
    background-color: rgba(230, 230, 230, 0.7);
    color: #999;
}

#suggestions div {
    position: absolute;
    top: -77px;
    left: 12px;
}

#suggestions div span {
    padding-right: 10px;
}

.emotion-happy {
    color: #FFA500;
}

.emotion-sad {
    color: #008DB5;
}

.emotion-anxiety {
    color: #6F51A1;
}

.emotion-lonely {
    color: #778888;
}

.emotion-scared {
    color: #000;
}

.emotion-worried {
    color: #999;
}

.emotion-annoyed {
    color: #FF531A;
}

.emotion-want {
    color: #FCD900
}

.emotion-throb {
    color: #99CC33;
}

.emotion-else {
    color: #D1D1D1;
}

.circle {
    display: inline-block;
    width: 11px;
	height: 11px;
	border-radius: 50%;
    margin-bottom: 10px;
}

.unread-count {
    width: 30px;
    height: 30px;
    background-color: #46AD3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}