:root {
    --placeholder-color: rgba(85, 85, 85, 0.2);
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans' !important;
    font-weight: normal;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    scrollbar-color: rgba(133, 217, 234, 1) rgba(133, 217, 234, 0.2);
    scrollbar-width: thin;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
ins {
    text-decoration: none;
    float: right;
}
::-webkit-scrollbar {
    width: 7.5px;
}

::-webkit-scrollbar-track {
    background: rgba(133, 217, 234, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(133, 217, 234, 1);
    border-right: 1px solid white;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(0,109,158,1);
    }


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Open Sans';
    color: rgba(85, 85, 85, 0.2);
    font-size: 1.1vw;
}

::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Open Sans';
    color: var(--placeholder-color);
    font-size: 1.1vw;
}

:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Open Sans';
    color: rgba(85, 85, 85, 0.2);
    font-size: 1.1vw;
}

:-moz-placeholder { /* Firefox 18- */
    font-family: 'Open Sans';
    color: rgba(85, 85, 85, 0.2);
    font-size: 1.1vw;
}

/* <datalist> and <option> styling */
input[list]:focus {
    outline: none;
}

input[list] + div[list] {
    display: none;
    position: absolute;
    max-height: 20vh;
    overflow-y: auto;
    background: #FFF;
    border: 1px solid rgb(128 128 128 / 50%);
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 3px -3px #333;
    z-index: 100;
}

    input[list] + div[list] span {
        display: block;
        padding: 0.5vMin 1vMin;
        color: gray;
        text-decoration: none;
        cursor: pointer;
    }

        input[list] + div[list] span:hover {
            background: #85d9ea;
        }

.nowrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.dsmsg-visible {
    //position: absolute;
    position: fixed;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    pointer-events: auto !important;
    width: auto;
    height: auto;
    line-height: 4vh;
    padding: 2vh 2vw 3vh 2vw;
    font-size: 1.8vw;
    color: rgba(0, 44, 119, 0.7);
    background-color: white;
    text-align: center;
    border-radius: 5px;
    z-index: 1000000;
    box-shadow: 2px 2px 10px #555;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.dsmsg-invisible {
    width: auto;
    height: auto;
    line-height: 4vh;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 2vh;
    padding-bottom: 3vh;
    font-family: 'Open Sans', arial;
    font-weight: 100;
    font-size: 1.8vw;
    color: rgba(0, 44, 119, 0.7);
    background-color: white;
    text-shadow: none;
    text-align: center;
    border-radius: 5px;
    pointer-events: none;
    position: absolute;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 0;
    box-shadow: 2px 2px 10px #555;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

    .dsmsg-invisible .dsbtn-visible {
        pointer-events: none;
        cursor: default;
    }

.dsbtn {
    pointer-events: all;
    font-size: 1.5vw;
    background-color: rgba(0, 44, 119, 0.5);
    padding: 0vh 2vh;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.5s;
}
    .dsbtn:hover {
        background-color: rgba(0, 44, 119, 1);
    }
    .dsbtn-visible:hover {
        background-color: rgba(0, 44, 119, 1);
    }
.dstooltip {
    display: none;
    position: fixed;
    z-index: 10000000;
    font-size: 0.8vw;
    border: 1px solid #00A8C8;
    border-radius: 5px !important;
    padding: 0.7vh;
    background-color: #00A8C8;
    color: rgba(255, 255, 255, 1);
}

.menuframe.burguer {
    position: fixed;
    top: 46.5vh;
    left: 0vw;
    width: 5.5vh;
    height: 7vh;
    background: white;
    -moz-border-radius: 0 100px 100px 0;
    -webkit-border-radius: 0 100px 100px 0;
    border-radius: 0 100px 100px 0;
    font-size: 3.8vh;
    color: #006D9E;
    -webkit-box-shadow: 2px 2px 8px 2px rgba(0, 168, 200, 0.3);
    -moz-box-shadow: 2px 2px 8px 2px rgba(0, 168, 200, 0.3);
    box-shadow: 2px 2px 8px 2px rgba(0, 168, 200, 0.3);
    -webkit-transition: opacity 1s 1s;
    transition: opacity 1s 0.5s, top 1s 1s;
    z-index: 1000;
}
    .menuframe.burguer .btn {
        margin-top: 1.7vh;
    }
        .menuframe.burguer .btn:hover {
            color: #002C77;
            cursor: pointer;
        }
.menuframe .menu {
    display: none;
    position: fixed;
    top: 16vh;
    width: 20vw;
    -webkit-box-shadow: 0px 0px 8px 2px rgba(0, 168, 200, 0.3);
    -moz-box-shadow: 0px 0px 8px 2px rgba(0, 168, 200, 0.3);
    box-shadow: 0px 0px 8px 2px rgba(0, 168, 200, 0.3);
    background: white;
    color: rgba(0, 109, 158, 0.7);
    padding: 0vh 1vw 2vh 1.5vw;
    border-radius: 5px;
}
    .menuframe .menu .close {
        position: fixed;
        top: 14vh;
        left: 21.3vw;
        width: 2vw;
        height: 2vw;
        background: rgba(0, 109, 158, 1);
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        font-size: 2vw;
        text-shadow: none;
        color: white;
        -webkit-transition: left 1s 0.5s, transform 1s 0.5s;
        transition: all 0.5s;
    }
        .menuframe .menu .close i {
            font-size: 1.3vw;
            position: relative;
            left: 5%;
            top: -28%;
            color: white;
        }
        .menuframe .menu .close:hover {
            cursor: pointer;
            color: rgba(0, 44, 119, 1);
        }
    .menuframe .menu .opt {
        font-size: 1.8vw;
        margin-top: 2.5vh;
        transition: all 0.5s;
    }
        .menuframe .menu .opt:hover {
            cursor: pointer;
            color: rgba(0, 109, 158, 1);
        }
        .menuframe .menu .opt .icon {
            font-size: 2.5vw;
        }
.breadcrumbs {
    margin-top: 11vh;
    height: 6vh;
}
    .breadcrumbs .box {
        position: absolute;
        top: 12.5vh;
        display: inline-block;
        height: 3.7vh;
        padding: 0 0.75vw;
        margin-left: 1vw;
        border: 1px solid #c5c5c5;
        font-size: 0.9vw;
        line-height: 2.5vh;
        min-height: 1vh;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        overflow: hidden;
        z-index: 1;
    }
        .breadcrumbs .box a {
            position: relative;
            top: -0.4vh;
            display: inline-block;
            padding: 0 0.5vw 0 0.5vw;
            margin-left: 1vw;
            color:rgba(0, 109, 158, 1) ;
            z-index: 1000;
            transition: all 0.5s;
        }
            .breadcrumbs .box a:hover {
                cursor: pointer;
                font-weight: bold;
                color: rgba(0, 44, 119, 1);
            }
            .breadcrumbs .box a:after {
                display: inline-block;
                content: ".";
                position: absolute;
                right: -10px;
                width: 2.7vh;
                height: 2.7vh;
                border-right: 1px solid #c5c5c5;
                border-top: 1px solid #c5c5c5;
                border-radius: 2px;
                text-indent: -5000px;
                z-index: -1;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
            }
        .breadcrumbs .box .home {
            display: inline-block;
            top: 0;
            font-size: 1.5vw;
            color: rgba(0, 109, 158, 1);
            width: 2.5vw;
            height: 3vh;
            text-align: center;
            padding: 0;
            padding-top: 0.3vh;
            margin: 0 0 0 -0.5vw;
            -moz-border-radius-topleft: 3px;
            -webkit-border-top-left-radius: 3px;
            border-top-left-radius: 3px;
            -moz-border-radius-bottomleft: 3px;
            -webkit-border-bottom-left-radius: 3px;
            border-bottom-left-radius: 3px;
            line-height: 2.5vh;
        }
            .breadcrumbs .box a:before {
                border: none;
            }
            .breadcrumbs .box a.home:after {
                top: 0.5vh;
            }
        .breadcrumbs .box span {
            position: relative;
            top: -0.3vh;
            margin-left: 1.3vw;
            color: gray;
            z-index: 1000;
        }
.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.1); /* Black background with opacity */
    z-index: 1000; /* Specify a stack order in case you're using a different order for other elements */
}
.contentmbs {
    position: absolute;
    top: 11vh;
    width: 100%;
    height: 84.7vh;
}

/* --- DEFINICIONES GENERALES --- */
    /* Carga de las fuentes de la app desde google apis */
    /*@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700|Indie+Flower|Abel|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800|Rock+Salt:cursive|Raleway:100,200,300,400|Gloria+Hallelujah');
font-family: 'Lato', sans-serif;
font-family: 'Open Sans Condensed', sans-serif;
font-family: 'Lobster', cursive;
font-family: 'Indie Flower', cursive;
font-family: 'Dosis', sans-serif;
font-family: 'Abel', sans-serif;
font-family: 'Poiret One', cursive;
font-family: 'Quicksand', sans-serif;
font-family: 'Pontano Sans', sans-serif;
font-family: 'Didact Gothic', sans-serif;
font-family: 'Economica', sans-serif;
font-family: 'Rock Salt', cursive;
font-family: 'Raleway';
*/

@font-face {
    font-family: pet;
    src: url(../webfonts/pet.woff);
}

    /*IE*/
    input:: -ms-clear, input::-ms-reveal {
    display: none;
}

.text_center {
	text-align: center;
}

.displaynone {
	display: none;
}

.displaywait {
	display: none;
}

.mCSB_scrollTools .mCSB_dragger {
	z-index: 1000000;
}

.ui-loader {
	display: none !important;
}

.wait {
    display: none;
    width: 18vw;
    position: absolute;
    left: 39vw;
    padding: 4vh;
    /*background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;*/
    font-size: 10vw !important;
    text-shadow: none;
    z-index: 10000;
}

.frmclosebtn {
    position: absolute;
    top: 3vh;
    right: 6vw;
    width: 5vw;
    height: 5vw;
    z-index: 10000;
/*    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition-property: min-height, width, top, right;
    transition-property: min-height, width, top, right;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);*/
}

.closebtn {
    width: 3vw;
    height: 3vw;
    position: absolute;
    /*right: 6vw;
    top: 3vh;*/
    overflow: hidden;
    text-indent: 100%;
    cursor: pointer;
    /*pointer-events: none;*/
    /*opacity: 0;
    -webkit-transform: scale3d(0,0,1);
    transform: scale3d(0,0,1);*/
    /*border-style: solid;
    border-width: 1px;
	border-radius: 50%;
    border-color: rgba(0,44,119,0.2);*/
	/*border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: rgba(0,44,119,0.2);*/
}

.closebtn:hover.closebtn::before, .closebtn:hover.closebtn::after {
	background-color: rgba(0,44,119,1);
	/*-webkit-transform: rotate(315deg);
    transform: rotate(315deg);*/
}
.closebtn:hover.closebtn::before {
	-webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
.closebtn:hover.closebtn::after {
	-webkit-transform: rotate(-315deg);
    transform: rotate(-315deg);
}


.closebtn:before, .closebtn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
	background-color: rgba(0,44,119,0.7);
    border-radius: 3px;
	/*margin-left: -0.5vw;
    margin-right: -0.5vw;*/
	transition: all 0.5s;
}

.closebtn:before {
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.closebtn:after {
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.fa-times:before {
	/*content: '\00D7'!important;*/
}

.popover-button {
    position: absolute;
	top: 1vw;
	left: 1vw;
    width: 3vw;
    height: 3vw;
    /*width: 50px;
    height: 100%;*/
    /*padding: 17px 10px;
    border-radius: 3px 0 0 3px;*/
	z-index: 1000;
	cursor: pointer;
	-webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.popover-button:hover span {
	background-color: rgba(255,255,255,1);
}
.popover-button:hover span:nth-of-type(1) {
	top: 25%;
}
.popover-button:hover span:nth-of-type(3) {
	bottom: 25%;
}
.popover-button.active {
	transform: translate(19vw,0);
}
.popover-button.active span:nth-of-type(1) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.popover-button.active span:nth-of-type(2) {
	opacity: 0;
}
.popover-button.active span:nth-of-type(3) {
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%) rotate(-45deg);
}
.nostyle {
    padding: 0;
    background: none;
    border: none;
	background-color: transparent !important;
    border-color: transparent;
    color: transparent;
    text-shadow: none;
	box-shadow: none;
	outline: none;
}
.nostyle:focus {
	box-shadow: none !important;
}
.nostyle:active {
	box-shadow: none !important;
}
.popover-button span {
    position: absolute;
    left: 50%;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    display: block;
    opacity: 1;
    width: 3vw;
    height: 4px;
    background-color: rgba(255,255,255,0.7);
}

.popover-button span:nth-of-type(1) {
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
    -moz-transform: translate(-50%, 0) rotate(0deg);
    -ms-transform: translate(-50%, 0) rotate(0deg);
    -o-transform: translate(-50%, 0) rotate(0deg);
    transform: translate(-50%, 0) rotate(0deg);
}
.popover-button span:nth-of-type(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}
.popover-button span:nth-of-type(3) {
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
    -moz-transform: translate(-50%, 0) rotate(0deg);
    -ms-transform: translate(-50%, 0) rotate(0deg);
    -o-transform: translate(-50%, 0) rotate(0deg);
    transform: translate(-50%, 0) rotate(0deg);
}
/*****************************************************************************************
Cabeceras de menús de todos los paneles de configuración
*****************************************************************************************/
.frmheadermenus {
	background-color: #808080 !important;
	border-color: #808080 !important;
	font-family: RalewayLight;
	font-weight: normal;
	text-shadow: none;
}

.titulo {
	font-family: RalewayRegular;
	font-weight: normal;
	text-shadow: none;
	color: white;
	font-size: 2vw;
	margin-left: 2vw !important;
}

.leyendahead {
	font-family: RalewayRegular;
	font-size: 1.5vw;
    margin-top: 0.8vh;
    color: darkkhaki;
    text-shadow: none;
}

.iconotitulo {
	color: white;
	font-size: 2vw !important;
	margin-top: 0.2vw;
	margin-left: 2vw;
}

.iconos {
	/*position: relative;
    left: 0.5vw;*/
	width: 3.1vw;
	text-align: center !important;
    margin: 2px 2px 2px 0px;
	font-size: 2vw !important;
	text-shadow: none;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */  
}

.frmtitulo {
	border-color: #808080 !important;
	width: 3.1vw;
    height: 2.33vw;
	color: white;
}

.frmopcion {
	border-color: #808080 !important;
	width: 3.1vw;
    height: 2.33vw;
	color: white;
}

.frmopcion:hover {
	cursor: pointer;
	border-color: #E6E6E6 !important;
	background-color: #E6E6E6 !important;
	color: #808080 !important;
}

.opcionesmaster{
	margin-top: 3vh !important;
	margin-left: 1vw !important;
}

.frmopcionvertical {
	border-color: transparent !important;
	width: 23vw;
    height: 4vh;
	color: white;
	margin-bottom: 1.5vh;
}

.frmopcionvertical:hover {
	cursor: pointer;
	color: #404040 !important;
}

.frmsubopcionvertical {
	border-color: transparent !important;
	width: 23vw;
    height: 2.33vw;
	color: white;
	margin-left: 4vw;
}

.frmsubopcionvertical:hover {
	cursor: pointer;
	color: #404040 !important;
}

.frmactivo {
	border-color: #E6E6E6 !important;
	background-color: #E6E6E6 !important;
	color: #808080 !important;
}

.leyendaopcion {
	font-family: RalewayLight;
	font-weight: normal;
	text-shadow: none;
	font-size: 1.8vw;
}

.frmpanel {
	position: absolute;
	top: 41px;
	height: 100%;
	width: 25vw;
	background-color: #808080 !important;
	z-index: 9;
}

.frmmenubloques {
	position: absolute;
    z-index: 1000;
	width: 15vw;
}

.frmmenuidiomas {
	position: absolute;
	width: 12vw;
    z-index: 1000;
}

.frmmenutemporalidad {
	position: absolute;
	width: 12vw;
    z-index: 1000;
}

.frmmenuclonar {
	position: absolute;
	width: 15vw;
	z-index: 1000;
}

.frm-adddialog {
	position: absolute;
    width: 16vw;
    background-color: #E6E6E6 !important;
	padding: 1.5vw 1vw !important;
	z-index: 1000;
}

.btn-adddialog {
    font-family: RalewayLight;
	font-size: 0.8vw;
    letter-spacing: 1px;
    font-weight: 200 !important;
    border: none;
    border-radius: 0 !important;
    box-shadow: none;
    color: white !important;
    background-color: #808080 !important;
    text-shadow: none !important;
}

.btn-adddialog:hover {
	background-color: #FFFFFF !important;
	color: #808080 !important;
	font-weight: bold !important;
}

.btn-adddialog:focus {
	box-shadow: none !important;
}

.adddialog > div {
    border-left: none;
    border-right: none;
    border-top-color: #808080 !important;
    border-bottom-color: #808080 !important;
    box-shadow: none !important;
    color: #808080 !important;
}

.adddialog > div input {
    background: #E6E6E6;
    text-shadow: none;
    border-radius: 0;
    font-family: RalewayLight;
    font-size: 1.3vw;
    font-weight: 300;
	padding-left: 1vw;
}

.adddialog > div div[id^="cmb"] {
    background: #E6E6E6;
	color: #808080;
    text-shadow: none;
    border-radius: 0;
    font-family: RalewayLight;
    font-size: 1.3vw;
    font-weight: 300;
	box-shadow: none;
    border-left: none;
    border-right: none;
    border-top-color: #808080;
    border-bottom-color: #808080;
    margin-left: 0.35vw;
    margin-right: 0.35vw;
}

.adddialog > div div[id^="cmb"]:hover {
    background: #E6E6E6;
	color: #808080;
    text-shadow: none;
    border-radius: 0;
 	box-shadow: none;
	border-top-color: #808080;
    border-bottom-color: #808080;
	font-weight: 400;
}

.adddialog > div div[id^="cmb"]:focus {
	box-shadow: none !important;
}

.adddialog > div div[id^="cmb"]:after {
	background-color: transparent;
}

.adddialog option {
    font-family: RalewayLight;
    font-size: 1.3vw;
    font-weight: 300 !important;
    background: #E6E6E6;
    color: #808080;
    text-shadow: none;
	outline-color: #808080;
}

#bgtMsgExists {
	color: FireBrick;
    text-shadow: none;
    font-family: RalewayLight;
    font-size: 0.8vw;
    font-weight: 300;
}






.bold {
	font-weight: bold;
}

.logocreditos {
	width: 207px;
	height: auto;
}

.pseudolink {
	color: #00A8C8 !important;
	text-shadow: none;
	text-decoration: underline !important;
}

.pseudolink:hover {
	cursor: pointer;
	color: #A6E2EF;
}

.pointer {
	cursor: pointer;
}

.floatleft {
	float: left;
	width: inherit;
}


/*@media only screen and (min-width: 500px) {
	.logomercer {
		width: 135px;
		height: auto;
	}*/
	
	.ocultarphone {
		visibility: visible;
	}

	.ocultartablet {
		visibility: hidden;
	}
}

/*@media only screen and (min-width: 768px) {
	.logomercer {
		width: 180px;
		height: auto;
	}*/

.oculto {
	display: none !important;
}

.notextselect input {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.notextselect li{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*---------------------------------------------------------
Breadcrumbs
---------------------------------------------------------*/
.breadcrumb {
    position: absolute;
    top: 12.5vh;
    display: inline-block;
    padding: 0 0.75vw;
	margin-left: 1vw;
    border: 1px solid #d6d4d4;
	font-family: RalewayLight, 'Open Sans', arial;
    font-size: 0.9vw;
    font-weight: bold;
	text-shadow: none;
    line-height: 2.5vh;
    min-height: 1vh;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
	z-index: 1;
}

.breadcrumb a.home {
    display: inline-block;
	top: 0;
    font-size: 1.5vw;
    color: rgba(0, 109, 158, 1);
    width: 2.5vw;
	height: 3vh;
    text-align: center;
    padding: 0;
	padding-top: 0.3vh;
    margin: 0 0 0 -0.5vw;
    -moz-border-radius-topleft: 3px;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    line-height: 2.5vh;
}

.breadcrumb a.home:before {
	border: none;
}
.breadcrumb a.home:after {
	top: 0.4vh;
}
.breadcrumb a {
    position: relative;
	top: -0.3vh;
    display: inline-block;
    padding: 0 0.5vw 0 0.5vw;
    margin-left: 1vw;
    z-index: 1000;
	text-decoration: none;
}

.breadcrumb a:hover {
	cursor: pointer;
	color: rgba(0, 44, 119, 1);
}

.breadcrumb a:after {
    display: inline-block;
    content: ".";
    position: absolute;
    right: -10px;
	top: -0.1vh;
    width: 1.4vw;
    height: 1.4vw;
    border-right: 1px solid #d6d4d4;
    border-top: 1px solid #d6d4d4;
    border-radius: 2px;
    text-indent: -5000px;
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.breadcrumb span {
	position: relative;
	top: -0.3vh;
	margin-left: 1.3vw;
	color: #333333;
	z-index: 1000;
}

.footerfixed {
	position: fixed;
    bottom: 0;
}

.videopop {
    display: block;
    margin: 0 auto;
    width: 100vw;
}

.btnone {
    border-top: none !important;
}

.bbnone {
    border-bottom: none !important;
}

.blnone {
    border-left: none !important;
}

.brnone {
    border-right: none !important;
}

div.hasDatepicker {
	display: block;
	padding: 0;
	overflow: visible;
	margin: 8px 0;
	max-width:340px
}
.ui-datepicker {
	overflow: visible; margin: 0; display: none;
    z-index: 1000000 !important;
}
.ui-datepicker .ui-datepicker-header {
	position:relative;
	padding:.6em 0;
	border-bottom: 0;
	font-weight: bold;
}
    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        padding: 1px 0 1px 2px;
        position: absolute;
        top: .2em;
        margin-top: 0;
        text-indent: -9999px;
        vertical-align: middle;
        margin-right: .625em;
        width: 1.75em;
        height: 1.75em;
        white-space: nowrap !important;
        /*Dynamic*/
        border: 1px solid rgba(128, 128, 128, 0.5);
        /*-webkit-border-radius: 1em;
        border-radius: 1em;*/
    }
.ui-datepicker .ui-datepicker-prev:after,
.ui-datepicker .ui-datepicker-next:after {
	left: 50%;
	margin-left: -11px;
	top: 50%;
	margin-top: -11px;
	content: "";
	position: absolute;
	display: block;
	width: 22px;
	height: 22px;
	background-color: rgba(0,0,0,.3) /*{global-icon-disc}*/;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}
.ui-datepicker .ui-datepicker-next:after{
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C7%207%2C0%207%2C5%200%2C5%200%2C9%207%2C9%207%2C14%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-datepicker .ui-datepicker-prev:after{
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%227%2C5%207%2C0%200%2C7%207%2C14%207%2C9%2014%2C9%2014%2C5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-datepicker .ui-datepicker-prev {
	left:9px;
}
.ui-datepicker .ui-datepicker-next {
	right:2px;
}
    .ui-datepicker .ui-datepicker-title {
        margin: 0 2.3em;
        line-height: 1.8em;
        text-align: center;
        /*Dynamic*/
        color: rgba(128, 128, 128, 0.8);
    }
        .ui-datepicker .ui-datepicker-title select {
            margin: 1px 0;
            /*Dynamic*/
            /*font-size: 1em;*/
            color: rgba(128, 128, 128, 0.8);
            font-size: 0.9em;
        }
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	width: 100%;
	border-collapse: collapse;
	margin:0;
}
.ui-datepicker td {
	border-width: 1px;
	padding: 0;
	border-style: solid;
	text-align: center;
	min-width: 41px;
}
.ui-datepicker td span,
.ui-datepicker a {
	display: block;
	text-align: center;
	text-decoration: none;
	/* from .ui-btn class */
	font-size: 16px;
	position: relative;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none !important;
	font-weight: bold;
	border-width: 1px;
	border-style: solid;
}
.ui-datepicker td a {
	padding: .2em 0;
	font-weight: bold;
	margin: 0;
	border-width: 0;
}
.ui-datepicker-calendar th {
	padding-top: .4em;
	padding-bottom: .4em;
	border-width: 1px;
	border-style: solid;
}
.ui-datepicker-calendar th span,
.ui-datepicker-calendar span.ui-state-default {
	opacity: .7;
}
.ui-datepicker-calendar td a,
.ui-datepicker-calendar td span {
    padding: .6em .5em;
    border: 1px solid rgba(197, 197, 197, 0.2) !important;
}
.ui-datepicker .ui-state-disabled {
    opacity: 1;
    /*Dynamic*/
    background-color: rgba(133, 217, 234, 0.2);
}
.ui-datepicker.ui-corner-all,
.ui-datepicker .ui-datepicker-header.ui-corner-all {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    /*Dynamic*/
    border: none;
    padding-top: 0.5vh;
    color: rgba(128, 128, 128, 0.8);
    font-family: 'Open Sans', arial;
    font-weight: normal;
    text-shadow: none;
}

/*!
* jQuery Mobile Datepicker Wrapper 1.4.2
http://uglymongrel.com.com
*
* Copyright Alexander Schmitz and other contributors
* Released under the MIT license.
* http://uglymongrel.com.org/license
*
*/

/* Globals */
.ui-datepicker,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
	/* ui-shadow */
	-webkit-box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/;
	-moz-box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/;
	box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/;
}
/* Swatches */
/* A
-----------------------------------------------------------------------------------------------------------*/
html .ui-overlay-a .ui-datepicker td span,
html .ui-overlay-a .ui-datepicker a,
html .ui-body-a .ui-datepicker td span,
html .ui-body-a .ui-datepicker a,
.ui-page-theme-a .ui-datepicker td span,
.ui-page-theme-a .ui-datepicker a {
	/* ui-btn-a */
	background-color: #f6f6f6 /*{a-bup-background-color}*/;
	border-color: #ddd /*{a-bup-border}*/;
	color: #333 /*{a-bup-color}*/;
	text-shadow: 0 /*{a-bup-shadow-x}*/ 1px /*{a-bup-shadow-y}*/ 0 /*{a-bup-shadow-radius}*/ #f3f3f3 /*{a-bup-shadow-color}*/;
}
html body .ui-datepicker .ui-state-highlight {
	/* ui-btn-down */
	background-color: #e8e8e8 /*{a-bdown-background-color}*/;
	border-color: #ddd /*{a-bdown-border}*/;
	color: #333 /*{a-bdown-color}*/;
	text-shadow: 0 /*{a-bdown-shadow-x}*/ 1px /*{a-bdown-shadow-y}*/ 0 /*{a-bdown-shadow-radius}*/ #f3f3f3 /*{a-bdown-shadow-color}*/;
}
html body .ui-datepicker .ui-state-active {
	/* ui-btn-active */
	background-color: #3388cc /*{a-active-background-color}*/;
	border-color: #3388cc /*{a-active-border}*/;
	color: #fff /*{a-active-color}*/;
	text-shadow: 0 /*{a-active-shadow-x}*/ 1px /*{a-active-shadow-y}*/ 0 /*{a-active-shadow-radius}*/ #005599 /*{a-active-shadow-color}*/;
}
.ui-datepicker td,
.ui-datepicker .ui-datepicker-header {
	/* ui-body-a */
	border-color: #ddd /*{a-body-border}*/;
	background-color: #fff /*{a-body-background-color}*/;
	color: #333 /*{a-body-color}*/;
	text-shadow: 0 /*{a-body-shadow-x}*/ 1px /*{a-body-shadow-y}*/ 0 /*{a-body-shadow-radius}*/ #f3f3f3 /*{a-body-shadow-color}*/;
}

.ui-datepicker th {
	/* ui-bar-a */
	background-color: #e9e9e9 /*{a-bar-background-color}*/;
	border-color: #ddd /*{a-bar-border}*/;
	color: #333 /*{a-bar-color}*/;
	text-shadow: 0 /*{a-bar-shadow-x}*/ 1px /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #eee /*{a-bar-shadow-color}*/;
	font-weight: bold;
}

.btn-dynamic {
    display: inline-block;
    padding: 0.5vh 1.5vh;
    margin-right: 1vh;
    margin-bottom: 0;
    font-size: 1.0vw;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
	transition: transform 1s;
}

.btn-dynamic:hover {
    transform: scale(1.1);
}

.btn-sucess-dynamic {
    background-image: linear-gradient(to bottom, #006d9e, #a6e2ef);
    background-repeat: repeat-x;
    color: white;
    text-shadow: none;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1vh;
}

.tooltip-span {
    font-size: 1.6vh !important;
    font-family: 'Open Sans', arial !important;
    color: rgb(132, 132, 132) !important;
}

.ico-nav {
	transition: all 0.5s;
}

.ico-nav:hover {
	cursor: pointer;
	transform: scale(1.1);
	color: rgba(0,44,119,1) !important;
}

.pagination {
    /*height: 36px;
    margin: 18px 0;*/
}
.pagination ul {
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    margin: 0;
	padding: 0 0.2vw;
	float: left;
}
.pagination li {
    display: inline;
	margin-right: 0.5vw;
}
.pagination a {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: rgba(128,128,128,0.5);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
	border-radius: 3px;
    float: left;
    padding: 0 0.5vw;
    text-decoration: none;
	color: rgba(0, 44, 119, 0.7);
}
.pagination a:hover {
	cursor: pointer;
    background-color: rgba(0, 44, 119, 0.7);
	color: white;
}
.pagination-active {
    background-color: rgba(0, 44, 119, 0.7);
	color: white !important;
    cursor: default;
}

/*.pagination li:first-child a {
    border-left-width: 1px;
    border-radius: 3px 0 0 3px;
}
.pagination li:last-child a {
    border-radius: 0 3px 3px 0;
}*/

.pagination-ico {
	margin-top: 0.5vh;
	transition: all 0.5s;
}

.pagination-ico:hover {
	cursor: pointer;
	color: rgba(0, 44, 119, 1);
	transform:scale(1.1);
}

.chat-li {
    margin-bottom: 1vh;
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    border-bottom-color: rgba(128, 128, 128, 0.7);
    padding-bottom: 1.5vh;
}

.chat-fade {
	position: relative;
    height: 2.5em;
}

.chat-fade:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: -1.8vh;
    right: 0;
    width: 60%;
    height: 1.8em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 80%);
}

.contentchatopen {
    margin-top: 0vh !important;
    transform: rotate(180deg);
}

.chat-content {
	font-size: 2.3vh; 
	text-align: justify;
}
    .chat-content.contentopen {
        color: rgba(0, 44, 119, 0.7);
    }
    .bolachat-mmb {
        margin-top: 0vh;
        margin-bottom: 0.2vh;
        height: 3.7vh;
        width: 4.7vh;
        border-radius: 50%;
        background-color: rgba(0, 44, 119, 0.7);
        padding-top: 1.3vh;
        padding-left: 0.3vh;
        color: white;
        text-shadow: none !important;
        float: right;
    }

.bolachat-me {
    margin-top: 0vh;
	margin-bottom: 0.2vh;
    height: 3.7vh;
    width: 3.7vh;
    border-radius: 50%;
    background-color: rgba(244, 129, 50, 0.7);
    padding-top: 1.3vh;
    padding-left: 1.3vh;
    color: white;
    text-shadow: none !important;
}

/*Animación texto neon*/
/*.area {
  animation: blur .75s ease-out infinite;
  text-shadow: 0px 0px 5px #fff, 0px 0px 7px #fff;
}

@keyframes blur {
  from {
    text-shadow:0px 0px 10px #fff,
      0px 0px 10px #fff, 
      0px 0px 25px #fff,
      0px 0px 25px #fff,
      0px 0px 25px #fff,
      0px 0px 25px #fff,
      0px 0px 25px #fff,
      0px 0px 25px #fff,
      0px 0px 50px #fff,
      0px 0px 50px #fff,
      0px 0px 50px #7B96B8,
      0px 0px 150px #7B96B8,
      0px 10px 100px #7B96B8,
      0px 10px 100px #7B96B8,
      0px 10px 100px #7B96B8,
      0px 10px 100px #7B96B8,
      0px -10px 100px #7B96B8,
      0px -10px 100px #7B96B8;
  }
}*/

/*Animación texto serpiente*/
.snake span {
  position: relative;
  top: 20px;
  display: inline-block;
  animation: bounce 1.6s ease infinite alternate;
  /*font-family: 'Titan One', cursive;
  font-size: 80px;
  color: #FFF;*/
  text-shadow: 0 1px 0 #CCC,
               0 2px 0 #CCC,
               0 3px 0 #CCC,
               0 4px 0 #CCC,
               0 5px 0 #CCC,
               0 6px 0 transparent,
               0 7px 0 transparent,
               0 8px 0 transparent,
               0 9px 0 transparent,
               0 10px 10px rgba(0, 0, 0, .4);
}

.snake span:nth-child(2) { animation-delay: .2s; }
.snake span:nth-child(3) { animation-delay: .4s; }
.snake span:nth-child(4) { animation-delay: .6s; }
.snake span:nth-child(5) { animation-delay: .8s; }
.snake span:nth-child(6) { animation-delay: 1.0s; }
.snake span:nth-child(7) { animation-delay: 1.2s; }
.snake span:nth-child(8) { animation-delay: 1.4s; }
.snake span:nth-child(9) { animation-delay: 1.6s; }

@keyframes bounce {
  100% {
    top: -10px;
    text-shadow: 0 1px 0 #CCC,
                 0 2px 0 #CCC,
                 0 3px 0 #CCC,
                 0 4px 0 #CCC,
                 0 5px 0 #CCC,
                 0 6px 0 #CCC,
                 0 7px 0 #CCC,
                 0 8px 0 #CCC,
                 0 9px 0 #CCC,
                 0 50px 25px rgba(0, 0, 0, .2);
  }
}
.iconhead-disabled {
	opacity: 0.5;
    pointer-events: none;
}

.dfchange {
    color: rgba(255, 165, 0, 1) !important;
}

/*Popups con listas*/
.dspopup {
    padding: 0vh 1vw;
    margin-bottom: 1vh;
    color: rgba(0, 44, 119, 0.7);
    font-size: 1.0vw;
    font-weight: normal;
}

    .dspopup .icon {
        font-size: 2.4vw;
        color: rgba(0, 44, 119, 0.7);
    }

    .dspopup .title {
        font-size: 1.5vw;
        color: rgba(0, 44, 119, 0.7);
    }

    .dspopup .subtitle {
        font-size: 1.2vw;
        margin-top: 2vh;
    }
    .dspopup .popuptitle {
        text-align: center;
        margin-top: 3vh;
        font-size: 1.5vw;
        font-weight: bold;
        letter-spacing: 0.5vw;
    }
    .dspopup .nothing .icon {
        font-size: 11vw;
        font-weight: normal;
        color: rgba(0,109,158,0.5);
        margin-top: 6vh;
        margin-left: 10vw;
    }
    .dspopup .nothing .legend {
        font-size: 1.5vw;
        color: rgba(0,109,158,0.5);
        margin-top: 2vh;
        font-weight: normal;
        text-align: center;
    }
    .dspopup .popupheader {
        background-color: rgba(0,109,158,0.7);
        color: rgba(255,255,255,1);
        padding: 1vh 1vw 0.8vh 1vw;
        font-size: 1.0vw;
        text-align: center;
    }
    .dspopup .dftextarea textarea {
        height: 14vh;
        width: 98%;
        padding: 0.5vh 1%;
        resize: none;
        overflow: hidden;
        outline: none;
        border: 1px solid rgba(0, 44, 119, 0.3);
        border-radius: 5px;
        background-color: rgba(0,109,158,0.05);
        font-family: "Open Sans";
        font-size: 1.0vw;
        color: rgba(128, 128, 128, 0.8);
    }
    .dspopup .df input {
        width: 98%;
        border: none;
        border-bottom: 1px solid rgba(0, 44, 119, 0.2);
        padding: 0.5vh 1%;
        font-size: 1.0vw;
        color: rgba(128, 128, 128, 0.8);
        outline: none;
        background-color: transparent;
    }

    .dspopup .df .legend {
        font-size: 0.8vw;
        color: rgba(0, 44, 119, 0.6);
        padding-left: 0.5vh;
    }
    .dspopup .cmb {
        margin-bottom: 1vh;
    }

        .dspopup .cmb .legend {
            font-size: 0.7vw;
            color: rgba(0, 44, 119, 0.6);
            padding-left: 0.5vh;
        }

        .dspopup .cmb select {
            width: 100%;
            padding: 0.5vh 1%;
            border: none;
            border-bottom: 1px solid rgba(0, 44, 119, 0.2);
            outline: none;
            font-size: 1.0vw;
            color: rgba(128, 128, 128, 0.8);
            background-color: transparent;
        }

            .dspopup .cmb select + span {
                font-size: 1vw;
                color: rgba(128, 128, 128, 0.8);
                border: none;
                border-bottom: 1px solid rgba(0, 44, 119, 0.2);
                background: none;
                outline: none;
                width: 100%;
                padding: 0.5vh 0;
                margin-top: 0;
            }
    .dspopup .cmbmultiple {
        display: none;
        position: fixed;
        height: 15vh;
        background-color: white;
        width: 16vw;
        /*top: 16.0vh;
        left: 56.2vw*/
        border: 1px solid rgb(128 128 128 / 30%);
        border-radius: 5px;
        padding: 0;
        font-size: 1vMax;
        z-index: 1;
    }
        .dspopup .cmbmultiple ul {
            list-style: none;
            margin: 0;
            padding: 1vh 0.5vw 1vh 0.5vw;
        }
            .dspopup .cmbmultiple ul li:hover {
                cursor: pointer;
                font-weight: bold;
            }
                .dspopup .cmbmultiple ul li i {
                    margin-right: 0.5vMax;
                }
        .dspopup ul.categoria {
            list-style: none;
            margin: 0;
        }
        .dspopup ul.categoria li {
            border-top: 1px solid #3388cc;
            border-bottom: 1px solid #3388cc;
            padding: 1vh 1vw;
            font-size: 1.3vw;
            background-color: rgba(166,226,239,0.3);
            color: #002C77;
        }
    .dspopup ul .formulario {
        list-style: none;
        margin: 0;
        padding: 0;
    }
        .dspopup ul .formulario li {
            border-top: 1px solid #3388cc;
            border-bottom: 1px solid #3388cc;
            padding: 1vh 1vw 1vh 1.5vw;
            font-size: 1.1vw;
            background-color: rgba(238, 238, 238, 0.5);
            color: rgba(47, 62, 70, 0.7);
        }
            .dspopup ul .formulario li:hover {
                cursor: pointer;
                background-color: rgba(238, 238, 238, 1);
                color: rgba(47, 62, 70, 1);
            }
        .dspopup ul .formulario .tipoarchivo {
            height: 2.5vh;
            vertical-align: sub;
            color: rgba(47, 62, 70, 0.7);
        }
    .dspopup ul.recibos {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .dspopup ul.recibos li {
            border-top: 1px solid #3388cc;
            padding: 1vh 1vw;
            font-size: 0.8vw;
            color: #002C77;
        }
            .dspopup ul.recibos li:nth-child(odd) {
                background-color: rgba(166,226,239,0.3);
            }
            .dspopup ul.recibos li:nth-child(even) {
                background-color: white;
            }
            .dspopup .btn {
                display: block;
                padding: 1vh 1vw;
                letter-spacing: 1.5px;
                font-size: 1.2vw;
                text-align: center;
                color: #fff;
                background-color: rgba(0,109,158,0.5);
                border: 1px solid rgba(0,109,158,0.5);
                border-radius: 5px;
                transition: all 0.5s;
            }

        .dspopup .btn:hover {
            cursor: pointer;
            background-color: rgba(0,109,158,1);
            border: 1px solid rgba(0,109,158,1);
        }
    .dspopup .chartsiniestralidad {
        margin-top: 4vh;
        margin-bottom: 3vh;
        padding: 2vh;
        border: 1px solid #dedede;
        border-radius: 25px;
        -moz-box-shadow: 2px 2px 10px #555;
        -webkit-box-shadow: 2px 2px 10px #555;
        box-shadow: 2px 2px 10px #555;
        color: gray;
        font-size: 1.3vw;
        text-align: center;
        letter-spacing: 1.2vw;
    }
        .dspopup #chartSiniestralidad{
            margin-top: 3vh;
            width: 56vw;
            height: 22vh;
            letter-spacing: normal;
        }
    .dspopup #chartIPCS {
        margin-top: 3vh;
        width: 56vw;
        height: 22vh;
        letter-spacing: normal;
    }
    .dspopup ul.dependientes {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .dspopup ul.dependientes li {
            padding: 1vh 1vw;
            font-size: 1.1vw;
            background-color: rgba(166,226,239,0.3);
            color: #002C77;
        }
                .dspopup .tabcontent ul.dependientes li .df input {
                    font-size: 0.9vw;
                }
    .dstabs ul,
    .dstabssub ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .dstabs ul li,
    .dstabssub ul li {
        float: left;
        display: block;
        padding: 0.5vh 0.5vw;
        text-decoration: none;
        color: rgba(0,109,158,1);
        font-size: 0.9vw;
        font-weight: normal;
    }
        .dstabs ul li:hover,
        .dstabssub ul li:hover {
            cursor: pointer;
            color: white;
            background-color: rgba(0,109,158,0.5);
        }

.dstabs .select,
.dstabssub .selectsub {
    color: white;
    background-color: rgba(0,109,158,0.5);
}
.dspopup .tabcontent {
    /*width: 60vw;*/
    height: 45vh;
    padding: 2vh 2vw;
    border: 1px solid rgba(0,109,158,0.5);
}
    .dspopup .tabcontent .cmb {
        margin-bottom: 1vh;
    }

        .dspopup .tabcontent .cmb .legend {
            font-size: 0.7vw;
            color: rgba(0, 44, 119, 0.6);
            padding-left: 0.5vh;
        }

        .dspopup .tabcontent .cmb select {
            width: 100%;
            padding: 0.5vh 1%;
            border: none;
            border-bottom: 1px solid rgba(0, 44, 119, 0.2);
            outline: none;
            font-size: 1.0vw;
            color: rgba(128, 128, 128, 0.8);
            background-color: transparent;
        }

            .dspopup .tabcontent .cmb select + span {
                font-size: 1vw;
                color: rgba(128, 128, 128, 0.8);
                border: none;
                border-bottom: 1px solid rgba(0, 44, 119, 0.2);
                background: none;
                outline: none;
                width: 100%;
                padding: 0.5vh 0;
                margin-top: 0;
                margin-top: -0.5vh;
            }
    .dspopup .tabcontent .df {
        margin-bottom: 2vh;
    }
        .dspopup .tabcontent .df input {
            width: 98%;
            border: none;
            border-bottom: 1px solid rgba(0, 44, 119, 0.2);
            padding: 0.5vh 1%;
            font-size: 1.0vw;
            color: rgba(128, 128, 128, 0.8);
            outline: none;
            background-color: transparent;
        }
        .dspopup .tabcontent .df .legend {
            font-size: 0.7vw;
            color: rgba(0, 44, 119, 0.6);
            padding-left: 0.5vh;
        }
    .dspopup .tabcontent .title {
        text-align: center;
        font-size: 0.8vw;
        letter-spacing: 0.5vw;
        text-shadow: none;
        color: white;
        margin-top: 1vh;
        border: 1px solid rgba(0,109,158,0.5);
        background-color: rgba(0,109,158,0.5);
        padding: 0.5vh;
    }
    .dspopup .tabcontent .subtitle {
        text-align: center;
        font-size: 0.8vw;
        color: white;
        border-top: 1px solid white;
        background-color: rgba(0,109,158,0.5);
        padding: 0.5vh;
        margin: 0;
    }
    .dspopup .tabcontent .box {
        border: 1px solid rgba(0,109,158,0.5);
        /*padding: 1vh 0.5vw;*/
        padding: 1vh 0.5vw 1vh 0.5vw;
    }
        .dspopup .tabcontent .box .section {
            text-align: center;
            font-size: 0.8vw;
            font-weight: bold;
            margin-bottom: 0.5vh;
        }
        .dspopup .tabcontent .box .df {
            margin-bottom: 0.5vh;
        }
        .dspopup .tabcontent .box .df input {
            font-size: 0.8vw;
        }
        .dspopup .tabcontent .box .group {
            font-size: 0.8vw;
            font-weight: bold;
            color: rgba(0, 44, 119, 0.6);
            padding-left: 0.7vh;
            margin-top: 1vh;
        }
        .dspopup .tabcontent .box ul {
            list-style: none;
            margin: 0;
            margin-right: 1vw;
            line-height: 2.8vh;
            color: gray;
        }
        .dspopup .tabcontent .ltv {
            border: 1px solid rgba(0,109,158,0.7);
            height: 40vh;
            margin: 0;
            padding: 0;
            font-size: 0.9vw;
        }
        .dspopup .tabcontent .ltv li {
            padding-top: 0.3vh;
            padding-bottom: 0.3vh;
        }
    .dspopup .tabcontent .box .ball {
        border-radius: 50%;
        background: rgb(255 165 0 / 0.6);
        color: #fff;
        text-align: center;
        font-family: 'Open Sans';
        font-size: 0.8vw;
        font-weight: normal;
        margin-right: 0.1vw;
        padding: 0vh 0.5vw;
    }
.dspopup .dropbox {
    border-style: dashed;
    border-color: rgba(0, 44, 119, 0.5);
    height: 8vh;
    border-radius: 10px;
    margin-top: 1vh;
    margin-bottom: 1vh;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

    .dspopup .dropbox ul {
        list-style: none;
        min-height: 8vh;
        margin: 0;
        padding-left: 1vh;
        padding-right: 1vh;
    }
.dspopup .box .ligrupo {
    font-size: 1.2vw;
    padding: 1vh 0;
    margin-bottom: 0.5vh;
    color: rgba(0, 44, 119, 0.7);
    background-color: rgba(166,226,239,0.3);
}
.scrollup {
    position: fixed;
    bottom: 6vh;
    right: 3vw;
    height: 4vw;
    width: 4vw;
    border-radius: 50%;
    color: rgba(0,44,119,0.7);
    background: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0);
    box-shadow: 1px 1px 6px #555;
    padding: 0vw 0.3vw 0.3vw 0.3vw;
    font-size: 3vw;
    text-shadow: none;
    border-style: solid;
    border-width: 1px;
    text-align: center;
    z-index: 999;
    transition: color 1s, border-color 1s, background-color 1s;
}
    .scrollup:hover {
        cursor: pointer;
        background: rgba(0,44,119,0.7);
        color: rgba(255,255,255,0.7);
        border-color: rgba(0,44,119,0);
    }

.btn-print {
    text-decoration: none;
    display: block;
    padding: 0.5vh 0.5vw;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(7,130,193,0.2);
    border-radius: 7px;
    color: #0782C1;
    transition: all 0.5s;
}
    .btn-print:hover {
        color: #fff;
        background-color: #0782C1;
    }
.inn {
    opacity: 0.5;
}
.dserrors {
    /*height: 38vh;*/
    border: 1px solid #3388cc;
    margin: 1.5vh 4vw;
}
    .dserrors ul {
        height: 35vh;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .dserrors ul li.group {
            border-top: 1px solid #3388cc;
            padding: 1vh;
            font-size: 1vw;
            color: #002C77;
            background-color: aliceblue;
        }
        .dserrors ul li {
            border-top: 1px solid #3388cc;
            padding: 1vh 2vw;
            font-size: 0.8vw;
            color: #002C77;
        }