.navigation_arrows_container {
    position: fixed;
    top: 50%;
    z-index: 1000;
}
.navigation_arrows_container .arrow_wrapper {
    position: absolute;
}
.navigation_arrows_container .arrow_wrapper.outer {
    left: -35px;
}
.navigation_arrows_container .navigation_arrow {
    cursor: pointer;
    width: 35px;
    height: 30px;
    background-color: #ccc;
    margin-bottom: 1px;
    position: relative;
    z-index: 1002;

    -webkit-transition: all 0.3s; /* Safari */
    transition: all 0.3s;
}
.navigation_arrows_container .navigation_arrow .arrow_icon {
    width: 30px;
    height: 30px;
    background-image: url('IMG/arrows_sprite.png');
    background-repeat: no-repeat;
    background-position: 10px 8px;
}
.navigation_arrows_container .navigation_arrow.arrow_down .arrow_icon {
    background-position: -15px 6px;
}
.navigation_arrows_container .navigation_arrow.active:hover {
    background-color: #bbb;
}
.navigation_arrows_container .navigation_arrow.active:hover div.title {
    /*display: inline-block;*/
    background-color: #bbb;
    visibility: visible;
    opacity: 1;
    right: 35px;

}
.navigation_arrows_container .navigation_arrow.inactive {
    opacity: 0.8;
    cursor: default;
}
.navigation_arrows_container .navigation_arrow div.title {
    text-align: right;
    position: absolute;
    right: 25px;
    top: 0;
    height: 30px;
    line-height: 30px;
    background-color: #CCC;
    color: #fff;
    font-family: ProxiSemiBold;
    text-transform: lowercase;
    font-size: 14px;
    z-index: 1001;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: all 0.3s; /* Safari */
    transition: all 0.3s;
}
.navigation_arrows_container .navigation_arrow.active:hover div.title {
    background-color: #bbb;
}
.navigation_arrows_container .navigation_arrow span {
    white-space: nowrap;
    padding-left: 10px;
}
.navigation_arrows_container .navigation_arrow span:empty {
    /*display: none !important;*/
    /*width: 0 !important;*/
}
.navigation_arrows_container .navigation_arrow.active:hover span {
    /*display: inline-block;*/
}


@media (max-width:479px){
	
.navigation_arrows_container .arrow_wrapper.outer{
	left: 0;
	bottom: 10px;
	position: fixed;
	}

}