﻿.SelectWindow-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 500;
}

.SelectWindow-overlay {
    display: block;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 501;
    background-color: rgba(0,0,0,.3);
}

.SelectWindow-active {
    display: flex;
    overflow:auto;
    /* width:auto;
    justify-content:center;*/
}

.SelectWindow {
    display: flex;
    /*align-items:stretch;*/
    align-items: center;
    flex-direction: column;
    width: auto;
    height: auto;
   /* overflow: auto;*/
    /*50rem;*/
    background-color: #fff;
    border-radius: 15px;
    /*border: 2px solid navy;*/
    /*padding: 5px;*/ /*1.5rem;*/
    z-index: 502;
    box-shadow: 1px 15px 15px rgba(0,0,0,.25);
    /* margin:0px 15px;*/
}

.SelectWindow-header {
  /*  background-color: #eef9fe;
    color: navy;*/
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 5px;
    font-size: small;
    font-weight: 700;
    /*text-shadow: 2px 2px #CDEFFE;*/
    /*height: 25px;*/
    margin: 0px;
    /*border-bottom:1px solid #04b6ef;*/
    /*box-shadow: 0 4px 2px -2px gray;*/
}

.SelectWindow-title {
    /*margin-bottom: 0;*/
}

.SelectWindow-close {
    /*padding: 1rem;*/
    padding: 2px;
    margin: 2px;
    /*margin: -1rem -1rem -1rem auto;*/
    background-color: #0361FC;
    color: white;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
}
