﻿.jpinline {
    display: inline;
    font-weight: bold;
    font-size: 15px;
}

#email-container .email-invoice {
    max-width: 500px;
    margin: auto auto 10px auto;
    height: 40px;
}

    #email-container .email-invoice input {
        outline: 0;
        width: 100%;
        padding: 5px;
        font-size: 20px;
        border: 1px solid #ccc;
        background: #fafafa;
        transition: 0.2s ease-in-out;
    }


.captcha {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin-top: 10px;
}

#table-article {
    border-collapse: collapse;
    font-size: 1.4em;
}

    #table-article > thead th {
        text-align: center;
    }

table {
    width: 100%;
    background: white;
    margin-bottom: 10px;
    border: solid 1px #dddddd;
    border-collapse: collapse;
    border-spacing: 0;
}

#table-article thead tr {
    background-color: #222d32;
}

#table-article tr th {
    color: white;
}

table tr th,
table tr td {
    padding: 0.5625em 0.625em;
    font-size: 0.789em;
    color: #222222;
    border: 1px solid #dddddd;
}

table tr.even,
table tr.alt,
table tr:nth-of-type(even) {
    background: #f9f9f9;
}


.titulocpe {
    padding: 0 0 15px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    text-align: center;
}

::-moz-placeholder { /* Firefox 19+ */
    text-align: center;
}

:-ms-input-placeholder { /* IE 10+ */
    text-align: center;
}

.login-container {
    position: relative;
    max-width: 500px;
    margin: 80px auto 20px auto;
    padding: 20px 20px 20px;
    background: #fff;
    border: 1px solid #ccc;
    /* opacity: 0.9;*/
}

#output {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

#error {
    position: absolute;
    top:-50px;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    padding: 10px;
}




select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.login-container::before, .login-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 3.5px;
    left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;
}

.login-container::after {
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
    -moz-transform: rotateZ(-2deg);
    -ms-transform: rotateZ(-2deg);
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 10px auto 30px;
    border-radius: 100%;
    border: 2px solid #aaa;
    background-size: cover;
}

.form-box input, .form-box select {
    width: 100%;
    padding: 5px;
    font-size: 20px;
    height: 40px;
    border: 1px solid #ccc;
    background: #fafafa;
    transition: 0.2s ease-in-out;
}

.form-box select {
    font-size: 16px;
}

.form-box input:focus {
    outline: 0;
    background: #eee;
}

.form-box input[type="text"] {
    border-radius: 5px 5px 0 0;
}




.form-box button.login {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1.3em;
    font-weight: bold;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@media only screen and (max-width: 768px) {
    table.resp,
    .resp thead,
    .resp tbody,
    .resp tr,
    .resp th,
    .resp td,
    .resp caption {
        display: block;
    }

    table.resp {
        border: none;
    }

    .resp thead tr {
        display: none;
    }

    .resp tbody tr {
        margin: 1em 0;
        border: 1px solid #2ba6cb;
    }

    .resp td {
        border: none;
        border-bottom: 1px solid #dddddd;
        position: relative;
        padding-left: 45%;
        text-align: left;
    }

    .resp tr td:last-child {
        border-bottom: 1px double #dddddd;
    }

    .resp tr:last-child td:last-child {
        border: none;
    }

    .resp td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }


    table.resp td:nth-of-type(1):before {
        content: "F.Emisión";
    }

    table.resp td:nth-of-type(2):before {
        content: "Serie Doc.";
    }

    table.resp td:nth-of-type(3):before {
        content: "Num. Doc.";
    }

    table.resp td:nth-of-type(4):before {
        content: "T. Doc.";
    }

    table.resp td:nth-of-type(5):before {
        content: "Monto";
    }

    table.resp td:nth-of-type(6):before {
        display: inline-block;
        font-family: "Ionicons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f2dd";
    }

    table.resp td:nth-of-type(7):before {
        display: inline-block;
        font-family: "Ionicons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f2dd";
    }

    table.resp td:nth-of-type(8):before {
        display: inline-block;
        font-family: "Ionicons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f2dd";
    }

  /*  table.resp td:nth-of-type(9):before {
        display: inline-block;
        font-family: "Ionicons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        text-rendering: auto;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f2dd";
    }*/

    .openCPE > a {
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 220px;
        max-width: 500px;
    }

        .openCPE > a > span {
            font-size: 1em;
            display: block;
            width: 100%;
        }

        .openCPE > a > i {
            display: block;
            width: 100%;
            font-size: 2em;
        }
}


/*================Home ======================*/

.openCPE {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: center;
    padding: 20px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

    .openCPE > a {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
        text-align: center;
        margin: 10px;
        color: #fff !important;
        font-weight: bold;
        padding: 0.5em 1.2em;
        background: #318aac;
        border: 2px solid #318aac;
        outline: 1px solid;
        outline-color: rgba(49, 138, 172, 0.4);
        transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    }

        .openCPE > a > span {
            font-size: 3em;
            flex: 0 1 auto;
        }

        .openCPE > a > i {
            font-size: 6em;
            font-weight: bold;
            flex: 0 1 auto;
        }

        .openCPE > a:hover {
            box-shadow: inset 0 0 20px rgba(49, 138, 172, 0.5), 0 0 20px rgba(49, 138, 172, 0.4);
            outline-color: rgba(49, 138, 172, 0);
            outline-offset: 80px;
            text-shadow: 1px 1px 6px #fff;
        }
/*===================== Usuario ======================*/
#ResultadoLista {
    max-height: 550px;
    overflow-y: scroll;
}

.modal-header {
    padding: 5px 15px 5px 15px;
    background-color: #23527c;
    color: white;
    line-height: inherit;
}

.FiltroModal {
    padding-bottom: 5px;
}

.modal-body {
    padding-top: 5px;
}
#email-consulta {
    padding:10px 0 10px 0;
    font-weight:bold;
}
#btnEnviaCorreo {
    display:block;
    width:100%;
    font-weight:bold;
}
.msg {
    margin: 10px 0 0 0 ;
    font-size:12px;
    font-weight:bold;
}
.jpvalidate {
   border: 1px solid #f75050;
   box-shadow : inset 0 0 10px 2px #f86262;
}