/* shared styles.

   requires:    /common/framework/css/framework.en.css
                /common/framework/css/gui.en.css
   ========================================================================== */ 
 
/* ==========================================================================
   setup
   ========================================================================== */
:root {
	/* heights */
	--event-header-height: 50px;
	--event-header-landing-height: 55px;
	/* colors */
	--event-header-gray: #eaeaea;
	--event-header-green: #7cccbd;
}

html {
	color: #222;
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
.inner {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}
.page-width {
	max-width: 63.7rem;
	padding: 1.75rem 1.666667rem 5.75rem 1.66667rem;
}
main {
	padding-bottom: 2rem;
}
main a {
	color: #ee3032;
}
main a:hover {
	color: #7cccbd;
}
.page main h2, .subpage main h1 {
	color: #5fab9c;
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 2.8125rem;
	padding: 4rem 0 1.25rem 0;
}
.subpage main h1 {
	padding: 2rem 0 1.25rem;
}
main h3 {
	font-size: 1rem;
	font-weight: 700;
}
main p.small, main .small, main small {
	margin-bottom: 1.5rem;
}
main strong.heading {
	font-size: 1rem;
}
.subpage main h2 {
	color: #797979;
	font-size: 1.725rem;
	font-weight: 300;
	line-height: 1.4;
}
p.sub-heading {
	color: #5fab9c;
	font-size: 1.5625rem;
	line-height: 2.5rem;
	margin: 1.25rem 0 1.25rem 0;
}
.subpage .smaller {
	font-size: 1.25rem;
	line-height: 1.75rem;
	margin: 1rem 0 1rem 0;
}
/*lists*/

main ul.small {
	margin-left: 1.5rem;
}
main ul.small li {
	display: list-item;
	list-style: disc;
}
main ul.fancy {
	font-size: 1.0rem;
}
main ul.fancy ul li {
	padding-left: 1.5rem;
	vertical-align: top;
}
main ul.fancy li {
	line-height: 1.5rem;
	text-indent: 0.15rem;
}
main ul.fancy li:before {
	color: #ee3032;
	content: '\2022';
	margin: 0 0.25rem 0 -0.0875rem;
}
.big-text {
	color: #222;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 2.1875rem;
	margin: 1rem 0;
}
.black {
	background: #000;
}
.gray {
	background: #f1f1f1;
}
.gray .inner {
	color: #222;
}
.dark {
	background: #222;
}
/* #overview */

#overview #wtc-header .page-width {
	padding: 3rem 0;
}
#overview .one-line p {
	font-size: 1.0rem;
	line-height: 1.7;
	margin: .75rem 0;
}
/* #submission */

main p.small, span.small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
/* #logistics */

#logistics p {
	font-size: 1.0rem;
	line-height: 1.7;
}
#logistics main h2 {
	margin-top: 2.7rem;
}
#logistics main {
	padding-bottom: 6rem;
}
#logistics h3 {
	padding: 40px 0 10px;
	color: #797979;
	font-size: 1.725rem;
	font-weight: 300;
}
.map img {
	border: 1px solid #ddd;
	max-width: 346px;
   width: 100%;
   height: auto;
}
/*animation*/

@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes slide-in-left {
	0% {
		left: -62.5rem;
	}
	100% {
		left: 0;
	}
}
/* ==========================================================================
   product header wrappers
   ========================================================================== */

#event-header {
	-webkit-transition: all 0.3s ease;
	background: var(--event-header-gray);
	color: #222;
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	height: var(--event-header-height);
	line-height: 1.3;
	min-width: 320px;
	position: sticky;
	top: 100px;
	transition: all 0.3s ease;
	width: 100%;
	z-index: 99999999;
}
#registration #event-header { top: var(--event-header-height); }

#event-header.sticky {
	height: var(--event-header-height);
	top: var(--event-header-height);
}
html.event-header-landing #event-header:not(.sticky) {
	height: var(--event-header-landing-height);
	top: var(--event-header-height);
}
#event-grid {
	align-content: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 63.7rem;
	padding: 0 2rem;
	white-space: nowrap;
}
html.event-header-landing #event-header:not(.sticky) #event-grid {
	justify-content: center;
}
#event-backdrop {
	background-color: rgba(0, 0, 0, .3);
	bottom: 0;
	display: none;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 100px;
	width: 100%;
	z-index: 99999998;
}
html._header-thin-only #event-backdrop, html:not(._header-thick) #event-backdrop {
	top: var(--event-header-height);
}
/* ==========================================================================
   product nav wrappers
   ========================================================================== */

#event-nav-wrapper {
	align-items: center;
	display: inline-flex;
	justify-content: left;
	width: 100%;
}
#event-nav>ul {
	height: var(--event-header-height);
	overflow: hidden;
	white-space: normal;
}
html.event-header-landing #event-header:not(.sticky) #event-nav>ul {
	height: var(--event-header-landing-height);
}
#event-nav>ul>li {
	display: inline-block;
	height: 100%;
}
#event-nav a {
	color: #222;
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	height: 100%;
	line-height: var(--event-header-height);
	padding: 0 1rem;
	text-align: center;
	letter-spacing: 0.0875rem;
	text-transform: uppercase;
	white-space: nowrap;
}
#event-grid .save-the-date-button {
	border: 1px solid #5fab9c;
	border-radius: 0;
	color: #5fab9c;
	display: flex;
	font-size: 15px;
	font-weight: 600;
	justify-content: center;
	align-items: center;
	margin-left: 1rem;
}
#event-grid .save-the-date-button:hover {
	background: #5fab9c;
	color: #fff;
}
#event-grid .save-the-date-button a {
	background: #fff;
	/* border-radius: 0.1875rem; */
	color: #5fab9c;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03rem;
	line-height: 1;
	padding: 0.625rem;
	text-transform: uppercase;
}
#event-grid .save-the-date-button a:hover {
	background: #5fab9c;
	color: #fff;
}
html.event-header-landing #event-header:not(.sticky) #event-nav>ul li a {
	line-height: var(--event-header-landing-height);
}
#event-nav a:hover, #event-more-nav a:hover {
	background: var(--event-header-green);
	color: #fff;
}
	{
	background: var(--event-header-green);
	color: #fff;
}
#event-nav a svg {
	margin: -2px 0 0 .25rem;
}
/* ==========================================================================
   product subnavs
   ========================================================================== */

#event-nav .event-has-subnav {}
#event-nav .event-has-subnav.open>a {
	color: var(--event-header-yellow);
}
#event-nav .event-is-subnav {
	position: absolute;
	top: var(--event-header-height);
	width: 220px;
}
html.event-header-landing #event-header:not(.sticky) #event-nav .event-is-subnav {
	top: var(--event-header-landing-height);
}
#event-nav .event-is-subnav li {
	display: block;
}
#event-nav .event-is-subnav a {
	background: #f9f9f9;
	border: 1px solid #ddd;
	color: #444;
	display: block;
	font-size: 1rem;
	line-height: 1.3 !important;
	margin-bottom: -1px;
	padding: .5rem 1rem;
	text-align: left;
}
#event-nav .event-is-subnav a:hover {
	background: #eee;
	color: #000;
}
/* ==========================================================================
   product more nav
   ========================================================================== */

#event-more {
	color: #222;
	cursor: pointer;
	display: inline-block;
	font-size: 1.125rem;
	line-height: var(--event-header-height);
	padding: 0 1rem;
	position: relative;
	text-align: center;
}
html.event-header-landing #event-header:not(.sticky) #event-more {
	line-height: var(--event-header-landing-height);
}
#event-more.open, #event-more:hover {
	background: var(--event-header-green);
	color: #fff;
}
#event-more svg {
	margin: -2px 0 0 .25rem;
	vertical-align: middle;
}
#event-more-nav {
	display: none;
	position: absolute;
	right: 0;
	text-align: left;
	top: var(--event-header-height);
	width: 13.75rem;
}
#event-more.open #event-more-nav {
	display: inline-block;
}
html.event-header-landing #event-header:not(.sticky) #event-more-nav {
	top: var(--event-header-landing-height);
}
#event-more-nav li {
	display: block;
}
#event-more-nav a {
	background: #f5f5f5;
	color: #444;
	display: block;
	font-size: 1rem;
	line-height: 1.3 !important;
	margin-bottom: -1px;
	padding: 1.01rem;
	text-transform: uppercase;
}
/* ==========================================================================
   header
   ========================================================================== */

#wtc-header .page-width {
	padding: 2.7rem 0 1.0rem 0;
	position: relative;
}
#wtc-header h1 {
	font-size: 0;
	padding: 0;
	text-indent: -600rem;
}
#wtc-header img {
	margin: 0 1.5rem 0 1.5rem;
	max-width: 75%;
}
#wtc-header .left {
	display: inline-block;
	width: 30%;
}
#wtc-header .right {
	display: inline-block;
	width: 69%;
	vertical-align: top;
	padding-top: 2rem;
	padding-bottom: 1.7rem;
}
#wtc-header p.header-desc {
	color: #636363;
	font-family: "Source Sans Pro";
	font-size: 1.625rem;
	font-weight: 400;
	line-height: 2.5rem;
	max-width: 54rem;
	width: 95%;
	margin: 0 1.5rem 0 1.5rem;
}
span.spacer {
	display: inline-block;
}
.thank-you {
	background: #e7f2f0;
	padding: 1.5rem 2.5rem 1.5rem 2.5rem;
	border-radius: 10px;
	color: #444;
	font-size: 1.5625rem;
	font-weight: 500;
	line-height: 2.25rem;
}
.thank-you p {
	padding: .3rem 1rem .3rem 0;
}

#registration li.registration-wrapper.hide__600 {
    display: none;
}
/*active*/
#overview .nav a.overview, #schedule .nav a.schedule, #submissions .nav a.submissions, #logistics .nav a.logistics, 
#overview li#event-more.open li.match a.overview,#schedule li#event-more.open li.match a.schedule, 
#logistics li#event-more.open li.match .logistics, #submissions li#event-more.open li.match .submissions,
#registration .nav a.registration, #registration li#event-more.open li.match .registration {
	color: #fff;
	background: #7cccbd;
}
.overview.header {
	display: block;
}
/* ==========================================================================
   shared content
   ========================================================================== */

.big-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	height: 48vw;
	max-height: 350px;
	width: 100%;
}
#overview .big-image {
	max-height: 456px;
}
#overview .big-image {
	background-image: url('../img/user-conference-australia-header.png'), linear-gradient(to right, #76b3ea, #76b3ea);
	background-size: cover;
}
#schedule .big-image {
	background-image: url('../img/schedule-page.jpg'), linear-gradient(to right, #222, #222);
}
#logistics .big-image {
	background-image: url('../img/logistics-page.png'), linear-gradient(to right, #e14234, #e14234);
}
#submissions .big-image {
	background-image: url('../img/submissions-form-page.jpg'), linear-gradient(to right, #222, #222);
}
#presentations .big-image {
	height: 21.875rem;
	background-repeat: no-repeat;
	background-position: center;
}

#registration .big-image {
    background-image: url(../img/registration-page.jpg), linear-gradient(to right, #222, #222);
}
/* ==========================================================================
   responsive breakpoint styles
   ========================================================================== */

/* styles for large screens (1200px)
   ========================================================================== */

@media all and (max-width: 1200px) {
	.big-image {
		background-size: cover;
		height: 340px;
	}
	#overview .big-image {
		background-size: cover;
	}
	#event-header, html.event-header-landing #event-header:not(.sticky), html.event-header-landing #event-header:not(.sticky) #event-nav>ul {
		height: var(--event-header-height);
	}
	#event-name h1 {
		font-size: 1.27rem;
		line-height: var(--event-header-height);
	}
	html.event-header-landing #event-header:not(.sticky) #event-nav>ul>li>a, html.event-header-landing #event-header:not(.sticky) #event-more {
		line-height: var(--event-header-height);
	}
	html.event-header-landing #event-header:not(.sticky) #event-nav .event-is-subnav, html.event-header-landing #event-header:not(.sticky) #event-more-nav {
		top: var(--event-header-height);
	}
}
/* styles for medium screens (900px)
   ========================================================================== */

@media all and (max-width: 900px) {
	.page main h2, .subpage main h1 {
		font-size: 2.0rem;
	}
	.subpage main h2, p.sub-heading {
		font-size: 1.4rem;
	}
	#event-name h1 {
		font-size: 1.15rem;
	}
	#event-more-nav li a, #event-nav .event-is-subnav a {
		font-size: 1.15rem;
	}
	html.event-header-landing #event-header:not(.sticky) #event-nav>ul>li>a, html.event-header-landing #event-header:not(.sticky) #event-more {
		padding: 0 .75rem !important;
	}
	#event-nav a {
		font-size: 14px;
		padding: 0 0.6rem;
	}
	#event-grid .save-the-date-button {
		font-size: 14px;
	}
	.save-the-date-inner {
		bottom: 0;
		height: 50px;
		position: fixed;
		right: 0 !important;
		text-align: center;
		top: auto;
		width: 100%;
	}
	.save-the-date-inner:after {
		border: none;
	}
	#save-the-date p {
		display: inline-block;
		font-size: 16px !important;
		line-height: 50px;
		padding: 0 8px !important;
	}
	#wtc-header .left {
		margin-top: 1.7rem;
	}	
	.big-image {
		height: 220px;
	}
	.second-image, .third-image {
		background-size: cover;
	}
}
/* styles for small screens (600px)
   ========================================================================== */

@media all and (max-width: 600px) {
	#event-logo img {
		margin: 0 1rem 1rem 1.0rem;
		max-width: calc(100% - 2.0rem);
	}
	#event-more-nav {
		width: 10.75rem;
	}
	#event-nav a {
		font-size: 13px;
		padding: 0 0.5rem;
	}
	#event-grid .save-the-date-button {
		font-size: 13px;
	}
	#wtc-header .left {
		display: block;
		width: 100%;
		padding: 0 25% 0 25%;
		margin-top: 0;
		margin-bottom: 1.7rem;
	}
	#wtc-header .right {
		display: block;
		width: 100%;
	}
	#wtc-header img {
		margin: 0 1.0rem 0 1.0rem;
		max-width: 100%;
	}
	#wtc-header p.header-desc {
		margin: 0 1.0rem 0 1.0rem;
	}
	.date {
		font-size: 1.125rem;
		line-height: 2;
	}
	/*setup*/
	.page-width {
		padding: 2.75rem 1rem;
	}
	a.more+.sub-menu {
		left: auto;
		right: 0;
	}
	.big-image {
		height: 140px;
	}
}
/* styles for small screens (320px)
   ========================================================================== */

@media all and (max-width: 380px) {
	#event-header {
		position: static !important;
	}
	#event-nav-wrapper {
		justify-content: center;
	}
	#event-nav a {
		font-size: 12px;
		padding: 0 0.2rem;
	}
	#event-more-nav {
		width: 7.75rem;
	}
	#event-more-nav li a, #event-nav .event-is-subnav a {
		font-size: 1.0rem;
		padding: 0.8rem;
	}
	#event-grid {
		padding: 0 0.2rem;
	}

	.big-image {
		height: 130px;
	}
}
/* styles for small screens (320px)
   ========================================================================== */

@media all and (max-width: 320px) {
	.big-image {
		height: 120px;
	}
}
/* printer styles
   ========================================================================== */

@media print {}