﻿

body {
    background-color: white !important;
    font-family: 'Roboto', sans-serif !important;
}

p, a {
    line-height: 1.1;
    font-family: 'Roboto', sans-serif !important;
}

.titulos {
    font-size: 20pt;
    color: red;
    font-family: 'Roboto', sans-serif !important;
}

.menuLinks {
    color: red;
    font-size: 16pt;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Roboto', sans-serif !important;
}

    .menuLinks :hover {
        color: black;
        font-size: 17pt;
        text-decoration: none;
        font-weight: bold;
        font-family: 'Roboto', sans-serif !important;
    }

.dxgvTable_Moderno caption {
    color: Red;
    font-weight: bold;
    font-size: 12pt;
    text-align: left;
}

.header {
    background-color: white;
    color: black;
    font-weight: bold;
    border-bottom-color: #AD2931;
    border-top-color: white;
    border-left-color: white;
    border-right-color: white;
    font-family: 'Roboto', sans-serif !important;
}

.dxgvTable_Moderno {
    border: solid 1px;
    border-color: red;
    background-color: white;
}

.textoTitulos {
    color: grey;
    font-size: 11pt;
    font-family: 'Roboto', sans-serif !important;
}

.textoTitulos2 {
    color: grey;
    font-size: 12pt;
    font-weight: bold;
    font-family: 'Roboto', sans-serif !important;
}

.textoSaldo {
    color: grey;
    font-size: 13pt;
    font-weight: bold;
    color: red;
    font-family: 'Roboto', sans-serif !important;
}

.textoNombreUsuario {
    color: red;
    font-size: 25pt;
    font-weight: bold;
    font-family: 'Roboto', sans-serif !important;
}

.loginLinks {
    color: red;
    font-size: 10pt;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif !important;
}

.recuperarContrasena {
    color: #6c1b20;
    font-size: 12pt;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif !important;
    margin-left: 70px;
    font-weight:bold;
}

    .loginLinks :hover {
        color: black;
        font-size: 10pt;
        text-decoration: none !important;
        font-family: 'Roboto', sans-serif !important;
    }

/*checkbox style*/

/* Styling Checkbox Starts */
.checkbox-label {
    display: block;
    position: relative;
    margin: auto;
    cursor: pointer;
    font-size: 22px;
    line-height: 24px;
    height: 24px;
    width: 24px;
    clear: both;
}

    .checkbox-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .checkbox-label .checkbox-custom {
        position: absolute;
        top: 0px;
        left: 0px;
        height: 24px;
        width: 24px;
        background-color: transparent;
        border-radius: 5px;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        border: 2px solid red;
    }


    .checkbox-label input:checked ~ .checkbox-custom {
        background-color: #FFFFFF;
        border-radius: 5px;
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
        opacity: 1;
        border: 2px solid red;
    }


    .checkbox-label .checkbox-custom::after {
        position: absolute;
        content: "";
        left: 12px;
        top: 12px;
        height: 0px;
        width: 0px;
        border-radius: 5px;
        border: solid #009BFF;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(0deg) scale(0);
        -ms-transform: rotate(0deg) scale(0);
        transform: rotate(0deg) scale(0);
        opacity: 1;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }


    .checkbox-label input:checked ~ .checkbox-custom::after {
        -webkit-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
        transform: rotate(45deg) scale(1);
        opacity: 1;
        left: 8px;
        top: 3px;
        width: 6px;
        height: 12px;
        border: solid red;
        border-width: 0 2px 2px 0;
        background-color: transparent;
        border-radius: 0;
    }



    /* For Ripple Effect */
    .checkbox-label .checkbox-custom::before {
        position: absolute;
        content: "";
        left: 10px;
        top: 10px;
        width: 0px;
        height: 0px;
        border-radius: 5px;
        border: 2px solid red;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .checkbox-label input:checked ~ .checkbox-custom::before {
        left: -3px;
        top: -3px;
        width: 24px;
        height: 24px;
        border-radius: 5px;
        -webkit-transform: scale(3);
        -ms-transform: scale(3);
        transform: scale(3);
        opacity: 0;
        z-index: 999;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }