.BOX_ANCHOR{
    position: fixed;
    z-index: 200;
    top: 80px;
    left: 50%;
    margin-left: 512px;
    width: 40px;
    height: 100%;
    height: -moz-calc(100% - 80px);
    height: -webkit-calc(100% - 80px);
    height: -o-calc(100% - 80px);
    height: calc(100% - 80px);
    background-color: transparent;
    /**/
    text-align: center;
    line-height: 30px;
    /**/
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /**/
    overflow: hidden;
    overflow-x: hidden !important;
    overflow-y: hidden;
    /**/
    direction: rtl !important;
}

@media only screen and (max-width: 1024px) {
        .BOX_ANCHOR{
                background-color: #c0c0c0;
        } 
}

.BOX_ANCHOR .ANCHOR{
    direction: ltr !important;
	position: absolute;
    top: 485px;
	left: -485px;
	width: 1024px;
	height: 30px;	
	background-color: transparent;
	color: white;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	 -ms-transform: rotate(90deg);
	  -o-transform: rotate(90deg);
	     transform: rotate(90deg);
	opacity:1;
	overflow: visible;
}
/*START:bug in edge*/
@supports (-ms-ime-align:auto) {
    .BOX_ANCHOR .ANCHOR{
            transform: rotate(270deg) !important;
    }
}
/*STOP:bug in edge*/

.BOX_ANCHOR .ANCHOR .goto:hover{
	opacity:0.7;
}

@media only screen and (max-width: 1024px) {
        .BOX_ANCHOR .ANCHOR .goto:hover{
                opacity:1;
        }
}

.BOX_ANCHOR .ANCHOR .goto{
	position: relative;
	width: 130px;
	height: 30px;	
	background-color: #666666;
	color: white;
	border-top-left-radius:     10px;
	border-top-right-radius:    10px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius:  0px;
	float: left;
	border: 1px solid #c0c0c0;
        border-bottom: none !important;
	cursor: pointer;
	font-weight: 500;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
}