.grips-container {
    display: flex;
    position: absolute;
    box-sizing: border-box;
    height: 32px;
    gap: 2px;
}

.grips-container--forward {
    flex-direction: row;
}

.grips-container--reverse {
    flex-direction: row-reverse;
}

.grip-sector {
    display: flex;
    flex-direction: column-reverse;
    box-sizing: border-box;
    height: 60px;
    width: 48px;
}

.grip {
    display: flex;
    box-sizing: border-box;
    width: 48px;
    height: 24px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: height 0.3s ease;
    background-color: rgb(48, 48, 48);
    cursor: pointer;
}

.grip-sector:hover .grip {
    height: 40px;
}

