/*
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 : Dec 12, 2023, 3:46:53 PM
    Author     : MYang
*/

.float-modal {
   overflow: auto;
   position: absolute;
   top: 25%;
   left: 30%;
   overflow-y: auto;
}
.float-modal-dialog {
    position: fixed;
    z-index: 999;
    margin-right: 0;
    margin-left: 0;
}
.float-modal-header {
  height:10px;
  padding: 20px;
  background-color:rgb(4, 107, 153);
  color: whitesmoke;
}
.float-modal-title {
  margin-top:-10px;
  font-size:16px;
}
.float-modal-content{
  background: rgba(44,45,45,0.8);
}
.float-modal-header .close {
  margin-top:-10px;
  color:whitesmoke;
}
.float-modal-body {
  color:whitesmoke;
  padding: 5px 35px 20px;
}
.float-modal-body h3 {
  text-align: center;
}
.float-modal-body p {
  padding-top:10px;
  font-size: 1.1em;
}