*, ::before, ::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-drag: none;
    margin: 0;
    padding: 0; 
    font-family: 'DIN', Arial, sans-serif !important;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html {
    /*height: auto;*/
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: 'DIN', Arial, sans-serif !important;
}
body {
    /*height: 100%;*/
    height: 100vh;
    width: 100%;
    margin: 0;
    font-family: 'DIN', Arial, sans-serif !important;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    color: #252525;
    background: #fff;
    min-height: 320px;
    min-width: 320px;
    position: relative;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-position: inside; 
}
a, button {
    -webkit-transition:all 0.3s ease-out;  /* Chrome y Safari */
    -o-transition:all 0.3s ease-out;  /* Opera */
    -moz-transition:all 0.3s ease-out;  /* Mozilla Firefox */
    -ms-transition:all 0.3s ease-out;   /* Internet Explorer */
    transition:all 0.3s ease-out;  /* W3C */
}
a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
    color: #fff;
}
.btn:hover, .btn:focus, .btn.focus {
    color: #FFF;
    text-decoration: none;
}
:focus {
    outline: none;
}

/*********************************************************
*********** FONTS ************
**********************************************************/
@font-face {
    font-family: 'DIN';
    src: url('fonts/DIN-Bold.eot');
    src: url('fonts/DIN-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/DIN-Bold.woff2') format('woff2'),
        url('fonts/DIN-Bold.woff') format('woff'),
        url('fonts/DIN-Bold.ttf') format('truetype'),
        url('fonts/DIN-Bold.svg#DIN-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('fonts/DIN-Regular.eot');
    src: url('fonts/DIN-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/DIN-Regular.woff2') format('woff2'),
        url('fonts/DIN-Regular.woff') format('woff'),
        url('fonts/DIN-Regular.ttf') format('truetype'),
        url('fonts/DIN-Regular.svg#DIN-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('fonts/DIN-Light.eot');
    src: url('fonts/DIN-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/DIN-Light.woff2') format('woff2'),
        url('fonts/DIN-Light.woff') format('woff'),
        url('fonts/DIN-Light.ttf') format('truetype'),
        url('fonts/DIN-Light.svg#DIN-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('fonts/DIN-Black.eot');
    src: url('fonts/DIN-Black.eot?#iefix') format('embedded-opentype'),
        url('fonts/DIN-Black.woff2') format('woff2'),
        url('fonts/DIN-Black.woff') format('woff'),
        url('fonts/DIN-Black.ttf') format('truetype'),
        url('fonts/DIN-Black.svg#DIN-Black') format('svg');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('fonts/DIN-Medium.eot');
    src: url('fonts/DIN-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/DIN-Medium.woff2') format('woff2'),
        url('fonts/DIN-Medium.woff') format('woff'),
        url('fonts/DIN-Medium.ttf') format('truetype'),
        url('fonts/DIN-Medium.svg#DIN-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}


/*********************************************************
*********** COMMON STYLES ************
**********************************************************/
.contenedor-principal {
    position: relative;
    display: block;
    overflow: hidden;
}

.contenedor-principal.navFixed {
    margin-top: 59px;
}

/*********************************************************
*********** Slider con Navegacion ************
**********************************************************/
/* navegacion */
.conNavegacion .owl-nav {
    width: calc(100% + 80px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); 
    pointer-events: none;
}
.conNavegacion .owl-nav > button {
    pointer-events: auto;
}
.conNavegacion .owl-nav > button:focus {
    outline: none;
}
.conNavegacion .owl-nav > button > span {
    font-size: 40px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    display: block;
    font-weight: bold;
    text-indent: -9999em;
}
.conNavegacion .owl-nav > button.disabled {
    opacity: 0.4;
    pointer-events: none;
}
.conNavegacion .owl-nav > .owl-prev span {
    background: url("../images/arrow-left.svg") no-repeat center center / auto 14px;
}
.conNavegacion .owl-nav > .owl-next span {
    background: url("../images/arrow-right.svg") no-repeat center center / auto 14px;
}
.conNavegacion .owl-nav > .owl-prev {
    float: left;
}
.conNavegacion .owl-nav > .owl-next {
    float: right;
}
/* dots */
.conNavegacion .owl-dots {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
}
.conNavegacion .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    margin: 0 4px;
    border-radius: 50%;
    background: #D9D9D9;
}
.conNavegacion .owl-dots .owl-dot.active {
    width: 18px;
    border-radius: 3.5px;
    background: #50ABFF;
}
.conNavegacion .owl-dots > button:focus {
    outline: none;
}

/*********************************************************
*********** componente marcas Slider ************
**********************************************************/
.componente-marcasSlider {
    width: 100%;
    clear: both;
}
.componente-marcasSlider .owl-item .item {
    height: 173px;
}
.componente-marcasSlider .owl-item .item .marcas-link {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}
.componente-marcasSlider .owl-item .item img {
    width: 100%;
    height: auto;
    bottom: initial;
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out;
    transition:all 0.3s ease-out;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
}
.componente-marcasSlider .owl-item .item .marcas-link:hover img,
.componente-marcasSlider .owl-item .item.superactive .marcas-link img {
    bottom: 0;
    top: initial;
    transform: translateY(0) translateY(-50%);
    -webkit-transform: translateY(0) translateY(-50%);
    -o-transform: translateY(0) translateY(-50%);
    -moz-transform: translateY(0) translateY(-50%);
    -ms-transform: translateY(0) translateY(-50%);
}


/* RESPONSIVE */
@media screen and (max-width: 991px) {
    .componente-marcasSlider .owl-item .item {
        height: 227px;
    }
}
@media screen and (max-width: 767px) {
    .componente-marcasSlider .owl-item .item {
        height: calc(100vw * 140 / 320);
    }
}


/*********************************************************
*********** componente Mapa ************
**********************************************************/
.componente-mapa {
    height: calc(100% - 51px);    
}
.componente-mapa #map{
    height: 100%;
    position: relative;
}

/* RESPONSIVE */
@media screen and (max-width: 991px) {
}

/*********************************************************
*********** Modal General ************
**********************************************************/
/* Modal BK */
.modalBk {
    background: rgba(8, 56, 99, 0.8);
}
/* Modal Centrado */
.modal {
    text-align: center;
    padding: 0!important;
    z-index: 999999;
}
.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}
.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}


/*********************************************************
*********** componente Modal Descargas ************
**********************************************************/
.componente-modalHistory .modal-dialog {
    width: 860px;
}
.componente-modalHistory .closeModal {
    border: none;
    background: transparent;
    color: #FFF;
    font-size: 60px;
    font-weight: 100;
    float: right;
}
.componente-modalHistory .modal-content {
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: none;
    clear: both;
    overflow: hidden;
}
.componente-modalHistory .modal-content .image-content {
    overflow: hidden;
    width: calc(100% - 240px);
    height: 500px;
    float: right;
    position: relative;
}

.componente-modalHistory .modal-content .image-content .imageHolder {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
}
.componente-modalHistory .modal-content .image-content .imageHolder:before {
    content: '';
    display: block;
    width: 34px;
    height: 45px;
    background: url(../images/play-video.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.componente-modalHistory .modal-content .image-content iframe {
    width: 100%;
    height: 100%;
}

.componente-modalHistory .modal-content .image-content > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.componente-modalHistory .modal-content .menu-content {
    background: #FFF;
    width: 240px;
    height: 500px;
    float: left;
    padding: 40px 36px 20px;
    position: relative;
    text-align: center;
}


.componente-modalHistory .modal-content .provincia {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #AAAAAA;
    text-align: left;
    margin-left: 15px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.componente-modalHistory .modal-content .provincia:before{
    content: '';
    display: block;
    width: 11px;
    height: 14px;
    background: url(../images/provincia.svg) no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: -15px;
}
.componente-modalHistory .modal-content .menu-content .thumbnail{
    width: 147px;
    height: 125px;
    margin: 0 auto;
}
.componente-modalHistory .modal-content .menu-content .thumbnail img{
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.componente-modalHistory .modal-content .menu-content h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #252525;
    margin: 12px 0 0;
}
.componente-modalHistory .modal-content .menu-content h4 {
    font-weight: bold;
    font-size: 10px;
    line-height: 14px;
    color: #005CB9;
    margin: 12px 0;
}
.componente-modalHistory .modal-content .menu-content p {
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    color: #005CB9;
}


.componente-modalHistory .modal-content .menu-content .hashtag{
    display: inline-block;
    background: #00ADEE;
    height: 22px;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #FFF;
    padding: 5px 19px;
    margin-top: 5px;
}

.componente-modalHistory .modal-content .menu-content .text-content .hashtag{
    display: none;
}

.componente-modalHistory .modal-content .menu-content .social-box .hashtag{
    display: inline-block;
}


.componente-modalHistory .modal-content .menu-content .social-box{
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}
.componente-modalHistory .modal-content .menu-content .share:before{
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(151,151,151, .3);
    margin: 14px 0;
    display: block;
}
.componente-modalHistory .modal-content .menu-content .share ul{
    clear: both;
    overflow: hidden;
    width: 100px;
    margin: 0 auto;
}
.componente-modalHistory .modal-content .menu-content .share ul li{
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
.componente-modalHistory .modal-content .menu-content .share ul li:last-child{
    margin-right: 0;
}
.componente-modalHistory .modal-content .menu-content .share ul a{
    display: block;
    width: 100%;
    height: 100%;
}
.componente-modalHistory .modal-content .menu-content .share ul svg{
    width: 100%;
    height: 100%;
}
.componente-modalHistory .modal-content .menu-content .share ul svg path{
    transition: all 300ms ease-in-out;
}

.componente-modalHistory .modal-content .menu-content .share ul li:hover svg path:first-child{
    fill:#00ADEE;
}





.componente-modalHistory .modal-content .menu-content .tag-content {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.3);
}
.componente-modalHistory .modal-content .menu-content .tag-content .tag {
    width: auto;
    display: table;
    height: 18px;
    line-height: 18px;
    color: #FFF;
    font-size: 10px;
    font-weight: 500;
    padding: 0 18px;
    margin-bottom: 5px;
}
.componente-modalHistory .modal-content .menu-content .tag-content .tagMarca {
    text-transform: uppercase;
}
.componente-modalHistory .modal-content .menu-content .tag-content .tagMarca.marcaGrey {
    background: #1E1E1E;
}
.componente-modalHistory .modal-content .menu-content .tag-content .tagMarca.marcaBlue {
    background: #0063BE;
}
.componente-modalHistory .modal-content .menu-content .tag-content .tagCategoria {
    background: #50ABFF;
}
.componente-modalHistory .modal-content .menu-content .peso {
    margin-top: 30px;
}
.componente-modalHistory .modal-content .menu-content .peso p {
    font-weight: 500;
    font-size: 10px;
    color: #525252;
}
.componente-modalHistory .modal-content .menu-content .peso h5 {
    font-weight: 500;
    font-size: 14px;
    color: #0063BE;
    margin-top: 10px;
}
.componente-modalHistory .modal-content .menu-content .btn-content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    width: calc(100% - 40px);
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn {
    width: 100%;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn button {
    width: 100%;
    height: 50px;
    line-height: 23px;
    margin-top: 10px;
    padding: 10px 10px 5px 10px;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn.btnDescarga button {
    background: #0063BE;
    border: 1px solid #0063BE;
    color: #FFF;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn.btnDescarga:hover button {
    background: #FFF;
    border: 1px solid #0063BE;
    color: #0063BE;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn.btnZip button {
    background: transparent;
    border: 1px solid #50ABFF;
    color: #50ABFF;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn.btnZip button:hover {
    background: #50ABFF;
    border: 1px solid #50ABFF;
    color: #FFF;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn.btnZip button .icon-btn path {
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out; 
    transition:all 0.3s ease-out;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn.btnDescarga button:hover .icon-btn path {
    stroke: #0063BE;
}
.componente-modalHistory .modal-content .menu-content .btn-content .btn.btnZip button:hover .icon-btn path {
    stroke: #FFF;
}
.componente-modalHistory .modal-content .menu-content .btn-content .icon-btn {
    float: left;
}


/* RESPONSIVE */
@media screen and (max-width: 991px) {
    .componente-modalHistory .modal-dialog {
        width: 340px;
    }
    .componente-modalHistory .modal-content .image-content {
        width: 100%;
        height: 270px;
        float: none;
    }
    .componente-modalHistory .modal-content .menu-content {
        width: 100%;
        height: auto;
        padding: 20px 20px 107px;
        position: unset;
        float: none;
    }
    .componente-modalHistory .modal-content .menu-content:after {
        content:'';
        clear: both;
        display: block;    
    
    }
    .componente-modalHistory .modal-content{
        overflow: visible;
    }
    .componente-modalHistory .modal-content .provincia {
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        color: #FFF;
        text-align: left;
        margin-left: 15px;
        margin-bottom: 10px;
        display: inline-block;
        position: absolute;
        top: -25px;
        left: 0;
    }
    .componente-modalHistory .modal-content .provincia:before {
        background: url(../images/provincia-white.svg) no-repeat center center / contain;
    }
    .componente-modalHistory .modal-content .menu-content .tag-content {
        margin-top: 10px;
        padding-bottom: 15px;
    }
    .componente-modalHistory .modal-content .menu-content .peso {
        margin-top: 20px;
    }
    .componente-modalHistory .modal-content .menu-content .tag-content .tag {
        display: inline-block;
        margin-right: 5px;
    }
}
@media screen and (max-width: 375px) {
    .componente-modalHistory .modal-dialog {
        width: 300px;
    } 
}


/*********************************************************
*********** componente Descargas Preview ************
**********************************************************/
.componente-descargasPreview {
    width: 100%;
    clear: both;
    margin-top: 60px;
}
.componente-descargasPreview .title {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 25px;
}
.componente-descargasPreview .descargasPreview {
    width: 100%;
}
.componente-descargasPreview .descargasPreview .descarga {
    width: 100%;
    height: 45px;
    background: #FFF;
    line-height: 45px;
    margin-bottom: 10px;
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out; 
    transition:all 0.3s ease-out;
}
.componente-descargasPreview .descargasPreview .descarga:hover {
    background-color: #efefef;
}
.componente-descargasPreview .descargasPreview .descarga > a {
    width: 100%;
    height: 100%;
    display: block;
}
.componente-descargasPreview .descargasPreview .descarga .formato {
    width: 45px;
    height: 100%;
    display: block;
    float: left;
    text-align: center;
    background: rgba(80, 171, 255, 0.2);
    font-weight: bold;
    font-size: 10px;
    color: #50ABFF;
}
.componente-descargasPreview .descargasPreview .descarga .name {
    float: left;
    width: calc(100% - 200px);
    height: 100%;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    color: #525252;
    padding: 0 10px 0 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.componente-descargasPreview .descargasPreview .descarga .fecha {
    float: left;
    width: 110px;
    height: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #50ABFF;
}
.componente-descargasPreview .descargasPreview .descarga .arrow {
    width: 45px;
    height: 100%;
    display: block;
    float: right;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
}
.componente-descargasPreview .descargasPreview .descarga .arrow path {
    stroke: #0063BE;
}


/* RESPONSIVE */
@media screen and (max-width: 580px) {
    .componente-descargasPreview .descargasPreview .descarga .name {
        width: calc(100% - 90px);
    }
    .componente-descargasPreview .descargasPreview .descarga .fecha {
        display: none;
    }
}
@media screen and (max-width: 375px) {
    .componente-descargasPreview .descargasPreview .descarga .name {
        font-size: 12px;
    }
}



/*********************************************************
*********** componente Filtros Header ************
**********************************************************/
.componente-filtrosHeader {
    width: 100%;
    clear: both;
    margin-top: 20px;
    margin-bottom: 50px;
}
.componente-filtrosHeader .title {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #525252;
}
.componente-filtrosHeader.componente-marcasHeader .title {
    margin-bottom: 20px;
    margin-top: 60px;
}
/* Search */
.componente-filtrosHeader .search-campo {
    width: 100%;
    margin-bottom: 15px;
}
.componente-filtrosHeader .search-campo input {
    width: calc(100% - 190px);
    height: 55px;
    padding: 20px;
    color: #939393;
    background: transparent;
    border: 1px solid #BFBFBF;
}
.componente-filtrosHeader .search-campo .search-btn {
    float: right;
}
.componente-filtrosHeader .search-campo .search-btn button {
    width: 175px;
    height: 55px;
    line-height: 26px;
    border: none;
    background: #0063BE;
    color: #FFF;
    padding: 15px 20px;
}
.componente-filtrosHeader .search-campo .search-btn button:hover {
    background: #50ABFF;
}
.componente-filtrosHeader .search-campo .search-btn button .icon {
    float: left;
}
/* Marca */
.componente-filtrosHeader .select-campo {
    margin-right: -15px;
}
.componente-filtrosHeader .select-categoria,
.componente-filtrosHeader .select-subcategoria {
    opacity: 0;
    display: none;
}
.componente-filtrosHeader.componente-marcasHeader .select-categoria {
    opacity: 1;
    display: block;
}
.componente-filtrosHeader .select-campo select {
    width: 100%;
    height: 55px;
    line-height: 2;
    padding: 0 20px;
    color: #939393;
    background: transparent;
    border: 1px solid #50ABFF;
    -webkit-appearance: none;
       -moz-appearance: none;
        -ms-appearance: none;
         -o-appearance: none;
            appearance: none;
            text-overflow: '';
    background: url(../images/arrow-down-blue.svg) no-repeat right 15px center / auto 14px;
}
.componente-filtrosHeader .select-campo select::-ms-expand {
    display: none;
}
/* Fecha */
.componente-filtrosHeader .fecha-campo {
    text-align: right;
}
.componente-filtrosHeader .fecha-campo .txt {
    font-size: 18px;
    line-height: 55px;
    font-weight: 500;
    color: #8C8C8C;
    display: inline-block;
    padding-right: 20px;
}
.componente-filtrosHeader .fecha-campo select {
    width: 100%;
    height: 55px;
    line-height: 2;
    padding: 0 20px;
    color: #0063BE;
    float: right;
    display: inline-block;
    background: transparent;
    border: 1px solid #50ABFF;
    -webkit-appearance: none;
       -moz-appearance: none;
        -ms-appearance: none;
         -o-appearance: none;
            appearance: none;
            text-overflow: '';
    background: url(../images/arrow-down-blue.svg) no-repeat right 15px center / auto 14px;
}
.componente-filtrosHeader .fecha-campo select::-ms-expand {
    display: none;
}
.componente-filtrosHeader ::-webkit-input-placeholder {
  color: #939393;
}
.componente-filtrosHeader ::-moz-placeholder {
  color: #939393;
}
.componente-filtrosHeader :-ms-input-placeholder {
  color: #939393;
}
.componente-filtrosHeader :-moz-placeholder {
  color: #939393;
}

.componente-filtrosHeader .linea {
    width: 100%;
    height: 1px;
    display: block;
    margin-bottom: 20px;
    background: #ACD7FF;
}
.componente-filtrosHeader .linea.margen {
    margin-top: 40px;
}
.componente-filtrosHeader .number {
    font-weight: normal;
    font-size: 21px;
    color: #252525;
    margin-top: 15px;
}
.componente-filtrosHeader.componente-marcasHeader .number {
    margin-top: 40px;
}
.componente-filtrosHeader .number.vacio {
    color: #8C8C8C;
    font-weight: 500;
}
.componente-filtrosHeader .number span {
    font-weight: bold;
}
/* Order Btn */
.componente-filtrosHeader .orden-btn {
    float: right;
}
.componente-filtrosHeader .orden-btn .btn {
    width: 55px;
    height: 55px;
    border: 1px solid #50ABFF;
    background: transparent;
}
.componente-filtrosHeader .orden-btn .btn:hover {
    background: #0063BE;
    border: 1px solid #0063BE;
}
.componente-filtrosHeader .orden-btn .btn .icon path {
    stroke: #0063BE;
}
.componente-filtrosHeader .orden-btn .btn:hover .icon path {
    stroke: #FFF;
}
.componente-filtrosHeader .orden-btn .order-content {
    background: #FFF;
    width: 210px;
    padding: 0;
    left: initial;
    right: 0;
}
.componente-filtrosHeader .orden-btn .order-content .order-title {
    padding: 18px;
    background: #0063BE;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
}
.componente-filtrosHeader .orden-btn .order-content .order-list {
    padding: 0 20px;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item {
    padding: 18px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.2) ;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item:last-child {
    border-bottom: none;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item {
    color: #BFBFBF;
    font-weight: 500;
    font-size: 16px;
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out; 
    transition:all 0.3s ease-out;
    display: table;
    width: 100%;
    padding: 10px 0;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-label:hover,
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-label:focus,
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-label:active {
    color: #525252;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-text {
    float: left;
    position: relative;
    left: 0;
    top: 0;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-input {
    display: none;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-label {
    cursor: pointer;
    position: relative;
    float: right;
    width: 100%;
    padding: 10px 0;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-button {
    width: 26px;
    height: 26px;
    border: 1px solid #ACD7FF;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-button::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0063BE;
    opacity: 0;
    transition: opacity 0.5s;
}
.componente-filtrosHeader .orden-btn .order-content .order-list .item .form-radio-input:checked + .form-radio-label .form-radio-button::after {
    opacity: 1;
}
/* Vistas Btn */
.componente-filtrosHeader .vistas-btn {
    float: right;
    margin-left: 20px;
}
.componente-filtrosHeader .vistas-btn .btn-toggle {
    padding: 0;
    position: relative;
    border: none;
    width: 94px;
    height: 50px;
    border-radius: 25px;
    color: #6b7381;
    background: none;
    border: 1px solid #50ABFF;
}
.componente-filtrosHeader .vistas-btn .btn-toggle:focus,
.componente-filtrosHeader .vistas-btn .btn-toggle.focus,
.componente-filtrosHeader .vistas-btn .btn-toggle:focus.active,
.componente-filtrosHeader .vistas-btn .btn-toggle.focus.active {
    outline: none;
}
.componente-filtrosHeader .vistas-btn .btn-toggle > .handle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0063BE;
    transition: left 0.25s;
}
.componente-filtrosHeader .vistas-btn .btn-toggle.active {
    transition: background-color 0.25s;
}
.componente-filtrosHeader .vistas-btn .btn-toggle.active > .handle {
    left: 48px;
    transition: left 0.25s;
}
.componente-filtrosHeader .vistas-btn .btn-toggle.active:before {
    opacity: 0.5;
}
.componente-filtrosHeader .vistas-btn .btn-toggle.active:after {
    opacity: 1;
}
.componente-filtrosHeader .vistas-btn .btn-toggle:before,
.componente-filtrosHeader .vistas-btn .btn-toggle:after {
    color: #6b7381;
    display: none;
}
.componente-filtrosHeader .vistas-btn .btn-toggle.active {
    background-color: transparent;
}
.componente-filtrosHeader .vistas-btn .btn-toggle[aria-pressed="false"] .handle {
    background: #0063BE url(../images/icon-slidebtn-txt-blanco.svg) no-repeat center center / auto 14px;
}
.componente-filtrosHeader .vistas-btn .btn-toggle[aria-pressed="false"] {
    background: rgba(0, 0, 0, 0) url(../images/icon-slidebtn-img.svg) no-repeat right 15px center / auto 14px;
}
.componente-filtrosHeader .vistas-btn .btn-toggle.active[aria-pressed="true"] .handle {
    background: #0063BE url(../images/icon-slidebtn-img-blanco.svg) no-repeat center center / auto 14px;
}
.componente-filtrosHeader .vistas-btn .btn-toggle.active[aria-pressed="true"] {
    background: rgba(0, 0, 0, 0) url(../images/icon-slidebtn-txt.svg) no-repeat left 15px center / auto 14px;
}


/* RESPONSIVE */
@media screen and (max-width: 991px) {
    .componente-filtrosHeader .select-campo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .componente-filtrosHeader .fecha-campo .txt {
        float: left;
    }
    .componente-filtrosHeader .vistas-btn {
        display: none;
    }
    .componente-modalHistory .modal-content .menu-content .thumbnail {
        width: 127px;
        margin: 0 auto;
        float: left;
        height: 125px;
    }
    .componente-modalHistory .modal-content .menu-content .text-content{
        float: right;
        width: 45%;
        text-align: left;
    }

    .componente-modalHistory .modal-content .menu-content h2 {
        margin: 0;
        line-height: 20px;
    }
    .componente-modalHistory .modal-content .menu-content h4{
        margin: 7px 0;

    }

    .componente-modalHistory .modal-content .menu-content .social-box {
        bottom: 14px;
    }
    .componente-modalHistory .modal-content .menu-content .share ul {
        width: 130px;
    }
    .componente-modalHistory .modal-content .menu-content .share ul li {
        width: 30px;
        height: 30px;
    }

    
}
@media screen and (max-width: 580px) {
    .componente-filtrosHeader .search-campo .search-btn button {
        width: 60px;
        padding: 15px 18px;
    }
    .componente-filtrosHeader .search-campo input {
        width: calc(100% - 75px);

    }
    .componente-filtrosHeader .search-campo .search-btn button > p {
        display: none;
    }
}


/*********************************************************
*********** componente Búsquedas Resultados ************
**********************************************************/
.componente-busquedasResultado .item {
    background: #FFF;
    margin-bottom: 30px;
}
.componente-busquedasResultado .item .figureContent {
    position: relative;
}
.componente-busquedasResultado .item .figureContent .details {
    width: 100%;
    height: 66px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    background: linear-gradient(360deg, rgba(0, 156, 224, 0.0001) 0%, #0063BE 100%);
}
.componente-busquedasResultado .item .figureContent .details .new {
    width: 28px;
    height: 28px;
    line-height: 28px;
    display: block;
    background: #00407B;
    color: #FFF;
    font-size: 8px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50%;
    float: left;
}
.componente-busquedasResultado .item .figureContent .details .peso {
    float: right;
    margin-top: 5px;
}
.componente-busquedasResultado .item .figureContent .details .peso p {
   font-size: 10px;
   color: #FFF; 
   font-weight: bold;
   text-transform: uppercase;
}
.componente-busquedasResultado .item .figureContent .details .peso .barra {
    width: 1px;
    height: 15px;
    background: #FFF;
    opacity: 0.31;
    display: inline-block;
    margin: -3px 5px;
}
.componente-busquedasResultado .item .figureContent .image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: block;
}
.componente-busquedasResultado .item .figureContent .image .botones {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 99, 190, 0.7) url("../images/icon-ver.svg") no-repeat center center / auto 30%;
    opacity: 0;
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out; 
    transition:all 0.3s ease-out;
}
.componente-busquedasResultado .item .figureContent .image:hover .botones {
    opacity: 1;
}
.componente-busquedasResultado .item .figureContent .image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.componente-busquedasResultado .item .figureContent .image.noneImage {
    background: url("../images/actualizaciones-icon-noneimage.svg") no-repeat center center / auto 50%;
    background-color: #0063BE;
}
.componente-busquedasResultado .item .caption {
    padding: 13px 16px;
}
.componente-busquedasResultado .item .caption .title {
    color: #525252;
    font-weight: bold;
    font-size: 14px;   
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; 
}
.componente-busquedasResultado .item .caption .tag-content {
    margin-top: 10px;
    font-size: 0;
}
.componente-busquedasResultado .item .caption .tag-content .tag {
    height: 18px;
    line-height: 18px;
    display: inline-block;
    color: #FFF;
    font-size: 10px;
    font-weight: 500;
    padding: 0 18px;
}
.componente-busquedasResultado .item .caption .tag-content .tag > a {
    width: 100%;
    height: 100%;
    display: block;
}
.componente-busquedasResultado .item .caption .tag-content .tagMarca {
    text-transform: uppercase;
}
.componente-busquedasResultado .item .caption .tag-content .tagMarca.marcaGrey {
    background: #1E1E1E;
}
.componente-busquedasResultado .item .caption .tag-content .tagMarca.marcaBlue {
    background: #0063BE;
}
.componente-busquedasResultado .item .caption .tag-content .tagCategoria {
    height: 18px;
    margin-left: 10px;
    background: #50ABFF;
}

/* RESPONSIVE */
@media screen and (max-width: 991px) {
    .componente-busquedasResultado .item .caption .tag-content .tag {
        padding: 0 10px;
        font-size: 9px;
    }
}
@media screen and (max-width: 580px) {
    .componente-busquedasResultado .item-content {
        width: 100%;
    }
}



/*********************************************************
*********** componente Descargas Header ************
**********************************************************/
.componente-descargasHeader {
    width: 100%;
    clear: both;
    margin-top: 20px;
}
.componente-descargasHeader .title {
    font-size: 21px;
    font-weight: bold;
    padding-top: 30px;
    color: #525252;
}
.componente-descargasHeader .btn-borrarHistorial {
    width: 100%;
    max-width: 178px;
    height: 55px;
    float: right;
    line-height: 2;
    padding: 0 10px;
    color: #0063BE;
    background: transparent;
    border: 1px solid #0063BE;
    font-weight: 500;
    font-size: 16px;
}
.componente-descargasHeader .btn-borrarHistorial.btn-disabled {
    color: #8C8C8C;
    border: 1px solid #8C8C8C;
    pointer-events: none;
}
.componente-descargasHeader .btn-borrarHistorial:hover {
    background: #0063BE;
    color: #FFF;
}
.componente-descargasHeader .linea {
    width: 100%;
    height: 1px;
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #ACD7FF;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {

    .componente-descargasHeader .title {
        padding-top: 10px;
    }
    .componente-descargasHeader .btn-borrarHistorial {
        padding: 0;
    }
    .componente-mapa{        
        margin-top: 0px;
    }
    .componente-mapaResultados {
        margin-top: 90px;
    }

    /*.navBar {
        position: relative;
    }*/
    .navFilters {
        margin-left: 0;
        height: auto;
        position: absolute;
        float: none;
        width: 100%;
        background: #00478F;
        bottom: -60px;
        z-index: 9;
        left: 0;
    }

    .navFilters .select-button,
    .navFilters .ui-selectmenu-button.ui-button {
        height: 60px;
        width: 49%;
        border:none;
    }

    .navFilters .select-button:last-child,
    .navFilters .ui-selectmenu-button.ui-button:last-child {
        border-left: 1px solid rgba(255, 255, 255, 0.23);

    }

    .componente-mapaResultados .item .caption .title {
        color: #525252;
        font-weight: bold;
        font-size: 18px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

}



/*********************************************************
*********** componente Vista Archivos ************
**********************************************************/
.componente-vistaArchivos {
    width: 100%;
    clear: both;
    margin-top: 20px;
}
/* Vacío - Sin Resultados */
.componente-vistaArchivos .vacio.noResultados h4 {
    font-weight: normal;
    font-size: 21px;
    margin: 0 auto 30px auto;
    color: #8C8C8C;
    text-align: center;
    width: 100%;
}
.componente-vistaArchivos .vacio {
    text-align: center;
}
.componente-vistaArchivos .vacio h4 {
    font-weight: normal;
    font-size: 20px;
    margin: 0 auto;
    color: #252525;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}
.componente-vistaArchivos .vacio h4 > b {
    font-weight: bold;
}
.componente-vistaArchivos .vacio .btn-descargarZip {
    width: 100%;
    max-width: 228px;
    height: 55px;
    float: none;
    clear: both;
    line-height: 2;
    padding: 0 15px;
    margin: 40px auto 0 auto;
    color: #FFF;
    background: #0063BE;
    border: 1px solid #0063BE;
    font-weight: 500;
    font-size: 16px;
}
.componente-vistaArchivos .vacio .btn-descargarZip:hover {
    background: #50ABFF;
    border: 1px solid #50ABFF;
}
.componente-vistaArchivos .ultimos-content .ultimos {
    font-weight: normal;
    font-size: 14px;
    color: #8C8C8C;
    margin-bottom: 15px;
}
/* Listado Descargas */
.componente-vistaArchivos .descargasList {
    margin-bottom: 30px;
}
.componente-vistaArchivos .descargasList .item-content {
    display: block;
}
.componente-vistaArchivos .descargasList .descarga {
    width: 100%;
    height: 45px;
    background: #FFF;
    line-height: 45px;
    margin-bottom: 10px;
}
.componente-vistaArchivos .descargasList .descarga > a {
    width: 100%;
    height: 100%;
    display: block;
}
/* figure */
.componente-vistaArchivos .descargasList .descarga .figureContent {
    display: none;
}
/* caption */
.componente-vistaArchivos .descargasList .descarga .new {
    width: 45px;
    height: 100%;
    display: block;
    float: left;
    text-align: center;
    background: #00407B;
    font-weight: bold;
    font-size: 10px;
    color: #FFF;
}
.componente-vistaArchivos .descargasList .descarga .formato {
    width: 45px;
    height: 100%;
    display: block;
    float: left;
    text-align: center;
    background: rgba(80, 171, 255, 0.2);
    font-weight: bold;
    font-size: 10px;
    color: #50ABFF;
}
.componente-vistaArchivos .descargasList .descarga .title {
    float: left;
    width: calc(100% - 680px);
    height: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    color: #525252;
    padding: 0 10px 0 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.componente-vistaArchivos .descargasList .descarga .tag-content {
    width: 290px;
    height: 100%;
    float: right;
    font-size: 0;
    text-align: left;
    margin: 0;
    position: relative;
}
.componente-vistaArchivos .descargasList .descarga .tag-content .tag {
    height: 18px;
    line-height: 18px;
    display: inline-block;
    color: #FFF;
    font-size: 10px;
    font-weight: 500;
    padding: 0 18px;
    margin-left: 10px;
    margin-top: 14px;
}
.componente-vistaArchivos .descargasList .descarga .tag-content .tagMarca {
    text-transform: uppercase;
}
.componente-vistaArchivos .descargasList .descarga .tag-content .tagMarca.marcaGrey {
    background: #1E1E1E;
}
.componente-vistaArchivos .descargasList .descarga .tag-content .tagMarca.marcaBlue {
    background: #0063BE;
}
.componente-vistaArchivos .descargasList .descarga .tag-content .tagCategoria {
    height: 18px;
    margin-left: 10px;
    background: #50ABFF;
}
.componente-vistaArchivos .descargasList .descarga .fecha {
    float: right;
    width: 120px;
    height: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #50ABFF;
    position: relative;
}
.componente-vistaArchivos .descargasList .descarga .peso {
    float: right;
    width: 120px;
    height: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #252525;
    position: relative;
}
.componente-vistaArchivos .descargasList .descarga .download,
.componente-vistaArchivos .descargasList .descarga .trash {
    width: 60px;
    height: 100%;
    display: block;
    float: right;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    padding-top: 8px;
    position: relative;
}
.componente-vistaArchivos .descargasList .descarga .tag-content:before,
.componente-vistaArchivos .descargasList .descarga .fecha:before,
.componente-vistaArchivos .descargasList .descarga .peso:before,
.componente-vistaArchivos .descargasList .descarga .download:before,
.componente-vistaArchivos .descargasList .descarga .trash:before {
    content: "";
    width: 1px;
    height: 15px;
    float: right;
    background: rgba(69, 86, 96, 0.3);
    display: block;
    position: absolute;
    top: 50%;
    left: -1px;
    transform: translate(0,-50%);
}
.componente-vistaArchivos .descargasList .descarga .download svg path {
    stroke: #50ABFF;
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out;
    transition:all 0.3s ease-out;
}
.componente-vistaArchivos .descargasList .descarga .download:hover svg path {
    stroke: #0063BE; 
}
.componente-vistaArchivos.vistaGrilla .descargasList .item-content {
    width: 25%;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga {
    height: auto;
    margin-bottom: 30px;
}
/* figure */
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent {
    display: block;
    position: relative;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .details {
    width: 100%;
    height: 66px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    background: linear-gradient(360deg, rgba(0, 156, 224, 0.0001) 0%, #0063BE 100%);
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .details .new {
    width: 28px;
    height: 28px;
    line-height: 28px;
    display: block;
    background: #00407B;
    color: #FFF;
    font-size: 8px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50%;
    float: left;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .details .peso {
    float: right;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .details .peso p {
   font-size: 10px;
   line-height: 24px;
   color: #FFF; 
   font-weight: bold;
   text-transform: uppercase;
   text-align: right;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .details .peso .barra {
    width: 1px;
    height: 15px;
    background: #FFF;
    opacity: 0.31;
    display: inline-block;
    margin: -3px 5px;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: block;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .image .botones {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 99, 190, 0.7) url("../images/icon-ver.svg") no-repeat center center / auto 30%;
    opacity: 0;
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out; 
    transition:all 0.3s ease-out;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .image:hover .botones {
    opacity: 1;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .figureContent .image.noneImage {
    background: url("../images/actualizaciones-icon-noneimage.svg") no-repeat center center / auto 50%;
    background-color: #0063BE;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .new,
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .caption .formato,
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .caption .fecha,
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .caption .peso,
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .caption .download,
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .caption .trash {
    display: none;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content:before, 
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .fecha:before, 
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .peso:before, 
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .download:before, 
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .trash:before {
    display: none;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .caption {
    padding: 13px 16px;
    background: #FFF;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .title {
    width: 100%;
    color: #525252;
    font-weight: bold;
    font-size: 14px;  
    line-height: 1.2; 
    padding: 0;
    height: auto;
    float: none;
    clear: both; 
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content {
    width: 100%;
    height: auto;
    line-height: normal;
    float: none;
    clear: both;
    margin-top: 10px;
    display: block;
    font-size: 0;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content .tag {
    height: 18px;
    line-height: 18px;
    display: inline-block;
    color: #FFF;
    font-size: 10px;
    font-weight: 500;
    padding: 0 18px;
    margin-left: 0;
    margin-top: 0;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content .tag > a {
    width: 100%;
    height: 100%;
    display: block;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content .tagMarca {
    text-transform: uppercase;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content .tagMarca.marcaGrey {
    background: #1E1E1E;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content .tagMarca.marcaBlue {
    background: #0063BE;
}
.componente-vistaArchivos.vistaGrilla .descargasList .descarga .tag-content .tagCategoria {
    height: 18px;
    margin-left: 10px;
    background: #50ABFF;
}
/* Btn Load More */
.componente-vistaArchivos .btn-loadMore {
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: center;
    display: none;
}
.componente-vistaArchivos .btn-loadMore a {
    width: 100%;
    height: 50px;
    border: 1px solid #0063BE;
    color: #0063BE;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 15px 30px;
    transition: all 0.25s ease-out;
    -webkit-font-smoothing: antialiased;
}
.componente-vistaArchivos .btn-loadMore a:hover {
    color: #FFF;
    background: #0063BE;
}


/* RESPONSIVE */
@media screen and (max-width: 1199px) {
    .componente-vistaArchivos.vistaGrilla .descargasList .item-content {
        width: 33.33333333%;
    }
    .componente-vistaArchivos .descargasList .descarga .title {
        width: calc(100% - 670px);
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content {
        width: 280px;
        height: 100%;
        float: right;
        font-size: 0;
        text-align: left;
        margin: 0;
        position: relative;
    }
}

@media screen and (max-width: 991px) {
    .componente-vistaArchivos .descargasList .descarga {
        height: auto;
        margin-bottom: 30px;
    }
    /* figure */
    .componente-vistaArchivos .descargasList .descarga .figureContent {
        display: block;
        position: relative;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .details {
        width: 100%;
        height: 66px;
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px;
        background: linear-gradient(360deg, rgba(0, 156, 224, 0.0001) 0%, #0063BE 100%);
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .details .new {
        width: 28px;
        height: 28px;
        line-height: 28px;
        display: block;
        background: #00407B;
        color: #FFF;
        font-size: 8px;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        border-radius: 50%;
        float: left;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .details .peso {
        float: right;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .details .peso p {
       font-size: 10px;
       line-height: 24px;
       color: #FFF; 
       font-weight: bold;
       text-transform: uppercase;
       text-align: right;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .details .peso .barra {
        width: 1px;
        height: 15px;
        background: #FFF;
        opacity: 0.31;
        display: inline-block;
        margin: -3px 5px;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .image {
        width: 100%;
        height: 160px;
        overflow: hidden;
        display: block;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .image .botones {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 99, 190, 0.7) url("../images/icon-ver.svg") no-repeat center center / auto 30%;
        opacity: 0;
        -webkit-transition:all 0.3s ease-out;
        -o-transition:all 0.3s ease-out;
        -moz-transition:all 0.3s ease-out;
        -ms-transition:all 0.3s ease-out; 
        transition:all 0.3s ease-out;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .image:hover .botones {
        opacity: 1;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .componente-vistaArchivos .descargasList .descarga .figureContent .image.noneImage {
        background: url("../images/actualizaciones-icon-noneimage.svg") no-repeat center center / auto 50%;
        background-color: #0063BE;
    }
    .componente-vistaArchivos .descargasList .descarga .caption .new,
    .componente-vistaArchivos .descargasList .descarga .caption .formato,
    .componente-vistaArchivos .descargasList .descarga .caption .fecha,
    .componente-vistaArchivos .descargasList .descarga .caption .peso,
    .componente-vistaArchivos .descargasList .descarga .caption .download,
    .componente-vistaArchivos .descargasList .descarga .caption .trash {
        display: none;
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content:before, 
    .componente-vistaArchivos .descargasList .descarga .fecha:before, 
    .componente-vistaArchivos .descargasList .descarga .peso:before, 
    .componente-vistaArchivos .descargasList .descarga .download:before, 
    .componente-vistaArchivos .descargasList .descarga .trash:before {
        display: none;
    }
    .componente-vistaArchivos .descargasList .descarga .caption {
        padding: 13px 16px;
        background: #FFF;
    }
    .componente-vistaArchivos .descargasList .descarga .title {
        width: 100%;
        color: #525252;
        font-weight: bold;
        font-size: 14px;  
        line-height: 1.2; 
        padding: 0;
        height: auto;
        float: none;
        clear: both; 
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content {
        width: 100%;
        height: auto;
        line-height: normal;
        float: none;
        clear: both;
        margin-top: 10px;
        display: block;
        font-size: 0;
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content .tag {
        height: 18px;
        line-height: 18px;
        display: inline-block;
        color: #FFF;
        font-size: 10px;
        font-weight: 500;
        padding: 0 18px;
        margin-left: 0;
        margin-top: 0;
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content .tag > a {
        width: 100%;
        height: 100%;
        display: block;
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content .tagMarca {
        text-transform: uppercase;
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content .tagMarca.marcaGrey {
        background: #1E1E1E;
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content .tagMarca.marcaBlue {
        background: #0063BE;
    }
    .componente-vistaArchivos .descargasList .descarga .tag-content .tagCategoria {
        height: 18px;
        margin-left: 10px;
        background: #50ABFF;
    }
    /* Btn Load More */
    .componente-vistaArchivos .descargasList .item-content {
        display: none;
    }
    .componente-vistaArchivos .btn-loadMore {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .componente-vistaArchivos .vacio h4 {
        font-size: 16px;
    }
}
@media screen and (max-width: 580px) {
    .componente-vistaArchivos .item-content {
        width: 100%;
    }
    .gm-style .gm-style-iw-c,
    .gm-style .gm-style-iw-d{
        max-width: 310px !important;
    }
}


/*********************************************************
*********** componente Zip Header ************
**********************************************************/
.componente-zipHeader {
    width: 100%;
    clear: both;
    margin-top: 20px;
}
.componente-zipHeader .title {
    font-size: 21px;
    font-weight: bold;
    padding-top: 30px;
    color: #525252;
}
.componente-zipHeader .btn-descargarZip {
    width: 100%;
    max-width: 228px;
    height: 55px;
    float: right;
    line-height: 2;
    padding: 0 15px;
    color: #FFF;
    background: #0063BE;
    border: 1px solid #0063BE;
    font-weight: 500;
    font-size: 16px;
}
.componente-zipHeader .btn-descargarZip .icon {
    float: left;
    margin-top: 5px;
}
.componente-zipHeader .btn-descargarZip .icon path {
    stroke: #FFF;
}
.componente-zipHeader .btn-descargarZip:hover {
    background: #50ABFF;
    border: 1px solid #50ABFF;
}
.componente-zipHeader .btn-descargarZip.btn-disabled {
    color: #FFF;
    background: #BFBFBF;
    border: 1px solid #BFBFBF;
    pointer-events: none;
}
.componente-zipHeader .linea {
    width: 100%;
    height: 1px;
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #ACD7FF;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .componente-zipHeader .title {
        padding-top: 10px;
    }
}


/*********************************************************
*********** componente Perfil Header ************
**********************************************************/
.componente-perfilHeader {
    width: 100%;
    clear: both;
    margin-top: 20px;
}
.componente-perfilHeader .title {
    font-size: 21px;
    font-weight: bold;
    padding-top: 30px;
    color: #525252;
}
.componente-perfilHeader .btn-logout {
    width: 100%;
    max-width: 125px;
    height: 55px;
    float: right;
    line-height: 2;
    padding: 0 15px;
    margin: 0 auto;
    color: #525252;
    border: 1px solid #525252;
    background: none;
    font-weight: 500;
    font-size: 16px;
}
.componente-perfilHeader .btn-logout:hover {
    background: #0063BE;
    color: #FFF;
    border: 1px solid #0063BE;
}
.componente-perfilHeader .linea {
    width: 100%;
    height: 1px;
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #ACD7FF;
}
.componente-perfilHeader .botones {
    width: 100%;
}
.componente-perfilHeader .botones .btn-content {
    display: inline-block;
    margin-right: 20px;
}
.componente-perfilHeader .botones .btn-content .btn {
    width: 100%;
    height: 55px;
    border: 1px solid #0063BE;
    color: #0063BE;
    background: none;
    font-weight: 500;
    font-size: 16px;
    padding: 0 30px;
}
.componente-perfilHeader .botones .btn-content .btn:hover {
    border: 1px solid #0063BE;
    color: #FFF;
    background: #0063BE;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .componente-perfilHeader .title {
        padding-top: 10px;
        margin-top: 40px;
    }
}


/*********************************************************
*********** componente Perfil Cuentas ************
**********************************************************/
.componente-perfilCuentas {
    width: 100%;
    clear: both;
    margin-top: 20px;
}
/* Cuentas Header */
.componente-perfilCuentas .cuentasHeader .title {
    font-size: 21px;
    font-weight: bold;
    padding-top: 30px;
    color: #525252;
}
.componente-perfilCuentas .cuentasHeader .btn-crearCuenta {
    width: 100%;
    max-width: 217px;
    height: 55px;
    float: right;
    line-height: 2;
    padding: 0 10px;
    color: #FFF;
    background: #0063BE;
    border: 1px solid #0063BE;
    font-weight: 500;
    font-size: 16px;
}
.componente-perfilCuentas .cuentasHeader .btn-crearCuenta:hover {
    background: #50ABFF;
    border: 1px solid #50ABFF;
}
.componente-perfilCuentas .cuentasHeader .btn-crearCuenta .icon {
    width: 22px;
    height: 22px;
    display: block;
    float: left;
    margin-top: 5px;
}
.componente-perfilCuentas .cuentasHeader .linea {
    width: 100%;
    height: 1px;
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
    background: #DFDFDF;
}
/* Listado Cuentas */
.componente-perfilCuentas .cuentasList .cuenta {
    width: 100%;
    height: 45px;
    background: #FFF;
    line-height: 45px;
    margin-bottom: 10px;
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out;
    transition:all 0.3s ease-out;
}
.componente-perfilCuentas .cuentasList .cuenta .name {
    float: left;
    width: calc(100% - 680px);
    height: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    color: #525252;
    padding: 0 10px 0 20px;
    overflow: hidden;
    display: table;
}
.componente-perfilCuentas .cuentasList .cuenta .name h3 {
    line-height: 1;
    vertical-align: middle;
    display: table-cell;
}
.componente-perfilCuentas .cuentasList .cuenta .mail {
    float: left;
    width: 330px;
    height: 100%;
    text-align: left;
    padding: 0 10px 0 20px;
    overflow: hidden;
}
.componente-perfilCuentas .cuentasList .cuenta .pass {
    float: left;
    width: 235px;
    height: 100%;
    text-align: left;
    padding: 0 10px 0 20px;
    overflow: hidden;
}
.componente-perfilCuentas .cuentasList .cuenta .mail h4,
.componente-perfilCuentas .cuentasList .cuenta .pass h4 {
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    line-height: 44px;
    color: #455660;
}
.componente-perfilCuentas .cuentasList .cuenta .mail .icon,
.componente-perfilCuentas .cuentasList .cuenta .pass .icon {
    float: left;
    margin-right: 10px;
}
.componente-perfilCuentas .cuentasList .cuenta .pass .icon {
    margin-top: 4px;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content {
    float: right;
    width: 115px;
    height: 100%;
    position: relative;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content > li > a {
    width: 100%;
    height: 100%;
    display: block;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-trash,
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-edit {
    float: left;
    height: 100%;
    width: 57px;
    text-align: center;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-trash .trash > svg,
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-edit .edit > svg {
    margin-top: 9px;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-trash a svg path,
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-edit a svg path {
    -webkit-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -ms-transition:all 0.3s ease-out;
    transition:all 0.3s ease-out;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-trash a svg path {
    stroke: #BFBFBF;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-edit a svg path {
    stroke: #0063BE;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-trash a:hover svg path {
    stroke: #525252;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-edit a:hover svg path {
    stroke: #50ABFF;
}
.componente-perfilCuentas .cuentasList .cuenta .botones-content:before {
    content: "";
    width: 1px;
    height: 15px;
    float: right;
    background: rgba(69, 86, 96, 0.3);
    display: block;
    position: absolute;
    top: 50%;
    left: -1px;
    transform: translate(0,-50%);
}
.componente-perfilCuentas .cuentasList .cuenta .linea {
    display: none;
    width: 100%;
    height: 1px;
    background: rgba(69, 86, 96, 0.3);
}

/* RESPONSIVE */
@media screen and (max-width: 991px) {
    .componente-perfilCuentas .cuentasList .cuenta {
        height: 127px;
        display: table;
        position: relative;
        padding: 0 20px;
    }
    .componente-perfilCuentas .cuentasList .cuenta .linea {
        display: block;
        position: static;
        display: table;
    }
    .componente-perfilCuentas .cuentasList .cuenta .botones-content {
        width: 100px;
    }
    .componente-perfilCuentas .cuentasList .cuenta .botones-content:before {
        display: none;
    }
    .componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-trash, 
    .componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-edit {
        width: 50px;
    }
    .componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-trash .trash > svg,
    .componente-perfilCuentas .cuentasList .cuenta .botones-content .btn-edit .edit > svg {
        margin-top: 18px;
    }
    .componente-perfilCuentas .cuentasList .cuenta .name {
        width: calc(100% - 115px);
        line-height: 63px;
        padding: 0 10px 0 0;
    }
    .componente-perfilCuentas .cuentasList .cuenta .mail {
        width: 60%;
        padding: 0 10px 0 0;
    }
    .componente-perfilCuentas .cuentasList .cuenta .pass {
        width: 40%;
        padding: 0;
    }
    .componente-perfilCuentas .cuentasList .cuenta .mail h4, 
    .componente-perfilCuentas .cuentasList .cuenta .pass h4 {
        line-height: 63px;
    }
    .componente-perfilCuentas .cuentasList .cuenta .mail .icon, 
    .componente-perfilCuentas .cuentasList .cuenta .pass .icon {
        margin-top: 12px;
    }
    .componente-perfilCuentas .cuentasList .cuenta .name,
    .componente-perfilCuentas .cuentasList .cuenta .botones-content,
    .componente-perfilCuentas .cuentasList .cuenta .mail,
    .componente-perfilCuentas .cuentasList .cuenta .pass {
        height: 63px;
    }
}
@media screen and (max-width: 767px) {
    .componente-perfilCuentas .cuentasHeader .title {
        padding-top: 0;
    }
    .componente-perfilCuentas .btn-crearCuenta {
        padding: 0;
    }
    .componente-perfilCuentas .cuentasHeader .btn-crearCuenta {
        max-width: 100%;
        margin-top: 40px;
    }
    .componente-perfilHeader .botones .btn-content {
        display: block;
        margin-right: 0;
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 580px) {
    .componente-perfilCuentas .cuentasList .cuenta {
        padding: 0 10px;
    }
    .componente-perfilHeader .title {
        font-size: 18px;
        padding-top: 0;
    }
}



/*********************************************************
*********** componente Modales Perfil Generales ************
**********************************************************/
.componente-modalPerfil .modal-dialog {
    width: 635px;
    background: #fff;
}
.componente-modalPerfil .closeModal {
    border: none;
    background: transparent;
    color: #FFF;
    font-size: 60px;
    font-weight: 100;
    float: right;
    right: 0;
    top: -60px;
    position: absolute;
}
.componente-modalPerfil .modal-content {
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: none;
    clear: both;
    padding: 50px 60px 40px 60px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.componente-modalPerfil .modal-content .title {
    font-weight: 500;
    font-size: 24px;
    line-height: 22px;
    color: #252525;
    margin-bottom: 40px;
}
.componente-modalPerfil .modal-content form {
    margin: 0 auto;
}
/* Botones */
.componente-modalPerfil .modal-content .btn-content {
    width: 100%;
    justify-content: space-between;
    display: flex;
    flex-flow: row-reverse;
    margin-top: 50px;
}
.componente-modalPerfil .modal-content .btn-content .btn {
    display: inline-block;
    margin-top: 0;
}
.componente-modalPerfil .modal-content .btn {
    width: 100%;
    max-width: 244px;
    height: 50px;
    background: #0063BE;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border: none;
    margin-top: 30px;
}
.componente-modalPerfil .modal-content .btn:hover {
    background: #979797;
}
.componente-modalPerfil .modal-content .btn.btn-grey {
    background: #979797;
}
.componente-modalPerfil .modal-content .btn.btn-grey:hover {
    background: #0063BE;
}
.componente-modalPerfil .modal-content .btn.btn-border {
    background: none;
    border: 1px solid #0063BE;
    color: #0063BE;
}
.componente-modalPerfil .modal-content .btn.btn-border:hover {
    background: #0063BE;
    border: 1px solid #0063BE;
    color: #FFF;
}
/* Cuadro Texto */
.componente-modalPerfil .modal-content .txt {
    text-align: center;
    margin-bottom: 20px;
}
.componente-modalPerfil .modal-content .txt h5 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.componente-modalPerfil .modal-content .txt h5 b {
    font-weight: bold;
}
.componente-modalPerfil .modal-content .txt .usuario {
    margin-top: 40px;
}
.componente-modalPerfil .modal-content .txt .usuario p {
    font-weight: 500;
    font-size: 10px;
    color: #0063BE;
}
.componente-modalPerfil .modal-content .txt .usuario h2 {
    font-weight: 500;
    font-size: 24px;
    margin-top: 8px;
}

/* Formulario Campos */
.componente-modalPerfil .modal-content form .campo {
    display: flex;
    flex-flow: column-reverse;
    max-width: 376px;
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #BFBFBF;
}
.componente-modalPerfil .modal-content form .campo-check {
    display: flex;
    flex-flow: column-reverse;
    max-width: 376px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}
.componente-modalPerfil .modal-content form label, 
.componente-modalPerfil .modal-content form input {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;  /* Chrome y Safari */
    -o-transition: all 0.2s;  /* Opera */
    -moz-transition: all 0.2s;  /* Mozilla Firefox */
    -ms-transition: all 0.2s;   /* Internet Explorer */
    transition: all 0.2s;  /* W3C */
    touch-action: manipulation;
}
.componente-modalPerfil .modal-content form input {
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    color: #252525;
    border: 0;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0;
    cursor: text;
    text-align: left;
}
.componente-modalPerfil .modal-content form input:focus {
    outline: 0;
}
.componente-modalPerfil .modal-content form label {
    color: #0063BE;
    font-size: 14px;
    font-weight: 500;
}
.componente-modalPerfil .modal-content form input:placeholder-shown + label {
    cursor: text;
    text-align: left;
    color: #BFBFBF;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transform-origin: left bottom;  /* Chrome y Safari */
    -o-transform-origin: left bottom;  /* Opera */
    -moz-transform-origin: left bottom;  /* Mozilla Firefox */
    -ms-transform-origin: left bottom;   /* Internet Explorer */
    transform-origin: left bottom;  /* W3C */
    -webkit-transform: translate(0, 26px) scale(1.3);  /* Chrome y Safari */
    -o-transform: translate(0, 26px) scale(1.3);  /* Opera */
    -moz-transform: translate(0, 26px) scale(1.3);  /* Mozilla Firefox */
    -ms-transform: translate(0, 26px) scale(1.3);   /* Internet Explorer */
    transform: translate(0, 26px) scale(1.3);  /* W3C */
}
.componente-modalPerfil .modal-content form ::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
    -webkit-transition: inherit;  /* Chrome y Safari */
    -o-transition: inherit;  /* Opera */
    -moz-transition: inherit;  /* Mozilla Firefox */
    -ms-transition: inherit;   /* Internet Explorer */
    transition: inherit;  /* W3C */
    color: #BFBFBF;
}
.componente-modalPerfil .modal-content form ::-moz-placeholder { 
    opacity: 0;
    transition: inherit;
    -webkit-transition: inherit;  /* Chrome y Safari */
    -o-transition: inherit;  /* Opera */
    -moz-transition: inherit;  /* Mozilla Firefox */
    -ms-transition: inherit;   /* Internet Explorer */
    transition: inherit;  /* W3C */
    color: #BFBFBF;
}
.componente-modalPerfil .modal-content form :-ms-input-placeholder { 
    opacity: 0;
    transition: inherit;
    -webkit-transition: inherit;  /* Chrome y Safari */
    -o-transition: inherit;  /* Opera */
    -moz-transition: inherit;  /* Mozilla Firefox */
    -ms-transition: inherit;   /* Internet Explorer */
    transition: inherit;  /* W3C */
    color: #BFBFBF;
}
.componente-modalPerfil .modal-content form :-moz-placeholder { 
    opacity: 0;
    transition: inherit;
    -webkit-transition: inherit;  /* Chrome y Safari */
    -o-transition: inherit;  /* Opera */
    -moz-transition: inherit;  /* Mozilla Firefox */
    -ms-transition: inherit;   /* Internet Explorer */
    transition: inherit;  /* W3C */
    color: #BFBFBF;
}
.componente-modalPerfil .modal-content form input:focus::-webkit-input-placeholder {
    opacity: 0;
}
.componente-modalPerfil .modal-content form input:focus::-moz-placeholder { 
    opacity: 0;
}
.componente-modalPerfil .modal-content form input:focus:-ms-input-placeholder { 
    opacity: 0;
}
.componente-modalPerfil .modal-content form input:focus:-moz-placeholder { 
    opacity: 0;
}
.componente-modalPerfil .modal-content form input:not(:placeholder-shown) + label,
.componente-modalPerfil .modal-content form input:focus + label {
    cursor: pointer;
    color: #0063BE;
    text-align: left;
    -webkit-transform: translate(0, 0) scale(1);  /* Chrome y Safari */
    -o-transform: translate(0, 0) scale(1);  /* Opera */
    -moz-transform: translate(0, 0) scale(1);  /* Mozilla Firefox */
    -ms-transform: translate(0, 0) scale(1);   /* Internet Explorer */
    transform: translate(0, 0) scale(1);  /* W3C */
}

/* Checkmarks */
.componente-modalPerfil .modal-content form .check-content {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
    padding-top: 3px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    text-align: left;
    color: #252525;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.componente-modalPerfil .modal-content form .check-content input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.componente-modalPerfil .modal-content form .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 2px solid #0063BE;
}
.componente-modalPerfil .modal-content form .check-content:hover input ~ .checkmark {
    background-color: transparent;
}
.componente-modalPerfil .modal-content form .check-content input:checked ~ .checkmark {
    background-color: #FFFFFF;
}
.componente-modalPerfil .modal-content form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.componente-modalPerfil .modal-content form .check-content input:checked ~ .checkmark:after {
    display: block;
}
.componente-modalPerfil .modal-content form .check-content .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #0063BE;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* RESPONSIVE */
@media screen and (max-width: 991px) {
    .componente-modalPerfil .modal-dialog {
        width: 340px;
    }
    .componente-modalPerfil .modal-content {
        width: 100%;
        height: auto;
        padding: 40px 20px 50px 20px;
    }
    .componente-modalPerfil .modal-content .btn {
        max-width: 100%;
    }
    .componente-modalPerfil .modal-content .btn-content {
        display: table;
        margin-top: 30px;
    }
    .componente-modalPerfil .modal-content .btn-content .btn {
        display: block;
        margin-top: 20px;
    }
}
@media screen and (max-width: 375px) {
    .componente-modalPerfil .modal-dialog {
        width: 300px;
    } 
}



/*********************************************************
*********** componente Login ************
**********************************************************/
.pagina-login .contenedor-principal {
    margin: 0;
    padding: 0;
}
.componente-login {
    width: 100%;
    clear: both;
}
/* Login content */
.componente-login .login-content {
    height: 100vh;
    max-height: 100vh;
    background: #0063BE;
    position: relative;
    overflow: visible;
}
.componente-login .logo {
    width: 91px;
    height: 23px;
    float: left;
    top: 40px;
    left: 0;
    transition: none;
    position: absolute;
    transform: translate(40px, 0);
}
/* Bloque login */
.componente-login .bloque-login {
    width: 420px;
    height: 490px;
    background: #FFF;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 99;
    padding: 30px 40px;
}
.componente-login .bloque-login .title {
    font-weight: bold;
    font-size: 21px;
    line-height: 30px;
    color: #252525;
    margin-bottom: 15px;
}
.componente-login .bloque-login p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #525252;
    margin-bottom: 20px;
}
.componente-login .bloque-login .campo {
    width: 100%;
    margin-top: 15px;
}
.componente-login .bloque-login .campo.user {
    position: relative;
    background: rgba(0, 0, 0, 0) url("../images/icon-campo-user.svg") no-repeat left center / auto 100%;
}
.componente-login .bloque-login .campo.pass {
    position: relative;
    background: rgba(0, 0, 0, 0) url("../images/icon-campo-pass.svg") no-repeat left center / auto 100%;
}
.componente-login .bloque-login input {
    width: 100%;
    height: 55px;
    line-height: 2;
    padding: 0 20px;
    color: #939393;
    background: transparent;
    border: 1px solid #50ABFF;
    padding-left: 60px;
    color: #50ABFF;
    font-size: 16px;
}
.componente-login .bloque-login input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #50ABFF;
}
.componente-login .bloque-login input::-moz-placeholder { /* Firefox 19+ */
    color: #50ABFF;
}
.componente-login .bloque-login input:-ms-input-placeholder { /* IE 10+ */
    color: #50ABFF;
}
.componente-login .bloque-login input:-moz-placeholder { /* Firefox 18- */
    color: #50ABFF;
}
/* Pass Btn */
.componente-login .bloque-login .input-group-btn .btn.reveal {
    width: 55px;
    height: 55px;
    display: block;
    float: right;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
}
.componente-login .bloque-login #password + .glyphicon {
    cursor: pointer;
    pointer-events: all;
}
.componente-login .bloque-login .campo.pass input[type="password"] + .input-group-btn .btn.reveal {
    background: rgba(0, 0, 0, 0) url("../images/icon-pass-show.svg") no-repeat center center / auto 50%;
}
.componente-login .bloque-login .campo.pass input[type="text"] + .input-group-btn .btn.reveal {
    background: rgba(0, 0, 0, 0) url("../images/icon-pass-hide.svg") no-repeat center center / auto 50%;
}
input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
    display: none;
}
.componente-login .bloque-login .linea {
    width: 236px;
    height: 1px;
    display: block;
    margin: 25px auto 20px auto;
    background: #ACD7FF;
}
.componente-login .bloque-login .link {
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
    color: #0063BE;
}
.componente-login .bloque-login .link:hover {
    color: #50ABFF;
}
.componente-login .bloque-login .btn.login {
    width: 100%;
    height: 50px;
    margin-top: 30px;
    color: #FFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    border: none;
    background: #0063BE;
    text-align: center;
}
.componente-login .bloque-login .btn.login:hover {
    background: #50ABFF;
}

/* Img content */
.componente-login .img-content {
    height: 100vh;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.componente-login .img-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}


/* RESPONSIVE */
@media screen and (max-width: 767px) {
    /* Login content */
    .componente-login .login-content {
        width: 100%;
        height: 230px;
        max-height: initial;
    }
    /* Img content */
    .componente-login .img-content {
        width: 100%;

        height: calc(100vh - 230px);
        min-height: 426px;
        max-height: initial;
    }
    .componente-login .bloque-login {
        width: 300px;
        height: 430px;
        position: absolute;
        right: 0;
        left: 50%;
        top: -120px;
        transform: translate(-50%, 50%);
        padding: 15px;
    }
    .componente-login .bloque-login .title {
        font-size: 18px;
        line-height: 24px;
    }
    .componente-login .bloque-login p {
        font-size: 12px;
        line-height: 18px;
    }
    .componente-login .bloque-login .btn.login {
        margin-top: 20px;
    }
    .componente-login .bloque-login .linea {
        width: 200px;
    }

}
@media screen and (min-width: 1200px) {

    .componente-mapaResultados .container{
        width: 1283px;

    }
}