:root {
    --fg-primary: #3333A2;
    --fg-ligth: whitesmoke;
    --fg-dark: rgb(77, 77, 77);
    --fg-active: rgb(235, 0, 0);
    --fg-secondary: #004db3;
    --bg-primary: #00204a;
    --bg-ligth: whitesmoke;
    --shadow: 5px 5px 7px 3px rgba(0, 0, 0, 0.25);
    --shadow-ligth:  2px 2px 10px .1px rgba(0,0,0,0.2);
}


* {
    scrollbar-width: thin;
    scrollbar-color:  rgba(255, 255, 0, 0.4) var(--bg-primary);
}



.disabled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


.input-text {
    background: whitesmoke;
    padding: .3rem .5rem;
    line-height: 2rem;
    border-radius: 3px;
}

.button {
    /* background-color: var(--fg-active); */
    padding: .3rem 2rem;
    border-radius: 3px;
    text-transform: capitalize;
    margin-bottom: .5rem;
    text-align: center;
    cursor: pointer;
    margin-block: .5rem;
    /* transition: transform .1s ease; */

    &:active {
        transform: scale(.98, .98);
    }
}

.primary {
    color: var(--fg-ligth);
    background-color: var(--fg-active);
    box-shadow: var(--shadow);
}

.secundary {
    color: whitesmoke;
    box-shadow: 0 0 0 1px var(--fg-active);
}

.simple {
    color: var(--fg-ligth);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: .8rem;
}

.input-active {
    box-shadow: 0 0 1px 2px var(--fg-active) inset;
}


.points-logo {
    position: relative;
    width: 7px;
    height: 7px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    animation: saltar 1s ease-in-out infinite alternate;
}

.points-logo::before,
.points-logo::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: saltar 1s ease-in-out infinite alternate;
}

.points-logo::before {
    left: -20px;
    /* Ajusta la posición del primer punto */
    background-color: gold;
    animation-delay: 0.2s;
}

.points-logo::after {
    left: 20px;
    /* Ajusta la posición del tercer punto */
    background-color: whitesmoke;
    animation-delay: 0.4s;
}

@keyframes saltar {
    0% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(2px);
    }
}
