/*pasos de secuenciador*/

.sequencer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-500);
    width: var(--small-key-length);
    height: var(--big-key-length);
    background: var(--blanco-roto);
    border-radius: var(--radius-key-small);
    box-shadow:
        var(--shadow-base-white-key-dark),
        var(--shadow-base-white-key-light);
    box-sizing: border-box;
    padding: var(--space-300);
    corner-shape: squircle;
}

.fader {
    position: relative;
    width: 100%;
    height: 96px;
    background: var(--negro-principal);
    border-radius: var(--radius-100);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.fader-thumb-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    width: 100%;
    background: linear-gradient(135deg, var(--gris-claro) 0%, var(--gris-oscuro) 100%);
    border-radius: var(--radius-100);
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fader-thumb {
    position: absolute;
    height: 16px;
    width: 46px;
    background: var(--gris);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

