/* Контейнер анимации */
#rec2213731041,
#rec2213676621 {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Скрытое состояние */
.hidden-fuel {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    position: absolute;
    width: 100%;
}

/* Видимое состояние */
.visible-fuel {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

/* Toggle */
.fuel-toggle {
    width: 64px;
    height: 32px;
    background: #E0E0E0;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fuel-toggle::after {
    content: "";
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.fuel-toggle.active {
    background: #000;
}

.fuel-toggle.active::after {
    left: 34px;
}