@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.chat-left-aside .status-circle {
    top: 18px;
    left: 39px;
}

.chat-box .chat-menu {
    max-width: 550px;
}

.page-wrapper .page-body-wrapper {
    height: 100vh;
}

.call-chat-sidebar {
    height: 100vh;
}

.chat-left-aside .people-list {
    height: 100%;
}

.chat-box .chat-right-aside .chat .chat-msg-box {
    height: calc(100vh - 312px);
}

.chat-box .chat-right-aside .chat .chat-message {
    border-radius: 20px;
bottom: 20px;
}

.chat-box .people-list ul li {
    padding-bottom: 0px;
}

.conversation_row {
    /* background: orange; */
    border-radius: 3px;
    cursor: pointer;
}

.conversation_row.active {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.2);
}

* {
    letter-spacing: 0px !important;
}

.zone_title {
    text-align: center;
    margin-top: 100px;
    font-size: 20px;
}

.rotate {
    width: auto;
    animation: rotation 2s infinite linear;
}

#termometer {
    width: 8px;
    background: rgba(0, 0, 0, 0.3);
    height: 60px;
    position: relative;
    border-radius: 20px;
    z-index: 1;
    overflow: hidden;
}

#termometer #temperature {
    bottom: 0;
    background: linear-gradient(rgb(201, 46, 46), rgb(44, 176, 44)) no-repeat bottom;
    width: 100%;
    border-radius: 20px;
    background-size: 100% 60px;
    transition: all 0.2s ease-in-out;
}
#termometer #temperature{
    position: absolute;
}
