﻿/*
 * Skin for Smooth Scroll Sticky Box
 * 
 * Copyright (c) 2014 - 2017 Adam J De Lucia
 * Licensed under the MIT License.
 * http://opensource.org/licenses/MIT
 * 
 * Author: Adam J De Lucia
 * Skin Version: 1.1.0
 * Date: October 30, 2017
 * 
 */
#ss-sticky-box {
  position: fixed;
  right: 40px;
  bottom: 100px;
  cursor: pointer;
  color: #fff;
  background-color: #666;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  opacity: 0.4;
  filter: alpha(opacity = 40);
  padding: 10px;
}
#ss-sticky-box:hover,
#ss-sticky-box:focus,
#ss-sticky-box:active {
  opacity: 1;
  filter: alpha(opacity = 100);
}
