/*::::::: BACK2TOP BUTTON :::::::*/

#scroll {
position:fixed;
right:20px;
bottom:20px;
cursor:pointer;
width:50px;
height:50px;
background-color:#e1c059;
  -webkit-transition: background-color .8s ease-out;
  -moz-transition: background-color .8s ease-out;
  -o-transition: background-color .8s ease-out;
  transition: background-color .8s ease-out;
text-indent:-9999px;
display:none;
-webkit-border-radius:50%;
-moz-border-radius:50%;
border-radius:50%;
z-index:99;
}
#scroll span {
position:absolute;
top:50%;
left:50%;
margin-left:-8px;
margin-top:-12px;
height:0;
width:0;
border:8px solid transparent;
border-bottom-color:#ffffff
}
#scroll:hover {
background-color:#776b46;
opacity:1;filter:"alpha(opacity=100)";
-ms-filter:"alpha(opacity=100)";
}