@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

*{
    box-sizing: border-box;
}

body {
    background-color: darkgray;
    font-family: 'Poppins',sans-serif;

    margin: 0;
	padding: 20px;
}

button {
    background-color: #003399;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0,0.2);
    color: #fff;
    font-size: 14px;
    padding: 10px 25px;
}

button:hover, button:active {
 	background-color: #FF9900;
}

.modal_container{
    display: flex;
    background-color: rgba(0, 0, 0,0.3);
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
	/*  opacity: 0;*/
	opacity: 1;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
}

.modal_container1{
   display: flex;
    justify-content: center;
    width: 100%;
}



.show{
    pointer-events: auto;
    opacity: 1;
}

.modal{
    background-color: #fff;
    width: 900px;
    max-width: 100%;
    padding: 30px 50px;
    border-radius: 5px;
    box-shadow: 5px 10px #888888;
    text-align: justify;
    max-height: 90vh;
    overflow: auto;
}

.modal h1{
    margin: 0;
	text-align: center;
}

.modal p{
    opacity: 0.9;
    font-size: 12px;    
}

a:link, a:visited {
	border-radius: 5px;
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
	font-size: 14px;
	padding: 7px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

a:hover, a:active {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  font-size: 14px;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.hideMe{
display: none;
}