.v-desktop, .v-tablet, .v-mobile {
    display: none !important;
}

.v-tablet {
    display: initial !important;
}

.vRollerBox {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 4;
}

.vRollerBox .rollIcon {
    z-index: 11;
    transform: rotate(180deg);
    color: #fff;
    background-color: var(--vThemeColor);
    writing-mode: vertical-rl;
    text-orientation: mixed;    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0px;
    font-weight: 200;
    opacity: 0.7;
    cursor: pointer;
    width: 30px;
    border-radius: 5px;
    position: relative;
    left: 7px;
    padding-left: 10px;
    font-size: 0.85em;
    user-select: none;
}

.vRollerBox .rollIcon:active,
.vRollerBox .rollIcon:hover {
    opacity: 1;
}

.vRollerBox .rollIcon > span {
    line-height: 1;
}

.vRollerBox .rollIcon > i {
    margin-bottom: 5px;
    font-size: 1.3em;
}

.vRollerBoxRolling {
    position: fixed;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    
}