


.dialog_frame{

    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-direction: collumn;
    flex-wrap: wrap;
    justify-content: space-around;


    position:absolute;
    width: auto;
    height:auto;
    min-width: 30%;


    padding: 3.5vh;
    border: 2px solid #808080AA;
    background-color: #000000CC;
    z-index: 1000;
    margin: 0px auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    border-radius: 1.2vh;
    align-items: center;
    
    //   height: 100vh;
    
    //  max-height: 60vh;
    //  box-sizing:content-box;
}

.alert_dialog {
    display:flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    height: 100%;
}

.alert_dialog_title{
    color:white;
    font-size: 3.0vh;
    border-radius: 0.5vh;
    padding-left: 1.5vh;
    padding-right: 1.5vh;
    box-sizing:border-box;
    text-align: center;
    /* text-align: center;*/
}

.alert_dialog_text{

    flex-grow: 1;
    flex-shrink: 1;
    height: auto;
    
     margin-top: 1.5vh;
    margin-bottom: 1.5vh;
    //min-height: 30vh;
    
    color:#AAAAAA;
    font-size: 3.0vh;
    overflow-y: auto;


   
    border-radius: 0.5vh;
    padding: 1.5vh;
    box-sizing: border-box;
    //overflow-style:panner;

    // cursor:grab;
    // overflow-style:panner;

    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    
    
     /*overflow-wrap: break-word;*/

    //height: 100%;
    //  max-height: 100%;


    /* word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-word;
    */


    //max-height: 50vh;
    //  max-height: 30vh;

    
}




.alert_dialog_buttons{

    display: flex;
    width:100%;
    height:fit-content;
    align-items:  center;
    // flex-wrap:wrap;
    
}

.alert_dialog_btn {
    width:100%;
    height: fit-content;
    
   // align-self: center;
    //alignment-adjust:middle;

    text-align: center;
    font-weight: bold;
    margin:0.3vh;
    padding:0.6vh;

    border-radius: 1vh

}
.alert_dialog_btn.negative{
    color: #FF6060;
}

.alert_dialog_btn.neutral{
    color: #9090FF;
}

.alert_dialog_btn.positive{
    color: #60FF60;
}

.dialog_container{
    display:block;
    width:500px;
    height:500px;
    background-color:rgba(255,0,0,1);
}