/* -----------------------
   GLOBAL
------------------------ */
*, :before, ::before, :after, ::after {
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.global-anim-off, .ui-datepicker, .select2-container, .select2-dropdown, .tooltip, .slick-track{
	-webkit-transition: none;
	transition: none;
}

/* -----------------------
   extra room for social icons on right side of screen
------------------------ */
@media screen and (min-width: 64em) and (max-width: 1260px) {
	.idc-main-share-padding, /* global helper class */
	section.getdoc__body, /*GETDOC -everything but events*/
	event_body /*EVENTS*/{
		padding-right: 20px;
	}
}


/* -----------------------
   extra room for social icons on right side of screen
------------------------ */
@media screen and (min-width: 64em) and (max-width: 1260px) {
	.idc-main-share-padding, /* global helper class */
	section.getdoc__body, /*GETDOC -everything but events*/
	event_body /*EVENTS*/{
		padding-right: 20px;
	}
}

/* -----------------------
   ICOMOON
------------------------ */
.getdoc__analyst-bio .wrap + .read-more:after,
.getdoc__main .getdoc__toc a:before{
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/* breadcrumbs */
nav.domain_nav {
	background: #e8e8e8;
	padding: 8px 0 10px;
}

nav.domain_nav .breadcrumbs li {
	font-size: 12px;
}

nav.domain_nav .breadcrumbs li:not(:last-child)::after {
	color: #a5a5a5;
}

nav.domain_nav .breadcrumbs li:last-child {
	width: -webkit-calc(100% - 500px);
	width: calc(100% - 500px);
	min-width: 150px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (max-width: 640px) {
	nav.domain_nav .breadcrumbs li:last-child {
		color: transparent;
		width: 11px;
		background: #e8e8e8;
		overflow: hidden;
		min-width: 0;
		position: relative;
		left: -13px;
	}
}

/* FOOTER
------------------------ */
footer:not(#page-footer):not(.idc-main-footer) { /* excluding the original footer */
	padding: 30px 20px;
	background: #dbdbdb;
	width: 100%;
}

/* loading spinner for field-box inputs
------------------------ */
.field-box span[id^="loading-"],
.field-box span[id^="loading-"] svg.spinner {
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.field-box span[id^="loading-"].spinning,
.field-box span[id^="loading-"].spinning svg.spinner {
	opacity: 1;
}

.field-box span[id^="loading-"] {
	-webkit-animation-name: spin;
	-webkit-animation-duration: 2000ms;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: spin;
	-moz-animation-duration: 2000ms;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: spin;
	-ms-animation-duration: 2000ms;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	animation-name: spin;
	animation-duration: 2000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.field-box span[id^="loading-"] {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: #fff;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* select2 fix for hidden fields
------------------------ */
.select2 {
	width: 100% !important;
}

/* forms2.tld generated submit row fix
------------------------ */
.row.btns a.button.cancel {
	background: none;
	color: #2279bc;
	text-decoration: underline;
	font-size: 14px;
}

.row.btns p {
	margin-bottom: 20px;
}

/* forms2 custom wrap and heading (utilized on /analysts/appearrequest.jsp )
------------------------ */

.form-custom-wrap {
	padding: 30px;
	background: #f2f2f2;
}

.form-custom-heading h1 {
	margin-bottom: 1rem;
}

.form-custom-heading {
	margin-bottom: 2rem;
}

.form-custom-wrap h2 {
	font-size: 1.25rem;
	color: #2279bc;
	margin-bottom: 1rem;
}

.form-custom-wrap ol li {
	list-style: decimal outside none;
}

.form-custom-wrap ul li {
	list-style: disc outside none;
}

.form-custom-wrap .select2 ul li,
.form-custom-wrap .select2 ol li {
	list-style: none;
}

/* -----------------------
   GETDOCS & EVENT CSS GLOBALS
------------------------ */

/* custom cancel button
------------------------ */
.getdoc .button.cancel,
.event .button.cancel {
	background: none;
	color: #2279bc;
	padding-left: 0;
	padding-right: 0;
	margin-right: 20px;
}

.getdoc .button.cancel:hover,
.event .button.cancel:hover {
	background: none;
	color: #4196D2;
}

.getdoc,
.event {
	font-size: 16px;
}

.getdoc b,
.event b {
	font-weight: 600;
}

.getdoc a:not(.button),
.event a:not(.button) {
	color: #2279bc;
}

.getdoc a:not(.button):hover
.event a:not(.button):hover {
	color: #54A4E2;
}

/* -----------------------
   GETDOC CSS
------------------------ */
.getdoc {
	min-height: -webkit-calc(100vh - 147px);
	min-height: calc(100vh - 147px);
	padding-bottom: 80px;
}

.getdoc .button,
.getdoc button {
	font-size: 16px;
	padding: 7px 13px;
}

/* Heading
------------------------ */
.getdoc__heading {
	padding: 35px 0 40px 0;
	background-color: #DBEFFC;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.getdoc.getdoc-wrap__analyst .getdoc__heading {
	background-image: url('/images/getdocs/getdoc-heading-analyst.png');
	background-position: left center;
}

.getdoc.getdoc-wrap__team .getdoc__heading {
	background-image: url('/images/getdocs/getdoc-heading-team.png');
}

.getdoc.getdoc-wrap__idclink .getdoc__heading {
	background-image: url('/images/getdocs/getdoc-heading-idclink.png');
}

.getdoc.getdoc-wrap__factsheet .getdoc__heading {
	background-image: url('/images/getdocs/getdoc-heading-factsheet.png');
}

.getdoc.getdoc-wrap__presentation .getdoc__heading {
	background-image: url('/images/getdocs/getdoc-heading-presentation.png');
}

.getdoc.getdoc-wrap__pressrelease .getdoc__heading {
	background-image: url('/images/getdocs/getdoc-heading-pressrelease.png');
}

.getdoc.getdoc-wrap__toc .getdoc__heading,
.getdoc.getdoc-wrap__dag .getdoc__heading {
	background-image: url('/images/getdocs/getdoc-heading-research.png');
}

.getdoc__heading .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 800px) {
	.getdoc__heading .wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}

	.getdoc__heading .wrap > .column {
		width: 100%;
	}

	.getdoc__heading .wrap > .column:not(:first-child) {
		margin-top: 30px;
		text-align: left;
	}
}

@media screen and (max-width: 550px) {
	.getdoc__heading .wrap .doc-actions a {
		display: block;
	}

	.getdoc__heading .wrap .doc-actions a + a {
		margin-left: 0;
		margin-top: 8px;
	}
}

.getdoc__heading p {
	margin: 0;
}

.getdoc__heading .doc-info {
	text-transform: uppercase;
	color: #6f6f6f;
	font-size: 14px;
}

.getdoc__heading .doc-actions {
	margin-top: 20px;
}

.getdoc__heading .doc-actions i {
	position: relative;
	top: 2px;
	margin-right: 8px;
	font-size: 18px;
}

.getdoc__heading .doc-actions a {
	font-size: 14px;
}

.getdoc__heading .doc-actions a.back { /* ToC active */
	background: #2279bc;
	color: #fff;
	padding: 7px 10px;
}

.getdoc__heading .doc-actions a.back:hover,
.getdoc__heading .doc-actions a.back:focus {
	background-color: #4196d2;
}

.getdoc__heading .doc-actions a.back i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	display: inline-block;
}

.getdoc__heading .doc-actions a.disabled {
	color: #01010f;
	pointer-events: none;
}

.getdoc__heading .doc-actions a + a {
	margin-left: 30px;
}

.getdoc__heading .button.bg-green,
.getdoc__heading .button.bg-orange {
	padding: 15px 20px;
}

.getdoc__heading .button.bg-green .icom-cart,
.getdoc__heading .button.bg-orange .icom-pdf,
.getdoc__heading .button.bg-orange .icom-flip-chart-pie{
	font-size: 24px;
	position: relative;
	line-height: 0;
	bottom: -4px;
	margin-right: 5px;
}

.getdoc__heading .button.bg-orange .icom-pdf,
.getdoc__heading .button.bg-orange .icom-flip-chart-pie {
	margin-right: 7px;
}

.getdoc__heading .button.bg-green .icom-help-fill {
	font-size: 20px;
	position: relative;
	bottom: -2px;
	line-height: 0;
	margin-left: 9px;
}

@media screen and (max-width: 39.9375em) {
	.getdoc__heading h3 {
		font-size: 1.5rem;
	}
}

/* TOOLTIP
------------------------ */
.getdoc__tooltip {
	background-color: #dbdbdb;
	color: #01010f;
}

.getdoc__tooltip:before {
	border-color: transparent transparent #dbdbdb;
}
.getdoc__tooltip.top:before {
	border-color: #dbdbdb transparent transparent;
}
.getdoc__tooltip.left:before {
	border-color: transparent transparent transparent #dbdbdb;
}
.getdoc__tooltip.right:before {
	border-color: transparent #dbdbdb transparent transparent;
}

/* MODAL - List of figures/tables
------------------------ */
.modal.getdoc__modal h3 {
	color: #2279bc;
	border-bottom: 1px solid #2279bc;
	margin-bottom: 25px;
	padding-bottom: 15px;
}

.modal.getdoc__modal-list li > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
}

.modal.getdoc__modal-list li p {
	padding-right: 20px;
}

.modal.getdoc__modal-list li .actions {
	margin-left: 20px;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}

.modal.getdoc__modal-list li .actions a + a {
	margin-left: 15px;
}

.modal.getdoc__modal-list li a {
	display: inline-block !important;
	width: auto !important;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}

.modal.getdoc__modal-list ul.custom li + li {
	margin-top: 0.75rem;
}

@media screen and (max-width: 960px) {
	.modal.getdoc__modal li > div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		-webkit-flex-direction: column;
		flex-direction: column;
	}

	.modal.getdoc__modal li .actions {
		margin-left: 0;
		text-align: right;
		margin-top: 5px;
	}
}

/* Forecast Timeline CSS
------------------------ */
section.getdoc__timeline {
	background: #e2e2e2;
}

section.getdoc__timeline .timeline-nav {
	position: relative;
}

section.getdoc__timeline .timeline-ul {
	overflow: hidden;
	padding: 0;
	margin: 0;
	border: 0;
	vertical-align: baseline;
	list-style: none;
	font-size: 14px;
}

section.getdoc__timeline .timeline-ul li {
	float: left;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	position: relative;
}

section.getdoc__timeline .timeline-ul a {
	background: #d6d6d6;
	padding: 10px 21px 10px 29px;
	float: left;
	color: #7d7d7d !important;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

section.getdoc__timeline .timeline-ul li:first-of-type a {
	padding-left: 0;
	background: none;
	color: #868686 !important;
	pointer-events: none;
}

section.getdoc__timeline .timeline-ul li:first-of-type a:before,
section.getdoc__timeline .timeline-ul li:first-of-type a:after {
	display: none;
}

section.getdoc__timeline .timeline-ul a:hover {
	background: #ddd;
	text-decoration: none !important;
}

section.getdoc__timeline .timeline-ul a:before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -1.5em;
	border-width: 1.5em 0 1.5em 1em;
	border-style: solid;
	border-color: #d6d6d6 #d6d6d6 #d6d6d6 transparent;
	left: -1em;
}

section.getdoc__timeline .timeline-ul a:hover:before {
	border-color: #ddd #ddd #ddd transparent;
}

section.getdoc__timeline .timeline-ul a:after {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -1.5em;
	border-top: 1.5em solid transparent;
	border-bottom: 1.5em solid transparent;
	border-left: 1em solid #d6d6d6;
	right: -1em;
}

section.getdoc__timeline .timeline-ul a:hover:after {
	border-left-color: #ddd;
}

section.getdoc__timeline .timeline-ul a.current {
	background: #fefefe;
	color: #2279bc !important;
	pointer-events: none;
}

section.getdoc__timeline .timeline-ul a.current:before {
	border-color: #fefefe #fefefe #fefefe transparent;
}

section.getdoc__timeline .timeline-ul a.current:after {
	border-left-color: #fefefe;
}

section.getdoc__timeline .timeline-ul li:last-of-type a {
	padding-right: 8px;
}

section.getdoc__timeline .timeline-ul span {
	pointer-events: none;
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #d6d6d6;
	border: 2px solid #717171;
	padding: 2px;
	background-clip: content-box;
	margin-right: 3px;
	position: absolute;
	left: 11px;
	top: -webkit-calc(50% - 7px);
	top: calc(50% - 7px);
	z-index: 111;
	font-size: 0;
	color: transparent;
	line-height: 0;
}

section.getdoc__timeline .timeline-ul span.current {
	background-color: #2279bc;
}

/* Forecast Timeline SIMPLE CSS class gets added with jQuery uder <%--TIMELINE - restyle
------------------------ */
section.getdoc__timeline .timeline-ul.simple {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	padding-top: 30px;
	position: relative;
}

section.getdoc__timeline .timeline-ul.simple li {
	margin: 0 1px;
}

section.getdoc__timeline .timeline-ul.simple li:first-child {
	width: 100%;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	position: absolute;
	top: 2px;
	left: 0;
}

section.getdoc__timeline .timeline-ul.simple a {
	padding: 3px 11px 3px 31px;
}

section.getdoc__timeline .timeline-ul.simple a:before,
section.getdoc__timeline .timeline-ul.simple a:after {
	display: none;
}

@media screen and (max-width: 460px) {
	section.getdoc__timeline .timeline-ul.simple span {
		display: none;
	}

	section.getdoc__timeline .timeline-ul.simple a {
		padding: 3px 8px 3px 8px;
	}
}

/* ACCESS
------------------------ */
.getdoc__access .button i {
	margin-right: -4px;
	font-size: 12px;
	position: relative;
	top: -1px;
}

.getdoc__main .notice {
	margin-bottom: 30px;
	background: #f2f2f2;
	padding: 35px 30px 35px 30px;
}

.getdoc__main .notice .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	margin: 0;
}

@media screen and (max-width: 39.9375em) {
	.getdoc__main .notice .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	.getdoc__main .notice .row > .column:last-child {
		margin-top: 15px;
	}
}

.getdoc__main .notice h4 {
	color: #2279bc;
	margin-bottom: 10px;
}

.getdoc__main .notice .button {
	padding: 15px 25px;
}

.getdoc__main .notice.split .row {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}

.getdoc__main .notice.split .column {
	background: #f2f2f2;
	padding: 35px 50px 35px 50px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

@media screen and (min-width: 640px) {
	.getdoc__main .notice.split .column:first-child {
		border-right: 3px solid #fff;
	}

	.getdoc__main .notice.split .column:last-child {
		border-left: 3px solid #fff;
	}
}

.getdoc__main .notice.split .column:first-child h4 {
	color: #F37921;
}

.getdoc__main .notice.split .column:first-child .button {
	background-color: #F37921;
}

.getdoc__main .notice.split .column:first-child .button:hover {
	background-color: #F68B1F;
}

.getdoc__main .notice.split .button {
	margin-top: 20px;
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	-webkit-flex-grow: 0;
	flex-grow: 0;
	width: 170px;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}

/* BODY
------------------------ */
section.getdoc__body {
	margin-top: 50px;
}

.getdoc__body .content-heading {
	color: #2279bc;
}

.getdoc__body .m-b {
	margin-bottom: 0.8rem;
}


/* MAIN
------------------------ */
.getdoc__main .content-heading {
	margin-bottom: 0.8rem;
}

.getdoc__main .content-heading:not(:first-child),
.getdoc__main .taxonomies.copyBlock.factsheet .content-heading {
	margin-top: 2.8rem;
}

.getdoc__main a:not(.button) {
	color: #54A4E2;
}

.getdoc__main a:not(.button):hover {
	color: #70B3E2;
}

.getdoc__main p img{
	margin: 50px 0;
}

/* OVERFLOWING CONTENT
------------------------ */

.overflowing {
	width: 100%;
	overflow: auto;
}
.overflowing.custom-scrollbar::-webkit-scrollbar{
	width: 10px;
	height: 18px;
}
.overflowing.custom-scrollbar::-webkit-scrollbar-track{
	background: #f1f1f1;
}
.overflowing.custom-scrollbar::-webkit-scrollbar-thumb{
	height: 5px;
	width: 8px;
	background: #c1c1c1;
	border-top: 2px solid #f1f1f1;
	border-bottom: 2px solid #f1f1f1;
}
.overflowing.custom-scrollbar::-webkit-scrollbar-track-piece {
	height: 30px;
	width: 30px;
}

/* AUTHOR
------------------------ */
.getdoc__main .author {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.getdoc__main .author .photo {
	background-color: #f2f2f2;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	width: 73px;
	height: 73px;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}

.getdoc__main .author .photo:hover {
	box-shadow: 0px 0px 8px 2px rgba(173, 173, 173, 0.7);
}

.getdoc__main .author .info {
	padding-left: 20px;
}

.getdoc__main .author .info span.author-role {
	display: block;
}

/* ALERT WINDOW
------------------------ */
#TB_window .label {
	background: none;
	padding: 0;
}

#TB_window #TB_ajaxContent label {
	line-height: 1;
	margin: 0;
	display: inline;
	font-size: 12px;
}

#TB_window img {
	vertical-align: baseline;
}

#TB_window .myPopUp-content ul {
	margin-left: 0;
}

#TB_window #new-alert-name {
	display: inline-block;
	padding: 0;
	height: auto;
}

/* COPYBLOCK - ATTACHMENTS
------------------------ */
.getdoc__body .attachments.copyBlock:not(:empty) {
	margin-top: 30px;
}

.getdoc__body .attachments.copyBlock .blueheader {
	color: #01010f;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.1rem;
	margin-left: 10px;
}

.getdoc__body .attachments.copyBlock .attachmentItem {
	background-color: #f2f2f2;
	padding: 10px 20px;
}

/* ------------------- Document's icons ----------------------- */

.fileGif,
.fileJpg,
.filePdf,
.filePng,
.fileXls,
.filePpt,
.fileMp3,
.fileMp4,
.fileOther {
	width: 30px;
	display: inline-table;
	height: 30px;
	vertical-align: middle;
}

.fileXls {
	background: url(/research/images/extension-sprite.png) no-repeat 0 0;
}

.filePpt {
	background: url(/research/images/extension-sprite.png) no-repeat -30px 0;
}

.filePng {
	background: url(/research/images/extension-sprite.png) no-repeat 0 -60px;
}

.fileMp3 {
	background: url(/research/images/extension-sprite.png) no-repeat -60px 0;
}

.fileMp4 {
	background: url(/research/images/extension-sprite.png) no-repeat 0 -30px;
}

.fileOther {
	background: url(/research/images/extension-sprite.png) no-repeat -30px -30px;
}

.fileGif {
	background: url(/research/images/extension-sprite.png) no-repeat -60px -60px;
}

.fileJpg {
	background: url(/research/images/extension-sprite.png) no-repeat -30px -60px;
}

.filePdf {
	background: url(/research/images/extension-sprite.png) no-repeat -60px -30px;
}

/* COPYBLOCK - TAXONOMIES (Coverage)
------------------------ */
.getdoc__body .taxonomies.copyBlock {
	margin-bottom: 30px;
}
.getdoc__body .taxonomies.copyBlock .blueheader {
	margin-bottom: 5px;
}
.getdoc__body .taxonomies.copyBlock .blueheader:not(:first-of-type) {
	margin-top: 15px;
}




/* SIDE PANEL
------------------------ */
@media screen and (max-width: 63.9375em) {
	.getdoc__side.column {
		margin-top: 40px;
	}
}

.getdoc .getdoc__side .content-heading {
	margin-bottom: 20px;
}

.getdoc .getdoc__side .content-heading:not(:first-child),
.getdoc .getdoc__side .content-heading:not(:first-of-type) {
	margin-top: 40px;
}

.getdoc .getdoc__actions .getdoc__action,
.getdoc .getdoc__actions a[data-gtm-btn] {
	width: 100%;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin-bottom: 25px;
	color: #01010f;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.getdoc .getdoc__actions .getdoc__action:before,
.getdoc .getdoc__actions .getdoc__action i:before,
.getdoc .getdoc__actions a[data-gtm-btn]:before,
.getdoc .getdoc__actions a[data-gtm-btn] i:before {
	color: #2279bc;
	font-size: 24px;
	width: 24px;
	margin-right: 15px;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}


.getdoc .getdoc__actions .getdoc__action:hover,
.getdoc .getdoc__actions a[data-gtm-btn]:hover {
	color: #2279bc;
}

.getdoc .getdoc__actions .getdoc__action:hover:before,
.getdoc .getdoc__actions .getdoc__action:hover i:before,
.getdoc .getdoc__actions a[data-gtm-btn]:hover:before,
.getdoc .getdoc__actions a[data-gtm-btn]:hover i:before {
	color: #54a4e2;
}


.getdoc .getdoc__side ul.custom.triangle {
	margin-left: 12px;
}

.getdoc .getdoc__side ul.custom.triangle li:before {
	color: #2279bc;
	margin-right: 0.95em;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.getdoc .getdoc__side ul.custom.triangle li:hover:before {
	color: #54a4e2;
}

.getdoc .getdoc__side ul.custom.triangle li:hover a {
	color: #2279bc;
}

.getdoc .getdoc__side ul.custom.triangle a {
	color: #01010f;
}

/* SIDE - Meet the experts (analysts)
------------------------ */
.getdoc .getdoc__side .analyst-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	width: 100%;
}

.getdoc .getdoc__side .analyst-container + .analyst-container {
	margin-top: 20px;
}

.getdoc .getdoc__side .analyst-photo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #f2f2f2;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}

.getdoc .getdoc__side .analyst-photo:hover {
	box-shadow: 0px 0px 8px 2px rgba(173, 173, 173, 0.7);
}

.getdoc .getdoc__side .analyst-text {
	padding-left: 25px;
	font-size: 14px;
}

.getdoc .getdoc__side .analyst-text a {
	display: block;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.getdoc .getdoc__side .analyst-text a:hover {
	color: #70B3E2;
}

.getdoc .getdoc__side .analyst-text a:first-of-type {
	font-weight: 600;
	font-size: 16px;
}

.getdoc .getdoc__side a.twitter-link {
	color: #54a4e2;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.getdoc .getdoc__side a.twitter-link:hover {
	color: #70B3E2;
}

.getdoc .getdoc__side a.twitter-link i {
	margin-right: 5px;
	font-size: 21px;
	position: relative;
	bottom: -4px;
}

.getdoc .getdoc__side a.twitter-link span {
	border-bottom: 1px solid #70B3E2;
}

/* RATING
------------------------ */
/*Inactive Button for Employees*/
.getdoc .rate-it-btn.employee-state {
	cursor: default;
	opacity: 0.2;
	cursor: default;
}

/* ACCORDION
------------------------ */
.getdoc__main .getdoc__accordion .accordion-item.is-open .accordion-icon {
	background-color: #f2f2f2;
}

.getdoc__main .getdoc__accordion .icom-plus {
	color: #98989b;
	font-size: 12px;
}

.getdoc__main .getdoc__accordion .accordion-item.is-open .icom-plus:before {
	content: "\e903";
}

.getdoc__main .getdoc__accordion .accordion-label .no {
	color: #01010f;
}

.getdoc__main .getdoc__accordion .accordion-label:after {
	display: none;
}

/* TABLE OF CONTENTS
------------------------ */
.getdoc__main .getdoc__toc .icom-chart-up,
.getdoc__main .getdoc__toc .icom-table {
	color: #2279bc;
	margin-right: 6px;
	position: relative;
	bottom: -2px;
}

.getdoc__main .getdoc__toc a,
.getdoc__main .getdoc__toc span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.getdoc__main .getdoc__toc a:before {
	position: relative;
	margin-right: 0.75em;
	color: #2279bc;
	content: "\e91d";
	font-size: 0.65em;
	position: relative;
	line-height: 2em;
}

.getdoc__main .getdoc__toc span:before {
	content: "\25CF";
	position: relative;
	margin-right: 0.75em;
	color: #2279bc;
}

.getdoc__main .getdoc__toc h1,
.getdoc__main .getdoc__toc h2,
.getdoc__main .getdoc__toc h3,
.getdoc__main .getdoc__toc h4,
.getdoc__main .getdoc__toc h5,
.getdoc__main .getdoc__toc h6,
.getdoc__main .getdoc__toc h7,
.getdoc__main .getdoc__toc .h7 {
	font-size: 16px;
	margin-bottom: 0.8em;
}

.getdoc__main .getdoc__toc h1.section {
	margin-left: 3px;
}

.getdoc__main .getdoc__toc h1 {
	margin-left: 1rem;
}

.getdoc__main .getdoc__toc h2 {
	margin-left: 2rem;
}

.getdoc__main .getdoc__toc h3 {
	margin-left: 3rem;
}

.getdoc__main .getdoc__toc h4 {
	margin-left: 4rem;
}

.getdoc__main .getdoc__toc h5 {
	margin-left: 5rem;
}

.getdoc__main .getdoc__toc h6 {
	margin-left: 6rem;
}

.getdoc__main .getdoc__toc h7,
.getdoc__main .getdoc__toc .h7 {
	margin-left: 7rem;
}

.getdoc__main .getdoc__toc .accordion-content :last-child {
	margin-bottom: 0;
}

/* GETDOC LISTING
used on analyst profile and team page
------------------------ */
.getdoc__listing {
	background-color: #f2f2f2;
	padding: 10px 15px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.getdoc__listing + .getdoc__listing {
	margin-top: 10px;
}

.getdoc__listing .title {
	padding-right: 40px;
	display: block;
	max-width: 670px;
}

.getdoc__listing .doc-info {
	color: #abaaaa;
	text-transform: uppercase;
	font-size: 14px;
}

.getdoc__listing .by {
	font-size: 14px;
	margin-top: 0;
}

.getdoc__listing .icom-arrow-head {
	position: absolute;
	top: 28px;
	right: 15px;
	color: #b9b9b9;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	font-size: 26px;
	cursor: pointer;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.getdoc__listing .icom-arrow-head:hover {
	color: #5f5f5f;
}

.getdoc__listing .icom-arrow-head.active {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.getdoc__listing .abstract {
	display: none;
	padding-bottom: 5px;
	padding-top: 10px;
	-webkit-transition: none;
	transition: none;
}

.getdoc__listing .actions {
	width: 100%;
	margin-top: 10px;
	margin-bottom: -4px;
	border-top: 1px solid #ddd;
	padding-top: 6px;
	text-align: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.getdoc__listing .actions .button {
	font-size: 14px;
	margin: 4px;
}

.getdoc__listing .actions .button .icom {
	line-height: 0;
	font-size: 18px;
	position: relative;
	bottom: -3px;
	margin-right: 7px;
}

.getdoc__listing .actions .button.bg-white {
	background-color: #fefefe;
	color: #01010f;
}

.getdoc__listing .actions .button.bg-white:hover {
	background-color: #e2e2e2;
}

.getdoc__listing .actions .button.bg-white .icom:before {
	color: #2279bc;
}

/* GETDOC LISTING MQ for team page
------------------------ */
@media screen and (max-width: 1199px) {
	/*counter JS when going below 1200px and it has been set */
	.getdoc-wrap__team .getdoc__listing .text {
		max-width: none !important;
	}
}

@media screen and (min-width: 1200px) {
	.getdoc-wrap__team .getdoc__listing {
		padding-left: 55px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.getdoc-wrap__team .getdoc__listing .text {
		max-width: 55%;
		padding-right: 40px;
	}

	.getdoc-wrap__team .getdoc__listing .title {
		max-width: none;
		padding-right: 0;
	}

	.getdoc-wrap__team .getdoc__listing .actions {
		width: auto;
		margin: 0;
		border: 0;
		padding: 0;
		max-width: 45%;
		margin: -2px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}

	.getdoc-wrap__team .getdoc__listing .abstract {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		-webkit-order: 2;
		order: 2;
		margin-top: 10px;
		border-top: 1px solid #ddd;
		width: 100%;
	}

	.getdoc-wrap__team .getdoc__listing .icom-arrow-head {
		right: auto;
		left: 15px;
	}

	.getdoc-wrap__team .getdoc__listing .actions .button {
		margin: 2px;
	}

}

/* ANALYST Profile - Tag
------------------------ */
.getdoc__analyst-tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.getdoc__analyst-tag .photo {
	width: 73px;
	height: 73px;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ddd;
}

.getdoc__analyst-tag .info {
	padding-left: 20px;
}

.getdoc__analyst-tag .info h4 {
	font-weight: 600;
	color: #004b85;
}

/* ANALYST Profile - Bio
------------------------ */
.getdoc__analyst-bio .wrap {
	overflow: hidden;
	-webkit-transition: height 0.2s ease;
	transition: height 0.2s ease;
}

.getdoc__analyst-bio .wrap font {
	/*sometimes the content contains font definition to Arial this counteracts it */
	font-family: "Open-Sans", Arial, sans-serif !important;
}
.getdoc__analyst-bio .wrap + .read-more {
	margin-top: 10px;
	display: block;
}
.getdoc__analyst-bio .wrap.short + .read-more:before {
	content: "Read More";
}


.getdoc__analyst-bio .wrap + .read-more:after {
	content: "\e91d";
	font-size: 0.65em;
	top: -2px;
	margin-left: 7px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	display: inline-block;
	position: relative;
}

.getdoc__analyst-bio .wrap:not(.short) + .read-more:before {
	content: "Read Less";
}

.getdoc__analyst-bio .wrap:not(.short) + .read-more:after {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.getdoc__analyst-bio .wrap p {
	margin-left: 0 !important;
}

/* ANALYST Profile - Tabs
------------------------ */
.getdoc__analyst-content-tabs {
	margin-top: 40px;
}

.getdoc__analyst-content-tabs .tabs {
	border: none;
	margin-bottom: 20px;
}

.getdoc__analyst-content-tabs .tabs .tabs-title > a {
	border-bottom: 3px solid transparent;
	padding: 5px 30px 10px 30px;
	font-size: 20px;
}

.getdoc__analyst-content-tabs .tabs .tabs-title > a[aria-selected="true"] {
	background: none;
	border-bottom-color: #F8981D;
	pointer-events: none;
}

.getdoc__analyst-content-tabs .tabs-content {
	border: none;
}

.getdoc__analyst-content-tabs .tabs-panel {
	padding: 0;
}

.getdoc__analyst-content-tabs .search-idc {
	margin-top: 15px;
	display: inline-block;
}

.getdoc__analyst-content-tabs .search-idc .icom-arrow {
	font-size: 14px;
}

@media screen and (max-width: 39.9375em){
	.getdoc__analyst-content-tabs .tabs {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}

	.getdoc__analyst-content-tabs .tabs .tabs-title > a {
		padding: 5px;
		font-size: 16px;
		line-height: 1.6;
	}

	.getdoc__analyst-content-tabs .tabs li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		-webkit-align-items: flex-end;
		align-items: flex-end;
		text-align: center;
	}
}
@media screen and (max-width: 23.75em){

	.getdoc__analyst-content-tabs .tabs .tabs-title > a {
		font-size: 14px;
	}
}


/* ANALYST Team - Slider
------------------------ */
section.getdoc__analyst-team {
	padding: 50px 0 25px;
}

section.getdoc__analyst-team .analyst {
	min-height: 226px;
	width: 100%;
}

section.getdoc__analyst-team #teamSlider.toSlick:not(.slick-initialized) {
	display: none;
}

section.getdoc__analyst-team .slick-slider .slick-list {
	margin-left: -10px;
	margin-right: -10px;
}

section.getdoc__analyst-team .slick-slider .slick-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 0 10px;
}

@media screen and (min-width: 1350px) {
	section.getdoc__analyst-team #teamSlider.slick-slider {
		padding: 0 0;
	}

	section.getdoc__analyst-team #teamSlider.slick-slider .slick-arrow.slick-prev {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	section.getdoc__analyst-team #teamSlider.slick-slider .slick-arrow.slick-next {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@media screen and (max-width: 640px) {
	section.getdoc__analyst-team #teamSlider.slick-slider {
		padding: 0;
	}

	section.getdoc__analyst-team #teamSlider.slick-slider .slick-arrow {
		display: none !important;
	}
}

/* ANALYST Team - Research
------------------------ */
.getdoc__analyst-team-research .page-navigation {
	margin-top: 10px;
}

/* -----------------------
   ANALYSTS CSS - Analyst Card
   used on analyst home page and analyst team page
------------------------ */
section.analysts-results .analyst {
	background: #f2f2f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 14px;
	padding: 25px 0 15px 0;
}

section.analysts-results .analyst p {
	text-align: center;
	padding: 0 25px;
	width: 100%; /* necessary for IE so that the text wraps */
}

section.analysts-results .analyst .twitter {
	background-color: #54a4e2;
	color: #fff;
	padding: 7px;
	font-size: 28px;
	line-height: 1;
	position: absolute;
	top: 0;
	right: 0;
}

section.analysts-results .analyst .twitter:hover {
	background-color: #70B3E2;
}

section.analysts-results .analyst .twitter .icom {
	display: block;
}

section.analysts-results .analyst .photo {
	width: 73px;
	height: 73px;
	border-radius: 50%;
	position: relative;
	margin-bottom: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #efefef;
}

section.analysts-results .analyst .photo:hover {
	box-shadow: 0px 0px 8px 2px rgba(173, 173, 173, 0.7);
}

section.analysts-results .analyst .photo > div[class^="flag-"] {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	top: 45px;
	left: 58px;
	background-color: #ddd;
	background-position: center;
	background-repeat: no-repeat;
	cursor: default;
}

section.analysts-results .analyst .link-analyst {
	color: #2779bc;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 10px;
	padding: 0 25px;
	text-align: center;
}

section.analysts-results .analyst .link-analyst:hover {
	color: #4196D2;
}

section.analysts-results .analyst .divider {
	width: 100%;
	height: 1px;
	background-color: #dddddd;
	margin-top: 15px;
}

section.analysts-results .analyst .coverage {
	width: 100%;
	text-align: center;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin: 15px 0 0 0;
	padding: 10px 0;
}

section.analysts-results .analyst .coverage > p.available {
	color: #2279bc;
	cursor: pointer;
}

section.analysts-results .analyst .coverage > p.available:hover,
section.analysts-results .analyst .coverage > p.available:hover i {
	color: #4196D2;
}

section.analysts-results .analyst .coverage > p.available .icom {
	font-size: 10px;
	margin-left: 2px;
	position: relative;
	top: -1px;
	display: inline-block;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

section.analysts-results .analyst .coverage > p.available.active .icom {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

section.analysts-results .analyst .coverage > p.available + p {
	font-size: 14px;
	text-align: left;
	display: none;
}

section.analysts-results .analyst .button {
	font-size: 12px;
	padding: 7px 10px;
	margin-top: 15px;
}

section.analysts-results .analyst .button .icom {
	font-size: 9px;
	position: relative;
	top: -1px;
	margin-left: 3px;
}

/* -----------------------
   EVENT CSS
------------------------ */

/* BODY
------------------------ */
.event h1 {
	color: #2279bc;
	font-size: 1.4rem
}

.event_body {
	margin: 50px 0;
	width: 100%;
	overflow: auto;
	min-height: -webkit-calc(100vh - 244px);
	min-height: calc(100vh - 244px);
}


/* Smart fix for getdoc of event subpages (removes extra margin at the top)
------------------------ */
.event-tab_content > br:first-child {
	display: none;
}

.event-tab_content > br:first-child + div[name^="param"] > .bluebar {
	margin-top: 0;
}

/* Main Content
------------------------ */
/*.event_details .button:not(.simple) {*/
/*padding: 6px 8px;*/
/*}*/
.event_heading {
	margin-bottom: 40px;
}

.event_heading p + p {
	margin-top: 0px;
}

.event_heading .info {
	float: left;
	padding: 0 20px;
	width: -webkit-calc(100% - 300px);
	width: calc(100% - 300px);
}

.event_heading .info h1 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #004b85;
}

.event_heading img {
	width: 300px;
	float: left;

}

.event_heading .info .button.hide-for-large {
	margin-top: 10px;
}

.event_heading .info .button.simple {
	margin-top: 10px;
}

@media screen and (max-width: 60em) {
	/* less than 650px */
	.event_heading .info {
		padding: 0;
		width: 100%;
	}
}

.event_body .errors {
	display: none;
}

.event a.event-tab.active {
	pointer-events: none;
	color: #f2f2f2;
	background: #2279bc;
}

.event a.event-tab {
	padding: 4px 8px;
	display: inline-block;
	color: #2279bc;
}

.event a.event-tab:hover {
	color: #f2f2f2;
	background: #54a4e2;
}

.event-tab_content {
	margin-top: -1px;
	padding: 40px 0 0;
	border-top: 2px solid #2279BC;
}

.event-tab_content h1 {
	margin-bottom: 10px;
}

.event-tab_content p + h1,
.event-tab_content ul + h1 {
	margin-top: 40px;
}

div.event-tabs-extra {
	position: relative;
	display: inline-block;
	top: -1px;
}

.event-tab-more-toggle {
	padding: 4px 8px;
	border: 2px solid #fefefe;
	border-bottom: 0;
	display: none;
}

.event-tab-more-toggle.open {
	background: #f2f2f2;
	border-color: #2279bc;
}

.event-tab-more-toggle.open ~ ul.event-tab-more {
	pointer-events: auto;
	top: 36px;
	opacity: 1;
}

ul.event-tab-more {
	list-style: none;
	margin: 0;
	display: inline-block;
}

.event-tab-more li {
	display: inline-block;
}

@media screen and (max-width: 68.75em) {
	/* under 1100px */
	.event-tab-more-toggle {
		display: inline-block;
	}

	ul.event-tab-more {
		position: absolute;
		right: 0px;
		background: #f2f2f2;
		border: 2px solid #2279bc;
		border-top: none;
		pointer-events: none;
		opacity: 0;
		top: 16px;
	}

	ul.event-tab-more li,
	ul.event-tab-more li a {
		width: 100%;
	}
}

/* Agenda table / tab
------------------------ */
.event-tab_content .bluebar {
	color: #2279bc;
	font-size: 1.4rem;
	margin-top: 10px;
	font-weight: 400;
	border: none;
	margin-bottom: -30px;
	padding-bottom: 0;
}

/* Proceeding tab
------------------------ */
.event-proceeding img {
	width: 16px;
	height: 16px;
	margin-top: -3px;
}

.proceeding_actions .button {
	margin-top: 10px;
	margin-right: 20px;
	margin-left: 0;
	text-align: left;
}

.event-proceeding + .event-proceeding {
	margin-top: 20px;
	border-top: 1px dashed #828282;
	padding-top: 15px;
}

.event-proceeding {
	padding-left: 20px;
	padding-right: 20px;
}

.proceeding_title {
	font-weight: 700;
	color: #2b2b2b;
}

.event-proceeding:first-of-type {
	margin-top: 30px;
}

.event-proceeding p + p {
	margin-top: 2px;
}

/* Venue tab
------------------------ */
.venue-box h2 {
	font-size: 1.25rem;
	font-weight: 600;
}

.venue-box h3 {
	font-size: 1rem;
	font-weight: 600;
}

.venue-box + .venue-box {
	margin-top: 50px;
}

/* Media tab
------------------------ */
.event-tab-media form {
	background: #f2f2f2;
	padding: 30px;
}

/* Registration tab
------------------------ */
.event-tab-registration form {
	background: #f2f2f2;
	padding: 30px;
}

/* Speaking tab
------------------------ */
.event-tab-speaking form {
	background: #f2f2f2;
	padding: 30px;
}

.event-tab-speaking h2 {
	font-size: 1.25rem;
	color: #2279bc;
	margin-bottom: 1rem;
}

/* Attendees tab
------------------------ */
.event-tab-attendees form {
	background: #f2f2f2;
	padding: 30px;
}

.event-tab-attendees table {
	font-size: 0.8rem;
}

/* Login & Form
------------------------ */
.event.disabled-animations * {
	-webkit-transition: none !important;
	transition: none !important;
}

#registration-notice {
	background: #D9E89C;
	padding: 50px 20px;
	margin-top: 20px;
	text-align: center;
}

#registration-notice p {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

#registration-wrap {
	-webkit-transform: scale(1);
	transform: scale(1);
}

#registration-wrap.hidden {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	pointer-events: none;
}

.event_form {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.event_form.fullwidth {
	width: 100%;
}

.event_form .fields {
	margin-top: 20px;
	position: relative;
	padding: 10px;
	background: #f2f2f2;
}

.event_details {
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
	max-height: 100%
}

.event_details.hiddenx {
	overflow: hidden;
	pointer-events: none;
	max-height: -webkit-calc(100vh - 300px);
	max-height: calc(100vh - 300px);
	opacity: 0;
}

.event_form .secondStep {
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.event_form .eventProfileStep {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
	right: -100%;
	position: absolute;
	top: 0;
}

.event_form .eventProfileStep.fullwidth {
	right: 0;
}

.event_form .eventProfileStep.fullwidth.static {
	position: static;
}

#loginInfo_text h2 {
	font-size: 1rem;
	font-weight: 600;
}

#loginInfo_text {
	width: -webkit-calc(100% - 90px);
	width: calc(100% - 90px);
	display: table-cell;
}

#loginInfo_text p {
	font-size: 14px;
}

#loginInfo_button {
	display: table-cell;
	width: 90px;
	vertical-align: bottom;
}

#loginInfo_button .button {
	width: 90px;
	margin-bottom: 5px;
}

#loginInfo > .column {
	display: table;
}

#loginInfo {
	margin: 10px 0 0 0;
	display: table;
	width: 100%;
}

.controlButtons {
	margin-top: 15px;
}

#modal-idc-terms {
	font-size: 14px;
}

#modal-idc-terms h2 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	margin-top: 20px;
}

/*** Password strength meter ***/

.password-strength-meter {
	top: 44px;
	position: absolute;
	width: -webkit-calc(100% - 2px);
	width: calc(100% - 2px);
	left: 1px;
	height: 5px;
	display: inherit;
	background: rgba(0, 0, 0, 0.1) none;
}

/* Webkit */
.password-strength-meter::-webkit-meter-bar {
	background: rgba(0, 0, 0, 0.1) none;
}

.password-strength-meter::-webkit-meter-optimum-value {
	background: #7CAF42;
}

.password-strength-meter::-webkit-meter-suboptimum-value {
	background: #E8AE38;
}

.password-strength-meter::-webkit-meter-even-less-good-value {
	background: #F37921;
}

/* Firefox */
.password-strength-meter::-moz-meter-bar {
	background: rgba(0, 0, 0, 0.1) none;
}

.password-strength-meter:-moz-meter-optimum::-moz-meter-bar {
	background: #7CAF42;
}

.password-strength-meter:-moz-meter-sub-optimum::-moz-meter-bar {
	background: #E8AE38;
}

.password-strength-meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
	background: #F37921;
}

/* IE */
.password-strength-meter .meter-gauge {
	width: 100%;
	height: inherit;
	display: block;
	background: rgba(0, 0, 0, 0.1) none;
}

.password-strength-meter .meter-gauge > span {
	height: inherit;
	background: #F37921;
	display: block;
}

.password-strength-meter .meter-gauge > span.optimum {
	background: #7CAF42;
}

.password-strength-meter .meter-gauge > span.sub-optimum {
	background: #E8AE38;
}

.password-strength-meter .meter-gauge > span.sub-sub-optimum {
	background: #F37921;
}

.strength-meter-info {
	font-size: 12px;
	line-height: 1;
	position: relative;
}

.strength-meter-info .message {
	color: #F37921;
	height: 0;
	text-align: right;
	-webkit-transition: height 0.4s ease;
	transition: height 0.4s ease;
	opacity: 0;
	overflow: hidden;
}

.strength-meter-info .message.toggled {
	opacity: 1;
	height: 27px;
	overflow: hidden;
}

#resetPasswordForm .strength-meter-info .message.toggled { /* fix for reset password for due to its low height */
	height: 60px;
}

.strength-meter-info .message .notice-text {
	float: left;
	margin-top: 9px;
}

.strength-meter-info .message svg {
	fill: #2279bc;
	width: 20px;
	position: relative;
	bottom: -5px;
	height: 20px;
	cursor: pointer;
}

.strength-meter-info .on-hover-popup {
	background: #dedede;
	position: absolute;
	z-index: 10;
	color: #777777;
	font-weight: bold;
	right: 3px;
	top: 32px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(51, 51, 51, 0.45);
	border-radius: 4px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: -webkit-calc(100% - 5px) -7px;
	transform-origin: calc(100% - 5px) -7px;
	opacity: 0;
	pointer-events: none;
}

.strength-meter-info .on-hover-popup.toggled {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.strength-meter-info .on-hover-popup:before {
	content: "";
	position: absolute;
	right: 2px;
	top: -7px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 7px solid #dedede;
}

.strength-meter-info .on-hover-popup div.password-strength-info {
	margin-top: 11px;
	color: #676767;
	font-weight: normal;
}

.strength-meter-info .on-hover-popup div.password-strength-info:before {
	content: "";
	margin-bottom: -2px;
	margin-right: 5px;
	display: inline-block;
	height: 12px;
	width: 12px;
	background-repeat: no-repeat;
	background-size: contain;
}

.strength-meter-info .on-hover-popup div.password-strength-info.valid:before {
	background-image: url('/global/images/strength-meter-icon-check.svg');
}

.strength-meter-info .on-hover-popup div.password-strength-info.invalid:before {
	background-image: url('/global/images/strength-meter-icon-cross.svg');
}

/* Success / Cancel
------------------------ */
.event.response h1 {
	font-size: 2.5rem;
}

.event.response .promo {
	margin-top: 15px;
}

.event.response .promo .row + .row {
	margin-top: 60px;
}

.event.response .promo_box {
	background: #f2f2f2;
	padding: 30px;
}

/* mobile */
@media (max-width: 39.9375em) {
	.event_form {
		margin-top: 40px;
	}

	.event.response .promo .medium-5 + .medium-5 {
		margin-top: 20px;
	}
}

/* -----------------------
   SHOPPING PAGES GLOBALS (cart, payment, confirm, sucess)
------------------------ */
.shopping {
	font-size: 16px;
}

.shopping_content {
	font-size: 16px;
	padding: 50px 0;
	min-height: -webkit-calc(100vh - 240px);
	min-height: calc(100vh - 240px);
}

.shopping h1 {
	color: #2279bc;
	font-size: 2rem
}

.shopping b {
	font-weight: 600;
}

.shopping a:not(.button) {
	color: #2279bc;
}

.shopping a:not(.button):hover {
	color: #54A4E2;
}

.shopping .error {
	font-size: 13px;
	margin: 5px 0 20px;
	color: #E93B24;
}

.shopping table tbody tr:nth-child(even) {
	background: none;
}

/* nav buttons
------------------------ */
.shopping .navigation {
	margin-top: 20px;
}

/* CART Table used on cart and purchase jsp
------------------------ */

.cart table {
	margin-top: 50px;
}

.cart tbody, .cart thead, .cart tfoot,
.purchase tbody, .purchase thead, .purchase tfoot {
	border: none;
}

.cart thead, .cart tfoot,
.purchase thead, .purchase tfoot {
	background: #f2f2f2;
}

.cart th,
.purchase th {
	font-weight: 400;
}

.cart tr.hidden td {
	padding: 0;
}

.cart tr.hidden .wrap {
	display: none;
	padding: 1rem 2rem 3rem;
}

.cart .hidden form input[type="text"] {
	display: inline-block;
	width: 30%;
	max-width: 250px;
	height: 36px;
}

.cart table th:last-of-type, .cart table td:last-of-type,
.purchase table th:last-of-type, .purchase table td:last-of-type {
	text-align: right;
	padding-right: 2rem;
	padding-left: 0;
	width: 130px;
}

.cart thead tr, .cart tfoot tr,
.purchase thead tr, .purchase tfoot tr {
	height: 62px;
}

.cart td:first-child, .cart th:first-child,
.purchase td:first-child, .purchase th:first-child {
	padding-left: 2rem;
}

.cart tr.item td,
.purchase tr.item td {
	padding-top: 30px;
	padding-bottom: 30px;
}

.cart tr.item + tr.hidden {
	border-top: 0;
}

.cart tr + tr,
.purchase tr.item + tr.item {
	border-top: 2px solid #f2f2f2;
}

.cart .item .language,
.purchase .item .language {
	font-size: 12px;
	color: #666;
	margin-left: 5px;
}

.cart th:not(:first-child), .cart td:not(:first-child),
.purchase th:not(:first-child), .purchase td:not(:first-child) {
	text-align: center;
}

.cart tbody button,
.cart tbody .item [type="submit"] {
	background: none;
	border: none;
	font-size: 16px;
	text-decoration: underline;
}

.cart span.foot-notice {
	font-weight: 400;
	margin-left: 20px;
}

.cart span.price,
.purchase span.price {
	color: #004b85;
	font-weight: 700;
}

.cart .grp_btn {
	color: #2279bc;
}

.cart .deleteItem {
	color: #E93B24;
}

.cart .grp_btn:hover {
	color: #54A4E2;
}

.cart .deleteItem:hover {
	color: #CA2E27;
}

/* PAYMENT Table
------------------------ */
.payment_content {
	padding: 100px 0;
}

.payment .toggle-box label {
	font-size: 16px;
	font-weight: 700;
}

.payment h2 {
	font-size: 1.5rem;
	color: #2279bc;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

.payment span.optional:after {
	content: '(optional)';
	font-size: 14px;
}

.payment table tbody {
	border: 20px solid #f2f2f2;
	background: #f2f2f2;
}

.payment table {

}

.payment table td:first-of-type {
	width: 180px;
}

.payment .card-date select {
	width: 49%;
	float: left;
}

.payment .card-date select:first-child {
	margin-right: 2%;
}

/* PURCHASE CONFIRM
------------------------ */

.purchase h2 {
	font-size: 1.5rem;
}

.purchase h2 a {
	font-size: 1rem;
	margin-left: 10px;
	text-decoration: underline;
}

.purchase_cart table {
	margin-top: 25px;
}

.purchase_cart table #taxesDetailsIcon {
	margin-top: -5px;
	cursor: pointer;
}

.purchase .payment_info_wrap {
	background: #f2f2f2;
	margin-top: 25px;
	padding: 25px;
	max-width: 275px;
}

#modal-taxes table {
	border: none;
	font-size: 1rem;
	margin-top: 2rem;
}

#modal-taxes tr:first-of-type {
	background: #f2f2f2;
}

#modal-taxes th u {
	text-decoration: none;
}

#modal-taxes table tr:not(:first-of-type) {
	border-bottom: 2px solid #f2f2f2;
}

#modal-taxes {
	font-size: 1.5rem;
}

/* -----------------------
   PURCHASE APPROVED
------------------------ */
.shopping .print-yes {
	display: none;
}

.shopping #receipt-info {
	font-size: 1.5rem;
	margin-top: 10px;
}

@media print {

	header, footer, .navigation,
	span.close {
		display: none;
	}

	a[href]:after {
		content: none !important;
	}

	.shopping .print-no {
		display: none;
	}

	.shopping .print-yes {
		display: block;
	}

	#modal-taxes {
		position: static;
		opacity: 1;
		-webkit-transform: none;
		transform: none;
		width: 100% !important;
		height: auto !important;
	}

	#modal-taxes table {
		margin-top: 10px;
	}

	#modal-taxes .content-wrap {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}

	.purchase .payment_info_wrap {
		margin-top: 10px;
		padding: 0 20px 40px 20px;
	}

	.purchase thead th {
		padding-top: 0;
	}

	.purchase thead tr, .purchase tfoot tr {
		height: auto;
	}

	.purchase tr.item td {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.purchase_cart table {
		margin-top: 10px;
	}

}

/* -----------------------
   CONTACT CSS
------------------------ */
.contact #main {
	font-size: 16px;
}

.contact-main {
	margin-top: 8px;
	background: #f2f2f2;
	padding: 30px;
}
@media screen and (max-width: 39.9375em){
	.contact-side-bar{
		margin-top: 50px;
	}
}
.contact-side-bar .section + .section {
	margin-top: 40px;
}

.contact-side-bar .section a {
	margin-top: 15px;
}

.contact #contactDetailsIcon {
	cursor: pointer;
}

.contact-info-text {
	margin-bottom: 20px;
}

.contact a {
	color: #2279bc;
}

.contact a:hover {
	color: #54A4E2;
}

.contact .idc-layout-content h1 {
	color: #2279bc;
	font-size: 2rem
}

.contact h4 {
	color: #2279bc;
}

/* Vendor briefing jQ datepicker fix
------------------------ */
.ui-timepicker-div dl dd {
	margin: 10px 10px 0 40%;
	margin-bottom: 0;
}

.ui-timepicker-div dl dt {
	margin: 0;
	font-weight: 400;
}

/* Vendor briefing Date fields next to each other
------------------------ */
.meet-dates .field-box {
	width: -webkit-calc((100% / 3) - 10px);
	width: calc((100% / 3) - 10px);
	float: left;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
}

.meet-dates .wrap {
	margin-left: -5px;
	margin-right: -5px;
}

/* Vendor briefing other css
------------------------ */

.contact .brief h2 {
	font-size: 1.25rem;
	color: #2279bc;
	margin-bottom: 1rem;
}

.contact .brief textarea#competition {
	height: 170px;
}

.contact .brief .fields {
	margin-top: 20px;
}

.contact .brief .fields > .row + .row {
	margin-top: 10px;
}

.contact .brief .brief-long textarea#shipping,
.contact .brief .brief-long textarea#primaryBusiness {
	height: 182px;
}


/* -----------------------
   PAGE - Subscription Services
------------------------ */
section.subservices ul {
	-webkit-transition: none;
	transition: none;
}
section.subservices .accordion-nav ul {
	list-style: none;
	margin: 0;
}
section.subservices .accordion-nav li a:not(:only-child){
	position: relative;
}
section.subservices .accordion-nav li a:not(:only-child):hover:after {
	color: #2279bc;
}
section.subservices .accordion-nav li a:not(:only-child):after {
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #9c9c9c;
	font-size: 12px;
	content: '\e902';
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
section.subservices .accordion-nav li a.selected:after {
	content: '\e903';
}



section.subservices .root-level > li > a {
	background: #f2f2f2;
	color: #2279bc;
	font-size: 16px;
	display: block;
	padding: 7px 20px;
}
section.subservices .root-level > li > a.selected {
	background: #dfdfdf;
}
section.subservices .root-level > li + li {
	margin-top: 3px;
}
section.subservices .first-level {
	padding: 10px;
}
section.subservices .first-level > li > a {
	background: #f6f6f6;
	color: #2279bc;
	font-size: 16px;
	display: block;
	padding: 7px 20px;
}
section.subservices .first-level > li + li{
	margin-top: 2px;
}


section.subservices .accordion-nav .docs-list {
	margin-left: 30px;
	margin-top: 25px;
	margin-bottom: 30px;
}




section.subservices .filter {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
section.subservices .input {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 310px;
	-webkit-flex: 310px 0 1;
	-ms-flex: 310px 0 1;
	flex: 310px 0 1;
}
section.subservices .filter > .field-box {
	-webkit-box-flex: 270px;
	-webkit-flex: 270px 0 1;
	-ms-flex: 270px 0 1;
	flex: 270px 0 1;
}
section.subservices .filter .field-box{
	width: 100%;
	margin-bottom: 0;
}
section.subservices .input button {
	background: #f2f2f2;
	border: 1px solid #dbdbdb;
	border-left: 0;
}
@media screen and (max-width: 639px){
	section.subservices .filter{
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	section.subservices .input{
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		margin-bottom: 10px;
	}
	section.subservices .filter > .field-box {
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}


section.subservices .accordion.accordion-subserv .accordion-heading p {
	padding: 7px 20px;
	font-size: 16px;
	color: #2279bc;
}
section.subservices .accordion.accordion-subserv .accordion-item .accordion-heading {
	min-height: 0;
}
section.subservices .accordion.accordion-subserv .accordion-item .accordion-label {
	height: auto;
}
section.subservices .accordion.accordion-subserv .accordion-item.is-open .accordion-heading {
	background: #dfdfdf;
}

section.subservices .back-to-top{
	position: fixed;
	bottom: 15px;
	z-index: 1;
	right: 15px;
	width: 35px;
	height: 35px;
	background: #ddd;
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #cacaca;
	box-shadow: 1px 2px 18px rgba(90, 90, 90, 0.55);
	cursor: pointer;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

@media screen and (min-width: 1024px){
	.back-to-top{
		visibility: hidden !important;
	}
}


/* -----------------------
   full width heading graphic
------------------------ */
section.idc-fullwidth-heading-graphic {
	height: 220px;
	position: relative;
	left: 0;
	right: 0;
	background-size: cover;
}

section.idc-fullwidth-heading-graphic h1 {
	font-size: 34px;
	line-height: 1.6;
	color: #01010f;
	font-weight: 400;
}

/* contact & terms of use specific
------------------------ */

section.idc-fullwidth-heading-graphic__terms {
	background-image: url('/images/idc-fullwidth-heading-terms.jpg');
}

section.idc-fullwidth-heading-graphic__contact,
section.idc-fullwidth-heading-graphic__terms {
	margin-bottom: 52px;
}

section.idc-fullwidth-heading-graphic__contact .row,
section.idc-fullwidth-heading-graphic__terms .row{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

/* -----------------------
   full width heading graphic as slider
------------------------ */
.idc-layout-hero.as-slider .slick-slide,
.idc-layout-hero.as-slider .column {
	height: 220px;
}

.idc-layout-hero.as-slider .slick-slider {
	padding-left: 0;
	padding-right: 0;
}

.idc-layout-hero.as-slider {
	background-color: #ddd;
	margin-bottom: 50px;
}

.idc-layout-hero.as-slider .info {
	background: rgba(255, 255, 255, 0.8);
	color: #01010f;
	padding: 30px 35px;
	text-align: left;
}

.idc-layout-hero.as-slider .info h1 {
	margin: 0;
	line-height: 1;
	margin-bottom: 5px;
}

.idc-layout-hero.as-slider .info p {
	margin: 0;
}

.idc-layout-hero.as-slider .info a {
	margin-top: 15px;
	display: inline-block;
	white-space: nowrap;
	font-size: 16px;
	padding: 3px 10px 3px 12px;
	background: #36AEC7;
}

.idc-layout-hero.as-slider .info a:hover {
	background-color: #6ec7d8;
}

.idc-layout-hero.as-slider .info a p {
	display: inline-block;
	color: #fff;
	line-height: 1;
}

.idc-layout-hero.as-slider .info a svg {
	display: inline-block;
	fill: #fff;
	width: 14px;
	height: 14px;
	margin-left: 5px;
	position: relative;
	bottom: -1px;
}

@media screen and (max-width: 53.0625em) {
	.idc-layout-hero.as-slider .info {
		padding: 15px 16px;
	}

	section.idc-fullwidth-heading-graphic h1 {
		font-size: 23px;
	}

	.idc-layout-hero.as-slider .info p {
		font-size: 14px;
	}

	.idc-layout-hero.as-slider .info a {
		margin-top: 8px;
	}
}
@media screen and (min-width: 53.125em) and (max-width: 63.9375em) {
	.idc-layout-hero.as-slider .info {
		padding: 20px 25px;
	}

	section.idc-fullwidth-heading-graphic h1 {
		font-size: 26px;
	}

	.idc-layout-hero.as-slider .info a {
		margin-top: 10px;
	}
}
@media screen and (min-width: 53.125em){
	.idc-layout-hero.as-slider .info{
		max-width: 760px;
	}
}

.idc-layout-hero.as-slider .slick-slide {
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.idc-layout-hero.as-slider .slick-dots {
	bottom: 10px;
	margin: 0;
}
@media screen and (max-width: 39.9375em){
	.idc-layout-hero.as-slider .slick-dots {
		bottom: -20px;
	}
	.idc-layout-hero.as-slider .slick-dots li button:before{
		border: 1px solid #8e8e8e;
	}
}

.idc-layout-hero.as-slider .slick-dots li {
	width: 10px;
	height: 10px;
}

.idc-layout-hero.as-slider .slick-dots li + li {
	margin-left: 5px;
}

.idc-layout-hero.as-slider .slick-dots li button {
	position: relative;
	width: 10px;
	height: 10px;
	margin: 0;
}

.idc-layout-hero.as-slider .slick-dots li button:before {
	content: "";
	background: #ccc;
	opacity: 1;
	border: 1px solid #fff;
	width: 100%;
	height: 100%;
}

.idc-layout-hero.as-slider .slick-dots li.slick-active button:before {
	opacity: 1;
	background: #004b85;
}