.ics-container-b6c192e5 {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
    border-radius: 15px;
    --hotspot-size: 16px;
}
.ics-image-wrapper-b6c192e5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ics-image-wrapper-b6c192e5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
}
.ics-before-b6c192e5 {
    width: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}
.ics-after-b6c192e5 {
    width: 100%;
    z-index: 1;
}
.ics-handle-b6c192e5 {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 40px;
    margin-left: -20px;
    z-index: 5;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ics-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
}
.ics-handle-button {
    position: relative;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
.ics-label-b6c192e5 {
    position: absolute;
    top: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 14px;
    z-index: 4;
}
.ics-label-before-b6c192e5 {
    left: 20px;
}
.ics-label-after-b6c192e5 {
    right: 20px;
}
.ics-overlay-b6c192e5 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 3;
}

/* Hotspots Container - Ensure it spans the full image */
.ics-hotspots-container-b6c192e5 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; /* Let dragging through unless on a dot */
    z-index: 6;
}

/* Hotspots CSS */
.ics-hotspot-wrapper-b6c192e5 {
    position: absolute;
    z-index: 10;
    width: var(--hotspot-size);
    height: var(--hotspot-size);
    margin-left: calc(var(--hotspot-size) / -2);
    margin-top: calc(var(--hotspot-size) / -2);
    pointer-events: auto; /* Re-enable clicks on the hotspot itself */
    --offset-x: 0px;
    --offset-y: 0px;
}

.ics-hotspot-dot-b6c192e5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
}

.ics-hotspot-pulse-b6c192e5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ics-hotspot-pulse-b6c192e5::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: ics-pulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    box-sizing: border-box;
    border: 2px solid; /* color via elementor */
}

@keyframes ics-pulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
    80% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.ics-hotspot-card-b6c192e5 {
    position: absolute;
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    pointer-events: none;
}

.ics-hotspot-wrapper-b6c192e5.ics-active .ics-hotspot-card-b6c192e5,
.ics-hotspot-wrapper-b6c192e5:hover .ics-hotspot-card-b6c192e5 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Card Positioning Configurations with Offsets applied safely */

/* Bottom */
.ics-card-pos-bottom .ics-hotspot-card-b6c192e5 {
    top: 100%;
    left: 50%;
    transform: translate(calc(-50% + var(--offset-x)), calc(15px + var(--offset-y)));
}
.ics-card-pos-bottom.ics-active .ics-hotspot-card-b6c192e5,
.ics-card-pos-bottom:hover .ics-hotspot-card-b6c192e5 {
    transform: translate(calc(-50% + var(--offset-x)), calc(10px + var(--offset-y)));
}


/* Top */
.ics-card-pos-top .ics-hotspot-card-b6c192e5 {
    bottom: 100%;
    left: 50%;
    transform: translate(calc(-50% + var(--offset-x)), calc(-15px + var(--offset-y)));
}
.ics-card-pos-top.ics-active .ics-hotspot-card-b6c192e5,
.ics-card-pos-top:hover .ics-hotspot-card-b6c192e5 {
    transform: translate(calc(-50% + var(--offset-x)), calc(-10px + var(--offset-y)));
}


/* Left */
.ics-card-pos-left .ics-hotspot-card-b6c192e5 {
    right: 100%;
    top: 50%;
    transform: translate(calc(-15px + var(--offset-x)), calc(-50% + var(--offset-y)));
}
.ics-card-pos-left.ics-active .ics-hotspot-card-b6c192e5,
.ics-card-pos-left:hover .ics-hotspot-card-b6c192e5 {
    transform: translate(calc(-10px + var(--offset-x)), calc(-50% + var(--offset-y)));
}


/* Right */
.ics-card-pos-right .ics-hotspot-card-b6c192e5 {
    left: 100%;
    top: 50%;
    transform: translate(calc(15px + var(--offset-x)), calc(-50% + var(--offset-y)));
}
.ics-card-pos-right.ics-active .ics-hotspot-card-b6c192e5,
.ics-card-pos-right:hover .ics-hotspot-card-b6c192e5 {
    transform: translate(calc(10px + var(--offset-x)), calc(-50% + var(--offset-y)));
}


.ics-hotspot-card-placeholder-b6c192e5 {
    padding: 20px;
    text-align: center;
    color: #666;
    font-family: sans-serif;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}