﻿
.GalleryView {
    position: fixed;
    top: 70%;
    left: 50%;
    width: 90svw;
    height: auto;
    min-height:200px;
    display: flex;
    flex-direction: column;
    align-items:stretch;
    justify-content:stretch;
    background-color: var(--GlassColor);
    backdrop-filter: var(--GlassBlur);
    -webkit-backdrop-filter: var(--GlassBlur);
    padding: 20px;
    padding-left: 20px;
    padding-right: 20px;
    transform: translate(-50%, -80%) scale(1);
    opacity: 1;
    z-index: var(--ModalDepth);
}


.GalleryPlaceholder {
    flex-grow:1;
    display:flex;
    width: 100%;
    height: 100%;
    border: dashed 4px var(--ThemeColor);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.GalleryMainContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap:10px;
}


    .GalleryMainContainer button {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items:center;
        column-gap:3px;
        font-size: 0.9em;
        color: var(--FontOppositeColor);
    }

.GalleryItems {
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 10px;
}


.GalleryViewItem {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius:5px;
}

.GalleryViewItemContent {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}


.GalleryViewItemContentPhoto {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 6px;
}

.GalleryViewItemContentConsole {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: end;
    align-items: end;
    padding: 15px;
    background-color: transparent;
    backdrop-filter: none;
}


.GalleryViewItemContent .Command {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--GlassColor);
    backdrop-filter: var(--GlassBlur);
    -webkit-backdrop-filter: var(--GlassBlur);
    padding: 13px;
    cursor: pointer;
}






