.loading-spinner__overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	justify-content: center;
	align-items: center;
	transition: background-color 2000ms cubic-bezier(0.5, 0, 0.1, 1);
	z-index: 8000;
}

.loading-spinner__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.loading-spinner__border {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	vertical-align: text-bottom;
	border: 0.25em solid #6e6e73;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: spinner-border 0.75s linear infinite;
	animation: spinner-border 0.75s linear infinite;
}

.loading-spinner--inline .loading-spinner__border {
	width: 1rem;
	height: 1rem;
	border-width: 0.1em;
}

@-webkit-keyframes spinner-border {
	to {
		transform: rotate(360deg);
	}
}

@keyframes spinner-border {
	to {
		transform: rotate(360deg);
	}
}

.masthead {
	padding-top: 5rem !important;
}

.locator-section {
	height: 92vh;
	width: 100%;
	background: var(--bs-dark);
}

.locator-section #sidebar {
	width: 30%;
	display: block;
	height: 100%;
	float: left;
}

.locator-section.details #sidebar {
	width: 40%;
}

.locator-section #map-view {
	width: 70%;
	height: 100%;
	float: right;
}

.locator-section.details #map-view {
	width: 60%;
}

.locator-section #sidebar .search-input {
	appearance: none;
	background: transparent;
	color: var(--bs-light);
	border: 1px solid var(--bs-light);
	border-radius: 45px;
	padding: 14px 16px;
	display: block;
	width: 100%;
	font-size: 1rem;
	line-height: 1.4em;
	margin-bottom: 15px;
}

.locator-section #sidebar .search-input:focus-visible {
	outline: 0;
}

.locator-section #sidebar .search-actions-cont {
	display: none;

	position: absolute;
	right: 2px;
	top: 1px;
	background: white;
	font-size: 18px;
	color: #6c757d;
}

.locator-section #sidebar .search-actions-cont .search-action-btn {
	padding: 8px 15px;
	border-radius: 0;
	font-size: 18px;
	color: #000;
	background-color: #fff;
}

.locator-section #sidebar .search-actions-cont #clear-search {
	display: none;
	padding: 15px !important;
	background-image: url(http://maps.gstatic.com/tactile/omnibox/clear-2x-20150504.png);
	background-size: 100px 25px;
	background-position: -97px 52px;
	background-repeat: unset;
	margin: 0 10px;
}

.locator-section
	#sidebar
	.search-actions-cont
	.search-runtime
	#clear-search:focus,
.locator-section
	#sidebar
	.search-actions-cont
	.search-runtime
	#clear-search:hover {
	background-position: -22px 52px;
}

.locator-section #sidebar #segment-1 {
	padding: 15% 10% 5%;
	text-align: center;
	color: var(--bs-light);
}

.locator-section #sidebar #segment-1 h1 {
	font-size: 2.2rem;
	line-height: 1.3em;
	font-weight: normal;
	margin-bottom: 15px;
}

.locator-section #sidebar #segment-1 h3 {
	font-size: 1.25rem;
	line-height: 1.6em;
	font-weight: 300;
	margin-bottom: 15px;
}

.locator-section #sidebar #segment-1 #search-action {
	border: 1px solid var(--bs-light);
	background-color: var(--bs-light);
	/* color: #fff; */
	color: var(--bs-dark);

	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s ease-out;
	cursor: pointer;
	border-radius: 56px;
	opacity: 1;
	text-align: center;
	padding: 16px 32px;
	width: 100%;
	margin-bottom: 15px;
}

.locator-section #sidebar #segment-2 {
	display: none;
	color: var(--bs-light);
	height: 100%;
}

.locator-section #sidebar #segment-2 .search-input-cont {
	padding: 5% 5% 1%;
}

#search-section {
	position: relative;
	height: 100%;
}

.search-results-cont {
	position: relative;
	height: 81.5vh;
}

#search-results {
	overflow-y: auto;
	height: 100%;
	padding: 0 5%;
}

.result-item {
	padding: 15px 20px;
	width: 100%;
	background: #16263c;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	border-radius: 10px;
	margin-bottom: 15px;
}

.result-item:hover {
	background-color: var(--bs-border-color-translucent);
	cursor: pointer;
	outline: none;
}

.result-item:last-of-type {
	border-bottom: 0;
}

.result-item #img-cont {
	float: right;
	height: 80px;
	width: 80px;
	vertical-align: top;
	background-size: cover;
	background-position: center !important;
	background-repeat: no-repeat !important;
	border-radius: 10px;
}

.result-item #img-cont img {
	background-size: 80px 92px;
	height: 92px;
	width: 80px;
	vertical-align: top;
}

.result-item #result-content {
	width: 75%;
	float: left;
	line-height: 0;
	padding-right: 10px;
}

.result-item #result-content .r-title {
	font-size: 1.1rem;
	line-height: 2em;
	white-space: normal;
	margin-bottom: 1px;
}

.result-item #result-content .r-details {
	font-size: 0.8rem;
	line-height: 1.4rem;
}

.result-item #result-content .r-details .detail-item {
	min-width: 1px;
	margin-bottom: 0;
	overflow: hidden;
	display: inline-block;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.result-item #result-content .r-details .detail-item.full-width {
	display: -webkit-box;
}

.result-item #result-content .r-details .detail-item .bi-signpost-fill {
	font-size: 1rem;
	line-height: 1.6rem;
}

.place-rating {
	/* margin: 7px 0; */
}
/* display: inline-block; */

.place-rating div {
	/* display: inline-block;
	margin-bottom: 5px; */
}

.place-rating .rating-value {
}

.place-rating .jq-ry-container {
	margin: 0;
	position: relative;
	top: -2px;
}

.place-rating .total-ratings {
	/* color: #a7abaf; */
}

.place-rating .rating-value,
.place-rating .total-ratings {
	line-height: 1;
}

.place-rating .opening {
	top: -2px;
	left: 5px;
	position: relative;
	padding: 9px 6px;
	border-radius: 10%;
	background-color: white;
	font-weight: bold;
	font-size: 0.6rem;
	text-transform: uppercase;
}

.place-rating .opening.open {
	background-color: var(--bs-success);
}

.place-rating .opening.closed {
	background-color: var(--bs-danger);
}

.place-basic-info .place-rating {
	margin: 0;
	margin-top: 10px;
}

.place-basic-info .place-rating div {
	display: inline-block;
}

#place-details .info-address {
	font-size: 14px;
	margin-top: 5px;
}

#place-details .p-info-item {
	font-size: 14px;
	margin-top: 15px;
}

#place-details .p-info-item a[class*="info-"] {
	cursor: pointer;
	color: #dc3545;
}

#place-details .p-info-item .info-divider {
	display: none;
}

.place-basic-info .place-rating .rating-value,
.place-basic-info .place-rating .total-ratings {
	/* color: #fff; */
}

.place-post-info {
	padding: 3% 0;
}

.place-post-info .p-info-item {
	padding: 4px 24px 4px 0;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	font-size: 13px;
	margin-top: 10px;
}

.place-post-info .p-info-item:hover {
	background-color: rgba(0, 0, 0, 0.03);
	cursor: pointer;
}

.place-post-info .p-info-item .p-info-icon {
	margin-left: 24px;
	margin-right: 24px;
	-webkit-flex: 0 0 24px;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	height: 24px;
	width: 24px;
	background-size: 24px 1182px;
	background-image: url(https://maps.gstatic.com/tactile/icons/pane-info_hdpi-af4a748861675e4b9bda5fea93941b45.png);
	background-repeat: no-repeat;
}

.place-post-info .p-info-item .p-info-icon.address-icon {
	background-position: 0 -700px;
}

.place-post-info .p-info-item .p-info-icon.plus-code {
	background-position: 0 -1139px;
}

.place-post-info .p-info-item .p-info-icon.info-website {
	background-position: 0 -531px;
}

.place-post-info .p-info-item .p-info-icon.info-phone {
	background-position: 0 -240px;
}

.place-post-info .p-info-item .p-info-icon.info-hours {
	background-position: 0 -215px;
}

.place-post-info .p-info-item .p-info-text {
	/* color: #000; */
	text-align: left;
	line-height: 22px;
}

.opening-hours .o-h-icon {
	font-size: 18px;
	position: relative;
	top: 2px;
}

.place-post-info .p-info-item.opening-hours-all {
}

.place-post-info .p-info-item.opening-hours-all .p-info-icon,
.place-post-info .p-info-item.opening-hours-all .p-info-text {
	float: left;
}

.opening-hours-all .o-p-container {
	line-height: 20px;
	font-size: 13px;
}

.opening-hours-all .o-p-container .o-h-a-item {
	margin-bottom: 4%;
}
#p-search-records {
	display: none;
}

.result-not-found {
	padding: 5% 5%;
}

.result-not-found p {
	line-height: 20px;
	font-size: 14px;
	/* color: #9e9e9e; */
}

.search-web-instead {
	font-size: 14px;
}

#place-details {
	width: 100%;
	display: none;
}

.locator-section.mobile-search #place-details {
	height: 100%;
	overflow-y: auto;
	padding: 5%;
}

#place-details .place-detail-back {
	margin-bottom: 10px;
	display: inline-block;
	cursor: pointer;
}

#place-details .details-main-mg {
	height: 250px;
	width: 45%;
	background-size: cover;
	background-position: center;
	float: left;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
		rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
		rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
		rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
		rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

#place-details .place-basic-info {
	/* padding: 16px 24px 16px; */
	/* background-color: #4285f4; */
	color: #fff;
	padding: 15px 0;
}

#place-details .place-basic-info .details-info {
	float: left;
	padding: 0 20px;
	width: 55%;
}

#place-details .details-divider {
	padding-top: 35px;
	margin-top: 35px;
	border-top: 0.5px solid var(--bs-gray-600);
}

#place-details .place-post-reviews .reviews-title {
	font-size: 28px;
	line-height: 40px;
	color: inherit;
}

#place-details .place-post-reviews #reviews-main-value {
	font-size: 1rem;
}

#place-details .place-post-reviews #main-review-rating-value {
	font-size: 4rem;
	font-weight: bold;
}

#place-details .place-post-reviews #main-review-total {
}

#place-details .place-post-reviews #main-review-rating {
}

#place-details .place-post-reviews #reviews-listing .card {
	height: auto;
	min-height: 205px;
	background: #16263c;
	width: 49%;
	float: left;
	margin-left: 5px;
	margin-bottom: 5px;
}

#place-details .place-post-reviews #reviews-listing .card.show-less {
	height: 205px;
}

#place-details .place-post-reviews #reviews-listing .card .toggle-more {
	display: none;
	color: #ff0000;
}

#place-details
	.place-post-reviews
	#reviews-listing
	.card.expandable
	.toggle-more {
	display: block;
}

#place-details .place-post-reviews #reviews-listing .card .card-header {
	padding: 0;
	margin-bottom: 10px;
}

#place-details .place-post-reviews #reviews-listing .card .card-title {
	font-size: 16px;
	float: left;
	width: 70%;
	margin: 0;
}

#place-details .place-post-reviews #reviews-listing .card .card-text {
	margin-bottom: 10px;
}

#place-details .place-post-reviews #reviews-listing .card.show-less .card-text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
}

#place-details .place-post-reviews #reviews-listing .card .review-card-rating {
	float: right;
	width: 30% !important;
	padding: 0;
}

#place-details .place-post-reviews #reviews-listing .card,
#place-details .place-post-reviews #reviews-listing .card .card-subtitle {
	font-size: 14px;
}

#place-details .section-hero-header-title {
	font-size: 28px;
	line-height: 40px;
	color: inherit;
}

#place-details .section-hero-header-directions {
	float: right;
	position: relative;
	cursor: pointer;
	color: inherit;
	text-align: center;
	padding: 10px 0;
	margin: -38px 8px 0px;
	min-width: 89px;
	width: -webkit-min-content;
	width: -moz-min-content;
	width: min-content;
	text-decoration: none;
}

#place-details
	.section-hero-header-directions
	.section-hero-header-directions-base {
	width: 56px;
	height: 56px;
	box-sizing: border-box;
	margin: 0 auto;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
	transition: box-shadow 150ms cubic-bezier(0.4, 0, 1, 1);
	color: #4285f4;
	padding: 18px;
}

#place-details
	.section-hero-header-directions
	.section-hero-header-directions-icon {
	background-image: url(https://maps.gstatic.com/tactile/omnibox/directions-2x-20150909.png);
	background-size: 20px;
	width: 20px;
	height: 20px;
}

#place-details
	.section-hero-header-directions
	.section-hero-header-directions-label {
	display: block;
	overflow: visible;
	font-weight: 500;
	margin-top: 8px;
	cursor: inherit;
	font-size: 13px;
}

.-place-detail-back {
	display: none;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	font-size: 13px;
	padding: 8px 20px;
	text-align: left;
	width: 100%;
	border-radius: 0 0 2px 2px;
	position: relative;
	top: 0px;
	color: #007bff;
}

.result-not-found {
	padding: 5% 5%;
}

.result-not-found p {
	line-height: 20px;
	font-size: 14px;
	color: #9e9e9e;
}

/* Custom Scroll */

.custom-scroll::-webkit-scrollbar {
	height: 5px;
	width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
	background-color: #ccc;
	border-left: 1px solid #ccc;
}

.custom-scroll::-webkit-scrollbar-thumb {
	background-color: #6c757d;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
	background-color: #6c757d;
	cursor: pointer;
}

/* Map Customization */

.map-view .gm-style > div {
	border-width: 0 !important;
}

.map-view .gm-style div:last-child > div .gmnoprint {
	display: none;
}

.map-view .gm-style .gmnoprint .gm-control-active:focus {
	outline: none;
}

.map-view .gm-style .gm-style-iw-c {
	min-width: 135px !important;
}

.map-view .gm-style .gm-style-iw-c .gm-style-iw-ch {
	padding-top: 10px !important;
}

.map-view .gm-style .gm-style-iw-a button.gm-ui-hover-effect {
	outline-color: transparent !important;
	position: absolute !important;
	right: 0;
	width: auto !important;
	height: auto !important;
}

.map-view .gm-style .gm-style-iw-a button.gm-ui-hover-effect > span {
	width: 15px !important;
	height: 15px !important;
	margin: 5px !important;
}
.map-view .gm-style .gm-style-iw-d {
	text-align: center;
}

@media (max-width: 1200px) {
	.locator-section #sidebar {
		width: 40%;
	}
	.locator-section #map-view {
		width: 60%;
	}
}

@media (max-width: 1024px) {
	.locator-section #sidebar,
	.locator-section #map-view {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.locator-section #sidebar,
	.locator-section #map-view {
		width: 100%;
		float: none;
	}
	#map-view {
		display: none;
	}
	#mobile-map-view {
		display: block;
		width: 90%;
		height: 200px;
		margin: 0 auto;
	}
	.search-results-cont {
		height: auto;
		margin-top: 2%;
	}
	.search-results-cont .result-item {
		margin-bottom: 10px;
	}
	.locator-section.details #sidebar {
		width: 100%;
	}
	.locator-section #sidebar #segment-2 .search-input-cont,
	#place-details {
		padding: 2% 5%;
	}

	#place-details {
		/* visibility: visible;
		z-index: 999;
		display: block;
		position: absolute;
		background: black;
		top: 11%; */
	}
	#place-details {
		display: block;
		position: fixed;
		top: 10.5%;
		left: 0;
		height: 90vh;
		z-index: -1;
		background: var(--bs-dark);
		visibility: hidden;
	}
	#place-details .place-basic-info {
		padding: 0;
	}
	#place-details .place-basic-info .details-info,
	#place-details .place-basic-info .details-main-mg {
		width: 100%;
		margin-top: 2%;
		padding: 0;
	}
	#place-details .details-divider {
		padding-top: 25px;
		margin-top: 15px;
	}
	.place-basic-info .place-rating {
		margin-top: 0;
	}
	.place-rating .jq-ry-container {
		padding-left: 0;
	}
	#place-details .info-address,
	#place-details .info-phone,
	#place-details .info-website {
		border-top: 1px solid var(--bs-gray-600);
		padding-top: 20px;
		margin-top: 20px;
	}
	#place-details .p-info-item a[class*="info-"] {
		display: block;
	}
	#place-details .p-info-item .info-divider {
		display: none !important;
	}
	#place-details .place-post-reviews .reviews-info {
		text-align: center;
	}
	#place-details .place-post-reviews #main-review-rating-value {
		font-size: 3rem;
	}
	#place-details .place-post-reviews #main-review-rating {
		margin: 0 auto;
	}
	#place-details .place-post-reviews #reviews-listing {
		margin-top: 2rem !important;
		margin-bottom: 4rem !important;
	}
	#place-details .place-post-reviews #reviews-listing .card {
		width: 100%;
	}
	#place-details .place-post-reviews #reviews-listing .card .card-body {
		height: auto;
	}
	#place-details .place-post-reviews #reviews-listing .card .card-header {
		border: 0;
	}
}

@media (max-width: 576px) {
	.locator-section {
		height: 100%;
	}
	.locator-section #sidebar {
		height: 100%;
		/* position: relative; */
	}
	.locator-section #sidebar #segment-2 {
		position: relative;
	}
	.locator-section #sidebar #segment-2 input {
		margin-bottom: 0;
	}
}

#installerCarousel {
	width: 45%;
	float: left;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
		rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
		rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, 
		rgba(0, 0, 0, 0.06) 0px 2px 1px,
		rgba(0, 0, 0, 0.09) 0px 4px 2px, 
		rgba(0, 0, 0, 0.09) 0px 8px 4px,
		rgba(0, 0, 0, 0.09) 0px 16px 8px, 
		rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

#installerCarousel .carousel-item {
	height: 250px;
}

#installerCarousel .carousel-item img {
	height: 100%;
	object-fit: cover;
}

#installerCarousel .carousel-control-prev,
#installerCarousel .carousel-control-next {
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 10px;
}

#installerCarousel .carousel-control-prev-icon,
#installerCarousel .carousel-control-next-icon {
	width: 20px;
	height: 20px;
}

/* Reviews styling */
#place-details .place-post-reviews #reviews-listing .card {
	background: #16263c;
	border: none;
	transition: transform 0.2s ease;
}

#place-details .place-post-reviews #reviews-listing .card:hover {
	transform: translateY(-2px);
}

#place-details .place-post-reviews #reviews-listing .card .card-header {
	border: none;
	padding: 0;
}

#place-details .place-post-reviews #reviews-listing .card .card-title {
	color: #fff;
	font-size: 1.1rem;
}

#place-details .place-post-reviews #reviews-listing .card .card-subtitle {
	font-size: 0.85rem;
}

#place-details .place-post-reviews #reviews-listing .card .card-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	line-height: 1.6;
}

#place-details .place-post-reviews #reviews-listing .card .toggle-more {
	color: #fa5043;
	text-decoration: none;
	font-size: 0.9rem;
}

#place-details .place-post-reviews #reviews-listing .card .toggle-more:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	#installerCarousel {
		width: 100%;
		margin-bottom: 20px;
	}
	
	#place-details .place-post-reviews #reviews-listing .card {
		width: 100%;
		margin-bottom: 15px;
	}
}

ul {
	list-style-type: none;
  }
  