.boxScroll{
    position: absolute;
    top: 10%;
    width: 30px;
    height: 80%;
    right: 10px;
    box-sizing: border-box;
/*    border: 1px solid red;*/
    cursor: pointer;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}

.boxScroll .boxScrollBtn{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0%;
    width: 7px;
    height: 100%;
    border-radius: 9px;
    background-color: rgba(0,0,0,0.1);
}

.boxScroll .scrollBtn{
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    margin: auto;
    width: 7px;
    height: 30px;
    border-radius: 7px;
    cursor: pointer;
    z-index: 3;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.5);
}

.boxScroll .arrowScroll{
    position: absolute;
    width: 100%;
    height: 5%;
    cursor: pointer;
    text-align: center;
    font-size: 25px;
    background-color: rgba(255,255,255,0.3);
}

.boxScroll .arrowScroll:hover{
    background-color: #808080;
}

.boxScroll .arrowTop{
    top: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.boxScroll .arrowBottom{
    bottom: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
