﻿.payDoc {
    transition: all .9s;
    -webkit-transition: all .9s;
    -moz-transition: all .9s;
    -o-transition: all .9s;
}

    .payDoc.inactive {
        opacity: 0;
        filter: alpha(opacity=0);
        height: 0;
        transform: translateY(-5%);
        transition-delay: .1s;
    }

.pending-pays {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .8s;
    transform: translateY(-5%);
    height: 0;
}

    .pending-pays.active {
        opacity: 1;
        filter: alpha(opacity=100);
        height: auto;
        transition-delay: .5s;
        transform: translateY(0%);
    }

.pending-list {
    display: table;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
    width: 100%;
}

    .pending-list:nth-child(odd) {
        background: #fafafa;
    }

    .pending-list > div {
        display: table-cell;
        vertical-align: middle;
        width: 33%;
    }

.filterTable .row:first-child > div {
    border-right: 1px solid #e3e3e3;
    padding: 10px;
}

.filterTable .row:first-child div:nth-child(5) {
    border: none;
}

.filterTable a {
    font-family: ITCFranklinGothicDemi;
    color: #000;
}

    .filterTable a.active {
        color: #0d2c80;
    }

.ramoFilter, .docsFilter, .estadoFilter, .fechaFilter {
    display: none;
}

.roundBlue {
    background: #0d2c80;
    border-radius: 50%;
    color: #fff;
    font-size: 2em;
    padding: 10px;
    margin: 10px auto;
    display: inline-block;
    vertical-align: middle;
}

.productMenu {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
    min-height: 100px;
    padding-top: 10px;
}

    .productMenu:hover:before, .productMenu:focus:before, .productMenu:active:before {
        left: 0;
        right: 0;
    }

    .productMenu:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 50%;
        right: 50%;
        top: 0;
        background: #0060d6;
        height: 4px;
        -webkit-transition-property: left, right;
        transition-property: left, right;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

.slider-dpw {
    margin-bottom: 15px;
    background: #000;
    max-height: 340px;
    overflow: hidden;
}

    .slider-dpw img {
        width: 100%;
        opacity: .8;
        filter: alpha(opacity=80);
    }

    .slider-dpw > div {
        position: relative;
    }

.slick-slide.slick-current {
    position: relative !important;
}

.slider-dpw .slick-next {
    right: 0px;
}

.slider-dpw .slick-prev {
    left: 0px;
}

.slider-dpw .slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    margin-top: -10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: rgba(0,0,0,0.3);
    z-index: 10;
}

.profileBar {
    background: rgba(15,47,134,0.8);
    color: #fff;
    padding: 10px;
    margin: -95px 0 20px;
    z-index: 100;
    position: relative;
}

.profileInfo h2 {
    text-transform: uppercase;
    font-size: 1.2em;
    font-family: ITCFranklinGothicCondensedDemi;
    letter-spacing: 1px;
    width: 300px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.profileInfo a {
    color: #fff;
}

.profileDate h3 {
    font-family: ITCFranklinGothicCondensedBook;
    font-size: 1.1em;
}

.infoSlide {
    position: absolute;
    left: 10%;
    top: 10%;
    color: #fff;
    line-height: 2;
    z-index: 1;
}

.productAssistance {
    display: inline-block;
    padding: 15px;
}

    .productAssistance:nth-child(2) {
        background: #EAF4F7;
    }

    .productAssistance:nth-child(3) {
        background: #C3DEE6;
    }

    .productAssistance:nth-child(4) {
        background: #A4C7D2;
    }

.productQuote {
    transition: all .3s;
}

    .productQuote:hover {
        background: #f2f2f2;
        box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
    }

.tableAttach {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
    left: 0px;
}

    .tableAttach.active {
        opacity: 1;
        filter: alpha(opacity=100);
        transition-delay: .3s;
        -webkit-transition-delay: .3s;
        -moz-transition-delay: .3s;
        -ms-transition-delay: .3s;
        transform: translateY(0%);
        position: relative;
    }

.docAttach {
    position: relative;
    z-index: 999;
}


.counter {
    text-align: center;
}

    .counter li {
        padding-bottom: 15px;
        font-family: ITCFranklinGothicDemi;
        font-size: 2em;
        display: inline-block;
        line-height: 1;
    }

        .counter li:nth-child(2) {
        }

    .counter input {
        border: none;
        text-align: center;
        width: 100px;
        box-shadow: 0px 1px 0px rgba(0,0,0,0.4);
        transition: all .2s;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.counter input:focus {
    outline: none;
}

.counter li:nth-child(1) input, .counter li:nth-child(3) input {
    width: 60px;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
}

.counter li:focus:nth-child(1) input, .counter li:focus:nth-child(3) input, .counter li:active:nth-child(1) input, .counter li:active:nth-child(3) input, .counter li:visited:nth-child(1) input, .counter li:visited:nth-child(3) input, .counter li:hover:nth-child(1) input, .counter li:hover:nth-child(3) input {
    cursor: pointer;
    background: #f2f2f2;
    box-shadow: inset 1px 3px 2px rgba(0,0,0,0.3);
    outline: none;
}

.package {
    padding: 20px;
    transition: all .5s;
    cursor: pointer;
    border: 1px solid #e3e3e3;
}

    .package:hover, .package:focus, .package:active, .package:visited, .package.active {
        color: #fff;
        background: #0060d6;
        transform: translateY(-5px);
    }

.package-a {
    border-left: 3px solid #0DBB27;
}

    .package-a h3 {
        color: #0DBB27;
    }

.package-b {
    border-left: 3px solid #5F197D;
}

    .package-b h3 {
        color: #5F197D;
    }

.package-c {
    border-left: 3px solid #ffcb05;
}

    .package-c h3 {
        color: #ffcb05;
    }

.package-d {
    border-left: 3px solid #0d2c80;
}

    .package-d h3 {
        color: #0d2c80;
    }

.package:hover h3, .package.active h3 {
    color: #fff;
}

.add-item {
    margin: 15px 0;
    text-align: center;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0,0,0,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .add-item .iconItem {
        opacity: 0;
        filter: alpha(opacity=0);
        transition: all .3s;
    }

    .add-item.active .iconItem {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .add-item:hover, .add-item.active, .add-item:visited {
        color: #0060d6;
    }

        .add-item:hover:before, add-item:focus:before, .add-item:active:before, .add-item:visited:before, .add-item.active:before {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            border-width: 4px;
            color: #0060d6;
        }

    .add-item:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-color: #0060d6;
        border-style: solid;
        border-width: 0;
        -webkit-transition-property: border-width;
        transition-property: border-width;
        -webkit-transition-duration: .1s;
        transition-duration: .1s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

.navbar-animation-element.in {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.navbar-animation-element {
    opacity: 0;
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -o-transform: translate(0, 50%);
    transform: translate(0, 50%);
    z-index: 1000;
}

#summary {
    background: #0060d0;
    color: #fff;
    display: table;
    width: 100%;
    margin: 0;
    line-height: 0;
    z-index: 99999;
}

.summary-proceed {
    background: #fff;
    padding: 15px;
    box-shadow: 0px -2px 4px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px -2px 4px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px -2px 4px rgba(0,0,0,0.4);
    -o-box-shadow: 0px -2px 4px rgba(0,0,0,0.4);
    height: 50px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    overflow: hidden;
    z-index: 1;
}

    .summary-proceed.up {
        height: 400px;
        overflow-y: auto;
        overflow: visible;
    }

.summary-detail {
    max-height: 350px;
    overflow-y: auto;
}

#summary .detail {
    font-family: ITCFranklinGothicCondensedDemi;
    text-transform: uppercase;
    display: table-cell;
    padding: 10px;
    line-height: 1;
}

    #summary .detail span {
        font-family: ITCFranklinGothicCondensedBook;
    }

    #summary .detail h2 {
        font-family: ITCFranklinGothicCondensedDemi;
        font-size: 1.4em;
    }

.action-summary {
    display: table;
    width: 100%;
}

    .action-summary > div {
        display: table-cell;
        font-family: ITCFranklinGothicDemi;
        font-size: 1EM;
        HEIGHT: 100%;
        VERTICAL-ALIGN: middle;
        line-height: 2;
        cursor: pointer;
    }

.health_select {
    border: none;
    font-family: ITCFranklinGothicDemi;
    font-size: 1em;
}

.infoUser-quote li {
    display: table;
    width: 170px;
    border-bottom: 1px solid #e3e3e3;
}

.health_users .panel-default > .panel-heading {
    background: #fff;
}

.health_users .panel-title {
    font-size: 14px;
    font-family: ITCFranklinGothicDemi;
    text-shadow: 0px 3px 2px rgba(255,255,255,0.6);
    color: #0060d6;
    letter-spacing: 0;
    text-transform: initial;
    background: #fff;
}

.healthContent {
    margin-bottom: 90px !important;
}

/*CAPI*/

.check-full {
    width: 100%;
}

/*Modulo pagos*/
.accountForm {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .5s;
    height: 0;
    transform: translateY(10px);
    overflow: hidden;
}

    .accountForm.active {
        transition-delay: .5s;
        transform: translateY(0);
        opacity: 1;
        filter: alpha(opacity=100);
        height: auto;
    }
/*Bandeja tramites*/
.detailEstado {
    transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(50px);
    -o-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    height: 0;
}

    .detailEstado.active {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX();
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        height: auto;
        transition-delay: .3s;
        -webkit-transition-delay: .3s;
        -moz-transition-delay: .3s;
        -o-transition-delay: .3s;
        -ms-transition-delay: .3s;
    }

.tipologyStates {
    height: 0;
    line-height: 0;
    margin: 0;
    overflow: hidden;
}

    .tipologyStates.active {
        height: auto;
        line-height: 1;
        margin: 0;
    }

.dataEstado {
    border-bottom: 3px solid #e3e3e3;
    margin-bottom: 30px;
    display: block;
}

    .dataEstado li {
        display: block;
        padding: 5px;
        font-family: ITCFranklinGothicCondensedBook;
    }

        .dataEstado li span {
            font-family: ITCFranklinGothicCondensedDemi;
        }

.profileIcon {
    background: #fff;
    display: block;
    width: 70px;
    height: 70px;
    font-size: 2em;
    border-radius: 50%;
    margin: 10px auto 30px;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
}

    .profileIcon img {
        width: 80px;
        border: 2px solid #fff;
        height: 80px;
        border-radius: 50%;
    }

    .profileIcon i {
        padding-top: 15px;
        display: inline-block;
    }

.bLeft-yellow {
    border-left: 4px solid #ffcb05;
}

    .bLeft-yellow:hover, .bLeft-blue:hover, .bLeft-darkblue:hover {
        border-left: 4px solid transparent;
    }

.bLeft-blue {
    border-left: 4px solid #0060d6;
}

.bLeft-darkblue {
    border-left: 4px solid #0d2c80;
}


#canvas-holder {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

#chartjs-tooltip {
    opacity: 1;
    filter: alpha(opacity=100);
    position: absolute;
    background: rgba(0, 0, 0, .7);
    color: white;
    padding: 3px;
    border-radius: 3px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    pointer-events: none;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

    #chartjs-tooltip.below {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

        #chartjs-tooltip.below:before {
            border: solid;
            border-color: #111 transparent;
            border-color: rgba(0, 0, 0, .8) transparent;
            border-width: 0 8px 8px 8px;
            bottom: 1em;
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            z-index: 99;
            -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
        }

    #chartjs-tooltip.above {
        -webkit-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
    }

        #chartjs-tooltip.above:before {
            border: solid;
            border-color: #111 transparent;
            border-color: rgba(0, 0, 0, .8) transparent;
            border-width: 8px 8px 0 8px;
            bottom: 1em;
            content: "";
            display: block;
            left: 50%;
            top: 100%;
            position: absolute;
            z-index: 99;
            -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
        }

#barGraph {
    position: relative;
}

.blockStat {
    width: 15px;
    height: 15px;
    background: #e3e3e3;
    margin-right: 5px;
    TEXT-ALIGN: LEFT;
    float: left;
}

.listStat {
    margin: 35px 0;
}

    .listStat li {
        display: table;
        margin: 15px 0;
    }

        .listStat li > div {
            display: table-cell;
            text-align: left;
        }

.bgPending {
    background: #0060d6;
}

.bgEmit {
    background: #949FB1;
}

.bgNoemit {
    background: #46BFBD;
}

.attach {
    background: #f2f2f2;
    margin: 25px;
    border: 2px dashed #b1b1b1;
    text-align: center;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    transform: translateY(0);
}

    .attach a {
        display: block;
        padding: 15px;
        color: #000;
        font-family: ITCFranklinGothicDemi;
        font-size: 1.1em;
    }

        .attach a:before {
            content: "+";
            display: block;
            font-size: 2.2em;
            font-family: ITCFranklinGothicCondensedBook;
            line-height: 0.7;
        }

.iconAdduser {
    background: #fff;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: block;
    padding: 15px;
    color: #012A89;
    position:relative;
 
    
}

.iconAdduser:after{
    content: "+";
    font-size: 16px;
    font-family: ITCFranklinGothicDemi;
    display: block;
    position: absolute;
    right: -7px;
    background: #012A89;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    top: 9px;
    padding: 2px;
}

.iconAdduser:hover{
    background:transparent;
    transform:scale(1.1,1.1);
}
.userAdmin>li{
    padding:0 15px;
}

.userOn{
    margin:15px;
}
@media screen and (max-width: 640px) {

    .pending-list {
        display: inline-block;
        background: #fff;
        padding: 10px;
        box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
        width: 100%;
    }

    .totalizer .pull-left, .totalizer .pull-right {
        width: 100%;
        float: none;
    }

    .pending-list:nth-child(odd) {
        background: #fafafa;
    }

    .pending-list > div {
        display: block;
        vertical-align: middle;
        width: 100%;
        text-align: center;
        padding: 5px;
    }

    .productMenu {
        text-align: center;
    }

    .profileBar {
        background: rgb(14, 46, 134);
        color: #fff;
        padding: 10px;
        margin: -15px 0 20px;
        z-index: 9999;
        position: relative;
        text-align: center;
        line-height: 2;
    }

    .profileInfo h2 {
        width: 100%;
        text-align: center;
    }

    .productQuote {
        text-align: center;
    }

    .profileDate h3 {
        text-align: center;
    }

    .slider-dpw {
        background: #fff;
    }


    .infoSlide {
        position: relative;
        left: 0;
        color: #000;
        line-height: 2;
        font-size: 14px;
        margin: 15px 0;
        display: inline-block;
    }

        .infoSlide h2 {
            color: #0e2e86;
        }

    .dataQuote {
        text-align: center;
        margin-bottom: 25px;
        border-bottom: 1px dashed #e3e3e3;
        padding: 15px 0;
    }
}

@media screen and (max-width: 768px) {
    .profileBar {
        margin: -16px 0 20px;
    }
}
