/**
 * Location Pathway CSS
 */

.location-pathway-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.location-pathway-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

.location-pathway-list li {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    /* font-size: 16px; */
    cursor: pointer;
    transition: all 0.3s ease;
    /* border-radius: 5px; */
    margin: 0; flex-wrap: wrap;
}

.location-pathway-list li:hover {
    background-color: #f5f5f5;
}

.location-pathway-list li::before {
    content: "•";
    color: #000;
    font-size: 20px;
    margin-right: 10px;
}

.location-pathway-highlight {
    background-color: #ff8c00 !important;
    color: white;
    /* padding: 10px; */
    /* border-radius: 5px; */
}

.location-pathway-highlight::before {
    color: white !important;
}

.location-pathway-list span {
    /* flex: 1; */
    text-align: left; color: #000; white-space: nowrap;
}

.location-pathway-list .location-pathway-arrow {
    color: #ff8c00;
    flex: 0 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    margin: 0 15px;
    line-height: 15px; margin-bottom: 7px;
}

.location-pathway-highlight span, .location-pathway-highlight .location-pathway-arrow {
    color: white;
}

/* Show Image Styles */
.show-image {
    width: 100%;
    max-width: 800px;
    /* height: 400px; */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}

.show-image img {
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0; */
    opacity: 0;
    transition: all 0.3s ease;
}

.show-image img.active {
    opacity: 1;
}

/* Zoom animations */
.zoom-in {
    animation: zoomIn 0.3s ease forwards;
}

.zoom-out {
    animation: zoomOut 0.3s ease forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.1);
        opacity: 0;
    }
}

.VC_ROW402813 .vc_tta-panel-title {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.25);
}

.VC_ROW402813 .vc_tta-panel-title span {
    color: #000;
    font-weight: bold;
}
.VC_ROW402813 .vc_tta-panel.vc_active p.vc_tta-panel-title {
    border-radius: 5px;
    background: #2193B8;
}

.VC_ROW402813 .vc_tta-panel.vc_active p.vc_tta-panel-title span {
    color: #fff;
}
.VC_ROW402813 .vc_tta-panel.vc_active p.vc_tta-panel-title i:before {
    border-color: #fff !important;
}
.VC_ROW402813 .vc_tta.vc_general .vc_tta-panel-body {
    padding-inline: 0;
}

@media (min-width: 901px) {
    .VC_ROW402813 .vc_general.vc_tta.vc_tta-accordion {
        padding-right: 50px;
    }
}


/* Responsive styles */
@media (max-width: 768px) {
    .location-pathway-list li {
        flex-wrap: wrap;
        padding: 5px 10px;
    }

} 