/**
 * Filename:    feed-pane.css
 * 
 * Description: Implementation of the feed-pane class.
 * 
 * Copyright © 1999-2023 by Interact Solutions Ltda.
 * Rua Carlos Fett Filho, 47/301
 * 95.900.000, LAJEADO, RS
 * BRAZIL
 * 
 * The copyright to the computer program(s) herein
 * is the property of Interact Solutions Ltda., Brazil.
 * The program(s) may be used and/or copied only with
 * the written permission of Interact Solutions Ltda.
 * or in accordance with the terms and conditions
 * stipulated in the agreement/contract under which
 * the program(s) have been supplied.
 */

.feed-pane {
    flex: 0 0 20vw;
    min-width: 300px;
    background-color: rgb( var(--color-gray150) );
    margin: 15px 10px 0;
    border-radius: 6px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px rgba(178, 178, 178, 0.25);
    position: relative;
    height: calc( 100% - 20px );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feed-pane-header {
    padding: 18px 28px 23px;
    box-shadow: 0px 0px 10px rgba(178, 178, 178, 0.25);
    background-color: rgb( var(--color-gray150) );
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: flex;
    align-items: center;
}

.feed-pane-content {
    display: flex;
    flex-flow: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.feed-pane-footer {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: rgb( var(--color-gray150) );
    box-shadow: 0px 0px 4px rgba(178, 178, 178, 0.4);
    height: 5px;
}

.feed-pane-title {
    color: rgb( var(--color-gray650) );
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
}

.feed-pane-close {
    position: absolute;
    right: 26px;
    top: 20px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

/** FEED LIST **/
.feed-list {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: auto;
    padding: 0 12px;
}

.feed-list-item-wrapper {
    margin-left: 17px;
    border-left: 2px solid rgb( var(--color-gray400) );
}

.feed-list-item-wrapper:first-child
{
    padding-top: 12px;
}

.feed-list-item-wrapper:last-child
{
    padding-bottom: 12px;
}

.feed-list-item {
    display: flex;
    cursor: pointer;
    user-select: none;
    padding-left: 12px;
    position: relative;
    margin: 12px;
    margin-right: 0px;
}

.feed-list-item-header {
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
    color: rgb( var(--color-gray650) );
    font-size: 14px;
}

.feed-list-item-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.feed-list-item-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    -moz-animation: fadeIn 0.6s;
    animation: fadeIn 0.6s;
}

.feed-list-item-details-item {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.feed-list-item-details-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #242222;
}

.feed-list-item-details-subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: rgb( var(--color-gray550) );
    margin-top: 4px;
}

.feed-list-item-details-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #8b98a2;
    font-size: 16px;
    user-select: none;
}

.feed-list-item-details-inspect-button {
    height: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.feed-list-item-details-inspect-button > span {
    font-size: 12px;
    line-height: 14px;
    text-decoration-line: underline;
}

.feed-list-item-icon {
    height: 24px;
    width: 24px;
}

.feed-list-item-captions {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-list-item-caption-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.feed-list-item-caption-item:first-of-type {
    margin-bottom: 4px;
}

.feed-list-item-caption-title {
    width: 85%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    color: rgb( var(--color-gray650) );
    line-height: 16px;
}

.feed-list-item-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
    color: rgb(var(--color-gray500));
}

.feed-list-item-timeline-circle {
    width: 36px;
    height: 36px;
    position: absolute;
    border-radius: 50%;
    left: -30px;
    background-color: rgb( var(--color-gray150) );
    /*box-shadow: 0px 0px 6px rgba(178, 178, 178, 0.25);*/
    display: flex;
    align-items: center;
    justify-content: center;
}
