.layoutjs {
	display: flex;
	margin-bottom: 50px; /* height to leave enough room for loading spinner */
	background-image: url(/includes/public/assets/shared/index-bg.png);
    background-position-x: left;
    background-repeat: no-repeat;
}
.layoutjs.isMobile {
	background-image:none;
}
.layoutjs .layout-container {
	width: 100%; 
	flex: 1;
}

.layoutjs .layout-container .layout {
	width: 100%;
	position: relative;
}

/* filters & sort */
.layoutjs .settings {
	display: flex;
    align-items: center;
    justify-content: space-between;
    font: normal bold 18px/1em 'proxima-nova', sans-serif;
    padding: 20px;
    background-color: #e8e8e8;
    color: #333232;
    font-family: 'Copperplate W01 Bold';
}

.layoutjs .settings a,
.layoutjs .filterPane a,
.layoutjs .datepicker-cont .quicklinks button {
	font-family: 'Copperplate W01 Bold';
	font-size: 22px;
	color: #939393;
}
.layoutjs.isMobile .settings a, .layoutjs.isMobile .filterPane a, .layoutjs.isMobile .datepicker-cont .quicklinks button {
	font-size: 18px;
	text-transform: lowercase;
}
.layoutjs .rss-link a,
.layoutjs .settings .highlight a,
.layoutjs .filterPane .highlight a,
.layoutjs .datepicker-cont .quicklinks button.highlight,
.layoutjs .filterPane .filter[data-type="checkbox"] .expander {
	color: #333232;
}

.layoutjs .settings ul,
.layoutjs .filterPane ul {
	list-style: none;
	margin: 0;
	line-height: inherit;
}

.layoutjs .filterPane { display: none; }

.layoutjs .filterPane.mobileFilterActive {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 100;
	display: block;
	width: 100%;
	overflow-y: auto;
	background-color: #e8e8e8;
	padding: 20px;
}

.layoutjs .mobileHeader {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.layoutjs .mobileHeader .mobileTitle {
	flex: 1;
    text-align: center;
    color: #333232;
    font-family: 'Copperplate W01 Bold';
}

.layoutjs .mobileHeader button,
.layoutjs .filterPane .filter[data-type="keyword"] button {
    color: #333232;
    margin: 0;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    font-family: 'Copperplate W01 Bold';
    border: #333232 3px solid;
}

.layoutjs .mobileHeader button.resetButton {
	background-color: transparent;
}

.layoutjs .rss-link,
.layoutjs .filterPane .sort,
.layoutjs .filterPane .filter,
.layoutjs .filterPane .quicklinks {
	margin-bottom: 43px;
}

.layoutjs .rss-link {
	text-align: left;
}

.layoutjs .filterPane .sort,
.layoutjs .filterPane .filter,
.layoutjs .datepicker-cont .quicklinks button,
.layoutjs .filterPane .filter[data-type="checkbox"] .expander { 
	font: normal bold 16px/1em 'proxima-nova', sans-serif;
	padding: 0;
	background-color: inherit;
	border: none;
}

.layoutjs .filterPane .sort .settings-label,
.layoutjs .filterPane .filter .filterLabel,
.layoutjs .filterPane .form-label { /* with some foundation overwrites */
	display: inline-block;
	margin: 0;
	margin-bottom: 21px;
	padding: 0;
	background-color: transparent;
	color: #333232;
	font-size: 24px;
	font-family: 'Brandon Grotesque W01 Regular';
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 1.2;
}

.layoutjs .filterPane .sort li {
	display: inline-block;
	margin-right: 10px;
}

.layoutjs .filterPane .filter .keyword-input {
	display: flex;
	max-width: 300px;
}

.layoutjs .filterPane .filter[data-type="keyword"] input {
	flex: 1;
	font: normal 400 14px/1em 'proxima-nova', sans-serif;
	color: #000;
	padding: 5px 10px;
	margin: 0;
	height: 43px; /* foundation default overwrite */
	background: #fff;
	border: 1px solid #ccc;
}

.layoutjs .filterPane .filter[data-type="keyword"] input::placeholder {
	font-family: 'Copperplate W01 Bold';
	color: #939393;
	letter-spacing: 1px;
}

.layoutjs .filterPane .filter[data-type="keyword"] button {
	width: 53px;
	height: 43px;
	padding: 0;
	background-color: #fff;
	color: #990000;
	font-size: 25px;
	border: 1px solid #ccc;
	border-left: none;
}

.layoutjs .filterPane .filter[data-type="toggle"] .toggle .toggle-decorator {
	position: relative;
	display: block;
	padding: 2px;
	width: 4em;
	height: calc(2em + 4px);
	border-radius: 2em;
	background-color: #999;
	transition: all .4s ease;
	outline: 0;
	cursor: pointer;
	user-select: none;
}

.layoutjs .filterPane .filter[data-type="toggle"] .toggle input:checked + .toggle-decorator {
	background-color: #0b467e;
}

.layoutjs .filterPane .filter[data-type="toggle"] .toggle .toggle-decorator::after {
	content: "";
	position: relative;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 100%;
	font-size: 0.7em;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	transition: all .2s ease;
}

.layoutjs .filterPane .filter[data-type="toggle"] .toggle .toggle-decorator.has-label::after {
	content: attr(data-label);
}

.layoutjs .filterPane .filter[data-type="toggle"] .toggle input:checked + .toggle-decorator::after {
	left: 50%;
}

.layoutjs .filterPane .filter > fieldset { /* foundation overwrite */
	margin: 0;
	padding: 0;
	border: none;
}

.layoutjs .filterPane .filter > fieldset .legend { /* foundation overwrite */
	background: transparent;
	padding: 0;
	margin: 0;
}

.layoutjs .filterPane .filter[data-type="checkbox"] li {
	position: relative;
	display: flex;
	align-items: baseline;
	margin-left: 25px;
	margin-bottom: 22px;
	cursor: pointer;
}

.layoutjs .filterPane .filter[data-type="checkbox"] input { /* foundation overwrite */
	margin-bottom: 0px;
}

.layoutjs .filterPane .filter[data-type="checkbox"] label { /* foundation overwrite */
	margin: 0;
	color: #333232;
	font-size: 18px;
	font-family: 'Brandon Grotesque W01 Regular';
	line-height: 1;
	font-weight: 600;
}

.layoutjs .filterPane .filter[data-type="checkbox"] .custom-checkbox {
	position: absolute;
    top: 0;
    left: -25px;
    display: flex;
    justify-content: center;
    width: 15px;
    height: 15px;
    align-items: center;
    border: 1px solid #333232;
    color: #333232;
    border-radius: 0px;
    font-size: 10px;
}

.layoutjs .filterPane input[type="checkbox"] + label .custom-checkbox i {
	opacity: 0;
	font-size: 10px;
}

.layoutjs .filterPane input[type="checkbox"]:checked + label .custom-checkbox {
	background-color: #333232;
	border: 2px solid #333232;
	color: #fff;
}

.layoutjs .filterPane input[type="checkbox"]:checked + label .custom-checkbox i {
	opacity: 1;
}

.layoutjs .filterPane .filter[data-type="checkbox"] .expander {
	cursor: pointer;
	margin-bottom: 10px;
	font-family: 'Brandon Grotesque W01 Bold';
    font-size: 16px;
    color: #990000;
	text-transform: uppercase;
	font-weight: normal;
}

.layoutjs .datepicker-cont { max-width: 300px; }

.layoutjs .datepicker-cont .quicklinks {
	display: flex;
	justify-content: space-between;
}

.layoutjs .datepicker-cont .quicklinks button {
	margin: 0;
}

/* Datepicker */
.layoutjs .datepicker-cont .datepicker-trigger {
	color: #fff;
    margin-bottom: 15px;
    padding: 10px 20px;
    text-align: center;
    font-family: 'Copperplate W01 Bold';
    font-size: 22px;
    background: #333232;
    text-transform: uppercase;
}

.layoutjs .datepicker-cont .datepicker-trigger > span { font: normal 400 16px/1em 'proxima-nova', sans-serif;     font-family: 'Copperplate W01 Bold';}

.layoutjs .asd__wrapper { max-width: 300px; }

.layoutjs .asd__wrapper .asd__inner-wrapper { margin-left: -300px !important; }

.layoutjs .asd__days-legend { max-width: 300px; }

.layoutjs .asd__month { max-width: 300px; }

.layoutjs .asd__month-name { 
	font: normal bold 18px/1em 'proxima-nova', sans-serif; 
	color: #000;
}

.layoutjs .asd__day-title {
	color: #333232;
    font-size: 14px;
    font-family: 'Brandon Grotesque W01 Regular';
}

.layoutjs .asd__day-button {
	font: normal 400 16px/1.2em 'proxima-nova', sans-serif;
	font-family: 'Brandon Grotesque W01 Regular';
}

@media screen and (min-width: 1024px){
	.layoutjs .layout-container {
		width: 100%; 
		flex: 1;
	}

	.layoutjs .layout-container .layout {
		padding: 0 40px;
	}

	/* filters & sort */
	.layoutjs .filterPane {
		position: sticky;
		display: block;
		top: 0;
		width: 300px;
		min-width: 300px;
		padding: 20px 40px 40px 40px;
	}
	
	.layoutjs .filterPane .btn-bg button {
		display: flex;
		align-items: center;
		margin: 0;
		background: transparent;
		padding: 0;
		font-family: 'Copperplate W01 Bold';
		color: #939393;
		border: 1px solid #c7c7c7;
		line-height: .8;
		padding-right: 24px;
		text-transform: lowercase;
	}
	
	.layoutjs .filterPane .btn-bg button i {
		font-size: 21px;
		margin-left: 0;
		border-right: 2px solid #c7c7c7;
		padding: 12px 15px;
		color: #333232;
		margin-right: 15px;
	}

	.layoutjs .asd__wrapper { max-width: 243px; }
	
	.layoutjs .asd__wrapper .asd__inner-wrapper { margin-left: -243px !important; }
	
	.layoutjs .asd__days-legend { max-width: 243px; }
	
	.layoutjs .asd__month { max-width: 243px; }

	.layoutjs .settings {
		justify-content: flex-start;
		background-color: transparent;
		border: none;
		padding: 20px 17px;
		margin-bottom: 23px;
	}

	.layoutjs .settings > div {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		text-align: center;
		border-right: 1px solid #ccc;
		padding: 0px 26px 0px 20px;
	}

	.layoutjs .settings > div:last-child {
		border-right: none;
	}

	.layoutjs .settings .settings-label,
	.layoutjs .settings ul li,
	.layoutjs .settings .map-btn span {
		margin-right: 16px;
		padding-bottom: 2px;
		border-bottom: 2px solid transparent;
		font-family: 'Copperplate W01 Bold';
		font-size: 22px;
		color: #333232;
		text-transform: uppercase;
		letter-spacing: 2px;
	}
	.layoutjs .content .item .info-list > li i {
		font-size: 16px;
	}
	.layoutjs .settings .map-btn span {
		margin-right: 0;
		color: #939393;
		font-size: 18px;
	}

	.layoutjs .settings .settings-label {
		margin-right: 18px;
	}

	.layoutjs .settings ul {
		display: flex;
		align-items: center;
	}

	.layoutjs .settings ul li a,
	.layoutjs .settings .map-btn span {
		cursor: pointer;
		white-space: nowrap;
	}

	.layoutjs .settings ul li:last-child {
		margin-right: 0;
	}

	.layoutjs .settings .highlight {
		border-bottom: 2px solid #333232;
	}
}

/* map */
.layoutjs .layout-container .content-map-wrapper { display: flex; }

.layoutjs .layout-container .map { width: 100%; }

.layoutjs .layout-container .map .gMapHolder { 
	height: auto; 
	min-height: 500px; 
}

.layoutjs .layout-container.map-open .layout { flex: 3 }

.layoutjs .layout-container.map-open .map {
	position: sticky; /* Avoid any ancestor element with overflow property except "overflow: visible" */
	flex: 2;
	top: 0;
	height: 100vh;
}

@media screen and (min-width: 1024px) {
	.layoutjs .layout-container .map .gMapHolder{ height: 100vh; }
}

/* listing items */
.layoutjs .content .fa-spinner {
	position: absolute;
	top: 50px; /* match bottom margin of .layout container to leave room */
	left: calc(50% - 30px);
}

.layoutjs .no-results {
	margin-top: 80px;
	text-align: center;
}

.layoutjs .content {
	padding: 20px;
}
.layoutjs.isMobile .content {
	padding: 10px;
}
.layoutjs.isMobile .content .item {
    box-shadow: none;
	border-bottom: 1px solid #cccc;
	padding-bottom: 10px;
}
.layoutjs .content .item {
	position: relative;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin-bottom: 20px;
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
	background:#fff;
}
.layoutjs.isMobile .content .item {
	margin-bottom: 10px;
}
.layoutjs .content .item:last-of-type {
	margin-bottom: 0;
}

.layoutjs .content .item .image {
	position: relative;
	flex: 1 1 150px;
}

@media (min-width: 375px) {
	.layoutjs .content .item .image {
		flex: 0 1 150px;
	}
}

.layoutjs .content .item .image a {
	position: relative;
	display: block;
}

@media (min-width: 375px) {
	.layoutjs .content.list .item .image a {
		height: 100%;
	}
}

.layoutjs .content.list .item .image .thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.layoutjs .content .item .image .mini-date-container {
	position: absolute;
    bottom: -35px;
    left: -9px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
    padding: 12px 25px 22px 25px;
    pointer-events: none;
    background-image: url(/includes/public/assets/shared/flag.png);
    background-repeat: no-repeat;
    background-size: 163px 62px;
}
.layoutjs.isMobile .content .item .image .mini-date-container {
    bottom: -5px;
    padding: 7px 14px 22px 15px;
    background-size: 163px 32px;
}
.layoutjs.isMobile .content .item .image .mini-date-container {
    bottom: 6px;
}
.layoutjs .content .item .image .mini-date-container .month {
    font: normal bold 16px/1em 'proxima-nova', sans-serif;
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'Brandon Grotesque W01 Regular';
}

.layoutjs .content .item .image .mini-date-container .day {
    font: normal bold 30px/1em 'proxima-nova', sans-serif;
    font-family: 'Brandon Grotesque W01 Regular';
    margin-left: 5px;
}
.layoutjs.isMobile .content .item .image .mini-date-container .month {
    font-size: 12px;
}

.layoutjs.isMobile .content .item .image .mini-date-container .day {
	font-size: 12px;
}
.layoutjs .content .item .image .featured {
    position: absolute;
    top: 13px;
    left: 0;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.45);
    color: #fde078;
    padding: 5px 10px;
    height: 40px;
    font-family: 'Copperplate W01 Bold';
    font-size: 22px;
    line-height: 1;
    text-decoration: underline;
}
.layoutjs .content.list .item .image .featured {
    font-size: 14px;
    height: 30px;
}
.layoutjs.isMobile .content .item .image .featured {
    height: 30px;
    font-size: 14px;
}
.layoutjs .content .item .tripbuilder {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
}

.layoutjs .content .item .tripbuilder a {
	font-size: 24px;
	position: relative;
	font-family: 'Font Awesome 5 Free';
	line-height: 1em;
}

.layoutjs .content .item .tripbuilder .addTrip:before{
	content: "\f004";
	font-weight: 900;
	color: rgba(0, 0, 0, 0.5);
}

.layoutjs .content .item .tripbuilder .addTrip:after{
	content: "\f004";
	font-weight: 400;
	color: #fff;
	position: absolute;
	right: 0;
}

.layoutjs .content .item .tripbuilder .removeTrip:before{
	content: "\f004";
	font-weight: 900;
	color: #d42727
}

.layoutjs .content .item .info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	padding: 16px;
}
.layoutjs.isMobile .content .item .info {
	padding: 0px 16px 16px 16px;
}
.layoutjs .content [data-type='events'].item .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 40px 20px;
}
.layoutjs .content.list .item .info {
	flex: 1 1 100%;
}

@media (min-width: 375px) {
	.layoutjs .content.list .item .info {
		flex: 1;
	}
}

.layoutjs .content .item .info h4,
.layoutjs .content .item .info h4 a { 
	margin-bottom: 10px;
    color: #333232;
    font-size: 28px;
	font-family: 'Brandon Grotesque W01 Bold';
	line-height: 1.2;
}
.layoutjs.isMobile .content .item .info h4,
.layoutjs.isMobile .content .item .info h4 a { 
	font-size: 16px;
	margin-bottom: 5px;
}
.layoutjs .content .item .info-list {
    list-style: none;
    margin: 0;
    margin-bottom: 16px;
    color: #666666;
    font-family: 'Brandon Grotesque W01 Regular';
    font-size: 20px;
}
.layoutjs.isMobile .content .item .info-list {
    font-size: 16px;
}

.layoutjs .content .item .info-list > li {
	display: flex;
	align-items: baseline;
	line-height: 1.2;
}

.layoutjs .content .item .info-list > li + li {
	margin-top: 6px;
}

.layoutjs .content .item .info-list > li > i {
    color: #666666;
    margin-right: 4px;
    width: 20px;
}
.layoutjs.isMobile .content .item .info-list > li > i {
    margin-right: 2px;
    font-size: 13px;
}
.layoutjs .content .item .info-list.meetingfacility-list {
	max-width: 320px;
}

.layoutjs .content .item .info-list.meetingfacility-list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding-left: 23px;
	color: #676767;
}

.layoutjs .content .item .info-list.meetingfacility-list li:first-child {
	display: block;
	padding-left: 0;
	color: inherit;
}

.layoutjs .content .item .info-list.meetingfacility-list li span {
	font-weight: 700;
}

.layoutjs .content .item .bottom-actions {
	display: flex;
	gap: 5px 20px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	width: 100%;
}

.layoutjs .content .item .bottom-actions .qv-btn,
.layoutjs .content .item .bottom-actions .actions .actionButton {
	color: #990000;
    padding: 0;
    margin: 0;
    background: transparent;
    white-space: nowrap;
    font-family: 'Brandon Grotesque W01 Bold';
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 3.3px;
}
.layoutjs.isMobile .content .item .bottom-actions .qv-btn,
.layoutjs.isMobile .content .item .bottom-actions .actions .actionButton {
    font-size: 14px;
    letter-spacing: 2.3px;
}
.layoutjs .content .item .bottom-actions .qv-btn i {
	margin-right: 5px;
	width: 18px;
}

.layoutjs .content .item .actions .actionButton i {
	margin-left: 5px;
}

@media screen and (min-width: 1024px) {
	.layoutjs .content {
		margin: 20px 0 28px 0px;
		padding: 0;
	}

	.layoutjs .content.grid {
		padding: 0;
		display: flex;
		flex-flow: wrap row;
		justify-content: space-between;
	}

	.layoutjs .content.grid .item {
		flex: 0 0 30%;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.layoutjs .content.grid .item .image,
	.layoutjs .content.grid .item .image img {
		width: 100%;
	}

	.layoutjs .content.grid .item .info {
		flex: auto; /* ie fix */
	}

	@supports (display: grid) {
		.layoutjs .content.grid {
			display: grid;
			grid-gap: 42px;
			grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
		}

		.layoutjs .content.grid .item {
			margin-bottom: 0;
		}
	}
}
/* ie flex column fix */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 1024px) {
	.layoutjs .content.grid .item {
		display: block;
	}

	.layoutjs .content .item .bottom-actions > * {
		width: 100%;
		text-align: left;
	}
}

/* pager */
.layoutjs .pager ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	list-style: none;
}
.layoutjs.isMobile .pager ul {
    margin: 0 9px;
}
.layoutjs.isMobile .pager a img {
    margin: 0;
}
.layoutjs .pager li {
	color: #333232;
	margin: 0 10px;
	font-family: Brandon Grotesque W01 bold;
	font-size: 22px;
}
.layoutjs.isMobile .pager li {
	font-size: 11px;
}
.layoutjs .pager a {
	font-size: 22px;
	letter-spacing: 3px;
}
.layoutjs.isMobile .pager a {
	font-size: 11px;
	letter-spacing: 2px;
}
.layoutjs .pager li a {
	color: #333232;
	opacity: .6;
	cursor: default;
}
.layoutjs.isMobile .pager a img {
    width: 7px;
}
.layoutjs .pager a.prv img {
    transform: rotate(180deg);
}
.layoutjs .pager a img {
    width: 13px;
	margin: 0 9px;
	vertical-align: baseline;
}
.layoutjs .pager li.highlight a {
	color: #333232;
	opacity: 1;
	cursor: pointer;
}

@media screen and (min-width: 1024px) {
	.layoutjs .pager ul {
		justify-content: space-between;
		padding: 0;
	}
}

/* Two-Stage Filter Styles */
.layoutjs [data-type="twostage"] .stage-one {
	display: flex;
	justify-content: space-between;
	margin: 0;
	margin-bottom: 3px;
	padding: 6px;
	width: 100%;
	text-align: left;
	color: inherit;
	background: transparent;
}
@media (max-width: 1250px) and (min-width: 1024px) { 
	.layoutjs .settings .settings-label, .layoutjs .settings ul li, .layoutjs .settings .map-btn span {
		font-size: 14px;
	}
	.layoutjs .settings a, .layoutjs .filterPane a, .layoutjs .datepicker-cont .quicklinks button {
		font-size: 14px;
	}
	.layoutjs .settings .map-btn span {
		font-size: 14px;
	}
	.layoutjs .pager a {
		font-size: 15px;
		letter-spacing: 1px;
	}
	.layoutjs .pager li {
		color: #333232;
		margin: 0 4px;
		font-family: Brandon Grotesque W01 bold;
		font-size: 16px;
	}
	.layoutjs .content .item .info h4, .layoutjs .content .item .info h4 a {
		font-size: 17px;
	}
	.layoutjs .pager ul {
		justify-content: space-between;
		padding: 0;
		margin: 0;
	}
}
.layoutjs [data-type="twostage"] .stage-one[disabled] {
	pointer-events: none;
	cursor: default;
	opacity: 0.7;
}

.layoutjs [data-type="twostage"] .stage-one.locked {
	pointer-events: none;
}

.layoutjs [data-type="twostage"] .stage-one i {
	margin-left: 12px;
}

.layoutjs [data-type="twostage"] .stage-one + .filter { padding-left: 6px; }

/* Click To Compare Styles */
.layoutjs .compare {
	position: relative;
}

.layoutjs .compare .compare-toggle {
	position: relative;
	margin: 0;
	padding: 0;
	width: 32px;
	height: 32px;
	font-size: 22px;
	color: #222;
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
}

.layoutjs .compare .compare-toggle.badged::after {
	content: attr(data-count);
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	padding: 3px 4px;
	font-size: 12px;
	font-weight: 600;
	color: red;
	border-radius: 4px;
	background-color: #ffb4b4;
	transform: translateX(25%);
}

.layoutjs .compare .compare-toggle[disabled] {
	color: #999;
	pointer-events: none;
}

.layoutjs .compare .compare-toggle:hover,
.layoutjs .compare .compare-toggle:focus {
	background-color: whitesmoke;
}

.layoutjs .compare .compare-toggle.open {
	color: hsl(210, 100%, 52%);
}

.layoutjs .compare .compare-click-outside {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.layoutjs .click-to-compare-menu {
	position: absolute;
	z-index: 10;
	top: calc(100% + 20px);
	right: 0;
	margin-bottom: 32px;
	padding-top: 16px;
	width: 100vw;
	max-width: 288px;
	border-radius: 4px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	background-color: #fff;
	overflow: hidden;
}

@media (min-width: 40em) {
	.layoutjs .click-to-compare-menu {
		max-width: 420px;
	}	
}

.layoutjs .click-to-compare-menu > * {
	display: block;
	margin: 0;
	padding: 0 24px;
}

.layoutjs .click-to-compare-menu .compare-title {
	margin-bottom: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.1;
	text-align: left;
}

.layoutjs .click-to-compare-menu .compare-actions {
	display: flex;
	justify-content: flex-end;
	padding-top: 12px;
	padding-bottom: 12px;
	background-color: whitesmoke;
}

.layoutjs .click-to-compare-menu .compare-clear {
	margin: 0;
	margin-right: 24px;
	padding: 0;
	background: transparent;
	color: #203f99;
	transition: none;
}

.layoutjs .click-to-compare-menu .compare-link {
	padding:  8px 24px;
	color: #fff;
	border-radius: 4px;
	border: 1px solid #0b205e;
	background-color: #203f99;
}

.layoutjs .click-to-compare-menu .compare-chits {
	margin-bottom: 12px;
	padding: 0 12px;
}

.layoutjs .click-to-compare-menu .compare-chit {
	display: flex;
	align-items: baseline;
    justify-content: space-between;
    margin: 0;
    margin-bottom: 8px;
    padding: 8px 14px;
    width: 100%;
    font-size: 0.9rem;
    text-align: left;
    color: #222;
    border-radius: 4px;
    border: none;
    background-color: transparent;
}

.layoutjs .click-to-compare-menu .compare-chit:hover {
    background-color: whitesmoke;
}

.layoutjs .click-to-compare-menu .compare-chit .fa {
	display: block;
	margin-left: 24px;
    color: hsl(225, 6%, 51%);
}

.layoutjs .click-to-compare {
	display: flex;
    align-items: baseline;
    margin: 0;
    padding: 0;
	text-align: left;
	color: inherit;
	font-weight: bold;
	text-transform: capitalize;
    background-color: transparent;
}

.layoutjs .click-to-compare .fas {
    margin-right: 5px;
    color: hsl(225, 6%, 51%);
    width: 18px;
}

.layoutjs .click-to-compare.compare-remove .fas {
	color: hsl(210, 100%, 52%);
}
