/*!
 * Start Bootstrap - Shop Homepage (https://startbootstrap.com/template-overviews/shop-homepage)
 * Copyright 2013-2017 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-shop-homepage/blob/master/LICENSE)
 */

body {
  padding-top: 54px;
}

@media (min-width: 992px) {
  body {
    padding-top: 56px;
  }
}

.zap {
            width: 65px;
            height: 65px;
            position: fixed;
            z-index: 1000;
            right: 1.5rem;
            bottom: 1.5rem;
            background-color: transparent;
            transition: transform 0.3s ease;
            animation: pulse 2s infinite;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .zap:hover {
            transform: scale(1.1);
        }