/* needed for for popup */
/* The Modal (background) */
.fea-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
/* Modal Content/Box */
.fea-modal .modal-content {
    background-color: #fefefe;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
	max-width: 1400px;
	margin: 10% auto;
	padding: 0px 0px 50px 0px;
}
.fea-modal .modal-content .modal-head {
    display: flex;
	flex-direction: row;
	justify-content: space-between;
	background: white;
	padding-top: 20px;
	padding-bottom: 20px;
	border: none;
    position: relative;
}
.fea-modal .modal-content .modal-head .header {
    padding-left: 20px;
    font-weight: 700;
}
.fea-modal .modal-content .modal-head .close {
	color: #00B0EA;
	font-size: 70px;
	font-weight: normal;
    position: absolute;
    top: -20px;
    right: 20px;
}

.modal-content .modal-body {
    padding: 0px 20px 0px 20px;
}
  
/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}