﻿


.image-row {
    background-color: white;
    border: 2px solid #175d72;
    height: 155px;
    width: 985px;
    grid-column: 2;
    border-radius: 60px;
    /*opacity: 0.4;*/
    display: flex;
    align-items: center;
    /*justify-content: flex-start;*/
    direction:rtl;
}

.image-row-hilite {
    border-color: green;
    border-style: dashed;
}

.pic-tile, .inactive-pic-tile {
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    background-color: transparent;               
    box-shadow: none;
}
.pic-tile {
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 10px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-right:17px;
    
}

    .pic-tile:hover, .selected-tile {
        border: 1px solid green;
        background-color: #175072;
        border: 2px solid#175d72;
        cursor: pointer;
    }


.pic-tile-empty{
    pointer-events:none;
}

    .main-panel {
    display: grid;
    grid-template-rows: 55px 155px 20px 155px 45px 155px auto;
    grid-template-columns: auto 985px 70px;
}

.row-1 {
    /*margin-top: 55px;*/
    grid-row: 2;
    justify-content: flex-start;
}

.row-2 {
    /*margin-top: 13px;*/
    grid-row: 4;
}

.row-3 {
    /*margin-top: 45px;*/
    
    grid-row: 6;
    background-image: radial-gradient(circle at center, #fefefe,#d2d3d5);
    justify-content: flex-start;
}

.demo-animate {    
    transform: translate(-50px, -200px);
    transition-duration: 1s;
}