/*
Theme Name: AFS
Author: Blueprint Interactive
Description: A custom theme for AFSCME.
Version: 1.0
License: GNU General Public License
*/


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.sp .english, body.en .spanish {
	display: none !important;
}


@font-face {
    font-family: 'Oswald Bold Italic';
    src: url('./styles/fonts/Oswald-BoldItalic.ttf');
}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

* html .clearfix { 
    height: 1%;
}

.clearfix {
    display: block;
}

::selection {
    background-color: #0F2C92;
    color: #fff;
}

::-moz-selection {
    background-color: #0F2C92;
    color: #fff;
}

/* 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);
    }
}


main {
    width: 100%;
}

.main-wrapper {
    width: 80%;
    margin: 40px auto 70px;
    min-height: 50vh;
}

h1, 
h2, 
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #0F2C92;
    margin: 40px 0;
    line-height: 1;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

p { 
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.6em;
}

a {
    color: #0F2C92;
    text-decoration: none;
}

a:hover {
    color: #178A3B;
}

blockquote {
    display: block;
    width: 80%;
    margin: 15px auto;
}

blockquote p {
    color: #0F2C92;
    /* font-family: 'Roboto', sans-serif; */
    font-weight: 300;
    font-style: italic;
    font-size: 22px;
}

.main-container ol,
.main-container ul {
    margin-left: 40px;
    max-width: 60%;
    margin: auto;
}

.main-container ol li,
.main-container ul li {
    margin: 10px 0;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
}

.leftfloated img {
    margin: 10px 20px 10px 0;
}

.rightfloated img {
    margin: 10px 0 10px 20px;
}

/* HEADER ------------------------------------------------------------------- */
.main-header {
    text-align: center;
    padding: 30px 5%;
    position: relative;
}

.main-menu-p {
    display: inline-block;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    margin-right: 10px;
    margin-left: 20px;
}

.main-menu-p a {
    color: #000;
}

.main-menu-p a:hover {
    color: #0F2C92;
}

/* .spanish:hover {
    color: #178A3B;
} */

.main-menu {
    float: right;
    position: absolute;
    right: 5%;
    top: 60px;
    display: block;
}

/* NAV */
.container {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.bar1, .bar2, .bar3 {
    background-color: #000;
    height: 5px;
    margin: 6px 0;
    transition: all 0.4s;
    width: 35px;
}

.change .bar1 {
    -webkit-transform: rotate(45deg) translate(8px, 8px);
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #fff;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(-45deg) translate(8px, -7px);
    transform: rotate(-45deg) translate(8px, -7px);
    background-color: #fff;
}

.main-header ul li,
.main-header ol li {
    list-style: none;
    margin: 15px 0;
}

.nav-wrapper {
    background-color: rgba(6, 214, 160, 0.95);
    background-color: rgba( 23, 138, 59, .95);
    display: block;
    display: none;
    padding-bottom: 10px;
    position: absolute;
    text-align: center;
    z-index: 2000;
    width: 100%;
    margin: 0;
    padding: 100px 5% 40px;
    top: 0;
    left: 0;
    list-style: none;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
}

.nav-wrapper li a {
    color: #fff;
}

.nav-wrapper .menu-item-has-children {
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    width: 275px;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

.nav {
    display: inline-block;
    width: 275px;
    vertical-align: top;
    text-align: left;
    margin-right: 10%;
}

.nav-2 {
    display: inline-block;
    text-align: left;
}

.nav-wrapper .menu-item-has-children li {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    padding-left: 25px;
    line-height: 23px;
}

.nav-wrapper .menu-item-has-children li:first-of-type {
    margin-top: 10px !important;
}

.nav-wrapper a:hover {
    color: #000;
    border-bottom: 4px solid #000;
}

.close-btn {
    display: none;
    position: absolute;
    top: 60px;
    right: 5%;
    z-index: 3000;
    cursor: pointer;
}

.close-btn p {
    color: #fff;
    display: inline-block;
    vertical-align: super;
    font-size: 13px;
    margin-right: 10px;
}

.mobile-down-arrow img {
    width: 30px;
}

.mobile-down-arrow {
    display: none;
}

#menu-header-menu-1 li:nth-of-type(2) {
    margin-top: 0;
}

/* FOOTER ------------------------------------------------------------------- */
.site-footer {
    text-align: center;
    padding: 20px 5% 50px;
    border-top: 7px solid #000;
}

.footer-nav-wrapper {
    width: 55%;
    margin: 29px auto 40px;;
}

.footer-nav-wrapper .nav,
.footer-nav-wrapper .nav-2 {
    display: inline;
    width: auto;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.footer-nav-wrapper .nav li,
.footer-nav-wrapper .nav-2 li {
    display: inline-block;
    font-size: 16px;
    color: #000;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    /* line-height: 16px; */
    margin: 12px;
}

.footer-nav-wrapper .nav li a,
.footer-nav-wrapper .nav-2 li a {
    color: #000;
}

.footer-nav-wrapper .nav li a:hover,
.footer-nav-wrapper .nav-2 li a:hover {
    color: #0F2C92;
}

.footer-nav-wrapper .sub-menu {
    display: none;
}

.copy-p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #4A4A4A;
    text-align: center;
}

.disclaimer-p {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #4A4A4A;
    text-align: center;
    padding: 5px 10px;
    border: 1px solid #0F2C92;
    display: inline-block;
    margin: 0 auto;
    width: 60%;
}

/* HOMEPAGE */
.hero {
    /* background-image: url('./images/homepage/hero.png'); */
    /* background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 10%; */
    width: 100%;
    position: relative;
    min-height: 400px;
}

.inner-hero-wrapper {
    background-repeat: no-repeat;
    /* background-position: right; */
    /* background-size: auto 100%; */
    background-size: cover;
    padding: 70px 10%;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #26547B;
}

.hero-inner {
    width: 100%;
    min-width: 500px;
    position: relative;
    padding: 70px 36% 70px 10%;
    min-height: 400px;
}

.hero-inner.gardident {
    background: linear-gradient(270deg, rgba(255,255,255,0) 15%, rgba(38,84,124,0.8995973389355743) 35%, rgba(37,82,121,1) 42%, rgba(38,84,124,1) 100%);
}

.hero h2 {
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
    line-height: 58px;
    text-transform: uppercase;
    margin-top: 0;
}

.hero-p p {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    word-break: break-word;
}

.take-action-btn {
    background-color: #0F2C92;
    color: #fff;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding: 20px 30px;
}

.hero-inner .take-action-btn {
    background-color: #0F2C92;
}

.take-action-btn:hover {
    background-color: #000;
    color: #fff;
}

.agenda {
    text-align: center;
    padding-bottom: 75px;
}

.homepage h3 {
    color: #000;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.line-height {
    border-top: 9px solid #000;
    width: 80%;
    margin: 0 auto;
}

.homepage h3::before {
    content: url('./images/homepage/line.png');
    color: #000;
    display: block;
    text-align: center;
    font-size: 58px;
}

.homepage h3::after {
    content: url('./images/homepage/line.png');
    color: #000;
    display: block;
    text-align: center;
    font-size: 58px;
}

.tagline {
    color: #0F2C92;
    text-transform: uppercase;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
}

.agenda-images-wrapper {
    font-size: 0;
}

.homepage-section p {
    width: 55%;
    margin: 20px auto;
    max-width: 526px;
    min-width: 280px;
    word-break: break-word;
}

.issue-card {
    position: relative;
    display: inline-block;
    margin: 10px;
}

/* .issue-wrapper-img {
    display: inline-block;
    background-color: #0F2C92; 
    position: relative; 
} */

.issue-img-outer-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 44, 146, 0.72);
    background-color: rgba( 23, 138, 59, .8);
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    transition: all .4s;
    text-align: center;
}

.issue-wrapper-img img {
    mix-blend-mode: overlay;
}

.issue-img-outer-wrap h4 {
    position: absolute;
    top: 0;
    text-align: left;
    width: 200px;
    text-transform: uppercase;
    color: #fff;
    left: 21px;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 31px;
    top: 110px;
}

.issue-img-outer-wrap:hover,
.issue-card:hover > .issue-img-outer-wrap {
    background-color: rgba( 23, 138, 59, .8);
    background: rgba(15, 44, 146, 0.72);
}

.issue-wrapper-img h4 a {
    color: #fff;
}

.issue-wrapper-img h4 a:hover {
    color: #fff;
}

.outline-btn {
    color: #000;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 30px;
    border: 2px solid #000;
    margin: 30px auto;
    display: inline-block;
}

.homepage-members-hero {
    background-image: url('./images/homepage/questions.png');
    text-align: center;
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.homepage-members-hero h2 {
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
    line-height: 58px;
    text-transform: uppercase;
    width: 50%;
    min-width: 300px;
    margin: 0 auto 50px;
}

.homepage-members-hero p {
    text-transform: uppercase;
    width: 400px;
    margin: 10px auto 30px;
    color: #fff;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    line-height: 30px;
    font-size: 25px;
}

.white-btn {
    color: #0F2C92;
    background-color: #fff;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 30px;
}

.white-btn:hover {
    background-color: #0F2C92;
    color: #fff;
}

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

.process-svg {
    margin: 50px auto;
    width: 80%;
    max-width: 800px;
}

.thoughts {
    width: 100%;
    text-align: center;
}

.homepage-participants-hero {
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    min-height: 430px;
}

.homepage-participants-hero h2 {
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
    line-height: 58px;
    text-transform: uppercase;
    width: 50%;
    min-width: 300px;
    margin: 0 auto 50px;
}

.homepage-participants-hero p {
    text-transform: uppercase;
    width: 400px;
    margin: 10px auto 30px;
    color: #fff;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    line-height: 30px;
    font-size: 25px;
}

/* SURVEY PAGE -------------------------------------------------------------- */
p.survey-match {
    font-weight: normal;
    font-size: .9em;
    font-style: italic;
}

/* ISSUE PAGE --------------------------------------------------------------- */
.issue-wrapper {
    width: 100%;
}

.issue-header {
    width: 100%;
    background-image: url('./images/issue-header.png');
    background-size: cover;
    min-height: 300px;
}

body.single-issue .issue-header{
    min-height: 300px;
}

.issue-title {
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #000;
    line-height: 58px;
    text-transform: uppercase;
    /* width: 400px; */
    margin: 20px auto 45px;
}

.issue-body-wrapper {
    width: 70%;
    margin: -100px auto 20px;
    background-color: #fff;
    text-align: center;
    padding: 30px 5%;
}

.tagline-issue {
    color: #0F2C92;
    text-transform: uppercase;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 45px;
}

.issue-top-p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #000;
    text-align: center;
    line-height: 30px;
}

.issue-top-p iframe {
    
}

.current-issue-dropdown {
    width: 280px;
    border: 1px solid transparent;
    /* border-bottom: none; */
    margin-right: 0;
    color: #000;
    background-color: #0F2C92;
    margin-bottom: 0;
    padding: 10px 0;
    color: #fff;
    text-transform: uppercase;
    background-image: url('./images/downarrow.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    margin: 70px auto;
    position: relative;
}

.top-p {
    margin: 0;
    color: #fff;
}

.current-issue-active {
    background-image: url('./images/uparrow.png');
}

.issue-dropdown-choice-wrapper {
    width: 280px;
    border: 1px solid transparent;
    border-top: none;
    margin-right: 0;
    position: absolute;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    background-color: #0F2C92;
    display: none;
}

.option-mag {
    padding: 10px 0;
    margin: 0 auto;
    color: #fff;
}

.candidate-card-wrapper {
    margin: 100px auto;
}

.candidate-card-image-wrapper {
    position: relative;
    width: 240px;
    height: 224px;
    display: inline-block;
}

.candidate-card-image-wrapper img {
    width: 211px;
}

.image-line {
    position: absolute;
    bottom: 0;
    right: 0;
}

.candidate-card-image-wrapper:hover #Candidate_card {
    stroke: #178A3B;
}

.candidate-card-image-wrapper.no-hover:hover #Candidate_card  {
    stroke: #0F2C92;
}

.issue-candidate-right {
    display: inline-block;
    vertical-align: top;
    margin-left: 35px;
}

.issue-candidate-h2 {
    text-transform: uppercase;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #000;
    line-height: 58px;
    margin: 0;
}

.issue-candidate-p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    text-align: left;
    line-height: 25px;
    margin: 0;
}

.quote-p {
    position: relative;
    font-weight: 800;
    padding: 20px;
}

.start-quote {
    position: relative;
    left: -4px;
    top: -7px;
}

.end-quote {
    position: relative;
    left: 5px;
}

.candidates-wrapper {
    font-size: 0;
    text-align: left;
    margin: 100px auto;
    width: 80%;
}

.candidate-card-wrapper-listing {
    width: 33.3%;
    display: inline-block;
    margin-bottom: 40px;
    text-align: center;
    vertical-align: top;
}

.candidate-h2 {
    font-size: 18px;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 15px 0 0;
}

.candidate-p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    line-height: 25px;
    margin: 0;
}

.participant-hero {
    width: 100%;
    position: relative;
}

.hero-thumb {
    width: 100%;
}

.participant-hero-image {
    width: 100%;
    position: absolute;
    z-index: 4;
}

.participant-hero-div {
    position: absolute;
    top: 40px;
    width: 100%;
    text-align: center;
    z-index: 7;
}

.participant-hero-h1 {
    text-transform: uppercase;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 65px;
    color: #FFFFFF;
    text-align: center;
    line-height: 75.4px;
}

.participant-hero-h2 {
    font-size: 37px;
    line-height: 45px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.participant-main {
    width: 70%;
    margin: 45px auto;
    text-align: center;
}

.participant-main .outline-btn {
    display: block;
    width: 375px;
    margin-bottom: 0;
    padding: 16px 20px;
    max-width: 100%;
}

.participant-main .outline-btn svg {
    vertical-align: top;
    margin-top: 2px;
}

.external-disclaimer {
    font-size: 11px;
    margin-top: 8px;
	font-weight: 400;
	font-style: italic;
}

.participant-headshot {
    width: 400px;
    margin-bottom: 20px;
}

.participant-tagline {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.participant-body p {
    width: 70%;
    margin: 10px auto;
}

.participant-video-section {
    width: 90%;
    margin: 10px auto 50px;
    font-size: 0;
    text-align: center;
}

.participant-video-title {
    color: #0F2C92;
    text-transform: uppercase;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    margin: 50px auto 40px;
}

.mini-video-wrapper {
    width: 30%;
    display: inline-block;
    text-align: left;
    vertical-align: top;
}

.mini-play-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.participant-mini-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mini-thumb {
    width: 100%;
    position: absolute;
    z-index: 3;
    height: 100%;
}

.mini-play-btn {
    position: absolute;
    z-index: 5;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: 40%;
    cursor: pointer;
}

.mini-thumb-h4 {
    color: #000;
    font-size: 20px;
    line-height: 27px;
}

.mini-video-wrapper:nth-of-type(3n+2) {
    margin: 0 5% 5%;
}

.event-card {
    margin: 40px auto;
}

.event-date-wrap {
    display: inline-block;
    margin-top: 31px;
    float: left;
    margin-right: 16px;
}

.event-card-date-day {
    font-size: 47px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    margin: 0;
    line-height: 28px;
}

.event-card-date-month {
    font-size: 37px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.event-card-link {
    display: inline-block;
    vertical-align: top;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #000;
    line-height: 28px;
    width: 100%;
    text-align: left;
    padding: 0 10px 0 0;
}

.event-card-p  {
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.news-card {
    margin: 40px auto;
    text-align: left !important; 
}

.news-card-link {
    display: inline-block;
    vertical-align: top;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #000;
    line-height: 28px;
}

.news-card-p  {
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.news-date-wrap {
    text-align: left;
    font-style: italic;
}

.news-date-wrap p {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0 5px 0 0;
}

p.news-card-pub {
    margin-left: 30px;
}

.candidates-more {
    font-size: 0;
    text-align: left;
    /* margin-top: 100px; */
}

.member-questions-h1 {
    color: #fff;
    text-transform: uppercase;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.single-member-card {
    width: 80%;
    margin: 100px auto;
    font-size: 0;
}

.first-member-p {
    width: 50%;
    margin: 45px auto;
    text-align: center;
}

.member-card-left-wrapper {
    width: 40%;
    display: inline-block;
}

.member-card-image-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
}

.member-card-image-wrapper img {
    width: 97%;
}

.member-svg {
    position: absolute;
    bottom: -12px;
    right: -7px;
    height: 95%;
}

.member-quote-wrapper {
    width: 60%;
    display: inline-block;
    vertical-align: top;
    padding: 0 5%;
    text-align: left;
}

.member-quote-wrapper .quote-p {
    font-size: 23px;
    margin: 0;
}

.member-quote-wrapper .member-btn {
    margin-left: 20px;
}

.member-title-wrapper {
    margin-left: 10%;
    margin-top: 30px;
}

.member-card-left-wrapper h2 {
    text-transform: uppercase;
    color: #000;
    font-family: 'Oswald Bold Italic', sans-serif;
    margin: 0;
}

.member-card-left-wrapper p {
    margin: 0;
    font-weight: 400;
}

.content-wrapper {
    width: 65%;
    margin: 45px auto;
}

.toolkit-body-wrap {
    font-size: 0;
    width: 70%;
    margin: 20px auto;
    text-align: center;
}

.toolkit-card {
    width: 50%;
    display: inline-block;
    margin: 40px 0;
    text-align: left;
    vertical-align: top;
}

.file-img {
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
}

.toolkit-card-inner {
    display: inline-block;
    width: calc(100% - 60px);
    padding: 0 20px;
}

.toolkit-card-inner h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 22px;
    color: #000;
}

.toolkit-card-inner p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 25px;
    margin-top: 5px;
}

.download-link {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.tool-kit-top-p {
    max-width: 500px;
    width: 50%;
    margin: 20px auto;
}

.process-svg-page {
    width: 100%;
}

pre {
    font-size: 15px;
}

.toolkit-btn {
    width: 215px;
    display: block;
    margin: 30px auto;
}

/* Popup Form */
#dvGlobalMask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background-color:#0F2C92;
    opacity:0;
    display:none;
}
 
#thepopup {
    display: none;
    position: absolute;
    z-index: 9999;
    width:auto;
    color:#ffffff;
    box-sizing:border-box;
    opacity:1 !important;
}
 
#thepopup img {
    width:100%;
    height:auto;
}
 
#thepopup .modalnav {
    cursor: pointer;
    height: 50px;
    width: 50px;
    position:absolute;
    right:-55px;
    top:-30px;
    z-index:9999;
}
 
#thepopup .modalnav {
  display:none;
}
 
#thepopup .modalnav {
  display:block;
}
 
img#prev {
    position: absolute;
    top: 187px;
    left: -68px;
    z-index: 9999;
    width: 50px;
    cursor: pointer;
}
 
img#next {
    top: 187px;
    right: -68px;
    z-index: 9999;
    position: absolute;
    width: 50px;
    cursor: pointer;
}

.member-video-text {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.member-video-text h2 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald Bold Italic', sans-serif;
    margin: 20px 0 0 0;
}

.member-video-text h4 {
    color: #fff;
    margin: 0;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.6em;
}

#thepopup .member-video-text img.start-quote {
    width: 27px;
    height: 22px;
}

#thepopup .member-video-text img.end-quote {
    height: 27px;
    width: 22px;
}

.member-video-text .quote-p {
    color: #fff;
}

.container-video {
    padding-bottom:56.25%; 
    position:relative; 
    display:block; 
    width: 100%
}

#member-iframe {
    position:absolute; 
    top:0; 
    left: 0
}

img#next:hover, img#prev:hover {
    opacity: .7;
}

.play-btn {
    position: absolute;
    z-index: 10;
    left: 47%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.events-more {
    padding: 0 10% 10%;
}

.main-logo {
    transition: all 0.5s;
}

.main-logo:hover {
    transform: scale(1.2);
}

.main-logo.spanish-main-logo {
    max-width: 155px;
    height: auto;
}

footer .main-logo {
    width: 120px;
    height: auto;
}

img.member-play-btn {
    position: absolute;
    width: 50px;
    left: 44%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    display: none;
}

.member-content-wrapper {
    text-align: center;
}

.hero-video-member {
    width: 80%;
    margin: 30px auto 0;
}

#can_embed_form.can_768 #can_main_col {
    width: 100% !important;
    float: none !important;
}

#can_embed_form.can_768 #can_sidebar {
    width: 100% !important;
    float: none !important;
    border: none !important;
}

#action_info {
    display: none !important;
}

#can_embed_form .check_radio_field label input {
    position: relative !important;
    left: -10px !important;
    top: 0 !important;
}

#can_embed_form .control-label,
#can_embed_form .check_radio_field label {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

.can_embed.form #can_embed_form_inner>h2 {
    font-family: 'Oswald Bold Italic', sans-serif;
    font-size: 28px;
    color: #000;
    text-align: center;
}

#can_embed_form h4 {
    font-family: 'Oswald Bold Italic', sans-serif;
    font-size: 23px;
    color: #000;
    text-align: center;
}

#can_main_col {
    display: none;
}

#can_embed_form form ul {
    margin: 0 auto;
    max-width: 500px;
}

#new_answer input::placeholder {
    color: #000;
    font-family: 'Roboto', sans-serif;
}

.mt20 #can_embed_form .control-label {
    font-size: 12px;
}

#can_embed_form .control-label {
    text-transform: initial !important;
    line-height: 1.4em;
    font-weight: 700;
}

.can_button, #can_embed_form input[type=submit], #can_embed_form .button, #donate_auto_modal input[type=submit], #donate_auto_modal .button,
#can-form-area-become-a-delegate-to-a-national-party-convention input[type=submit] {
    background-color: #0F2C92 !important;
    color: #000 !important;
    font-family: 'Oswald Bold Italic', sans-serif !important;
    font-size: 28px !important;
}

.can_button:hover, #can_embed_form input[type=submit]:hover, #can_embed_form .button:hover, #donate_auto_modal input[type=submit]:hover, #donate_auto_modal .button:hover {
    color: #0F2C92 !important;
    background-color: #000 !important;
}

.js-d_sharing, .action_owner {
    display: none !important;
}

.mt20 label {
    font-size: 12px !important;
    font-weight: 400;
}

ul.nav-2 li:first-of-type {
    margin-right: 15px;
}

.mobile-menu {
    display: none;
}

.fourofour {
    margin-top: 0;
}

/*---------------------------*/

/* Home Page */

div.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    /*max-width: 960px;*/
    margin: auto;
}

div.video-container-outer{
    max-width: 960px;
    margin: auto;
}

div.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video-bg{
    background-color: #fff;
    min-height: auto;
}

div.mobile-video-hero,
div.mobile-hero-inner{
    display: none;
}

/* Candidate Page */

/*.participant-hero-h1{
    text-align: left;
}

.participant-hero-div{
    width: 90%;
    left: 10%;
}*/

div.participant-hero-div.mobile-only{
    display: none;
}

div.participant-outer-wrap{
    position: absolute;
    width: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
    text-align: center;
    /*left: 5%;*/
}

div.participant-outer-wrap.part-left{
    left: 5%;
}

div.participant-outer-wrap.part-right{
    right: 5%;
}

.participant-hero-div{
    position: relative;
    top: 0px;
}

.participant-hero{
    max-width: 960px;
    margin: auto;
}

/*.participant-hero-h1{
    text-align: left;
}*/

.play-btn{
    position: relative;
    left: 0%;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    display: inline-block;
    top: 0px;
}

/*.play-btn.play-mobile{
    display: none;
}*/


/* Member Questions Page */

.member-title-wrapper{
    margin: 0;
    text-align: right;
    padding: 20px;
}

.member-title-wrapper h2,
.member-title-wrapper p{
    font-size: 23px;
    line-height: 26px;
    margin: 0;
    color: #000;
}

.member-title-wrapper p{
    margin: 10px 0px;
}

#spanish-checkbox,
#spanish-title {
    display: none;
}

.single-post-wrapper .issue-header {
    min-height: 400px;
}


.single-post-wrapper h1 {
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.single-post-wrapper h2 {
    color: #000;
    margin: 10px 0;
    font-size: 20px;
    font-family: "Oswald Bold Italic", sans-serif;
}

.single-post-content {
    margin: 40px 0;
}

.post-body-wrapper {
    width: 70%;
    background-color: rgb(255, 255, 255);
    text-align: center;
    margin: 0 auto 20px;
    padding: 30px 5%;
}

.latest-news-page .events-more {
    padding: 0 0% 10%;
    font-size: 0;
}

.latest-news-page .event-card {
    margin: 60px auto;
}

.pages-display a {
    font-size: 16px;
    color: #000;
    display: inline-block;
    margin: 0 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-family: "Oswald Bold Italic", sans-serif;
}

.pages-display a.current-page {
    color: #26547B;
}

.pages-display a:hover {
    color: #0F2C92;
}

.event-card-img-inner,
.news-card-img {
    display: inline-block;
    width: calc(100% - 260px);
    vertical-align: top;
    padding: 0 0 0 20px;
}

.event-image-div,
.news-img {
    width: 260px;
    height: 180px;
    background-size: cover;
    background-position: center;
    display: inline-block;
}

.homepage-section .events-more {
    font-size: 0;
    padding: 30px 20%;
}

.homepage-section .events-more p {
    width: auto;
    margin: 5px auto;
    min-width: auto;
    max-width: none;
}

.homepage-section .events-more .news-date-wrap p {
    margin: 0 5px 0 0;
}

.homepage-section p.news-card-pub {
    margin-left: 30px;
}

.homepage-section.latest-news {
    text-align: center;
}


/* new things 2/24 */
#can_embed_form, 
#donate_auto_modal, 
#donate_make_recurring_modal {
    border: none !important;
}

.can_embed.form #can_embed_form_inner>h2 {
    display: none !important;
}

#can_embed_form.can_float #form_col1 {
    width: 100% !important;
    min-width: 100% !important;
}

#can_embed_form.can_float #form_col2 {
    width: 100% !important;
    min-width: 100% !important;
}

#new_answer>#can_embed_form>input[type=submit] {
    background-color: #0F2C92;
}

#can_embed_form input[type=text], 
#can_embed_form input[type=password], 
#can_embed_form input[type=url], 
#can_embed_form input[type=email], 
#can_embed_form input[type=tel], 
#can_embed_form input[type=number],
#can_embed_form textarea {
    color: #4A4A4A !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
}

#can_embed_form textarea {
    margin-top: 10px;
}

#can_embed_form input::placeholder,
#can_embed_form textarea::placeholder {
    color: #4A4A4A;
}

#can_embed_form .control-label {
    color: #4A4A4A;
}

.image-only-article {
    font-size: 0;
}

.desktop-homepage-full-img {
    width: 100%;
}

.mobile-homepage-full-img {
    width: 100%;
    display: none;
}

.state-page {

}

.issue-card.state-card {
    width: 30%;
}

.state-page-js .issue-card.state-card {
    width: 40%;
}

.issue-card.state-card .issue-img-outer-wrap h4 {
    /* top: 50%;
    transform: translateY(-50%); */
    margin: 0;
    bottom: 15px;
    top: auto;
    text-shadow: 2px 2px 2px #000;
}

.issue-card.state-card .issue-wrapper-img img {
    width: 100%;
}

.basic-content-div.state {
    font-size: 0;
}

.take-action-div {
    
}

.take-action-page-div {
    margin: 50px 0;
}

/* .take-action-div .issue-row-two .issue-card.state-card:last-of-type .issue-img-outer-wrap {
    background-color: rgba(15, 44, 146, 0.72);
}

.take-action-div .issue-row-two .issue-card.state-card:last-of-type:hover .issue-img-outer-wrap {
    background-color: rgba( 23, 138, 59, .8);
} */

.take-action-div .issue-wrapper-img {
    position: relative;
    z-index: 2;
}

.take-action-div .issue-row-two .issue-card.state-card:last-of-type .issue-img-outer-wrap h4 {
    display: inline-block;
    bottom: auto;
    left: 50%;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
    top: 50%;
}

.basic-content-div.state.state-page-js.voter-page {
    font-size: 0;
}

.state-page-js.voter-page .issue-card.state-card {
    width: 46%;
    min-height: 440px;
}

.state-page-js.voter-page .issue-card.state-card img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    min-height: 440px;
}

.state-page-js.voter-page .issue-card.state-card .issue-wrapper-img {
    height: 100%;
    width: 100%;
}

.pledge-container {
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.main-header {
    padding: 30px 5% 10px;
}

.show-menu-div ul#menu-always-show-menu {
    width: 100%;
    text-align: center;
    border-top: 7px solid #000;
    padding: 0 5% 10px;
}

.show-menu-div ul#menu-always-show-menu li {
    display: inline-block;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    margin: 20px 0 0 5%;
}

.show-menu-div ul#menu-always-show-menu li a {
    color: #000;
}

.show-menu-div ul#menu-always-show-menu li a:hover {
    color: #178A3B;
    transition: all ease-in-out 0.4s;
}

power-the-polls-form h3 {
    line-height: 1;
    color: #000;
}

power-the-polls-form form label {
    text-align: left;
    font-family: 'Oswald Bold Italic', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

power-the-polls-form button {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    background-color: #178A3B;
    color: #fff;
    transition: all ease-in-out 0.4s;
}

power-the-polls-form button:hover {
    background-color: #0F2C92;
    opacity: 1;
}

power-the-polls-form form input, 
power-the-polls-form form select {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
}

.main-container .hydrated  ol, 
.main-container .hydrated ul {
    list-style: none;
}

.hydrated h1, 
.hydrated h2,
.hydrated h3, 
.hydrated h4, 
.hydrated h5, 
.hydrated h6 {
    color: #000000;
}