.download-link {
	background-color: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	font: 20px "TradeGothicCondensed", sans-serif;
	font-weight: bold;
	margin-left: 10px;
	transition: color .3s;

	&:hover {
		color: var(--green);
		transition: color .3s;
	}
}



#document-viewer {
	--padding: 40px;


	padding: var(--padding);


	iframe {
		height: 100%;
		width: 100%;


		body {
			align-items: center;
			display: flex;
			justify-content: center;
		}
	}

	nav {
		align-items: center;
		background-color: var(--blue);
		color: #fff;
		display: flex;
		font-size: 1.5rem;
		padding: 1rem 2rem;


		button {
			flex: 0 0 auto;
		}

		h2 {
			flex: 1 1 auto;
		}
	}


	.modal-content {
		background-color: #fff;
		display: flex;
		flex-direction: column;
		height: 100%;
		width: 100%;
	}
}
