﻿ 

.bg-finsocial {
    background: #0D0A61;
}
.text-finsocial-tit { 
    font-style: normal; 
    line-height: 29px;
    color: #0D0A61;
}

.btn-fin {
    background: #0D0A61;
    border-radius: 12px;  
    font-size: 16px;
    color: #FFFFFF; 
}

.btn-fin:hover {
    color: #0D0A61;
    background-color: white;
    border-color: #0D0A61;
}

.btn-fin-blanco {
    background: white;
    border-radius: 12px;
    font-size: 16px;
    color: #0D0A61;
    border-color: #0D0A61;
}

.btn-fin-blanco:hover {
    color: #FFFFFF;
    background-color: #0D0A61;
    border-color: #FFFFFF;
}

.text-gris {
    left: 6%;
    right: 6%;
    /*font-family: "Urbanist", sans-serif;*/
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #797979;
}

/**/
.codigo {
    margin: 3px;
    border: solid;
    border-color: #0D0A61;
    border-width: 2px;
    border-radius: 10px;
    width: 40px;
    height: 50px;
    font-style: normal;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

input[type="file"] {
    display: none;
}

.not-active {
    pointer-events: none;
    cursor: default;
}

.parpadea {
    animation-name: parpadeo;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: parpadeo;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes parpadeo {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes parpadeo {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}
.intermitente {
    border: 2px solid yellow;
    box-shadow: 0px 0px 20px;
    animation: infinite resplandorAnimation 5s;
}

@keyframes resplandorAnimation {
    0%,100% {
        box-shadow: 0px 0px 20px;
    }

    50% {
        box-shadow: 0px 0px 0px;
    }
}