*::-webkit-scrollbar {
    background-color: rgb(88 19 179 / 10%);
    width: 10px;
    border-radius: 10px;
}

/* background of the scrollbar except button or resizer */
*::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}

*::-webkit-scrollbar-track:hover {
    background-color: rgb(88 19 179 / 20%);
}

/* scrollbar itself */
*::-webkit-scrollbar-thumb {
    border-radius: 16px;
    background-color: #bd8ddc;
    border: 1px solid #832abb29;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #9d61c3;
    border: 1px solid #832abb96;
}

/* set button(top and bottom of the scrollbar) */
*::-webkit-scrollbar-button {
    display: none
}

/******************************************************/
:root {
    --mdc-theme-primary: #832ABB;
    --mdc-theme-secondary: #673AB7;
    --mdc-theme-on-primary: #f7eaf9;
    --mdc-theme-on-secondary: #d3cae4;
    --filter-bg:
        invert(0) contrast(0) sepia(100%) hue-rotate(229deg) brightness(1.3) saturate(1.48);
}

.mdc-select .mdc-select__menu .mdc-list-item {
    border-radius: 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    color: #222;
}

.mdc-select .mdc-select__menu .mdc-list-item:hover {
    color: #eee;
}

.mdc-text-field__icon--leading {
    opacity: 0;
    margin-left: 0px;
    font-size: 25px;
    color: #222 !important;
}

.mdc-text-field--focused .mdc-text-field__icon--leading {
    color: #5813b3 !important;
}

.mdc-text-field--label-floating .mdc-text-field__icon--leading {
    opacity: 1;
}

.mdc-select__menu .mdc-list .mdc-list-item {
    transition: all 100ms;
}

.mdc-select__menu .mdc-list .mdc-list-item:hover {
    background-color: #5813b3 !important;
    color: #eee;
    transition: all 100ms;
}

.mdc-select__menu .mdc-list .mdc-list-item--selected {
    color: #5813b3 !important;
    font-weight: bold;
    transition: all 100ms;
}

.mdc-select__menu .mdc-list .mdc-list-item--selected:hover {
    color: #eee !important;
    transition: all 100ms;
}

.mdc-touch-target-wrapper {
    display: flex;
    align-items: center;
}

/******************************************************/
* {
    box-sizing: border-box;
    outline: none;
    text-align: left;
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: normal;
}

divisor {
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background-color: rgba(0, 0, 0, .1);
}

html,
body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    margin: 0;
    overflow-y: scroll !important;
    background: #832ABB;
    position: relative;
}

html:before,
#header.full:not(.no-pattern):before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-image: url(../img/pattern.png);
    opacity: .1;
    filter: invert(1);
}

body>*,
pagina>* {
    position: relative;
}

html.light {
    background-color: #fff;
}

html.light:before {
    opacity: .4;
    filter: var(--filter-bg);
}

ventanita {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background-color: rgba(255, 255, 255, .5);
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
    transition: all 500ms;
}

ventanita.show {
    opacity: 1;
    transition: all 100ms;
}

ventanita-container {
    min-width: 300px;
    max-width: 800px;
    min-height: 300px;
    max-height: 96vh;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 30px 2px rgba(0, 0, 0, .5);
    position: relative;
    display: flex;
}

ventanita-close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    border-radius: 0 15px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 5px;
    cursor: pointer;
    z-index: 10;
}

ventanita-close:before {
    width: 40px;
    height: 40px;
    background-color: #bd8ddc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: '\F0156';
    font-family: "Material Design Icons";
    font-size: 25px;
    color: #fff;
    transition: all 200ms;
}

ventanita-close:hover:before {
    background-color: #5813b3;
    transition: all 200ms;
}

ventanita-content {
    width: 100%;
    overflow-y: auto;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .3);
    display: none;
}

ventanita-content .loader {
    position: absolute;
    background-color: rgba(255, 255, 255, .7);
}

.loader:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/loader.gif');
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

ventanita-content #mensaje {
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .1);
    margin: 20px 0;
    width: 100%;
    text-align: center;
}

ventanita-content button {
    margin: 3px !important;
}

.email-client-options {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    width: 100%;
}

.email-client-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    min-width: 110px;
    border: 2px solid rgba(88, 19, 179, 0.2);
    border-radius: 14px;
    background-color: #faf5ff;
    color: #5813b3;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 150ms;
}

.email-client-btn img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.email-client-btn .mdi {
    font-size: 36px;
    line-height: 36px;
    color: #832abb;
}

.email-client-btn:hover {
    background-color: #832abb;
    color: #fff;
    border-color: #5813b3;
    box-shadow: 0 4px 16px rgba(88, 19, 179, 0.3);
    transform: translateY(-2px);
    transition: all 150ms;
}

.email-client-btn:hover .mdi {
    color: #fff;
}

pagina {
    display: block;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    width: 100%;
}

nav.left {
    justify-content: start;
}

nav.center {
    justify-content: center;
}

nav.right {
    justify-content: end;
}

nav li {
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 100ms;
    user-select: none;
}

nav.on-header li,
#header nav li {
    border-radius: 30px;
    background-color: rgba(0, 0, 0, .2);
    color: #fff;
}

nav li:hover {
    box-shadow: inset 0 0 0px 2px #fff;
    background-color: rgba(255, 255, 255, .1);
    transition: all 100ms;
}

nav li.accent {
    background-color: rgb(88 19 179) !important;
    color: #fff;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, .4);
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}

nav li .mdi {
    margin: 0 5px 0 0;
}

nav.on-header {
    position: absolute;
}

nav.fixed {
    width: 100vw;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
    align-items: center;
    justify-content: space-between;
}

nav.fixed.bottom {
    bottom: 0;
}

nav.fixed li {
    width: 100%;
    flex-shrink: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-left: 1px solid rgba(0, 0, 0, .1);
}

nav.fixed li .mdi {
    margin: 0;
    font-size: 20px;
}

nav.fixed li span {
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

nav.on-mobile {
    display: none;
}

#newsletter-message {
    display: none;
    position: relative;
    width: calc(100% - 10px);
    height: 25px;
    margin: -20px 5px -5px 5px;
    background-color: #eee;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, .2);
    border-radius: 0 0 10px 10px;
    line-height: 25px;
    font-size: 16px;
    color: #a25fcc;
    text-shadow: 1px 1px 2px rgb(255 255 255 / 100%);
}

.footer {
    padding: 10px;
    align-items: center;
    justify-content: center;
    background: #595261;
    color: #fff;
}

.mdi-heart {
    color: #f66;
    text-shadow: 0 0 10px #222;
    margin: 0 5px;
    font-size: 20px;
    line-height: 0px;
    vertical-align: middle;
}

.wrapper {
    text-align: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.h2 {
    font-size: 35px;
    line-height: 38px;
}

.h3 {
    font-size: 20px;
}

.bold {
    font-weight: bold;
}

.text-white {
    color: #fff;
}

.text-primary {
    color: #5813b3;
}

.text-superTitle {
    font-size: 80px;
    line-height: 90px;
    max-width: 900px;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    font-weight: 600;
}

.text-title {
    font-size: 50px;
    font-family: "Anton", sans-serif;
    line-height: 50px;
}

.text-subtitle {
    font-size: 19px;
    line-height: 21px;
}

#header {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

#header.full {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #832ABB;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 0 2vh;
    box-shadow: 0 2px 15px 0px rgba(101, 12, 157, .8);
}

#header.full.almost {
    height: 40vh;
}

#header #logo {
    background-size: contain;
    background-image: url('../img/logo_white.png');
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin: auto;
    height: 100px;
}

#header.full #logo {
    height: 20vh;
    width: 100%;
    margin: 2vh;
}

html.light #header #logo {
    background-image: url('../img/logo.png');
}

html.light #header.full #logo {
    background-image: url('../img/logo_white.png');
}

#header.full .subtitulo {
    color: #eee;
    font-size: 25px;
    line-height: 27px;
    text-align: center;
    margin: 2vh;
    max-width: 800px;
}

#header.full .subtitulo.text-title {
    font-size: 40px;
    line-height: 35px;
    font-weight: bold;
    color: #cfb1e2;
}

#buttonActivar {
    display: none;
}

#extra-vivo {
    min-height: 53.5vh;
    width: 100%;
    aspect-ratio: 1.7;
    margin: 40px auto;
}

#extra-vivo>* {
    height: 100%;
}

#proyecto.finalizado.logrado #header {
    box-shadow: inset 0 0 1000px 50px rgb(12 157 63 / 60%), 0 2px 15px 0px rgb(12 157 63 / 80%);
}

#proyecto.finalizado.no-logrado #header {
    box-shadow: inset 0 0 1000px 50px rgb(157 12 12 / 60%), 0 2px 15px 0px rgb(157 12 12 / 80%);
}

#content {
    width: 100%;
    padding-bottom: 30px;
    position: relative;
}

div#login {
    width: 275px;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .9);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login .mensaje {
    color: #832abb;
    font-weight: bold;
    text-align: center;
    margin: 10px;
    height: 0em;
    font-size: 12px;
}

div#dashboard {
    max-width: 900px;
    margin: auto;
    position: relative;
}

div#dashboardMenu {
    background-color: rgba(255, 255, 255, .2);
    padding: 0;
    border-radius: 5px 5px 0 0;
    display: flex;
}

html.light div#dashboardMenu {
    background-color: rgb(152 99 185 / 0.8);
}

div#dashboardMenu ul {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
}

ul {
    margin: 0;
    padding: 0;
}

#dashboardMenu li {
    width: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 15px 10px;
    margin: 3px;
    margin-bottom: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 200ms;
}

#dashboardMenu li:hover {
    background-color: #5813b3;
    transition: all 200ms;
}

#dashboardMenu li.selected {
    background-color: #5813b3;
    border-right: 0px;
    font-weight: bold;
    margin-bottom: 0;
    padding-bottom: 20px;
    border-radius: 5px 5px 0 0;
}

#dashboardMenu li>i {
    margin-right: 8px;
    font-size: 1.3em;
    line-height: 1em;
    vertical-align: bottom;
}

div#dashboardContainer {
    width: 100%;
    flex-grow: 0;
    flex-shrink: 1;
    background-color: rgba(255, 255, 255, .7);
    padding: 30px;
    border-radius: 0 0 5px 5px;
    border-top: 2px solid #5813b3;
    position: relative;
    overflow: hidden;
}

.listHeader {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #5813b3;
}

.listHeader h1 {
    width: 100%;
}

.buttonsRibbon {
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, .1);
    margin: 0 -30px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.buttonsRibbon.between {
    justify-content: space-between;
}

.shadow {
    position: absolute;
    width: calc(100% + 160px);
    height: 100%;
    left: -80px;
    top: 0;
    box-shadow: inset 0 -160px 100px 0 rgba(0, 0, 0, .9);
}

#header>* {
    z-index: 1;
}

#header .shadow {
    position: absolute;
    width: calc(100% + 160px);
    height: 100%;
    left: -80px;
    top: 0;
    z-index: 0 !important;
    box-shadow: inset 0 -100vh 100vh 0 rgba(0, 0, 0, .4);
}

.seccion {
    margin: 80px 0;
    text-align: center;
}

#botonesDestacados {
    margin-top: 50px;
    margin-bottom: -30px;
}

#botonesDestacados .botonDestacado {
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 100ms;
    user-select: none;
    background-color: rgb(250 253 255) !important;
    color: rgb(83 158 208);
    border-radius: 30px;
    border: 3px solid rgb(83 158 208);
    box-shadow: 0 0 20px rgb(83 158 208);
    font-weight: bold;
    font-size: 25px;
    text-transform: uppercase;
    animation: pulse-shadow 1s infinite;
    animation-direction: alternate;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 10px rgb(83 158 208);
    }

    100% {
        box-shadow: 0 0 20px 5px rgb(83 158 208);
    }
}

#botonesDestacados .botonDestacado:hover {
    box-shadow: inset 0 0 0px 2px #fff;
    background-color: rgba(255, 255, 255, .1);
    transition: all 100ms;
}

#contadores_wrapper {
    position: relative;
    width: max-content;
    margin: 0 auto;
}

#contadores_wrapper>span {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 30px;
    text-align: center;
    padding: 10px 10px;
    background-color: #f4e4ff;
    border-radius: 10px 10px 0 0;
    color: #5813b3;
    font-weight: bold;
    box-shadow: 0 0px 1px 1px rgb(88 19 179 / 20%);
    z-index: 1;
}


#contadores_container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 1px 1px 1px rgb(88 19 179 / 20%);
    overflow: hidden;
}

.contador {
    line-height: 36px;
    font-size: 25px;
    font-weight: bold;
    color: #5813b3;
    width: 100%;
    text-align: center;
    border-right: 1px solid rgb(88 19 179 / 20%);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contador:last-of-type {
    border-right: none;
}

.contador:before {
    display: inline-block;
    font: normal normal normal 45px/1 "Material Design Icons";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contador.twitter {
    color: rgb(29 161 242 / 100%);
    background-color: rgb(29 161 242 / 10%);
}

.contador.twitter:before {
    content: '\F0544';
}

.contador.facebook {
    color: rgb(66 103 178 / 100%);
    background-color: rgb(66 103 178 / 10%);
}

.contador.facebook:before {
    content: '\F020C';
}

.contador.instagram {
    color: rgb(193 53 132);
    background-color: rgb(193 53 132 / 10%);
}

.contador.instagram:before {
    content: '\F02FE';
}

.contador.email {
    color: rgb(178 66 66 / 100%);
    background-color: rgb(178 66 66 / 10%);
}

.contador.email:before {
    content: '\F0EE3';
}

.contador.telefono {
    color: rgb(88 19 179 / 100%);
    background-color: rgb(88 19 179 / 10%);
}

.contador.telefono:before {
    content: '\F03F4';
}

.list {
    margin-top: 20px;
}

.listPrincipal {
    display: none;
}

.list.listProyectos {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
}

.list.listProyectos>* {
    margin: 10px;
}

.sin-proyectos {
    font-size: 24px;
    color: #444;
    background-color: rgba(255, 255, 255, .5);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-height: 400px
}

.listItem {
    margin-bottom: 2px;
    border-radius: 2px;
    transition: all 100ms;
    width: calc(100% / 5 - 10px);
    max-width: 450px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.listItem.proyecto {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    width: calc(50% - 20px);
    cursor: pointer;
}

.listItem.politico {
    width: calc(100% / 5 - 10px);
}

.listItem:hover {
    background-color: rgba(255, 255, 255, .9);
    transition: all 100ms;
}

.listItem.proyecto:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
    transition: all 300ms;
}

.listItem.proyecto>.placeholder {
    padding: 130px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.listItem.proyecto .image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-image: var(--bg-image);
}

.listItem.proyecto .image.blured {
    filter: blur(5px);
}

.listItem.proyecto .text {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    text-align: left;
    color: #eee;
}

.listItem.proyecto .text .title {
    font-size: 30px;
    font-weight: bold;
}

.listItem.proyecto .text .resumen {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5em;
    max-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listItem.proyecto .stats {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: stretch;
}

.listItem.proyecto .stats>div {
    padding: 20px 0px;
    font-size: 20px;
    font-weight: bold;
    border-right: 2px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    line-height: 1em;
    width: 100%;
}

.listItem.proyecto .stats>div:last-of-type {
    border-right: none;
}

.listItem.proyecto .stats>div:before,
.listItem.proyecto .stats>div.btn-activa:after {
    content: '';
    margin-right: 5px;
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.listItem.proyecto .stats>div.aFavor {
    background-color: #d5f1cf;
    color: #0f8e36;
}

.listItem.proyecto .stats>div.seAbstienen {
    background-color: #e1e2e1;
    color: #666;
}

.listItem.proyecto .stats>div.enContra {
    background-color: #f1cfcf;
    color: #8e0f0f;
}

.listItem.proyecto .stats>div.aFavor:before {
    content: "\F0E1E";
}

.listItem.proyecto .stats>div.seAbstienen:before {
    content: "\F0376";
}

.listItem.proyecto .stats>div.enContra:before {
    content: "\F1398";
}

.listItem.proyecto .stats>div.btn-activa {
    flex-shrink: 1;
    text-align: center;
    color: #5813b3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px 30px;
}

.listItem.proyecto .stats>div.btn-activa:after {
    content: "\F00E6";
    margin-left: 10px;
    margin-right: 0;
}

.listItem.proyecto .stats>div.btn-activa:hover {
    background-color: #5813b3;
    color: #eee;
}

.listItem.proyecto .stats>div.btn-activa.finalizado {
    color: #6d6d6d;
}

.listItem.proyecto .stats>div.btn-activa.finalizado:after {
    content: "";
}

.listItem.proyecto .stats>div.btn-activa.finalizado:hover {
    background-color: #6d6d6d;
    color: #eee;
}


.listItem.proyecto .stats>div.btn-activa.finalizado.logrado {
    color: #35a971;
}

.listItem.proyecto .stats>div.btn-activa.finalizado.logrado:after {
    content: "\F1056";
}

.listItem.proyecto .stats>div.btn-activa.finalizado.logrado:hover {
    background-color: #35a971;
    color: #eee;
}

.listItem.proyecto .stats>div.btn-activa.finalizado.no-logrado {
    color: #a93535;
}

.listItem.proyecto .stats>div.btn-activa.finalizado.no-logrado:after {
    content: "\F0C6D";
}

.listItem.proyecto .stats>div.btn-activa.finalizado.no-logrado:hover {
    background-color: #a93535;
    color: #eee;
}

.resultadoEsperado {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
}

.resultadoEsperado[data-posicion='3'] {
    background-color: rgb(220 49 49 /30%);
}

.resultadoEsperado-titulo {
    font-size: 35px;
    font-weight: bolder;
    text-align: center;
}

.resultadoEsperado-posicion {
    font-family: 'Baloo 2';
    font-size: 45px;
}

.resultadoEsperado[data-posicion='3'] .resultadoEsperado-posicion {
    color: #8e0f0f;
    text-shadow: 0 0 50px rgb(220 49 49 / 80%);
}


.grupos_filtros {
    margin: 20px 0;
    display: flex;
    width: 100%;
}

.grupos_filtros .content>label:before {
    color: #5813b3;
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: 25px;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px
}

.grupos_filtros .grupos {
    padding: 10px;
    background-color: rgb(238 231 247);
    margin-right: 5px;
    border-radius: 10px 0 0 10px;
}

.grupos_filtros .grupos .content {
    display: block;
    align-items: center;
}

.grupos_filtros .grupos .content>label {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #5813b3;
    margin-bottom: 10px;
}

.grupos_filtros .grupos .content>label:before {
    content: '\F02B1';
}

.grupos_filtros .filtros {
    width: 100%;
    padding: 10px;
    background-color: rgb(238 231 247);
    margin-right: 5px;
    border-radius: 0 10px 10px 0;
    flex-grow: 0;
    flex-shrink: 1;
}

.grupos_filtros .filtros .content {
    display: block;
    align-items: center;
}

.grupos_filtros .filtros .content>label {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #5813b3;
    margin-bottom: 10px;
}

.grupos_filtros .filtros .content>label:before {
    content: '\F0232';
}

.grupos_filtros .filtros .selects {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-grow: 0;
    flex-shrink: 1;
}

.grupos_filtros .filtros .content .selects .sumo_posicion {
    flex-shrink: 0;
    flex-grow: 0;
    width: calc(50% - 5px);
}

.grupos_filtros .filtros .content .selects .sumo_bloque {
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

.grupos_filtros .filtros .content .selects .sumo_provincia {
    width: calc(50% - 5px);
    flex-grow: 0;
    flex-shrink: 0;
}

.listPoliticos {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
}

#proyecto .todosPoliticos {
    display: none;
}

#proyecto .listPoliticos.nodestacados {
    /* max-height: 70vh; */
    overflow: auto;
}

#proyecto .listPoliticos.nodestacados .grupo {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #5813b336;
    margin-bottom: 20px;
}

#proyecto .listPoliticos.nodestacados .grupo-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: rgba(0, 0, 0, .05);
    padding: 10px;
}

#proyecto .listPoliticos.nodestacados .grupo .header {
    padding: 10px;
    background-color: rgb(216 203 233);
    /* border-bottom: 3px solid rgb(209 206 216); */
    border-radius: 5px 5px 0 0;
    font-size: 30px;
    text-shadow: 0 1px 0px rgba(0, 0, 0, .2);
    font-weight: bold;
    display: flex;
    align-items: center;
}

#proyecto .listPoliticos.nodestacados .grupo .header img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border: 3px solid;
    border-radius: 10px;
    margin-right: 10px;
    background-color: #fff;
}

#proyecto .listPoliticos.nodestacados .grupo .header._provincia img {
    object-fit: contain;
    border: none;
    background-color: #d8cbe9;
}

#proyecto .listPoliticos.nodestacados .grupo .header:before {
    display: block;
    font: normal normal normal 40px/1 "Material Design Icons";
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
}

#proyecto .listPoliticos.nodestacados .grupo .header.se-abstiene {
    color: #d0a404;
    background-color: #f1eecb;
    text-shadow: none;
}

#proyecto .listPoliticos.nodestacados .grupo .header.se-abstiene:before {
    content: '\F0376';
}

#proyecto .listPoliticos.nodestacados .grupo .header.a-favor {
    color: #0f8e36;
    background-color: #d5f1cf;
    text-shadow: none;
}

#proyecto .listPoliticos.nodestacados .grupo .header.a-favor:before {
    content: "\F0E1E";
}

#proyecto .listPoliticos.nodestacados .grupo .header.en-contra {
    color: #8e0f0f;
    background-color: #f1cfcf;
    text-shadow: none;
}

#proyecto .listPoliticos.nodestacados .grupo .header.en-contra:before {
    content: "\F1398";
}


#proyecto [data-posicion='3'] .listPoliticos.nodestacados .grupo .header.a-favor {
    color: #8e0f0f;
    background-color: #f1cfcf;
    text-shadow: none;
}

#proyecto [data-posicion='3'] .listPoliticos.nodestacados .grupo .header.a-favor:before {
    content: "\F1398";
}

#proyecto [data-posicion='3'] .listPoliticos.nodestacados .grupo .header.en-contra {
    color: #0f8e36;
    background-color: #d5f1cf;
    text-shadow: none;
}

#proyecto [data-posicion='3'] .listPoliticos.nodestacados .grupo .header.en-contra:before {
    content: "\F0E1E";
}



button.openPoliticos,
button.closePoliticos,
button.accent {
    text-align: center;
    width: auto;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 100px;
    /* box-shadow: 0 0 0 3px rgb(88 19 179 / 50%); */
    /* color: rgb(88 19 179); */
    font-weight: 600;
    font-size: 19px;
    text-transform: uppercase;
    position: relative;
}

button.closePoliticos {
    display: none;
    background-color: rgb(88 19 179 / 100%);
    color: #fff;
}

button.openPoliticos:hover {
    box-shadow: 0 0 0 3px rgb(88 19 179 / 100%);
}

button.closePoliticos:hover {
    box-shadow: 0 0 0 3px rgb(88 19 179 / 100%);
}

.listPoliticos>*,
.listPoliticos .grupo-lista>* {
    flex-shrink: 0;
}

button.inverted {
    background-color: #f7eaf9 !important;
    color: #5813b3 !important;
    border: 2px solid #5813b3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    padding: 12px 30px !important;
    /* Slightly more padding for visibility */
    transition: all 200ms !important;
    box-shadow: 0 2px 4px rgba(88, 19, 179, 0.1) !important;
}

.listItem.politico>.placeholder {
    padding: 85px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    z-index: 2;
}

.listItem.politico .image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
}

.listItem.politico .image.partido {
    position: absolute;
    width: 35px;
    height: 35px;
    left: auto;
    top: auto;
    right: 5px;
    bottom: 5px;
    border-radius: 35px;
    border: 3px solid;
    background-position: center;
    background-size: cover;
    z-index: 10;
}

.listItem.politico .text {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    text-align: left;
    color: #eee;
}

.listItem.politico .text>* {
    text-shadow: 0 0 5px rgba(0, 0, 0, .3);
    padding-right: 25px;
}

.listItem.politico .text .apellido {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listItem.politico .text .nombre {
    font-size: 12px;
    font-weight: bold;
}

.listItem.politico .text .bloque {
    font-size: 11px;
    margin-top: 5px;
    line-height: 1em;
    padding: 3px;
    border-radius: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
}

.listItem.politico .posicion {
    background-color: #e8def5;
    color: #5813b3;
    position: absolute;
    right: 0;
    top: 0;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 1px 30px;
    border-radius: 0 0 0 5px;
    padding: 0 5px;
}

.listItem.politico .posicion:before {
    content: '\F1522 ';
    font-weight: bold;
    font-size: 13px;
    display: block;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.listItem.politico .posicion.posicion-0 {
    background-color: #d5f1cf;
    color: #0f8e36;
}

.listItem.politico .posicion.posicion-1 {
    background-color: #edf1cf;
    color: #d0a404;
}

.listItem.politico .posicion.posicion-2 {
    background-color: #f1cfcf;
    color: #8e0f0f;
}


.seccion[data-posicion='3'] .listItem.politico .posicion.posicion-0 {
    background-color: #f1cfcf;
    color: #8e0f0f;
}

.seccion[data-posicion='3'] .listItem.politico .posicion.posicion-2 {
    background-color: #d5f1cf;
    color: #0f8e36;
}

.shadow.posicion--1 {
    box-shadow: inset 0 -20px 20px 0 rgb(223 178 249 / 40%), inset 0 -80px 80px 0 rgba(0, 0, 0, .8);
}

.shadow.posicion-0 {
    box-shadow: inset 0 -20px 20px 0 rgba(73, 191, 109, .4), inset 0 -80px 80px 0 rgba(0, 0, 0, .8);
}

.shadow.posicion-1 {
    box-shadow: inset 0 -20px 20px 0 rgba(236, 205, 52, .4), inset 0 -80px 80px 0 rgba(0, 0, 0, .8);
}

.shadow.posicion-2 {
    box-shadow: inset 0 -20px 20px 0 rgba(236, 52, 52, .4), inset 0 -80px 80px 0 rgba(0, 0, 0, .8);
}

.seccion[data-posicion='3'] .shadow.posicion-0 {
    box-shadow: inset 0 -20px 20px 0 rgba(236, 52, 52, .4), inset 0 -80px 80px 0 rgba(0, 0, 0, .8);
}

.seccion[data-posicion='3'] .shadow.posicion-2 {
    box-shadow: inset 0 -20px 20px 0 rgba(73, 191, 109, .4), inset 0 -80px 80px 0 rgba(0, 0, 0, .8);
}

.listItem.politico .posicion.posicion-0:before {
    content: "A favor";
}

.listItem.politico .posicion.posicion-1:before {
    content: "Se abstiene";
}

.listItem.politico .posicion.posicion-2:before {
    content: "En contra";
}

.listItem.politico .line {
    height: 5px;
    width: 100%;
}

.listItem.politico .line.posicion--1 {
    color: #d5f1cf;
    background-color: #5813b3;
}

.listItem.politico .line.posicion-0 {
    color: #d5f1cf;
    background-color: #49bf6d;
}

.listItem.politico .line.posicion-1 {
    color: #edf1cf;
    background-color: #eccd34;
}

.listItem.politico .line.posicion-2 {
    color: #f1cfcf;
    background-color: #ec3434;
}

.seccion[data-posicion='3'] .listItem.politico .line.posicion-0 {
    color: #f1cfcf;
    background-color: #ec3434;
}

.seccion[data-posicion='3'] .listItem.politico .line.posicion-2 {
    color: #d5f1cf;
    background-color: #49bf6d;
}

.listItem.politico .stats {
    width: 100%;
    align-items: stretch;
    justify-content: center;
    padding: 2px 4px 6px 4px;
    display: grid;
    grid-template-columns: 1fr;
    background-color: #fff;
    box-shadow: inset 0 -1px 0px 1px rgba(0, 0, 0, .2);
    border-radius: 0 0 5px 5px;
}

.listItem.politico[data-posicion='0'] .stats {
    box-shadow: inset 0 0px 10px 2px rgb(67 175 100 / 20%), inset 0 -1px 0 1px rgb(67 175 100 / 50%);
}

.listItem.politico[data-posicion='1'] .stats {
    box-shadow: inset 0 0px 10px 2px rgb(223 194 49 / 20%), inset 0 -1px 0 1px rgb(223 194 49 / 50%);
}

.listItem.politico[data-posicion='2'] .stats {
    box-shadow: inset 0 0px 10px 2px rgb(223 49 49 / 20%), inset 0 -1px 0 1px rgb(223 49 49 / 50%);
}

.seccion[data-posicion='3'] .listItem.politico[data-posicion='0'] .stats {
    box-shadow: inset 0 0px 10px 2px rgb(223 49 49 / 20%), inset 0 -1px 0 1px rgb(223 49 49 / 50%);
}

.seccion[data-posicion='3'] .listItem.politico[data-posicion='2'] .stats {
    box-shadow: inset 0 0px 10px 2px rgb(67 175 100 / 20%), inset 0 -1px 0 1px rgb(67 175 100 / 50%);
}

.listItem.politico .stats>div {
    flex-shrink: 1;
    flex-grow: 1;
    padding: 5px 0;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.listItem.politico .stats>div:last-of-type {
    border-right: none;
}

.listItem.politico .stats .actionButton {
    font-size: 20px;
    color: rgba(0, 0, 0, .8);
    cursor: pointer;
    border-radius: 5px !important;
    width: auto;
    height: 30px;
    padding: 7px;
    margin: 1px 0px;
    BOX-SHADOW: inset 0 0 0 2px rgba(0, 0, 0, .2), 0 1px 2px rgba(0, 0, 0, .1);
}

.listItem.politico .stats .actionButton:first-of-type {
    border-radius: 0px 0 0 5px;
}

.listItem.politico .stats .actionButton:last-of-type {
    border-radius: 0 0 5px 0;
}

.listItem.politico .stats .actionButton:first-of-type:last-of-type {
    border-radius: 5px;
}

.listItem.politico .stats .actionButton.twitter {
    background-color: rgb(29 161 242 / 30%);
}

.listItem.politico .stats .actionButton.facebook {
    background-color: rgb(66 103 178 / 30%);
}

.listItem.politico .stats .actionButton.email {
    background-color: rgb(178 66 66 / 30%);
}

.listItem.politico .stats .actionButton.instagram {
    background-color: rgb(193 53 132 / 30%);
}

.listItem.politico .stats .actionButton.telefono {
    background-color: rgb(200 200 200 / 30%);
}

.listItem.politico .stats .actionButton.noNetwork {
    background-color: rgb(210 200 240 / 30%);
}

.listItem.politico .stats .actionButton:before {
    content: '';
    /* position: absolute; */
    left: 5px;
    font: normal normal normal 20px/1 "Material Design Icons";
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.listItem.politico .stats .actionButton span {
    width: 100%;
    padding: 0px 10px;
    font-size: 15px;
    line-height: 14px;
    font-weight: normal;
    /* display: none; */
}

.listItem.politico .stats .actionButton:not(.noNetwork):after {
    /* content: '\F0B23'; */
    position: absolute;
    right: 5px;
    transform: rotate(-30deg);
    font: normal normal normal 20px/1 "Material Design Icons";
    line-height: 20px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.listItem.politico .stats .actionButton.twitter:before {
    content: '\F0544';
}

.listItem.politico .stats .actionButton.facebook:before {
    content: '\F020C';
}

.listItem.politico .stats .actionButton.email:before {
    content: '\F0EE3';
}

.listItem.politico .stats .actionButton.instagram:before {
    content: '\F02FE';
}

.listItem.politico .stats .actionButton.telefono:before {
    content: '\F03F4';
}

.listItem.politico .stats .actionButton.noNetwork:before {
    content: '\F01F8';
}

.listItem.politico .stats .actionButton:not(.noNetwork):hover {
    color: #fff;
}

.listItem.politico .stats .actionButton.twitter:hover {
    background-color: rgb(29 161 242 / 100%);
}

.listItem.politico .stats .actionButton.facebook:hover {
    background-color: rgb(66 103 178 / 100%);
}

.listItem.politico .stats .actionButton.email:hover {
    background-color: rgb(178 66 66);
}

.listItem.politico .stats .actionButton.instagram:hover {
    background-color: rgb(193 53 132 / 100%);
}

.listItem.politico .stats .actionButton.telefono:hover {
    background-color: rgb(88 19 179);
}

#proyecto .descripcion {
    background-color: rgba(255, 255, 255, .6);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    padding: 10px 20px;
    border-radius: 10px;
}

#proyecto .descripcion img {
    max-width: 100%;
}

.listContenidoExtra {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, 50%);
}

.listItem.contenidoExtra {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    border: 2px solid #5813b3;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}

.listItem.contenidoExtra.full {
    width: 100% !important;
    height: 50vh;
    max-width: 10000000px;
    grid-column-end: 3;
    grid-column-start: 1;
}

.listItem.contenidoExtra a {
    text-decoration: none;
    height: auto;
}

.listItem.contenidoExtra .titulo {
    background-color: #dcd0ec;
    color: #25084c;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    height: 100%;
}

.listItem.contenidoExtra .titulo span {
    padding: 10px;
    width: 100%;
}

.listItem.contenidoExtra .titulo:after {
    content: '\F0337';
    font: normal normal normal 25px/1 "Material Design Icons";
    line-height: 25px;
    text-rendering: auto;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 10px;
    border-left: 2px solid rgba(0, 0, 0, .2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.listItem.contenidoExtra .titulo.tipo-0:after {
    content: '\F0337';
}

.listItem.contenidoExtra .titulo.tipo-1:after {
    content: '\F05C3';
}

.listItem.contenidoExtra .contenido {
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 1;
    position: relative;
    height: auto;
}

.listItem.contenidoExtra .contenido .contenidoExtra-generico {
    height: 100%;
    overflow: hidden;
    min-height: 200px;
}

.listItem.contenidoExtra .contenido .contenidoExtra-youtube {
    height: 100%;
    min-height: 200px;
    margin-bottom: -6px;
}

.listItem.contenidoExtra .contenido .contenidoExtra-youtube iframe {
    min-height: 200px;
}

.listItem.contenidoExtra .contenido .contenidoExtra-instagram {
    height: fit-content;
    margin-bottom: -6px;
}

.listItem.contenidoExtra .contenido .contenidoExtra-paginaEmbebida {
    height: 100%;
}

.listItem.contenidoExtra .placeholder {
    padding: 50% 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.listItem.contenidoExtra .image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
}

.listItem.contenidoExtra .text {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    text-align: left;
    color: #eee;
}

.listItem.contenidoExtra .text .resumen {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3em;
}

.listOrganizaciones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.listOrganizaciones a {
    margin: 10px;
    box-shadow: 0 2px 5px 0px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.listOrganizaciones img {
    width: 100%;
}

#organizacionesOrganizan .listOrganizaciones a {
    width: 200px;
}

#organizacionesAuspician .listOrganizaciones a {
    width: 150px;
}

#organizacionesApoyan .listOrganizaciones a {
    width: 150px;
}

.contacto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px;
    background-color: #eee;
    color: #5813b3;
    font-weight: bold;
    text-transform: uppercase;
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.contacto-item i {
    font-size: 50px;
    line-height: 50px;
}

.contacto-item span {
    font-size: 10px;
}

.aportes-banner {}

.aportes-banner nav li {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.aportes-banner nav li .mdi {
    font-size: 30px;
    margin-right: 10px;
    line-height: 20px
}

.btnAporte {
    padding: 15px 30px;
    border-radius: 50px;
    background-color: rgb(193 149 221 / 20%);
    margin: 0 10px;
    font-weight: bold;
    font-size: 20px;
    transition: all 200ms;
}

.btnAporte:hover {
    background-color: rgb(88 19 179);
    color: rgb(243 234 248);
    transition: all 200ms;
}

#aportes {
    position: relative;
}

#aportes .mdc-select,
#aportes .mdc-text-field {
    margin: 5px
}

#aportes .mdc-select:first-child,
#aportes .mdc-text-field:first-child {
    margin-left: 0
}

#aportes .mdc-select:last-child,
#aportes .mdc-text-field:last-child {
    margin-right: 0
}

#aportes .mdc-text-field#cardNumber-label .mdc-text-field__icon {
    display: flex;
    align-items: center;
    z-index: 1;
}

#aportes .mdc-text-field#cardNumber-label .mdc-text-field__icon:before {
    content: '';
    width: 32px;
    height: 32px;
    background-image: var(--img);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

input:-internal-autofill-selected {
    font-weight: bold;
    margin: 0 -15px;
    padding: 0 15px !important;
    width: calc(100% + 30px);
}

#aportes button.accent {
    padding-right: 70px;
}

#aportes button.accent:hover {
    background-color: rgb(88 19 179);
    color: #fff;
}

#aportes button.accent i {
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 10px 50px 50px 10px;
    font-size: 25px;
    line-height: 0px;
    vertical-align: middle;
    background-color: rgb(88 19 179);
    color: #fff;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pago-resultado {
    padding: 50px;
}

#pago-resultado *.approved {
    color: #179866;
}

#pago-resultado *.in_process {
    color: #f5c02c;
}

#pago-resultado *.rejected {
    color: #ec4444;
}

#pago-resultado *.unknown {
    color: #8c4484;
}

#pago-resultado #imagen {
    font-size: 100px
}

#pago-resultado #titulo {
    margin: 0;
}

/******************************************/
.noItems {
    font-size: 24px;
    font-weight: 600;
    color: #777;
    padding: 10px;
    text-align: center;
}

.listContenidoExtra .noItems {
    grid-column-start: 1;
    grid-column-end: 3;
}

.listItem.posicionProyecto {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 0 8px;
}

.listItem.proyecto_tipoPoliticos {
    padding: 0px;
    margin-bottom: 10px;
}

.listItem.proyecto_tipoPoliticos>div>div>span {
    font-size: 20px;
    font-weight: bold;
}

.listPoliticosPorTipo {
    display: none;
}

.listItemEdit {
    display: none;
}

.listItemEdit .content {
    display: none;
    padding: 20px;
    background-color: rgb(249 240 255);
    border-radius: 0 0 10px 10px;
}

.listItemEdit .content--active {
    display: block;
}

.listItemData {
    display: flex;
    align-items: center;
}

.listItemData .nombre {
    font-weight: bold;
}

.listItemData .itemColor {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 20px;
    border: 4px solid rgba(0, 0, 0, .2);
}

.listItemData>span,
.editHeader>span,
.editInline>.mdc-text-field {
    width: 100%;
}

.listItemData>*,
.editInline>* {
    margin: auto 5px;
}

.listItemData> :last-child,
.editInline> :last-child {
    margin: auto 0px;
}

.listItemData .labelBloque,
.listItemData .labelTipo {
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 3px;
    background-color: #edd4fd;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    margin-top: 3px;
    margin-left: 0;
}

input.colorPicker {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, .2);
    cursor: pointer;
    color: rgba(0, 0, 0, .6) !important;
    font-weight: bold;
    font-size: 23px;
    text-align: center;
    position: relative;
}

input.colorPicker:before {
    content: "\F03EB";
    display: block !important;
    z-index: 1;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: 17px;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.buttonsContainer {
    flex-shrink: 0;
    display: flex;
}

button {
    border: 1px solid rgba(0, 0, 0, .05);
    border-bottom-width: 2px;
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 200ms;
}

button.iconed {
    width: 30px;
    height: 30px;
}

button:hover {
    background-color: #ccc;
    transition: all 200ms;
}

button.iconed:before {
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: 17px;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button.edit {
    background-color: #eadec3;
    color: #c7a55d;
}

button.edit:hover {
    background-color: #c7a55d;
    color: #eadec3;
}

button.edit:before {
    content: "\F03EB";
}

button.delete {
    background-color: #eac3c3;
    color: #cc7474;
}

button.delete:hover {
    background-color: #cc7474;
    color: #eac3c3;
}

button.delete:before {
    content: "\F0A79";
}

button.save {
    background-color: #c3eac3;
    color: #5aa067;
}

button.save:hover {
    background-color: #74cc84;
    color: #dbf1db;
}

button.save:before {
    content: "\F0193";
}

button.cancel:before {
    content: "\F05AD";
}

button.addMensaje:before,
button.addContenido:before {
    content: "\F0415";
}

.editHeader,
.editInline {
    display: flex;
    align-items: center;
}

.editHeader {
    margin-bottom: 20px;
}

input[type=file] {
    display: none;
}

img.imageFrame {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, .1);
    overflow: hidden;
    display: block;
    object-fit: contain;
}

img.imageFrame.big {
    width: 150px;
    height: 150px;
}

img.imageFrame.full {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

img.imageFrame.circle {
    border-radius: 100px;
    padding: 3px;
    object-fit: cover;
}

img.imageFrame.imageUpload {
    cursor: pointer;
}

.imageUpload_label {
    position: relative;
    width: auto;
}

.imageUpload_label.big {
    width: 150px;
}

.imageUpload_label.full {
    width: 100%;
}

.imageUpload_label:after {
    content: 'SELECCIONAR UNA IMAGEN';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 15px solid rgba(255, 255, 255, .3);
    background-color: rgba(0, 0, 0, .1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: all 200ms;
}

.imageUpload_label.circle:after {
    border-radius: 100vh;
}

.imageUpload_label:hover:after {
    opacity: 1;
}

.input-toggle {
    flex-shrink: 0;
}

.input-toggle input {
    display: none;
}

.input-toggle input+label {
    background-color: #fff;
    color: #5813b3;
    border: 1px solid #5813b3;
    padding: 5px;
    transition: all 200ms;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

.input-toggle input+label:first-of-type {
    border-radius: 5px 0 0 5px;
    border-right: 0;
}

.input-toggle input+label:last-of-type {
    border-radius: 0 5px 5px 0;
    border-left: 0;
}

.input-toggle input:checked+label {
    background-color: #5813b3;
    color: #fff;
    transition: all 200ms;
}

.input-toggle input:checked+label.aFavor {
    background-color: #4CAF50;
}

.input-toggle input:checked+label.seAbstiene {
    background-color: #607D8B;
}

.input-toggle input:checked+label.enContra {
    background-color: #F44336;
}

.input-toggle input+label i {
    font-size: 20px;
    line-height: 20px;
}

.input-checkIcon {
    flex-shrink: 0;
}

.input-checkIcon input {
    display: none;
}

.input-checkIcon input+label {
    background-color: #fff;
    color: #5813b3;
    border: 1px solid #5813b3;
    border-radius: 5px;
    padding: 5px;
    transition: all 200ms;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

.input-checkIcon input:checked+label {
    background-color: #5813b3;
    color: #fff;
    transition: all 200ms;
}

.input-checkIcon input:checked+label.destacado {
    background-color: #f4c136;
}

.input-checkIcon input+label i {
    font-size: 20px;
    line-height: 20px;
}

#descripcionEditor {
    background-color: rgba(255, 255, 255, .8);
    height: 350px;
    padding-bottom: 66px;
}

.mensajeProyecto {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .2);
    border-left-width: 0;
    border-right-width: 0;
    margin: 0;
    margin-top: -1px;
}

.mensajesHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px 5px 0 0;
}

.mensajesHeader.aFavor {
    color: #fff;
}

.mensajesHeader.aFavor {
    color: rgb(76 175 80);
    background-color: rgb(242 255 243);
}

.mensajesHeader.abstencion {
    color: #607D8B;
    background-color: rgb(242 245 255);
}

.mensajesHeader.enContra {
    color: #F44336;
    background-color: rgb(255 242 242);
}

.listMensajes {
    margin-bottom: 20px;
}

.listMensajes.aFavor {
    background-color: rgb(242 255 243);
}

.listMensajes.abstencion {
    background-color: rgb(242 245 255);
}

.listMensajes.enContra {
    background-color: rgb(255 242 242);
}

#header button {
    padding: 20px 40px;
    font-size: 20px;
    background-color: #9826c0;
    box-shadow: 0 0px 2px 5px rgb(172 12 224 / 21%);
    color: #eee;
    font-weight: bold;
}

button.rounded {
    border-radius: 1000px;
}

@media screen and (max-width: 1024px) {
    #contadores_wrapper {}

    #contadores_container {
        width: 80%;
        padding: 10px;
    }

    .contador {
        line-height: 60px;
        font-size: 40px;
    }

    .contador:before {
        font: normal normal normal 30px/1 "Material Design Icons";
    }
}

@media screen and (max-width: 860px) {
    nav.on-mobile {
        display: flex;
        transition: all 100ms;
    }

    nav.on-mobile.bottom {
        bottom: -60px;
    }

    nav.on-mobile.bottom.show {
        bottom: 0;
    }

    #proyecto {
        padding-bottom: 60px;
    }

    .listItem.politico {
        width: calc(100% / 4 - 10px);
    }

    .grupos_filtros {
        flex-direction: column;
    }

    .grupos_filtros>div {
        width: 98% !important;
        margin: 0 1% 5px 1%;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .grupos_filtros .grupos {
        border-radius: 10px 10px 0 0;
    }

    .grupos_filtros .grupos .SumoSelect {
        width: 100%;
    }

    .grupos_filtros .filtros {
        border-radius: 0 0 10px 10px;
    }

    .grupos_filtros .filtros .selects {
        flex-direction: column;
    }

    .grupos_filtros .filtros .selects .SumoSelect {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 2px;
    }

    .grupos_filtros .filtros .selects .SumoSelect:first-of-type>.CaptionCont {
        border-radius: 10px 10px 0 0 !important;
    }

    .grupos_filtros .filtros .selects .SumoSelect:last-of-type>.CaptionCont {
        border-radius: 0 0 10px 10px !important;
    }

    ventanita {
        display: flex;
        overflow: hidden;
        bottom: -100vh;
        align-items: flex-end;
        transition: 300ms;
        background-color: rgba(255, 255, 255, .8);
    }

    ventanita.show {
        bottom: 0;
        transition: 300ms;
    }

    ventanita-container {
        max-height: 90vh;
        width: 100vw;
        border-radius: 15px 15px 0 0;
        padding: 10px;
    }

    ventanita-close {
        border-radius: 15px 5px 15px 5px;
        left: 0px;
        top: 0px;
        width: 50px;
        height: 50px;
        box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .1);
    }

    ventanita-close:before {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    ventanita-content {
        overflow: auto;
        padding: 0 10px 0 0;
    }

    .btnAporte {
        padding: 10px 20px;
        margin: 0 5px;
        font-size: 18px;
    }

    .aportes-banner {}

    .aportes-banner nav {
        display: block;
    }

    .aportes-banner nav li {
        border-radius: 10px;
        padding: 15px 20px;
        margin: 20px 0 0 0;
        justify-content: center;
    }

    .aportes-banner nav li .mdi {
        font-size: 35px;
    }
}

@media screen and (max-width: 640px) {
    #header.full .text-superTitle {
        font-size: min(65px, 17vw);
        line-height: 90px;
    }

    #header.full .subtitulo {
        font-size: 18px;
    }

    .seccion {
        margin: 60px 0;
    }

    .seccion:first-of-type {
        margin-top: 10px;
    }

    .listItem.politico {
        width: calc(100% / 3 - 10px);
    }

    .listItem.politico .stats .actionButton {
        margin: 1px 0px;
        height: 40px;
    }

    .listItem.proyecto .stats>div.btn-activa {
        padding: 20px 10px;
    }

    .shadow {
        width: calc(100% + 120px);
        left: -60px;
        box-shadow: inset 0 -120px 100px 0 rgba(0, 0, 0, .9);
    }

    #contadores_wrapper {}

    #contadores_container {
        width: 100%;
        padding: 0;
        border-radius: 0;
    }

    .contador {
        line-height: 40px;
        font-size: 25px;
        padding: 10px 0;
    }

    .contador:before {
        font: normal normal normal 25px/1 "Material Design Icons";
    }

    .footer .wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer .wrapper>* {
        width: auto;
        margin: 10px 0;
    }

}

@media screen and (max-width: 480px) {
    .text-title {
        font-size: 40px;
        line-height: 40px;
    }

    #header.full {
        height: 70vh;
    }

    #header.full.almost {
        height: 50vh;
    }

    #landing #header.full {
        height: 50vh;
    }

    #landing #header .superTitle {
        margin-bottom: 20px;
    }

    nav.on-header li:not(.no-hide) span {
        display: none;
    }

    nav.on-header li .mdi {
        margin: 0 5px;
    }

    .wrapper {
        padding: 5px;
    }

    #extra-vivo {
        height: auto;
        margin: 40px auto 0 auto;
        padding: 0;
    }

    .listItem.contenidoExtra.full {
        width: 100% !important;
        height: 100% !important;
        max-width: calc(100vw - 20px);
        margin: 5px;
    }

    .listItem.contenidoExtra.full.paginaEmbebida {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: .5;
        max-height: 80vh;
        max-width: calc(100vw - 20px);
        margin: 5px;
    }

    .listProyectos {
        flex-wrap: wrap;
    }

    .listItem.proyecto {
        width: calc(100% - 10px);
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    .listItem.proyecto>.placeholder {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .listItem.politico {
        width: calc(100% / 2 - 10px);
    }

    .listContenidoExtra {
        grid-template-columns: repeat(1, 100%);
    }

    .listItem.contenidoExtra {
        margin-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
        flex-shrink: 0;
        width: calc(100% - 20px);
    }

    .grupos_filtros .grupos .SumoSelect {
        width: 100%;
    }

    .grupos_filtros .filtros .selects {
        width: 100%;
        flex-direction: column;
    }

    #botonesDestacados .botonDestacado {
        margin: 5px;
        padding: 10px 15px;
        font-size: 19px;
    }
}

.open .optWrapper.isFloating {
    display: flex;
    flex-direction: column;
}

.open .optWrapper.isFloating:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: -1;
}

.open .optWrapper.isFloating .select-all {
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.open .optWrapper.isFloating .options {
    position: relative;
    z-index: 10;
    background-color: #fff;
    box-shadow: none;
}

.optWrapper.multiple.isFloating>.MultiControls {
    z-index: 10;
}

.mb-2 {
    margin-bottom: 5px !important;
}

.mr-1 {
    margin-right: 8px !important;
}

button.inverted:hover {
    background-color: #5813b3 !important;
    color: #fff !important;
}


button.success {
    background-color: #0f8e36 !important;
    color: #fff !important;
    border-color: #0f8e36 !important;
}