
/* Virtual Mouse */
.virtual-mouse {
    width: 115px;
    height: 200px;
    border: 2px solid #888;
    border-radius: 50px / 60px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    background: #444;
}
.mouse-btn-left{
    border-radius: 50px 3px 3px 3px;
}
.mouse-btn-right{
    border-radius: 3px 50px 3px 3px;
}
.mouse-btn.mouse-btn-middle-top {
    width: 15px;
    border-radius: 5px 5px 0px 0px;
    height: 35px;
}
.mouse-btn.mouse-btn-middle-center {
    width: 15px;
    border-radius: 0;
}
.mouse-btn.mouse-btn-middle-bottom {
    width: 15px;
    border-radius: 0px 0px 5px 5px;
    height: 35px;
}

.mouse-btn {
    width: 55px;
    height: 100px;
    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;
}
.mouse-btn:hover {
    background-color: #65708e;
    border-color: #65708e;
}
.mouse-btn.wide { width: 95%; margin-top: 5px; }
.mouse-btn-middle {
    position: absolute;
    top: 15px;
    width: 15px;
    height: 70px;
    background: #444;
    border-radius: 10px;
    box-shadow: -2px 2px 3px #333333;
    display: flex;
    flex-direction: column;
}
.mouse-btn-back {
    width: 10px;
    position: absolute;
    top: 58px;
    left: -11px;
    height: 25px;
    border-radius: 5px 0px 0px 0px;
}
.mouse-btn-forward {
    width: 10px;
    position: absolute;
    top: 83px;
    left: -11px;
    height: 25px;
    border-radius: 0px 0px 0px 5px;
}