/* Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
	margin: 0;
}

.modal-overlay.is-open {
    display: flex;
}

/* Modal box */
.modal-box {
    background: #fff;
    border-radius: 4px;
    padding: 2rem;
    max-width: 560px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* Open Button */
.modal-open {
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	text-transform: uppercase;
	font-family: "ibm-plex-sans", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	padding: 10px 15px;
	letter-spacing: 2px;
}
.qui-tam {
	background-color: #589BBE;
}
.private-sector {
	background-color: #5DAB71;
}
.osha {
	background-color: #E38233;	
}

/* Close button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.modal-close:hover {
    color: #000;
}