
#wallpaper{
    background:url();
    background-size:cover;
    position:absolute;
    top:100px;
    width:100%;
    height:270px;
}

#clean{
    background:#aad;
    color:white;
    padding:0 7px;
    border-radius:var(--radius-small);
    font-size:smaller;
}

.flex-box {
    justify-content:left;
    padding:60px 1em 0;
    gap:30px;
    &:empty:before{
        content:'Пока здесь пока ничего нет';
        font-size:18px;
    }
    .preview {
        width:240px;
        height:240px;
        border:solid 2px #fff;
        border-radius:var(--radius-big);
        overflow:hidden;
        background:#fff;
        box-shadow:1px 2px 7px #aaa;
        display:flex;
        flex-flow:column;
        justify-content: space-between;
        position:relative;
        a {
            text-align:center;
            img {
                object-fit:contain;
                height:200px;
                max-width:90%;
            }
        }
        h3{
            font-size:15px;
            line-height:1.15;
            font-weight:500;
            text-align:center;
            color:#555;
            padding:0;
        }
        .favor {
            position:absolute;
            right:0;
            top:0;
            padding:7px;
            background:#008;

            i:before {
                color:gold;
                font-size:24px;
            }
        }
    }
}