﻿
:root {
    --vspace:70px;
}

.picture-panel {
    display: grid;    
    grid-template-rows: 75px 220px 40px 220px;
}
.top-row {
    display: grid;
    grid-template-columns: 1fr 220px var(--vspace) 220px 1fr;
}
.bottom-row {
    display: grid;
    grid-template-columns: 1fr 220px var(--vspace) 220px var(--vspace) 220px 1fr;
}

.pic-tile, .inactive-pic-tile {
    min-width: 220px;
    max-width: 220px;
    min-height: 220px;
    max-height: 220px;
    background-color: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: none;
    /*background-image: url(images/meshushe.svg);*/
    background-repeat: no-repeat;
}

.selected-tile {
    background-color: none !important;
}