﻿
.BoxModelView {
    position: fixed;
    top: 70%;
    left: 50%;
    width: 90svw;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    background-color: var(--GlassColor);
    backdrop-filter: var(--GlassBlur);
    -webkit-backdrop-filter: var(--GlassBlur);
    padding: 20px;
    padding-left: 20px;
    padding-right: 20px;
    transform: translate(-50%, -70%) scale(1);
    opacity: 1;
    z-index: var(--ModalDepth);
}




.BoxModelList {
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-content: start;
    align-items: start;
    flex-wrap: nowrap;
    column-gap: 15px;
    overflow-y: hidden;
    padding-left: 2px;
    padding-right:2px;
    padding-bottom: 10px;
}

    .BoxModelListItem {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        min-width:150px;
        min-height: 150px;
        padding: 20px;
        background-color: var(--GlassColor);
        border-radius: 6px;
        cursor: pointer;
        text-align: center;
    }


.BoxModelInfo {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-content: end;
    
}

    .BoxModelInfo span {        
        font-size: 1.1em;
        font-weight: bold;
        text-align:end;
    }

.BoxModelData {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-content: start;
    column-gap: 10px;
    margin-top:25px;
}



    .BoxModelData div {
        flex-grow:1;
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        align-items:end;
        row-gap: 10px;
    }

    .BoxModelData div span {
        font-weight:normal;
        display:flex;
        align-items:center;
        height:40px;
    }
   
    .BoxModelData div input {
        width:100%;
        height: 40px;
        text-align:start;
    }

    .BoxModelData div:last-child {
    }




.BoxModelViewConsole {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .BoxModelViewConsole button {
    }

        .BoxModelViewConsole button:first-child {
            flex-grow: 0.3;
            background-color: var(--ThemeColorSecondary);
        }

        .BoxModelViewConsole button:last-child {
            flex-grow: 0.7;
        }
