.angie-ics-container-7fb4dad0 {
	position: relative;
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	overflow: hidden;
	user-select: none;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background-color: #111;
    --reveal-amount: 50%;
}

.angie-ics-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.angie-ics-layer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.angie-ics-before {
    z-index: 1;
}

.angie-ics-after {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--reveal-amount)) 0 0);
}

.angie-ics-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: flex;
	align-items: flex-end;
	padding: 30px;
}

.angie-ics-overlay-before {
	justify-content: flex-start;
}

.angie-ics-overlay-after {
	justify-content: flex-end;
}

.angie-ics-label {
	color: #fff;
	font-weight: 600;
	background-color: #c62839;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.angie-ics-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--reveal-amount);
	width: 2px;
	background-color: #c62839;
	cursor: ew-resize;
	z-index: 3;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
    transition: background-color 0.3s ease;
}

.angie-ics-handle-icon {
	width: 48px;
	height: 48px;
	background-color: #c62839;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.angie-ics-handle:hover .angie-ics-handle-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(198, 40, 57, 0.6);
}

.angie-ics-handle-icon::before,
.angie-ics-handle-icon::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
    margin: 0 4px;
}

.angie-ics-handle-icon::before {
	border-right: 6px solid #fff;
}

.angie-ics-handle-icon::after {
	border-left: 6px solid #fff;
}

@media (max-width: 767px) {
    .angie-ics-overlay {
        padding: 15px;
    }
    .angie-ics-label {
        font-size: 12px;
        padding: 6px 15px;
    }
    .angie-ics-handle-icon {
        width: 40px;
        height: 40px;
    }
}
