
/* alnylam modal css */

.modal {
	display: none;
	position: fixed;

	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background: rgba(0, 0, 0, .75);
}
.modal.open {
	display: flex;
	align-items: center;
}
.modal .inner {
    position: relative;
	width: 92%;
    max-width: 800px;
    padding: max(5%, 48px) 6%;
    margin: 0 auto;

    background-color: #fff;
	box-shadow: 0px 0px 25px 5px rgb(51,51,51);
}
.modal .title {
    font-size: 36px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #003366;
}
.modal .content {
	text-align: center;
}
.modal .content p {
    font-size: 18px;
    color: #333;
    max-width: 100%;
}
.modal a.confirm {
    margin-top: 40px;
	width: 92%;
    max-width: 240px;
}
.modal button.close {
    border: none;
    background: url('/themes/custom/alnylam/images/buttons-close-x-56px.svg') no-repeat;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 16px;
    right: 16px;
}
