@media print {
    *{
        display: none;
    }
}
html{
    /* background-image: url("../img/bg.png");
    background-repeat: repeat; */
    background-color: #efefef;
}
a{
    cursor: pointer;
}
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.loader {
    display: inline-block;
    border: 16px solid white;
    border-radius: 50%;
    border-top: 16px solid darkorange;
    border-bottom: 16px solid #ff8e8e;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s cubic-bezier(0.64, -0.56, 0.4, 1.42) infinite;
    animation: spin 2s cubic-bezier(0.64, -0.56, 0.4, 1.42) infinite;
}
.loader.mini{
    width: 60px;
    height: 60px;
    border-width: 10px;
}
.loader.nano{
    width: 40px;
    height: 40px;
    border-width: 8px;
}
.loader.micro{
    width: 20px;
    height: 20px;
    border-width: 5px;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.pointer{
    cursor: pointer;
}
.default{
    cursor: default;
}
strong{
    font-weight: bold;
}
.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px;display: inline-block;}
.alert h4{margin-top:0;color:inherit}
.alert .alert-link{font-weight:700}
.alert>p,.alert>ul{margin-bottom:0}
.alert>p+p{margin-top:5px}
.alert-dismissable,.alert-dismissible{padding-right:35px}
.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}
.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}
.alert-success hr{border-top-color:#c9e2b3}
.alert-success .alert-link{color:#2b542c}
.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}
.alert-info hr{border-top-color:#a6e1ec}
.alert-info .alert-link{color:#245269}
.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}
.alert-warning hr{border-top-color:#f7e1b5}
.alert-warning .alert-link{color:#66512c}
.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}
.alert-danger hr{border-top-color:#e4b9c0}
.alert-danger .alert-link{color:#843534}
.bgOpacity{
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.53) 20%, rgba(0,0,0,0.53) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(20%, rgba(0,0,0,0.53)), color-stop(100%, rgba(0,0,0,0.53)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.53) 20%, rgba(0,0,0,0.53) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.53) 20%, rgba(0,0,0,0.53) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.53) 20%, rgba(0,0,0,0.53) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.53) 20%, rgba(0,0,0,0.53) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}
.container-msg{
    position: fixed;
    background-color: white;
    border: 1px solid #c40400;
    border-radius: 6px;
    box-shadow: -1px -1px 4px 4px #740300;
    width: 280px;
    height: 400px;
    max-width: 90%;
    max-height: 90%;
    padding: 0;
    right: 0;
    bottom: 0;
    margin: 0 5px 5px 0;
}
.container-msg .title{
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    color: white;
    margin: 0;
    box-shadow: 0 2px 2px #740300;
    text-align: center;
    vertical-align: middle;
}
.container-msg .body{
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 2%;
    text-align: center;
    vertical-align: middle;
}
.container-msg .toSend{
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    color: white;
    margin: 0;
    padding: 0;
    box-shadow: 2px 0 2px #740300;
    text-align: center;
    vertical-align: middle;
}
.container-msg .user-container{
    display: inline-block;
    width: 100%;
    position: relative;
    margin: 0 0 5px 0;
    padding: 5px;
    text-align: left;
    box-shadow: 1px 1px 2px #0c0c0c;
    border: 1px solid #0c0c0c;
    border-radius: 3px;
    cursor: pointer;
}
.lista-campos strong{
    display: inline-block;
    min-width: 35%;
}
.error, .false {
    color: red;
}
.success, .true{
    color: green;
}
.b{
    font-weight: bold !important;
}
.text-justify{
    text-align: justify !important;
}
p{
    padding: 6px 3px;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.select-wrapper ::-webkit-scrollbar {
    width: 0px;
}
::-webkit-scrollbar-track {
    background-color: #D2AE83;
}
::-webkit-scrollbar-thumb {
    background-color: #84643F;
}
::-webkit-scrollbar-button {
    background-color: #2C2115;
}
::-webkit-scrollbar-corner {
    background-color: #2C2115;
}
body, div, form{
    scrollbar-face-color: #84643F;
}
.divLeer .card{
    width:700px;
    max-width:100%;
    margin:0;
    left:0;
}
.divObjectNew .card{
    width:90%;
    margin:0 5%;
    left:0;
}
@media only screen and (min-width: 700px) {
    .divLeer .card, .divLeer .showTitle {
        margin-left: -350px;
        left:50%;
    }
}
.divLeer .separator{
    margin: 0;
    width: 100%;
    position: relative;
    height: 20px;
}
.divLeer .showTitle{
    position: relative;
    width:700px;
    max-width:100%;
    margin:0;
    left:0;
    height: 20px;
    text-align: center;
}

.divLeer .showTitle::before{
    content: "...";
}
div.saltoPagina{
    display:block;
    page-break-before:always;
    width: 98%;
    margin: 0 1%;
    height: 50vh;
    border-bottom: #000000 solid 3px;
}
.box{
    box-shadow: 2px 2px 2px 2px #84643F;
}
.border{
    border: 1px solid #58432A;
}
.border2{
    border: 2px solid #58432A;
}
.border3{
    border: 3px solid #58432A;
}
.boxa{
    box-shadow: 2px 2px 2px 2px #004C32;
}
.bordera{
    border: 1px solid #003624;
}
.bordera2{
    border: 2px solid #003624;
}
.bordera3{
    border: 3px solid #003624;
}
.boxl{
    box-shadow: 2px 2px 2px 2px #D9B995;
}
.borderl{
    border: 1px solid #ECDCC9;
}
.borderl2{
    border: 2px solid #ECDCC9;
}
.borderl3{
    border: 3px solid #ECDCC9;
}
.padd{
    padding: 5px;
}
.back{
    background-color: #58432A;
}
.backa{
    background-color: #003624;
}
.backl{
    background-color: #ECDCC9;
}
.viewDocument p{
    margin: auto;
}
.hoverBox:hover{
    box-shadow: 0 0 2px 4px #871402;
}
.container-timeline{
    text-align: center !important;
}
table{
    border: 1px #505050 solid !important;
}
@media only screen and (min-width: 993px) {
    main.container{
        margin: 0 auto;
    }
    .container-timeline {
        margin: 80px auto 0 0;
    }
    @media only screen and (max-width: 1400px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 300px;
        }
        .container-timeline {
            text-align: left !important;
        }
    }
    @media only screen and (max-width: 1350px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 290px;
        }
    }
    @media only screen and (max-width: 1300px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 280px;
        }
    }
    @media only screen and (max-width: 1250px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 270px;
        }
    }
    @media only screen and (max-width: 1200px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 260px;
        }
    }
    @media only screen and (max-width: 1150px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 250px;
        }
    }
    @media only screen and (max-width: 1100px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 240px;
        }
    }
    @media only screen and (max-width: 1050px) {
        .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
            max-width: 230px;
        }
    }
}
main.container{
    margin-top: 70px;
}
.container-timeline .showTwitter{
    max-height: 420px;
    max-width: 380px;
    overflow-y: auto;
    display: inline-block;
    position: relative;
}
@media only screen and (max-width: 320px) {
    .container-timeline .fb-page, .container-timeline .fb-page span, .container-timeline .fb-page iframe {
        max-width: 300px;
    }
    .container-timeline {
        text-align: left !important;
    }
}
.dn{
    display: none !important;
}
.imgInTitleCard{
    height: 40px;
    width: auto !important;
    max-width: 80%;
    box-shadow: 2px 2px 2px 2px #000000;
    /*border-radius: 5px !important; */
    margin: -10px 5px -15px auto;
}
.portada-image{
    display: inline-block;
    text-align: center;
    height: 65%;
    width: 100%;
    padding: 5%;
}
.portada-image img.portada{
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 80%;
    box-shadow: 1px 1px 5px 3px #ff511c
}
@keyframes pulse-drgloop-animation {
    0% {
        opacity: 1;
        border-radius: 5px;
        background-color: #5d697c;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0;
        border-radius: 5px;
        background-color: #5d697c;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        background-color: #5d697c;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}
.pulse_drgloop {
    /*overflow: initial;*/
    /*position: relative;*/
}
.pulse_drgloop::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-drgloop-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-drgloop-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}
/*ol.browser-default[type="1"]{ counter-reset: item }*/
/*ol.browser-default[type="1"] li{ display: block }*/
/*ol.browser-default[type="1"] li:before { content: counters(item, ".") " "; counter-increment: item }*/