/*Hoja de estilo personalizada PlataformaCIF 2016*/
/*GENERAL*/
h1, h2, h3, h4 {
    color: darkblue;
}

.imgBox {

}

p {
    margin: 0 0 5px 0;
}
/*ICONOS*/
.IconMin {
    width: 20px;
    height: 20px;
}

.IconBar {
    width: 35px;
    height: 35px;
}
/*CONTENEDORES*/
.centerFix {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: white;
    z-index: 9999;
    text-align: center;
}

.centerFix2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgba(0, 0, 0, 0.00);
    z-index: 9999;
    text-align: center;
}

#PageWrapper {
    width: 100%;
    margin: auto;
}

section#MainContent {
    width: 100%;
    margin: auto;
}
/*BORDES*/
.round {
    border-radius: 4px;
}

.softBorder {
    border: 1px solid #a5a5a5;
    padding: 5px;
}
/*#region Loader*/
/*.loader,.loader:before,.loader:after{border-radius: 50%;}
.loader:before,.loader:after{position: absolute;content: '';}
.loader:before{
 width: 5.2em;height: 10.2em;background: white;border-radius: 10.2em 0 0 10.2em;top: -0.1em;left: -0.1em;
 -webkit-transform-origin: 5.2em 5.1em;transform-origin: 5.2em 5.1em;-webkit-animation: load2 2s infinite ease 1.5s;
 animation: load2 2s infinite ease 1.5s;}
.loader{
 font-size: 11px;text-indent: -99999em;margin: 55px auto;position: relative;width: 10em;height: 10em;
 box-shadow: inset 0 0 0 1em #0094ff;-webkit-transform: translateZ(0);-ms-transform: translateZ(0);transform: translateZ(0);
}
.loader:after{
 width: 5.2em;height: 10.2em;background: white;border-radius: 0 10.2em 10.2em 0;top: -0.1em;left: 5.1em;
 -webkit-transform-origin: 0px 5.1em;transform-origin: 0px 5.1em;-webkit-animation: load2 2s infinite ease;
 animation: load2 2s infinite ease;}*/
/*@-webkit-keyframes load2{
 0%{-webkit-transform: rotate(0deg);transform: rotate(0deg);}
 100%{-webkit-transform: rotate(360deg);transform: rotate(360deg);}}
@keyframes load2{
 0%{-webkit-transform: rotate(0deg);transform: rotate(0deg);}
 100%{-webkit-transform: rotate(360deg);transform: rotate(360deg);}}*/
/*#endregion*/
/*#region Spinner*/
.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

    .spinner > div {
        background-color: white;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1.0);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}
/*#endregion*/
/*#region VentanasModales*/
.modalmask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

    .modalmask:target {
        opacity: 1;
        pointer-events: all;
    }

.modalbox {
    width: 700px;
    position: relative;
    background: white;
    padding: 5px 20px 13px 20px;
    border-radius: 3px;
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

.movedown {
    margin: 0 auto;
}

.rotate {
    margin: 10% auto;
    -webkit-transform: scale(-5,-5);
    transform: scale(-5,-5);
}

.resize {
    margin: 10% auto;
    width: 0;
    height: 0;
}

.modalmask:target .movedown {
    margin: 10% auto;
}

.modalmask:target .rotate {
    transform: rotate(360deg) scale(1,1);
    -webkit-transform: rotate(360deg) scale(1,1);
}

.modalmask:target .resize {
    width: 400px;
    height: 200px;
}

.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
}

    .close:hover {
        background: #FAAC58;
        color: #222;
    }
/*#endregion*/
/*#region Pestañas*/
.tabs {
    position: relative;
    clear: both;
    min-height: 450px;
    margin: 0px;
    top: 0px;
    left: 0px;
    padding-top: 9px;
}

.tab {
    float: left;
}

    .tab > label {
        background: #bebebe;
        padding: 10px;
        position: relative;
    }

        .tab > label:hover {
            background: #efefef;
        }

    .tab input[type=radio] {
        display: none;
    }

        .tab input[type=radio]:checked ~ label {
            background: white;
            border-bottom: 1px solid white;
            z-index: 2;
        }

            .tab input[type=radio]:checked ~ label ~ .TabContent {
                z-index: 2;
            }

                .tab input[type=radio]:checked ~ label ~ .TabContent > * {
                    display: block;
                }

.TabContent {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 20px;
    overflow: hidden;
    text-align: justify;
}

    .TabContent > * {
        display: none;
    }
/*#endregion*/
/*#region GridPager*/
.gridPager a, .gridPager span {
    display: block;
    height: 15px;
    width: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.gridPager a {
    background-color: #f5f5f5;
    color: #969696;
    border: 1px solid #969696;
}

.gridPager span {
    background-color: #A1DCF2;
    color: #000;
    border: 1px solid #3AC0F2;
}
/*#endregion*/

/*#region Página Prog*/
.tableTP {
    width: 100%;
}

.tdFolAsig {
    width: 140px;
}

.tdTarja {
    width: 107px;
}

.tdPP {
    height: 30px;
}

.tdlblIngre {
    width: 160px;
}

.tdlbPeso {
    height: 30px;
    width: 88px;
}

.tdlbDesc {
    width: 110px;
    height: 30px;
}

.tdlbFecTrasla {
    width: 149px;
    height: 35px;
}

.tdFecTrasla {
    height: 35px;
}

.pCarga {
    border: 1px solid #ccc;
    height: 650px;
}

.notas {
    color: gray;
    font-size: 12px;
    text-align: right;
}

.txtbox {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .txtbox:focus::before {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        background: white;
        color: Black;
    }

    .txtbox:focus::after {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        background: white;
        color: Black;
    }

    .txtbox:focus {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        background: #E5E5E5;
        color: Black;
    }

.FondoAplicacion {
    position: absolute;
    z-index: 6000 !important;
    top: 0px;
    left: 0px;
    background-color: #000;
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.FondoAplicacion2 {
    position: absolute;
    z-index: 6004 !important;
    top: 0px;
    left: 0px;
    background-color: #000;
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.FondoAplicacion3 {
    position: absolute;
    z-index: 6010 !important;
    top: 0px;
    left: 0px;
    background-color: #000;
    filter: alpha(opacity=40);
    opacity: 0.4;
}
/*#endregion*/


.ir-arriba {
    display: none;
    padding: 20px;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/*#region Spin-Loading*/
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.dot {
    position: absolute;
    border-radius: 50%;
    left: 1px;
    top: 1px;
    width: 18px;
    height: 18px;
    background: white;
    animation: spin 2.5s 0s infinite both;
}

.dot2 {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: white;
    animation: spin2 2.5s 0s infinite both;
}


@-webkit-keyframes spin {
    0%, 100% {
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }

    50% {
        transform: rotate(180deg);
    }

    25%, 75% {
        box-shadow: 28px 0 0 white, -28px 0 0 white, 0 28px 0 white, 0 -28px 0 white, 20px -20px 0 white, 20px 20px 0 white, -20px -20px 0 white, -20px 20px 0 white;
    }

    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }
}

@keyframes spin {
    0%, 100% {
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }

    50% {
        transform: rotate(180deg);
    }

    25%, 75% {
        box-shadow: 28px 0 0 white, -28px 0 0 white, 0 28px 0 white, 0 -28px 0 white, 20px -20px 0 white, 20px 20px 0 white, -20px -20px 0 white, -20px 20px 0 white;
    }

    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }
}


@-webkit-keyframes spin2 {
    0%, 100% {
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }

    50% {
        transform: rotate(-180deg);
    }

    25%, 75% {
        box-shadow: 52px 0 0 white, -52px 0 0 white, 0 52px 0 white, 0 -52px 0 white, 38px -38px 0 white, 38px 38px 0 white, -38px -38px 0 white, -38px 38px 0 white;
        background: transparent;
    }

    100% {
        transform: rotate(-360deg);
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }
}

@keyframes spin2 {
    0%, 100% {
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }

    50% {
        transform: rotate(-180deg);
    }

    25%, 75% {
        box-shadow: 52px 0 0 white, -52px 0 0 white, 0 52px 0 white, 0 -52px 0 white, 38px -38px 0 white, 38px 38px 0 white, -38px -38px 0 white, -38px 38px 0 white;
        background: transparent;
    }

    100% {
        transform: rotate(-360deg);
        box-shadow: 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white, 0 0 0 white;
    }
}
/*#endregion*/

/*#region Spin-Loading 2*/
.loaderSpin {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 175px;
    height: 100px;
}

    .loaderSpin span {
        display: block;
        background: white;
        width: 7px;
        height: 10%;
        border-radius: 14px;
        margin-right: 5px;
        float: left;
        margin-top: 25%;
    }

        .loaderSpin span:last-child {
            margin-right: 0px;
        }

        .loaderSpin span:nth-child(1) {
            animation: load 2.5s 1.4s infinite linear;
        }

        .loaderSpin span:nth-child(2) {
            animation: load 2.5s 1.2s infinite linear;
        }

        .loaderSpin span:nth-child(3) {
            animation: load 2.5s 1s infinite linear;
        }

        .loaderSpin span:nth-child(4) {
            animation: load 2.5s 0.8s infinite linear;
        }

        .loaderSpin span:nth-child(5) {
            animation: load 2.5s 0.6s infinite linear;
        }

        .loaderSpin span:nth-child(6) {
            animation: load 2.5s 0.4s infinite linear;
        }

        .loaderSpin span:nth-child(7) {
            animation: load 2.5s 0.2s infinite linear;
        }

        .loaderSpin span:nth-child(8) {
            animation: load 2.5s 0s infinite linear;
        }

        .loaderSpin span:nth-child(9) {
            animation: load 2.5s 0.2s infinite linear;
        }

        .loaderSpin span:nth-child(10) {
            animation: load 2.5s 0.4s infinite linear;
        }

        .loaderSpin span:nth-child(11) {
            animation: load 2.5s 0.6s infinite linear;
        }

        .loaderSpin span:nth-child(12) {
            animation: load 2.5s 0.8s infinite linear;
        }

        .loaderSpin span:nth-child(13) {
            animation: load 2.5s 1s infinite linear;
        }

        .loaderSpin span:nth-child(14) {
            animation: load 2.5s 1.2s infinite linear;
        }

        .loaderSpin span:nth-child(15) {
            animation: load 2.5s 1.4s infinite linear;
        }

@-webkit-keyframes load {
    0% {
        background: white;
        margin-top: 25%;
        height: 10%;
    }

    50% {
        background: white;
        height: 100%;
        margin-top: 0%;
    }

    100% {
        background: white;
        height: 10%;
        margin-top: 25%;
    }
}

@keyframes load {
    0% {
        background: white;
        margin-top: 25%;
        height: 10%;
    }

    50% {
        background: white;
        height: 100%;
        margin-top: 0%;
    }

    100% {
        background: white;
        height: 10%;
        margin-top: 25%;
    }
}
/*#endregion*/


.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    margin-left: -1px;
}

    .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px;
    }

.input-group-btn > .btn {
    position: relative;
}

.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}


.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #3276b1;
    border-color: #285e8e;  
}


.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}


@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../Styles/glyphicons-halflings-regular.eot);
    src: url(../Styles/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../Styles/glyphicons-halflings-regular.woff) format('woff'),url(../Styles/glyphicons-halflings-regular.ttf) format('truetype'),url(../Styles/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg'); 
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-folder-open:before {
    content: "\e118";
}

