/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body, * {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
}

p {
	margin: 0 0 20px;
}

p:last-child {
	margin-bottom: 0;
}

.hr {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin: 10px 0 20px 0;
}

.hr hr {
	display: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Responsive Grid Layout ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.responsive-grid-layout-row .col {
	margin-bottom: 30px;
}

.responsive-grid-layout-row .col:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.responsive-grid-layout-row {
		display: flex;
		flex-wrap: wrap;
		margin: 0 0 30px;
	}

	.responsive-grid-layout-row:last-child {
		margin-bottom: 0;
	}

	.responsive-grid-layout-row .col {
		margin: 0 30px 0 0;
		width: calc(50% - 15px);
	}

	.responsive-grid-layout-row .col:last-child {
		margin-right: 0;
	}

	.responsive-grid-layout-row .col img,
	.responsive-grid-layout-row .col iframe {
		max-width: 100%;
	}

	.responsive-grid-layout-row .col img {
		height: auto !important;
	}

	.responsive-grid-layout-row.three-column .col {
		width: calc((100% / 3) - 20px);
	}

	.responsive-grid-layout-row.one-third-two-thirds-columns .col,
	.responsive-grid-layout-row.two-thirds-one-third-columns .col.last {
		width: calc((100% / 3) - 15px);
	}

	.responsive-grid-layout-row.four-column .col {
		width: calc(25% - 22.5px);
	}

	.responsive-grid-layout-row.one-third-two-thirds-columns .col.last,
	.responsive-grid-layout-row.two-thirds-one-third-columns .col.first {
		width: calc(((100% / 3) * 2) - 15px);
	}

	.responsive-grid-layout-row.five-column .col {
		width: calc(20% - 24px);
	}

	.responsive-grid-layout-row.eighty-twenty .col,
	.responsive-grid-layout-row.twenty-eighty .col.last {
		width: calc(80% - 15px);
	}

	.responsive-grid-layout-row.eighty-twenty .col.last,
	.responsive-grid-layout-row.twenty-eighty .col {
		width: calc(20% - 15px);
	}

	.responsive-grid-layout-row.fifteen-thirty-five .col,
	.responsive-grid-layout-row.thirty-five-fifteen .col.first {
		width: calc(35% - 30px);
	}

	.responsive-grid-layout-row.fifteen-thirty-five .col.first,
	.responsive-grid-layout-row.thirty-five-fifteen .col {
		width: calc(15% - 15px);
	}
}

@media (min-width: 768px) and (max-width: 900px) {
	.responsive-grid-layout-row.five-column .col {
		margin: 0 30px 30px 0;
		width: calc((100% / 3) - 20px);
	}
	
	.responsive-grid-layout-row.five-column .col:nth-child(4),
	.responsive-grid-layout-row.five-column .col:nth-child(5) {
		margin-bottom: 0;
		width: calc(50% - 15px);
	}

	.responsive-grid-layout-row.five-column .col:nth-child(3),
	.responsive-grid-layout-row.five-column .col:nth-child(5) {
		margin-right: 0;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* New Responsive Layout ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.ss-section-wrap-inner,
.wrapper {
	margin: 0 auto;
	max-width: 1320px;
}

.page-type-0 .middle-area .wrapper {
	max-width: none;
	margin: 0;
}

.ss-content-block {
	margin: 0 0 30px;
}

.ss-content-block.has-background-color {
	padding: 30px;
}

.ss-content-block img {
	height: auto !important;
	max-width: 100%;
}

@media (max-width: 768px) {
	.ss-section-wrap-inner.has-ss-image-block {
		display: flex;
		flex-wrap: wrap;
	}

	.ss-section-wrap-inner.has-ss-image-block .ss-content-block {
		order: 1;
		width: 100%;
	}

	.ss-section-wrap-inner.has-ss-image-block.do-mobile-swap .ss-content-block.ss-image-block:last-child {
		order: 0;
	}

	.ss-section-wrap-inner.has-ss-image-block.do-mobile-swap .ss-content-block.ss-image-block img {
		min-width: 100%;
	}
}

@media (min-width: 768px) {
	.ss-section-wrap-inner {
		display: flex;
		flex-wrap: wrap;
	}

	.ss-section-wrap.align-center .ss-section-wrap-inner {
		justify-content: center;
	}

	.ss-section-wrap.align-right .ss-section-wrap-inner {
		justify-content: flex-end;
	}

	.ss-content-block {
		margin-bottom: 30px;
		margin-left: 15px;
		margin-right: 15px;
		width: calc(100% - 30px);
	}

	.ss-content-block.col-2 {
		width: calc(50% - 30px);
	}
	
	.ss-content-block.col-2-3 {
		width: calc(100% * 2/3 - 30px);
	}	
	
	.ss-content-block.col-3 {
		width: calc(100% * 1/3 - 30px);
	}	

	.ss-content-block.col-4 {
		width: calc(25% - 30px);
	}

	.ss-content-block.col-5 {
		width: calc(20% - 30px);
	}

	.ss-content-block.col-2-5 {
		width: calc(40% - 30px);
	}

	.ss-content-block.col-3-5 {
		width: calc(60% - 30px);
	}

	.ss-content-block.col-4-5 {
		width: calc(80% - 30px);
	}

	.ss-content-block.col-3-4 {
		width: calc(75% - 30px);
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* List Items ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.list-items {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}

.list-items > li {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 20px 0;
}

.list-items > li:last-child {
	border-bottom: 0;
}

.list-items > li .list-item > ul,
.list-items > li .list-item > div > ul,
.list-items > li table ul {
	list-style-type: disc;
	margin-bottom: 15px;
}

.list-items > li .list-item > ul:last-child,
.list-items > li .list-item > div > ul:last-child {
	margin-bottom: 0;
}

.list-items li .hr {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin: 20px 0;
}

.list-items li .hr hr {
	display: none;
}

.detail-page-banner {
	display: none;
}

h2.title {
	font-size: 200%;
}

h3.date {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	font-size: 100%;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

.list-items li .content {
	float: left;
}

.list-items li .read-more-wrap {
	float: right;
	width: 100px;
}

.list-item .thumbnail {
	float: left;
	margin: 0 20px 20px 0;
	width: 30%;
}

@media (max-width: 560px) {
	.list-item .thumbnail {
		float: none;
		margin: 0 0 20px 0;
		width: auto;
	}
}

.list-item .thumbnail img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}


/* ------------------------------------------------------------------------------------------------------------------------ */
/* Login Page Form -------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------ */
.login-page-form,
.additional-login-page-content,
.logout-wrap,
#frontend-edit-crm-member-profile-form {
	max-width: 1320px;
	margin: 60px auto;
}

.login-page-form > input {
	display: inline-block;
	margin: 0 10px 10px 0;
}

.login-page-form span {
	display: inline-block;
	margin: 0 10px 10px 0;
}

.logout-wrap {
	text-align: right;
	margin-bottom: 20px;
	margin-top: 0;
}

.logout-wrap a {
	margin-left: 7px;
}

#frontend-edit-crm-member-profile-form {
	margin-top: 0;
}

#frontend-edit-crm-member-profile-form input[type=text], 
#frontend-edit-crm-member-profile-form input[type=password], 
#frontend-edit-crm-member-profile-form input[type=email], 
#frontend-edit-crm-member-profile-form select, 
#frontend-edit-crm-member-profile-form textarea {
	width: auto;
}

#frontend-edit-crm-member-profile-form .button {
	margin-right: 5px;
}

@media (max-width: 600px) {
	.login-page-form input[type=text],
	.login-page-form input[type=email],
	.login-page-form input[type=password],
	.login-page-form input.button,
	#frontend-edit-crm-member-profile-form .button {
		display: block;
		margin: 0 0 10px 0;
		width: 100%;
	}

	.logout-wrap a {
		padding: 10px 24px;
	}

	#frontend-edit-crm-member-profile-form tr td {
		box-sizing: border-box;
		display: block;
		width: 100%;
	}

	#frontend-edit-crm-member-profile-form tr td:first-child {
	    border: 0;
	    padding-bottom: 0;
	}

	#frontend-edit-crm-member-profile-form input[type=text],
	#frontend-edit-crm-member-profile-form input[type=email],
	#frontend-edit-crm-member-profile-form input[type=password],
	#frontend-edit-crm-member-profile-form select {
		width: 100%;
	}

	#frontend-edit-crm-member-profile-form input[type=text].cellphone {
		width: auto;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Blog Items ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.list-items.blog-items > li {
	padding: 18px 0;
}

.news-items .news-item h3.date,
.blog-items .blog-item h3.date {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.blog-items .blog-item .content {
	float: none;
	max-width: 100%;
	margin-bottom: 15px;
	width: auto;
}

.social-share-links,
.news.detail-page .social-share-links,
.news-items .news-item .social-share-links,
.blog.detail-page .social-share-links,
.blog-items .blog-item .social-share-links {
	margin: 10px 0 0 0;
}

.blog.detail-page .social-share-links {
	padding: 0;
}

.social-share-links ul,
.news.detail-page .social-share-links ul,
.news-items .news-item .social-share-links ul,
.blog.detail-page .social-share-links ul,
.blog-items .blog-item .social-share-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-share-links ul li,
.news.detail-page .social-share-links ul li,
.news-items .news-item .social-share-links ul li,
.blog.detail-page .social-share-links ul li,
.blog-items .blog-item .social-share-links ul li {
	display: inline-block;
	padding-right: 5px;
}

* + html .social-share-links ul li,
* + html .news.detail-page .social-share-links ul li,
* + html .news-items .news-item .social-share-links ul li,
* + html .blog.detail-page .social-share-links ul li,
* + html .blog-items .blog-item .social-share-links ul li {
	display: inline;
}

.social-share-links ul li a:hover,
.news-items .news-item .social-share-links ul li a:hover,
.blog-items .blog-item .social-share-links ul li a:hover {
	opacity: .7;
}

.social-share-links ul li img {
	display: block;
}

.news.detail-page .hr hr,
.news-items .news-item .hr hr,
.blog.detail-page .hr hr,
.blog-items .blog-item .hr hr {
	display: none;
}

.list-items.list-items.blog-items.list-mode .blog-item .posted-in {
	display: none;
}

.blog.detail-page h3.date {
	border: 0;
	padding: 0;
}

.blog.detail-page .ss-section-wrap-inner {
	margin-left: auto;
	margin-right: auto;
}

.detail-page.news > .hr {
	margin-bottom: 25px;
}

.blog-right-column > div {
	margin-bottom: 30px;
}

.blog-right-column h3 {
	border-bottom: 1px solid rgba(0,0,0,0.15);
	font-size: 150%;
	margin: 0 0 10px 0;
	padding: 0 0 5px 0;
}

.blog-right-column p {
	margin: 0;
}

.blog-right-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-right-column ul li {
 	padding: 0 0 5px 0;
}

.blog-right-column ul.recent-articles li a .date:after {
	content: ' - ';
}

.comments-heading {
	border-bottom: 1px solid #e5e5e5;
	color: #555555;
	margin: 10px 0 20px 0;
	padding-bottom: 5px;
}

.blog-comments {
	padding: 20px 0;
}

.blog-comment .date {
	color: #9c9d9d;
	font-size: 12px;
}

.blog-comment .content {
	border-bottom: 1px solid #f2f2f2;
	padding: 10px 0;
}

.posted-in,
p.now-viewing {
	background: #f5f2f1;
	border: 1px solid #b9b9b9;
	display: block;
	margin: 0 0 20px 0;
	padding: 10px;
}

.detail-page .prev-next-link-wrap a {
	margin-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.detail-page .prev-next-link-wrap .post-title {
	display: none;
}

.blog-intro-text-wrap {
	margin-bottom: 30px;
}

@media (min-width: 550px) {
	.detail-page .prev-next-link-wrap a {
		margin-bottom: 0;
		width: auto;
	}
	.detail-page .prev-next-link-wrap a:last-child {
		margin-bottom: 0;
	}

	.detail-page .prev-next-link-wrap .post-title {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	.blog-left-column {
		float: left;
		width: 75%;
	}

	.blog-right-column {
		float: right;
		margin-top: 0;
		width: 20%;
	}
}

.additional-content-box-list-items {
	border-top: 1px solid rgba(0,0,0,0.1);
	margin-top: 40px;
	padding-top: 20px;
}

.additional-content-box-list-items-wrap .content-box-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.additional-content-box-list-items-wrap .content-box-list li {
	display: flex;
	margin: 0 20px 20px 0;
	width: calc(25% - 15px);
}

.additional-content-box-list-items-wrap .content-box-list li a {
	background: #fff;
	box-shadow: 0 6px 15px rgba(0,0,0,0.10);
	display: block;
	width: 100%;
}

@media (min-width: 851px) {
	.additional-content-box-list-items-wrap .content-box-list li:nth-child(4n) {
		margin-right: 0;
	}
}

.additional-content-box-list-items-wrap .content-box-list .thumbnail {
	float: none;
	height: 200px;
	padding: 0;
	width: 100%;
}

.additional-content-box-list-items-wrap .content-box-list .thumbnail img {
	height: 100%;	
	object-fit: cover;
	width: 100%;
}

.additional-content-box-list-items-wrap .content-box-list li a .date {
	margin-top: 10px;
}

.additional-content-box-list-items-wrap .content-box-list li a {
	color: inherit;
	padding-bottom: 20px;
}

.additional-content-box-list-items-wrap .content-box-list li a .date,
.additional-content-box-list-items-wrap .content-box-list li a .title,
.additional-content-box-list-items-wrap .content-box-list li a .abstract,
.additional-content-box-list-items-wrap .content-box-list li a .see-details {
	display: block;
	float: none;
	padding: 5px 15px;
	width: 100%;
}

.additional-content-box-list-items-wrap .content-box-list li a .date {
	color: #333;
	font-size: 90%;
}

.additional-content-box-list-items-wrap .content-box-list li a .date strong {
	margin-left: 4px;
	font-weight: normal;
}

.additional-content-box-list-items-wrap .content-box-list li a .title {
	font-weight: bold;
	font-size: 120%;
}

.additional-content-box-list-items-wrap .content-box-list li a .see-details { 
	font-size: 90%;
	text-decoration: underline;
}

.additional-content-box-list-items-wrap .content-box-list.portfolio-builder li a .see-details {
	display: inline-block;
	text-decoration: none;
	width: auto;
}

@media (max-width: 850px) {
	.additional-content-box-list-items-wrap .content-box-list li {
		margin-bottom: 20px;
		width: calc(50% - 10px);
	}
}

@media (min-width: 501px) and (max-width: 850px) {
	.additional-content-box-list-items-wrap .content-box-list li:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 500px) {
	.additional-content-box-list-items-wrap .content-box-list li {
		margin: 0 0 20px 0;
		width: 100%;
	}
}

/** Blog Grid Mode **/
.list-items.blog-items.grid-mode {
	display: flex;
	flex-wrap: wrap;
}

.list-items.blog-items.grid-mode > li {
	background: #ffff;
	box-shadow: 0 5px 12px rgba(0,0,0,0.10);
	display: flex;
	margin: 0 20px 20px 0;
	padding: 0;
	vertical-align: top;
	width: calc((100% / 3) - 14px);
}

@media (min-width: 851px) {
	.list-items.blog-items.grid-mode > li:nth-child(3n) {
		margin-right: 0;
	}
}

.list-items.blog-items.grid-mode .list-item.blog-item {
	display: flex;
	flex-flow: column nowrap;
}

.list-items.blog-items.grid-mode .list-item.blog-item .thumbnail {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	float: none;
	height: 0;
	margin: 0;
	min-height: 0;
	padding-top: 70%;
	width: 100%;
}

.list-items.blog-items.grid-mode .list-item.blog-item .thumbnail img {
	display: none;
}

.list-items.blog-items.grid-mode .list-item.blog-item .blog-grid-item-content-wrap {
	padding: 25px;
}

.list-items.list-items.blog-items.grid-mode .posted-in {
	border: 0;
	display: block;
	font-size: 90%;
	margin: auto 0 0 0;
}

.reading-time {
	color: #808080;
	font-style: italic;
	margin: 5px 0;
}

@media (min-width: 501px) and (max-width: 850px) {
	.list-items.blog-items.grid-mode > li {
		width: calc(50% - 10px);
	}

	.list-items.blog-items.grid-mode > li:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 500px) {
	.list-items.blog-items.grid-mode {
		display: block;
	}

	.list-items.blog-items.grid-mode > li {
		display: block;
		margin: 0 0 20px 0;
		width: 100%;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Blog Comments --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.blog-comment-item {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.blog-comment-item:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.blog-comment-item.inactive {
	opacity: .5;
	border-left: 5px solid #333;
	padding-left: 15px;
}

.blog-comment-item.inactive:hover {
	opacity: 1;
}

.blog-comment-item .blog-comment-author-and-date-wrap {
	margin-bottom: 5px;
}

.blog-comment-item .blog-comment-author-and-date-wrap .blog-comment-author-info {
	display: inline-block;
	font-weight: 700;
}

.blog-comment-item .blog-comment-author-and-date-wrap .blog-comment-author-info .blog-comment-author-parent-name {
	background: url(/images/shared/arrow-right-solid.svg) 0 50% no-repeat;
	background-size: 10px auto;
	display: inline-block;
	margin-left: 2px;
	padding-left: 15px;
	color: #687a86;
	font-size: 12px;
}

.blog-comment-item .blog-comment-author-and-date-wrap .blog-comment-date {
	color: #656c7a;
	display: inline-block;
}

.blog-comment-item .blog-comment-author-and-date-wrap .blog-comment-date .blog-comment-date-bullet {
	display: inline-block;
	margin-left: 5px;
}

.blog-comment-item .blog-comment-body {
	line-height: 21px;
	margin-bottom: 5px;
}

.blog-comment-item .blog-comments-actions-wrap {
	color: #656c7a;
	font-size: 12px;
}

.blog-comment-item .blog-comments-actions-wrap .blog-comment-action-bullet {
	display: inline-block;
	margin: 0 5px;
}

.blog-comment-item .blog-comments-actions-wrap a {
	color: #656c7a;
	display: inline-block;
}

.blog-comment-item.show-comments-form > .blog-comments-actions-wrap a.reply-link {
	color: #000;
	font-weight: 700;
}

.blog-comment-item .blog-comments-actions-wrap a:hover {
	color: #000;
}

.blog-comment-item .blog-comments-actions-wrap a:last-child {

}

.blog-comment-item .comment-children {
	border-top: 1px solid rgba(0,0,0,0.1);
	margin-top: 20px;
	margin-left: 50px;
	padding-top: 20px;
}

.blog-comment-item .blog-comment-form-wrap {
	margin-left: 50px;
	padding-top: 10px;
}

.show-comments-form > .parent-comment-comment-form-container .blog-comment-form-wrap {
	display: block;
}

.blog-comment-form-wrap form {

}

.blog-comment-form-wrap .field-wrap {
	margin-bottom: 5px;
}

.blog-comment-form-wrap .field-wrap label {
	display: none;
}

.blog-comment-form-wrap .field-wrap input,
.blog-comment-form-wrap .field-wrap textarea {
	max-width: 100%;
	width: 400px;
}

.blog-comment-form-wrap .field-wrap textarea {
	height: 100px;
}

.blog-comment-form-wrap .submit-wrap {

}

.blog-comment-form-wrap .submit-wrap .button {

}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Resources ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.resource-page-upper-filter-wrap {

}

.resource-page-upper-filter-form {
	margin-bottom: 30px;
}

.resource-page-upper-filter-form .section-filter-wrap,
.resource-page-upper-filter-form .text-search-wrap,
.resource-page-upper-filter-form .submit-wrap {
	display: inline-block;
	margin-right: 20px;
	vertical-align: middle;
}

.resource-page-upper-filter-form .submit-wrap {
	margin-right: 0;
}

.resource-page-upper-filter-form .section-filter-wrap select,
.resource-page-upper-filter-form .text-search-wrap input {
	min-width: 200px;
}

.list-items.resource-items > li {
	border: 0;
	margin: 0 0 30px 0;
	padding: 0;
}

.list-items .list-item.resource-item {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.list-items .list-item.resource-item .file-wrap {
	background-position: -200vw;
	background-repeat: no-repeat;
	order: 0;
}

.list-items .list-item.resource-item > .button {
	order: 1;
}

.list-items .list-item.resource-item h2.title {
	margin: 0;
}

.list-items .list-item.resource-item .hr {
	margin: 10px 0;
	order: 2;
	width: 100%;
}

.list-items .list-item.resource-item h3.date {
	display: none;	
}

.list-items .list-item.resource-item .content {
	float: none;
	order: 3;
	width: 100%;
}

@media (max-width: 800px) {
	.resource-page-upper-filter-form .section-filter-wrap,
	.resource-page-upper-filter-form .text-search-wrap,
	.resource-page-upper-filter-form .submit-wrap {
		display: block;
		margin: 0 0 20px;
		max-width: none;
	}

	.resource-page-upper-filter-form .section-filter-wrap select,
	.resource-page-upper-filter-form .text-search-wrap input {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.list-items .list-item.resource-item > .button {
		display: block;
		margin-top: 20px;
		order: 6;
		width: 100%;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Grid Image Links ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.grid-filters-wrap {
	margin: 0 0 30px;
	text-align: right;
}

.grid-filters-wrap select {
	min-width: 200px;
}

.image-grid-link-items .element-item,
.image-grid-link-items .grid-sizer {
	position: absolute;
	width: calc(100% / 3 - 20px);
}

.image-grid-link-items .gutter-sizer {
	position: absolute;
	width: 30px;
}

.image-grid-link-items .element-item {
	opacity: 0;
	margin-bottom: 25px;
	transition: opacity 0.5s linear;
}

.image-grid-link-items.loaded .element-item {
	opacity: 1;
}

.image-grid-link-items .list-item.image-link-grid-item {
	text-decoration: none;
}

.image-grid-link-items .list-item.image-link-grid-item .image-wrap {
	background: #f5f5f5 50% 50% no-repeat;
	background-size: cover;
	display: block;
	margin-bottom: 10px;
	transition: box-shadow 0.2s ease;
}

.image-grid-link-items .list-item.image-link-grid-item .image-wrap img {
	display: block;
	width: 100%;
}

.image-grid-link-items a.list-item.image-link-grid-item:hover .image-wrap {
	box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap {
	display: block;
}

.image-grid-link-items .list-item.image-link-grid-item .title {
	font-weight: bold;
	display: block;
}

.image-grid-link-items a.list-item.image-link-grid-item .link.button {
	display: none;
}

.image-grid-link-items .list-item.image-link-grid-item .content-wrap {
	color: inherit;
	display: block;
	margin-top: 5px;
	text-decoration: none;
}

.image-grid-link-items a.list-item.image-link-grid-item .cb {
	clear: both;
	display: block;
}

@media (max-width: 768px) {
	.image-grid-link-items .element-item,
	.image-grid-link-items .grid-sizer {
		width: calc(50% - 15px);
	}
}

@media (max-width: 550px) {
	.grid-filters-wrap {
		text-align: center;
	}

	.grid-filters-wrap .selectBox-dropdown {
		width: 100%;
	}

	.image-grid-link-items .element-item,
	.image-grid-link-items .grid-sizer {
		width: 100%;
	}

	.image-grid-link-items .gutter-sizer {
		width: 0;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Member Directory ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.list-items.member-directory-items {
	display: flex;
	flex-wrap: wrap;
}

.list-items.member-directory-items li {
	border: 0;
	margin: 0 25px 35px 0;
	padding: 0;
	width: calc(20% - ((25px / 5) * 4));
}

.list-items.member-directory-items li.no-members-item {
	margin: 0 0 35px 0;
	width: 100%;
}

.list-items.member-directory-items li .image,
.list-items.member-directory-items li .image a,
.list-items.member-directory-items li .image img {
	display: block;
	width: 100%;
}

.list-items.member-directory-items li .image {
	margin-bottom: 10px;
}

.list-items.member-directory-items li .image a {
	transition: box-shadow 0.2s ease;
}

.list-items.member-directory-items li .image a:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.list-items.member-directory-items li h2.title {
	font-size: 130%;
	margin-bottom: 5px;
}

.list-items.member-directory-items li .email,
.list-items.member-directory-items li .view-profile-link {
	display: inline-block;
	font-size: 90%;
}

.list-items.member-directory-items li .email {
	margin-right: 20px;
	position: relative;
}

.list-items.member-directory-items li.has-email-and-profile-link .email:after {
	background: rgba(0, 0, 0, 0.3);
	content: '';
	height: 12px;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}

@media (min-width: 901px) {
	.list-items.member-directory-items li:nth-child(5n) {
		margin-right: 0;
	}
}

@media (max-width: 900px) {
	.list-items.member-directory-items li {
		width: calc((100% / 3) - ((25px / 3) * 2));
	}
}

@media (min-width: 769px) and (max-width: 900px) {
	.list-items.member-directory-items li:nth-child(3n) {
		margin-right: 0;
	}
}

@media (max-width: 768px) {
	.list-items.member-directory-items li {
		width: calc(50% - (25px / 2));
	}
}

@media (min-width: 501px) and (max-width: 768px) {
	.list-items.member-directory-items li:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 500px) {
	.list-items.member-directory-items li {
		margin: 0 0 30px 0;
		width: 100%;
	}
}

@media (max-width: 800px) {
	.page-type-10 form.category-and-window select {
		width: 100%;
	}

	.page-type-10 .text-search-wrap {
		max-width: 100%;
	}
}

/* detail page */
.page-type-10 .main-content .small-action-button:last-child {
	display: none;
}

.detail-page.member-directory {
	display: flex;
	width: 100%;
}

.detail-page.member-directory .image-column {
	margin-right: 50px;
	text-align: center;
	width: 400px;
}

.detail-page.member-directory .image-column .image {
	margin-bottom: 20px;
}

.detail-page.member-directory .image-column img {
	display: block;
	width: 100%;
}

.detail-page.member-directory .info-column {
	flex: 1;
}

.detail-page.member-directory .info-column > h3 {
	font-size: 130%;
	margin: 30px 0 10px 0;
}

.detail-page.member-directory > .cb {
	display: none;
}

@media (max-width: 1023px) {
	.detail-page.member-directory .image-column {
		width: 300px;
	}
}

@media (max-width: 768px) {
	.detail-page.member-directory {
		display: block;
	}
	
	.detail-page.member-directory .image-column {
		margin: 50px 0 30px 0;
		width: auto;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Marketing+ Member Directory ------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.page-type-28 .display-table .button.small {
    padding: 8px 15px;
	white-space: nowrap;
}

.page-type-28 #filter-form .filter select {
	min-width: 200px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Job Board ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.job-board-filter-wrap .text-search-wrap {
	max-width: 50%;
}

.job-board-filter-wrap form {
	display: flex;
	justify-content: space-between;
}

.job-board-filter-wrap .filter-wrap {
	flex: 1;
	margin-right: 10px;
	max-width: 33%;
}

.job-board-filter-wrap .filter-wrap select,
.job-board-filter-wrap .filter-wrap input {
	width: 100%;
}

.job-board-filter-wrap .filter-wrap:last-child {
	margin-right: 0;
}

.job-count-wrap {
	border-bottom: 1px solid #cccccc;
	display: none;
	margin: 15px 0;
	padding-bottom: 15px;
	text-align: center;
}

.job-board-items {
	margin-top: 15px;
}

.job-board-items .list-item {
	box-shadow: 0 0 10px rgba(0,0,0,0.25);
	border: 0;
	margin: 0 0 15px 0;
	line-height: 140%;
	padding: 0;
}

.job-board-items.job-detail-page .list-item {
	background: #fff;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 10px;
	position: relative;
}

.job-board-items .list-item > a {
	align-items: center;
	background-color: #ffffff;
	display: flex;
	min-height: 30px;
	padding: 10px;
	position: relative;
	text-decoration: none;
}

.job-board-items .list-item > a:hover {
	background-color: #f9f9f9;
	text-decoration: none;
}

.job-board-items .list-item .title {
	font-size: 110%;
	font-weight: bold;
	margin-right: 20px;
	min-width: 100px;
	order: 1;
}

.job-board-items .list-item .job_id {
	background: #333333;
	color: #ffffff;
	font-size: 13px;
	margin-right: 20px;
	line-height: inherit !important;
	order: 0;
	min-width: 100px;
	padding: 5px 15px;
	text-align: center;
	text-transform: uppercase;
}

.job-board-items .list-item .job_id .inner {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}

.job-board-items .list-item .info {
	margin-left: auto;
	margin-right: 20px;
	order: 2;
}

.job-board-items .list-item .info > div {
	display: inline-block;
	font-size: 90%;
	margin-right: 30px;
}

.job-board-items .list-item .info > div .field-label {
	color: #797979;
	font-weight: bold;
}

.job-board-items .list-item .view-details-icon.button {
	cursor: pointer;
	display: block;
	font-size: 75%;
	margin-left: auto;
	order: 3;
	text-align: center;
}

.view-details-icon span {
	background: #ffffff;
	left: 50%;
	position: absolute;
	top: 50%;
}

.view-details-icon .l {
	height: 12%;
	margin: -6% 0 0 -20%;
	width: 40%;
}

.view-details-icon .t {
	height: 40%;
	margin: -20% 0 0 -6%;
	width: 12%;
}

.job-board-items .list-item .expand {
	background: #ececec;
	color: #323232;
	display: block;
	font-size: 75%;
	font-weight: 700;
	padding: 10px 20px;
	text-align: center;
	text-transform: uppercase;
}

.job-board-items .list-item .expand {
	display: none;
}

.job-board-items .list-item .expand:after {
	content: '+';
	display: inline-block;
	margin-left: 5px;
}

.job-board-items .list-item .expand.on:after {
	content: '-';
}

.job-board-items .list-item .more-info {
	display: none;
	padding: 15px;
}

.job-form-wrap {
	margin-top: 30px;
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 30px;
}

form.job-form {
	max-width: 800px;
}

form.job-form .field-wrap input.normal {
	width: 100%;
}

.job-form-wrap .submit-wrap {
	clear: both;
}

@media (min-width: 768px) {
	form.job-form .field-wrap {
		float: left;
		width: 47%;
	}

	form.job-form .field-wrap:nth-child(2n+1) {
		float: right;
	}
}

@media (max-width: 1130px) {
	.job-board-filter-wrap form {
		flex-wrap: wrap;
	}

	.job-board-filter-wrap .filter-wrap {
		margin-bottom: 10px;
		max-width: none;
	}

	.job-board-filter-wrap .filter-wrap select,
	.job-board-filter-wrap .filter-wrap input {
		width: 100%;
	}
}

@media (min-width: 1001px) and (max-width: 1130px) {
	.job-board-filter-wrap.col-4 .filter-wrap,
	.job-board-filter-wrap.col-5 .filter-wrap {
		flex: none;
		width: calc(50% - 5px);
	}

	.job-board-filter-wrap.col-4 .filter-wrap:nth-child(2n),
	.job-board-filter-wrap.col-5 .filter-wrap:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 1000px) {
	.job-board-filter-wrap .filter-wrap {
		flex: none;
	}

	.job-board-filter-wrap.col-2 .filter-wrap,
	.job-board-filter-wrap.col-3 .filter-wrap,
	.job-board-filter-wrap.col-4 .filter-wrap,
	.job-board-filter-wrap.col-5 .filter-wrap {
		width: calc(50% - 5px);
	}

	.job-board-filter-wrap.col-2 .filter-wrap:nth-child(2n),
	.job-board-filter-wrap.col-3 .filter-wrap:nth-child(2n),
	.job-board-filter-wrap.col-4 .filter-wrap:nth-child(2n),
	.job-board-filter-wrap.col-5 .filter-wrap:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 768px) {
	.job-board-items.job-detail-page .list-item,
	.job-board-items .list-item a {
		align-items: inherit;
		flex-direction: column;
	}

	.job-board-items .list-item .job_id,
	.job-board-items .list-item .title,
	.job-board-items .list-item .info {
		margin: 0 0 10px 0;
	}
	
	.job-board-items .list-item .title:last-child,
	.job-board-items .list-item .info:last-child {
		margin: 0;
	}

	.job-board-items .list-item .view-details-icon.button {
		margin: 0 auto;
	}
}

@media (max-width: 600px) {
	.job-board-filter-wrap .filter-wrap,
	.job-board-filter-wrap.col-2 .filter-wrap,
	.job-board-filter-wrap.col-3 .filter-wrap,
	.job-board-filter-wrap.col-4 .filter-wrap,
	.job-board-filter-wrap.col-5 .filter-wrap {
		margin: 0 0 10px 0;
		max-width: none;
		width: 100%;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Search Page ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.search-page-form-wrap .results-found {
	border-bottom: 1px solid #c6c6c6;
	clear: both;
	font-weight: bold;
	padding: 20px 0;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Info Table (used on member detail, job boards) ------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.info-table {
	border-collapse: collapse;
	margin: 0 0 10px 0;
	width: 100%;
}

.info-table th {
	color: #555555;
	font-weight: bold;
	padding: 6px 10px;
	text-align: left;
	vertical-align: top;
	width: 100px;
}

.info-table th.full {
	width: auto;
}

.info-table th:first-child,
.info-table td:first-child {
	padding-left: 0;
}

.info-table td {
	padding: 6px 10px;
	vertical-align: top;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Chosen Select Replacement --------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
/* @group Base */
.chosen-container {
	*display: inline;
	-moz-user-select: none;
	-webkit-user-select: none;
	display: inline-block;
	font-size: inherit;
	position: relative;
	user-select: none;
	vertical-align: middle;
	zoom: 1;
}

.chosen-container .chosen-drop {
	background: #fff;
	border-top: 0;
	border: 1px solid #aaa;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
	left: -9999px;
	position: absolute;
	top: 100%;
	width: 100%;
	z-index: 1010;
}

.chosen-container.chosen-drop-up .chosen-drop {
	bottom: 100%;
	top: auto;
}

.chosen-container.chosen-with-drop .chosen-drop {
	left: 0;
}

.chosen-container a {
	cursor: pointer;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
	background: #fff;
	border-radius: 0;
	border: 1px solid #808080;
	box-shadow: none;
	color: #000;
	display: block;
	height:  auto;
	line-height: 100%;
	overflow: hidden;
	padding: 10px;
	position: relative;
	text-decoration: none;
	white-space: nowrap;
}

.chosen-container-single .chosen-default {
	color: #999;
}

.chosen-container-single .chosen-single span {
	display: block;
	margin-right: 26px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
	background: url('/js/jquery/jquery.chosen/chosen-sprite.png') -42px 1px no-repeat;
	display: block;
	font-size: 1px;
	height: 12px;
	position: absolute;
	right: 26px;
	top: 6px;
	width: 12px;
}

.chosen-container-single .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
	background-position: -42px -10px;
}

.chosen-container-single .chosen-single div,
.chosen-container-active.chosen-with-drop .chosen-single div {
    background-image: url(/images/shared/filter-arrow.svg);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 15px auto;
	display: block;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
}

.chosen-container-single .chosen-single div b {
	display: none;
}

.chosen-container-single .chosen-search {
	margin: 0;
	padding: 3px 4px;
	position: relative;
	white-space: nowrap;
	z-index: 1010;
}

.chosen-container-single .chosen-search input[type="text"] {
	background: url('/js/jquery/jquery.chosen/chosen-sprite.png') no-repeat 100% -20px;
	background: white url('/js/jquery/jquery.chosen/chosen-sprite.png') no-repeat 100% -20px;
	border-radius: 0;
	border: 1px solid #aaa;
	font-family: sans-serif;
	font-size: 1em;
	height: auto;
	line-height: normal;
	margin: 1px 0;
	outline: 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
}

.chosen-container-single .chosen-drop {
	background-clip: padding-box;
	border-radius: 0 0 4px 4px;
	margin-top: -1px;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
	left: -9999px;
	position: absolute;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
	-webkit-overflow-scrolling: touch;
	margin: 0 4px 4px 0;
	max-height: 480px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 0 0 4px;
	position: relative;
}
.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 5px 6px;
	list-style: none;
	line-height: 15px;
	-webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	background-color: #3875d7;
	background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
	background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
	background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
	background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
	background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
	color: #fff;
}

.chosen-container .chosen-results li.no-results {
	display: list-item;
	background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
	cursor: default;
	display: list-item;
	font-weight: bold;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
	background: #fff;
    background-image: url(/images/shared/filter-arrow.svg);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 15px auto;
	border: 1px solid #808080;
	box-shadow: none;
	cursor: text;
	height: 1%;
	height: auto !important;
	margin: 0;
	overflow: hidden;
	padding: 10px;
	position: relative;
	width: 100%;
}

.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	background: transparent;
	border-radius: 0;
	border: 0 !important;
	box-shadow: none;
	color: #666;
	font-family: sans-serif;
	font-size: 100%;
	height: 25px;
	line-height: normal;
	margin: 1px 0;
	outline: 0;
	padding: 5px;
}

.chosen-container-multi .chosen-choices li.search-field .default {
	color: #999;
}

.chosen-container-multi .chosen-choices li.search-choice {
	background-clip: padding-box;
	background-color: #e4e4e4;
	background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
	background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
	border-radius: 3px;
	border: 1px solid #aaa;
	box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
	color: #333;
	cursor: default;
	line-height: 13px;
	margin: 3px 0 3px 5px;
	padding: 3px 20px 3px 5px;
	position: relative;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	background: url('/js/jquery/jquery.chosen/chosen-sprite.png') -42px 1px no-repeat;
	display: block;
	font-size: 1px;
	height: 12px;
	position: absolute;
	right: 3px;
	top: 4px;
	transition: none;
	width: 12px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
	background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
	margin: 0;
	padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}


/* @group Active  */
.chosen-container-active .chosen-single {
	border: 1px solid #5897fb;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
	background: #fff;
	border: 1px solid #aaa;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.chosen-container-active .chosen-choices {
	border: 1px solid #5897fb;
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
	color: #111 !important;
}


@media (-webkit-min-device-pixel-ratio: 2), only (min-resolution: 144dpi) {
	.chosen-container-single .chosen-single abbr,
	.chosen-container-single .chosen-single div b,
	.chosen-container-single .chosen-search input[type="text"],
	.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
	.chosen-container .chosen-results-scroll-down span,
	.chosen-container .chosen-results-scroll-up span {
		background-image: url('/js/jquery/jquery.chosen/chosen-sprite@2x.png') !important;
		background-size: 52px 37px !important;
		background-repeat: no-repeat !important;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Forms ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.form-section {
	margin-bottom: 40px;
}

.form {
	width: 100%;
}

input[type=text],
input[type=password],
input[type=email],
select, 
textarea {
	border: 1px solid #808080;
	box-shadow: none;
	font-family: inherit;
	font-size: inherit;
	max-width: 100%;
	outline: none;
	padding: 10px;
	width: 100%;
}

input[type=text].cellphone,
input[type=text].phone {
	width: auto;
}

input[type="file"] {
	font-size: inherit;
}

@media (max-width: 400px) {
	input[type=text],
	input[type=password],
	input[type=email],
	select, 
	textarea {
		padding: 7px;
	}
}

select::-ms-expand {
    display: none;
}

select {
	background-image: url(/images/shared/filter-arrow.svg);
	background-position: calc(100% - 10px) 50%;
	background-repeat: no-repeat;
	background-size: 15px auto;
	-webkit-appearance: none;
	padding-right: 40px;
	cursor: pointer;
}

input#card-name,
input#card-name-2,
input#card_email,
input#card_number,
input#card_exp_year,
input#card_exp_month,
input#card_cvv {
	width: auto;
}

.form tr td {
 	vertical-align: top;
}

.form tr td input,
.form tr td select,
.form tr td textarea {
	padding: 5px;
}

.form tr td input.phone {
	width: auto;
}

.form tr td .button {
	padding: 0 15px;
	width: auto;
}

.form label {
	color: #555555;
	font-size: 15px;
}

label em {
	color: red;
	font-style: normal;
	font-weight: bold;
	padding-left: 2px;
}

form .field-wrap {
	margin: 0 0 15px 0;
}

form .field-wrap label {
	display: block;
	margin: 0 0 6px 0;
}

input[type=text].monetary-only.usd-field {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAA5CAYAAABXoymnAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGvmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDggNzkuMTY0MDM2LCAyMDE5LzA4LzEzLTAxOjA2OjU3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjEuMCAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDIwLTAyLTEzVDEyOjM5OjE4LTA2OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyMC0wMi0xM1QxMjo0MjoxOC0wNjowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMC0wMi0xM1QxMjo0MjoxOC0wNjowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpiMTExYTIwZi00MTZhLTBlNDEtYTgwZS05ZmZjZDZkMzBkNDciIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo0YTZmZDkxOS1kNWZkLTNmNDEtYjBiMy1kN2UxOGM3ODMyZTIiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpkYmNlNDA4ZC1kZmJiLTRhNDctYjhhZS0wY2M4NmIzYWNhMTgiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmRiY2U0MDhkLWRmYmItNGE0Ny1iOGFlLTBjYzg2YjNhY2ExOCIgc3RFdnQ6d2hlbj0iMjAyMC0wMi0xM1QxMjozOToxOC0wNjowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIxLjAgKFdpbmRvd3MpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDpjOGI2NTcyMi0wMWM1LTY4NGEtYWI3OC1jYjdmNjU1MjdiZDYiIHN0RXZ0OndoZW49IjIwMjAtMDItMTNUMTI6NDI6MTUtMDY6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMS4wIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YjExMWEyMGYtNDE2YS0wZTQxLWE4MGUtOWZmY2Q2ZDMwZDQ3IiBzdEV2dDp3aGVuPSIyMDIwLTAyLTEzVDEyOjQyOjE4LTA2OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjEuMCAoV2luZG93cykiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPC9yZGY6U2VxPiA8L3htcE1NOkhpc3Rvcnk+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Z4efawAAA75JREFUWIXV2VloXVUUBuCvtxeLU1Fbi9bZNo6IGpUqDtQxJipV+iCIA4gjFgesUMUqOCBS1AeRoFCUik8GFesQgoiIiq2IPohTEcHYGimxaltra4g+rHPrtebsu09uovSHvGT9Z63/rrP3WmvvM6W7u1sFnI17M3hX4Mcch/Uq0dGBczJ4e+YKqFUU8Gsm749ch1UFTDh2OgHbMnkjkyUg1/FQrsOcXbAHLsFZ6Mr0+xoG8Cq+SRGnJOrALrgHN2NWZuCx8BSWYsNYxrJXsBBf4/42g8Mt+BKX5gp4AH04pM3AzZiFl3FTKwHLRLomC70iu9vRvAivwuJMR6vwOYaxBbtjf5wsynUKfZiNH5oF1PFciwc34GGxstckePOxRHrHLEcPf7+CO6VrwluYg8daBId3cCEeTXC6cVCzgGsS5G9xvpJtlMASrE7Yb2sImIkjEsQ7KgZuxl0J2/yGgE5MLSFtwRttCHhXef84HtNqmJ5wsEmF3l6Cr0r+X8fcehGkDHuLXpDitEJP4WNH1DBYx8cYNfYuqON2PNSGgO9TxhrWS2+tB3FaGwKSaPzqvha8D0QmJnyCajh8JIP7hOjti3DARAmY2tHRQaz0YUV5TGCvgrNI1Px9sA6b2xVAVK3Dxf5s+VzBW1CIuaAQ9LOiyYxHALwi0ntSBR91MTuciRtFV90Pv4jsJDHWorqhcDTetM7B3fgI74ksVRIAz+BIPDtOEQ2cLrLajxOqCIC1uBYn4mmR0vGiC5+I9fIP7LgGxsKQGLN7xSQ0Kma8scprK/QUz25vcDkCGtgqptuX8GQhakh0u30xLdPPKdhVDDnJc0EVzBDD5mViGsrBqVg1UaV1WCzcbpyBNzOeWcHknI7fF+86NeYRU1jPZB7PV+DKFpzLJ/t+4AW8nrAf819cUDyesM2uC5WdJYQufNemgNRENL2OA3FUCeHoCRAwmjLWRMMow/VtBofDEraNNaxMEBZiXpsC7kvYBmv4EF8kSG8r6WQZWCYKUxlWN3bBrQnSbqKTLRVH8Bx0ikG31XG/t7kX9Gt9CfW76O+fYVAcWLeJ5jJDjHTzcG6GyOdxdbOAaeKQcmzGw+1iLQ7FSHMh2irUp47UE4F1ohOO8O9mtLkQsXySgg/gOE3FqawUXyfWQ6pGVMEacUPWhZ+aDamb0oHi7zxcjIswt0LQ9aLG9OPFMlLViWix2NutsECMXL+1Ilb9YvJpJm8l/swhVm3HMzN5B+c63Ok+WPzvAnJn/2y/VRfhJmzM4GV/svkLX3SxHGgfMygAAAAASUVORK5CYII=') 10px 50% no-repeat; 
	background-size: 8px auto;
    padding-left: 25px;
}

form .field-wrap input.phone {
	min-width: 1px;
	margin-right: 7px;
	max-width: 100%;
	width: auto;
}

form .field-wrap.field-address .dib.smr {
	display: block;
	margin: 7px 0 0;
}

table.cms-table .button {
	margin: 15px 0;
}

table.cms-table input[type=text] {
	max-width: 400px;
	width: 100%;
}

div#dd-print-button {
	margin-bottom: 35px;
}

form .field-wrap input.phone:last-child {
    margin-right: 0;
}

.captcha-wrap {
	min-height: 78px;
}

#recaptcha_image {
	border: 1px solid #cccccc;
	padding: 10px 0;
}

.calendar-subscribe-overlay-content {
    box-sizing: border-box;
	padding: 45px 30px 30px;
}

.calendar-subscribe-overlay-content h2 {
	font-size: 28px;
}

@media (min-width: 768px) {
	.col-3 .captcha-wrap,
	.col-5 .captcha-wrap,
	.col-4 .captcha-wrap {
		transform: scale(0.8);
		transform-origin: 0 0;
	}
}


form .field-wrap span.checkbox-wrap,
form .field-wrap span.radio-wrap {
	background: #ffffff;
	box-shadow: 0 0 3px rgba(0,0,0,.25);
	display: inline-block;
	margin: 3px;
	padding: 5px 10px 5px 5px;
}

form .field-wrap span.checkbox-wrap input,
form .field-wrap span.radio-wrap input {
	width: auto;
	min-width: 1px;
	padding: 0;
	line-height: 100%;
}

form .field-wrap span.checkbox-wrap img {
	margin: -1px 4px 0 0;
	float: left; 
	padding: 3px;
	box-shadow: 0 0 3px rgba(0,0,0,.25);
	width: 20px;
}

form .field-wrap .radio-wrap label {
	cursor: pointer;
	display: block;
	padding-left: 0;
	line-height: 25px;
	min-height: 25px;
	opacity: 1;
	margin: 0;
}


form .field-wrap .checkbox-wrap label.unchecked,
form .field-wrap .radio-wrap label.unchecked,
form .field-wrap .checkbox-wrap label.checked,
form .field-wrap .radio-wrap label.checked {
	background: url(/images/shared/checkbox.svg) 0 50% no-repeat;
	cursor: pointer;
	display: block;
	padding-left: 27px;
	line-height: 25px;
	min-height: 25px;
	opacity: 1;
}

form .field-wrap span.checkbox-wrap label.checked,
form .field-wrap span.radio-wrap label.checked {
	background: url(/images/shared/checkbox-checked.svg) 0 50% no-repeat;
}

form .field-wrap span.checkbox-wrap label.unchecked:hover,
form .field-wrap span.radio-wrap label.unchecked:hover,
form .field-wrap span.checkbox-wrap label.checked:hover,
form .field-wrap span.radio-wrap label.checked:hover {
	opacity: .60;
}

input.datepicker {
	background: #ffffff url(/images/shared/calendar.gif) 5px 48% no-repeat;
	padding-left: 27px;
	cursor: pointer;
}

input.datetimepicker {
	background: #ffffff url(/images/shared/calendar.gif) 5px 48% no-repeat;
	padding-left: 27px;
	cursor: pointer;
}

input.usd-field,
.form tr td input.usd-field {
	background: #fff url(/images/shared/usd.svg) 5px 50% no-repeat;
	background-size: 11px auto;
	padding-left: 22px;
}

.fa {
	margin-right: 5px;
}

.m-signature-pad {
	border: 1px solid #cccccc;
	display: inline-block;
	padding: 10px;
}

.m-signature-pad .m-signature-pad--body {
	height: 150px;
	width: 500px;
}

.m-signature-pad canvas {
	border-bottom: 2px solid #cccccc;
	height: 150px;
	width: 500px;
}

.m-signature-pad .m-signature-pad--footer {
	padding-top: 10px;
}

.m-signature-pad .m-signature-pad--footer .description {
	display: inline-block;
}

.m-signature-pad .m-signature-pad--footer .button {
	float: right;
}

.map-canvas.driving-directions > div > div,
.map-canvas.driving-directions > div > div > img {
    width: 100%!important;
}

.subscribe-long-link {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.address-fields-wrap .dib {
	display: block;
	margin: 5px 0 0 0;
}

@media (max-width: 600px) {
	.m-signature-pad .m-signature-pad--body,
	.m-signature-pad canvas {
		width: 100%;
	}
}

@media (min-width: 1024px) {
	.calendar-subscribe-overlay-content h2 {
		font-size: 21px;
	}

	.calendar-subscribe-overlay-content {
		padding: 45px 10px 10px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Form Builder Goals Graphics ------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
/* ----------- */
/* Donut Chart */
/* ----------- */
.field-wrap.payment-goal-graphic-field-wrap {
	display: inline-block;
	margin-bottom: 30px;
	text-align: center;
}

.field-wrap.payment-goal-graphic-field-wrap label {
	display: none;
}

.payment-goal-donut-chart-animation-wrap {
	align-items: center;
	display: inline-flex;
	position: relative;
}

.payment-goal-donut-chart-middle-text {
	position: absolute;
	text-align: center;
	font-size: 90%;
	width: 100%;
}

.payment-goal-donut-chart-middle-text strong {
	display: block;
	font-size: 160%;
}

.payment-goal-donut-chart-animation-wrap svg {
	transform: rotate(-90deg);
	height: 160px;
	width: 160px;
}

.payment-goal-donut-chart-circle1,
.payment-goal-donut-chart-circle2 {
	stroke: #f2f2f2;
	stroke-width: 20px;
	cy: 50%;
	cx: 50%;
	r: 43.66061875%;
}

.payment-goal-donut-chart-circle2 {
	stroke: #df5d5d;
}							

.current-progress-25 .payment-goal-donut-chart-circle2 {
	stroke: #d7c36c;
}

.current-progress-50 .payment-goal-donut-chart-circle2 {
	stroke: #d7c36c;
}

.current-progress-75 .payment-goal-donut-chart-circle2 {
	stroke: #56e0d0;
}

.current-progress-100 .payment-goal-donut-chart-circle2 {
	stroke: #54e075;
}

.payment-goal-donut-chart-circle2 {
	stroke-dasharray: calc(3.14159265358979 * (160px - 20px)); /* (formula is: (pi * (width - stroke width)) */
	stroke-dashoffset: calc(3.14159265358979 * (160px - 20px));
	animation: payment-goal-donut-chart-circle-animation 1s ease-out forwards;
}

.payment-goal-description-details {
	display: block;
}

/* -------------- */
/* Horizontal Bar */
/* -------------- */
.field-wrap.payment-goal-graphic-field-wrap.horizontal-bar {
	display: block;
	text-align: left;
}

.horizontal-bar .payment-goal-line-chart-animation-wrap {
	align-items: center;
	background: #ebebeb;
	border-radius: 20px;
	box-sizing: border-box;
	display: flex;
	height: 40px;
	max-width: 800px;
	overflow: hidden;
	padding: 0 0 0 15px;
	position: relative;
	width: 100%;
}

.horizontal-bar .payment-goal-line-chart-middle-text {
	animation: payment-goal-horizontal-line-circle-animation 1s ease-out forwards;
	box-sizing: border-box;
	color: #fff;
	font-weight: bold;
	padding-right: 25px;
	position: relative;
	text-align: right;
	text-transform: uppercase;
	white-space: nowrap;
	width: 0;
	z-index: 1;
}

.horizontal-bar .current-progress-0 .payment-goal-line-chart-middle-text {
	color: inherit;
	min-width: 100%;
	padding: 0;
	text-align: center;
}

@media (max-width: 760px) {
	.horizontal-bar .payment-goal-line-chart-middle-text {
		color: inherit;
		min-width: 100%;
		padding: 0;
		text-align: center;
	}
}

.horizontal-bar .payment-goal-line-chart-middle-text strong:after {
	content: ' ';
}

.horizontal-bar .payment-goal-line-current-progress-line {
	animation: payment-goal-horizontal-line-circle-animation 1s ease-out forwards;
	background: #df5d5d;
	bottom: 0;
	border-radius: 20px;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
	z-index: 0;
}

.current-progress-25 .payment-goal-line-current-progress-line {
	background: #d7c36c;
}

.current-progress-50 .payment-goal-line-current-progress-line {
	background: #56e0d0;
}

.current-progress-75 .payment-goal-line-current-progress-line {
	background: #54e075;
}

.horizontal-bar .payment-goal-description {
	margin-top: 10px;
}

.horizontal-bar .payment-goal-days-remaining {
	display: inline-block;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #333;
}


/* ------------ */
/* Vertical Bar */
/* ------------ */
.field-wrap.payment-goal-graphic-field-wrap.vertical-bar {
	align-items: flex-end;
	display: inline-flex;
	text-align: left;
}

.vertical-bar .payment-goal-line-chart-animation-wrap {
	background: #ebebeb;
	border-radius: 20px;
	display: flex;
	height: 250px;
	overflow: hidden;
	position: relative;
	width: 40px;
}

.vertical-bar .payment-goal-line-current-progress-line {
	animation: payment-goal-vertical-line-circle-animation 1s ease-out forwards;
	border-radius: 20px;
	bottom: 0;
	left: 0;
	height: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.vertical-bar .payment-goal-description {
	padding-left: 20px;
}

.vertical-bar .payment-goal-line-chart-middle-text {
	border-bottom: 4px solid #ebebeb;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.vertical-bar .payment-goal-line-chart-middle-text {
	font-weight: bold;
	text-transform: uppercase;
}

.vertical-bar .payment-goal-line-chart-middle-text strong {
	display: block;
	font-size: 150%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Galleries ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.list-item.gallery-item .social-share-links {
	display: none;
}

#slideshow-wrapper {
	background: #000000;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	text-align: center;
	margin: 0 auto;
}

#slideshow {
	text-align: center;
}

#slideshow .slide {
	width: 100%;
	text-align: center;
}

#slideshow img {
	height: 100%;
}

#thumbs {
	background: black;
	display: none;
	height: 80px;
	margin-top: -85px;
	overflow: hidden;
	opacity: .8;
	padding: 3px;
	bottom: 0;
	position: absolute;
	width: 100%;
	z-index: 9999;
}

#thumbs a {
	background: #000000;
	display: block;
	float: left;
	height: 80px;
	margin-right: 3px;
	overflow: hidden;
	width: 100px;
}

#thumbs a span {
	display: block;
	height: 80px;
	overflow: hidden;
	width: 100px;
}

#thumbs a.selected span {
	border: 3px solid white;
	width: 94px;
	height: 74px;
}

#thumbs a img {
	width: 125%;
}

#thumbs a:hover img {
	opacity: .4;
}

#next,
#prev {
	background: url(/images/shared/next-arrow.png) 0 0 no-repeat;
	display: none;
	height: 66px;
	opacity: 0.6;
	position: absolute;
	right: 0;
	top: 50%;
	margin: -33px 0 0 0;
	width: 32px;
	z-index: 99;
}

#prev {
	background: url(/images/shared/prev-arrow.png) 0 0 no-repeat;
	left: 0;
	right: auto;
}

#next:hover,
#prev:hover {
	display: block;
	opacity: 1;
}

.gallery-item h3 {
	border-bottom: 0;
}

.gallery-item .image {
	background: #cccccc;
	display: block;
	float: left;
	height: 130px;
	overflow: hidden;
	text-align: center;
	width: 194px;
}

.gallery-item .image img {
	width: 100%;
}

.gallery-item .info {
	float: left;
	padding: 0 0 0 20px;
}

.gallery-item .info .title {
	display: block;
	padding: 0 0 5px 0;
}

.content-box-slideshow-wrap {
	display: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Gallery - Embedded ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.embedded-gallery {
	position: relative;
}

.embedded-gallery .prev-arrow,
.embedded-gallery .next-arrow {
	background: url(/images/shared/prev-arrow.svg?v=0.01) 0 0 no-repeat;
	height: 48px;
	left: 15px;
	margin: -24px 0 0 0;
	opacity: 0.4;
	position: absolute;
	top: 50%;
	width: 29px;
	z-index: 500;
}

.embedded-gallery .prev-arrow:hover,
.embedded-gallery .next-arrow:hover {
	opacity: 1;
}

.embedded-gallery .prev-arrow span,
.embedded-gallery .next-arrow span {
	display: none;
}

.embedded-gallery .next-arrow {
	background: url(/images/shared/next-arrow.svg?v=0.01) 0 0 no-repeat;
	left: auto;
	right: 15px;
}

.embedded-gallery .stage {
	background: #000;
	border: none;
	width: 100%;
}

.embedded-gallery .slide {
	height: auto;
	max-width: 100%;
	min-width: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}

.embedded-gallery .slide.placeholder {
	position: static;
}

.embedded-gallery .slide.current.no-slideshow {
	display: block;
}

.embedded-gallery .slide .image {
	text-align: center;
}

.embedded-gallery .slide .image img {
	height: auto;
	max-width: 100%;
}

.slide.placeholder,
.embedded-gallery .stage .placeholder {
    visibility : hidden;
}


.embedded-gallery .slide .caption {
	background: url(/images/shared/semi-transparent-caption-background.png);
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
	bottom: 0;
	color: #000000;
	left: 0;
	padding: 20px;
	position: absolute;
	right: 0;
}

.embedded-gallery-nav-wrapper,
.embedded-gallery-nav,
.embedded-gallery-nav li a {
	height: 80px;
}

.embedded-gallery-nav-wrapper {
	margin: 10px 0 20px 0;
	overflow: auto;
	padding: 0 1%;
	position: relative;
	width: 98%;
}

.embedded-gallery-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
}

.embedded-gallery-nav li {
	float: left;
	padding: 0 5px 10px 5px;
	position: absolute;
}

.embedded-gallery-nav li a {
	display: block;
	float: left;
	overflow: hidden;
	width: 120px;
}

.embedded-gallery-nav li a img {
	opacity: .5;
	width: 100%;
}

.embedded-gallery-nav li.activeSlide a img,
.embedded-gallery-nav li a:hover img {
	opacity: 1;
}

.embedded-gallery.static-page-inline-gallery .slide {
	display: none;
	top: 0;
	bottom: 0;
}

.embedded-gallery.static-page-inline-gallery .cycle-loaded .slide {
	display: block;
}

.embedded-gallery.static-page-inline-gallery .slide .image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	top: 0;
}

.embedded-gallery.static-page-inline-gallery .slide.placeholder .image {
	position: static;
}

.embedded-gallery.static-page-inline-gallery .slide .image.portrait {
	background-color: #000;
	background-size: contain;
}

.embedded-gallery.static-page-inline-gallery .slide .image img {
	opacity: 0;
	max-height: 100%;
	max-width: 100%;
}

/* embedded gallery fullscreen mode */
.embedded-gallery-wrap .inline-gallery-fullscreen-toggle-link {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='272px' height='272px' viewBox='0 0 272 272' style='enable-background:new 0 0 272 272%3B' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23FFFFFF%3B%7D%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-63' class='st0' d='M0 102h34V34h68V0H0V102L0 102z'/%3E%3C/g%3E%3Cpath id='ytp-id-63_00000132063613286078899330000013733722743160841902_' class='st0' d='M0 102h34V34h68V0H0V102L0 102z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-64' class='st0' d='M170 0v34h68v68h34V0H170L170 0z'/%3E%3C/g%3E%3Cpath id='ytp-id-64_00000085956972495077682720000006147324541615078307_' class='st0' d='M170 0v34h68v68h34V0H170L170 0z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-65' class='st0' d='M238 238h-68v34h102V170h-34V238L238 238z'/%3E%3C/g%3E%3Cpath id='ytp-id-65_00000164491917947713937740000010406101780643456698_' class='st0' d='M238 238h-68v34h102V170h-34V238L238 238z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-66' class='st0' d='M34 170H0v102h102v-34H34V170L34 170z'/%3E%3C/g%3E%3Cpath id='ytp-id-66_00000021112059619842446830000016199970098420168085_' class='st0' d='M34 170H0v102h102v-34H34V170L34 170z'/%3E%3C/g%3E%3C/svg%3E");
	background-size: contain;
	bottom: 20px;
	color: transparent;
	font-size: 0;
	height: 25px;
	position: absolute;
	right: 20px;
	text-indent: -9999px;
	width: 25px;
	z-index: 1000;
}

@media (min-width: 1024.5px) {
	.embedded-gallery-wrap .inline-gallery-fullscreen-toggle-link {
		opacity: 0;
		transition: opacity 0.2s linear, transform 0.2s ease;
	}

	.embedded-gallery-wrap:hover .inline-gallery-fullscreen-toggle-link {
		opacity: 1;
	}

	.embedded-gallery-wrap .inline-gallery-fullscreen-toggle-link:hover {
		opacity: 1;
		transform: scale(1.05);
	}
}

.embedded-gallery-wrap.fullscreen-mode .inline-gallery-fullscreen-toggle-link {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='272px' height='272px' viewBox='0 0 272 272' style='enable-background:new 0 0 272 272%3B' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23FFFFFF%3B%7D%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-71' class='st0' d='M68 68H0v34h102V0H68V68L68 68z'/%3E%3C/g%3E%3Cpath id='ytp-id-71_00000003794760405310887880000002199410379959137187_' class='st0' d='M68 68H0v34h102V0H68V68L68 68z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-72' class='st0' d='M204 68V0h-34v102h102V68H204L204 68z'/%3E%3C/g%3E%3Cpath id='ytp-id-72_00000132061666958096868910000007878237581382275261_' class='st0' d='M204 68V0h-34v102h102V68H204L204 68z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-73' class='st0' d='M170 272h34v-68h68v-34H170V272L170 272z'/%3E%3C/g%3E%3Cpath id='ytp-id-73_00000181791083098170809990000003480920164452267954_' class='st0' d='M170 272h34v-68h68v-34H170V272L170 272z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath id='ytp-id-74' class='st0' d='M0 204h68v68h34V170H0V204L0 204z'/%3E%3C/g%3E%3Cpath id='ytp-id-74_00000069385615196460701520000014756539919814264986_' class='st0' d='M0 204h68v68h34V170H0V204L0 204z'/%3E%3C/g%3E%3C/svg%3E");
}

.embedded-gallery-wrap.fullscreen-mode {
	background: #000;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 5000;
}

.embedded-gallery-wrap.fullscreen-mode .embedded-gallery,
.embedded-gallery-wrap.fullscreen-mode .stage,
.embedded-gallery-wrap.fullscreen-mode .slide {
	background: #000;
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.embedded-gallery-wrap.fullscreen-mode .has-embedded-gallery-nav .slide .image {
	bottom: 120px;
	height: calc(100% - 120px);
}

.embedded-gallery-wrap.fullscreen-mode .embedded-gallery.static-page-inline-gallery .slide .image {
	background-size: contain;
}

.inline-gallery-fullscreen-mode-message {
	background: rgba(0,0,0,0.3);
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	left: 50%;
	opacity: 0;
	padding: 10px 30px;
	pointer-events: none;
	position: absolute;
	top: 50px;
	transform: translateX(-50%);
	z-index: 1000;
}

.inline-gallery-fullscreen-mode-message span {
	border: 1px solid #fff;
	display: inline-block;
	margin: 0 5px;
	padding: 10px;
	vertical-align: middle;
}

.embedded-gallery-wrap.fullscreen-mode .inline-gallery-fullscreen-mode-message {
	animation: inline_gallery_fullscreen_mode_message_anim 4.5s linear forwards;
}

@keyframes inline_gallery_fullscreen_mode_message_anim {
	0% {
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	85% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Gallery - Mosaic/Grid ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.embedded-mosaic-gallery {
	opacity: 0;
	transition: opacity 1s ease;
}

.embedded-mosaic-gallery.images-loaded {
	opacity: 1;
}


.embedded-mosaic-gallery .gutter-sizer {
	width: 1%;
}

.embedded-mosaic-gallery .grid-sizer,
.embedded-mosaic-gallery .slide {
	width: 32.666%;
}

@media (max-width: 700px) {
	.embedded-mosaic-gallery .gutter-sizer {
		width: 2%;
	}

	.embedded-mosaic-gallery .grid-sizer,
	.embedded-mosaic-gallery .slide {
		width: 49%;
	}
}

@media (max-width: 400px) {
	.embedded-mosaic-gallery .grid-sizer,
	.embedded-mosaic-gallery .slide {
		float: none;
		width: 100%;
	}
}

.embedded-mosaic-gallery .slide {
	float: left;
	overflow: hidden;
	margin-bottom: 12px;
	position: relative;
}

.embedded-mosaic-gallery .slide img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.embedded-mosaic-gallery.images-loaded .slide img {
	opacity: 1;
}

.embedded-mosaic-gallery.images-loaded .slide:hover a img {
	opacity: .7;
}

.embedded-mosaic-gallery .slide .caption {
	background: url(/images/shared/semi-transparent-caption-background.png);
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
	bottom: -100px;
	color: #000000;
	left: 0;
	padding: 5px;
	line-height: 120%;
	position: absolute;
	right: 0;
	transition: bottom 0.2s ease;
}

@media (max-width: 400px) {
	.embedded-mosaic-gallery .slide .caption {
		bottom: 0;
		font-size: 85%;
	}
}


.embedded-mosaic-gallery .slide:hover .caption {
	bottom: 0;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Main Content Side Bar ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.main-content {
	min-height: 300px;
}

.main-content:after {
    content: '';
    display: table;
    clear: both;
}

.main-content.has-side-boxes {
	float: left;
	width: 430px;
}

.side-boxes {
	float: right;
	width: 200px;
}

.side-boxes .side-box {
	background: #eeeeee;
	font-size: 90%;
	margin: 0 0 15px 0;
	padding: 10px;
}

.side-boxes .side-box img {
	max-width: 100%;
}

.side-boxes .side-box h3 {
	background: #555555;
	border-bottom: 5px solid #ffffff;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	margin: -10px -10px 5px -10px;
	padding: 5px;
	text-align: center;
}

.side-boxes .side-box .slideshow .slide h2 {
	display: none;
}

.side-boxes .side-box .slideshow .slide .caption {
	display: none;
}

.side-boxes .side-box .slideshow .slide img {
	width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Side-box Forms -------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.side-boxes .side-box input, 
.side-boxes .side-box select, 
.side-boxes .side-box textarea { 
	min-width: 1px;
	max-width: 90%;
	width: 90%;
}

.side-boxes .side-box #recaptcha_image {
	width: 100%;
	max-width: 100%;
	min-width: 1px;
}

.side-boxes .side-box #recaptcha_image img {
	width: 90%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Frequently Asked Questions (FAQs) Search / Accordion Styles ----------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.faq-page-upper-filter-wrap {
	margin-bottom: 15px;
}

.faq-page-upper-filter-form .section-filter-wrap,
.faq-page-upper-filter-form .text-search-wrap,
.faq-page-upper-filter-form .submit-wrap {
	display: inline-block;
	margin: 0 20px 15px 0;
	vertical-align: middle;
}

.faq-page-upper-filter-form .submit-wrap {
	margin-right: 0;
}

.faq-page-upper-filter-form .section-filter-wrap select,
.faq-page-upper-filter-form .text-search-wrap input {
	min-width: 200px;
}

@media (max-width: 800px) {
	.faq-page-upper-filter-wrap {
		margin-bottom: 30px;
	}

	.faq-page-upper-filter-form .section-filter-wrap,
	.faq-page-upper-filter-form .text-search-wrap,
	.faq-page-upper-filter-form .submit-wrap {
		display: block;
		margin: 0 0 15px;
		max-width: none;
	}

	.faq-page-upper-filter-form .section-filter-wrap select,
	.faq-page-upper-filter-form .text-search-wrap input {
		width: 100%;
	}
}

.list-items.question-items > li {
	border: 0;
}

.list-items.accordion-mode-faqs > li {
	border: 0;
	margin-bottom: 40px;
	padding: 0;
}

.list-items.accordion-mode-faqs > li h2.title.question {
	cursor: pointer;
	font-size: 21px;
	font-weight: 500;
}

.list-items.accordion-mode-faqs > li h2.title.question:after {
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	content: '';
	display: inline-block;
	height: 7px;
	margin: 0 0 4px 12px;
	transform: rotate(45deg);
	width: 7px;
}

.list-items.accordion-mode-faqs > li h2.title.question.selected:after {
	margin: 4px 0 0 12px;
	transform: rotate(-135deg);
}

.list-items.accordion-mode-faqs > li h2.title.question:hover {
	opacity: .7;
}

.list-items.accordion-mode-faqs > li h2.title.question:hover:after {
	opacity: .7;
}

.list-items.accordion-mode-faqs > li .answer {
	display: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Calendar -------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
form.category-and-window {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

form.category-and-window select,
form.category-and-window .chosen-container {
	margin-right: auto;
	max-width: 40%;
}

form.category-and-window .chosen-container-multi .chosen-choices {
	padding: 5px;
} 

form.category-and-window .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	top: 6px;
}

form.category-and-window .chosen-container-multi .chosen-choices li.search-choice {
	font-size: 80%;
	font-weight: 700;
	padding: 5px 20px 5px 10px;
}

form.category-and-window .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	height: auto;
	min-height: 30px;
}

form.category-and-window ul.display-options,
form.category-and-window ul.time-window-options {
	display: flex;
	font-size: 80%;
	list-style: none;
	margin: 0;
	padding: 0;
}

form.category-and-window ul.time-window-options {
	margin-left: auto;
}

form.category-and-window ul.display-options li,
form.category-and-window ul.time-window-options li {
	margin-left: 20px;
}

form.category-and-window ul.display-options li:first-child,
form.category-and-window ul.time-window-options li:first-child {
	margin-left: 0;
}

form.category-and-window ul.display-options li a,
form.category-and-window ul.time-window-options li a {
	border-bottom: 1.5px solid transparent;
	text-decoration: none;
	transition: color 0.2s ease, border 0.2s ease;
}

form.category-and-window ul.display-options li.selected a,
form.category-and-window ul.display-options li:hover a,
form.category-and-window ul.time-window-options li.selected a,
form.category-and-window ul.time-window-options li:hover a {
	border-bottom: 1.5px solid;
}

form.category-and-window ul.display-options li.selected a,
form.category-and-window ul.time-window-options li.selected a {
	font-weight: bold;
}

.event-links-bar {
	align-items: center;
	background: rgba(0,0,0,0.05);
	display: flex;
	justify-content: space-between;
	margin: 0 0 20px 0;
}

.event-links-bar h3 {
	font-size: 130%;
	font-weight: bold;
	margin: 0;
	padding: 0;
	text-align: center;
    line-height: 100%;
}

.event-links-bar a.button.fl {
	border-radius: 0;
	margin-right: auto;
}

.event-links-bar a.button.fr {
	border-radius: 0;
	order: 2;
	margin-left: auto;
}

.event-items > li {
	border: 0;
	font-size: 90%;
	padding: 0 0 15px 0;
}

.event-items > li .view-event-button {
	margin-bottom: 20px;
	margin-left: 20px;
}

.event-items > li > h2.date {
	background: #555555;
	color: #fff;
	font-size: 90%;
	font-weight: bold;
	margin: 0 0 5px 0;
	padding: 10px 15px;
}

.event-items > li h3.title {
	font-size: 100%;
	margin: 0 0 5px 0;
	padding: 0;
}

.event-items > li h4.time {
	font-size: 85%;
	font-weight: normal;
	margin: 0 0 5px 0;
	padding: 0;
}

.event-items > li > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.event-items > li > ul > li {
	background: #eeeeee;
	margin: 0 0 5px 0;
	min-height: 30px;
	padding: 15px 20px;
}

.event-items > li > ul > li.has-color {
	position: relative;
	padding-left: 30px;
}

.event-items > li > ul > li.has-color .event-color-bar {
	bottom: 0;
	left: 0;
	position: absolute;
	top: 0;
	width: 10px;
}

.calendar {
	background: #fff;
	border: 1px solid #dadada;
	border-left: 0px;
	font-size: 75%;
	margin: 10px 0;
	width: 100%;
}

.calendar th {
	background: #f7f7f7;
	border-left: 1px solid #dadada;
	padding: 5px;
	text-align: left;
	text-shadow: 0 1px 0 #ffffff;
	width: 14%;
}

.calendar td {
	border-left: 1px solid #dadada;
	border-top: 1px solid #dadada;
	padding: 10px;
	text-align: right;
	vertical-align: top;
}

.calendar td .inner {
	display: block;
	min-height: 75px;
}

.calendar .weekend { background: #eaeaea; }

.calendar .empty-cell { background: #808080; }

.calendar .today { background: #ffe6e6; }

.calendar .inner > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.calendar a.event {
	background: rgba(0,0,0,.10);
	border-radius: 4px;
	display: block;
	text-align: left;
	text-decoration: none;
	padding: 5px 8px;
	margin: 2px;
}

.calendar .description > p {
	display: none;
}

.calendar a.event:hover {
	background: rgba(0,0,0,0.20);
	color: inherit;
}


@media (max-width: 960px) {
	form.category-and-window {
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	form.category-and-window ul.display-options {
		margin-bottom: 10px;
	}

	form.category-and-window ul.time-window-options {
		margin-left: 30%;
	}
}

@media (max-width: 800px) {
	form.category-and-window {
		display: block;
		text-align: center;
	}

	form.category-and-window select,
	form.category-and-window .chosen-container {
		max-width: 100%;
		margin: 0 0 10px 0;
	}

	form.category-and-window ul.display-options,
	form.category-and-window ul.time-window-options {
		justify-content: center;
	}

	form.category-and-window ul.display-options {
		margin-bottom: 10px;
	}

	form.category-and-window ul.time-window-options {
		margin: 0;
	}

	.event-links-bar a.button {
		padding-left: 15px;
		padding-right: 15px;
	}

	.event-links-bar a.button .long {
		display: none;
	}

	.event-items > li > ul > li {
		display: flex;
		flex-direction: column;
	}

	.event-items > li > ul > li .view-event-button {
		float: none;
		margin: 20px 0 10px 0;
		order: 99;
	}

	table.calendar th,
	table.calendar td.empty-cell {
		display: none;
	}
	
	table.calendar td {
		display: table;
		margin: 0;
		padding: 10px;
		text-align: left;
		width: 100%;
	}
	
	table.calendar .inner {
		position: relative;
	}
	
	table.calendar .day-number {
		display: block;
		margin-bottom: 5px;
	}
}

@media (max-width: 500px) {
	form.category-and-window select,
	form.category-and-window .chosen-container,
	form.category-and-window ul.display-options {
		margin-bottom: 20px;
	}

	form.category-and-window ul.display-options,
	form.category-and-window ul.time-window-options {
		justify-content: space-between;
	}

	form.category-and-window ul.display-options li, 
	form.category-and-window ul.time-window-options li {
		margin-left: 14px;
	}

	form.category-and-window ul.display-options li .long, 
	form.category-and-window ul.time-window-options li .long {
		display: none;
	}

	.event-links-bar a.button {
		font-size: 75%;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.single-ics-event-download-button {
	margin-right: 10px;
}

@media (max-width: 450px) {
	.single-ics-event-download-button {
		margin: 10px 0;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Scheduler Specific Styles --------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.scheduler-timezone-selector-wrap {
	margin: 0 0 20px 0;	
	text-align: right;
}

.scheduler-timezone-selector-wrap .label {
	font-size: 80%;
	margin-right: 10px;
	text-transform: uppercase;
}

.scheduler-timezone-selector-wrap select {
	max-width: 100%;
	min-width: auto;
	width: auto;
}

@media (max-width: 680px) {
	.scheduler-timezone-selector-wrap {
		text-align: center;
	}
}

.calendar-detail-page .calendar td .inner {
	height: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding-right: 5px;
	position: relative;
    text-decoration: none;
}

.calendar-detail-page .calendar td .inner .short-date,
.calendar-detail-page .calendar td .inner .full-date {
	position: absolute;
	right: 5px;
	top: 5px;
}

@media (max-width: 680px) {
	.calendar-detail-page div.inner {
		background: #efefef;
	}
}

.calendar-detail-page a.inner {
	background-color: rgba(54,142,186,.1);
	border: 6px solid rgba(54,142,186,.3);
	font-weight: bold;
	transition: all 0.15s ease;
}

.calendar-detail-page a.inner .hover {
	display: none;
}

@media (min-width: 681px) {
	.calendar-detail-page a.inner:hover {
		background-color: rgba(54,142,186,.8);
		border-color: transparent;
		color: #fff;
	}

	.calendar-detail-page a.inner:hover .non-hover {
		display: none;
	}

	.calendar-detail-page a.inner:hover .hover {
		display: block;
	}
}

@media (max-width: 680px) {
	.calendar-detail-page .calendar td .inner {
		min-height: 0;
		padding: 20px;
		text-align: center;
	}
}

.choose-text,
.not-available-text {
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
}

.not-available-text {
	color: #cccccc;
	margin-top: 22px;
}

.calendar-detail-page .button-wrap {
	text-align: right;
}

.calendar-detail-page .schedule-time-selector,
.calendar-detail-page .calendar-title,
.calendar-detail-page .schedule-date,
.calendar-detail-page .select-a-day-heading {
	text-align: center;
}

.calendar-detail-page .schedule-time-selector {
	margin-top: 25px;
}

.timeslot-selector {
	height: 50px;
	line-height: 50px;
	margin: 0 auto 10px auto;
	max-width: 300px;
}

.timeslot-selector .button {
	border-radius: 3px;
	border: 0;
	float: right;
	height: 54px;
	line-height: 54px;
	overflow: hidden;
	padding: 0;
	width: 0;
}

.timeslot-selector.engaged .button {
	transition: all 0.2s ease;
	width: 47%;
}

.timeslot-selector.engaged .button:hover {
	background: #146994;
}

.timeslot-selector .time {
	border: 1px solid rgba(54,142,186,.8);
	border-radius: 3px;
	cursor: pointer;
	transition: width 0.2s ease, background-color 0.2s ease;
	width: 100%;
}

.timeslot-selector.show-remaining-timeslots .time {
	height: 54px;
	line-height: 36px;
	position: relative;
}

.timeslot-selector.show-remaining-timeslots .time .slots-left-notification {
	bottom: 8px;
	font-size: 12px;
	left: 50%;
	line-height: 100%;
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}

.timeslot-selector.engaged .time {
	cursor: default;
	float: left;
	width: 47%;
}

.timeslot-selector .time:hover {
	border: 2px solid rgba(54,142,186,1);
}

.timeslot-selector.engaged .time,
.timeslot-selector.engaged .time:hover {
	background: #333;
	border: 2px solid #333;
	color: #fff;
}

.calendar-detail-page .select-a-day-heading {
	font-size: 90%;
	font-weight: bold;
	margin-top: 20px;
	text-transform: uppercase;
}

.calendar-detail-page.scheduler .col.first {
	float: left;
	width: 48%;
}

.calendar-detail-page.scheduler .schedule-time-selector,
.calendar-detail-page.scheduler .calendar-title,
.calendar-detail-page.scheduler .schedule-date,
.calendar-detail-page.scheduler .select-a-day-heading {
	text-align: left;
}

.calendar-detail-page.scheduler .col.last {
	float: right;
	width: 48%;
}

.calendar-detail-page.scheduler .col.last .field-wrap input[type=text],
.calendar-detail-page.scheduler .col.last .field-wrap textarea,
.calendar-detail-page.scheduler .col.last .field-wrap select {
	padding: 10px;
	width: 100%;
}

.calendar-detail-page.scheduler .col.last .field-wrap input.datepicker {
	background-position: 12px 48%;
	padding-left: 35px;
	width: auto;
}

.calendar-detail-page.scheduler .col.last .field-wrap input.phone {
	width: auto;
}

.calendar-detail-page.scheduler .col.last .field-wrap.half {
	float: left;
	width: 45%;
}

.calendar-detail-page.scheduler .col.last .field-wrap.half.last {
	float: right;
}

.calendar-detail-page .full-date {
	display: none;
}

.mobile-available-days-heading {
	display: none;
}

.mobile-only-no-availability-message {
	display: none;
}

@media (max-width: 680px) {
	.mobile-available-days-heading {
		display: block;
		font-size: 15px;
		font-weight: bold;
		margin: 10px 0;
		padding: 0;
		text-align: center;
		text-transform: uppercase;
	}
	
	.mobile-only-no-availability-message {
		display: block;
		margin: 10px 0;
		padding: 0;
		text-align: center;
	}
	
	.calendar-detail-page .calendar td,
	.calendar td {
		border-bottom: 1px solid #000;
		min-height: 5px;
		padding: 20px;
	}

	.calendar-detail-page .calendar tr:last-child td:last-child,
	.calendar tr:last-child td:last-child {
		border-bottom: none;
	}
	
	.calendar-detail-page .calendar {
		border: 0;
	}

	.calendar-detail-page .calendar th,
	.calendar-detail-page .calendar td.empty-cell,
	.calendar-detail-page .calendar td.no-events {
		display: none;
	}

	.calendar-detail-page .calendar td {
			display: table;
		padding: 0;
		width: 100%;
	}

	.calendar-detail-page .short-date {
		display: none;
	}

	.calendar-detail-page .calendar td .inner .full-date,
	.calendar-detail-page .full-date {
		color: #333;
		display: inline-block;
		font-size: 16px;
		left: 5px;
		top: 10px;
	}
	
	.choose-text, .not-available-text {
		font-size: 12px;
		margin-top: 6px;
	}
	
	.not-available-text {
		color: #808080;
	}
	
	.calendar-detail-page .button-wrap {
		text-align: center;
		margin-bottom: 10px;
	}
	
	.calendar-detail-page.scheduler .col.first,
	.calendar-detail-page.scheduler .col.last {
		float: none;
		width: auto;
	}
	
	.calendar-detail-page.scheduler .col.first {
		border-bottom: 1px solid #ccc;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}


#scheduler-form {
	position: relative;
}

#form-loading {
	background: #fff url(/images/shared/loader.gif) 50% 50% no-repeat; 
	bottom: 0;
	left: 0;
	opacity:.5; 
	position: fixed; 
	right: 0;
	top: 0;
	z-index:999999;
}

/* Merged Calendar Styles */
.calendar-detail-page.combined-scheduler-view {
	display: flex;
	gap: 20px;
}

.calendars-list-filter-heading {
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	margin-bottom: 10px;
}

.calendars-list-filter {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 140px;
}

.calendar-detail-page.combined-scheduler-view .calendar-controls-and-calendar-wrap {
	margin-left: auto;
	width: calc(100% - 170px);
}

.calendars-list-filter li:not(:last-child) {
}

.calendars-list-filter a {
	align-items: center;
	color: #333;
	display: flex;
	font-size: 15px;
	gap: 5px;
	padding: 5px 0;
	position: relative;
	text-decoration: none;
	transition: background 0.2s ease;
}

.calendars-list-filter a,
.calendars-list-filter a * {
	position: relative;
	z-index: 1;
}

.calendars-list-filter a:hover {
	text-decoration: none;
}

.calendars-list-filter a:before {
	background: rgba(0,0,0,0.05);
	border-radius: 25px;
	bottom: 0;
	content: '';
	left: -15px;
	opacity: 0;
	position: absolute;
	right: -15px;
	top: 0;
	transition: opacity 0.2s ease;
	z-index: 0;
}

.calendars-list-filter a:hover:before {
	opacity: 1;
}

.calendars-list-filter a .icon {
	align-items: center;
	background: #808080;
	border-radius: 2px;
	border: 2px solid #808080;
	display: flex;
	height: 18px;
	justify-content: center;
	min-width: 18px;
	position: relative;
	width: 18px;
}

.calendars-list-filter a:not(.selected) .icon {
	background: transparent !important;
}

.calendars-list-filter a.selected .icon:after {
  content: '';
  width: 4px;
  height: 9px;
  border: solid #ffffff;
  margin: -4px 0 0 1px;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.calendar .timeslot-selector {
	font-size: 14px;
	height: auto;
	line-height: 100%;
	margin: 5px 0 0 0;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	text-overflow: ellipsis;
}

.calendar .timeslot-selector .icon {
	background: #808080;
	border-radius: 100%;
	height: 9px;
	width: 9px;
}

.scheduler-outer-wrap .calendar-detail-page .calendar td .inner {
	padding-right: 0;
}

.scheduler-outer-wrap .calendar .today {
	background: transparent;
}

.scheduler-outer-wrap .calendar .weekend.today {
	background: #eaeaea;
}

.scheduler-outer-wrap .calendar .short-date {
	font-size: 11px;
	position: relative;
}

.scheduler-outer-wrap .calendar .today .short-date {
	color: #fff;
}

.scheduler-outer-wrap .calendar .today .short-date * {
	color: #fff;
	position: relative;
	z-index: 1;
}

.scheduler-outer-wrap .calendar .today .short-date:after {
	background: #0b57d0;
	border-radius: 100%;
	content: '';
	height: 20px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	z-index: -1;
}

.calendar .timeslot-selector .button {
	bottom: 0;
	height: 100%;
	left: 0;
	line-height: 100%;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.calendar .timeslot-selector .time {
	border-radius: 5px;
	border: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 3px 5px;
	text-align: left;
}

.calendar .timeslot-selector:hover .time {
	background: rgba(0,0,0,0.1);
}

.calendar .small-action-button.more-times-button {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    display: block;
    float: none;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 100%;
    margin: 5px 0 0;
    padding: 6px 10px;
    text-align: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.calendar .small-action-button.more-times-button:hover {
	background: #333;
	color: #fff;
}

.scheduler-outer-wrap .calendar .empty-cell {
	background: none;
}

.scheduler-outer-wrap .calendar .empty-cell.weekend {
	background: #eaeaea;
}

@media (max-width: 890px) {
	.calendar-detail-page.combined-scheduler-view {
		flex-direction: column;
	}

	.calendar-detail-page.combined-scheduler-view .calendar-controls-and-calendar-wrap {
		width: 100%;
	}

	.calendar-detail-page.combined-scheduler-view .calendar td:not(.has-events) {
		display: none;
	}

	.scheduler-outer-wrap .calendar-detail-page.combined-scheduler-view .calendar td .inner {
		padding: 20px;
	}

	.calendar-detail-page.combined-scheduler-view .short-date {
		display: block;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Content Box List Feeds ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.cb-intro h2 {
	margin-bottom: 25px;
}

.content-box-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.content-box-list li {
	margin-bottom: 30px;
}

.content-box-list li a,
.content-box-list.testimonials li {
	box-shadow: 0 10px 20px rgba(0,0,0,0.16);
	display: block;
	padding: 30px 0;
	text-align: center;
	text-decoration: none;
	transition: box-shadow 0.2s ease;
}

.content-box-list li a:hover {
	box-shadow: 0 10px 25px rgba(0,0,0,0.26);
}

.content-box-list .thumbnail {
	display: block;
	margin-bottom: 20px;
	margin-top: -30px;
}

.content-box-list .thumbnail img {
	display: block;
	width: 100%;
}

.content-box-list.testimonials li {
	padding: 30px;
	text-align: left;
}

.content-box-list li a .date,
.content-box-list li a .date strong {
	color: #000;
	display: block;
	margin: 0 0 20px 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.content-box-list.events li a .date {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33.254' height='32.36' viewBox='0 0 33.254 32.36'%3E%3Cg id='event-icon' transform='translate(-792.836 -153.135)'%3E%3Cpath id='Path_18' data-name='Path 18' d='M802.3,176.418h-3.582a.509.509,0,0,0-.507.509v3.582a.508.508,0,0,0,.507.509H802.3a.509.509,0,0,0,.509-.509v-3.582A.51.51,0,0,0,802.3,176.418ZM799.224,180v-2.564h2.567V180Z' fill='%23114062'/%3E%3Cpath id='Path_19' data-name='Path 19' d='M802.3,168.359h-3.582a.508.508,0,0,0-.507.508v3.582a.509.509,0,0,0,.507.509H802.3a.51.51,0,0,0,.509-.509v-3.582A.509.509,0,0,0,802.3,168.359Zm-3.074,3.582v-2.565h2.567v2.565Z' fill='%23114062'/%3E%3Cpath id='Path_20' data-name='Path 20' d='M811.253,176.418h-3.582a.509.509,0,0,0-.507.509v3.582a.508.508,0,0,0,.507.509h3.582a.509.509,0,0,0,.509-.509v-3.582A.51.51,0,0,0,811.253,176.418ZM808.18,180v-2.564h2.566V180Z' fill='%23114062'/%3E%3Cpath id='Path_21' data-name='Path 21' d='M811.253,168.359h-3.582a.508.508,0,0,0-.507.508v3.582a.509.509,0,0,0,.507.509h3.582a.51.51,0,0,0,.509-.509v-3.582A.509.509,0,0,0,811.253,168.359Zm-3.073,3.582v-2.565h2.566v2.565Z' fill='%23114062'/%3E%3Cpath id='Path_22' data-name='Path 22' d='M820.717,172.449v-3.582a.508.508,0,0,0-.507-.508h-3.583a.508.508,0,0,0-.508.508v3.582a.509.509,0,0,0,.508.509h3.583A.509.509,0,0,0,820.717,172.449Zm-3.582-.508v-2.565H819.7v2.565Z' fill='%23114062'/%3E%3Cpath id='Path_23' data-name='Path 23' d='M825.583,155.821h-6.657v-2.177a.508.508,0,1,0-1.016,0v2.177H801.015v-2.177a.508.508,0,1,0-1.015,0v2.177h-6.657a.509.509,0,0,0-.507.509v28.657a.508.508,0,0,0,.507.508h25.4l.179-.009v-.028a.5.5,0,0,0,.2-.121l6.825-6.829a.515.515,0,0,0,.146-.364V156.33A.509.509,0,0,0,825.583,155.821Zm-7.673,22v6.655H793.851V164.9h31.224v12.416h-6.656A.509.509,0,0,0,817.91,177.823Zm-16.895-18.806v-2.179H817.91v2.179a.508.508,0,0,0,1.016,0v-2.179h6.149v7.043H793.851v-7.043H800v2.179a.508.508,0,1,0,1.015,0Zm23.675,19.307-5.764,5.764v-5.764Z' %2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50% 0;
	background-repeat: no-repeat;
	padding-top: 50px;
}

.content-box-list li a .date strong {
	display: inline;
	font-weight: inherit;
	margin: 0 0 0 5px;
}

.content-box-list li a .title {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	padding: 0 20px;
}

.content-box-list li a .abstract {
	display: block;
	margin-bottom: 35px;
	padding: 0 20px;
}

.content-box-list li a .see-details {
	border-bottom: 1px solid transparent;
	display: inline-block;
	padding: 0 0 5px 0;
	transition: border 0.2s ease;
}

.content-box-list.events li a .see-details {
	margin-top: 25px;
}

.content-box-list.blog li a .see-details {
	display: none;
}

.content-box-list li a .see-details,
.content-box-list.blog li a .cb:before {
	content: 'READ MORE';
	text-transform: uppercase;
	transition: border 0.2s ease;
}

.content-box-list li a .see-details:hover,
.content-box-list.blog li a .cb:hover:before {
	border-bottom: 1px solid #114062;
	padding-bottom: 5px;
}

.ss-content-block .driving-directions-wrap,
.ss-content-block .submission-form-wrap.has-driving-directions {
	float: none;
	width: auto;
}

.ss-content-block .form-section {
	margin-bottom: 20px;
}

.ss-content-block .submission-form-wrap input.button {
	width: 100%;
}

.ss-content-block.col-1 .submission-form-wrap input.button,
.ss-content-block.col-2 .submission-form-wrap input.button {
	width: auto;
}

@media (min-width: 768px) {
	.ss-content-block.col-1 .content-box-list {
		display: flex;
		flex-wrap: wrap;
		padding: 60px 30px 30px 30px;
	}	

	.ss-content-block.col-1 .content-box-list li {
		display: flex;
		margin: 0 30px 60px 30px;
		width: calc((100% / 3) - 60px);
	}

	.ss-content-block.col-1 .content-box-list li a {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.content-box-list li a .cb {
		margin-top: auto;
	}
}

@media (min-width: 768px) and (max-width: 1100px) {
	.ss-content-block.col-1 .content-box-list {
		padding: 30px 15px 15px 15px;
	}

	.ss-content-block.col-1 .content-box-list li {
		margin: 0 15px 30px 15px;
		width: calc((100% / 3) - 30px);
	}	
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Buttons --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.button,
.small-action-button,
.pager,
.pager-prev,
.pager-next {
	-webkit-appearance: none;
	background: #333;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	line-height: 100%;
	margin: 0;
	padding: 15px 30px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
 	transition: background 0.2s ease, color 0.2s ease;
}

.small-action-button {
	font-size: 75%;
	padding: 6px 20px;
}

.pager,
.pager-prev,
.pager-next {
	padding: 2px 8px;
	vertical-align: middle;
}

.button:hover, 
.small-action-button:hover,
.pager:hover, 
.pager-prev:hover,
.pager-next:hover, 
.pager.on {
	background: #808080;
	color: #fff;
	text-decoration: none;
}

form.category-and-window .text-search-wrap .submit,
.search-page-form-wrap .text-search-wrap .submit {
	background-color: #333;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Cpath id='search-icon-white' d='M13.72,12.434h-.678L12.8,12.2a5.583,5.583,0,1,0-.6.6l.232.24v.678L16.722,18,18,16.722Zm-5.146,0a3.859,3.859,0,1,1,3.859-3.859A3.854,3.854,0,0,1,8.575,12.434Z' transform='translate(-3 -3)' fill='%23e9eef2'/%3E%3C/svg%3E");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	border-radius: 0;
	color: #fff;
  	transition: background-color 0.2s ease;
}

.search-page-form-wrap .text-search-wrap .submit:hover,
form.category-and-window .text-search-wrap .submit:hover {
  	background-color: #808080;
}

@media (max-width: 1023px) {
	.button,
	.small-action-button,
	.pager,
	.pager-prev,
	.pager-next {
		font-size: 15px;
		letter-spacing: 2px;
	}

	.button {
		padding: 10px 30px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* All Search Inputs / Buttons ------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.search-form,
.text-search-wrap {
	max-width: 330px;
	position: relative;
}

.search-form input[type=text],
.text-search-wrap input[type=text] {
	padding-right: 50px;
	width: 100%;
}

.text-search-wrap .submit,
.text-search-wrap .submit:hover,
.text-search-wrap .button,
.text-search-wrap .button:hover,
.search-form button,
.search-form button:hover {
	-webkit-appearance: none;
	background: transparent url(/images/shared/search-icon.svg) 50% 50% no-repeat;
	background-size: 16px auto;
	border: none;
	border-radius: 6px;
	box-shadow: none;
	cursor: pointer;
	font-size: 0;
	height: 100%;
	outline: none;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
  	transition: opacity .2s linear;
	width: 50px;
}

.text-search-wrap .submit:hover,
.text-search-wrap .button:hover,
.search-form button:hover {
	opacity: 0.8;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* RSS/Pager ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.rss-link-wrap {
	display: none;
}

.upper-pager,
.lower-pager {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
	text-align: right;
}

.page-buttons {
	order: 1;
}

.page-count {
	color: #b7b7b7;
	float: left;
	font-size: 75%;
	padding: 0 10px 0 0;
	text-transform: uppercase;
}

.pager, 
.pager-prev, 
.pager-next {
	background: #d5d5d5;
	color: #fff;
	display: inline-block;
	font-size: 75%;
	margin: 0 0 0 3px;
	padding: 5px 13px;
	text-decoration: none;
	text-transform: uppercase;
}

.pager:hover, 
.pager-prev:hover, 
.pager-next:hover,
.pager.on {
	background: #498fac;
	text-decoration: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Miscellaneous --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.smr { margin-right: 10px; }
.smt { margin-top: 10px; }
.mt { margin-top: 20px; }
.bmt { margin-top: 30px; }
.vsmt  { margin-top: 4px; }

.vsmb { margin-bottom: 4px; }
.smb { margin-bottom: 10px; }
.mb { margin-bottom: 20px; }
.bmb { margin-bottom: 30px; }

.sml { margin-left: 10px; }

.cb { clear: both; }
.cr { clear: right; }
.cl { clear: left; }
.fr { float: right; }
.fl { float: left; }
.cn { clear: none; }

.tar { text-align: right; }
.tac,th.tac { text-align: center; }
.spt { padding-top: 5px; }
.spr { padding-right: 5px; }
.pt { padding-top: 15px; }
.g { color: #808080; }
.red { color: red; }
.nmr { margin-right: 0; }
.nbg { background: none; }
.gbr { border-right: 1px solid #e8e8e8; }
.dn { display: none; }
.gr { color: green; }
.w { color: #ffffff; }

.small { font-size: 80%; }

.di { display: inline; width: auto; float: none; }
.dib { display: inline-block; }

.uc { text-transform: uppercase; }

strong.match {
	background: #fffae0;
	color: green;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* SoSimple Overlay ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.sosimple-underlay {
	background: #000000;
	display: none;
	bottom: 0;
	left: 0;
	opacity: .7;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 600;
}

.sosimple-overlay {
	background: #ffffff;
	box-shadow: 0 0 20px rgba(0,0,0,.50);
	display: none;
	left: 50%;
	margin: 0 0 0 -200px;
	padding: 15px;
	position: absolute;
	top: 100px;
	min-width: 100px;
	z-index: 601;
}

.sosimple-overlay .sosimple-overlay-close {
	background: url(/images/shared/x-close.svg) 0 0 no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 18px;
	right: 18px;
	width: 25px;
	height: 26px;
	cursor: pointer;
	z-index: 201;
}

@media (max-width: 768px) {
	.sosimple-overlay {
		left: 0!important;
		margin: 0 25px!important;
		width: calc(100% - 50px)!important;
	}
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Driving Directions ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.map-wrap {
	margin-top: 15px;
}

.map-canvas.driving-directions {
	height: 400px;
	margin: 15px 0;
	width: 100%;
}

.driving-directions-input-fields .field-wrap {
	position: relative;
	padding-left: 60px;
	margin-bottom: 10px;
}

.driving-directions-input-fields label {
	color: #808080;
	font-size: 85%;
	margin-bottom: 0px;
	text-transform: uppercase;
	position: absolute;
	left: 0;
}

.driving-directions-input-fields .submit-wrap {
	text-align: right;
}

@media (min-width: 900px) {
	.map-content-wrap {
		display: inline-block;
		margin-top: 80px;
		padding-right: 45px;
		width: calc(100% * 1/3);
	}

	.map-wrap {
		margin: 0;
		float: right;
		width: calc(100% * 2/3);
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Images within Content ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.image-left {
	float: left;
	margin: 0 15px 15px 0;
}

.image-right {
	float: right;
	margin: 0 0 15px 15px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Portfolio Builder / Inspiration Gallery (With Left or Top Checkbox Filters) ------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 890.5px) {
	.inspiration-gallery-list.has-left-side-filters {
		display: flex;
		justify-content: space-between;
	}

	.inspiration-gallery-list.has-left-side-filters .inspiration-gallery-left-side {
		width: 225px;
	}

	.inspiration-gallery-list.has-left-side-filters .inspiration-gallery-right-side {
		flex: 1;
		margin-left: 40px;
	}
}

.inspiration-gallery-right-side {
	position: relative;
}

@media (max-width: 890px) {
	.inspiration-gallery-list.has-left-side-filters {
		display: flex;
		flex-direction: column;
	}

	.inspiration-gallery-list.has-left-side-filters .inspiration-gallery-left-side {
		margin-bottom: 80px;
	}
}

.inspiration-gallery-right-side .inspiration-gallery-items {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	width: 100%;
}

.inspiration-gallery-right-side .inspiration-gallery-items .col {
	display: flex;
	max-width: calc((100% / 3) - ((15px / 3) * 2)); /* set 15px to the "gap" value above */
}

@media (max-width: 600px) {
	.inspiration-gallery-right-side .inspiration-gallery-items .col {
		max-width: calc(50% - calc(15px / 2)); /* set 15px to the "gap" value above */
	}
}

.inspiration-gallery-right-side .inspiration-gallery-items .col a {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.inspiration-gallery-right-side .inspiration-gallery-items .col a .image {
	background: 50% 50% no-repeat;
	background-size: cover;
	border: 1px solid #cccccc;
	display: block;
	-webkit-transition: opacity .25s linear;
	transition: opacity .25s linear;
}

.inspiration-gallery-right-side .inspiration-gallery-items .col a .image img {
	display: block;
	opacity: 1;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.inspiration-gallery-right-side .inspiration-gallery-items .col a .caption {
	display: block;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 0 0 0;
}

.inspiration-gallery-items.quad .row .col a .caption {
	font-size: 12px;
}

.inspiration-gallery-right-side .inspiration-gallery-items .col a:hover .image {
	opacity: .7;
}

.inspiration-gallery-list:not(.has-left-side-filters) .inspiration-gallery-filter-group.categories {
	display: none;
}

/* Category and Filter Groups/Options */
.inspiration-gallery-filter-group {
	border-radius: 4px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
	padding: 8px 12px;
}

.inspiration-gallery-filter-group .inspiration-gallery-filter-group-toggle {
	cursor: pointer;
	font-weight: bold;
	margin: 0 0 10px 0;
	padding-right: 25px;
	position: relative;
}

.inspiration-gallery-filter-group .inspiration-gallery-filter-group-toggle:after {
	border-color: inherit;
	border-style: solid;
	border-width: 2px 2px 0 0;
	content: '';
	height: 7px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-70%) rotate(135deg);
	transition: transform 0.2s ease;
	width: 7px;
}

.inspiration-gallery-filter-group.closed .inspiration-gallery-filter-group-toggle:after {
	transform: translateY(-30%) rotate(-45deg);
}

.inspiration-gallery-filter-group ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.inspiration-gallery-filter-group ul li {
	margin-bottom: 10px;
}

.inspiration-gallery-filter-group ul li label {
	align-items: center;
	cursor: pointer;
	display: flex;
	line-height: 100%;
	margin: 0;
	position: relative;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.inspiration-gallery-filter-group ul li label input[type=checkbox] {
	-webkit-appearance: none;
	border: 1.25px solid #9d9d9d;
	border-radius: 2px;
	cursor: pointer;
	display: inline-block;
	height: 16px;
	left: 0;
	margin: 0;
	margin-right: 7px;
	padding: 0;
	position: relative;
	top: 0;
	transition: border-color 0.1s ease;
	width: 16px;
}

.inspiration-gallery-filter-group ul li label input[type=checkbox]:checked:before {
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	content: "";
	display: inline-block;
	height: 6px;
	left: 4.5px;
	position: absolute;
	top: 2px;
	transform: rotate(45deg);
	width: 3px;
}

.inspiration-gallery-filter-group ul li label .text {
	color: #777777;
	transition: color 0.1s ease;
}

.inspiration-gallery-filter-group ul li label:hover .text {
	color: #000;
}

.inspiration-gallery-filter-group.categories.has-category-selected ul li a {
	padding-left: 12px;
	position: relative;
}

.inspiration-gallery-filter-group.categories.has-category-selected ul li a:before {
	border-color: #808080;
	border-style: solid;
	border-width: 2px 2px 0 0;
	content: '';
	height: 5px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-30%) rotate(-135deg);
	transition: transform 0.2s ease;
	width: 5px;
}

.inspiration-gallery-filter-group.categories.has-category-selected ul li.selected a {
	color: inherit;
}


/* detail page */
.detail-page.inspiration-gallery {

}

.detail-page.inspiration-gallery .small-action-button.negmt {
	margin-top: -40px;
}

.detail-page.inspiration-gallery h2.title {

}

.detail-page.inspiration-gallery .social-share-links {
	border-bottom: 1px solid #e5e5e5;
	border-top: 1px solid #303030;
	margin: 0 0 15px 0;
	padding: 15px 0 12px 0;
}

.detail-page.inspiration-gallery .social-share-links .houzz iframe {
	position: relative;
	top: -2px;
}

.detail-page.inspiration-gallery .social-share-links li.wishlist {
	float: right;
	margin: 3px 0 0 0;
}

.detail-page.inspiration-gallery .hr {

}

.detail-page.inspiration-gallery .image {
	margin: 0 0 15px 0;
}

.detail-page.inspiration-gallery .image img {
	max-width: 100%;
}

.detail-page.inspiration-gallery .posted-in {

}

.detail-page.inspiration-gallery .ss-section-wrap-inner {
	max-width: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Inspiration Gallery Masonry Grid -------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.inspiration-gallery-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 15px 0;
}

.inspiration-gallery-filters .cb {
	display: none;
}

.inspiration-gallery-filters .select-filter-wrap {
	margin: 0 0 15px 0;
	width: 100%;
}

.inspiration-gallery-filters .select-filter-wrap label {
	display: none;
}

.inspiration-gallery-filters .select-filter-wrap select {
	width: 100%;
}

.masonry-grid {
	opacity: 0;
	transition: opacity 0.4s linear;
}

.masonry-grid.loaded {
	opacity: 1;
}

.masonry-grid .masonry-item {
	margin-bottom: 25px;
	position: absolute;
	width: 100%;
}

.masonry-grid .gutter-sizer {
	position: absolute;
	width: 0;
}

.masonry-item a {
	display: block;
}

.masonry-item a span,
.masonry-item a span img {
	display: block;
}

.masonry-item a .image {
	background: 50% 50% no-repeat;
	background-size: cover;
	height: 0;
	padding-top: 100%;
}

.masonry-item a .image img {
	display: none;
}

.masonry-item a:before {
	backdrop-filter: blur(5px);
	background: rgba(0,0,0,0.6);
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.3s linear;
}

.masonry-item a span.title {
	color: #fff;
	filter: blur(3px);
	left: 0;
	opacity: 0;
	padding: 10px 25px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	transform: translateY(-50%) scale(1.25);
	transition: opacity 0.3s linear, transform 0.3s ease, filter 0.3s ease;
	z-index: 2;
}

.masonry-item a:hover:before {
	opacity: 1;
}

.masonry-item a:hover span.title {
	opacity: 1;
	filter: blur(0);
	transform: translateY(-50%);
	transition-delay: 0.2s;
}

@media (min-width: 550px) {
	.masonry-grid .gutter-sizer {
		width: 25px;
	}

	.inspiration-gallery-filters .select-filter-wrap,
	.masonry-grid .grid-sizer,
	.masonry-grid .masonry-item {
		width: calc(50% - (25px / 2) - 0.1px);
	}
}

@media (min-width: 768px) {
	.inspiration-gallery-filters .select-filter-wrap,
	.masonry-grid .grid-sizer,
	.masonry-grid .masonry-item {
		width: calc((100% / 3) - ((25px / 3) * 2) - 0.1px);
	}
}

@media (min-width: 1024px) {
	.inspiration-gallery-filters .select-filter-wrap,
	.masonry-grid .grid-sizer,
	.masonry-grid .masonry-item {
		width: calc(25% - ((25px / 4) * 3) - 0.1px);
	}
}

@media (max-width: 1024px) {
	.masonry-item a:before {
		display: none;
	}
	
	.masonry-item a span.title,
	.masonry-item a:hover span.title {
		backdrop-filter: blur(5px);
		background: rgba(0,0,0,0.6);
		bottom: 0;
		filter: blur(0);
		opacity: 1;
		padding: 20px;
		top: auto;
		transform: none;
	}	
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Interactive Map Page ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.leaflet-container.leaflet-touch-drag.leaflet-touch-drag {
  	z-index: 1;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Wishlist -------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.wishlist-list .social-share-links {
	float: right;
	list-style: none;
	margin: -55px 0 0 0;
	padding: 0 0 10px 0;
}

.wishlist-list .social-share-links li {
	border-right: 1px solid #cccccc;
	display: inline-block;
	padding: 0 10px 10px 10px;
	height: 20px;
	line-height: 30px;
}

.wishlist-list .social-share-links li a,
.wishlist-list .social-share-links li.share .st_sharethis_custom {
	color: #202020;
	cursor: pointer;
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	line-height: 17px;
	padding-left: 24px;
}

.wishlist-list .social-share-links li a:hover {
	text-decoration: none;
}

.wishlist-list .social-share-links li:hover {
	opacity: .7;
}

.wishlist-list .social-share-links li.share .st_sharethis_custom {
	background: url(../images/shared/wishlist-share.png) 0 50% no-repeat;
	background-size: 16px 17px;
}

.wishlist-list .social-share-links li.email a {
	background: url(../images/shared/wishlist-email.png) 0 50% no-repeat;
	background-size: 18px 12px;
}

.wishlist-list .social-share-links li.print a {
	background: url(../images/shared/wishlist-print.png) 0 50% no-repeat;
	background-size: 19px 17px;
}

.wishlist-list .social-share-links li.count {
	border-right: 0;
	font-size: 16px;
	font-weight: bold;
}

.wishlist-list .social-share-links li.count:hover {
	opacity: 1;
}

.wishlist-list .social-share-links li.count .label {
	background: url(../images/shared/wishlist-blue.png) 0 50% no-repeat;
	background-size: 28px auto;
	display: inline-block;
	padding-left: 32px;
	line-height: 30px;
	height: 30px;
}

.wishlist-list .social-share-links li.count .count {
	color: #479ce4;
}

.wishlist-list .col {
	border: 1px solid #c5c5c5;
	float: left;
	margin: 0 0 15px 0;
	position: relative;
	min-height: 165px;
	padding: 17px;
	width: 44%;
}

.wishlist-list .col.first {
	clear: both;
}

.wishlist-list .col.last {
	float: right;
}

.wishlist-list .col .remove {
	background: url(../images/shared/blue-x.png) 100% 50% no-repeat;
	background-size: 14px auto;
	color: #479ce4;
	font-size: 12px;
	font-weight: bold;
	padding-right: 18px;
	position: absolute;
	right: 10px;
	top: 10px;
}

.wishlist-list .col .remove:hover {
	text-decoration: underline;
}

.wishlist-list .col .image {
	border: 1px solid #cccccc;
	display: block;
	float: left;
	max-height: 165px;
	overflow: hidden;
	width: 40%;
}

.wishlist-list .col .image img {
	display: block;
	max-width: 100%;
}

.wishlist-list .col .info {
	float: right;
	width: 55%;
	padding-top: 12px;
}

.wishlist-list .col .info .path {
	margin: 0 0 6px 0;
}

.wishlist-list .col .info .title {
	font-size: 16px;
	font-weight: bold;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Right Side Full Width (Feedback/Map Pages) ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.submission-form-wrap.has-driving-directions {
	border-bottom: 1px solid #cccccc;
	margin-bottom: 25px;
	padding-bottom: 25px;
}

@media (min-width: 900px) {
	body.page-type-8 .main-content {
		display: flex;
		justify-content: space-between;
	}

	body.page-type-8 .main-content > .cb {
		display: none;
	}

	.submission-form-wrap.has-driving-directions {
		border: 0;
		margin: 0;
		padding: 0;
	}

	.submission-form-wrap.has-driving-directions,
	.driving-directions-wrap {
		width: 48%;
	}
	
	.driving-directions-wrap {
		margin-left: auto;
	}
}

.driving-directions-input-fields .field-wrap {
	align-items: center;
	display: flex;
}

.driving-directions-input-fields .field-wrap input {
	width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Site Alert ----------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#global-site-alert-popup {
	padding: 0;
	max-width: 100% !important;
}

#global-site-alert-popup .sosimple-overlay-close {
	background: url(/images/shared/white-x-close.png) 0 0 no-repeat;
	height: 38px;
	width: 38px;
	top: 0;
	right: -44px;
}

.global-site-alert .heading {
	background: #777777;
	text-align: center;
	padding: 5px 20px;
}

.global-site-alert .heading h3 {
	color: #ffffff;
	font-size: 44px;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.global-site-alert .content-wrap {
	min-height: 100px;
	padding: 5%;
	width: 700px;
	max-width: 90%;
}

.global-site-alert .content-wrap img {
	height: auto !important;
	max-width: 100%;
}

@media (max-width: 960px) {
	.global-site-alert .heading {
		padding-right: 60px;
	}	
	
	#global-site-alert-popup .sosimple-overlay-close {
		right: 5px;
		top: 4px;
	}
}


@media (max-width: 775px) {
	#global-site-alert-popup {
		margin: 0 5% !important;
		left: 0 !important;
		width: 90% !important;
	}

	.global-site-alert .heading h3 {
		font-size: 30px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Map Locations Page Type ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.map-locations-page-content {
	display: flex;
	justify-content: space-between;
}

.map-locations-categories {
	margin-right: 30px;
	width: 300px;
}

.map-locations-categories-heading-area,
.map-locations-map-container-heading-area {	
	background: #545454;
	margin: 0;
	padding: 10px 15px;
	position: relative;
}

.map-locations-categories-heading-area h3,
.map-locations-map-container-heading-area h3,
.map-locations-zip-radius-wrap h3 {	
	color: #fff;
	font-size: 100%;
	margin: 0;
	padding: 0;
}

/* Search by Location (city, state, zip and/or radius) */
.map-locations-map-container-heading-area.zip-code {
	margin: 0 0 10px 0;
}

.map-locations-zip-radius-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 10px;
}

.map-locations-zip-radius-wrap input {
	margin-right: 10px;
	width: calc(50% - 5px);
}

.map-locations-zip-radius-wrap select {
	width: calc(50% - 5px);
}

.map-locations-now-viewing .cb {
	display: none;
}

/* Filter by Category -> Mapping x of x / Clear Filters Area */
.map-locations-now-viewing {
	align-items: center;
	background: #ababab;
	color: #fff;
	display: flex;
	font-size: 80%;
	justify-content: space-between;
	margin: 0;
	padding: 10px 15px;
}

.map-locations-now-viewing .button-wrap .button {
	background: #e34e4e;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 400;
	opacity: 1;
	padding: 5px 10px;
	text-transform: none;
}

.map-locations-now-viewing .button-wrap .button:hover {
	background: #bd2424;
}

/* Filter by Category -> Keyword Search */
.map-locations-search-wrap {
	background: #fff url(/images/shared/search-icon.svg) 16px 50% no-repeat;
	border: 1px solid #d4d4d4;
	border-top: 0;
	padding: 0 10px 0 45px;
}

.map-locations-search-wrap input {
	background: none;
	box-shadow: none;
	border: 0;
	outline: none;
	padding: 15px 0 15px 0;
	width: 100%;
}

.button.map-location-search-submit-button { display: none; }

@media (max-width: 768px) {
	.button.map-location-search-submit-button {
		display: block; 
		margin: 5px auto 0;
		width: 100%;
	}
}

/* Filter by Category -> Categories List */
.map-locations-categories-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.map-locations-categories-list li.field-wrap {
	margin: 0;
	padding: 0;
}

.map-locations-categories-list li.field-wrap span.checkbox-wrap {
	border-bottom: 1px solid #d4d4d4;
	border-left: 1px solid #d4d4d4;
	box-shadow: none;
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
}

.map-locations-categories-list li.field-wrap span.checkbox-wrap label {
	background-position: 10px 50%;
	height: 60px;
	line-height: 60px;
	margin: 0;
	min-height: 0;
	padding: 0 80px 0 70px;
	position: relative;
}

.map-locations-categories-list li .checkbox-wrap .text .image {
	left: 37px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
}

.map-locations-categories-list li .checkbox-wrap .text .image img {
	box-shadow: none;
	display: block;
	float: none;
	margin: 0 auto;
	max-height: 28px;
	max-width: 25px;
	padding: 0;
	width: auto;
}

.map-locations-categories-list li .checkbox-wrap .text .title {
    display: inline-block;
    font-size: 90%;
	line-height: 100%;
	vertical-align: middle;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
	width: 100%;
}

.map-locations-categories-list li .checkbox-wrap .text .count {
	background: rgba(0,0,0,0.05);
	bottom: 0;
	font-size: 110%;
	line-height: 60px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 60px;
}

.map-locations-categories-list li .checkbox-wrap .text .count .parenth {
	display: none;
}

.map-locations-map-container {
	flex: 1;
}

.map-locations-map-container-heading-area {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.map-locations-map-container-heading-area .cb {
	display: none;
}

.map-locations-map-container-heading-area .button,
.map-locations-map-container-heading-area .button:hover,
.list-items.map-locations-items > li .read-more-wrap .button,
.list-items.map-locations-items > li .read-more-wrap .button:hover,
.leaflet-container a.button,
.leaflet-container a.button:hover {
	background: none;
	border-bottom: 1.5px solid transparent;
	border-radius: 0;
	border: 0;
	color: #fff;
	font-family: inherit;
	font-size: 85%;
	letter-spacing: inherit;
	margin: 0 20px 0 0;
	padding: 0 0 1px 0;
	text-decoration: none;
	text-transform: none;
	transition: border 0.2s ease;
}

.map-locations-map-container-heading-area .button:last-child {
	margin: 0;
}

.map-locations-map-container-heading-area .button.selected,
.map-locations-map-container-heading-area .button:hover,
.list-items.map-locations-items > li .read-more-wrap .button:hover,
.leaflet-container a.button:hover {
	border-bottom: 1.5px solid;
}

/* map holder */
#ajax-map-result {
	min-height: 500px;
	position: relative;
}

/* map container */
.map-locations-map {
	height: 500px;
	position: relative;
}

/* overlay */
.map-loading-overlay {
	background: #ffffff;
	bottom: 0;
	left: 0;
	opacity: .4;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 40;
}

.map-loading-overlay img {
	left: 50%;
	margin: -32px 0 0 -32px;
	position: absolute;
	top: 50%;
}

/* list view */
.list-items.map-locations-items > li {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.16);
	margin-bottom: 10px;
	padding: 15px;
	position: relative;
}

.list-items.map-locations-items > li:first-child {
	margin-top: 10px;
}

.list-items.map-locations-items > li .content {
	display: flex;
	flex-wrap: wrap;
	float: none;
}

.list-items.map-locations-items > li .content .title {
	padding-right: 200px;
	width: 100%;
}

.list-items.map-locations-items > li .content .address {
	margin: 10px 50px 30px 0;
}

.list-items.map-locations-items > li .content .address .address1 { 
	display: block;
}

.list-items.map-locations-items > li .content .address .address2 { 
	display: block;
}

.list-items.map-locations-items > li .content .address .country { 
	display: none;
}

.list-items.map-locations-items > li .read-more-wrap {
	display: flex;
	position: absolute;
	right: 15px;
	top: 15px;
	width: auto;
}

.list-items.map-locations-items > li .read-more-wrap .button,
.list-items.map-locations-items > li .read-more-wrap .button:hover {
	color: rgba(0,0,0,0.75);
	font-size: 75%;
	font-weight: normal;
	margin-right: 20px;
	position: relative;
}

.list-items.map-locations-items > li .read-more-wrap .button:after {
	background: rgba(0,0,0,0.5);
	content: '';
	height: 15px;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}

.list-items.map-locations-items > li .read-more-wrap .button:last-child {
	margin: 0;
}

.list-items.map-locations-items > li .read-more-wrap .button:last-child:after {
	display: none;
}

.page-type-22 .categories {
	border-top: 1px solid #cccccc;
	margin: 10px 0 0 0;
	padding: 8px 0 0 0;
}

.page-type-22 .categories ul {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0 0 0 10px;
}

.page-type-22 .categories ul li {
	display: inline-block;
	padding-right: 10px;
}

/* popup */
.page-type-22 .leaflet-container {
	font-size: inherit;
	font-size: 80%;
}

.leaflet-container .address1,
.leaflet-container .address2 {
	display: block;
}

.leaflet-container .short_description {
	margin-top: 8px;
}

.leaflet-container a.title {
	color: inherit;
	font-size: 130%;
	font-weight: bold;
}

.leaflet-container a {
	color: inherit;
}

.leaflet-container a.button,
.leaflet-container a.button:hover {
	border-bottom: 1.5px solid;
	color: inherit;
	font-size: inherit;
}

.leaflet-popup-content p {
	margin: 0 0 10px 0;
}

.leaflet-popup-content p:last-child {
	margin: 0;
}

.page-type-22 .leaflet-container .categories {
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	padding: 8px 0;
}

.page-type-22 .leaflet-container .categories ul {
	padding: 0;
}

/* detail page */
.detail-page.map-location {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
}

.detail-page.map-location > div {
	order: 2;
	width: 100%;
}

.detail-page.map-location > .button {
	margin-left: auto;
	order: 1;
}

.detail-page.map-location .address {
	margin: 10px 0;
}

.detail-page.map-location .address .address1,
.detail-page.map-location .address .address2 {
	display: block;
}

.detail-page.map-location > div.image,
.detail-page.map-location > div.content.has-image {
	width: calc(50% - 25px);
}

.detail-page.map-location > div.image {
	margin-right: 50px;
}

.detail-page.map-location > div.image img {
	width: 100%;
}

.detail-page.map-location .categories {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-top: 1px solid rgba(0,0,0,0.1);
	margin: 15px 0;
	padding: 15px 0;
}

@media (max-width: 768px) {
	.map-locations-page-content {
		flex-wrap: wrap;
	}

	.map-locations-map-container {
		flex: none;
		margin: 0 0 30px 0;
		width: 100%;
	}

	.map-locations-categories {
		margin: 0;
		order: 2;
		width: 100%;
	}

	#ajax-map-result {
		min-height: 350px;
	}

	.map-locations-map {
		height: 350px;
	}

	.detail-page.map-location {
		display: block;
	}

	.detail-page.map-location > div.image,
	.detail-page.map-location > div.content.has-image {
		width: auto;
	}

	.detail-page.map-location > div.image {
		margin: 0 0 20px 0;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Display Table --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.display-table {
	border: 1px solid #dadada;
	border-right: 0;
	border-bottom: 0;
	width: 100%;
}

.display-table tr.labels {
	box-shadow: 0 2px 2px rgba(0,0,0,.12);
}

.display-table tr.labels th {
	border-bottom: 1px solid #cccccc;

}

.display-table td,
.display-table th,
.display-table th.table-header {
	border-bottom: 1px solid #dadada;
	border-right: 1px solid #dadada;
	display: table-cell;
	height: auto;
	margin: 0;
	padding: 10px 6px;
}

.display-table th {
	background: #f7f7f7;
	background: -moz-linear-gradient(top, #f7f7f7 0%, #e7e7e7 100%);
	background: -webkit-linear-gradient(top, #f7f7f7 0%,#e7e7e7 100%);
	background: linear-gradient(top, #f7f7f7 0%,#e7e7e7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e7e7e7',GradientType=0 );
	text-align: left;
	text-shadow: 0 1px 0 #ffffff;
}

.display-table th.tar {
	text-align: right;
}

.display-table th.actions-column-heading {
	text-align: right;
	width: 65px;
}

.display-table th.table-header { cursor: pointer; }
.display-table th.table-header:hover { 
	color: #808080;
}

.display-table th.table-header.headerSortUp {
	background: #e3e3e3;
	background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#d1d1d1));
	background: -moz-linear-gradient(top,  #e3e3e3,  #d1d1d1);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#d1d1d1');
	color: #000000;
}

.display-table th.table-header.headerSortDown {
	background: #d1d1d1;
	background: -webkit-gradient(linear, left top, left bottom, from(#d1d1d1), to(#e3e3e3));
	background: -moz-linear-gradient(top,  #d1d1d1,  #e3e3e3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d1d1d1', endColorstr='#e3e3e3');
	color: #000000;
}

.display-table tr:hover td {
	background: #eefaff;
}

.display-table tr td img.shadow {
	padding: 3px;
	box-shadow: 0 0 3px rgba(0,0,0,.25);
}

.display-table tr.inactive td {
	color: #cccccc;
}

.display-table tr.inactive td img {
	opacity: .5;
}

.dragClass td {
	background: #d9ecff;
	border-bottom: 1px solid #000000;
	border-top: 1px solid #000000;
	opacity: .5;
}

.dragHandle {
	cursor: move;
}

.view-table th {
	color: #808080;
	font-weight: normal;
	text-align: left;
	font-size: 90%;
	padding: 4px 14px 4px 0;
}

.view-table td {
	padding: 4px;
}

.display-table tr.totals-row td,
.display-table tr.totals-row th,
.view-table tr.totals td,
.view-table tr.totals th {
	border-top: 3px double #cccccc;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Community Portal ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
#filter-form .filter {
	float: left;
	line-height: 100%;
	margin: 0 15px 15px 0;
}

#filter-form .filter .label {
	color: #808080;
	font-size: 85%;
	margin-bottom: 5px;
	text-transform: uppercase;
}

#filter-form .filter select {
	width: auto;
}

#filter-form .rpp-filter {
	display: none;
}

#filter-form .submit.small {
	height: 28px;
	line-height: 28px;
	padding: 0 10px;
}

.member-grid-wrap {
	margin-top: 20px;
}

.member-grid-wrap .grid-item {
	background: rgba(0,0,0,0.02);
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	margin: 0 0 30px 0;
	padding: 15px;
}


@media (min-width: 501px) and (max-width: 767px) {
	.member-grid-wrap .grid-item {
		float: left;
		margin-right: 2%;
		width: 49%;
	}
	
	.member-grid-wrap .grid-item:nth-child(2n) {
		margin-right: 0;
		float: right;
	}	
	
	.member-grid-wrap .grid-item:nth-child(2n+1) {
		clear: both;
	}
}


@media (min-width: 768px) and (max-width: 1023px) {
	.member-grid-wrap .grid-item {
		float: left;
		margin-right: 2%;
		width: 32%;
	}
	
	.member-grid-wrap .grid-item:nth-child(3n) {
		margin-right: 0;
		float: right;
	}	
	
	.member-grid-wrap .grid-item:nth-child(3n+1) {
		clear: both;
	}
}


@media (min-width: 1024px) {
	.member-grid-wrap .grid-item {
		float: left;
		margin-right: 1.33%;
		width: 24%;
	}
	
	.member-grid-wrap .grid-item:nth-child(4n) {
		margin-right: 0;
		float: right;
	}	
	
	.member-grid-wrap .grid-item:nth-child(4n+1) {
		clear: both;
	}
}


.member-grid-wrap .grid-item .image-wrap {
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	display: block;
	height: 200px;
	margin-bottom: 10px;
	overflow: hidden;
	position: relative;
	transition: opacity 0.25s linear;
}

.member-grid-wrap .grid-item .image-wrap.no-photo {
	background-size: contain;
}

.member-grid-wrap .grid-item .image-wrap img {
	opacity: 0;
	margin: 0 auto;
	display: block;
	width: 100%;
}

@media (max-width: 500px) {
	.member-grid-wrap .grid-item .image-wrap {
		height: auto;
	}

	.member-grid-wrap .grid-item .image-wrap.no-photo img {
		width: auto;
	}

}

.member-grid-wrap .grid-item .image-wrap:hover {
	opacity: .7;
}

.member-grid-wrap .grid-item .field-wrap .label {
	font-weight: bold;
}

.member-grid-wrap .grid-item .field-wrap.field-id-email {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.member-grid-wrap .grid-item .view-button-wrap {
	margin-top: 10px;
	text-align: center;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* CM File Library ------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.display-table.cm-file-library {
	border-left: 0;
}

.display-table.cm-file-library td,
.display-table.cm-file-library th {
	border-right: 0;
}

.display-table.cm-file-library th:first-child {
	border-left: 1px solid #dadada;
}

.display-table.cm-file-library th:last-child {
	border-right: 1px solid #dadada;
}

.folder-link,
.file-link {
	background: url(/images/cm_file_library/folder.png) 0 0 no-repeat;
	background-size: 23px auto;
	display: inline-block;
	height: 25px;
	line-height: 25px;
	padding-left: 30px;
	text-decoration: none;
}

a.folder-link:hover {
	background-position: 0 0;
	color: #5e5e5e;
}

.file-link {
	background-size: auto 23px;
	background-position: 3px 0;
	background-repeat: no-repeat;
}

.cm_file_library .breadcrumbs > li > a {
	text-decoration: none;
	color: #333333;
}

.cm_file_library .breadcrumbs > li > a:hover {
	color: #1ea0da;
}

.breadcrumbs-wrap.cm_file_library {
	height: 22px;
	line-height: 22px;
	margin-bottom: 15px;
	position: relative;
	z-index: 9;
}

.breadcrumbs-wrap.cm_file_library .breadcrumbs {
	background-color: #eeeeee;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	border: 1px solid #bbbbbb;
	border-radius: 5px;
	display: block;
	height: 22px;
	line-height: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
}

.breadcrumbs-wrap.cm_file_library .breadcrumbs > li {
	background: url(/images/template/breadcrumb-right-border.png) 100% 50% no-repeat;
	color: #878787;
	float: left;
	font-size: 12px;	
	height: 22px;
	line-height: 22px;
	padding: 0 15px 0 10px;
	position: relative;
}

.breadcrumbs-wrap.cm_file_library .breadcrumbs > li.first {
	padding-right: 16px;
}

.breadcrumbs-wrap.cm_file_library .breadcrumbs li.last {
	background: none;
	color: #000000;
	font-weight: bold;
}

.breadcrumbs-wrap.cm_file_library .breadcrumbs > li a {
	background: url(/images/cm_file_library/folder.png) 0 40% no-repeat;
	background-size: 15px auto;
	display: inline-block;
	padding-left: 20px;
	height: 20px;
	line-height: 20px;
}

.progress-wrap {
	max-width: 500px;
}

.upload-wrap {
	font-size: 12px;
	border: 2px solid #cccccc;
	border-radius: 5px;
	margin: 10px 0;
	padding: 13px 10px 10px 10px;
	position: relative;
}

.upload-wrap .progress {
	background: #cfd7da;
	border-radius: 5px;
	font-size: 10px;
	height: 16px;
	line-height: 16px;
	margin-top: 5px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.upload-wrap .bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 16px;
	background: #63a3bb;
}

.upload-wrap .filename {
	float: left;
	font-weight: bold;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 60%;
}

.upload-wrap .upload-complete {
	color: #1dbb74;
}

.upload-wrap .cancel-upload {
	background: url(/images/shared/x-close.png);
	background-size: 100% auto;
	position: absolute;
	top: 4px;
	right: 4px;
	width: 8px;
	height: 8px;
	cursor: pointer;
}

.upload-wrap .seconds-remaining {
	float: right;
	text-align: right;
}

.spin {
	animation: rotating 2s linear infinite;
}

@keyframes rotating {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#upload-button.disabled {
	color: #808080;
	cursor: not-allowed;
	background: #cccccc;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Social Stream --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.filter-button-group {
	margin-bottom: 15px;
}

.filter-button-group .filter-button {
	color: #808080;
	display: inline-block;
	font-size: 24px;
	vertical-align: middle;
}

.filter-button-group .filter-button.all {
	background: #808080;
	color: #ffffff;
	border-radius: 3px;
	height: 22px;
	line-height: 22px;
	padding: 0 12px;
	font-size: 12px;
}

.filter-button-group .filter-button.all:hover,
.filter-button-group .filter-button.all.selected { background: #000000; }

.filter-button-group .filter-button.twitter:hover,
.filter-button-group .filter-button.twitter.selected { color: #4ec2dc; }

.filter-button-group .filter-button.facebook:hover,
.filter-button-group .filter-button.facebook.selected { color: #4a6ea9; }

.filter-button-group .filter-button.youtube:hover,
.filter-button-group .filter-button.youtube.selected { color: #cd201f; }

.filter-button-group .filter-button.pinterest:hover,
.filter-button-group .filter-button.pinterest.selected { color: #cb2027; }

.social-stream.isotope-grid {
	background: url(/images/shared/loader.gif) 50% 40px no-repeat;
	background-size: 32px auto;
	transition: background 0.25s linear;
}

.social-stream.isotope-grid.loaded {
	background: none;
}

.social-stream.isotope-grid .grid-sizer,
.social-stream.isotope-grid .element-item {
	width: 23%;
}

.social-stream.isotope-grid .element-item.featured {
	width: 48%;
}

.social-stream.isotope-grid .gutter-sizer {
	width: 2%;
}

.social-stream .element-item {
	border: 1px solid rgba(0,0,0,0.3);
	margin-bottom: 20px;
	padding-top: 15px;
}

.social-stream.isotope-grid .element-item {
	opacity: 0;
}

.social-stream.isotope-grid.loaded .element-item {
	opacity: 1;
}

.social-stream .element-item .item-content {
	font-size: 90%;
	line-height: 18px;
	padding: 0 15px 15px 15px;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.social-stream .element-item .item-content .profile-image {
	border: 1px solid rgba(0,0,0,0.15);
	float: left;
	margin: 0 8px 8px 0;
	padding: 1px;
	width: 50px;
}

.social-stream .element-item .item-content .profile-image img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.social-stream .element-item .item-content .profile-link {
	display: block;
	margin-bottom: 10px;
}

.social-stream .element-item .item-content .profile-link .handle {
	color: #808080;
	display: block;
}

.social-stream .element-item .photo {
	margin: 0 15px;
}

.social-stream .element-item .photo a {
	border: 1px solid rgba(0,0,0,0.15);
	display: block;
	max-width: 100%;
}

.social-stream .element-item .photo img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.ss-stream-additional-photos-wrap img {
    display: none;
}

.ss-stream-additional-photos-wrap {
    display: flex;   
    font-size: 0;
    margin: 5px 15px;
}

.ss-stream-additional-photos-wrap a {
    background-size:cover;
    display: inline-block;
    height: 0;
    margin-right: 5px;
    padding-bottom: 30%;
    position:relative;
    vertical-align:top;
    width: calc((100% / 3) - 2.5px);
}

.ss-stream-additional-photos-wrap a:last-child {
    margin-right: 0;
}

.ss-stream-additional-photos-wrap a .ss-stream-additional-count-wrap {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    left:0;
    position: absolute;
    right: 0;
    top: 0; 
    z-index: 1;
}

.ss-stream-additional-photos-wrap a .ss-stream-additional-count-wrap .ss-stream-additional-count {
    color: #fff;
    font-size: 40px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.social-stream .element-item .author-and-share {
	padding: 10px;
}

.social-stream .element-item .author-and-share .author {
	color: #cccccc;
	float: left;
	font-size: 70%;
}

.social-stream .element-item .author-and-share .author a {
	color: #808080;
	font-style: italic;
}

.social-stream .element-item .author-and-share .share {
	float: right;
}

.social-stream .element-item .author-and-share .share a {
	padding-right: 3px;
	color: #808080;
}

.social-stream .element-item .author-and-share .share a:last-child {
	padding-right: 0;
}

.social-stream .element-item .author-and-share .share a.twitter-reply,
.social-stream .element-item .author-and-share .share a.twitter-retweet {
	font-size: 80%;
}

.social-stream .element-item .author-and-share .share a:hover { color: #000000; }
.social-stream .element-item .author-and-share .share a.facebook:hover { color: #4a6ea9; }
.social-stream .element-item .author-and-share .share a.twitter:hover { color: #4ec2dc; }
.social-stream .element-item .author-and-share .share a.google-plus:hover { color: #d34836; }
.social-stream .element-item .author-and-share .share a.linkedin:hover { color: #0077b5; }

.social-stream .element-item .item-footer {
	color: #ffffff;
	background: #333333;
	font-size: 80%;
	height: 30px;
	line-height: 30px;
	position: relative;
	text-align: center;
}

.social-stream .element-item.facebook .item-footer { background: #4a6ea9; }
.social-stream .element-item.twitter .item-footer { background: #4ec2dc; }
.social-stream .element-item.youtube .item-footer { background: #cd201f; }
.social-stream .element-item.pinterest .item-footer { background: #cb2027; }

.social-stream .element-item .social-link { 
	font-size: 18px;
	left: 10px;
	position: absolute;
}

.social-stream .element-item .item-footer a {
	color: #ffffff;
	text-decoration: underline;
}

.tipsy {
	line-height: 100%;
	height: auto;
}

@media (max-width: 960px) {
	.social-stream.isotope-grid .element-item, 
	.social-stream.isotope-grid .grid-sizer {
		width: 32%;
	}

	.social-stream.isotope-grid .element-item.featured {
		width: 66%;
	}
}

@media (max-width: 675px) {
	.social-stream.isotope-grid .element-item, 
	.social-stream.isotope-grid .grid-sizer {
		width: 49%;
	}
	
	.social-stream .element-item {
		margin-bottom: 12px;
	}

	.social-stream.isotope-grid .element-item.featured {
		width: 100%;
	}
}

@media (max-width: 375px) {
	.social-stream.isotope-grid .element-item, 
	.social-stream.isotope-grid .grid-sizer {
		width: 100%;
	}
}

/* Embedded Social Stream */
.content-box-embed.social-stream {
	display: flex;
	flex-wrap: wrap;
}

.content-box-embed.social-stream .element-item {
	display: flex;
	flex-direction: column;
    margin: 0 0 25px 0;
	padding: 0;
    width: 100%;
}

.content-box-embed.social-stream .element-item > * {
	order: 1;
}

.content-box-embed.social-stream  .element-item .photo {
	margin: 0;
	order: 0;
}

.content-box-embed.social-stream .element-item .item-content {
	padding: 15px;
}

@media (min-width: 768px) {
	.ss-content-block.col-1 .content-box-embed.social-stream .element-item {
		margin-right: 25px;
		width: calc((100% / 3) - (25px / 3) * 2);
	}

	.ss-content-block.col-1 .content-box-embed.social-stream .element-item:nth-child(3n) {
		margin-right: 0;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Intro / Footer Text --------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.intro-text,
.intro-text-wrap {
	margin: 0 0 30px 0;
}

.footer-text,
.footer-text-wrap {
	margin: 30px 0 0 0;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Interactive Map ------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */


.interactive-map-categories-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.interactive-map-categories-list li {
	display: inline-block;
}

.interactive-map-container {
	margin-bottom: 15px;
}

.interactive-map-container #map {
	background: #ffffff;
	height: 700px;
}

.interactive-map-icon {
	border-radius: 100%;
	color: #ffffff;
	line-height: 30px;
	height: 30px;
	text-align: center;	
	text-shadow: 0 1px 1px rgba(0,0,0,0.5);
	width: 30px;
}

.interactive-map-infobox-content {
	line-height: 140%;
}

.interactive-map-infobox-content img {
	max-width: 100%;
}

.interactive-map-infobox-content .image {
	margin: 0 0 10px 0;
	max-width: 100%;
	width: 1000px;
}

.interactive-map-infobox-content .image .slick-arrow {
	background: url(/images/shared/white-arrow-left.png) 50% 50% no-repeat;
	border: 0;
	cursor: pointer;
	height: 47px;
	left: 15px;
	margin: -24px 0 0 0;
	outline: none;
	position: absolute;
	top: 50%;
	text-indent: -9999px;	
	transition: opacity 0.15s linear;
	width: 33px;
	z-index: 20;
}

.interactive-map-infobox-content .image .slick-arrow.slick-next {
	background-image: url(/images/shared/white-arrow-right.png);
	left: auto;
	right: 15px;
}

.interactive-map-infobox-content .image .slick-arrow:hover {
	opacity: .7;
}

.interactive-map-infobox-content .image.loading .img-wrap {
	opacity: 0;
	position: absolute;
}

.interactive-map-infobox-content .image .img-wrap {
	background-color: rgba(0,0,0,0.75);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	overflow: hidden;
	outline: none;
	position: relative;
	width: 100%;
}

.interactive-map-infobox-content .image .img-wrap img {
	opacity: 0;
}

.interactive-map-infobox-content .interactive-map-icon {
	display: none;
}

.interactive-map-infobox-content .title {
	display: block;
	font-size: 120%;
	margin: 0 0 10px 0;
}
.interactive-map-infobox-content p {
	line-height: 140%;
	margin: 0 0 15px 0;
}

.interactive-map-infobox-content p:last-child {
	margin: 0;
}

.interactive-map-infobox-content .address {
	display: none;
}

.interactive-map-infobox-content .img-wrap .caption {
	background: rgba(0,0,0,0.70);
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 10px;
	position: absolute;
	right: 0;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Inline Slideshow ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.image-stage-navigation-wrap,
.internal-page-inline-slideshow-wrap .slideshow-navigation-wrap {
	display: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Cookie Message ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.global-cookie-notice {
	background: rgba(0,0,0,0.9);
	color: #fff; 
	left: 0; 
	padding: 30px;
	position: fixed; 
	text-align: center;
	font-size: 16px;
	line-height: 18px;
	right: 0;
	top: 0; 
	z-index: 999999;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* YouTube Player Replacement -------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.ss-youtube-vimeo-player {
    background-color: #000;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
    line-height: 100%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.ss-youtube-vimeo-player img {
	display: block;
	width: 100%;
	left: 0;
	margin-top: -9.4%;
	opacity: 0.7;
}

.ajax-loading-spinner-wrap {
	background: rgba(255,255,255,0.8);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9999;
}

.ajax-loading-spinner,
.ajax-loading-spinner:after,
.ss-youtube-vimeo-player .ss-video-loading-spinner,
.ss-youtube-vimeo-player .ss-video-loading-spinner:after {
	border-radius: 50%;
	height: 30px;
	width: 30px;
}

.ajax-loading-spinner,
.ss-youtube-vimeo-player .ss-video-loading-spinner {
	animation: video_loading_anim 0.5s infinite linear;
	border-bottom: 4px solid rgba(255, 255, 255, 0.2);
	border-left: 4px solid #ffffff;
	border-right: 4px solid rgba(255, 255, 255, 0.2);
	border-top: 4px solid rgba(255, 255, 255, 0.2);
	left: 50%;
	opacity: 0.6;
	margin: -15px 0 0 -15px;
	position: absolute;
	top: 50%;
	transform: translateZ(0);  
	z-index: 1;
}

.ajax-loading-spinner {
	border-bottom: 4px solid rgba(0,0,0, 0.2);
	border-left: 4px solid #000;
	border-right: 4px solid rgba(0,0,0, 0.2);
	border-top: 4px solid rgba(0,0,0, 0.2);
}

@keyframes video_loading_anim {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.ss-youtube-vimeo-player .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}

.ss-youtube-vimeo-player .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}

.ss-youtube-vimeo-player img,
.ss-youtube-vimeo-player .play-button {
    cursor: pointer;
}

.ss-youtube-vimeo-player .play-button,
.ss-youtube-vimeo-player .play-button:before {
    position: absolute;
}

.ss-youtube-vimeo-player .play-button,
.ss-youtube-vimeo-player .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}

.ss-youtube-vimeo-player iframe {
	display: block;
	margin: 0 auto;
	width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Forums ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.circle-image {
	background-size: cover;
	background-position: 50% 50%;
	border-radius: 100%;
	display: inline-block;
	height: 50px;
	width: 50px;
}

.circle-image img {
	display: none;
}

.forum-page-wrap .actions-bar {
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
	margin: 15px 0;
	padding: 15px 0;
}

.forum-page-wrap .actions-bar:after,
.forum-page-wrap .thread-header:after {
	clear: both;
	content: '';
	display: table;
}

.forum-page-wrap .actions-bar .button {
	float: left;
	margin-left: 10px;
}

.forum-page-wrap .actions-bar .button:first-child {
	margin-left: 0;
}

.forum-page-wrap .actions-bar .upper-pager {
	float: right;
	height: auto;
}
.forum-page-wrap .actions-bar .forum-topic-search-form {
	float: left;
	margin-left: 50px;
}

.forum-thread {
	background: #F4F4F4;
	margin-bottom: 15px;
	padding: 20px 20px 20px 80px;
	position: relative;
}

.forum-thread:first-child {
	background: #fff;
	border: 1px solid #EFEFEF;	
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	margin-bottom: 20px;
}

.delete-thread-button {
	float: right;
}

.forum-thread .thread-header {
	border-bottom: 1px solid #dadada;
	margin-bottom: 15px;
	padding: 0 0 15px 0;
}

.forum-thread .thread-header .thread-info {
	clear: both;
	float: right;
	font-size: 80%;
}

.forum-thread .thread-header .thread-author-image {
	left: 15px;
	position: absolute;
	top: 20px;
}

.forum-thread .thread-header .thread-title {
	font-size: 120%;
	font-weight: bold;
}

.forum-thread .thread-header .thread-author,
.forum-thread .thread-header .thread-date {
	display: inline-block;
	font-size: 80%;
	vertical-align: middle;
}

.forum-thread .thread-header .thread-author:after {
	content: '\2022';
	margin-left: 5px;
}

.forum-thread .thread-header .thread-date {
	color: #808080;
	font-size: 80%;
}

.forum-thread .quote-button-wrap {
	text-align: right;
	padding-top: 15px;
}

.forum-thread .thread-image-wrap {
	border-top: 1px solid #dadada;
	margin-top: 15px;
	padding-top: 15px;
}

.forum-thread .thread-image {
	display: inline-block;
}

.forum-thread .thread-image img {
	display: block;
	width: 100%;
}

.forum-page-wrap #upload-photos-button {
	position: relative;
}

.forum-page-wrap #upload-photos-button form,
.forum-page-wrap #upload-photos-button form input {
	position: absolute !important;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
}

.forum-thread-quote:before {
	background: rgba(0,0,0,0.05);
	content: 'Quote:';
	display: block;
	font-size: 12px;
	font-style: italic;
	height: 25px;
	left: 1px;
	line-height: 25px;
	margin-bottom: 10px;
	padding: 0 10px;
	position: absolute;
	right: 1px;
	top: 1px;
}

.forum-thread-quote {
	background: #fff;
	border: 1px solid #EFEFEF;
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	display: block;
	margin-bottom: 20px;
	padding: 45px 20px 20px 20px;
	position: relative;
}

.forum-member-profile {
	padding-top: 30px;
}

.forum-member-profile .forum-member-info {
	margin-bottom: 50px;
}

.forum-member-profile .forum-member-info .circle-image.large {
	display: inline-block;
	height: 240px;
	vertical-align: top;
	width: 240px;
}

.forum-member-profile .forum-member-info .forum-member-details {
	display: inline-block;
	margin-left: 50px;
	padding-top: 50px;
	vertical-align: top;
}

.forum-member-profile .forum-member-info .forum-member-details .forum-member-name {
	font-size: 130%;
	font-weight: bold;
}

.display-table.forum tr.stickied td {
	border-bottom: 2px solid #333;
}

.display-table.forum tr.stickied td:first-child {
	border-left: 2px solid #333;
}

.display-table.forum tr.stickied td:last-child {
	border-right: 2px solid #333;
}

.display-table.forum tr.stickied:nth-child(1) td {
	border-top: 2px solid #333;
}

.like-this-button .counter {
	background: #333;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	margin-left: 5px;
	padding: 2px 3px;
	text-align: center;
	vertical-align: middle;
}

.calendar-subscribe-overlay-content {
	margin: 0 auto;
	width: 600px;
	max-width: 100%; 
}

.calendar-subscribe-overlay-content .button {
	margin: 5px 0;
}



/* ---------------------------------------------------------------------------------------------------------- */
/* Global Responsive Styles --------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
@media (max-width: 1420px) {
    .wrapper,
    .ss-section-wrap-inner {
        margin: 0 45px;
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .wrapper,
    .ss-section-wrap-inner {
        margin: 0 25px;
    }
}

@media (max-width: 768px) {
    .inspiration-gallery-items.quad .row .col {
        width: 50%;
    }
}


@media (max-width: 550px) {
    .inspiration-gallery-items .row .col,
    .inspiration-gallery-items.quad .row .col {
        display: block;
        padding: 0;
        width: auto;
    }

    .submit-wrap .button {
        display: block;
        width: 100%;
    }

    .list-items .list-item.resource-item .button {
        display: block;
        float: none;
        margin: 8px 0;
        text-align: center;
    }
}

/* alerts.css */
.alert,.good-alert,.bad-alert{background:#e7ffe6;border:1px solid #beffbb;color:#000;margin:10px 0;position:relative}.alert.neutral{background:#fffae0;border:1px solid #ffe153;margin:0 0 10px}.alert .inside,.alert-inside{margin:0 auto;font-size:18px;padding:20px 25px 20px 10px}.alert.neutral .inside{font-size:12px;padding:10px}.bad-alert{background:#ffe6e6;border:1px solid #fbb}.close-it{background:url(/images/shared/hide.png) 0 0 no-repeat;height:20px;position:absolute;right:5px;top:5px;width:56px}.close-it span{display:none}.good-alert.fixed,.bad-alert.fixed{border-top:0;border-left:0;border-right:0;display:none;left:0;margin:0;position:fixed;right:0;top:0;z-index:9999}.good-alert.fixed .alert-inside,.bad-alert.fixed .alert-inside{margin:0 auto;position:relative;max-width:960px}


/* ---------------------------------------------------------------------------------------------------------- */
/* Responsive Data Tables ----------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.display-table .faux-column-label {
	display: none;
}

@media (max-width: 600px) {
	.display-table.no-mobile,
	.display-table.details-table,
	.display-table.mobile-handling {
		display: table;
	}

	.display-table.mobile-handling thead,
	.display-table.mobile-handling th,
	.display-table.mobile-handling tfoot {
		display: none;
	}
	
	.display-table.mobile-handling {
		background: none;
		border: 0;
		box-shadow: none;
	}

	.display-table.mobile-handling tr {
		background: #ffffff !important;
		border-radius: 5px;
		box-shadow: 0 2px 3px rgba(0,0,0,0.25);
		display: block;
		margin: 0 0 15px 0;
	}

	
	.display-table.mobile-handling td {
		background: none !important;
		border: 0;
		border-bottom: 1px solid rgba(0,0,0,0.1);
			display: block;
		font-size: 14px;
		text-align: center;
		width: 100% !important;
	}
	
	.display-table.mobile-handling td.empty,
	.display-table.mobile-handling td.mobile-hide,
	.display-table.mobile-handling td.tablet-hide {
		display: none; 
	}
	
	.display-table.mobile-handling td a {
		display: inline-block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 200px;
		vertical-align: middle;
	}
	
	.display-table.mobile-handling .faux-column-label {
		display: inline-block;
		padding-right: 10px;
		color: #808080;
		font-size: 90%;
		text-transform: uppercase;
	}
	
	.display-table.mobile-handling .faux-column-label span {
		display: none;
	}
	
	.display-table td img {
		border: 1px solid rgba(0,0,0,0.1);
	}
	
	.button.table-action {
		display: inline-block;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Animate In on Scroll ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
@media (min-width: 1024px) {
	.anim-in {
		opacity: 0;
		transform: translateY(30px);
		-webkit-transition: opacity .75s ease, transform .75s ease;
		transition: opacity .75s ease, transform .75s ease;
	}
	
	.anim-in.visible {
		opacity:1;
		transform: translateY(0);
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* SS Accordion Content ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.ss-accordion-content-wrap {
	margin-bottom: 10px;
}

.ss-accordion-content-wrap:last-child {
	margin-bottom: 25px;
}

.ss-accordion-content-wrap .ss-accordion-toggle {
	background: #e7e7e7;
	cursor: pointer;
	font-weight: bold;
	letter-spacing: 1px;
	margin: 0;
	padding: 10px 50px 10px 20px;
	position: relative;
	text-transform: uppercase;
	transition: background 0.2s ease;
}

.ss-accordion-content-wrap .ss-accordion-toggle .ss-accordion-toggle-icon {
	height: 16px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.ss-accordion-content-wrap .ss-accordion-toggle .ss-accordion-toggle-icon:before,
.ss-accordion-content-wrap .ss-accordion-toggle .ss-accordion-toggle-icon:after {
	background: #808080;
	content: '';
	position: absolute;
}

.ss-accordion-content-wrap .ss-accordion-toggle .ss-accordion-toggle-icon:before {
	height: 4px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.ss-accordion-content-wrap .ss-accordion-toggle .ss-accordion-toggle-icon:after {
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 4px;
}

.ss-accordion-content-wrap .ss-accordion-toggle:hover,
.ss-accordion-content-wrap.show .ss-accordion-toggle {
	background: #ccc;
}

.ss-accordion-content-wrap.show .ss-accordion-toggle .ss-accordion-toggle-icon:after {
	display: none;
}

.ss-accordion-content-wrap .ss-accordion-content {
	display: none;
	padding: 20px;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* SS Editor Video Embed ------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
.ss-editor-video-embed-container {
	background-color: #000;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 25px 0;
	position: relative;
}

/*
.ss-editor-video-embed-container.prevent-clicks:before {
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}
*/

.ss-editor-video-embed-container iframe {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto;
	position: relative;
	z-index: 2;
	width: 100%;
}

@supports not (aspect-ratio) {
	.ss-editor-video-embed-container {
		height: 0;
		padding-top: 56.25%;
	}
	.ss-editor-video-embed-container iframe {
		height: 100%;
		position: absolute;
		top: 0;
	}
}

.ss-editor-video-embed-container:after {
	box-sizing: border-box;
	content: '';
	width: 30px;
	height: 30px;
	border: 2px solid rgba(255,255,255,0.1);
	border-top: 2px solid rgba(255,255,255,0.5);
	border-right: 2px solid rgba(255,255,255,0.5);
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: -15px;
	border-radius: 50%;
	-webkit-animation: ss_editor_video_spin 1s infinite linear;
	animation: ss_editor_video_spin 1s infinite linear;
	z-index: 1;
}
 
@-webkit-keyframes ss_editor_video_spin {
	from {-webkit-transform: rotate(0deg);}
	to   {-webkit-transform: rotate(359deg);}
}

@keyframes ss_editor_video_spin {
	from {transform: rotate(0deg);}
	to   {transform: rotate(359deg);}
}