﻿.Select
{
    position:absolute;

    display:flex;flex-direction:column;justify-content:space-between;align-items:stretch;

    padding:10%;

    background-color:rgba(0,0,0,.3);

    top:0;
    left:-100%;
    width:100%;
    height:100%;

    z-index:100;
}

.Select .SelectA
{
    display:flex;flex-direction:column;justify-content:space-between;align-items:stretch;

    overflow-y:auto;
}

.Select .SelectB {display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;}

.Select .SelectC{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background-color:white;cursor:pointer;padding:15px;gap:5px;}
.Select .SelectC:not(:last-child){border-bottom:solid 1px lightgray;}
.Select .SelectC:hover{background-color:rgb(237,237,237);}
.Select .SelectC>div{word-break:break-word;}
.Select .SelectC>i{color:lightgray;}
.Select .SelectC>.Focus{color:black;}

