:root {
	--tan: #E39D68;
	--purple: #2C285D;
	--lightpurple: #9A83A0;
}
#desktop-header, #mobile-header {
	width: 100%;
	margin-bottom: 40px;
}
#desktop-header {
	display: block;
}
#mobile-header {
	display: none;
}
#two-column-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
	font-size: 25px;
	box-sizing: border-box;
	position: relative;
}
#two-column-container *, #speaker-details-container *, #registration-details-container * {
	box-sizing: border-box;
	position: relative;
}
#two-column-container > div {
	display: inline-block;
	vertical-align: top;
	padding: 0px 40px 40px 40px;
}
#left-column {
	max-width: 622px;
}
#right-column {
	max-width: 422px;
	border-left: 1px solid black;
}
#lets-get-cookin-box {
}
#lets-get-cookin-header {
	color: var(--tan);
	font-size: 40px;
	font-weight: bold;
}
#speakers-header {
	color: var(--purple);
	font-size: 40px;
	font-weight: bold;
	margin-top: 30px;
	line-height: 40px;
}
a.button {
	display: inline-block;
	background-color: var(--purple);
	color: white;
	text-align: center;
	margin: 10px auto;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	cursor: pointer;
}
#timer-container {
	display: none;
	text-align: center;
	border-bottom: 1px solid black;
	padding-bottom: 30px;
}
#timer-container table {
	margin: 0 auto;
	table-layout: fixed;
	width: 100%;
	font-weight: bold;
}
#giveaway {
	text-align: center;
	margin: 50px 0px 10px 0px;
	display: none;
}
#giveaway > h2 {
	text-align: left;
	color: var(--lightpurple);
	font-size: 40px;
}
#giveaway > p {
	text-align: left;
}
#giveaway > a {
	display: inline-block;
	margin: 10px auto;
	background-color: var(--lightpurple);
}
.space {
	margin: 40px auto;
	text-align: center;
	overflow: hidden !important;
}
#space-1 {
	width: 300px;
	height: 250px;
}
#space-2 {
	width: 300px;
	height: 600px;
}
#space-3 {
	width: 300px;
	height: 250px;
}
#space-4 {
	width: 300px;
	height: 250px;
}
#space-5 {
	width: 300px;
	height: 600px;
}
#social-buttons {
	text-align: center;
}
#social-buttons > * {
	display: block;
	width: 200px;
	height: 60px;
	line-height: 60px;
	padding: 0px;
	margin: 20px;
	text-decoration: none;
	margin: 20px auto;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
}
#facebook-button {
	color: #8B9ABF;
	border: 1px solid #8B9ABF;
}
#twitter-button {
	color: #85C7F6;
	border: 1px solid #85C7F6;
}
#pinterest-button {
	color: #ED657F;
	border: 1px solid #ED657F;
}
#speakers {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
}
a.speaker {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	width: 100%;
	max-width: 230px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: black;
	text-decoration: none;
	cursor: pointer;
	margin: 20px;
}
.speaker-thumb {
	width: 100%;
	max-height: 220px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.speaker-thumb > img {
	visibility: hidden;
}
#two-column-container .speaker-thumb > div.speaker-learn-more {
	display: block;
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 83px;
	height: 77px;
	background-color: var(--tan);
	color: var(--purple);
	border-top-left-radius: 10px;
	text-align: center;
	padding: 20px 5px;
	font-size: 20px;
	line-height: 20px;
}
.speaker-name {
	font-weight: bold;
	color: var(--purple);
	line-height: 25px;
	margin-top: 5px;
}
.speaker-claim-to-fame {
	font-style: italic;
	color: black;
	font-size: 20px;
}
.speaker-description {
	display: none;
}
.speaker-books {
	display: none;
}
@media only screen and (max-width: 800px) {
	#right-column {
		border-left: none;
	}
	#desktop-header {
		display: none;
	}
	#mobile-header {
		display: block;
	}
}

/* speaker details */
#speaker-details-container {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	z-index: 16;
	box-sizing: border-box;
}
#speaker-details-greyout {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: .5;
	z-index: 17;
}
#speaker-details {
	position: relative;
	width: 90%;
	height: 90%;
	max-width: 900px;
	max-height: 900px;
	padding: 78px 58px;
	background-color: white;
	border-radius: 10px;
	z-index: 18;
	margin: 20px;
	overflow-x: hidden;
	overflow-y: scroll;
}
#speaker-details > div:first-child {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
	align-content: flex-end;
	text-align: left;
	padding: 0px 0px 20px 0px;
}
#speaker-details > div:nth-child(2) {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	padding: 20px 0px;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
}
@media only screen and (max-width: 800px) {
	#speaker-details > div:nth-child(2) {
		flex-wrap: wrap;
		justify-content: center;
	}
}
#speaker-details > div:nth-child(3) {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding: 20px 0px;
}
img#speaker-details-portrait {
	border: 1px solid gray;
	vertical-align: bottom;
	width: 250px;
	max-width: 100%;
}
#speaker-details > div:first-child > div:last-child {
	display: inline-block;
	vertical-align: bottom;
	text-align: left;
	width: 100%;
	max-width: 400px;
	padding: 0px 0px 0px 20px;
}
#speaker-details-name {
	text-align: left;
	color: var(--purple);
	text-transform: uppercase;
	font-size: 1.7em;
	font-weight: bold;
}
#speaker-details-claim-to-fame {
	text-align: left;
	font-style: italic;
}
#speaker-details-social-icons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
	align-content: flex-end;
}
#speaker-details-social-icons > a {
	width: 46px;
	height: 46px;
	color: var(--purple);
	font-size: 44px;
	margin: 0px 5px;
	overflow: hidden;
	cursor: pointer;
}
#speaker-details-social-icons > a > span {
	vertical-align: top;
}
#speaker-details-description-box {
	display: inline-block;
	vertical-align: top;
	flex-shrink: 50;
	padding: 0px 20px 0px 0px;
	margin: 0px;
}
#speaker-details-description > p:first-child {
	margin-top: 0px;
}
#speaker-details-books {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
	flex-grow: 50;
}
@media only screen and (max-width: 800px) {
	#speaker-details-books {
		flex-wrap: wrap;
	}
}
#speaker-details-books > a {
	display: inline-block;
	vertical-align: top;
	width: 180px;
	/* height: 230px; */
	margin: 5px 5px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#speaker-details-books > a > img {
	visibility: hidden;
}
img#speaker-details-logo {
	min-width: 300px;
}
#close-speaker-details {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
@media only screen and (max-width: 768px) {
	#speaker-details > div:first-child {
		justify-content: center;
	}
	#speaker-details > div:nth-child(2) {
		justify-content: center;
	}
	#speaker-details > div:nth-child(3) {
		justify-content: center;
	}
	#speaker-details-name {
		text-align: center;
	}
	#speaker-details-claim-to-fame {
		text-align: center;
	}
	#speaker-details-social-icons {
		justify-content: center;
	}
}
/* end speaker details */

/* register */
#registration-details-container {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	z-index: 16;
	box-sizing: border-box;
}
#registration-details-greyout {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: .5;
	z-index: 17;
}
#registration-details {
	position: relative;
	width: 90%;
	height: 90%;
	max-width: 780px;
	max-height: 750px;
	padding: 78px 58px;
	background-color: white;
	border-radius: 10px;
	z-index: 18;
	margin: 20px;
	overflow-x: hidden;
	overflow-y: scroll;
}
#registration-details h2 {
	color: var(--purple);
}
#registration-details button {
	background-color: var(--purple);
}
#close-registration-details {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
.registration-form-field-container {
	margin: 5px 0px;
}
#id_first_name, #id_last_name, #id_email {
	border: 1px solid gray;
	border-radius: 5px;
}
/* end register */