/*--------------------------------------------------------------
Add your css here
---------------------------------------------------------------*/
#backtoblog {display:none;}

.page-content {
    padding: 30px;
}

@media (min-width: 1024px) {
    .page-content.watchlists {
        display: flex;
        justify-content: space-between;
    }
    .page-content.watchlists .watchlist-items {
        flex: 1;
    }
    .page-content.watchlists .stt-chat {
        flex: 0 0 350px;
        margin-top: 0;
        margin-left: 30px;
    }
}

.watchlist-items .item {
    padding: 20px;
    border-radius: 2px 2px 0 0;
}
.watchlist-items .item + .item {
    margin-top: 30px;
}

.stt-chat {
    padding: 20px;
    margin-top: 30px;
    position: relative;
}
.stt-chat.loading:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/ajax-loader.gif);
    position: absolute;
    right: 20px;
    top: 26px;
}
.stt-chat .title {
    color: #2294E1;
    margin-bottom: 15px;
    text-align: center;
}
.stt-chat .messages {
}
.stt-chat .message {
    display: block;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 8px;
}
.stt-chat .message.loading {
    background: none;
    text-align: center;
}
.stt-chat .message .author {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: #4c769c;
}
.stt-chat .message .author .time {
    font-weight: 300;
    font-style: normal;
}
.stt-chat .message .text {
    display: block;
    font-size: 15px;
    word-wrap: break-word;
}