@charset "utf-8";
/* CSS Document */

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    border-radius: 5px;
    filter: drop-shadow(10px 5px 5px #ffe1e4);
  }

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0px;    
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header,
.modal-footer {
  background: var(--lightgray);
}
 
.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: rgb(24, 6, 128);
	color: white;
	padding: 20px;
	font-size: 24px;
}
 

.btn-send{
    margin-top: 15px;
    padding: 10px 20px 10px 20px;
    background-color: rgb(24, 6, 128);
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

.modal-body{
    padding: 20px;
}