/**
 * Theme Name: The Better India
 * Theme URI: https://thebetterindia.com/
 * Author: Sunil Kumar Sharma
 * Author URI: https://thebetterindia.com/
 * Description: It is a wordpress starter theme pack
 * Requires at least: 5.9
 * Tested up to: 5.8
 * Requires PHP: 7.4
 * Version: 1
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: thebetterindia
 * Last Modified: 2024-08-21
 */

.vspl-side-promot {
    position: fixed;
    bottom: 15%;
    right: 1rem;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: #ffffff;
    border-radius: 10px;
    padding: 0 3px 0 3px;
    box-shadow: 0 3px 6px 0 #00000047;
}
.vspl-side-promot img {
    width: 160px;
    border-radius: 13px;
}

.vspl-side-promot::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -0.5px;
    right: 0px;
    bottom: -3px;
    border-radius: 14px;
    background: linear-gradient(90deg, #174e71, #255f7e, #007d9b);
    background-size: 300% 300%;
    animation: glowAnim 5s linear infinite;
    z-index: -1;
}

/* Pulse animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.85;
    }
}


@media screen and (min-width:768px) {
    .vspl-side-promot {
        bottom: 5%;
        right: 2rem;
    }
    .vspl-side-promot img {
        width:180px;
    }
}