﻿.separador {
    width: 1px;
    height: 10px;
    background-color: #000;
    display: inline-block;
}

.contentPage {
    padding: 26px 100px 20px 100px;
}

.documentos table td, .documentos th {
    font-size: 12px;
    text-align: left;
    max-width: 400px;
}

.documentos table th {
    color: #fff;
    background-color: #FF8B00;
    font-size: 16px;
    font-weight: 100;
    text-shadow: 2px 2px 5px #000;
    padding: 5px;
    box-sizing: border-box;
}

.documentos table td {
    color: #2d2d2d;
    font-size: 13px;
    font-weight: 100;
    padding: 6px;
    box-sizing: border-box;
    border-left: 1px solid rgba(0,0,0,0.2);
    vertical-align: middle;
}

    .documentos table td:nth-child(1) {
        border: none;
    }

.documentos table {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1);
}

    .documentos table .c1 {
        background-color: #efefef !important;
    }

    .documentos table .c2 {
        background-color: #e0e0e0 !important;
    }

.elidoc {
    background-color: #fff;
    width: 400px;
    margin: auto;
    position: fixed;
    left: calc(50% - 200px);
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.4);
    text-align: center;
}

.popup {
    visibility: hidden;
    opacity: 0;
}

.elidoc label {
    width: 100%;
}

.elidoc h3 {
    font-weight: 100;
    margin-bottom: 20px;
}

.elidoc input[type="text"], .nuedoc textarea {
    border: 1px solid #ccc;
}

.elidoc input, .nuedoc textarea {
    width: 40%;
    padding: 4px;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-block
}

    .elidoc input[type="text"]:focus, .nuedoc textarea:focus {
        outline: none;
        border: 1px solid #aaa;
        box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.1);
    }

    .elidoc input[type="submit"] {
        margin-bottom: 0;
        background: #FF8B00;
        border: 1px solid #fff;
        color: #fff;
        cursor: pointer;
    }

.nuedoc {
    background-color: #fff;
    width: 400px;
    margin: auto;
    position: fixed;
    left: calc(50% - 200px);
    z-index: 100;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.4);
    visibility: hidden;
    opacity: 0;
}

    .nuedoc .encabezado {
        margin-bottom: 20px !important;
    }

    .nuedoc label {
        width: 100%;
        color: #666;
    }

    .nuedoc input[type="text"], .nuedoc input[type="password"], .nuedoc textarea, .nuedoc select {
        border: 1px solid #ccc;
        border-radius: 2px;
    }

    .nuedoc input, .nuedoc textarea, .nuedoc select {
        width: 100%;
        padding: 4px;
        box-sizing: border-box;
        font-size: 16px;
        margin-bottom: 20px;
        max-width: 100%;
    }

        .nuedoc input[type="text"]:focus, .nuedoc input[type="password"]:focus, .nuedoc textarea:focus, .nuedoc select:focus {
            outline: none;
            border: 1px solid #bbb;
            box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.1);
        }

        .nuedoc input[type="submit"] {
            margin-bottom: 0;
            width: 100% !important;
            padding: 7px 12px;
            border: none;
            color: #fff;
            font-weight: 100;
            border-radius: 2px;
            cursor: pointer;
            box-shadow: 0px 0px 3px 2px rgba(0,0,0,0);
            transition: box-shadow linear 0.1s;
        }

            .nuedoc input[type="submit"]:hover {
                box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.3);
            }

.encabezado {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 30px;
    margin-top: 8%;
}

    .encabezado label, .encabezado h3 {
        display: inline-block;
        font-weight: 900;
        cursor: default;
    }

    .encabezado h3 {
        color: #4d4d5d;
    }

    .encabezado label.cerrar {
        position: absolute;
        right: 0px;
        top: 3px;
        width: 13px;
        cursor: pointer;
    }

    .encabezado label.agregar {
        position: absolute;
        right: 0px;
        top: 3px;
        cursor: pointer;
    }

        .encabezado label.agregar img {
            width: 20px;
        }

        .encabezado label.agregar p {
            margin-right: 10px;
            color: #4d4d5d;
        }

        .encabezado label.agregar img, .encabezado label.agregar p {
            display: inline-block;
        }

    .encabezado label.cerrar img {
        width: 13px;
    }


.oculto {
    visibility: hidden;
    opacity: 0;
}

.visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.btnEliminar {
    background-image: url(/Imagenes/img-eliminar.png);
    width: 23px;
    cursor: pointer;
    margin: 0px 10px;
}

.sombra {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 10;
}

#alerta {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 20;
}

.alertSucces {
    padding: 10px;
    background-color: #00af50;
    border-radius: 2px;
    width: 300px;
    box-sizing: border-box;
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #fff;
    animation-name: salga;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    z-index: 10;
}

.alertError {
    padding: 10px;
    background-color: #fe0000;
    text-align: center;
    border-radius: 2px;
    width: 300px;
    box-sizing: border-box;
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #fff;
    animation-name: salga;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    z-index: 10;
}

.alertNeutro {
    padding: 10px;
    background-color: #0071c1;
    border-radius: 2px;
    width: 300px;
    box-sizing: border-box;
    color: #fff;
    animation-name: salga;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    margin-bottom: 10px;
    transition: all ease .1s;
    display: block;
    position: absolute;
    z-index: 10;
}

.contentAlert {
    position: relative;
    height: 50px;
    display: block;
    z-index: 10;
}

@keyframes salga {
    0% {
        right: -320px;
        opacity: 1;
        visibility: visible;
        bottom: 10px;
    }

    8% {
        right: 60px;
        opacity: 1;
        visibility: visible;
        bottom: 10px;
    }

    16% {
        right: 30px;
        opacity: 1;
        visibility: visible;
        bottom: 10px;
    }

    90% {
        right: 30px;
        opacity: 1;
        visibility: visible;
        bottom: 10px;
    }

    100% {
        right: 30px;
        opacity: 0;
        visibility: hidden;
        bottom: 0;
    }
}

.novisibl {
    display: none;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    filter: alpha(opacity=0);
    opacity: 0;
    line-break: auto
}

    .tooltip.in {
        filter: alpha(opacity=90);
        opacity: .9
    }

    .tooltip.top {
        padding: 5px 0;
        margin-top: -3px
    }

    .tooltip.right {
        padding: 0 5px;
        margin-left: 3px
    }

    .tooltip.bottom {
        padding: 5px 0;
        margin-top: 3px
    }

    .tooltip.left {
        padding: 0 5px;
        margin-left: -3px
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

