/* MonteCars Premium Button Animation */

.animated-red-btn .tn-atom,
.animated-red-btn {
    position: relative !important;
    overflow: hidden !important;

    background: linear-gradient(
        90deg,
        #8b0000 0%,
        #d60000 50%,
        #8b0000 100%
    ) !important;

    color: #ffffff !important;

    border-radius: 10px !important;

    box-shadow:
        0 0 20px rgba(255, 0, 0, 0.25),
        0 0 40px rgba(255, 0, 0, 0.12);

    transition: all 0.3s ease;
}

.animated-red-btn .tn-atom::before,
.animated-red-btn::before {
    content: "";
    position: absolute;

    top: -50%;
    left: -60%;

    width: 25%;
    height: 220%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.45),
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.45),
        transparent
    );

    transform: rotate(20deg);

    animation: montecarsShine 3s infinite linear;

    pointer-events: none;

    z-index: 1;
}

.animated-red-btn .tn-atom *,
.animated-red-btn * {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

@keyframes montecarsShine {
    0% {
        left: -60%;
    }

    100% {
        left: 140%;
    }
}