<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&amp;display=swap);

/*--------------------------------------------------------------
Basic
--------------------------------------------------------------*/
body, html {
    height:100%;
}

body, input, select, textarea {
    color: #333;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

em, i {
    font-style: italic;
}

a{
    color: #333;
    transition: 0.3s;
}

a:hover{
    color: #c00;
    text-decoration: none;
}

.btn-flat {
    opacity: .7;
    transition: 0.3s;
}

.btn-flat:hover {
    opacity: 1;
}

.btn-flat:focus {
    border: 2px solid grey;
}

p {
    margin: 0 0 2em 0;
}

h1 {
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Oswald,sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    text-decoration: none;
}

blockquote {
    border-left: solid 3px rgba(210, 215, 217, 0.75);
    font-style: italic;
    margin: 0 0 2em 0;
    padding: 0.5em 0 0.5em 2em;
}

code {
    background: rgba(230, 235, 237, 0.25);
    border-radius: 0.375em;
    border: solid 1px rgba(210, 215, 217, 0.75);
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0.25em;
    padding: 0.25em 0.65em;
}

pre {
    -webkit-overflow-scrolling: touch;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    margin: 0 0 2em 0;
}

pre code {
    display: block;
    line-height: 1.75;
    padding: 1em 1.5em;
    overflow-x: auto;
}

svg{
  width: 100%;
}

.hr-set{
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 15px;
    margin-bottom: 15px;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

/* Accesibilidad */
#tools{
    cursor: pointer;
    color: #5D6267;
    margin: 0;
}

#tools li{
    margin-left: 5px;
}

/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.page-loader {
    position: fixed;
    background: #c00;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 9998;
}

.preloader {
    position: absolute;
    border-left: 4px solid #ffffff;
    border-top: 4px solid rgba(255, 255, 255, 0.2);
    border-right: 4px solid rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    height: 46px;
    width: 46px;
    left: 50%;
    top: 50%;
    margin: -23px 0 0 -23px;
    text-indent: -9999em;
    font-size: 10px;
    z-index: 9999;
    -webkit-animation: load 0.8s infinite linear;
    -moz-animation: load 0.8s infinite linear;
    ms-animation: load 0.8s infinite linear;
    o-animation: load 0.8s infinite linear;
    animation: load 0.8s infinite linear;
}

.preloader,
.preloader:after {
    border-radius: 50%;
    width: 46px;
    height: 46px;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
Breadcrums
--------------------------------------------------------------*/
.breadcrumb {
    padding: 0rem 0rem;
    margin-bottom: 0rem;
    background-color: transparent;
}

.breadcrumb a{
    color: #c00;
}

/* backTop */
.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(232, 98, 86, 0.8) url(../img/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

.cd-top.cd-top--show {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-top--fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}

.cd-top:hover {
    background-color: #e86256;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px;
    }
}

/*--------------------------------------------------------------
Custom CSS
--------------------------------------------------------------*/

.parallax-window {
    min-height: 100vh;
    background: transparent;
}

.cabecera {
    position: relative;
}

.cabecera h1 span {
    color: #FF7474;
}

.cabecera h3 {
    color: white;
    font-size: 1.1rem;
}

.buscador {
    background-color: rgba(28, 30, 49, .4);
    border: 2px solid white;
    opacity: .8;
    padding: .3rem;
    transition: 0.3s;
}

.buscador:hover {
    opacity: 1;
}

.buscador input {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.9rem;
    width: 100%;
}

.buscador input:focus {
    color: white;
    outline: none;
}

.botones a {
    opacity: .8;
}

.botones a:hover {
    opacity: 1;
}

.acerca {
    bottom: 1rem;
    left: 0;
    position: absolute;
    right: 0;
}

.acerca a {
    color: white;
    opacity: .4;
}

.acerca a:hover {
    color: white;
    opacity: 1;
}

.acerca a p {
    font-size: 1rem;
    font-weight: 300;
}

.acerca .fal {
    -ms-transform: rotate(1800deg); /* IE 9 */
    transform: rotate(180deg);
}

#acerca-de::before {
    display: block;
    content: " ";
    margin-top: 65px;
    height: 10px;
    visibility: hidden;
}

.seccion-top h2 {
    color: #FF7474;
}

.resultados img {
    width: 50px;
}

.resultados h3 {
    font-size: 1.2rem;
}

.materias a {
    font-size: .9rem;
    opacity: .8;
}

.materias a:hover {
    font-size: 1rem;
    opacity: 1;
}

.materias .nav-tabs a:hover {
    font-size: .9rem;
    opacity: 1;
}

.materias .seleccionada {
    background-color: #FF7474;
    border-radius: 100px;
    color: #FFF;
    display: inline-block;
    margin-left: -.8rem;
    padding: .1rem .8rem;
}

.materias .seleccionada a {
    color: white;
    cursor: default;
    font-size: 1rem;
    opacity: 1;
}

.materias .seleccionada .fas {
    cursor: pointer;
    margin-left: .5rem;
}

.sesiones {
    border-left: 1px solid #dee2e6;
}

.sesiones h3 {
    font-size: 1.1rem;
}

.sesiones a, .testimonio a {
    color: #333;
}

.sesion {
    width: 50%;
}

.sesion:hover, .anexo:hover, .testimonio:hover, .item-lista:hover {
    background-color: rgba(255, 116, 116, .1);
}

.testimonio {
    text-align: center;
    width: 50%;
}

.anexo {
    width: 50%;
    padding: 1rem;
    text-align: center;
}

.anexo a {
    color: #333;
}

.anexo p {
    font-size: .9rem;
    line-height: 1.2rem;
    margin-bottom: 0;
}

.video {
    background-color: #EEE;
    padding: 2rem;
}

.video:hover {
    background-color: rgba(255, 116, 116, .1);
}

.video a {
    color: #333;
}

.video img {
    width: 70px;
}

.video h3 {
    font-size: 1rem;
}

.personas-ficha li p {
    margin-bottom: 0;
}

.anexos-ficha img {
    width: 40px;
}

.anexos-ficha h5 {
    font-size: 1rem;
}

.flecha {
    bottom: 2rem;
    color: white;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 999;
}

.whatsapp-ic {
    color: #25d366 !important;
}

.seccion-top {
    padding-top: 7rem;
}

.pagination.pg-red .page-item.active .page-link, .pagination.pg-red .page-item.active .page-link:hover {
    background-color: #ef5350;
}
.page-item {
    margin: 0 .2rem;
}

.pagination {
    margin-top: 6px;
}

.list-filter .active a {
    color: #C00;
}

.nav-bottom {
    border-left: 1px solid #FFF;
    margin-left: -1rem;
    padding: 1rem;
}

h2 .badge {
    font-size: 65%;
    font-weight: 400;
}

.chip .close {
    color: #EEE;
}

.close {
    text-shadow: none;
}

.herramientas .btn {
    margin: 0;
    padding: .8rem;
}

.modal {
    z-index: 999999999;
}

.fixed-action-btn a {
    opacity: .7;
    transition: .3s;
}

.fixed-action-btn a:hover {
    opacity: 1;
}

.fixed-action-btn ul {
    bottom: -1rem !important;
}

.oculta {
    display: none;
}

.muestra {
    display: block;
}

.tit-tema {
    letter-spacing: 1px;
}

.panel {
    border: 1px solid #CCC;
    border-radius: 5px;
    padding: 1rem;
    transition: 0.3s;
}

.panel:hover {
    background-color: #fffbfb;
    border: 1px solid #ef5350;
}

.owl-stage-outer {
    padding-top: 1rem !important;
}

.item-carrusel {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 1rem;
    transition: 0.3s;
}

.item-carrusel:hover {
    border: 1px solid #C00;
    margin-top: -1rem;
}

.item-carrusel p {
    color: #747373;
    font-size: .9rem;
    font-weight: 400;
}

.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
    background-color: #ced4da;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    padding: 5px 13px;
    transition: 0.3s;
}

.owl-carousel .owl-nav button.owl-next span:hover, .owl-carousel .owl-nav button.owl-prev span:hover {
    box-shadow: 2px 4px 5px 0 rgba(0,0,0,.16), 2px 4px 10px 0 rgba(0,0,0,.12);
}

.badge {
    font-size: 85%;
}

/* MEDIA QUERYS */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
    oculta-lg {
        display: none !important;
    }

    .muestra-lg {
        display: block !important;
    }

    .descripcion {
        font-size: 1rem;
    }

    .iconos h2 {
        font-size: .96rem;
    }

    .iconos img {
        height: 2.93rem;
    }

    .item-grid {
        width: 47.6%;
    }

    .legal .item-grid,
    .boletin .item-grid  {
        width: 31%;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {

    .oculta-md {
        display: none !important;
    }

    .muestra-md {
        display: block !important;
    }

    .cabecera {
        padding-top: 3rem;
    }

    .seccion-top {
        padding-top: 5rem;
    }

    .text-truncate {
        width: 300px;
    }

    .iconos a {
        opacity: 1;
    }

    .iconos img {
        height: 3.2rem;
    }

    .fondo-izq {
        margin: 0 8px;
    }

    .item-grid, .legal .item-grid,
    .boletin .item-grid  {
        width: 46.8%;
    }

    .boletin .border-top, .boletin .border-left {
        border: none !important;
    }

    .sesion {
        width: 100%;
    }

    .testimonio {
        width: 100%;
    }
}

@media (max-width: 991px) and (orientation: landscape) {

    .oculta-ld {
        display: none !important;
    }

    .muestra-ld {
        display: block !important;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {

    h1 {
        font-size: 2em;
        line-height: 1.1;
    }

    h2 {
        font-size: 1.5em;
    }

    .bsnav-sticky {
        position: relative !important;
    }

    .seccion-top {
        padding-top: 2rem;
    }

    .cabecera {
        padding-top: 0;
    }

    .cabecera h3 {
        font-size: .8rem;
    }

    .descripcion {
        font-size: 1.1rem;
    }

    .parallax-window {
        min-height: 100vh;
    }

    .flecha {
        display: block;
    }

    .baner-plebiscito{
        width: 100%;
    }

    .text-truncate {
        width: 140px;
    }

    .oculta-sm {
        display: none !important;
    }

    .muestra-sm {
        display: block !important;
    }

    .iconos img {
        height: 3rem;
    }

    .item-grid,
    .boletin .item-grid {
        margin: 0;
        width: 100%;
    }

    .anexo {
        width: 100%;
    }

    .sesiones {
        border-left: none;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .oculta-xs {
        display: none !important;
    }

    .muestra-xs {
        display: block !important;
    }

    .iconos &gt; div {
        width: 50%;
    }

    .iconos h2 {
        font-size: .8rem;
    }

    .fondo {
        padding: .5rem;
    }

    .fondo-izq {
        margin-top: 2.5rem;
    }

    .h1-responsive {
        font-size: 135%;
    }

    .legal .item-grid {
        width: 100%;
    }
}

.scrollbar {
    height: 60vh;
    background: #fff;
    overflow-y: scroll;
    padding-left: 1rem;
    width: 100%;
}
.force-overflow {
    min-height: 450px;
}

.scrollbar-lady-lips::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5; }

.scrollbar-lady-lips::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-image: -webkit-gradient(linear, left bottom, left top, from(#ff9a9e), color-stop(99%, #fecfef),
    to(#fecfef));
    background-image: -webkit-linear-gradient(bottom, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }





</pre></body></html>