#elevator_item {
width: 60px;
height: 55px;
position: fixed;
right: 15px;
bottom: 10px;
-webkit-transition: opacity .4s ease-in-out;
-moz-transition: opacity .4s ease-in-out;
-o-transition: opacity .4s ease-in-out;
opacity: 1;
z-index: 100020;
display: none;
}
#elevator_item.off {
opacity: 0;
visibility: hidden
}
#elevator {
display: block;
width: 60px;
height: 50px;
background: url(../img/icon_top2.png) center center no-repeat;
background-color: rgba(255, 8, 221, .6);
color: rgba(255, 8, 221, .6);
border-radius: 2px;
box-shadow: 0 1px 3px rgba(0,0,0,.2);
cursor: pointer;
margin-bottom: 10px
}
#elevator:hover {
background-color: rgba(255, 8, 221, .7);
color: rgba(255, 8, 221, 0.7);
}
#elevator:active {
background-color: rgba(255, 8, 221, .75);
}
