/*
 Theme Name:   RDC Research Site 2025
 Author:       Jason Craft
 Version:      1.0.0
 Text Domain:  rdc-research-2025
*/


/**** fonts ****/
@font-face {
    font-family: 'Galano Grotesque Alt';
    src: url('fonts/galanogrotesquealtbold-webfont.woff2') format('woff2'),
         url('fonts/galanogrotesquealtbold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Galano Grotesque Alt';
    src: url('fonts/galanogrotesquealtsemibold-webfont.woff2') format('woff2'),
         url('fonts/galanogrotesquealtsemibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Galano Grotesque Alt';
    src: url('fonts/galanogrotesquealtmedium-webfont.woff2') format('woff2'),
         url('fonts/galanogrotesquealtmedium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Galano Grotesque Alt';
    src: url('fonts/galanogrotesquealtregular-webfont.woff2') format('woff2'),
         url('fonts/galanogrotesquealtregular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}



/* headings / misc. */
html, body {
    font-family: 'Galano Grotesque Alt', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #1a1a1a;
}
.heading {
	margin: 20px 0 12px;
	font-size: 26px;
	font-weight: 700;
}
.heading:first-child {
	margin-top: 0;
}
.primary.heading {
	font-size: 32px;
}
.secondary.heading {
	font-size: 26px;
}
main h4, main h4.heading,
main h5, main h5.heading,
main .sub.heading {
	font-size: 20px;
}
main strong {
	font-weight: 700;
}
.heading strong {
	font-weight: inherit;
}
img {
	max-width: 100%;
	height: auto;
}
.heading a, .title a {
	color: inherit;
}
ul {
	list-style: none;
	padding: 0;
}
a, button {
	outline: none !important;
}
#rdc-global-header {
	min-height: 50px;
}
#rdc-global-header a {
	text-decoration: none;
}

/* main content / layout */
main {
	font-size: 16px;
	font-weight: 300;
	--rdc-red: #d92228;
	--border-color-medium: #bbb;
	--secondary-copy-color: #726A60;
}
main .container {
	max-width: 1300px;
}
main > section {
	padding: 40px 0;
}
main > section:last-of-type {
	padding-bottom: 60px;
}
main .contrast-section {
	background: #f7f7f7;
}
main sup {
	font-size: 60%;
}
main a {
	text-decoration: underline;
	color: inherit;
}
main a:hover {
	color: var(--rdc-red);
}
.heading a,
.title a {
	text-decoration: none;
}
.box {
	display: block;
	padding: 30px;
	border: solid 1px var(--border-color-medium);
	border-radius: 20px;
}
.box.image {
	padding: 0;
	overflow: hidden;
}
.box.small {
	border-radius: 12px;
}
.content-section {
	margin: 40px 0;
}
.box2 {
	padding: 30px;
	border-radius: 20px;
	background: #f7f7f7;
}



/* buttons */
.button {
	display: inline-block;
	padding: 16px 32px;
	border: none;
	border-radius: 26px;
	box-shadow: none;
	background: var(--rdc-red);
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	line-height: 1;
	text-decoration: none;
	transition: all 0.5s;
	outline: none;
}
.button:active, .button:focus {
	color: #fff;
}
.button:hover {
	background: #b90208;
	color: #fff;
	text-decoration: none;
}
.button .icon {
	margin: 0 0 0 8px;
}
.button.arrow-submit::after {
	display: inline-block;
	margin: 0 0 0 12px;
	border: solid 6px transparent;
	border-left: solid 8px;
	border-right: none;
	vertical-align: middle;
	content: " ";
}
.button.plain::after {
	display: none;
}
.button.light {
    border: solid 1px #ddd;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: Roboto, sans-serif;
    color: #222;
}
.button.light:hover {
	border-color: #bbb;
	color: var(--rdc-red);
}
.button.back::before {
	display: inline-block;
	margin: 0 12px 0 0;
	border: solid 6px transparent;
	border-right: solid 8px;
	border-left: none;
	vertical-align: middle;
	content: " ";
}
.button.back::after {
	display: none;
}
.secondary.button {
	background: #000;
	color: #fff;
}
.secondary.button:hover {
	background: var(--rdc-red);
}



/**** header ****/
#header {
	padding: 50px 0 30px;
}
#header .container {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 2.5em;
}
#header .nav-col {
	text-align: center;
}
#header .primary.heading {
	margin: 0;
	font-size: 26px;
}
#header_nav ul {
	list-style: none;
	display: flex;
	justify-content: space-around;
	gap: 2em;
	margin: 1.25em 0 0;
	padding: 0;
}
#header_nav li {
	margin: 0 0 1em;
	padding: 0;
	font-weight: 600;
	text-transform: uppercase;
}
#header_nav a {
	text-decoration: none;
	color: inherit;
}
#header_nav a:hover,
#header_nav .current-menu-item a,
#header_nav .current_page_parent a {
	text-decoration: underline;
	color: inherit;
}

#header .search-col {
	position: relative;
}
#header .search-col .mobile-button {
	display: none;
	position: absolute;
	right: 12px;
	top: 0;
	border: none;
	background: transparent;
	font-size: 30px;
	font-weight: 400;
	font-family: inherit;
	color: #888;
	width: 50px;
	height: 50px;
	opacity: 0;
	cursor: pointer;
}
.close-button {
	position: relative;
	display: inline-block;
	padding: 0;
	border: none;
	background: transparent;
	color: #888;
	width: 20px;
	height: 20px;
	transition: all 0.4s;
}
.close-button:hover {
	color: #111;
}
.close-button::before,
.close-button::after {
	position: absolute;
	left: 0;
	top: 50%;
	display: inline-block;
	border-top: solid 2px;
	width: 100%;
	transform: rotate(45deg);
	content: "";
}
#header .search-col .close-button::before,
#header .search-col .close-button::after {
	left: 22%;
	width: 40%;
}
.close-button::after {
	transform: rotate(-45deg);
}
.close-button:hover {
	transform: scale(1.1);
}

.form-bar-alt {
	position: relative;
	margin: 14px auto;
	max-width: 460px;
}
#header .form-bar-alt {
	margin: 0;
	max-width: 100%;
}
.form-bar-alt .text-box {
	display: block;
	padding: 14px 60px 14px 18px;
	border: solid 1px #888;
	border-radius: 80px;
	font: inherit;
	font-size: 18px;
	width: 100%;
}
.form-bar-alt .button {
	position: absolute;
	right: 4px;
	top: 4px;
	bottom: 4px;
	padding: 8px;
	background: #2b2b2b;
	text-align: center;
	width: 48px;
}
.form-bar-alt .button:hover {
	background: #666;
}
.form-bar-alt .button:disabled {
	background: #bbb;
}
.form-bar-alt .button svg,
.form-bar-alt .button img,
.form-bar-alt .button .icon {
	width: 20px;
	height: auto;
}
.form-bar-alt .close-button {
	display: none;
	position: absolute;
	right: 66px;
	top: 18px;
}
.form-bar-alt.active .close-button {
	display: block;
}











/**** ticker bar ****/
section#ticker {
	margin: 10px 0;
	padding: 0;
}
#ticker .heading {
	margin: 0 0 4px;
	font-size: 1em;
}
.ticker {
	position: relative;
	display: flex;
	align-content: stretch;
	justify-content: space-between;
	padding: 12px 0;
    border: solid 1px #555;
    border-radius: 50px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    height: auto;
}
.ticker:not(.data-loaded) {
	overflow: hidden;
}
.ticker .ticker-col {
	position: relative;
	padding: 2px 14px;
	line-height: 26px;
}
.ticker .location {
	border-right: solid 1px #555;
	white-space: nowrap;
	z-index: 3;
}
.ticker .current-location {
	display: inline-block;
	font-size: 0.9em;
	text-decoration: none;
	align-items: center;
}
.ticker .location .icon {
	margin: 0 4px 0 0;
	width: 24px;
}
.ticker .location .metro {
	display: inline-block;
	vertical-align: middle;
}
.ticker-search {
	display: none;
	align-items: center;
	position: absolute;
	left: 40px;
	top: 0;
	margin: 0 0 0 1px;
	padding: 0 14px 0 0;
	border-right: solid 1px #555;
	background: #fff;
	height: 100%;
	height: 100%;
	z-index: 3;
}
.ticker-search .text-box {
	padding: 4px;
	border: none;
	font: inherit;
	font-size: 14px;
	outline: none;
}
.ticker-search .button,
.ticker-search .button:hover {
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: 22px;
	color: #1b1b1b;
}
.ticker-search .button:hover {
	color: var(--rdc-red);
}
.ticker-search .button svg,
.ticker-search .button img {
	display: block;
	width: 18px;
	height: auto;
}
.ticker-search .button path {
	fill: currentColor;
}
.ticker .location.expanded .ticker-search {
	display: flex;
	animation: 400ms submenu 1 ease;
}
.ticker .stats {
	list-style: none;
	margin: 0;
	white-space: nowrap;
	overflow: auto;
	height: 100%;
	/*flex-grow: 2;*/
	flex-shrink: 10;
}
.ticker .stats .item {
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 0 16px 0 0;
	/*border-right: solid 1px #ddd;*/
	vertical-align: middle;
}
.ticker .number {
	margin: 0 4px;
	/*padding: 1px 8px;
	background: #333;
	color: #fff;*/
}
.ticker .number,
.ticker .change {
	display: inline-block;
	font-weight: 600;
	font-size: 1.15em;
}
.ticker .change,
.value-down {
	color: var(--rdc-red);
}
.ticker .change::before,
.value-down::before,
.value-up::before {
	display: inline-block;
	margin: 0 3px 0 0;
	border: solid 6px transparent;
	border-top: solid 8px;
	border-bottom: none;
	/*color: var(--rdc-red);*/
	vertical-align: middle;
	content: " ";
}
.ticker .change.up,
.value-up {
	color: #0A801F;
}
.ticker .change.up::before,
.value-up::before {
	border-bottom: solid 8px;
	border-top: none;
	content: "";
	/*color: #78d35c;*/
}
.ticker .more {
	border-left: solid 1px #555;
}
.ticker .more a,
.ticker .more a:hover {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	/*white-space: nowrap;*/
	vertical-align: middle;
	transition: all 0.4s;
}
.ticker .more a:hover {
	color: var(--rdc-red);
	text-decoration: none;
}
.ticker .more > a::after {
	display: inline-block;
	margin: -4px 10px 0 16px;
	border: solid 2px;
	border-top: none;
	border-left: none;
	width: 10px;
	height: 10px;
	vertical-align: middle;
	transform: rotate(45deg);
	transform-origin: top center;
	content: " ";
}
.ticker .more .control {
	white-space: nowrap;
}
.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 6px 0 0;
	padding: 4px 20px;
	border: solid 1px #555;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
	background: #fff;
	transition: all 0.4s;
	z-index: 9;
}
@keyframes submenu {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.sub-menu li {
	display: block;
	margin: 14px 0;
}
.sub-menu a {
	padding: 0;
	border: none;
	font-size: 15px;
	font-weight: 500;
}
.ticker .more .sub-menu {
	top: calc(100% + 12px);
	left: auto;
	right: 0;
	line-height: 1.2;
	width: 300px;
	max-width: calc(100vw - var(--bs-gutter-x));
}
.ticker .more.expanded .sub-menu {
	display: block;
	animation: 500ms submenu 1 ease;
}
/*.ticker .owl-carousel .owl-stage-outer {
	overflow: visible;
}*/
.ticker .stats.owl-loaded {
	overflow: hidden;
}
.ticker .stats.owl-loaded .item {
	margin: 0;
}

.ticker .loading {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.ticker .loading::after {
	display: none;
}
.ticker.data-loaded .loading {
	display: none;
}
.loading-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -15px 0 0 -15px;
	width: 30px;
	height: 30px;
}
.loading-icon div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 22px;
	height: 22px;
	margin: 4px;
	border: 4px solid #999;
	border-radius: 50%;
	animation: loading-icon 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #999 transparent transparent transparent;
}
.loading-icon div:nth-child(1) {
	animation-delay: -0.45s;
}
.loading-icon div:nth-child(2) {
	animation-delay: -0.3s;
}
.loading-icon div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes loading-icon {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.ui-menu {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
	outline: 0;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu .ui-menu-item {
	margin: 0;
}
.ui-menu.ui-widget-content {
	margin: 0;
	border: solid 1px #ddd;
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.08);
	background: #fff;
	font: inherit !important;
	font-size: 0.9em;
	z-index: 9;
}
.ui-menu.ui-widget-content.ui-autocomplete {
	margin: 27px 0 0 -10px;
}
.ui-menu .ui-menu-item-wrapper {
	padding: 4px 10px;
}
.ui-state-active, .ui-widget-content .ui-state-active {
	border-color: #f0f0f0;
	background: #f0f0f0;
	color: inherit;
}
.ui-menu-item > * {
	border-radius: 0 !important;
}
.ui-state-focus {
	margin: 0 !important;
	border: none !important;
	background: #eee !important;
}



/**** home page articles ****/
#home_articles > .container {
	display: grid;
	grid-template-columns: 32% 40% auto;
	align-items: start;
	gap: 40px 30px;
}
#home_articles .latest-articles {
	grid-row: 2 / 4;
	grid-column: 2;
}
#home_articles .featured-articles {
	grid-row: 1 / 4;
	grid-column: 1;
}
#home_articles .market-summary {
	grid-row: 1 / 3;
	grid-column: 3;
}
#home_articles .featured-promotion {
	grid-row: 3;
	grid-column: 3;
}
#home_articles .social-follow {
	grid-column: 3;
}
#home_articles #sign_up {
	grid-row: 4;
	grid-column: 1 / 3;
	font-size: 0.9em;
}

.featured-articles .article-preview {
	display: flex;
	gap: 22px;
}
.featured-articles .article-preview,
.latest-articles .article-preview {
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: solid 1px var(--border-color-medium);
}
.featured-articles .thumb-col {
	width: 50%;
}
.featured-articles .details-col {
	font-size: 0.9em;
	width: calc(50% - 22px);
}
.featured-articles .thumb-col .heading {
	font-size: 1em;
}
.featured-articles .thumb-col .image.box {
	width: 100%;
}
#home_articles .featured-articles .thumb-col .image.box {
	width: 182px;
}
.featured-articles .thumb-col img,
#home_articles .latest-articles .thumb-col img {
	aspect-ratio: 5/3;
	object-fit: cover;
	width: 100%;
}
.article-preview .title {
	margin: 0.55em 0;
	font-family: Lora, serif;
	font-size: 1em;
	font-weight: 600;
}

.latest-articles .title {
	font-size: 1.2em;
}
.latest-articles .article-preview:last-child {
	display: none;
}
.latest-articles .article-preview:nth-last-child(2) {
	padding-bottom: 0;
	border-bottom: none;
}
.latest-articles .thumb-col {
	display: none;
}

.weekly-updates .date {
	margin: 0.6em 0 0.3em;
}
.weekly-updates .thumb img,
.weekly-updates .thumb iframe {
	display: block;
	border-radius: 20px;
	width: 100%;
}
.weekly-updates .thumb img {
	height: auto;
	aspect-ratio: 5/3;
	object-fit: cover;
}
@supports (aspect-ratio: 5 / 3) {
	.weekly-updates .thumb iframe {
		aspect-ratio: 5 / 3;
		height: auto;
	}
}
#home_articles .cta-row {
	text-align: right;
}
.more-link {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	text-decoration: underline;
}
.more-link::after {
	margin: 0 0 0 8px;
	border: solid 2px;
	border-left: none;
	border-top: none;
	width: 8px;
	height: 8px;
	transform: rotate(-45deg);
	content: "";
}
.video.thumb a {
	position: relative;
	display: block;
}
.video.thumb a::before {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
	background: #fff;
	width: 60px;
	height: 60px;
	content: " ";
	z-index: 1;
	transition: all 0.5s;
	opacity: 0.7;
}
.video.thumb a::after {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -14px 0 0 -6px;
	display: inline-block;
	border: solid 14px transparent;
	border-left: solid 20px #000;
	vertical-align: middle;
	content: " ";
	z-index: 2;
	transition: all 0.5s;
	/*mix-blend-mode: color-burn;*/
	opacity: 0.7;
}
.video.thumb a:hover::before,
.video.thumb a:hover::after {
	transform: scale(1.15);
}

.market-stats {
	font-size: 0.9em;
}
.market-stats .stat-item {
	position: relative;
	margin: 0 0 1.25em;
	padding: 0 0 0 52px;
}
.market-stats .stat-item::before {
	position: absolute;
	left: 0;
	top: 50%;
	display: block;
	margin: -20px 0 0;
	background: url(images/icon-town-home.png) 50% 50% / contain no-repeat;
	width: 40px;
	height: 40px;
	content: "";
}
.market-stats .stat-item.median-listing-price::before {
	background-image: url(images/icon-home-offer.png);
}
.market-stats .stat-item.active-listings::before {
	background-image: url(images/icon-browse.png);
}
.market-stats .stat-item.new-listings::before {
	background-image: url(images/icon-listing-sign.png);
}
.market-stats .stat-item.median-days::before {
	background-image: url(images/icon-calendar-days.png);
}
.market-stats .stat-item span {
	display: block;
	margin: 0 0 0.25em;
}
.market-stats .stat-item .date {
	font-size: 0.9em;
}
.market-stats .stat-value {
	font-weight: 700;
}
#home_articles .market-stats .cta-row {
	text-align: left;
}
.market-stats .cta-row a {
	display: block;
	margin: 4px 0;
	font-weight: 600;
	text-decoration: underline;
}

.highlight {
	color: var(--rdc-red);
}
.social-follow.box {
	background: url(images/icon-bell.png) right 24px top 22px / 36px auto no-repeat;
}
.social-follow .heading {
	padding-right: 70px;
}
.social-follow .heading .highlight {
	display: block;
}
.social-follow .social-links {
	list-style: none;
	margin: 0;
}
.social-follow .social-links li {
	margin: 10px 0;
}
.social-follow .social-links a {
	font-weight: 600;
	text-decoration: none;
}
.social-follow .social-links svg {
	margin: 0 10px 0 0;
	width: 24px;
	height: 24px;
}
.social-follow .social-links path {
	fill: currentColor;
}


@media (max-width: 1190px) {
	#home_articles > .container {
		grid-template-columns: 55% auto;
		gap: 12px 22px;
		max-width: 820px;
	}
	#home_articles .weekly-updates {
		order: 1;
	}
	#home_articles .market-summary {
		grid-row: 1 / 3;
		grid-column: 2;
		order: 2;
	}
	#home_articles .featured-articles {
		grid-row: 2 / 5;
		order: 3;
	}
	#home_articles .featured-promotion {
		grid-row: 3;
		grid-column: 2;
		order: 4;
	}
	#home_articles .social-follow {
		grid-row: 4;
		grid-column: 2;
		order: 5;
	}
	#home_articles .latest-articles {
		grid-row: 5;
		grid-column: 1 / 3;
	}
	#home_articles #sign_up {
		grid-row: 6;
		grid-column: 1 / 3;
	}
	#home_articles #sign_up .container {
		margin: 0 auto;
	}

	#home_articles .latest-articles .article-list {
		scroll-snap-type: x proximity;
		display: flex;
		gap: 16px;
		margin: 0 calc(var(--bs-gutter-x) * -0.5);
		padding: 0 calc(var(--bs-gutter-x) * .5);
		overflow: auto;
	}
	#home_articles .latest-articles .article-preview {
		display: block;
		flex: none;
		scroll-snap-align: center;
		padding-bottom: 0;
		border: solid 1px var(--border-color-medium);
		border-radius: 16px;
		font-size: 0.9em;
		line-height: 1.15;
		max-width: 250px;
		overflow: hidden;
	}
	.latest-articles .thumb-col {
		display: block;
	}
	.latest-articles .details-col {
		padding: 12px;
	}
	.latest-articles .title {
		font-size: 1em;
	}
	.latest-articles .excerpt {
		margin: 0;
	}
}

@media (max-width: 680px) {
	#home_articles > .container {
		grid-template-columns: 100%;
		gap: 40px 0;
	}
	#home_articles > .container > * {
		grid-row: auto;
		grid-column: 1;
	}
	#home_articles .weekly-updates {
		order: 1;
	}
	#home_articles .market-summary {
		order: 2;
	}
	#home_articles .featured-articles {
		order: 3;
	}
	#home_articles .featured-promotion {
		order: 4;
	}
	#home_articles .latest-articles {
		order: 5;
	}
	#home_articles .social-follow {
		order: 6;
	}
	#home_articles #sign_up {
		order: 7;
	}
	#home_articles .market-stats.box,
	#home_articles .featured-promotion,
	#home_articles .social-follow {
	    justify-self: center;
	    margin: 0 auto;
	    width: 340px;
	    max-width: 100%;
	}
	#home_articles .cta-row {
		margin: 20px 0 0;
		text-align: center;
	}
	#home_articles .more-link {
		display: inline-block;
		padding: 8px 20px;
		border-radius: 80px;
		background: #111;
		text-decoration: none;
		color: #fff;
		transition: all 0.5s;
	}
	#home_articles .more-link:hover {
		background: #555;
	}
	#home_articles .more-link::after {
		display: none;
	}

	#home_articles .featured-articles .article-list {
		scroll-snap-type: x proximity;
		display: flex;
		gap: 16px;
		margin: 0 calc(var(--bs-gutter-x) * -0.5);
		padding: 0 calc(var(--bs-gutter-x) * .5);
		overflow: auto;
	}
	#home_articles .featured-articles .article-preview {
		display: block;
		flex: none;
		scroll-snap-align: center;
		padding-bottom: 0;
		border: solid 1px var(--border-color-medium);
		border-radius: 16px;
		line-height: 1.15;
		max-width: 250px;
		white-space: normal;
		vertical-align: middle;
		overflow: hidden;
	}
	#home_articles .featured-articles .thumb-col .heading {
		display: none;
	}
	#home_articles .featured-articles .thumb-col .image.box {
		border: none;
		border-radius: 0;
		width: 100%;
	}
	#home_articles .featured-articles .thumb-col,
	#home_articles .featured-articles .details-col {
		width: 100%;
	}
	#home_articles .featured-articles .details-col {
		padding: 12px;
	}
	#home_articles .featured-articles .excerpt {
		margin: 0;
	}
}




/**** sign up ****/
#sign_up .container {
	max-width: 1100px;
}
#sign_up .row {
	align-items: center;
}
#sign_up .heading {
	margin: 4px 0;
}
#sign_up .error-message,
#sign_up .after-success {
	display: none;
	font-weight: 600;
	text-align: center;
}
#sign_up .error-message.active,
#sign_up .after-success.active {
	display: block;
	animation: 0.5s submenu 1;
}
#sign_up .error-message {
	color: #e93238;
}

.form-bar .bar {
    position: relative;
    margin: 0 auto;
    padding: 14px 50px 14px 20px;
    border: solid 1px #ddd;
    border-radius: 50px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #222;
}
.form-bar .bar:hover,
.form-bar .bar:focus {
	border-color: #999;
}
.form-bar .bar .text-box {
    margin: 0;
    padding: 2px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    color: #222;
    line-height: 1;
    width: 100%;
    outline: none !important;
}
.form-bar .bar .button {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    padding: 14px 18px;
    border: none;
    box-shadow: none;
    background: var(--rdc-red);
    font-size: 16px;
    color: #fff;
    line-height: 1;
}
.search.form-bar .bar .button {
    top: 6px;
    right: 6px;
    bottom: 6px;
    padding: 10px;
    font-size: 20px;
}
.form-bar .bar .button:hover {
	background: #b90208;
}

/* loading layer */
.loading {
	position: relative;
}
.loading::before,
.loading::after {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	background: rgba(255, 255, 255, 0.6);
	width: 100%;
	height: 100%;
	z-index: 9;
	content: "";
}
.loading::after/*,
.loading-icon::after*/ {
	left: 50%;
	top: 50%;
	box-sizing: border-box;
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: -12px 0 0 -12px;
	border: 4px solid #999;
	border-radius: 50%;
	border-color: #999 #999 transparent transparent;
	background: transparent;
	animation: loading-icon 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	z-index: 9;
	content: "";
}
/*.loading-icon::after {
	left: auto;
	top: auto;
	margin: 0 8px;
}*/
@keyframes loading-icon {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/**** featured reports ****/
.featured-reports {
	text-align: center;
}
.content-intro,
.content-outro {
	text-align: center;
}
.content-intro p,
.content-outro p {
	margin: 40px auto;
	font-size: 1.15em;
	max-width: 520px;
}
.divider-heading {
	padding-bottom: 0.2em;
	border-bottom: solid 1px var(--border-color-medium);
}
.divider-heading.sub {
	padding-bottom: 0.3em;
}
.divider-heading.alt {
	margin-bottom: 30px;
	padding: 0;
	text-align: center;
}
.divider-heading .inner {
	display: inline-block;
	margin: 0 auto;
	padding: 0 8px;
	background: #fff;
	transform: translateY(0.55em);
}
.featured-reports .reports-overview {
	margin: 20px auto;
	max-width: 880px;
}
.featured-reports .report-item {
	margin: 0 0 36px;
	padding: 0 16px;
}
.featured-reports .report-item .heading {
	margin: 8px 0;
}
.featured-reports .report-item .heading a {
	text-decoration: none;
}
.featured-reports .report-item .desc {
	margin: 0;
}
.featured-reports .content-outro p {
	margin-top: 0;
	margin-bottom: 0;
}




/**** real estate data ****/
.build-data.box {
	position: relative;
	margin: 20px auto;
	padding: 10px 60px;
	background: url(images/illustration-buildings.png) 0 100% / 60% no-repeat,
				url(images/data-spreadsheet-bg.png) 100% 0 / auto 100% no-repeat #fff;
	max-width: 1040px;
}
.build-data .primary.heading {
	margin: 20px 0;
	font-size: 38px;
	line-height: 1.1;
	max-width: 320px;
}
.build-data .desc {
	margin: 20px 0;
	font-size: 20px;
	max-width: 480px;
}
.build-data .cta-row {
	margin: 20px 0;
}
.disclaimer {
	font-size: 0.8em;
	line-height: 1.4;
}
.disclaimer a {
	text-decoration: underline;
	color: inherit;
}
.build-data .disclaimer {
	margin: 20px 0;
	max-width: 464px;
}

@media (max-width: 980px) {
	main .build-data.box {
		padding: 10px 110px 10px 20px;
		background: url(images/data-spreadsheet-bg-mobile.jpg) 100% 100% / auto 95% no-repeat #fff;
	}
}
@media (max-width: 650px) {
	.build-data .primary.heading {
		font-size: 28px;
		max-width: 250px;
	}
	.build-data .desc {
		font-size: 16px;
	}
	.build-data .disclaimer {
		max-width: 220px;
	}
}
@media (max-width: 420px) {
	.build-data .disclaimer {
		max-width: 170px;
	}
}




/**** team section ****/
#team .content-outro a {
	text-decoration: none;
}
.team-members {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: top;
	margin: 30px auto 50px;
	padding: 0;
}
.team-members .member {
	margin: 0 0 30px;
	font-size: 1.05em;
	width: 33.3%;
}
.team-members .member,
.team-members .member > * {
	display: flex;
	align-items: center;
	gap: 16px;
}
.team-members .member > * {
	width: 100%;
}
.team-members .member .image {
	width: 150px;
}
.team-members .member .info {
	width: calc(100% - 166px);
	max-width: 210px;
}
.team-members .member a {
	text-decoration: none;
	transition: all 0.5s;
}
.team-members .member .image img {
	display: inline-block;
	margin: 0;
	border-radius: 50%;
	border: solid 1px #ccc;
	width: 150px;
	height: 150px;
	object-fit: cover;
	filter: grayscale(1);
	transition: all 0.5s;
}
.team-members .member > a:hover img {
	filter: grayscale(0);
}
.team-members .member .info span {
	display: block;
	text-decoration: none;
}
.team-members .member .name {
	font-weight: 600;
	font-size: 1.15em;
}







/**** articles section *****/
#articles {
	overflow: hidden;
}
#articles .content-intro {
	margin: 20px 0 40px;
}
#articles .content-intro .heading {
	display: inline-block;
	margin: 0;
	vertical-align: middle;
}
#articles .content-intro .button {
	margin: 0 16px;
}
.excerpt.post-content,
.single-post .post-content {
	font-family: Lora, serif;
	font-weight: 400;
}
.articles-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
}
.articles-list .article {
	margin: 0 40px 40px 0;
	width: 300px;
	overflow: hidden;
}
.articles-list .article .thumb {
	margin: -30px -30px 20px;
	position: relative;
	display: block;
	background: #ddd;
}
.articles-list .article .thumb::before {
	display: block;
	padding: 60% 0 0;
	content: " ";
}
.articles-list .article .thumb a,
.articles-list .article .thumb img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.articles-list .article .meta a {
	text-decoration: none;
}
.articles-list .article .title {
	display: block;
	font-weight: 600;
	text-decoration: none;
}
.articles-list .article p {
	margin: 8px 0;
}
.articles-list .article .date {
	font-size: 0.8em;
	color: #888;
}

#articles .owl-carousel .owl-stage-outer {
	overflow: visible;
}
.articles-list.owl-loaded .owl-stage {
	display: flex;
}
.articles-list.owl-loaded .article {
	margin-bottom: 0;
	height: 100%;
	width: auto;
}
.articles-list.owl-loaded .video.thumb a::before {
	margin: -20px 0 0 -20px;
	width: 40px;
	height: 40px;
}
.articles-list.owl-loaded .video.thumb a::after {
	margin: -10px 0 0 -4px;
	border-width: 10px;
	border-left-width: 14px;
}
section .owl-carousel button.owl-dot {
	display: inline-block;
	margin: 0 5px;
	border-radius: 50%;
	background: #bbb;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	transition: all 0.5s;
}
section .owl-carousel .owl-dot.active,
section .owl-carousel .owl-dot:hover {
	background: #777;
}
section .owl-carousel .owl-dot.active {
	transform: scale(1.15);
}
section .owl-carousel .owl-dots,
section .owl-carousel .owl-nav {
	position: relative;
	margin: 20px auto 0;
	text-align: center;
	max-width: 300px;
}
section .owl-carousel .owl-dots {
	padding: 0 70px;
	line-height: 50px;
}
section .owl-carousel .owl-nav button.owl-next,
section .owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	margin: 0 8px;
	border-radius: 80px;
	background: #eee;
	color: #777;
	text-align: center;
	line-height: 50px;
	width: 50px;
	height: 50px;
	transition: all 0.4s;
	z-index: 2;
}
section .owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 0;
}
section .owl-carousel .owl-nav button:hover {
	color: #555;
}
section .owl-carousel .owl-next::after,
section .owl-carousel .owl-prev::after {
	display: inline-block;
	margin: 0 -3px 0 0;
	border: solid 6px transparent;
	border-left: solid 8px;
	border-right: none;
	vertical-align: middle;
	content: " ";
}
section .owl-carousel .owl-prev::after {
	margin: 0 0 0 -3px;
	border-right: solid 8px;
	border-left: none;
}
section .owl-carousel .owl-nav button.disabled {
	color: #999;
	opacity: 0.5;
}
@media screen and (max-width: 900px) {
	.articles-list.owl-carousel .owl-dots {
		display: none;
	}
	section .owl-carousel .owl-nav button.owl-next,
	section .owl-carousel .owl-nav button.owl-prev {
		position: static;
	}
}



/**** topics, etc. nav ****/
.topics-nav {
	margin: 20px 0;
	border-bottom: solid 1px var(--border-color-medium);
}
.topics-nav ul,
.nav-tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
	white-space: nowrap;
	overflow: auto;
}
.topics-nav li {
	display: inline-block;
}
.topics-nav a {
	display: inline-block;
	margin: 0 4px;
	padding: 10px 16px;
	text-decoration: none;
	transition: all 0.4s;
}
.topics-nav .active a,
.topics-nav .current-menu-item a,
.topics-nav a.active,
.topics-nav a:hover,
.topics-nav a:active,
.topics-nav a:focus {
	border-bottom: solid 4px;
}








/**********************
 * Archive
 **********************/
#archive_content {
	display: flex;
	--gap: 30px;
	gap: var(--gap);
	justify-content: center;
	margin: 50px 0 0;
}
#archive_content .nav-col {
	width: 260px;
}
#archive_content .filter-col {
	width: 150px;
}
#archive_content .articles-col {
	width: calc(100% - 410px - (2 * var(--gap)));
}
#archive_content .sub-nav li {
	margin: 6px 0;
}
#archive_content .sub-nav .current-menu-item a {
	font-weight: 600;
}
.articles-archive .article-preview {
	gap: 20px;
}
.articles-archive .article-preview .thumb-col {
	width: calc(30% - 20px);
}
.articles-archive .article-preview .details-col {
	width: 70%;
}
.articles-archive .article-preview .title {
	font-size: 1.25em;
}
.article-preview .category,
.article-preview .category a,
.post .category,
.post .category a {
	text-decoration: none;
	color: var(--secondary-copy-color, #726A60);
}
.select-box {
	display: inline-block;
	margin: 0;
	padding: 0.8em 1.8em .7em .8em;
	box-sizing: border-box;
	border: 1px solid #888;
	border-radius: 6px;
	box-shadow: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url(images/icon-chevron-down.svg), linear-gradient(to bottom, #fff 0%, #fff 100%);
	background-size: .95em auto, 100%;
	background-repeat: no-repeat,repeat;
	background-position: right .7em top 50%,0 0;
	font-size: 14px;
	font-family: inherit;
	font-weight: 500;
	color: #555;
	line-height: 1.3;
	width: 100%;
	max-width: 100%;
}
.select-box:focus {
	color: #333;
}

.page-nav {
	margin: 40px 0 20px;
	text-align: center;
}
.page-nav .pagination {
	display: block;
}
.page-nav .screen-reader-text {
	display: none;
}
.page-nav a.page-numbers {
	display: inline-block;
	margin: 0 4px;
	padding: 2px 10px;
	border: solid 1px;
	border-radius: 4px;
	text-decoration: none;
}
.page-nav a.prev,
.page-nav a.next {
	border: none;
}
.page-nav .prev::before,
.page-nav .next::after {
	display: inline-block;
	margin: -2px 4px 0;
	background: url(images/icon-arrow-left.svg) 50% 50% / contain no-repeat;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	content: "";
}
.page-nav .next::after {
	transform: rotate(180deg);
}
.page-nav .current {
	font-weight: 600;
}

#archive_content.author-archive-content {
	margin: 0 auto;
	max-width: 840px;
}
#archive_content.author-archive-content .articles-col {
	width: 100%;
}
.author-archive-content .member-info {
	margin: 0 0 50px;
}
.team-member-header.team-members {
	margin: 0;
}
.team-member-header .member {
	font-size: 1em;
}
.team-member-header .member,
.team-member-header .member > *,
.team-member-header .member .info {
	display: block;
	text-align: center;
	width: 100%;
	max-width: 100%;
}
.team-member-header .member .info {
	margin: 4px 0 8px;
	line-height: 1.3;
}
.team-member-header .member .name {
	font-size: 1.3em;
}
.team-member-header .member .image {
	width: 100%;
}
.team-member-header .member .image img {
	filter: none;
}
.team-member-header .social a {
	display: inline-block;
	margin: 0 4px;
}

@media (min-width: 850.1px) {
	#archive_content .nav-col .sub-menu {
		display: block;
		position: static;
		margin: 6px 0 0;
		padding: 0;
		border: none;
		box-shadow: none;
		background: transparent;
		width: auto;
	}
}
@media (max-width: 850px) {
	#archive_content {
		display: block;
	}
	#archive_content .nav-col {
		position: relative;
		margin: 0 0 22px;
	}
	#archive_content .nav-col .heading {
		padding-bottom: 6px;
	}
	#archive_content .nav-col .heading::after {
		display: inline-block;
		margin: -4px 10px 0 16px;
		border: solid 2px;
		border-top: none;
		border-left: none;
		width: 10px;
		height: 10px;
		vertical-align: middle;
		transform: rotate(45deg);
		transform-origin: top center;
		content: " ";
	}
	#archive_content .nav-col .sub-nav {
		display: none;
		position: absolute;
		top: 99%;
		left: 0;
		margin: 0;
	}
	#archive_content .nav-col:hover .sub-menu {
		display: block;
		animation: 500ms submenu 1 ease;
	}
	#archive_content .articles-col {
		margin: 10px auto;
		width: 100%;
		max-width: 600px;
	}
	#archive_content .filter-col {
		display: none;
	}
}
@media (max-width: 750px) {
	.page-nav .page-numbers:not(.prev, .next) {
		display: none;
	}
}



/**********************
 * Reports pages
 **********************/
.reports-page-content {
	padding-bottom: 0;
}
.single-page .post.report-content {
	max-width: 100%;
}
section#sharing_reports {
	padding: 12px 0;
}
.sharing-reports {
	text-align: center;
}
.sharing-reports p {
	margin: 20px auto;
	max-width: 700px;
}
.report-sub-page-content {
	margin: 50px auto 20px;
	max-width: 1200px;
}
.report-sub-page-content .post-content p {
	width: 100%;
	max-width: 1000px;
}



/**********************
 * General post/page content
 **********************/
.single-page .post {
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
}
.post .post-content {
	overflow: auto;
}
.post-content img,
.post-content video,
.post-content iframe,
.post-content table,
.post-content div,
.post-content * {
	max-width: 100%;
}
.post-content img,
.post-content video {
	height: auto;
}
.post-content ul {
	list-style: disc;
	padding: 0 0 0 20px;
}

.post-content a {
	color: var(--rdc-red);
	text-decoration: none;
}
.post-content table td {
	padding: 6px;
	border-bottom: solid 1px #ddd;
}

.team-content.post-content {
	margin: 0 auto;
	max-width: 800px;
}

.error-page .container {
	max-width: 850px;
}

.related-posts .article-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.related-posts .article-list .article-preview {
	margin: 20px 0 0;
	width: calc(50% - 14px);
}
.related-posts .article-preview .thumb-col {
	width: 40%;
}
.related-posts .thumb-col .image.box {
	width: 100%;
}
/*.related-posts .article-preview .thumb-col img {
	aspect-ratio: 5/3;
	object-fit: cover;
	width: 100%;
}*/
.related-posts .article-preview .details-col {
	width: calc(60% - 22px);
}
@media (max-width: 800px) {
	.related-posts .article-list .article-preview {
		width: 100%;
	}
}
@media (max-width: 500px) {
	.related-posts .article-preview .details-col {
		font-size: 0.8em;
	}
}







/**********************
 * Misc. styling for some widgets, etc.
 **********************/
.post #bioRowOne .so-widget-image,
.author-avatar img {
	border-radius: 50%;
}
.post #bioRowOne .so-widget-image {
	width: 200px;
	height: 200px;
	object-fit: cover;
}
.bioRow .panel-grid-cell {
	padding: 0 10px 20px 10px;
}
.page-template-bio-page .post {
	max-width: 100%;
}

.panel-grid-cell .widget-title,
.author .author-meta h4 {
	margin: 4px 0 0;
	font-family: Poppins, Roboto, sans-serif;
	font-weight: 700;
}
.author .author-meta a {
	text-decoration: none;
}
.author-recent-post-slider {
	list-style: none !important;
	padding: 0 !important;
}
.author-recent-post-slider li {
	margin: 20px 0;
}
.author-recent-post-slider h4 {
	margin: 4px 0;
	font-size: 16px;
}
.author-recent-post-slider h4 a {
	text-decoration: none;
}

.portfolio-gallery-content .colorbox_grouping {
	padding: 30px;
	border: none;
	border-radius: 20px;
	background: #f7f7f7;
}
.portfolio-gallery-content .portelement div.right-block .titleBlock h3 {
	font-weight: bold;
	color: #000;
}
.portfolio-gallery-content .portelement div.right-block .button-block a,
.portfolio-gallery-content .portelement div.right-block .button-block a:link,
.portfolio-gallery-content .portelement div.right-block .button-block a:visited,
.portfolio-gallery-content .portelement div.right-block .button-block a:hover {
	border: none;
	border-radius: 50px;
	background: var(--rdc-red);
	color: #fff;
}
.portfolio-gallery-content .portelement div.right-block .button-block a:hover {
	background: #b90208;
}

#mc_embed_signup input.email {
	padding: 14px 16px;
	border: solid 1px #ddd;
	border-radius: 4px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
	font: inherit;
	font-size: 16px;
	width: 250px;
}
#mc_embed_signup input.email:focus {
	border-color: #bcbcbc;
}

/* bootstrap setting conflicts with modals from global header/footer */
.modal-dialog {
	pointer-events: initial;
}

/* hide dynamically inserted tracking image */
img[src*="pixel.locker2.com"] {
	display: none;
}













@media (max-width: 1150px) {
	.team-members {
		justify-content: center;
	}
	.team-members .member,
	.team-members .member > * {
		display: block;
		text-align: center;
	}
	.team-members .member {
		width: 32%;
	}
	.team-members .member .image,
	.team-members .member .info {
		margin: 0 auto;
		width: 100%;
		max-width: 210px;
	}
}


@media screen and (max-width: 1100px) {

	.box:not(.image) {
		padding: 28px;
	}

	#featured_reports, #real_estate_data, #articles, #team, #team_tweets {
		overflow: hidden;
	}

	.data-slides-section .overview-col {
		margin-left: 0;
		width: 35%;
	}
	.data-slides-section .data-col {
		width: 65%;
	}
}

@media screen and (max-width: 991.9px) {
	h1, .primary.heading, .single-post .post-title {
		font-size: 28px;
	}
	h4, h4.heading, h5, h5.heading, .sub.heading {
		font-size: 18px;
	}
	h2, .secondary.heading {
		font-size: 24px;
	}


	.weekly-update .update-info {
		position: static;
		color: inherit;
	}
	.weekly-update .update-info .date {
		background: #ddd;
	}
	.weekly-update .thumb {
		margin: 20px 0;
	}
	.weekly-update .desc .cta {
		margin-top: 20px;
		text-align: center;
		order: 2;
	}


	.ticker .current-location .metro {
		display: none;
	}


	.data-slides-section .overview-col,
	.data-slides-section .data-col {
		text-align: center;
		width: 100%;
	}
	.data-slides-section .overview-col {
		margin: 0 auto;
		max-width: 600px;
	}
	.channel-details .overview-col {
		margin: 0 auto;
		max-width: 700px;
	}
	.channel-details .overview-col .info-col {
		text-align: left;
	}
	#success_channels .content-header .heading {
		max-width: 100%;
	}

}


@media (max-width: 900px) {
	.featured-reports .report-item .desc {
		margin-left: auto;
		margin-right: auto;
		max-width: 250px;
	}
	.featured-reports .report-item .thumb {
		margin: 0 auto;
		max-width: 400px;
	}
}


@media (max-width: 880px) {
	#header {
		overflow: hidden;
	}
	#header .container {
		position: relative;
	}
	#header .nav-col {
		position: relative;
		width: 100%;
		z-index: 2;
	}
	#header .search-col {
		position: absolute;
		top: -12px;
		right: 0;
		padding: 0 12px;
		width: 66px;
		z-index: 2;
		transition: all 0.4s;
	}
	#header .search-col .text-box {
		transition: all 0.6s;
		opacity: 0;
	}
	#header .search-col.expanded {
		margin-top: 0;
		width: 100%;
	}
	#header .search-col .button {
		background: transparent;
		color: #000;
	}
	#header .search-col .button path {
		fill: currentColor;
	}
	#header .search-col.expanded .text-box {
		opacity: 1;
	}
	#header .search-col .mobile-button {
		display: block;
		transition: all 0.4s;
	}
	#header .search-col.expanded .mobile-button {
		margin-top: -40px;
		opacity: 1;
	}
}


@media screen and (max-width: 767.9px) {

	main {
		font-size: 16px;
	}
	main > section {
		padding: 30px 0;
	}



	.ticker {
		padding: 6px 0;
		font-size: 14px;
		/*height: 43px;*/
	}
	.ticker .ticker-col {
		padding: 2px 10px;
		line-height: 24px;
	}
	.ticker .more a span {
		display: none;
	}
	.ticker .more a::after {
		margin: -4px 4px 0 6px;
	}
	.ticker .location .icon {
		margin: 0;
		width: 18px;
	}
	.ticker .location .ticker-search {
		left: 32px;
	}
	.ticker-search .text-box {
		padding: 0 12px 0 0;
		font-size: 13px;
	}


	#hero .box2 {
		margin: 0 auto 20px;
		max-width: 500px;
		height: auto;
	}

	#sign_up {
		text-align: center;
	}

	#featured_reports .nav-col,
	#featured_reports .info-col {
		margin: 0 auto;
		max-width: 500px;
	}

	.featured-reports .report-item {
		padding: 0;
	}

}


@media (max-width: 650px) {
	#header_nav ul {
		display: block;
		padding-bottom: 8px;
		text-align: center;
		white-space: nowrap;
		overflow: auto;
	}
	#header_nav li {
		display: inline-block;
		margin: 0 0.5em;
	}
}


@media (max-width: 600px) {
	.team-members {
		display: block;
	}
	.team-members .member {
		width: 100%;
	}
}


@media screen and (max-width: 575.9px) {
	#articles .content-intro {
		text-align: center;
	}
	#articles .content-intro .heading {
		display: block;
		margin: 0 0 10px;
	}
}


@media screen and (max-width: 500px) {

	.box {
		padding: 24px 20px 20px;
	}

	.ticker .number {
		padding: 0 4px;
	}
	.ticker .number, .ticker .change {
		font-size: 1em;
	}
}

@media (max-width: 499.9px) {
	.ticker .stats .item {
		border-right: none;
	}
	.ticker .more .label {
		display: none;
	}
}
