* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body, html {
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: "Segoe UI";
	overflow-x: hidden;
}

.page {
	/width: 1000px;
	width: 100%;
	height: 100%;
	margin: auto;
}

.header,
.footer,
.content {
	white-space: nowrap;
}

.left, .right {
	display: inline-block;
	white-space: normal;
	vertical-align: top;
}

.left {
	width: 30%;
	text-align: right;
	padding-right: 30px;
}

.right {
	width: 70%;
	text-align: left;
	padding-left: 30px;
}

/* Header */

.header {
	width: 100%;
	height: 230px;
	min-height: 230px;
}

.header > div {
	display: inline-block;
	height: 100%;
}

.header .title-wrapper {
	background-color: #5C5C5C;
	color: white;
	border-right: 5px solid #E31C33;
	padding-top: 70px;
}

.logo {
	padding-top: 80px;
}

.logo img {
	width: 270px;
	height: auto;
}

.title {
	font-size: 60pt;
	text-transform: uppercase;
	margin-left: -5px;
}

.subtitle {
	font-size: 15pt;
	margin-top: -6px;
	font-weight: 200;
}

/* Content */
.content {
	padding: 40px 0;
	height: 290px;
	background-image: url('images/content-background.png');
	background-size: 30px 30px;
}

.content > div {
	height: 100%;
}

.content .left {
	border-right: 1px solid #E31C33;
}

.content .right {
	border-left: 1px solid #E31C33;
}

.likely-wrapper {
	padding-top: 20px;
}

.course-title {
	font-size: 20pt;
	font-weight: 500;
}

.result-name,
.results {
	margin-top: 10px;
}

.result-name,
.result {
    font-size: 12pt;
}

.result-value {
	font-size: 14pt;
}

.date {
	margin-top: 20px;
	color: #383085;
	font-weight: 500;
}

.user-name-wrapper {
	display: flex;
	justify-content: flex-end;
	height: 100%;
}

.user-name {
	font-size: 25pt;
	font-weight: 600;
	align-self: center;
}

.user-name > p {
	margin: 0 0;
}

/* Footer */
.footer {
	padding-top: 20px;
}

.instructor-name {
	font-size: 16pt;
}

.instructor-notes {
	margin-top: 10px;
	font-style: italic;
}
.instructor-notes:not(:empty):before {
    content: "«";
}
.instructor-notes:not(:empty):after {
    content: "»";
}

.certificate-link {
    font-size: 10pt;
}