/*================================================================================
	Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template
	Version: 1.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */

.cashback-button {
     background-color: #FFD700;
    /* Color dorado */
     color: #000;
    /* Color negro */
     border: 2px solid #000;
    /* Borde negro */
     padding: 10px 20px;
     text-align: center;
     font-size: 16px;
     font-weight: bold;
     text-decoration: none;
     display: inline-block;
     border-radius: 8px;
     cursor: pointer;
}
 .cashback-button:hover {
     background-color: #FFC107;
    /* Color dorado más claro al pasar el cursor */
}
 .firework {
     position: relative;
     width: 10px;
     height: 10px;
     background-color: #fff;
     border-radius: 50%;
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
     animation: explode 1.5s infinite;
}
 @keyframes explode {
     0% {
         transform: scale(0);
         opacity: 1;
    }
     50% {
         transform: scale(3);
         opacity: 0.5;
    }
     100% {
         transform: scale(5);
         opacity: 0;
    }
}
 .fire-button {
     padding: 15px 30px;
     font-size: 22px;
     font-weight: bold;
     text-align: center;
     text-decoration: none;
     display: inline-block;
     border: none;
     cursor: pointer;
     position: relative;
     box-shadow: 0 0 15px rgba(255, 69, 0, 0.8), 0 0 25px rgba(255, 140, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.4);
     animation: fire-border 1.5s infinite alternate;
}
 @keyframes fire-border {
     0% {
         box-shadow: 0 0 15px rgba(255, 69, 0, 0.8), 0 0 25px rgba(255, 140, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.4);
    }
     100% {
         box-shadow: 0 0 35px rgba(255, 69, 0, 0.8), 0 0 50px rgba(255, 140, 0, 0.6), 0 0 70px rgba(255, 215, 0, 0.4);
    }
}

.star {
     display: inline-block;
     position: relative;
     color: #fff;
     width: 0;
     height: 0;
     border-right: 50px solid transparent;
     border-bottom: 35px solid #FFD700;
    /* Color amarillo */
     border-left: 50px solid transparent;
     transform: rotate(35deg);
}
 .star:before {
     border-bottom: 40px solid #FFD700;
     border-left: 15px solid transparent;
     border-right: 15px solid transparent;
     position: absolute;
     height: 0;
     width: 0;
     top: -23px;
     left: -32px;
     display: block;
     content: '';
     transform: rotate(-35deg);
}
 .star:after {
     position: absolute;
     display: block;
     color: #FFD700;
     top: 3px;
     left: -52px;
     width: 0;
     height: 0;
     border-right: 50px solid transparent;
     border-bottom: 35px solid #FFD700;
     border-left: 50px solid transparent;
     transform: rotate(-70deg);
     content: '';
}


