.shared-detail {
	--font-family-display: var(--font-display);
	--font-family-body: var(--font-body);
	--background-color: var(--gray-100);
	--background-color-alt: var(--gray-200);
	--text-color-alt: var(--gray-100);
	--visit-btn-bg: var(--primary-color);
	--visit-btn-bg-alt: var(--primary-color-800);
	--dropbdown-menu-text: var(--gray-800);
	--nearby-tab-bottom-border: var(--primary-color);
	--nearby-tab-bottom-border-alt: var(--gray-400);
	--accent-color: var(--primary-color);
	--grey-color: #393b3a;

	margin: 0 auto var(--space-10);
	overflow: hidden;
}

.share-buttons {
	display: none; /* Hide the share button before its added onto page */
}

.shared-detail .share-buttons {
	display: block;
}

.shared-detail .detail-top {
	display: flex;
	flex-direction: column;
}

.shared-detail .back-share-panel {
	margin-left: 20px;
	padding: 20px 0 10px 0;
}
@media screen and (min-width: 40em) {
	.shared-detail .back-share-panel {
		margin-left: 50px;
	}
}

.shared-detail .back-share-panel a {
	color: var(--black);
}

.shared-detail .back-share-panel a > img {
	margin: 0 var(--space-2) 0 0;
}

@media (min-width: 64em) {
	.shared-detail .detail-top {
		max-width: var(--width-base);
		margin: 0 auto;
	}
	.shared-detail .back-share-panel {
		padding: 20px 20px 10px;
		margin: 0;
	}
}

.shared-detail .back-share-panel .teal-arrow {
	width: 15px;
	display: inline;
}

.detail-2-col {
	display: block;
	gap: var(--space-5);
}

@media (min-width: 64em) {
	.detail-2-col {
		max-width: var(--width-base);
		margin: 0 auto;
		display: grid;
		grid-template-columns:75% 25%;
	}
}

@media (max-width: 64em) {
	.shared-detail .info-section {
		position:relative !important;
		top:0 !important;
	}
}

.detail-left {
	position:relative;
}
@media screen and (min-width: 40em) {
	.detail-left {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.detail-right {
    position: relative;
}

.shared-detail .detail-gallery .gallery-expand.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
	overflow:hidden;
}

.shared-detail .detail-gallery .gallery-expand.slick-slider .slick-list{

    width: 100%;
    height: 0;
  padding-bottom: 67.3456%;
    overflow: hidden;

}

.shared-detail .detail-gallery .gallery-expand.slick-slider .slick-list .slick-track{

position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate(0);
    -webkit-transform: translate(0);
}



.shared-detail .detail-gallery .gallery-expand.slick-slider .slick-list .slick-track .slick-slide{

    flex: none;
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.shared-detail .detail-gallery .gallery-expand.slick-slider .slick-list .slick-track .slick-slide .mouseoverlay{
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		background: rgba(238,238,238,0.5);
}


.shared-detail .detail-gallery .gallery-expand.slick-slider .slick-list .slick-track .slick-slide.product-video iframe{
display:block;
  width: 100%;
  height: 100%;
}

.shared-detail .detail-gallery .slick-arrows{
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    pointer-events: none;
    left: 0;
    align-items: center;
    margin: 0;
}


.shared-detail .detail-gallery .slick-arrows .arrow {
    position: absolute;
    top: 50%;
    margin: 0;
    padding: 0;
    width: var(--space-10);
    height: var(--space-10);
    font-size: var(--text-xl);
    color: var(--arrow-color);
    border-radius: var(--rounded-circle);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    background: var(--white);
    transform: translateY(-50%);
    pointer-events: all;
	    background-color: var(--primary-color);
    box-shadow: none;
	color:#fff;
	cursor:pointer;
}

@media (max-width: 415px) {
	.shared-detail .detail-gallery .slick-arrows .arrow {
		top: 25%;
	}
}

.shared-detail .detail-gallery .slick-arrows .arrow.prev  {
       left: 0;
    transform: translate(50%, -50%);

}

.shared-detail .detail-gallery .slick-arrows .arrow.next  {
     right: 0;
    transform: translate(-50%, -50%);

}

.shared-detail .detail-gallery .slick-arrows .arrow i{
padding:11px;
}

.gallery-additional-thumbnails {
	position: relative;
	display: flex;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;	
	margin: 10px 0 0 0;
	align-items: center;
	flex-wrap:wrap;
}

.gallery-additional-thumbnails picture{
	position:relative;
	cursor:pointer;
	width:100px;
}

.gallery-additional-thumbnails picture button.shared-play-button{ 
	width:37%;
	height:auto;
	display:block;

}

.gallery-additional-thumbnails picture button.shared-play-button i{ 
 font-size: 11px;
    padding: 5px 0 10px;

}
   
.gallery-additional-thumbnails picture img {
	padding: 0px 8px 8px;
}

.gallery-additional-thumbnails picture.selected img {
	border-bottom: 12px solid var(--primary-color);
}

.shared-detail .detail-gallery {
	order: 1; /* Always want gallery coming first on mobile */
	position: relative;
	flex: 1 1 80%;
}
/*@media screen and (min-width: 40em) {
	.shared-detail .detail-gallery {
		padding:  0px 20px;
	}
}*/

.shared-detail .detail-gallery img {
	width: 100%;
  height: 100%;
  object-fit: cover;
}

.shared-detail .detail-gallery iframe {
	position: absolute;
	top: 0;
}

.shared-detail .detail-gallery .gallery-count {
	position: absolute;
  bottom: 0px;
  right: 0px;
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  color: black;
	background-color: white;
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: var(--leading-none);
	border-top-left-radius: 30px;
}

.shared-detail .detail-gallery .gallery-count i {
	font-size: var(--text-base);
	margin-left: var(--space-3);
	color: white;
	background-color: var(--primary-color);
	padding: 10px;
	border-radius: var(--rounded-full);
}

.shared-detail .detail-gallery .gallery-count .more-images {
	text-transform: uppercase;
}

.shared-detail .info-section {
	order: 2;
	flex: 1 1 20%;
	padding: var(--space-5);
	padding-bottom: 0px;
	background-color: white;
}

.shared-detail .info-section .top-actions {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 0 0 var(--space-5);
	gap: 10px;
	max-width:100%;
}

.shared-detail .info-section .pricing-info .price-amount {
	font-size: 2em;
	font-weight: bold;
}

.shared-detail .info-section .pricing-info p {
	margin-top: -10px;
}

.shared-detail .info-section .book-online-external {
	width:100%;
}

.shared-detail .info-section .check-availability .check-avail-btn {
	display: flex;
	align-items: center;
    justify-content: space-between;
	font-size: 16px;
	padding: var(--space-4) var(--space-6);
	color: white;
	background-color: var(--primary-color);
	transition: all .2s;
	max-width: 250px;
	width:100%;
	text-transform: uppercase;
}

.shared-detail .info-section .check-availability .check-avail-btn:hover {
	background-color: var(--secondary-color);
}

.shared-detail .info-section .check-availability .check-avail-btn::after {
	content: '';
    display: inline-block;
    background: url(/includes/client_public/assets/shared/arrows/arrow_readmore_white.svg) no-repeat;
    width: 22px;
    height: 15px;
    margin: 0 0 0 var(--space-12);
}

@media (max-width: 40em) {
	.shared-detail .info-section .check-availability .check-avail-btn {
		min-width: 240px;
	}
}

.shared-detail .info-section .bottom-actions,
.shared-detail .info-section .priority-info {
	
}

.shared-detail .info-section .top-actions .two-line-wrap,
.shared-detail .info-section .top-actions .planner * {
	display: inline;
}

.shared-detail .info-section .top-actions .planner * {
	color: var(--primary-color);
}

.shared-detail .info-section .top-actions [data-tb-button] {
	cursor: pointer;
}

.shared-detail .info-section .top-actions [data-tb-button] span + span {
	margin-left: var(--space-2);
}

@media (hover: hover ) {
	.shared-detail .info-section .top-actions span a:hover {
		text-decoration:  none; /*reboot.css override*/
	}
}

.shared-detail .detail-top {
	flex-direction: column;
	align-items: stretch;
}
@media screen and (min-width:40em) {
	.shared-detail .detail-top {
		padding-left: 20px;
	}
}

.shared-detail h1 {
	font-family: var(--font-family-body);
	font-size: 3.5rem;
	line-height: var(--leading-none);
 	color: var(--text-color);
  	margin: var(--space-5) 0;
}

@media (max-width: 64em) {
	.shared-detail h1 {
		font-size: 3rem;
		padding: 30px 20px 15px;
		margin: 0;
	}
}

.top-actions {
	margin-bottom: var(--space-6);
	padding: 0;
}

.top-actions .fa-map-marker-alt:before {
	content: '';
	height: 22px;
    width: 22px;
    display: flex;
    background: url(/includes/client_public/assets/shared/icons/map.svg) no-repeat center center;
}

@media (max-width: 64em) {
	.top-actions {
		margin: 0;
		padding: 0 20px;
	}
}

.top-actions > div {
	display: flex;
	flex-direction: row;
	font-size: var(--text-lg);
	align-items: flex-start;
}

.top-actions .two-line-wrap {
	padding: 0 0 0 10px;
}

.shared-detail .detail-top dl,
.shared-detail .detail-top dt,
.shared-detail .detail-top dd {
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-relaxed);
  color: var(--text-color);
}

.shared-detail .detail-top dl dt {
	float: left;
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-top .action-item {
	font-family: var(--font-family-body);
	font-size: var(--text-base);
	font-weight: 400;
	line-height: var(--leading-tight);
	padding: var(--space-2) var(--space-8);
	color: var(--primary-color);
	margin-left: 0;
}

.shared-detail .detail-info-bar ul li a {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--text-xl);
	line-height: 1.25rem;
	color: var(--text-color);
	text-transform: capitalize;
	font-weight: 500;
	cursor: pointer;
}
.shared-detail .detail-info-bar ul li .planner div {
	width: 100%;
}
.shared-detail .detail-info-bar ul li .planner a {
	font-size: var(--text-xl);
	color: var(--text-color);
	font-weight: normal;
	text-transform: capitalize;
	font-weight: 500;
	width: 100%;
}
.shared-detail .detail-info-bar ul li a:hover {
	font-weight: bold;
}
.shared-detail .detail-info-bar ul li .planner span:last-of-type a {
	margin-top: 6px;
	color: var(--primary-color);
	font-weight: 600;
}
.shared-detail .detail-info-bar ul li .planner span:last-of-type a:hover {
	text-decoration: underline;
}

.shared-detail .detail-info-bar ul li .phone-label,
.shared-detail .detail-info-bar ul li .email-label {
	padding-right: 10px;
	font-size: 16px;
	color: var(--text-color);
}

.shared-detail .detail-info-bar ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-4);
	color: var(--text-color);
	font-size: var(--text-lg);
	padding: var(--space-4) var(--space-6);
	border: 2px solid var(--grey-color);
	transition: all .2s;
	background-color: white;
	text-transform: uppercase;
}

.shared-detail .info-section .bottom-actions > * {
	margin-top: var(--space-4);
	margin-right: var(--space-4);
}

@media (hover: hover) {
	.shared-detail .info-section .bottom-actions .action-item:hover {
		text-decoration: none; /*reboot.css override*/
		background-color: var(--visit-btn-bg-alt);
	}
}

.shared-detail .info-section .bottom-actions .dropdown {
	display: flex;
}

.shared-detail .info-section .bottom-actions .dropdown-menu {
	position: absolute;
	z-index: 9;
	margin: var(--space-10) 0 0 0;
	padding: var(--space-3) var(--space-4);
	color: var(--dropbdown-menu-text);
	background-color: var(--background-color);
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 4px;
}

.shared-detail .info-section .bottom-actions .dropdown-menu a {
	display: block;
	width: 100%;
	padding: var(--space-2) 0;
	clear: both;
	white-space: nowrap;
}

.shared-detail .info-section .detail-info-bar {
	margin: 0;
	padding: 0 0 var(--space-5);
	max-width: 250px;
}
.shared-detail .detail-right-mobile .info-section .detail-info-bar {
	max-width: unset;
	padding: 0px;
}

.shared-detail .detail-info-bar .split-pane {
	margin-bottom: var(--space-4);
}

.shared-detail .detail-info-bar .split-pane:empty {
	display: none;
}

.shared-detail .detail-info-bar .split-pane:last-child {
	display: none;
}

.shared-detail .detail-info-bar ul {
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-tight);
	margin: 0;
  list-style: none;
}

.shared-detail .detail-info-bar ul li:last-of-type {
	margin-bottom: var(--space-8);
}

.shared-detail .detail-info-bar ul li > div {
	display: flex;
	align-items: baseline;
	width: 100%;
	justify-content: space-between;
}

.shared-detail .detail-info-bar ul li:last-child {
	margin-bottom: 0;
	cursor: pointer;
}

.shared-detail .detail-info-bar ul li .two-line-wrap > * {
	display: block;
}

.shared-detail .detail-info-bar ul li .meta-label {
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-info-bar ul.info-list i {
	margin-right: var(--space-2);
  	width: 18px;
	font-size: 20px;
	color: var(--text-color);
}

.shared-detail .detail-info-bar ul li > div.planner i {
	color: red;
	align-self: flex-start;
}

.shared-detail .detail-info-bar ul.info-list li:hover a {
	text-decoration: none; /*reboot.css override*/
}

.shared-detail .detail-info-bar dl,
.shared-detail .detail-info-bar dt,
.shared-detail .detail-info-bar dd {
	font-family: var(--font-family-body);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-tight);
  color: var(--text-color);
}

.shared-detail .detail-info-bar dl dt {
	float: left;
	margin-right: var(--space-1);
	font-weight: bold;
}

.shared-detail .detail-info-bar .open-table {
	margin-bottom: var(--space-3);
}

.shared-detail .detail-info-bar .social-icons {
	display: flex;
	list-style: none;
	margin-left: 0;
}

.shared-detail .detail-info-bar .social-icons li {
	margin-right: var(--space-5);
	margin-bottom: 0;
}

.shared-detail .detail-info-bar .social-icons a {
	font-size: var(--text-xl);
}

.shared-detail .detail-info-bar ul.hours-of-operation li {
	margin-bottom: 0;
	justify-content: space-between;
}

.shared-detail .detail-info-bar ul.hours-of-operation li.current {
	font-weight: 700;
}

.shared-detail .detail-bottom {
	display: flex;
}

.shared-detail .detail-drawers {
	order: 1;
	position: relative;
	flex: 1 1 80%;
	/*margin: 0;*/
	padding: 0 20px;
	margin-bottom: var(--text-xl);
}

.shared-detail .detail-bottom.detail-drawers {
	padding: 0 20px;
	margin: 0;
}

.shared-detail .detail-drawers-spacer {
	order: 2;
	position: relative;
	flex: 1 1 20%;
}

.shared-detail .detail-drawers {
	padding: 0;
}

.shared-detail .detail-drawers > div,
.shared-detail .detail-drawers > dl.map-tab {
	padding: 40px 20px;
}

.shared-detail .detail-drawers .externalLinksTab a {
	display: block;
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers > div,
	.shared-detail .detail-bottom.detail-drawers,
	.shared-detail .detail-drawers > dl.map-tab {
		padding: 40px 0;
	}

}

.shared-detail .detail-drawers > div.descriptionTab,
.shared-detail .detail-drawers > div.gradingsTab,
.shared-detail .detail-drawers > div.awardsTab,
.shared-detail .detail-drawers > div.amenitiesTab,
.shared-detail .detail-drawers > dl.map-tab,
.shared-detail .detail-drawers > div.openingsTab,
.shared-detail .detail-drawers > div.offersTab,
.shared-detail .detail-drawers > div:not(:last-of-type) {
	border-bottom: 1px solid #161314;
}

.shared-detail .detail-drawers .opening {
    padding: 0 60px 20px 0;
}

.shared-detail .detail-drawers .opening table {
    border: 1px solid #000;
    margin: 10px 0 0;
}

.shared-detail .detail-drawers .opening tr td span {
    clear: both;
    display: block;
}

.shared-detail .detail-drawers .opening tr td, .shared-detail .detail-drawers .opening tr th {
    position: relative;
    vertical-align: top;
    padding: 7px 10px;
}

.shared-detail .detail-drawers div.date-notes-container {
    width: 100%;
}

.shared-detail .detail-drawers > div .date-notes {
    font-weight: 700;
}

.shared-detail .detail-drawers > div.listingudfs > div:first-of-type {
	margin: 0 0 30px;
}

.shared-detail .detail-drawers > div div.award p {
	display:none;
}

.detail-drawers div.award {

	padding:0 40px 0 0;
	display:inline-block;
	vertical-align:top;
}

.detail-drawers div.award img {
	width:100%;
	max-width:115px;
}

.shared-detail .detail-drawers > dl.map-tab dd.active {
	background: none;
	height: auto;
}

.shared-detail .detail-drawers div.amenitiesTab .subtab button{
	color: var(--black);
	background: #fff;
	padding: 10px;
	border: 1px solid var(--grey-color);
}

.shared-detail .detail-drawers div.amenitiesTab .subtab .active button{
	color: #fff;
	background: var(--grey-color);
	padding: 10px;
}

.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content{

	display:none;
}


.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content.active{

	display: grid;
    width: 100%;
    flex-direction: row;
    flex-wrap: inherit;
   grid-template-columns: 1fr;
    /* grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
    grid-gap: 20px 20px;
}

@media (min-width: 64em) {
	
	.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content.active {
		
		grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
	}
	.shared-detail .detail-drawers div.amenitiesTab {
	padding-right:0;

}
}

@media (min-width: 40em) and (max-width: 64em) {
	.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content.active {
		grid-template-columns: 1fr 1fr;
	}
}

.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content div.facilityWrap{
    width: 100%;
    /* padding: 20px; */
    background: #fff;
}

.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content {


}

.shared-detail .detail-drawers div.amenitiesTab div.amenities dl.subtab {
	display: flex;
}

.shared-detail .detail-drawers div.amenitiesTab div.amenities dl.subtab dd {
	margin-right: var(--space-4);
}

.shared-detail .detail-drawers div.amenitiesTab div.amenities div.subtab {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 20px 0 20px;
    width: 100%;
    background: transparent;
}

.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content h5{
	font-family: var(--font-body);
	font-weight: bold;
    font-size: 20px;
    padding: 12px 12px 12px 0;
	text-transform: lowercase;
}
.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content h5:first-letter {
	text-transform: capitalize;
}
.shared-detail .detail-drawers div.amenitiesTab div.amenities div.content .amen-subtab{
	      padding: 5px 15px 5px 0;
}

.shared-detail ul.amen-subtab > li, .shared-detail ul.meeting-subtab > li {
	display: block !important;
}

.shared-detail ul.amen-subtab > li > .notes::before {
	content: " (";
}
.shared-detail ul.amen-subtab > li > .notes::after {
	content: ")";
}

.shared-detail ul.amen-subtab > li > .value, .shared-detail ul.meeting-subtab > li > span.value {
	clear: both;
	width: 100%;
	font-weight: bold;
	font-style: italic;
	padding: 0 0 0 5px !important;
}

.shared-detail ul.amen-subtab > li > .value i {
	display: none;
}


.shared-detail ul.amen-subtab > li > .notes {
	font-style: italic;
	width: 100%;
	clear: both;
	display: inline-block;
	font-size: 0.85rem;
	padding: 0 10px 0 20px;
}

.shared-detail ul.amen-subtab > li > .value, .shared-detail ul.meeting-subtab > li > .value {
clear: both;
    width: 100%;
    font-weight: bold;
    font-style: italic;
    padding: 0 0 0 5px !important;
}

@media (min-width: 40em) {
	.shared-detail .detail-drawers {
		margin-bottom: 40px;
	}
}


@media (min-width: 64em) {
	.shared-detail .detail-drawers dl.drawers dd  > div#mapTab{
		padding: 50px 0;
		margin-left: 50px;

	}
	.shared-detail .detail-drawers div#mapTab { 
	 background-size: 100% auto;
		
	}
}

.shared-detail .drawers > dd {
	width: 100%;
    background: url(/includes/client_public/assets/shared/productpage/map_google.jpg) no-repeat center center;
   
	background-size: 100% 100%;
    height: 166px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin: 0 auto;
    text-align: center;
}


.shared-detail .drawers dl.drawers dd  > div#mapTab{
	padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	position:relative;

}

.shared-detail .drawers dl.drawers dd.active div#mapTab {
	height:auto;
	background:none;
	display:block;
}

.shared-detail .drawers div#mapTab a.directions-link {
	display: flex;
    align-self: flex-start;
    justify-self: flex-end;
    position: absolute;
    bottom: 0;
    left: 20px;
	padding: var(--space-10) 0 0;
}
.detail-drawers > dl.map-tab dd.active button#drawer_mapTab {
	display: none;
}

.shared-detail .detail-drawers > dl.map-tab dd div#mapTab {
	padding: 0;
	display: none;
	position: relative;
	margin: 0;
	width: 100%;
}

.shared-detail .detail-drawers > dl.map-tab dd.active div#mapTab {
	display: block;
}

@media (min-width: 64em) {
	.shared-detail .detail-drawers dl.drawers dd > div#mapTab {
		padding: 0;
		margin-left: 0;
	}
}

.shared-detail .drawers div#mapTab i { 

	display:none;

}
.shared-detail .drawers button#drawer_mapTab { 

    width: auto;
    position: absolute;
    margin-top: 25px;
    box-sizing: border-box;
    padding: 20px 115px;
	background:var(--primary-color);
	color:#fff;
	font-size: var(--text-xl);
	font-weight: normal;
}

@media (max-width: 40em) {
	.shared-detail .detail-drawers div#mapTab button {
		padding: 20px 85px;
	}
}


.shared-detail .detail-drawers div#mapTab button:hover {  


}

@media (max-width: 40em) {
	.shared-detail .detail-drawers div#mapTab button {
		padding: 20px 85px;
	}
}


.shared-detail .detail-drawers div#mapTab button:hover {  


}

.shared-detail .detail-drawers > dl.drawers > dd > .content {
	display: none;
	padding: var(--space-5);
}

.shared-detail .detail-drawers > dl.drawers > dd.active > .content {
	display: block;
}

.shared-detail .detail-drawers .drawer-title,
.shared-detail .detail-info-bar .contact-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: white;
	padding: 0;
	margin-bottom: 15px;
	width: 100%;
	font-family: var(--font-family-body);
	font-size: 2.75rem;
	line-height: var(--leading-none);
}

.shared-detail .detail-drawers .drawer-button i {
	margin-left: var(--space-4);
	font-size: var(--text-lg);
}

.shared-detail .detail-drawers .gMapHolder {
	height: 280px;
}



@media (min-width: 40em) {
	.shared-detail {
		margin: 0 auto;
/*		margin-left: 20px;*/
	}

	.shared-detail .info-section {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: var(--space-12) var(--space-5);
		padding-left: 0px;
		padding-right: 0px;
	}
	.shared-detail .detail-right-mobile .info-section {
		padding-bottom: 0px;
	}

	.shared-detail .detail-spacer {
		padding: 0 var(--space-12);
		flex: 1 1 auto;
	}

	.shared-detail .detail-info-bar {
		display: flex;
		top: 20px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: var(--space-20) 20px;
		width: 100%;
		margin-bottom: 0;
	}

	.shared-detail .below-header {
		display: flex;
		flex-direction: row-reverse;
		align-items: stretch;
	}

	.shared-detail .detail-info-bar .split-pane {
		margin-bottom: 0;
		padding: 0;
		width: 100%;
	}

	.shared-detail .detail-drawers > dl.drawers > dd > .content {
		padding: var(--space-6);
		padding-left: 50px;
	}

	.shared-detail .detail-drawers .drawer-button {
		padding: 0;
		padding-top: 20px;
		padding-left: 50px;
		margin-bottom: var(--space-3);
	}

	.shared-detail .detail-drawers .gMapHolder {
		height: 400px;
	}
}

@media (min-width: 40em) and (max-width: 64em) {
	.shared-detail .detail-info-bar .hours-of-operation li {
		display: block;
	}

	.shared-detail .detail-info-bar .hours-of-operation li span.day {
		display: flex;
		width: auto;
		padding-right: 5px;
	}
}

@media (min-width: 64em) {
	.shared-detail .info-section {
		padding: 0 var(--space-6);
		padding-left: 0px;
	}
	.social-icons > li > div{
		width: 500px;
		padding: 0 30px 0 0;
	}

	.social-icons > li {
		max-width:500px;
	}

}



.social-icons {
	display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
	flex-wrap:wrap;
}
.social-icons > li {
	width:100%;
}

.social-icons > li > div{
	
    max-width: 100%;
}

.social-icons > li > div > a{
	display:none;
}

.social-icons {

}

.socialTab .social-icons > li {
	display:none;
}

.socialTab .social-icons > li.twitter, .socialTab .social-icons > li.facebook {
	display:block;
}
.socialTab .social-icons > li.facebook {
	order:1;
}

@media (max-width: 1470px) {
	.socialTab .social-icons {
		justify-content: center;
	}

	.socialTab .social-icons > li.facebook {
		margin: 0 0 30px;
	}
}

.socialTab .social-icons > li.twitter {
	order:2;
}

@media (min-width: 64em) {
	.social-icons {
		flex-wrap: nowrap;
	}
}

.twitterWidget, .facebookWidget {
	width:100%;
	max-width: 350px;
}



.detail-bottom {
	width:100%;
	clear:both;

	/*padding: 50px;*/
	padding-left: 0;
	margin-left: 50px;
}

.whats-nearby {
	padding: 0;
}

.whats-nearby .wrapper {
	padding: var(--space-10) 0;
	background-color: var(--primary-color);
	border-top: 4px solid var(--background-color-alt);
}



@media (min-width: 40em) {
	.whats-nearby .wrapper {
		padding: var(--space-20) 0;
		margin-bottom: 40px;
	}
}

.whats-nearby .wrapper > .inner {
	margin: 0 30px;
	padding: 0 var(--space-5);
}

.whats-nearby .section-title {
	margin: 0 auto;
	margin-bottom: var(--space-6);
	max-width: var(--width-base);
	font-family: var(--font-family-display);
	font-size: var(--text-3xl);
	font-weight: 500;
	line-height: var(--leading-tight);
	margin-left: 20px;
}

.whats-nearby .tab-group {
	display: flex;
	margin: 0 auto;
	margin-bottom: -4px;
	gap: 2px;
	max-width: var(--width-base);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}

.whats-nearby .tab {
	padding: var(--space-4) var(--space-8);
	color: white;
	background: var(--secondary-color);
	border-top: 4px solid transparent;
	border-bottom: 2px solid white;
	white-space: nowrap;
	scroll-snap-align: start;
}

.whats-nearby .tab[aria-expanded="true"] {
	border-bottom-color: var(--primary-color);
	background-color: var(--primary-color);
}

.whats-nearby .tab-pane {
	display: block;
	margin: 0;
	width: 100%;
}

.whats-nearby .no-results p {
	color: var(--white);
}

.whats-nearby .layoutjs .content.grid {
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr))
}

.whats-nearby .layoutjs .content .item .info {
	background-color: white;
}

.eventsTab .grid > div{ 
	    margin: 0;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.shared-detail .detail-drawers > div .grid > div .item {
position: relative;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
    background-color: #F2F2F2;
	}

@media screen and (min-width: 64em) {
	.shared-detail .detail-drawers > div .grid > div {
		flex-flow: wrap row;
		justify-content: space-between;
		display: grid;
		grid-gap: var(--space-5);
		grid-template-columns: repeat(auto-fill, minmax(259px, 1fr));
	}
	.shared-detail .detail-drawers > div .grid > div .item {
		flex: 0 0 30%;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
	}

}



.shared-detail .detail-drawers > div .grid > div .item .image {
    position: relative;
    flex: 1 1 150px;
}

@media (min-width: 375px) {
	.shared-detail .detail-drawers > div .grid > div .item .image {
		flex: 0 1 150px;
	}
}

@media screen and (min-width: 64em) {
	.shared-detail .detail-drawers > div .grid > div .item .image img {
		width: 100%;
	}
	.shared-detail .detail-drawers div.eventsTab .grid > div {
	    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
	}
}

.shared-detail .detail-drawers div.eventsTab {
	width:100%;
}

.shared-detail .eventItem .inner {
	display: flex;
    flex-direction: column;
}

.shared-detail .eventItem .inner .img-cont{ 
	margin:0;
}

.shared-detail .eventItem .inner .content-section{ 
	padding:20px;
}

.shared-detail .eventItem .inner .content-section li[data-name="location"] span.info-list-label {
	font-weight:bold;

}

.shared-detail .eventItem .inner h4{ 
	font-size: var(--text-2xl);
}

.hosted-container {
	display:flex;
}
.hosted-container .hosted-image {
	max-width:300px;
	padding: 0 20px 20px 0;
}

.hosted-container .hosted-information {
	
}

.hosted-container .hosted-information .hosted-title{
	font-size: var(--text-2xl);
    margin: 0 0 10px 0;
}

.hosted-container .hosted-information .hosted-description{
	margin-bottom: var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: var(--leading-normal);
}

.shared-detail .detail-info-bar ul li > div.calendar-dropdown button { 

	background:none;
}

.shared-detail .detail-info-bar ul li > div.calendar-dropdown .dropdown-menu {
	position:absolute;
}

.shared-detail .detail-info-bar ul li.product-website-link i:before,
.shared-detail .detail-info-bar ul li.product-telephone i:before,
.shared-detail .detail-info-bar ul li.product-email i:before {
	content: '';
	height: 25px;
	width: 25px;
}

.shared-detail .detail-info-bar ul li.product-website-link i:before {
	display: flex;
 	background: url('/includes/client_public/assets/shared/productpage/icon_website.svg') no-repeat center center;
}

.shared-detail .detail-info-bar ul li.product-telephone i:before {
	display: flex;
 	background: url('/includes/client_public/assets/shared/productpage/icon_telephone.svg') no-repeat center center;
}

.shared-detail .detail-info-bar ul li.product-email i:before {
	display: flex;
 	background: url('/includes/client_public/assets/shared/productpage/icon_email.svg') no-repeat center center;
}

.shared-detail .detail-drawers > div .date-notes
{
	font-weight:700;
}

iframe#embedSpecialOffers {
	width:100%;
}

iframe#embedRoutes {
width:100%;
}


iframe#pricesIframe {
	width:100%;
}

iframe#openingsIframe {
width:100%;
}


.shared-detail .detail-drawers > div.downloadsTab .download-item{
	margin:0 0 10px 0;
}

.shared-detail .detail-drawers > div.downloadsTab .download-item a[href*=".pdf"]{

}

.shared-detail .detail-drawers > div.downloadsTab .download-item a[href*=".pdf"]::before{
	content: url(/includes/client_public/assets/shared/icons/icon_pdf.png);
	vertical-align: middle;
    margin: 0 10px 0 0;
}




.related-listings {
	padding: 0;
	width:100%;
}


@media (min-width: 64em) {
	.related-listings .section-title {
		padding: 0 50px;
	}

	.related-listings .wrapper > .inner {
	    padding: 0 50px;
	}
}

.related-listings .section-title {
	margin: 0;
	margin-bottom: var(--space-6);
	padding: 0;
	max-width: var(--width-base);
    font-family: var(--font-family-body);
    font-size: 2.75rem;
    line-height: var(--leading-none);
}

.related-listings .wrapper > .inner {
	padding: 0;
}

.related-listings .tab-group {
	display: flex;
	margin: 0;
	margin-bottom: -4px;
	gap: 2px;
	padding: 0 70px;
	max-width: var(--width-base);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}

.related-listings .tab {
	padding: 0 var(--space-8);
	color: white;
	white-space: nowrap;
	scroll-snap-align: start;
}

.related-listings .tab[aria-expanded="true"] {
	border-bottom-color: #393b3a;
	background-color: #393b3a;
}

.related-listings .tab-pane {
	display: block;
	margin: 0;
	width: 100%;
}

.related-listings .layoutjs .content.grid {
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr))
}



.eventsTab .slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
	overflow:hidden;
}

.eventsTab .slick-slider .slick-list{

    width: 100%;
    height: 0;
  padding-bottom: 67.3456%;
    overflow: hidden;

}

.eventsTab .slick-slider .slick-list .slick-track{

position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate(0);
    -webkit-transform: translate(0);
}



.eventsTab .slick-slider .slick-list .slick-track .slick-slide{

    flex: none;
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}


#mailout-email-container .header h1, #mailout-email-container .header h2,#mailout-email-container .header h3,#mailout-email-container .header h4,#mailout-email-container .header h5,#mailout-email-container .header h6{ 
	color: #4d4c4c !important; 
}


.gradingsTab .gradingContainer  {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
}

.gradingsTab .gradingItem  {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;	
		margin:0 0 20px 0;
}

.gradingsTab .gradingItem:last-of-type  {
		border:none;
		padding:0;
		margin:0;
}

.gradingsTab .gradingItem .gradingInfo { 

	display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		    padding: 0 0 0 10px;
}
.gradingsTab .gradingItem .gradingInfo span{ 

	clear:both;
}


@media (min-width: 40em) {
	.gradingsTab .gradingItem  {
			padding: 0 20px 0 0;
			border-right:1px solid black;
			margin:0 20px 0 0;		
	}
	.gradingsTab .gradingContainer  {
		
		flex-direction: row;
	}

}


.detail-right-mobile {
		display: flex;
}
.detail-right {
	display: none;
}
@media screen and (min-width: 64em) {
	.detail-right {
		display: flex;
	}
	.detail-right-mobile {
		display: none;
	}
}


.shared-detail .detail-drawers .socialTab .social-icons {
	justify-content: flex-start;
}

@media screen and (min-width: 40em) {
	.shared-detail .detail-bottom.detail-drawers .related-listings {
		padding-left: 20px;
		padding-right: 20px;
	}
}