/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 19 Mar, 2020, 11:18:08 AM
    Author     : vimal
*/

#scroll-top {
  display: inline-block;
  background-color: #f4ab40;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  overflow-y: hidden;
}
#scroll-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#scroll-top:hover {
  cursor: pointer;
  background-color: #f4ab40;
  opacity:1;
}
#scroll-top:active {
  background-color: #f4ab40;
    opacity:1;
}
#scroll-top.show {
  opacity: .5;
  visibility: visible;
}
