.ab-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.slider-buttons {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
}

.slider-buttons button {
    padding: 8px 20px;
    background: hsla(0, 0%, 0%, 0.616);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-buttons button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-img {
    width: 100%;
}

.foreground-img {
    width: 100%;
    clip-path: inset(0 50% 0 0);
}

.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    z-index: 2;
    cursor: ew-resize;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 4px;
    height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
    width: 4px;
    height: 100%;
    background: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button {
    pointer-events: none;
    position: absolute;
    width: clamp(30px, 4vw, 40px);
    height: clamp(30px, 4vw, 40px);
    border-radius: 50%;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.slider-button:after {
    content: '';
    padding: clamp(2px, 0.3vw, 3px);
    display: inline-block;
    border: solid #5D5D5D;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}

.slider-button:before {
    content: '';
    padding: clamp(2px, 0.3vw, 3px);
    display: inline-block;
    border: solid #5D5D5D;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}
.line-shape{
    width: 2px;
    height: 10000px;
    background: #ffffffb8;
}
input[type=range]{
opacity:0 !important;	
}
@media (max-width: 768px) {
    .ab-slider-container {
        min-height: 300px;
    }
    
    .slider-button {
        width: 25px;
        height: 25px;
    }
    
    .slider-buttons button {
        padding: 6px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ab-slider-container {
        min-height: 250px;
    }
    
    .slider-buttons {
        padding: 0 10px;
    }
    
    .slider-buttons button {
        padding: 5px 12px;
        font-size: 12px;
    }
}
h1.wp-block-heading.has-text-align-left{
	min-width: fit-content !important;
}