@charset "UTF-8";
/* CSS Document */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.map-header {
    position: absolute;
    transition: all 0.3s ease;
}

.map-gradient-bar {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    height: 5px;
    z-index: 30;
    left: 50%;
    transform: translate(-50%, 0);
    background: linear-gradient(-45deg, #FD7763, #3073AC, #FD7763, #3073AC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.map-expanded .map-gradient-bar {
    display: block;
}

.map-expand-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 6px 10px;
    background: white;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.map-expand-btn:hover {
    background-color: #f8f9fa;
    border-color: rgba(0,0,0,0.3);
}

.map {
    position: relative;
    height: 350px;
    margin-top: 0;
    border-radius: 0px;
    transition: none !important;
}

/* Desktop styles */
@media (min-width: 768px) {
    .map-expanded {
        position: fixed !important;
        top: 67vh !important;
        bottom: auto !important;
        left: 52px !important;
        right: 0 !important;
        width: calc(100% - 52px) !important;
        height: 33vh !important;
        z-index: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .map-expanded {
        position: fixed !important;
        top: 67vh !important;
        bottom: auto !important;
        left: 45px !important;
        right: 0 !important;
        width: calc(100% - 45px) !important;
        height: 33vh !important;
        z-index: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
    }
}

.map-expanded .map,
.map-expanded .map-container,
.map-expanded .mapboxgl-canvas-container,
.map-expanded .mapboxgl-canvas {
    width: 100% !important;
    height: 100% !important;
    transition: none !important;
    border-radius: 0px;
}

.tour {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2 !important;
    transition: all 0.3s ease;
}

.map-expanded .mapboxgl-ctrl-bottom-right,
.map-expanded .mapboxgl-ctrl-bottom-left {
    bottom: 32px !important;
}

/* Desktop pano styles */
@media (min-width: 768px) {
    .pano-shifted {
        height: 67vh !important;
    }
}

/* Mobile pano styles */
@media (max-width: 767px) {
    .pano-shifted {
        height: 67vh !important;
    }


.pano-shifted .tour-container {
    height: inherit !important;
}

.pano-shifted .tour-container canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

#compass-outer {
    position: absolute;
    bottom: 45px;
    right: 15px;
    width: 100px;
    height: 100px;
    z-index: 113;
    cursor: pointer;
    background: url(https://d3kfjvhh435dey.cloudfront.net/_laravel/images/compass_back_new.png) no-repeat;
    background-size: 100px;
    transition: bottom 0.3s ease;
}

.viewer-zoom-controls {
    position: absolute;
    bottom: 65px;
    right: 125px;
    z-index: 113;
    transition: bottom 0.3s ease;
}
.map {
    position: relative;
    height: 200px;
    margin-top: 0;
    border-radius: 0px;
    transition: none !important;
}
}
/* Desktop shifted controls */
@media (min-width: 768px) {
    .compass-shifted {
        bottom: calc(33vh + 45px) !important;
    }
    
    .zoom-shifted {
        bottom: calc(33vh + 65px) !important;
    }
}

/* Mobile shifted controls */
@media (max-width: 767px) {
	
	.map-expand-btn {
    display:none;
}
    .compass-shifted {
        bottom: calc(50vh + 45px) !important;
    }
    
    .zoom-shifted {
        bottom: calc(50vh + 65px) !important;
    }
}

.elements-hidden {
    display: none !important;
}

