/*
Theme Name: BLUEPRINT Wordpress
Author: Blueprint Interactive
Author URI: http://blueprintinteractive.com
Description: Blueprint Interactive Custom Theme.
Version: 1.0
License: GNU General Public License

-------------------------------------------------------------- */
/* Reset
-------------------------------------------------------------- */
* {
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: all 0.4s ease;
}

.en .spanish {
    display: none !important;
}

.sp .english {
    display: none !important;
}

.mobile-only {
    display: none;
}

/* WAYPOINTS */
.fade-in-from-left {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fade-in-from-left.animated {
    animation-name: fade-from-left;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -o-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    45% {
        opacity: 0.5;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fade-in-from-bottom {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}

.fade-in-from-bottom.animated {
    animation-name: fade-from-bottom;
    animation-duration: 1s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@keyframes fade-from-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -o-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }
    90% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade-in-from-right {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.fade-in-from-right.animated {
    animation-name: fade-from-right;
    animation-duration: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -o-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

/* Header --------------------- */
.site-header {
    background-color: #002D72;
    padding: 30px 5%;
}

#header {
    max-width: 1100px;
    margin: 0 auto;
}

#logo {
    display: inline-block;
    height: auto;
    margin-right: 6%;
    transition: all 0.4s ease;
    vertical-align: middle;
    width: 150px;
}

#donatebtn {
    display: inline-block;
    background: #E6342F;
    border-radius: 20px;
    color: #ffffff;
    float: right;
    font-size: 14px;
    font-weight: 800;
    margin-top: 15px;
    padding: 10px 40px;
    text-decoration: none;
    text-transform: uppercase;
    width: auto;
}

#language {
    color: #ffffff;
    display: inline-block;
    float: right;
    font-size: 0;
    padding-right: 30px;
    position: relative;
    top: 10px;
}

#language a {
    background-color: #0077C8;
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    padding: 10px 20px;
    text-decoration: none;
}

#language a.en-lang {
    background-color: #003687;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: bold;
}

#language a.sp-lang {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    opacity: .5;
}

.sp #language a.en-lang {
    background-color: #0077C8;
    font-weight: normal;
    opacity: .5;
}

.sp #language a.sp-lang {
    background-color: #003687;
    font-weight: bold;
    opacity: 1;
}

/*===================================
=            SITE FOOTER            =
===================================*/
#site-footer {
    background: #002D72;
    padding: 75px 5% 145px;
    width: 100%;
}

#site-footer .footer-left-wrap {
    display: inline-block;
    vertical-align: top;
    /* width: 39%; */
    width: 250px;
}

#site-footer .footer-right-wrap {
    display: inline-block;
    /* width: 60%; */
    width: calc(100% - 256px);
    vertical-align: bottom;
    /* margin-top: 100px; */
    /* float: right; */
}

#site-footer .footer-home-a {
    display: block;
    max-width: 100%;
    margin-bottom: 30px;
    width: 230px;
}

#site-footer .footer-home-a img {
    height: auto;
    transition: all ease-in-out 0.4s;
    width: 100%;
}

#site-footer .footer-home-a:hover img {
    transform: scale(.9);
}

#site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    text-align: right;
}

#site-footer ul li {
    display: inline-block;
    vertical-align: top;
    /* width: 185px; */
    width: 200px;
    text-align: left;
}

#site-footer ul li.menu-item-has-children:nth-of-type(1) {
    width: 245px;
}

#site-footer ul li a {
    color: #f7f9fa;
    font-size: 15px;
    letter-spacing: 0.12em;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    cursor: default;
    margin-bottom: 0;
}

#site-footer ul li ul li {
    float: none;
    width: 100%;
}

#site-footer ul li ul li a {
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    -moz-text-shadow: none;
    -webkit-text-shadow: none;
    text-shadow: none;
    letter-spacing: 2px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    visibility: visible;
    margin-bottom: 0;
}

#site-footer ul li a:hover {
    color: #F26825;
    cursor: pointer;
}

#site-footer ul li.visibility-hidden {
    visibility: hidden;
}

#site-footer ul li ul li a i {
    display: none;
}

#site-footer .social-buttons {
    padding-top: 60px;
}

#site-footer .social-buttons .facebook {
    margin-bottom: 20px;
}

#site-footer .footer-right-wrap p {
    color: #fff;
    line-height: 1.2;
    margin: 8px 0;
    font-size: 15px;
    color: #FFFFFF;
    letter-spacing: 1.04px;
}

#site-footer .paid-for-by {
    border: 1px solid #fff;
    display: block;
    padding: 15px 15px 5px;
    width: 510px;
    margin: 0 auto;
    max-width: 90%;
}

#site-footer .disclaimer {
    text-align: center;
    /* border: solid 1px #0077C8; */
    color: #0077C8;
    line-height: 14px;
    font-size: 12px;
    margin: 75px 0 0;
    font-family: "Nunito Sans", sans-serif;
}

#site-footer .copyright p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Nunito Sans", sans-serif;
    text-align: center;
}

#site-footer .disclaimer p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: "Nunito Sans", sans-serif;
    /* text-transform: uppercase; */
}

#site-footer .copyright a {
    color: #fff;
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
}

#site-footer .disclaimer a {
    color: #fff;
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    text-decoration: underline !important;
}

#site-footer .copyright a:hover,
#site-footer .disclaimer a:hover {
    color: #F26825;
}

.svg-inline--fa.fa-w-18 {
    width: 1.125em;
}
.svg-inline--fa.fa-w-9 {
    width: 0.5625em;
}
.svg-inline--fa.fa-w-16 {
    width: 1em;
}

svg:not(:root).svg-inline--fa {
    overflow: visible;
}

#site-footer .footer-quick-links a {
    font-size: 30px;
}

#site-footer .footer-quick-links a svg path {
    fill: #E6342F;
}

.footer-quick-links {
    margin-bottom: 20px;
    text-align: center;
}

#site-footer .footer-quick-links a {
    font-size: 30px;
}

#site-footer .footer-quick-links a.twitter {
    margin: 0 50px;
}

#site-footer .disclaimer address {
    display: inline;
}




/* Site ------------------------ */
.homepage-wrap {
    max-width: 1100px;
    margin: 100px auto;
    width: 90%;
}

.homepage-wrap h1 {
    color: #0b2240;
    font-weight: 800;
    font-size: 55px;
}

.homepage-wrap p {
    color: #555;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
}

.hero-wrap {
    margin-bottom: 50px;
}

.news-listing-wrapper {
    margin-top: 50px;
}

#district-changer {
    display: inline-block;
    position: relative;
}

.districtJump {
    background-color: #0077C8;
    border-radius: 2rem;
    color: #ffffff;
    display: inline-block;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .12rem;
    line-height: 25px;
    margin: 0;
    padding: 10px 30px 13px;
    text-transform: uppercase;
}

.districtJump svg {
    height: auto;
    width: 20px;
    vertical-align: bottom;
}

.districtJump:hover {
    background-color: #002D72;
}

.drop-down-wrapper {
    background-color: #ffffff;
    border: 1px solid #002D72;
    left: 0px;
    max-height: 180px;
    overflow-y: scroll;
    position: absolute;
    top: 46px;
    width: 100%;
    z-index: 3;
    display: none;
}

.drop-down-wrapper a {
    color: #212529;
    display: block;
    font-size: 18px;
    font-weight: 400;
    padding: 5px 10px;
}

.drop-down-wrapper a:hover {
    color: #E6342F;
}

a.general-donation {
    background-color: #e6342f;
    border-radius: 2rem;
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    line-height: 25px;
    font-weight: 800;
    margin-left: 30px;
    padding: 16px 30px;
    text-transform: uppercase;
}

a.general-donation:hover {
    background-color: #0077C8;
}

/* SINGLE CARD */
.single-candidate-card {
    margin: 100px 0;
}

.card-left {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
    width: 25%;
}

.card-right {
    display: inline-block;
    margin-left: 0;
    margin-top: 0;
    vertical-align: top;
    width: 65%;
}

.card-left img {
    height: auto;
    max-width: 100%;
}

.red-donate-btn {
    background-color: #e6342f;
    border-radius: 30px;
    color: #ffffff;
    display: block;
    font-weight: 600;
    margin: 20px auto;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.red-donate-btn:hover {
    background-color: #0077C8;
}

.homepage-wrap p.involved-p {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom:0;
    margin-top:5px;
}

.involved-p span {
 
}

.involved-p svg {
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
}

.involved-p a {
    color: #666666;
}

.involved-p a .background {
    transition: all ease-in-out 0.4s;
}

.involved-p a:hover {
    color: #002D72;
}

.involved-p a:hover .background {
    fill: #0077C8;
}

.card-right .h2-svg {
    height: auto;
    width: 100%;
}

.card-right h2 {
    color: #002d72;
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 10px;
}

.card-right h2 span {
    color: #E6342F;
    font-size: 20px;
    font-weight: 400;
    margin-left: 10px;
}

.candidate-links a {
    color: #666666;
    display: inline-block;
    margin-right: 10px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.candidate-links svg {
    vertical-align: top;
    display: inline-block;
}

.candidate-links a:hover {
    color: #0077C8;
}

.candidate-links a .shape {
    transition: all ease-in-out 0.4s;
}

.candidate-links a:hover .shape {
    fill: #0077C8;
}

.button-wrapper {
    position: relative;
    z-index: 3;
}

/* SCROLL UP ------------------ */
.scrollup {
    position: fixed;
    right: 60px;
    bottom: 30px;
    z-index: 99999;
    display: none;
    padding: 3px;
    width: 50px;
    height: 50px;
    border: solid #0077c8;
    border-width: 0 12px 12px 0;
    text-indent: -9999px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    cursor: pointer;
}

.scrollup:hover {
    border-color: #E6342F;
}

/* Popup Form */

.donatepopupbtn {
    display:block;
    padding:10px 20px;
    color:#ffffff;
    background-color:#e6342f;
    text-transform:uppercase;
    text-align:center;
    margin-top:20px;
    border-radius:2rem;
}

.donatepopupbtn:hover {
    text-decoration:none;
    background-color:#b50600;
}

#dvGlobalMask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background-color:#000;
    opacity:.85;
    display:none;
}


#thepopup {
    display: none;
    position: absolute;
    z-index: 9999;
    background-repeat:no-repeat;
    background-color:#ffffff;
    padding:10px;
    width:500px;
    color:#2a2a2a;
}

#thepopup h2{
    /*display: none;*/
    color:#2a2a2a;
}

.front #thepopup h2 {
    /*display:none;*/
}

.front #thepopup .content h2 {
    display:block;
    font-size:28px;
    line-height:32px;
    margin-bottom:7px;
}

.front #thepopup h2 a {
    color:#2a2a2a;
    text-decoration:none;
}

#thepopup img {
  width:100%;
  height:auto;
}

#thepopup .modalnav {
    cursor: pointer;
    height: 25px;
    width: 25px;
    font-family: 'Oswald', sans-serif;
    position:absolute;
    right:-20px;
    top:-20px;
    color:#fff;
    z-index:9000;
    background-color:#2a2a2a;
    border-radius:25px;
    padding:7px 7px 5px 7px;
    border:solid 7px #fff;
    -webkit-box-shadow: 0px -1px 28px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -1px 28px -9px rgba(0,0,0,0.75);
    box-shadow: 0px -1px 28px -9px rgba(0,0,0,0.75);
    font-weight:bold;
    font-size:20px;
    vertical-align:bottom;
    text-align:center;
    line-height:21px;
    box-sizing:content-box;
}

#thepopup .modalnav {
    display:none;
}

#thepopup .modalnav {
    display:block;
}

#thepopup .contentinner {
    padding:10px;
}

#thepopup .contentinner p {
    color:#2a2a2a;
}

#thepopup .form-item {
    margin-top: .5em;
    display: inline-block;
    margin-bottom: .5em;
    width: 49%;
}

.thepopup-button {
    border: none;
    color: #ffffff;
    background-color: #0b6fb7;
    padding: 10px 5%;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 15px;
    font-family: "aktiv-grotesk", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    width: auto;
    width: 90%;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
}

#thepopup .contentinner p {
    font-size:18px;
}

#thepopup h2 {
    font-size:40px;
    margin-bottom:10px;
}

#thepopup .title {
    font-size:20px;
    margin-bottom:5px;
}

#map {
    height: 360px;
    width: 100%;
    overflow: hidden;
}

/* Popup */

@media (max-width:767.98px) {

    a#generaldonation {
        width:90%;
        text-align:center;
        padding-left:0;
        padding-right:0;
        margin-left:0;
    }

    .districtJump {
        width:100%;
        margin-bottom:15px;
    }

    #districtchanger {
        width:100%;
    }

    .candidatePictureAndLines {
        width:100%;
        margin-bottom:10px;
        margin-right:0;
    }

    .candidateInfo {
        width:100%;
        margin-bottom:10px;
    }

    .desktoponly {
        display:none;
    }

    .mobileonly {
        display:block;
        text-align:center;
    }

    .candidatelinks span {
        display:none;
    }

    .candidatelinks a {
        display:inline-block;
        vertical-align:top;
    }

    .sidelink {
        display:inline-block;
        width:140px;
        vertical-align:top;
        text-align:center;
        margin-top:20px;
    }

    .sidelink svg {
        display:inline-block;
        margin:0 auto;
    }

    .candidateLinkButton {
        display:inline-block;
        width:80% !important;
        margin-top:0;
        font-size:22px;
    }

    .name {
        font-size:27px;
        line-height:32px;
    }

    .sp .spanish.generaldonation, .english.generaldonation {
        display:block;
        margin-left:0;
    }

    .sp .english.generaldonation, .spanish.generaldonation {
        display:none;
    }
}


/* old footer  */
.footer {
    margin-top: 3rem;
    padding: 2rem 0;
    width: 100%;
    background-color: #0b2240;
    text-align: center;
    font-size: .8em;
}
.col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.container {
    max-width: 960px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: auto;
}
.disclaimer {
    margin: 0 2rem;
    padding: 0.5rem;
    color: #0077c8;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.disclaimerText {
    border-top: none!important;
}
.copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
}
.disclaimer div[class|=col] {
    padding: 1rem;
    border: 1px solid #0077c8;
}

.disclaimer a {
    color: #95ceff;
    text-decoration: none!important;
}
.disclaimer a svg {
    width: 52px;
    height: auto;
}

.disclaimer div[class|=col] {
    padding: 1rem;
    border: 1px solid #0077c8;
}
.disclaimer p {
    margin: 0;
}
.disclaimer div[class|=col] {
    padding: 1rem;
    border: 1px solid #0077c8;
}
@media (max-width: 767.98px) {

    .footerLogo {
        display: none;
    }
}