/*--------------------------------------------------------------
Basic
--------------------------------------------------------------*/
body {
    background: #001219;
    height:100%;
}

body, input, select, textarea {
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    /* font-weight: 300; */
    line-height: 1.65;
}

em, i {
    font-style: italic;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: underline;
}

p {
    margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
    color: white;
    font-family: "Roboto Slab", serif;
    /* line-height: 1.4; */
}

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

h6 a {
    color: white;
}

h1 {
    color: white;
    font-size: 4.3em;
    margin: 0 0 0.5em 0;
    /* line-height: 1.3; */
}

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;
}

.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;
}

/*--------------------------------------------------------------
Scroll Up
--------------------------------------------------------------*/
.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);
    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 {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-top--fade-out {
    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;
    }
}

@media screen and (max-width: 480px) {

    .features article {
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -moz-align-items: -moz-flex-start;
        -webkit-align-items: -webkit-flex-start;
        -ms-align-items: -ms-flex-start;
        align-items: flex-start;
    }

    .features article .icon {
        height: 6em;
        line-height: 6em;
        margin: 0 0 1.5em 0;
        width: 6em;
    }

    .features article h3 {
        font-size: 1.4em;
    }
}

/*--------------------------------------------------------------
Custom CSS
--------------------------------------------------------------*/
h2 {
    font-size: 2.5rem;
}

.wrapper{
    padding: 60px 0 0 0;
}

.portada {
    background-image: url(../img/bg-portada.png);
    background-position: center center;
    background-size: cover;
    height: 100%;
    min-height: 100%;
}

.texto-botones {
    margin: 0 auto;
    width: 50%;
}

.botonera a {
    min-width: 240px;
    opacity: .85;
    transition: .3s;
}

.botonera a:hover {
    opacity: 1;
    transition: .3s;
}

.btn:hover {
    color: white;
}

.btn-menu {
    background-color: transparent;
    border: 3px solid #cc0000;
}

.btn-pre {
    background-color: #03436A;
}

.sidemenu .btn-pre {
    background-color: transparent;
    border: 3px solid #03436A;
}

.sidemenu .btn-pre:hover {
    background-color: #03436A;
    transition: .3s;
}

.presidenciales .sidemenu .btn-pre {
    background-color: #03436A;
    border: 3px solid white;
}

.presidenciales .btn-primary {
    background-color: #03436A !important;
    border: 2px solid #03436A !important;
}

.presidenciales .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #03436A !important;
    border: 2px solid white !important;
}

.btn-sen {
    background-color: #005F73;
}

.sidemenu .btn-sen {
    background-color: transparent;
    border: 3px solid #005F73;
}

.sidemenu .btn-sen:hover {
    background-color: #005F73;
    transition: .3s;
}

.senatoriales .sidemenu .btn-sen {
    background-color: #005F73;
    border: 3px solid white;
}

.senatoriales .btn-primary {
    background-color: #005F73 !important;
    border: 2px solid #005F73 !important;
}

.senatoriales .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #005F73 !important;
    border: 2px solid white !important;
}

.btn-dip {
    background-color: #0A9396;
}

.sidemenu .btn-dip {
    background-color: transparent;
    border: 3px solid #0A9396;
}

.sidemenu .btn-dip:hover {
    background-color: #0A9396;
    transition: .3s;
}

.distritales .sidemenu .btn-dip {
    background-color: #0A9396;
    border: 3px solid white;
}

.distritales .btn-primary {
    background-color: #0A9396 !important;
    border: 2px solid #0A9396 !important;
}

.distritales .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #0A9396 !important;
    border: 2px solid white !important;
}

.btn-mun {
    background-color: #809648;
}

.sidemenu .btn-mun {
    background-color: transparent;
    border: 3px solid #809648;
}

.sidemenu .btn-mun:hover {
    background-color: #809648;
    transition: .3s;
}

.municipales .sidemenu .btn-mun {
    background-color: #809648;
    border: 3px solid white;
}

.municipales .btn-primary {
    background-color: #809648 !important;
    border: 2px solid #809648 !important;
}

.municipales .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #809648 !important;
    border: 2px solid white !important;
}

.btn-alc {
    background-color: #EE9B00;
}

.sidemenu .btn-alc {
    background-color: transparent;
    border: 3px solid #EE9B00;
}

.sidemenu .btn-alc:hover {
    background-color: #EE9B00;
    transition: .3s;
}

.alcaldes .sidemenu .btn-alc {
    background-color: #EE9B00;
    border: 3px solid white;
}

.alcaldes .btn-primary {
    background-color: #EE9B00 !important;
    border: 2px solid #EE9B00 !important;
}

.alcaldes .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #EE9B00 !important;
    border: 2px solid white !important;
}

.btn-con {
    background-color: #CA6702;
}

.sidemenu .btn-con {
    background-color: transparent;
    border: 3px solid #CA6702;
}

.sidemenu .btn-con:hover {
    background-color: #CA6702;
    transition: .3s;
}

.concejales .sidemenu .btn-con {
    background-color: #CA6702;
    border: 3px solid white;
}

.concejales .btn-primary {
    background-color: #CA6702 !important;
    border: 2px solid #CA6702 !important;
}

.concejales .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #CA6702 !important;
    border: 2px solid white !important;
}

.btn-cor {
    background-color: #BB3E03;
}

.sidemenu .btn-cor {
    background-color: transparent;
    border: 3px solid #BB3E03;
}

.sidemenu .btn-cor:hover {
    background-color: #BB3E03;
    transition: .3s;
}

.cores .sidemenu .btn-cor {
    background-color: #BB3E03;
    border: 3px solid white;
}

.cores .btn-primary {
    background-color: #BB3E03 !important;
    border: 2px solid #BB3E03 !important;
}

.cores .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #BB3E03 !important;
    border: 2px solid white !important;
}

.btn-pleb {
    background-color: #7B3F70;
}

.sidemenu .btn-pleb {
    background-color: transparent;
    border: 3px solid #7B3F70;
}

.sidemenu .btn-pleb:hover {
    background-color: #7B3F70;
    transition: .3s;
}

.plebiscitos .sidemenu .btn-pleb {
    background-color: #7B3F70;
    border: 3px solid white;
}

.plebiscitos .btn-primary {
    background-color: #7B3F70 !important;
    border: 2px solid #7B3F70 !important;
}

.plebiscitos .btn-primary:not([disabled]):not(.disabled).active {
    background-color: #7B3F70 !important;
    border: 2px solid white !important;
}

.bajada {
    font-family: "Roboto Slab", serif;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

.jssocials-share-logo {
    color: white;
}

.pasos p {
    font-size: 1.12rem;
}

.pasos p span {
    background-color: #cc0000;
    border-radius: 50%;
    color: white;
    display: inline-block;
    font-family: "Roboto Slab", serif;
    font-size: 1.5rem;
    font-weight: bold;
    height: 40px;
    margin-right: 1rem;
    text-align: center;
    vertical-align: middle;
    width: 40px;
}

.pasos .cont {
    border-left: 1px solid rgba(256, 256, 256, .2);
    margin-left: 20px;
    padding: .8rem 0 35px 2rem;
}

.pasos button {
    margin-left: 55px;
}

.pasos .btn-group {
    display: contents;
}

.pasos .btn-group .btn {
    border-radius: 10em !important;
    font-size: 1rem !important;
    margin-left: -4px;
}

.custom-select {
    width: 270px;
    color: white;
    background: transparent url(../img/flecha-select.svg) no-repeat 95% 50% !important;
    border: 3px solid white;
    border-radius: 10em;
    height: 42px;
    margin-top: 1px;
}

.custom-select option {
    background: #1E2230 !important;
    color: white;
}

.custom-select:focus {
    border-color: white;
}

#resultados::before {
  display: block;
  content: " ";
  margin-top: -75px;
  height: 75px;
  visibility: hidden;
}

.resultados h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.resultados h2 span {
    font-size: 1rem;
    font-weight: normal;
}

.bg-resultados {
    background-color: #1E2230;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1rem;
}

.url {
    background-color: #001219;
    border-radius: 100px;
    margin: 10px 0 !important;
    padding: 10px 20px;
}

.sticky-top {
    top: 76px !important;
}

.contraste .tabla-contraste {
    background-color: white;
}

.contraste .tabla-contraste h2 {
    background-color: white;
    color: black;
}

.contraste .tabla-contraste .table {
    background-color: white;
    color: black;
}

.contraste .tabla-contraste .table-hover tbody tr:hover {
    background-color: #EEE !important;
    color: inherit;
}

.contraste .tabla-contraste .table td {
    border-top: 1px solid rgba(0, 0, 0, .3);
}

.contraste .tabla-contraste .table thead th {
    border-bottom: 2px solid rgba(0, 0, 0, .3);
}

.table {
    color: inherit;
}

.table-hover tbody tr:hover {
    background-color: #001219 !important;
    color: inherit;
}

.table td, .table th {
    border-top: 1px solid rgba(256, 256, 256, .3);
}

.table thead th {
    border-bottom: 2px solid rgba(256, 256, 256, .3);
}

.modal-left, .modal-right{
    padding-top: 60px;
}

.modal-content {
    background-color: #1E2230;
}

.modal-content .custom-select {
    width: 100%;
}

.close, .close:hover {
    color: white;
}

.modal .modal-full-height {
    width: 350px;
}

.tooltip {
    background-color: rgba(0, 0, 0, .9);
    border-radius: 10px;
    color: white;
    min-height: 55px;
    min-width: 200px;
    padding: 1rem;
    position: absolute;
    z-index: 1021;
}

.btn.disabled {
    pointer-events: all !important;
}

.select-h {
    margin-left: 22%;
    width: 180px;
}

.btn-graficar {
    border-radius: 0 4px 4px 0 !important;
    left: -10px;
    position: absolute;
    top: -3px;
    z-index: 999;
}

.border-bottom {
    border-bottom: 1px solid #001219 !important;
}

.border-bottom:last-child {
    border-bottom: none !important;
}

/* MEDIA QUERYS */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {

    h1 {
        font-size: 4rem;
    }

    .wrapper{
        padding: 60px 0 0 0;
    }

    .texto-botones {
        width: 60%;
    }

    .bg-resultados .custom-select {
        width: 200px;
    }
}

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

    h1 {
        font-size: 3rem;
    }

    .wrapper{
        padding: 50px 0 0 0;
    }

    .texto-botones {
        width: 100%;
    }

    .modal .modal-full-height {
        width: 100%;
    }

    .bg-resultados .custom-select {
        width: 100%;
    }


}

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

    .bajada {
        font-size: 1rem;
    }

    .select-h {
        margin-left: 1rem;
        width: 160px;
    }

    .contenedor-grafico,
    .btn-graficar {
        display: none;
    }

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {



}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0;
    content: "";
}
