﻿

.doc-item-container {
    width: 100%;
    border: solid 1px #ccc;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    padding: 8px;
    margin: 10px 0 0 0;
    outline: 0;
}

    .doc-item-container:hover {
        text-decoration: none;
    }

.doc-icon {
    background-color: #bfbfd9;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doc-item-container .tree {
    background-image: url('../css/img/logo.svg?22');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    /* position: absolute; */
    /* left: 10px; */
    /* top: 0; */
    /* right: 0; */
    /* bottom: 0; */
    width: 80%;
    height: 80%;
    transition: transform .5s;
}

.doc-item-container:hover .tree {
    transform: rotate(90deg);
}

.doc-item-container .doc-type .red {
    color: #e23d3d;
}

.doc-item-container .doc-type .green {
    color: #278036;
}

.doc-item-container .doc-type .blue {
    color: #011c83;
}

.doc-text {
    flex-grow: 1;
    margin: 0 0 0 10px;
    overflow: hidden;
}

.doc-item-container .doc-title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 1.6em;
    color: #000033;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doc-item-container .doc-type {
    color: #ccc;
}
