.map-layout-container {
	position: relative;
	width: 100%;
	height: 700px;
	min-height: 700px;
}
.map-sidebar {
	width: 410px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 10;
    transition: all 0.3s ease-in-out;
	pointer-events: none;
	left: -410px;
}
.map-sidebar.active {
	width: 410px;
	opacity: 1;
	pointer-events: auto;
	left: 0;
}
.sidebar-close {
	position: absolute;
	top: 0;
	left:-30px;
	background: #d3313a;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #fff;
	z-index: 11;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition:all 0.3s ease-in-out;
}
.sidebar-close:hover {
	background:#003949;
}
.map-sidebar.active .sidebar-close {
    left: 410px;
}
.sidebar-content {
	padding: 0px;
	height: 100%;
	overflow-y: auto;
	position: relative;
	z-index: 9;
}
.sidebar-placeholder {
	text-align: center;
	padding: 40px 20px;
	color: #999;
}
.sidebar-project-info{
	overflow: hidden;
}
.sidebar-project-info h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #d3313a;
    padding: 0;
    font-weight: 600;
	font-style: italic;
}
.sidebar-project-info .project-location {
    margin: 0 0 20px 0;
    color: #414042;
    font-size: 16px;
    font-weight: 300;
	line-height: 1.2;
}
.sidebar-project-info .project-map-info {
	margin: 0 0 20px 0;
	line-height: 1.4;
	color: #414042;
    font-size: 15px;
    font-weight: 300;
}
.sidebar-project-info .view-project-btn {
    background: #d41f26;
    color: #fff;
    padding: 2px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.sidebar-project-info .view-project-btn:hover{
    background: #003949;
}
.map-sidebar:before {
    content: '';
    width: 100%;
    height: 80px;
    left: 0;
    position: absolute;
    z-index: 1;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0 0 0 / 10%) 100%);
    pointer-events: none;
}
/* Slider Styles */
.project-slider-wrapper {
	margin-bottom: 20px;
	position: relative;
}
.location-navigation-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
	margin-bottom: 0px;
	background:#003949;
}
.location-nav-btn {
    background: rgba(255, 255, 255, .1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    padding: 12px 20px;
    transition: color 0.3s ease;
    line-height: 1;
    font-weight: 600;
}
.location-nav-btn:hover {
	background: rgba(255, 255, 255, .2);
}
.location-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.location-counter {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}
.slider-main {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	background: #f5f5f5;
	border-radius: 0px;
}
.slider-main .slick-slider-main {
	margin-bottom: 0;
}
.slider-main .slick-track {
	display: flex;
	align-items: stretch;
}
.slider-item {
	width: 100%;
	height: 250px;
	position: relative;
	outline: none;
}
.slider-item .slick-slide {
	height: 250px;
}
.slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.slider-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Gallery popup styles */
.slider-item-clickable {
	cursor: pointer;
	position: relative;
}
.slider-item-clickable a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	z-index: 1;
}
/* Video controls should work normally */
.slider-item-clickable video {
	pointer-events: auto;
}
/* When hovering, show overlay icon and allow gallery click */
.slider-item-clickable:hover .gallery-overlay-icon {
	pointer-events: none;
}
.slider-item-clickable .gallery-overlay-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	opacity: 0;
	transition: opacity 0.3s ease, background 0.3s ease;
	z-index: 10;
	pointer-events: none;
}
.slider-item-clickable .gallery-overlay-icon svg {
	width: 24px;
	height: 24px;
	stroke: #fff;
	fill: none;
}
.slider-item-clickable:hover .gallery-overlay-icon {
	opacity: 1;
	background: rgba(0, 0, 0, 0.85);
}
.slider-thumbnails {
	padding: 5px 0;
}
.slider-thumbnails .slick-slide {
	padding: 0 4px;
	cursor: pointer;
	height: auto;
}
.slider-thumbnails .slick-list {
	margin: 0 -4px;
}
.slider-thumbnails .slick-slide.slick-current {
    cursor: default;
    opacity: 1;
}
.slider-thumbnails .slick-slide > div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 25px;
}
.slider-thumbnail {
	cursor: pointer;
	position: relative;
	border: 2px solid transparent;
	border-radius: 0px;
	overflow: hidden;
	transition: border-color 0.3s ease, opacity 0.3s ease;
	opacity: 0.6;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slider-thumbnail:hover {
	opacity: 1;
}
.slider-thumbnails .slick-slide.slick-current .slider-thumbnail {
	border-color: #0073aa;
	opacity: 1;
}
.slider-thumbnail img {
	width: 100%;
	height: 100%;
	min-height: 60px;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
}
.slider-thumbnail .video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 12px;
	background: rgba(0, 0, 0, 0.8);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding-left: 2px;
}
.video-thumbnail-placeholder {
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.video-play-icon-large {
	color: #fff;
	font-size: 20px;
	background: rgba(0, 0, 0, 0.5);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding-left: 3px;
}
#map-container {
	position: relative;
	width: 100%;
	height: 700px;
}
#map {
	width: 100%;
	height: 700px;
}
.map-sidebar ::-webkit-scrollbar {
	-webkit-appearance: none 
}
.map-sidebar ::-webkit-scrollbar:vertical {
	width: 7px 
}
.map-sidebar ::-webkit-scrollbar:horizontal {
	height: 7px 
}
.map-sidebar ::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 4px;
	box-shadow: 0 0 1px #ffffff80 
}
.map-sidebar ::-webkit-scrollbar-track {
	background: #fafafa 
}
.dataInfoParent {
    padding: 0 20px 20px;
}
.map-sidebar .slider-main .slick-list,
.map-sidebar .slider-item {
    height: 13vw !important;
}

.glightbox-container.glightbox-clean .gslide-title{
	margin-bottom: 0;
	padding: 0;
}
.project-slider-wrapper .slider-item-clickable:hover .gallery-overlay-icon{
	background: rgb(211 49 58);
}
.sidebar-content .slider-main .slick-arrow {
    background: #003949;
    border-radius: 50%;
	z-index: 99;
	width: 30px;
	height: 30px;
	transition: all 0.3s ease-in-out;
    opacity: 0;
}
.sidebar-content .slider-main:hover .slick-arrow {
    opacity: 1;
}
.sidebar-content .slider-main .slick-arrow:hover {
    background: #d3313a;
}
.sidebar-content .slider-main .slick-arrow::before {
    opacity: 1;
}
.sidebar-content .slider-main .slick-arrow.slick-next{
	right:0px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.sidebar-content .slider-main .slick-arrow.slick-prev{
	left:0px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
@media (max-width: 768px) {
	.map-sidebar {
		width: 100%;
	}
	.map-sidebar.active {
		z-index: 1000;
	}
}