body {
	max-width: 1000px;
	margin: 0 auto;
	font-family: Arial;
}

.magazine-logo__block {
	text-align: center;
	margin: 10px 0;
}
.magazine-logo__image {
	max-width: 45%;
}

.banner-header {
	width: 100%;
}

.webinar-details {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.event-title {
	margin: 10px 0 0 0;
}
.event-time {
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

.meridiem {
	font-size: .8em;
}

.webinar-registration__button {
	display: inline-block;
	margin-top: 5px;
	padding: 10px 15px;
	font-size: 20px;
	background: var(--color-dark);
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	border: 0;
	cursor: pointer;
}
.webinar-registration__button--log-in {
	margin-right: 10px;
}

.subhead {
	margin: 20px 0 0 0;
	color: var(--color-dark);
	text-transform: uppercase;
}

.event-text {
	margin-bottom: 20px;
}

.speaker {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	color: inherit;
	text-decoration: none;
	margin-bottom: 10px;
}

.speaker-photo {
	max-width: 100px;
	border: 1px solid black;
}

.speaker-name {
	font-size: 1.2rem;
	font-weight: bold;
}

.speaker-details {
	margin-top: 5px;
	font-size: 0.8rem;
}

.sponsor-image {
	margin: 10px;
	text-align: center;
}

.webinar__sponsored-by {
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
}
.webinar__sponsored-by--additional {
	font-size: 12px;
}
.webinar__sponsors {
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.webinar__sponsors :not(:last-child) {
	margin-right: 10px;
}

.webinar__sponsor {
	margin: 5px;
}

.webinar__sponsor--single {
	max-width: 200px;
}
.webinar__sponsor--premium {
	max-width: 350px;
}
.webinar__sponsor--platinum {
	max-width: 200px;
}
.webinar__sponsor--gold {
	max-width: 160px;
}
.webinar__sponsor--silver {
	max-width: 120px;
}

.invite-colleague-link {
	color: black;
}

footer {
	padding: 10px 0;
}

.adobe-text {
	font-size: 12px;
	color: gray;
}

@media (min-width: 600px) {
	.webinar-nav {
		float: right;
	}

	.webinar-details {
		flex-direction: row;
	}

	.event-info {
		width: 65%;
		margin-right: 10px;
	}

	.speaker-info {
		width: 33%;
	}
}

/* webinar registration form */
.required-color {
	color: var(--color-dark);
}

.webinar-registration-box {
	border: 1px solid gray;
}

.webinar-registration-header {
	background: var(--color-dark);
	color: white;
	font-size: 20px;
	text-transform: uppercase;
}

.webinar-registration-form {
	background: #eee;
}

.webinar-registration-header,
.webinar-registration-form {
	padding: 10px 20px;
}


.webinar-registration__block {
	display: flex;
	margin: 10px 0;
}
.webinar-registration__block--column {
	flex-direction: column;
}
.webinar-registration__block--center {
	justify-content: center;
}
.webinar-registration__block--contact-opt-in {
	font-size: 1.1rem;
}


.webinar-registration__required {
	position: relative;
	flex: 1;
	display: flex;
	color: var(--color-dark);
}
.webinar-registration__required::after {
	content: '*';
	position: absolute;
	z-index: 2;
	top: 2px;
	left: 4px;
}
.webinar-registration__required--first,
.webinar-registration__required--city,
.webinar-registration__required--state {
	margin-right: 10px;
}


.webinar-registration__input {
	flex: 1;
	border: 1px solid #ccc;
	padding: 10px;
	font-size: 16px;
}
.webinar-registration__input--address1 {
	margin-right: 10px;
}
.webinar-registration__textarea {
	border: 1px solid #ccc;
	padding: 10px;
	font-family: inherit;
	font-size: 16px;
}

.webinar-registration__label {
	display: block;
}


.dont-forget {
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

.calendar-icon {
	width: 50px;
	vertical-align: middle;
}
