﻿

:root {
    --color-red-txt--primary: #CE364A;
    --color-cyan-txt--primary: #41BFCDCC;
    --color-cyan-txt--secondary: #05B8FF;
    --color-cyan-txt--secondary-2: #216BCB;
    --color-purple-txt--primary: #7B2B67;
    --color-yellow-txt--primary: #FFEA00;
    --color-yellow-txt--secondary: #FFCE34;
    --color-yellow-txt--secondary-2: #F9D672;
    --color-yellow-txt--secondary-3: #FDD900;
    --color-blue-txt--primary: #00186B;
    --color-pink-txt--primary: #DF0080;
    --color-green-txt--primary: #599430;
}

.dnone, .d-none {
    display: none !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.bounce-animation {
    animation: bounce 1s infinite;
}

.rotate-animation {
    animation: rotate 2s linear infinite;
}

.resplandor_select:hover {
    box-shadow: 0px 0px 15px 4px rgba(255,255,255,0.5);
}

/*FONTS*/
@font-face {
    font-family: 'Mango-Grotesque';
    src: url("../../fonts/MangoGrotestque/Mango\ Grotesque-VF.ttf") format("truetype");
}

@font-face {
    font-family: 'Mango-Grotesque-2';
    src: url("../../fonts/MangoGrotestque/MangoGrotesque-Bold.ttf") format("truetype");
}


/*--------------------------------------------------------*/

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/*Animacion de rotacion/loader*/
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/*-------MEDIAS--------*/
@media(min-width: 1101px) {
}
/*-----------------------*/
