
.virtual-footpedal {
    width: 162px;
    height: 100px;
    border: 2px solid #888;
    border-radius: 50px 50px 10px 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    background: #444;
}
.footpedal-btn {
    width: 50px;
    height: 96px;
    border: 1px solid #8f8585;
	box-shadow: -2px 2px 3px #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #2b2b2b;
}
.footpedal-btn:hover {
    background-color: #65708e;
    border-color: #65708e;
}
.footpedal-btn.active, .cluster .center-btn.active, .cluster .ring-btn.pm-key.active, .media-row .media-btn.active, .media-row .dot-btn.active, .mouse-btn.active {
    background-color: #3431e3;
    border-color: #65708e;
}

.footpedal-btn-left{
    border-radius: 50px 3px 3px 10px
}
.footpedal-btn-center {
    border-radius: 3px 3px 3px 3px;
}
.footpedal-btn-right{
    border-radius: 3px 50px 10px 3px
}