/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jul 18, 2023, 7:14:43 PM
    Author     : Administrator
*/

.prompt_base
{
  text-align: center;
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius:5px;

  position: absolute;
  z-index:9999999;
  
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);

  min-width:40%;
  max-width:75%;
  min-height:6.5em;
  border:1px solid lightgrey;
  box-shadow: 0 0px 10px 0px #646464;
      
  font-size:1.5em;
}

.prompt_curtain
{
    position:absolute;
    z-index:9999999;
    
    left:0;
    top:0;
    background-color: red;
    width:100vw;
    height:100vh;
    background-color:rgba(150,150,150,0.6);
    background-color:hsla(222, 7%, 63%, 0.6);
    
}

.prompt_msg
{
    text-align: left;
    height:2em;
    width:100%;
}

.prompt_input
{
    height:2em;
    width:100%;
}

.prompt_lineN
{
    width:95%;
    margin:auto;
    
    

}

.prompt_lineN span
{
    font-family: Opensans-Regular;
    font-size:0.7em;
}

.prompt_lineN input
{
    height:3em;
}

.prompt_lineN_inputbox
{
    border:1px solid lightgrey;
    width:100%;
}

.prompt_buttons_base
{
    height:2em;
    width:100%;
    font-size:0.8em;
}

.prompt_buttons_wrap
{
    height:95%;
    text-align:right;
    padding-top:1em;
}

/* canceled */
.prompt_buttonN
{
    margin-left:0.5em;
    font-size:0.9em;
    font-family: Opensans-Regular;
}

.prompt_buttonN2
{
    display:inline-block;
    float:right;
    width:5em;
    height:2em;
    border-radius:5px;

    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid lightgrey;
    text-align:center;
    
    font-size:0.9em;
    font-family: Opensans-Regular;
    margin-left:0.5em;
    
    cursor:pointer;
}

.prompt_buttonN2:hover
{
    color:white;
    background-color: #337ab7;
}
