﻿.list-item {
    position: relative;
    display: flex;
    padding: 1rem;
    min-height: 256px;
    border-top: 1px solid #ccc;
}

.list-item .action-area {
    position: absolute;
    top: 1rem;
    right: 1rem;
    text-align: right;
}

.list-item.disabled {
    filter: saturate(0);
    opacity: 0.85;
    background-color: #eee;
}

/*.list-item + .list-item {
    border-top: 1px solid #ccc;
}*/

.list-item .icon-area {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 1rem;
    width: 160px;
    flex-grow: 0;
}

.list-item .icon-area .image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.list-item .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-item .description {
    padding-right: 2.5rem;
    hyphens: auto;
}

.list-item .spacing {
    width: 3rem;
}

.list-item .visibility-icons {
    font-size: .9rem;
    display: inline-block;
    padding: .25rem;
    vertical-align: middle;
    color: #777;
}

.list-item .visibility-icons i + i {
    margin-left: .25rem;
}

.list-item .item-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: .3rem;
    text-align: left;
}

.list-item .item-category {
        color: #777;
        font-size: 1rem;
        margin-bottom: .5rem;
        font-family: monospace, sans-serif;
        /*padding: 0 .5rem 0 1.5rem;*/
        padding: 0 .5rem 0 0;
}

.list-item .info {
    display: flex;
    justify-content: space-between;
    color: #696969;
}

/*.list-item .item-points {
    font-weight: bold;
}*/

@media (max-width: 768px){
    .list-item{
        flex-direction: column;
        padding: 1rem 0;
    }

    .list-item .icon-area {
        height: 5.25rem;
        width: 5.25rem;
        padding: 0 !important;
    }

    .list-item .image{
        width: 100%;
        height: 100%;
    }

    .list-item .item-title {
        font-size: 1.3rem;
    }

    .list-item .description{
        padding-right: .5rem;
    }

    .list-item .info{
        flex-direction: column;
        row-gap: .75rem;
        justify-content: start;
        text-align: left;
    }
}