/*
Theme Name: BALLOT 25
Author: Sam Kahle
Version: 1.0
License: GNU General Public License
 */

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700i,800,900|Open+Sans:400,700,800&display=swap");

/*
 font-family: 'Montserrat', sans-serif;
 font-family: 'Open Sans', sans-serif;
  */

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.box {
  box-sizing: border-box;
}

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

#biscmeter {
  padding: 0px;
  display: block;
  color: #ffffff;
  min-height: 80px;
  font-size: 60px;
  height: 100%;
  object-fit: cover;
  width: 100%;
  margin: 0 7px 7px 0;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding: 30px;
  position: relative;
}

#biscmeter .meter {
  font-size: 50px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#biscmeter .meter img {
  display: block;
  height: auto;
  margin-top: 50px;
  width: 100%;
}

#biscmeter:hover {
  cursor: pointer;
  /* opacity: 0.7; */
  transition: 0.2s ease;
}

.ballothubpage {
  background-color: #000000;
  /* background-image: url("./images/ballot-new/x-background.png"); */
  background-image: url("./images/ballot-new/x-background-checkmark.png");
  background-repeat: no-repeat;
  background-position: right top;
  padding: 50px 0;
}

.hub-bottom-map-wrapper {
  color: #ffffff;
  max-width: 1200px;
  margin: 50px auto;
  width: 90%;
}

.hub-bottom-map-wrapper .legend-color {
  border: 1px solid #fff;
}

.hub-bottom-map-wrapper #outlines {
  stroke: #ffffff;
}

.hub-bottom-map-wrapper .tooltip {
  color: #000000;
}

.ballothub-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.ballothub-right,
.ballothub-left {
  display: inline-block;
  width: 47%;
}

.ballothub-left {
}

.ballothub-right img {
  height: auto;
  width: 100%;
}

.ballothubpage .basic-page-content-wrapper ul li h6 {
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  margin: 1em 0;
}

.ballothubpage .basic-page-wrapper h1 {
  font-size: 35px;
  text-transform: uppercase;
}

.mydashboard {
  display: none;
}

#outerContainer #mainContainer div.toolbar {
  display: none !important;
  /* hide PDF viewer toolbar */
}

#outerContainer #mainContainer #viewerContainer {
  top: 0 !important;
  /* move doc up into empty bar space */
}

#lostpasswordform fieldset {
  border: 0;
  padding: 0;
}

.page-id-426 .basic-featured-image {
  display: none;
}

.collectionselect svg {
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
}

.collectionselect.activecollectionselect svg {
  fill: #ffffff !important;
}

#lostpasswordform fieldset legend {
  display: none;
}

#lostpasswordform #somfrp_user_info {
  width: 69.9%;
  /* float: left; */
  font-size: 20px;
  border: 1px solid #ccc;
  padding: 3px;
}

#lostpasswordform #reset-pass-submit {
  background-color: #21a6db;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  padding: 20px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  transition: all ease-in-out 0.4s;
}

#resetpasswordform #reset-pass-submit {
  background-color: #ffe351;
  padding: 20px 30px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  transition: all ease-in-out 0.4s;
  border: 0;
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 900;
}

#resetpasswordform #reset-pass-submit:hover {
  background-color: #21a6db;
  cursor: pointer;
}

#resetpasswordform fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

#resetpasswordform legend {
  display: none;
}

.pdf-iframe {
  width: 100%;
  height: 600px;
}

#lostpasswordform #reset-pass-submit:hover {
  background-color: #ff00ff;
  color: #ffffff;
  cursor: pointer;
}

.fbubble {
  display: inline-block;
  padding: 10px 20px 10px 0;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 700;
  color: #634b82;
  margin-right: 20px;
}

.fbubble span {
  color: #666;
  margin-left: 10px;
}

.fbubble span:hover {
  color: #999;
  transition: 0.2s ease;
  cursor: pointer;
}

.fbubble:hover {
  cursor: pointer;
}

#resetpasswordform input {
  width: 69.9%;
  font-size: 20px;
  border: 1px solid #ccc;
  padding: 3px;
}

#custom_field_string_political_issue_field_3 textarea {
  width: 100%;
  padding: 10px 0;
  margin-top: 10px;
  height: 200px;
}

.results-div h6 {
  color: #21a6db !important;
}

.collectionresults.threemore {
  display: none;
}

.threemorepopup .areacoll,
.threemorepopup .yearcoll,
.threemorepopup .issuecoll {
  display: block !important;
}

.threemorepopup {
  position: fixed;
  top: 0;
  width: 90%;
  left: 0;
  padding: 25px 5% 50px;
  background: white;
  z-index: 1000;
  display: none;
}

.submitpopup {
  text-align: right;
}

.submitpopup p {
  background: #21a6db;
  color: #ffffff !important;
  padding: 10px 20px;
  width: 100px;
  text-align: center;
  margin: 0 0 0 auto !important;
  font-weight: 800 !important;
}

.submitpopup p:hover {
  background: #281445 !important;
  transition: 0.2s ease;
  cursor: pointer;
}

.threemorepopup .collectionselect img {
  display: none;
}

.basic-page-wrapper .threemorepopup .collectionoption {
  font-size: 16px;
  margin: 10px 20px;
}

/* .resources.second */
.recwrapper3,
.recwrapper,
.recwrapper2 {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.ballot-bisc-news .resources.third .event,
.ballot-bisc-news .resources.second .event {
  padding: 0 0 65px;
}

.ballot-bisc-news .resources.third .event .card-bottom,
.ballot-bisc-news .resources.second .event .card-bottom {
  padding: 30px 30px 0;
}

div.recwrapper3 ~ .recwrapper3 {
  display: none;
}

div.recwrapper ~ .recwrapper {
  display: none;
}

div.recwrapper2 ~ .recwrapper2 {
  display: none;
}

div.newswrapper ~ .newswrapper {
  display: none;
}

.ballot-bisc-news .event.press {
  background-color: #87cde9;
}

.ballot-resource-library-wrapper a.ballot-read-more-btn.svg {
  background-color: transparent;
  text-align: right;
}

.ballot-resource-library-wrapper a.ballot-read-more-btn.svg svg {
  transition: all ease-in-out 0.4s;
}

.ballot-bisc-news
  .resources.third
  .event:nth-of-type(odd)
  a.ballot-read-more-btn:hover,
.ballot-bisc-news
  .resources.third
  .event:nth-of-type(even)
  a.ballot-read-more-btn:hover,
.ballot-resource-library-wrapper
  .resources.third
  a.ballot-read-more-btn.svg:hover {
  background-color: transparent;
}

.ballot-resource-library-wrapper a.ballot-read-more-btn.svg:hover svg {
  transform: translateX(5px);
}

.ballot-bisc-news .event.press,
.ballot-bisc-news .event.press:nth-of-type(odd),
.ballot-bisc-news .event.press:nth-of-type(even) {
  background-color: #87cde9;
}

#pagingDiv {
  padding-bottom: 50px;
  padding-top: 50px;
  text-align: center;
}

#pagingDiv .myDisableClass {
  /* background-color: #4CAF50; */
  display: none;
}

#pagingDiv a,
#pagingDiv span,
#pagingDiv2 a,
#pagingDiv2 span,
#pagingDiv3 a,
#pagingDiv3 span {
  background: transparent;
  border-radius: 3px;
  color: #ffffff;
  /* color: #21a6db; */
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 0;
  margin-right: 4px;
  padding: 10px 20px;
  text-decoration: none;
}

/* #pagingDiv a.myClass {
	color: #FFFFFF;
} */

#pagingDiv3 span.current,
#pagingDiv2 span.current,
#pagingDiv span.current {
  color: #21a6db;
}

#pagingDiv3,
#pagingDiv2 {
  padding-top: 50px;
  text-align: center;
  padding-bottom: 100px;
}

#pagingDiv3 .myDisableClass,
#pagingDiv2 .myDisableClass {
  /* background-color: #4CAF50; */
  display: none;
}

/* #pagingDiv2 a,
#pagingDiv2 span {
	display: inline-block;
	box-shadow: 0;
	font-size: 1.2em;
	font-weight: bold;
	letter-spacing: 1.1px;
	text-decoration: none;
	color: #27aae1;
	padding: 10px 20px;
	margin-right: 4px;
	border-radius: 3px;
	background: transparent;
} */

.phone-input {
  position: absolute !important;
  top: -1000px !important;
}

#newssignup {
  width: 90%;
  margin: 0 auto;
}

.ballothubpage #newssignup {
  width: 70%;
  margin: 100px auto;
}

#newssignup .ctct-form-field {
  width: 49%;
  margin: 0 0.25% !important;
  display: inline-block;
  vertical-align: middle;
}

.morebtn {
  position: absolute;
  bottom: 10px;
  min-height: auto !important;
  font-weight: 800 !important;
  font-size: 15px !important;
}

#newssignup .ctct-form-button {
  width: 33%;
  display: inline-block;
  vertical-align: middle;
  border: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #ffe351;
  color: #000000;
  padding: 25px 11px;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 10px 0.25% 0;
  border-radius: 0;
}

.tapage .basic-page-content-wrapper {
  padding: 35px;
}

.tapage #newssignup {
  width: 100%;
  margin-top: 100px;
}

#newssignup .ctct-form-button:hover {
  background-color: #21a6db;
  color: #ffffff;
}

#newssignup .ctct-form-field input {
  /* border: 3px solid #654885 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200 !important; */

  border: 0px solid #654885 !important;
  background-color: #eee !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 500 !important;
}

.page-id-25 #newssignup {
  width: 90%;
  margin: 0 auto 100px;
}

#pagingDiv a:hover {
  cursor: pointer;
}

#pagingDiv a.active {
  border: none;
  background: #616161;
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.5),
    0px 1px 0px rgba(255, 255, 255, 0.8);
  color: #f0f0f0;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

#pagingDiv span {
  color: #ffffff;
  padding: 10px 20px;
}

#pagingDiv2 a:hover {
  cursor: pointer;
}

#pagingDiv2 a.active {
  border: none;
  background: #616161;
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.5),
    0px 1px 0px rgba(255, 255, 255, 0.8);
  color: #f0f0f0;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
/* 
#pagingDiv2 span {
	color: #333;
	padding: 10px 20px;
} */

.collectionoptions.dd {
  /* left: 10px; */
}

.closepop {
  width: 35px;
  /* position: absolute; */
  right: 0;
  display: block;
  margin: 0 0 0 auto;
}

.closepop:hover {
  cursor: pointer;
}

.threemorepopup .collectionoptions {
  height: 100px;
  display: block !important;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.collectionlista.boldcoll {
  font-weight: 900;
}

.collectionlistfirst {
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  margin-right: 50px;
  margin-bottom: 30px;
  display: inline-block;
}

.collectionlist.mobile {
  display: none;
}

.collectionlista:hover {
  font-weight: 900;
  transition: 0.2s ease;
}

.folderlist a.boldfold {
  background: #21a6db;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  /* font-weight: 900; */
}

.home div.ctct-form-embed form.ctct-form-custom .ctct-form-errorMessage {
  color: #ffe351 !important;
}

.eeo {
  background-color: #bee5f6;
  margin: 50px auto 0;
  padding: 50px 5%;
  text-align: center;
  width: 100%;
}

.eeo h1,
.eeo h2,
.eeo h3,
.eeo h4,
.eeo h5,
.eeo h6 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.eeo p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 20px 0;
}

.h3a {
  color: #21a6db;
  text-decoration: none;
}

a:empty {
  display: none;
}

.h3a:hover {
  color: #281445;
  transition: 0.2s ease;
}

.basic-featured-image img {
  width: 100%;
}

h1.bhtitle {
  background: #ff00ff;
  color: #000000;
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 55px;
  letter-spacing: 0;
  line-height: 1;
  margin-left: -12%;
  padding: 20px 20px 20px 12%;
  text-transform: uppercase;
  text-align: center;
}

.ballothubpage .basic-page-content-wrapper ul li {
  background: #ffb2fe;
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  width: 32%;

  /* max-height: 280px; */
}

.ballothubpage .basic-page-content-wrapper ul li:nth-child(3) img {
  display: block;
  margin: 40px auto 0;
  width: 90%;
  max-width: 220px;
}

.ballothubpage .basic-page-content-wrapper ul li:nth-child(6) img {
  max-width: 150px;
  margin-bottom: -20px;
}

.ballothubpage .basic-page-content-wrapper ul li:nth-child(7) img {
  max-width: 150px;
  max-height: 100px;
  margin-bottom: -20px;
}

/* .ballothubpage .basic-page-content-wrapper ul li:nth-of-type(1n + 2) {
	background-color: #87cde9;
} */

.ballothubpage .basic-page-content-wrapper ul li:nth-child(1),
.ballothubpage .basic-page-content-wrapper ul li:nth-child(3),
.ballothubpage .basic-page-content-wrapper ul li:nth-child(4),
.ballothubpage .basic-page-content-wrapper ul li:nth-child(6) {
  background-color: #87cde9;
}

.ballothubpage .basic-page-content-wrapper ul li:nth-child(3),
#biscmeter {
  /* max-height: 577px; */
}

.ballothubpage .basic-page-content-wrapper ul li a {
  color: #000000;
  display: block;
  font-size: 40px;
  line-height: 1.2;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.ballothubpage .basic-page-content-wrapper ul li a.morebtn {
  background: #000000;
  border-radius: 20px;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 0;
  line-height: 1;
  right: 30px;
  padding: 10px 20px;
  text-align: center;
}

.ballothubpage .basic-page-content-wrapper {
  color: #ffffff;
  margin-bottom: 100px;
}

.wp-block-table.is-style-stripes tr td:nth-child(3) {
  text-align: left;
}

.ballothubpage .basic-page-content-wrapper ul li {
  padding: 30px 30px 40px;
  display: block;
  color: #ffffff;
  min-height: 80px;
  font-size: 26px;
  font-weight: 800;
}

.li-a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ballothubpage .basic-page-content-wrapper ul li:hover {
  background: #ffffff;
  transition: 0.2s ease;
}

.ballothubpage .basic-page-content-wrapper ul li:hover a.morebtn {
  background-color: #21a6db;
}

.election-tracker-wrapper {
  color: #ffffff;
  margin-top: 100px;
}

.election-tracker-wrapper h2 {
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0;
  line-height: 1.4;
  /* margin-bottom: 20px; */
  text-transform: uppercase;
}

.election-tracker-wrapper p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
}

.states-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.states-wrapper .single-state {
  display: inline-block;
  cursor: pointer;
  width: 130px;
}

.states-wrapper .single-state p {
  color: #ffffff;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  transition: all ease-in-out 0.4s;
}

.states-wrapper .single-state p span {
  display: block;
  font-weight: 400;
  font-size: 20px;
}

.states-wrapper .single-state p:hover {
  text-decoration: underline;
}

.states-wrapper .single-state p:hover span {
  text-decoration: none;
}

.states-wrapper .single-state.active p,
.states-wrapper .single-state:hover p {
  color: #87cde9;
}

#hideAllButton {
  display: none;
}

.state-campaign {
}

.election-tracker-wrapper table {
  border-collapse: collapse;
  width: 100%;
}

.election-tracker-wrapper table th {
  background-color: #87cde9;
  color: #000000;
  font-family: "Anton", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  padding: 8px;
  text-align: left;
  text-transform: uppercase;
  /* vertical-align: top; */
}

.election-tracker-wrapper table tr:nth-of-type(even) {
  background-color: #281445;
}

.election-tracker-wrapper table td {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 8px;
  text-align: left;
  position: relative;
  vertical-align: top;
}

.election-tracker-wrapper table .hidden {
  display: none;
  transition: all ease-in-out 0.4s;
}

.election-tracker-wrapper table td p {
  margin: 10px 0;
}

.election-tracker-wrapper table td .close {
  color: #ff00ff;
  cursor: pointer;
  font-size: 18px;
  font-family: "Anton", sans-serif;
  right: 5px;
  top: 4px;
  position: absolute;
}

.election-tracker-wrapper table td .close svg {
  height: auto;
  width: 16px;
}

.election-tracker-wrapper table td .close svg circle,
.election-tracker-wrapper table td .close svg rect {
  transition: all ease-in-out 0.4s;
}

.election-tracker-wrapper table td .close:hover svg circle {
  stroke: #21a6db;
}

.election-tracker-wrapper table td .close:hover svg rect {
  fill: #21a6db;
}

.election-tracker-wrapper p.view-all {
  display: inline-block;
  cursor: pointer;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  width: 100px;
}

.election-tracker-wrapper p.view-all.active,
.election-tracker-wrapper p.view-all:hover {
  color: #21a6db;
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  padding: 10px;
  text-align: center;
}

.page-id-3465 .wp-block-table.is-style-stripes td,
.page-id-3465 .wp-block-table.is-style-stripes th {
  padding: 10px;
  text-align: left;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #ebe7f0;
}

/* .ballothubpage .basic-page-content-wrapper ul li:nth-child(6):hover {
    background: #654885;
    transition: .2s ease;
}

.ballothubpage .basic-page-content-wrapper ul li:nth-child(6) {
    background: #21A6DB;
} */

.page-id-1073 .basic-page-content-wrapper ul li:nth-child(1),
.page-id-1073 .basic-page-content-wrapper ul li:nth-child(2) {
  background: #21a6db;
}

.page-id-1073 .basic-page-content-wrapper ul li:nth-child(1):hover,
.page-id-1073 .basic-page-content-wrapper ul li:nth-child(2):hover {
  background: #654885;
  transition: 0.2s ease;
}

.page-id-826 .basic-page-content-wrapper ul li:nth-child(1),
.page-id-826 .basic-page-content-wrapper ul li:nth-child(2) {
  background: #21a6db;
}

.page-id-826 .basic-page-content-wrapper ul li:nth-child(1):hover,
.page-id-826 .basic-page-content-wrapper ul li:nth-child(2):hover {
  background: #654885;
  transition: 0.2s ease;
}

.ballothubpage .basic-page-content-wrapper ul li:hover a {
  text-decoration: none;
}

.ballothubpage .basic-page-content-wrapper ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  grid-auto-rows: 1fr;
  padding: 0;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex1 {
  width: 100%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex2 {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex3 {
  width: 32%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex4 {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex5 {
  width: 32%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex5:nth-child(4) {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex5:nth-child(5) {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex6 {
  width: 32%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex7 {
  width: 32%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex7:nth-child(4) {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex7:nth-child(5) {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex7:nth-child(6) {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex7:nth-child(7) {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex8 {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex9 {
  width: 100%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex10 {
  width: 49%;
}

.ballothubpage .basic-page-content-wrapper ul li.hubflex1:nth-of-type(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}

/* .ballothubpage .basic-page-content-wrapper ul li.hubflex1:last-of-type {
  grid-row: 3 / 3;
  grid-column: 2 / span 2;
} */

.page-id-1073 .basic-page-content-wrapper ul li {
  display: inline-block;
  width: 32%;
  margin: 0 1% 10px 0;
  background: #654885;
  box-sizing: border-box;
}

.page-id-1073 .basic-page-content-wrapper ul li:nth-child(4) {
  width: 48.5%;
}

/* .page-id-1073 .basic-page-content-wrapper ul li:nth-child(5) {
  width: 48.5%;
} */

.page-id-1073 .basic-page-content-wrapper ul li a {
  /* padding: 30px; */
  display: block;
  color: #ffffff;
  min-height: 80px;
  font-size: 26px;
}

.page-id-826 .basic-page-content-wrapper ul li {
  display: inline-block;
  width: 32%;
  margin: 0 1% 10px 0;
  background: #654885;
  box-sizing: border-box;
}

.page-id-826 .basic-page-content-wrapper ul li:nth-child(4) {
  width: 48.5%;
}

.page-id-826 .basic-page-content-wrapper ul li:nth-child(5) {
  width: 48.5%;
}

.page-id-826 .basic-page-content-wrapper ul li a {
  /* padding: 30px; */
  display: block;
  color: #ffffff;
  min-height: 80px;
  font-size: 26px;
}

.wp-block-table.is-style-stripes tr td:nth-child(3) {
  text-align: left;
}

.page-id-1073 .basic-page-content-wrapper {
  background-color: #eee;
}

.page-id-1073 .basic-page-content-wrapper ul li {
  padding: 30px;
  display: block;
  color: #ffffff;
  min-height: 80px;
  font-size: 26px;
  font-weight: 800;
}

.page-id-1073 .basic-page-content-wrapper ul li:hover {
  background: #21a6db;
  transition: 0.2s ease;
}

.page-id-826 .basic-page-content-wrapper {
  background-color: #eee;
}

.page-id-826 .basic-page-content-wrapper ul li {
  padding: 30px;
  display: block;
  color: #ffffff;
  min-height: 80px;
  font-size: 26px;
  font-weight: 800;
}

.page-id-826 .basic-page-content-wrapper ul li:hover {
  background: #21a6db;
  transition: 0.2s ease;
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  padding: 10px;
  text-align: center;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #ebe7f0;
}

.page-id-1073 .basic-page-content-wrapper ul li:nth-child(5):hover {
  background: #654885;
  transition: 0.2s ease;
}

.page-id-1073 .basic-page-content-wrapper ul li:nth-child(5) {
  background: #21a6db;
}

.page-id-1073 .basic-page-content-wrapper ul li:hover a {
  text-decoration: none;
}

.page-id-1073 .basic-page-content-wrapper ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.page-id-826 .basic-page-content-wrapper ul li:nth-child(5):hover {
  background: #654885;
  transition: 0.2s ease;
}

.page-id-826 .basic-page-content-wrapper ul li:nth-child(5) {
  background: #21a6db;
}

.page-id-826 .basic-page-content-wrapper ul li:hover a {
  text-decoration: none;
}

.page-id-826 .basic-page-content-wrapper ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.bfi {
  display: none;
}

.basic-featured-image {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

header {
  width: 100%;
}

::selection {
  background: #21a6db;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6,
header nav li a,
footer nav li a {
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
  font-weight: 600;
}

#hlogo {
  position: relative;
  display: inline-block;
  padding: 2em 6em 2em 3em;
  overflow: hidden;
  width: 235px;
  z-index: 100;
}

.logout,
.mydashboard {
  float: right;
  font-size: 14px;
}

.logout {
  display: block;
  float: none;
  margin-top: 20px;
}

#hlogo img {
  width: 100%;
}

#hlogo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(-25deg);
  -ms-transform: skew(-25deg);
  transform: skew(-25deg);
  z-index: -1;
}

.nomatch {
  display: none;
}

#conheader {
  position: absolute;
  display: inline-block;
  padding: 2em 6em 33px 6em;
  overflow: hidden;
  /* width: 300px; */
  left: 300px;
  z-index: 10;
}

#conheader a {
  color: #ffffff;
  font-size: 25px;
  text-decoration: none;
  font-weight: 700;
}

#conheader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #27aae1;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(-25deg);
  -ms-transform: skew(-25deg);
  transform: skew(-25deg);
  z-index: -2;
}

.page-id-418 #wppb-login-wrap {
  margin-top: 50px;
}

/* .wppb-default-nickname, */
.wppb-default-website,
.wppb-default-biographical-info,
.wppb-send-credentials-checkbox {
  display: none !important;
}

.wppb-user-forms .wppb-checkboxes li {
  display: block !important;
}

#nav {
  background: #000000;
  width: 100%;
  position: absolute;
  top: 0;
  padding: 32px 0;
  /* z-index: -3; */
}

#nav nav {
  text-align: right;
  margin-right: 20px;
}

#nav nav li {
  color: #ffffff;
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

#nav nav li a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.logged-in #nav {
  top: 32px;
}

.headerimage {
  padding: 200px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -102px;
}

.headerimage.innerhero {
  padding: 300px 0;
}

.herocontent {
  width: 80%;
  margin: 0 auto;
}

.herocontent h1 {
  background: #ffffff;
  font-size: 60px;
  color: #654885;
  text-transform: uppercase;
  padding: 20px;
}

#section2 {
  background-image: url(../img/sec2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 650px;
  margin-top: -120px;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.skinny {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.staff-post a,
.board-content a,
.staff-post a:visited,
.board-content a:visited {
  color: #ffffff;
  text-decoration: none;
}

.sec2-left,
.sec2-right {
  display: inline-block;
  width: 45%;
  padding: 155px 0;
  vertical-align: middle;
}

.sec2-right {
  margin-left: 5%;
}

.sec2-right form input {
  display: block;
  padding: 10px 0;
  border: 0;
  font-size: 20px;
  width: 100%;
  margin-bottom: 10px;
  text-indent: 20px;
}

#menu-item-46 ul {
  padding: 0 0;
}

.sec2-right form input[type="submit"] {
  background: #50ac40;
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 35px;
  position: relative;
  overflow: hidden;
  text-indent: 0;
}

.sec2-right form input[type="email"],
.sec2-right form input[type="number"] {
  display: inline-block;
}

.sec2-right form input[type="email"] {
  width: 60%;
  margin-right: 1%;
}

.sec2-right form input[type="number"] {
  width: 38%;
}

/* .sec2-right form input[type="submit"]::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #27AAE1;
     -webkit-transform-origin: 100% 0;
     -ms-transform-origin: 100% 0;
     transform-origin: 100% 0;
     -webkit-transform: skew(-25deg);
     -ms-transform: skew(-25deg);
     transform: skew(-25deg);
     z-index: -2;
 } */

.sec2-left h2 {
  color: #ffffff;
}

.sec2-left p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.sec3-left,
.sec3-right {
  display: inline-block;
  width: 45%;
  padding: 155px 0;
  vertical-align: middle;
}

.sec3-right {
  margin-left: 5%;
}

.sec3-left h2 {
  color: #000000;
}

.sec3-left p {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

#section4 {
  background-image: url(../img/dobg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
  margin-bottom: 100px;
}

.sec4content {
  width: 90%;
  margin: 0 auto;
}

.doposts {
  display: flex;
}

a:visited {
  color: #21a6db;
}

.dopost {
  display: inline-block;
  width: 30%;
  margin-right: 3%;
}

.dopost h3 {
  font-size: 30px;
  color: #654885;
}

.dopost img {
  width: 100%;
}

.dopost p {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

.dopost a {
  color: #654885;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
}

.contactus {
  background: transparent;
  padding: 20px 50px 20px 0;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 35px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-top: 50px;
  display: block;
  width: 500px;
}

.contactus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #50ac40;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(-25deg);
  -ms-transform: skew(-25deg);
  transform: skew(-25deg);
  z-index: 0;
}

.contactus span {
  z-index: 5;
  position: relative;
}

.herobtn {
  background: transparent;
  padding: 20px 50px 20px 0;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 35px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-top: 50px;
  display: block;
  width: 400px;
}

.herobtn span {
  z-index: 5;
  position: relative;
}

a.pink-btn {
  background: #ff00ff;
  padding: 10px 5px;
  border-radius: 30px;
  text-align: center;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-top: 50px;
  display: block;
  width: 300px;
  margin: 25px auto;
  text-decoration: none !important;
}

a.pink-btn:hover {
  background: #21a6db;
  transition: 0.2s ease;
}

.herobtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #27aae1;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(-25deg);
  -ms-transform: skew(-25deg);
  transform: skew(-25deg);
  z-index: 0;
}

#section5 {
  background: #654885;
  padding: 100px 0;
}

.donate-btns {
  display: flex;
}

#section5 h2 {
  color: #ffffff;
}

.donate-btns a {
  width: 25%;
  display: inline-block;
  text-align: center;
  background: #ffffff;
  padding: 20px;
  margin: 0 10px;
  color: #27aae1;
  border: 5px solid #27aae1;
  font-size: 40px;
  font-weight: 700;
  text-decoration: none;
}

.sec3-right img {
  width: 100%;
}

.donate-btns a span {
  color: orange;
  font-size: 20px;
  vertical-align: super;
}

.donate-btns a:hover {
  color: #ffffff;
  border: 5px solid #27aae1;
  background: #27aae1;
  transition: 0.2s ease;
}

.donate-btns a:hover span {
  color: #ffffff;
  transition: 0.2s ease;
}

.donate-btns a:last-child {
  width: 50%;
  background: #27aae1;
  border: 5px solid #27aae1;
  color: #ffffff;
}

/*
 .donate-btns a:last-child::after {

 content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #50AC40;
     -webkit-transform-origin: 100% 0;
     -ms-transform-origin: 100% 0;
     transform-origin: 100% 0;
     -webkit-transform: skew(-25deg);
     -ms-transform: skew(-25deg);
     transform: skew(-25deg);
     z-index: 0;

 } */

#section5 h6 {
  font-weight: 100;
  color: #ffffff;
}

#section6 {
  background: #32384b;
  padding: 100px 0;
  color: #ffffff;
}

#section6 .eventpost h3 {
  color: #27aae1;
  font-size: 30px;
}

#section6 h2 {
  color: #ffffff;
}

.eventpost {
  border-bottom: 1px solid #ffffff;
}

.event.thought img {
  /* height: 150px; */
  height: auto;
  object-fit: cover;
  width: 100%;
}

.event.thought h3 {
  margin: 10px 0;
}

.eventpost p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.eventpost h4:last-child {
  font-weight: 400;
}

.event h4 b a {
  color: inherit;
  text-decoration: none;
}

.event span.pub {
  font-weight: 800;
  margin-right: 20px;
}

footer {
  background: #000000;
  padding: 100px 0;
}

.fcontainer {
  width: 70%;
  margin: 0 auto;
  display: flex;
}

.footer-left,
.footer-middle,
.footer-right {
  width: 30%;
  margin: 0% 9% 0 0;
}

.footer-left p {
  color: #ffffff;
}

.footer-left p a {
  color: #27aae1;
}

.footer-middle a {
  display: block;
  color: #27aae1;
  font-size: 25px;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-left img {
  width: 100%;
}

.footer-right a {
  text-align: center;
  padding: 20px;
  margin: 0 10px;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  background: #27aae1;
  color: #ffffff;
}

.footer-right a span {
  z-index: 5;
  position: relative;
}

/*
 .footer-right a::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #27AAE1;
     -webkit-transform-origin: 100% 0;
     -ms-transform-origin: 100% 0;
     transform-origin: 100% 0;
     -webkit-transform: skew(-25deg);
     -ms-transform: skew(-25deg);
     transform: skew(-25deg);
     z-index: 0;
 } */

#innersection {
  padding: 100px 0;
}

blockquote {
  margin: 0;
  font-style: italic;
  font-size: 28px;
  line-height: 140%;
}

p {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

li {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.resultpost {
  margin-bottom: 50px;
}

.resultpost h3 {
  color: #654885;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
}

/* .resultpost  p {
     font-size: 20px;
     font-weight: 500;
     line-height: 130%;
 } */

#purplebluesection {
  display: flex;
  margin-top: 50px;
}

.purple {
  background: #654885;
}

.blue {
  background: #27aae1;
}

.purple,
.blue {
  display: inline-flex;
  padding: 75px 0;
  color: #ffffff;
}

#joinsection {
  background: #32384b;
  padding: 100px 0;
}

.joincontent {
  display: flex;
}

.joinleft,
.joinright {
  display: inline-block;
  color: #ffffff;
  width: 50%;
}

.joinleft {
  margin-right: 5%;
}

.joinright .contactus {
  width: 100%;
}

#innersection h1 {
  color: #654885;
  font-size: 60px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.pre-footer a {
  color: #ff00ff;
  transition: all 0.2s ease;
}
.the-content a {
  color: #27aae1;
  /* text-decoration: none; */
  transition: all 0.2s ease;
}

.pre-footer a:hover {
  color: #21a6db;
}
.the-content a:hover {
  color: #ff00ff;
}

.left-float {
  float: left;
  margin: 20px 20px 20px 0;
}

.right-float {
  float: right;
  margin: 20px 0 20px 20px;
}

.right-float img,
.left-float img {
  width: 300px;
}

.cases {
  display: flex;
}

.case {
  background: #654885;
  display: inline-block;
  padding: 100px 5%;
  color: #ffffff;
}

.apply {
  color: #654885;
  font-weight: 700;
  margin: 1em 0;
  display: block;
  text-decoration: none;
}

.case:nth-child(2) {
  background: #27aae1;
}

.case h3 {
  text-transform: uppercase;
}

#contactform {
  background: #32384b;
  padding: 100px 0;
}

#contactform h2 {
  color: #ffffff;
}

#contactform form input {
  width: 49%;
  box-sizing: border-box;
  border: 0;
  font-size: 25px;
  padding: 10px 0;
  display: inline-block;
  text-indent: 20px;
  margin: 0 0 20px;
}

.contact-form form input {
  width: 49%;
  box-sizing: border-box;
  /* border: 1px; */
  font-size: 25px;
  padding: 10px 0;
  display: inline-block;
  text-indent: 20px;
  margin: 0 0 20px;
}

#contactform form input:nth-child(2),
#contactform form input:nth-child(4) {
  margin: 0 0 5px 1%;
}

#contactform form textarea {
  width: 99.5%;
  border: 0;
  padding: 20px;
  box-sizing: border-box;
  font-size: 25px;
}

#contactform form input[type="submit"] {
  background: #50ac40;
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 35px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-top: 50px;
  display: block;
}

#staffsection {
  width: 90%;
  margin: 0 auto;
}

#boardsection {
  width: 90%;
  margin: 0 auto;
}

.member {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  margin: 0 1% 30px;
}

.member a {
  text-decoration: none;
}

.member img {
  width: 100%;
}

.guestauth:hover {
  cursor: inherit;
}

.member h3,
.member p {
  margin: 0;
  color: #000000;
}

#casestudies {
  width: 100%;
  margin: 0 auto;
}

#casestudies.cspage {
  width: 90%;
}

.cscontainer {
  display: flex;
}

.casestudy {
  display: inline-block;
  background: #32384b;
  width: 33%;
  padding: 20px 5%;
  margin: 0 1% 30px;
  color: #ffffff;
}

.casestudy a {
  text-decoration: none;
  color: #ffffff;
}

#eventsection {
  background: #ffdcff;
  margin: 0 auto 100px;
  padding: 100px 0;
  max-width: 1200px;
  width: 90%;
}

#mobile.fixed {
  position: fixed;
}

#nav li ul {
  display: none;
  padding: 0;
  background: #000000;
  padding: 20px 10px 20px;
  margin: 0;
}

#nav li {
  position: relative;
}

#nav li ul li {
  display: block;
  text-align: left;
  margin: 10px 0 0;
}

#nav nav li li a {
  margin: 0;
  font-size: 14px;
}

#nav li:hover > ul {
  display: block;
  position: absolute;
  width: 100%;
}

.eventcontainer {
  width: 80%;
  margin: 0 auto;
}

.event h3 {
  color: #654885;
  font-size: 35px;
  text-transform: uppercase;
}

.event {
  border-bottom: 2px solid #aa9bbb;
  margin-bottom: 50px;
  padding-bottom: 25px;
}

.ballot-bisc-news .event {
  background-color: #87cde9;
  border-bottom: 0;
  box-sizing: border-box;
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  margin: 2% 1% 0;
  padding: 35px 30px 65px;
  position: relative;
  vertical-align: top;
  width: 31%;
}

.ballot-bisc-news .event:nth-of-type(odd) {
  background-color: #ffb2fe;
}

.ballot-bisc-news h2 {
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  margin-right: 20px;
  text-transform: uppercase;
}

.ballot-resource-listing-wrap.ballot-bisc-news .resources {
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

.ballot-resource-listing-wrap.ballot-bisc-news .resources h3 {
  font-size: 25px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  margin: 10px 0;
}

.ballot-resource-listing-wrap.ballot-bisc-news .resources h3 a {
  color: #000000;
}

.img-text {
  display: flex;
  margin-bottom: 100px;
}

.img-right,
.img-left,
.text-left,
.text-right {
  display: inline-block;
  width: 50%;
  margin: 0 20px;
  vertical-align: middle;
}

.img-right img,
.img-left img {
  width: 100%;
}

.img-text h2 {
  text-transform: uppercase;
}

#mobilenav {
  display: none;
  position: fixed;
  right: -100%;
  width: 100%;
  text-align: center;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 65px 20px 40px 20px;
  box-sizing: border-box;
  top: 0px;
  z-index: 200;
}

#mobile {
  display: none;
  position: absolute;
  right: 4%;
  top: 35px;
  z-index: 201;
}

#mobilenav nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px 10px;
  font-size: 30px;
  font-weight: 600;
  display: block;
}

#nav-icon {
  width: 30px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.page-id-419 .userpass {
  width: 100%;
  margin-bottom: 20px;
}

.page-id-419 .userpass label {
  width: 20%;
  display: inline-block;
  font-size: 20px;
}

.collections {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  font-size: 0;
  justify-content: flex-start;
}

.collection {
  align-items: center;
  background: #87cde9;
  box-sizing: border-box;
  color: #000000;
  display: inline-flex;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  justify-content: center;
  margin: 0.5% 0.5% 0px 0;
  padding: 30px 0;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  width: 32.5%;
}

.collection:nth-of-type(odd) {
  background-color: #ffb2fe;
}

.collection:hover {
  background: #21a6db;
  transition: 0.2s ease;
}

.collectionoptions a:hover {
  cursor: pointer;
}

.collection p {
  color: #000000 !important;
  font-family: "Anton", sans-serif !important;
  font-weight: 400 !important;
  font-size: 25px !important;
  margin: 0 !important;
}

.collectionlist {
  background: #21a6db;
  padding: 30px 0 0px 5%;
  margin-bottom: 100px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.folderlist {
  background: #d7f0f9;
  width: 250px;
  display: inline-block;
  vertical-align: top;
}

.my-collections {
  display: inline-block;
  /* margin-left: 5%; */
  vertical-align: top;
  width: 100%;
}

.my-collections h6 {
  margin-bottom: 10px;
  font-size: 35px;
}

.folderlist a {
  padding: 10px 20px;
  text-align: left;
  color: #000000;
  font-size: 22px;
  display: block;
  text-decoration: none;
}

.folderlist a.subfolder {
  font-size: 16px;
  padding: 10px 20px 10px 50px;
}

.folderlist a:hover {
  background: #21a6db;
  color: #ffffff;
  /* font-weight: 900; */
}

.collectionlista {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 22px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  margin-right: 50px;
  margin-bottom: 30px;
  display: inline-block;
}

.folder-resource-container .my-collections {
  width: 70%;
}

.clearall {
  padding: 0 20px;
}

.results {
  background: transparent;
  padding: 0;
}

.resource-library.event {
  padding-bottom: 0;
}

.view-download {
  /* text-align: right; */
  margin: 35px 0;
}

.view-download a {
  background: #ff00ff;
  border-radius: 26px;
  color: #ffffff !important;
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  min-width: 200px;
  max-width: 100%;
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

.view-download a:hover {
  background-color: #21a6db;
}

.page-id-419 .userpass input {
  width: 75%;
  display: inline-block;
  padding: 10px 0;
  font-size: 20px;
  border: 1px solid #ccc;
  border-radius: 0;
}

.results-container {
  position: relative;
}

.search-clear {
  position: relative;
  right: 0;
  top: 0;
  margin: 0 auto;
  display: block !important;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.dropdowns {
  margin-left: 0;
  display: flex !important;
  width: 100%;
}

.dropdowns p,
.clearall {
  margin: 0;
  display: inline-block;
}

.clearall {
  font-weight: 600 !important;
  text-decoration: underline !important;
  color: purple;
}

.searchresources {
  width: 40%;
  display: inline-block;
  border: 0;
  border-radius: 25px;
  padding: 7px 0;
  text-indent: 20px;
  font-size: 16px;
  border: 2px solid gray;
}

.search-clear,
.dropdowns {
  display: inline-block;
}

.collectionresults {
  margin: 0;
  display: inline-block;
  color: #ffffff;
  position: relative;
}

.activecollectionselect {
  background: #281446 !important;
  color: #ffffff !important;
}

.collectionoption {
  width: auto;
  display: block;
  color: #ffffff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  margin: 20px;
  text-decoration: none;
  font-weight: 400;
}

.project-tag-container p {
  display: inline-block;
  font-weight: 700 !important;
}

.basic-page-wrapper .project-tag-container a {
  background: #ccc;
  font-weight: 600;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 30px;
  margin: 0 10px;
  color: #000000 !important;
  text-decoration: none;
}

.folder-resource-container .project-tag-container a {
  background: #ccc;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 30px;
  margin: 0 10px;
  color: #000000 !important;
  text-decoration: none;
  display: inline-block;
}

#wppb-loginform {
  appearance: none;
}

.folder-resource-container .project-tag-container a:hover {
  background: #bbb;
  transition: 0.2s ease;
}

.basic-page-wrapper .collectionoption {
  color: #ffffff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
  margin: 20px;
  text-decoration: none;
  font-weight: 400;
}

.logout:hover,
.clearall:hover,
.mydashboard:hover {
  color: #281445;
  transition: 0.2s ease;
}

.returnto {
  color: #21a6db;
  text-decoration: none;
  font-weight: 800;
}

.greensuccess {
  background: #e7f7d3;
  padding: 1px 20px;
  color: #ffffff;
  border: 1px solid green;
}

.bolds {
  font-weight: 800 !important;
}

.collectionoptions {
  position: absolute;
  width: 225px;
  background: #281446;
  display: none;
  max-height: 350px;
  overflow: scroll;
  z-index: 1;
}

.threemorepopup .collectionselect {
  margin: 0 20px 0px 0;
}

.collectionselect {
  color: #000000;
  display: inline-block;
  font-size: 20px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  margin: 0 20px 0 0;
  padding: 10px;
  text-transform: uppercase;
}

.collectionselect img {
  width: 12px;
  transform: rotate(180deg);
}

.collectionselect:hover {
  cursor: pointer;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:nth-child(4) {
  top: 20px;
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

li.socialnav {
  display: inline-block;
}

/* BISC1901 start ----------------------------------------------------------- */

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

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

a {
  transition: all ease-in-out 0.4s;
}

/* HEADER --------------------------------------------------------------------*/
.main-header {
  box-sizing: border-box;
  font-size: 0;
  padding: 0 5%;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: inline-block;
  height: auto;
  padding: 10px 0;
  text-decoration: none;
  vertical-align: middle;
  width: 250px;
}

.header-logo img {
  height: auto;
  width: 100%;
}

.desktop-nav {
  box-sizing: border-box;

  vertical-align: middle;
  /* width: calc(100% - 200px); */
}

.main-header .headersocial {
  display: inline-block;
}

.main-header .headersocial a {
  display: inline-block;
  margin: 0 5px;
}

.main-header .headersocial a svg {
  height: auto;
  width: 35px;
}

.main-header .headersocial a .background {
  transition: all ease-in-out 0.4s;
}

.main-header .headersocial a:hover .background {
  fill: #ff00ff;
}

.main-header ul {
  display: inline-block;
  height: 100%;
  list-style: none;
  padding-left: 0;
  text-align: right;
}

.main-header ul li {
  display: inline-block;
  margin-bottom: 0;
  padding: 35px 15px;
}

.main-header ul li a {
  color: #000000;
  display: inline-block;
  font-size: 19px;
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.1;
  transition: all ease-in-out 0.4s;
}

.main-header ul li.current_page_item,
.main-header ul li:hover {
  background-color: #21a6db;
  color: #ffffff;
}

.main-header ul li.current_page_item a,
.main-header ul li:hover a {
  color: #ffffff;
}

.main-header ul.sub-menu {
  height: auto;
}

.main-header ul li .sub-menu {
  background-color: #ffffff;
  display: none;
  left: 0px;
  /* padding: 0 0 23px; */
  width: 100%;
  position: absolute;
  transition: all ease-in-out 0.2s;
  /* width: 304px; */
  text-align: left;
  z-index: 2;
  top: 94px;
}

.main-header ul li .sub-menu li {
  display: block;
  padding: 10px;
}

.main-header ul li .sub-menu li a {
  color: #000000;
}

.main-header ul li.menu-item-has-children {
  position: relative;
}

.main-header ul li .sub-menu li a:hover {
  color: #ffffff;
}

.main-header ul li.menu-item-has-children:hover .sub-menu {
  display: block;
}

/* MOBILE NAV */
.containerballot {
  cursor: pointer;
  float: right;
  right: 5%;
  position: absolute;
  top: 6px;
  z-index: 100001;
  display: none;
}

.bar1,
.bar2,
.bar3 {
  background-color: #21a6db;
  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: #21a6db;
}

.change .bar2 {
  opacity: 0;
}

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

.mobile-nav {
  background-color: #281445;
  display: block;
  display: none;
  height: 100px;
  padding-bottom: 10px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100px;
  z-index: 2;
}

.main-header.dark {
  background-color: #000000;
}

.main-header.dark ul li a {
  color: #ffffff;
}

.main-header.dark ul li.menu-item-has-children .sub-menu {
  background-color: #000000;
}

.main-header.dark ul li .sub-menu li a {
  color: #ffffff;
}

.main-header.dark .dark {
  display: block;
}

.main-header .dark,
.main-header.light .dark,
.main-header.dark .light {
  display: none;
}

/* FOOTER --------------------------------------------------------------------*/
.ballot-footer {
  background-image: url("./images/ballot-new/footerimage.png");
  background-size: cover;
  background-position: top center;
  clear: both;
  font-size: 0;
  padding: 70px 5% 45px;
  position: relative;
  z-index: 1;
}

.footer-left-div {
  display: inline-block;
  width: 40%;
}

#footersocial {
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
  width: 270px;
}

.footer-logo img {
  height: auto;
  width: 100%;
}

.address {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  margin: 20px 0;
  /* margin-left: 53px; */
}

.footer-a-mail {
  color: #21a6db;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  /* margin-left: 53px; */
  text-decoration: none;
  transition: all ease-in-out 0.4s;
}

.footer-a-mail:hover {
  color: #ff00ff;
}

.ballot-footer .footer-right-inner {
  display: inline-flex;
  justify-content: space-around;
  /* margin-top: 100px; */
  vertical-align: top;
  width: 60%;
}

.ballot-footer .signup-footer {
  max-width: 300px;
  padding-left: 30px;
}

.ballot-footer .signup-footer h3 {
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.ballot-footer .signup-footer form {
  max-width: 300px;
}

.ballot-footer .signup-footer input {
  box-sizing: border-box;
  background-color: transparent !important;
  border: 1px solid #ffffff;
  color: #ffffff !important;
  display: block;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500;
  font-size: 20px !important;
  line-height: 1.3;
  margin: 30px 0;
  padding: 5px;
  width: 100%;
}

.ballot-footer .signup-footer input::placeholder,
.ballot-footer .signup-footer input::-webkit-input-placeholder {
  color: #ffffff !important;
}

.ballot-footer .at .at-fieldset {
  padding: 0;
}

.ballot-footer .at-row > [class^="at-"] {
  margin: 0;
}

.ballot-footer .signup-footer .ngp-form .at-form-submit.clearfix {
  margin: 0;
  padding: 0;
}

.ballot-footer
  .signup-footer
  .ngp-form
  .at-form-submit
  .at-submit.btn-at.btn-at-primary {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-color: #ff00ff;
  border: none;
  border-radius: 30px;
  font-family: "Anton", sans-serif;
  font-weight: 400 !important;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

.ballot-footer
  .signup-footer
  .ngp-form
  .at-form-submit
  .at-submit.btn-at.btn-at-primary:hover {
  background-color: #21a6db !important;
}

.ballot-footer ul {
  list-style: none;
  position: relative;
  padding-left: 0;
}

.ballot-footer ul li {
  /* padding: 10px 10px; */
  text-align: left;
  width: 180px;
}

.ballot-footer ul li a {
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
}

.ballot-footer ul li .sub-menu {
  display: none;
}

.ballot-footer ul li a:hover {
  color: #21a6db;
}

.ballot-footer ul li:last-of-type {
  background-color: #ff00ff;
  border-radius: 30px;
  padding: 5px;
  text-align: center;
  transition: all ease-in-out 0.4s;
}

.ballot-footer ul li:last-of-type a {
  color: #ffffff;
  display: inline-block;
  width: 100%;
}

.ballot-footer ul li:last-of-type:hover {
  background-color: #21a6db;
}

.contact-form input[type="submit"]:hover {
  background-color: #21a6db;
  cursor: pointer;
  transition: 0.2s ease;
}

.privacy-p {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 45px;
  /* text-align: center; */
}

.privacy-p a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.privacy-p a:hover {
  color: #ff00ff;
}

.paid-p {
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 10px;
  margin: 10px 0;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  width: 115px;
}

/* MAIN ----------------------------------------------------------------------*/
.basic-page-wrapper {
  /* margin: 50px 15%; */
  box-sizing: border-box;
}

.basic-page-wrapper h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #281445;
  margin: 0 30px 35px 30px;
}

.basic-page-content-wrapper {
  width: 100%;
  /* background-color: #f8f8f8; */
  /* padding: 35px 60px; */
  box-sizing: border-box;
}

.basic-page-wrapper p.sub-header-wrapper-p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #666666;
  line-height: 28px;
  margin: 20px 0;
}

.basic-page-wrapper p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  line-height: 28px;
  margin: 20px 0;
}

.basic-page-wrapper h2 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.basic-page-wrapper h3 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.basic-page-wrapper h4 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.basic-page-wrapper h5 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.basic-page-wrapper h6 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.basic-page-img-large-image {
  width: 130%;
  margin: 20px auto 20px -15%;
}

.float-right {
  float: right;
  margin: 0 -15% 20px 40px;
  max-width: 100%;
  height: auto;
}

.float-left {
  float: left;
  margin: 0 40px 20px -15%;
  max-width: 100%;
  height: auto;
}

/* SECTION -------------------------------------------------------------------*/
.news-story-page-wrapper.basic-page-wrapper {
  margin: 0 0 30px;
}

.news-story-hero {
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

.news-story-inner {
  margin-top: -20px;
  background-color: #f8f8f8;
  padding: 35px 7%;
  width: 70%;
  margin: -20px auto 20px;
}

.news-story-inner h1 {
  width: 100%;
  margin: 0 0 35px;
}

.news-story-author {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #0d2b4c;
  text-align: left;
  line-height: 20px;
}

.news-story-author a {
  font-weight: 700;
  margin-right: 20px;
  text-decoration: none;
  display: inline-block;
  color: #000000;
  border-bottom: 2px solid transparent;
}

.news-story-author a:hover {
  border-color: #00000000;
  cursor: default;
}

.news-share-p a {
  display: inline-block;
  text-decoration: none;
  margin-right: 20px;
}

.news-share-p a #Shape {
  transition: all ease-in-out 0.4s;
}

.news-share-p a:hover #Shape {
  fill: #281445;
}

.news-tags-wrapper {
  margin-top: 20px;
}

p.news-tags-p {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 28px;
}

.news-tags-a {
  display: inline-block;
  background-color: #e0d9e6;
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  border-radius: 14px;
  padding: 0px 10px;
  margin-right: 10px;
  font-size: 12px;
}

.news-tags-a:hover {
  background-color: #bab5bf;
}

/* NEWS LISTING PAGE -------------------------------------------------------- */
.news-listing-page-wrapper {
  padding: 75px 10% 100px;
}

.news-listing-page-wrapper h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #000000;
  line-height: 61px;
  margin: 0 auto 40px 30px;
}

.news-listing-form-wrapper {
  background-color: #654885;
}

.news-listing-form-wrapper form {
  padding: 25px 10%;
}

.news-listing-form-wrapper form p {
  color: #ffffff;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.news-listing-form-wrapper form p.tags-p {
  font-weight: 700;
  padding: 10px 30px;
  font-size: 18px;
  /* transition: all ease-in-out 0.4s; */
}

.news-listing-form-wrapper form p.tags-p svg {
  vertical-align: middle;
}

.tags-container {
  display: inline-block;
  margin-left: 15px;
  position: relative;
}

.tags-container:hover p.tags-p {
  background-color: #281445;
}

.tags-wrapper {
  background-color: #281445;
  transition: all ease-in-out 0.4s;
  padding: 30px;
  position: absolute;
  min-width: 460px;
  display: none;
}

.news-listing-form-wrapper form .tags-wrapper p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #ffffff;
  text-align: left;
  display: inline-block;
  vertical-align: top;
  min-width: 130px;
  padding: 10px 0;
}

.news-listing-form-wrapper form .tags-wrapper p:hover {
  font-weight: 700;
}

.tags-container:hover .tags-wrapper {
  display: block;
}

.news-listing-form-wrapper form input {
  border: none;
  border-radius: 17px;
  background-image: url("../images/search-icon.svg");
  background-repeat: no-repeat;
  background-position: left;
  font-size: 16px;
  padding: 5px 20px 5px 30px;
}

.ballot-staff {
  padding-bottom: 100px;
}

#innersection h1.ballot-h1 {
  color: #281445;
}

#innersection.ballot-innersection {
  max-width: 1200px;
  margin: auto;
  padding: 50px 0;
  width: 90%;
}

.dark-library-wrapper.login-page,
.newsroom-main {
  background-image: url("./images/ballot-new/dark-body-background.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #000000;
  padding: 50px 5%;
}

.newsroom-inner {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

.ballot-btn {
  background: #ffe351;
  padding: 20px 50px 20px;
  text-align: center;
  color: #000000;
  font-weight: 800;
  font-size: 35px;
  text-decoration: none;
  margin-top: 50px;
  display: block;
  width: 200px;
  transition: all ease-in-out 0.4s;
}

.ballot-btn:hover {
  background-color: #654885;
  color: #ffffff;
}

#eventsection.ballot-eventsection {
  padding-top: 0;
}

.ballot-form-wrapper {
  /* background-color: #654885; */
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  max-width: 1200px;
  padding: 30px 0 0;
  width: 96%;
}

.ballot-form-wrapper p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  display: inline-block;
  margin: 0;
  padding: 5px 0;
}

.main-content.events .ballot-form-wrapper .ballot-events-bold,
.main-content.events .ballot-form-wrapper p {
  color: #000000;
}

/* .resethighlight {
	background: yellow;
	color: #000000 !important;
} */

.ballot-form-wrapper button {
  background: yellow;
  color: #000000;
  border: 0;
  border-radius: 19px;
  width: 50px;
  font-size: 21px;
  padding: 0px 0px;
  display: none;
  vertical-align: middle;
  margin-top: -6px;
}

.ballot-form-wrapper .ballot-events-bold {
  color: #ffffff;
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  position: relative;
  transition: all ease-in-out 0.4s;
  cursor: pointer;
  /* padding: 5px; */
}

.ballot-form-wrapper .ballot-events-bold:hover {
  color: #21a6db;
}

#startdatee,
#enddatee {
  background: #654885;
  color: #ffffff;
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 16px;
  font-weight: 400;
  float: none;
  margin: 0 15px;
  padding: 5px;
  position: relative;
  text-indent: 0;
  text-align: center;
  width: 110px;
}

#eventsection .ballot-form-wrapper input#searchevent {
  width: 250px;
}

#startdatee::placeholder,
#enddatee::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff !important;
  opacity: 1;
  /* Firefox */
}

#startdatee:hover,
#enddatee:hover {
  cursor: pointer;
}

.ballot-events-bold:hover {
  cursor: pointer;
}

.event.showevent {
  display: inline-block !important;
}

.event.hideevent {
  display: none;
}

.tagsul {
  position: absolute;
  left: 0;
  background: #281446;
  width: 200px;
  padding: 10px;
  display: none;
}

.tagsul ul {
  padding: 0;
}

.tagsul li {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.tagsul a {
  color: #ffffff;
}

.resource-select-container {
  /* display: flex; */
  justify-content: center;
  margin-bottom: 2em;
}

.resource-select-container p {
  vertical-align: middle;
  margin: 0;
  float: left;
}

.resource-select-container .custom-select {
  vertical-align: middle;
  float: right;
}

.resource-select-container select {
  visibility: hidden;
  height: 0;
  width: 0;
  padding: 0;
  overflow: hidden;
}

.custom-select {
  display: inline-block;
  width: 30%;
  min-width: 250px;
}

.custom-select-trigger {
  position: relative;
  border: 5px solid #aa9bba;
  border-radius: 2px;
  padding: 0.5em;
  color: #261740;
  font-family: "Montserrat", sans-serif;
}

.custom-options-container {
  position: relative;
}

.custom-options {
  border: 2px solid #222;
  border-radius: 2px;
  display: none;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.custom-options.show {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-select-trigger:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  position: absolute;
  right: 12px;
  font-weight: 900;
  top: 10px;
}

.custom-options li {
  padding: 0.5em;
  display: flex;
}

.ballot-form-wrapper input {
  background: #ffffff;
  background-repeat: no-repeat;
  background-image: url(./images/ballot-new/whitemag.svg);
  background-size: 25px;
  border-radius: 17px;
  border: none;
  font-size: 30px;
  color: #32384b;
  margin: -7px 15px 0;
  float: right;
  display: inline-block;
  /* background-attachment: fixed; */
  background-position: 10px center;
  text-indent: 45px;
}

.ta-post {
  width: 28.5%;
  margin: 0 2% 100px;
  display: inline-block;
}

.ta-post img {
  width: 100%;
}

.ta-post h3 {
  font-size: 25px;
  color: #21a6db;
}

.ta-post p {
  font-size: 16px;
  line-height: 125%;
}

.tapage h2 {
  text-transform: uppercase;
  color: #281445;
}

.ta-post a {
  background: #ffe351;
  width: 100%;
  display: block;
  text-align: center;
  padding: 20px 0;
}

.ta-post a:hover {
  background: #21a6db;
  text-decoration: none !important;
  color: #ffffff !important;
}

.ballot-eventsection .event {
  margin-bottom: 37px;
}

.ballot-eventsection .events h3 {
  color: #21a6db;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 35px;
  margin: 50px 0 10px;
}

.ballot-eventsection .events h4 {
  margin: 0;
  font-size: 22px;
}

.ballot-eventsection .events h4:last-of-type {
  font-weight: 400;
  font-size: 16px;
}

.ballot-eventsection .events p {
  font-size: 18px;
  font-weight: 400;
}

.ballot-read-more-btn {
  display: block;
  color: #21a6db;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  /* font-weight: 700; */
  font-size: 16px;
  margin-top: 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
}

.event-desc p {
  font-weight: 400;
}

.event-desc p a {
  color: #281445;
  font-weight: 800;
}

.ballot-read-more-btn:hover {
  color: #281445 !important;
}

.cspage.ballot-cs-wrapper .casestudy {
  background-color: #21a6db;
  background-blend-mode: soft-light;
  background-size: cover;
  background-position: center;
}

.cspage.ballot-cs-wrapper .casestudy:hover {
  background-image: none !important;
  background-color: #654885;
}

.ballot-casestudy-single {
  width: 70%;
  margin: -30px auto 50px;
  background-color: #f8f8f8;
  padding: 20px 5%;
}

.ballot-contact-us {
  background-color: #654885;
  color: #ffffff;
  margin: auto;
  font-size: 26px;
}

.ballot-contact-us:hover {
  background-color: #27aae1;
}

.casestudy-story-page-wrapper.basic-page-wrapper {
  margin: 0 0 90px;
}

.ballot-login-inner {
  width: 70%;
  margin: 0 auto 100px;
}

.ballot-login-inner form {
  margin-left: 10%;
  width: 90%;
}

.ballot-login-inner div:last-of-type {
  margin-left: 154px;
  margin-top: 20px;
}

.ballot-login-inner label {
  display: inline-block;
  font-size: 26px;
  color: #4a4a4a;
  font-weight: 700;
  margin: 20px 0;
  width: 150px;
}

.ballot-login-inner input {
  background: #ededed;
  font-size: 30px;
  padding: 5px 10px;
  border: none;
  vertical-align: middle;
  width: calc(100% - 180px);
}

.ballot-login-inner input[type="submit"] {
  background: #ffe351;
  font-weight: 900;
  font-size: 24px;
  color: #000000;
  padding: 10px 25px;
  max-width: 130px;
  min-width: 124px;
  text-align: center;
}

.ballot-login-inner input[type="submit"]:hover {
  background-color: #87cde9;
}

.ballot-apply {
  background: #654885;
  color: #ffffff;
  display: inline-block;
  font-weight: 900;
  font-size: 24px;
  margin-left: 20px;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}

.ballot-apply:hover {
  background-color: #87cde9;
}

.ballot-forgot-password {
  display: block;
  color: #27aae1;
  margin-top: 20px;
}

.ballot-forgot-password:hover {
  color: #21a6db;
}

.ballot-resource-library-wrapper {
}

#resetresource:hover {
  cursor: pointer;
}

#register,
#wppb-submit {
  appearance: none;
  background-color: #ff00ff;
  border: 0;
  border-radius: 30px;
  color: #ffffff;
  font-size: 20px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  padding: 6px 65px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
}

#register:hover,
#wppb-submit:hover {
  background-color: #21a6db;
  color: #ffffff;
  cursor: pointer;
}

.ballot-research-top {
  margin: 20px auto;
  width: 90%;
}

.ballot-resource-library-wrapper .casestudy {
  background: #d7eff9;
  display: inline-block;
  margin: 0 1% 30px;
  padding: 0 3% 20px;
  width: 33%;
}

.ballot-resource-library-wrapper .casestudy a {
  color: #000000;
  transition: none;
}

.ballot-resource-library-wrapper .casestudy:hover {
  background-color: #27aae1;
  background-image: url("../img/ballot-images/search-icon.svg");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  background-blend-mode: overlay;
}

.ballot-resource-library-wrapper a.ballot-read-more-btn {
  background-color: #000000;
  border-radius: 20px;
  bottom: 20px;
  color: #ffffff;
  margin-left: auto;
  padding: 5px;
  position: absolute;
  right: 30px;
  text-align: center;
  width: 200px;
}

.ballot-resource-library-wrapper a.ballot-read-more-btn:hover {
  background-color: #21a6db;
  color: #ffffff !important;
}

.ballot-bisc-news .event:nth-of-type(even) a.ballot-read-more-btn:hover {
  background-color: #ff00ff;
}

.resources.third
  .ballot-bisc-news
  .event:nth-of-type(odd)
  a.ballot-read-more-btn:hover,
.resources.third
  .ballot-bisc-news
  .event:nth-of-type(even)
  a.ballot-read-more-btn:hover {
  background-color: transparent;
}

.ballot-resource-library-wrapper .casestudy:hover a {
  color: #ffffff;
}

.ballot-resource-library-wrapper .casestudy:hover a.ballot-read-more-btn {
  color: #ffffff;
}

.ballot-resource-library-wrapper .casestudy:hover #read-more {
  fill: #ffffff;
}

.ballot-resource-listing-wrap {
  width: 80%;
  margin: 20px auto;
  background-color: #ededed;
}

.ballot-resource-listing-wrap .resources {
  width: 80%;
  margin: 10px auto;
}

.ballot-pagination {
  text-align: center;
  padding: 0 0 40px;
}

.ballot-pag-number {
  display: inline-block;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 700;
  color: #21a6db;
}

.ballot-pag-number:hover {
  color: #654885;
}

.ballot-pag-number.active {
  color: #4a4a4a;
}

.resources h3 {
  margin: 50px 0 10px;
  text-transform: none;
  color: #27aae1;
}

.resources h3 a {
  text-decoration: none;
  color: inherit;
}

.resources h3 a:hover {
  text-decoration: underline;
}

a.readmore {
  background: #ffe351;
  font-weight: 900;
  font-size: 25px;
  color: #000000;
  text-align: center;
  width: 200px;
  max-width: 100%;
  margin: 20px 0;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.resources h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  text-align: right;
}

.ballot-apply-wrapper {
  width: 80%;
  margin: 20px auto;
}

.ballot-apply-wrapper form {
  font-size: 0;
  width: 100%;
  box-sizing: border-box;
}

.ballot-apply-wrapper label {
  font-weight: 700;
  font-size: 20px;
  color: #4a4a4a;
  width: 50%;
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
}

.ballot-apply-wrapper input {
  background: #ededed;
  display: block;
  width: 100%;
  font-size: 30px;
  padding: 5px 10px;
  border: none;
  box-sizing: border-box;
  margin-top: 5px;
}

.ballot-apply-wrapper textarea {
  background: #ededed;
  display: block;
  width: 100%;
  font-size: 30px;
  padding: 5px 10px;
  border: none;
  box-sizing: border-box;
  margin-top: 5px;
  resize: none;
}

.ballot-apply-wrapper input[type="submit"] {
  background: #ffe351;
  font-weight: 900;
  font-size: 34px;
  color: #000000;
  text-align: center;
  width: 300px;
  max-width: 100%;
  margin: 10px auto;
}

.ballot-bold-p {
  font-weight: 700;
  font-size: 26px;
  color: #4a4a4a;
  line-height: 32px;
}

.ballot-bold-p span {
  display: block;
}

.ballot-bold-p a {
  color: #21a6db;
  font-size: 22px;
}

.ballot-bold-p a:hover {
  color: #281445;
}

.ballot-news-page .resources h4 span {
  font-weight: 800;
}

.ballot-resource-library-wrapper.ballot-news-page {
  width: 100%;
}

.nojobs {
  width: 90%;
  margin: 0 auto;
}

#resourcesearch,
#resourcesearch2,
#resourcesearch3 {
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  float: none;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  width: 200px;
}

.page-id-25 .ballot-form-wrapper form input::-webkit-input-placeholder {
  color: #ffffff;
}

.page-id-25 .ballot-form-wrapper form input::-moz-placeholder {
  color: #ffffff;
}

.page-id-25 .ballot-form-wrapper form input::-ms-placeholder {
  color: #ffffff;
}

.page-id-25 .ballot-form-wrapper form input::placeholder {
  color: #ffffff;
}
.page-id-25 .ballot-form-wrapper form input:-webkit-input-placeholder,
.page-id-25 .ballot-form-wrapper form input:-moz-placeholder,
.page-id-25 .ballot-form-wrapper form input::placeholder,
#resourcesearch::placeholder,
#resourcesearch2::placeholder,
#resourcesearch3::placeholder,
#resourcesearch:placeholder-shown,
#resourcesearch2:placeholder-shown,
#resourcesearch3:placeholder-shown {
  color: #ffffff;
}

.ballot-resource-listing-wrap.ballot-bisc-news {
  background-color: transparent;
  box-sizing: border-box;
  display: block;
  margin: 20px auto 50px;
  max-width: 1200px;
  width: 100%;
}

.page-id-318 .ballot-resource-listing-wrap.ballot-bisc-news {
  width: 100%;
}

.page-id-318 .event {
  border-bottom: 2px solid #aa9bbb;
  width: 80%;
  margin: 25px auto 50px;
}

.page-id-318 .ballot-resource-listing-wrap .resources {
  background: #f0f0f0;
  padding: 50px 0;
}

.ballot-bisc-sidebar {
  display: inline-block;
  float: right;
  vertical-align: top;
  width: 40%;
  box-sizing: border-box;
  padding: 0 5% 50px;
}

.ballot-bisc-news-contact {
  box-sizing: border-box;
  padding: 20px 10px;
  border: 5px solid #a99cba;
}

.ballot-bisc-news-contact a {
  display: block;
  font-weight: 400;
}

.ballot-bisc-news-contact a:first-of-type {
  color: #21a6db;
  margin-bottom: 5px;
}

.ballot-bisc-news-contact a:last-of-type {
  color: #000000;
  text-decoration: none;
}

.ballot-bisc-sign-up-form label {
  font-weight: 700;
  font-size: 20px;
  color: #4a4a4a;
  width: 100%;
  display: inline-block;
  padding: 10px 0;
  box-sizing: border-box;
}

.ballot-bisc-sign-up-form input {
  background: #ededed;
  display: block;
  width: 100%;
  font-size: 30px;
  padding: 5px 10px;
  border: none;
  box-sizing: border-box;
  margin-top: 5px;
}

.ballot-bisc-sign-up-form input[type="submit"] {
  background: #ffe351;
  font-weight: 900;
  font-size: 25px;
  color: #000000;
  text-align: center;
  width: 200px;
  max-width: 100%;
  margin: 30px 0 0;
  padding: 15px 0;
}

.ballot-bisc-sign-up-form input[type="submit"]:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.2s ease;
}

a.readmore:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.2s ease;
}

.ballot-bisc-newsclips {
  margin-top: 30px;
}

.ballot-bisc-newsclips-single {
  margin: 20px 0 50px;
}

.ballot-bisc-newsclips-single-p {
  font-size: 18px;
  margin: 5px 0;
}

.ballot-bisc-newsclips-single-p.bold {
  font-weight: 700;
}

.ballot-bisc-newsclips-single h3 {
  margin: 10px 0;
  font-size: 25px;
}

.ballot-bisc-newsclips-single h3 a {
  text-decoration: none;
  color: #27aae1;
}

/* ballot hompage ----------------------------------------------------------- */
.ballot-homepage-hero-wrapper {
  box-sizing: border-box;
  width: 100%;
}

.ballot-hero-call-action-wrapper {
  /* padding: 40px 7%;
     background-size: cover;
     background-position: center center;
     min-height: 500px; */
  padding: 150px 7%;
  background-size: cover;
  background-position: center center;
  text-align: left;
}

.ballot-homepage-hero h1 {
  font-weight: 700;
  font-size: 60px;
  margin-top: 0;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* #slick-slide00 h1 {
	font-size: 80px;
} */

.ballot-homepage-hero h2 {
  font-weight: 700;
  font-size: 20px;
  color: #f8f8f8;
  line-height: 29px;
}

.ballot-homepage-hero .ballot-button {
  background: #ffe351;
  font-weight: 900;
  font-size: 34px;
  color: #000000;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  max-width: 100%;
  position: relative;
  z-index: 9999;
  display: inline-block;
}

.ballot-homepage-hero .ballot-button:hover {
  background: #21a6db;
  color: #ffffff;
}

.ballot-hero-donate-wrapper {
  padding: 40px 7%;
  background-size: cover;
  background-position: center center;
  min-height: 500px;
}

.ballot-hero-donate-bar-wrapper {
  margin-top: 75px;
  width: 60%;
  background-color: #c3cdff;
  margin-bottom: 25px;
  position: relative;
  text-align: left;
  font-size: 0;
}

.ballot-goal-bar-h4-total {
  color: #ffffff;
  background-color: #654885;
  display: inline-block;
  font-weight: 700;
  font-size: 23px;
  padding: 3px 5px;
  position: absolute;
  right: -99px;
  top: -40px;
  margin: 0;
}

.ballot-goal-bar-h4-total:after {
  top: 0;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #654885;
  border-width: 17px;
  margin-left: -34px;
  transform: rotate(0.25turn);
}

.ballot-goal-bar-inner {
  background-color: #654885;
  display: inline-block;
  height: 30px;
  position: relative;
}

.ballot-goal-bar-h4-raised {
  color: #ffffff;
  display: inline-block;
  font-weight: 400;
  font-size: 25px;
  padding: 5px;
  position: absolute;
  right: 0;
  top: -7px;
  transform: scale(0.8);
  margin: 0;
}

.ballot-donate-hero-wrap {
  font-size: 0;
}

.ballot-donate-hero-wrap a {
  background: #ffffff;
  border: 6px solid #ffe351;
  font-weight: 700;
  font-size: 30px;
  color: #654885;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  margin-right: 15px;
  padding: 8px 16px;
}

.ballot-donate-hero-wrap a:hover {
  background-color: #ffe351;
}

.ballot-donate-hero-wrap a:last-of-type {
  border-color: transparent;
  background-color: #ffe351;
  color: #000000;
  font-weight: 900;
}

.ballot-donate-hero-wrap a:last-of-type:hover {
  background-color: #654885;
  color: #ffe351;
}

.ballot-homepage-signup-wrapper {
  background-color: #87cde9;
  box-sizing: border-box;
  font-size: 0;
  padding: 50px 5%;
  width: 100%;
}

.ballot-homepage-signup-wrapper .inner {
  max-width: 1200px;
  margin: auto;
}

.ballot-homepage-signup-left {
  width: 50%;
  display: inline-block;
}

.ballot-homepage-signup-wrapper .ballot-homepage-signup-right {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 0 30px;
}

.ballot-homepage-signup-wrapper h2 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0;
  margin-top: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.ballot-homepage-signup-wrapper p {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.ballot-homepage-signup-right form {
  width: 100%;
  box-sizing: border-box;
}

.contact-form form {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-top: 50px;
}

.contact-form input[type="submit"] {
  background: #654885;
  font-weight: 900;
  font-size: 34px;
  color: #ffffff;
  border: 0;
  text-align: center;
  width: 100%;
  text-indent: 0;
}

.contact-form textarea {
  width: 98%;
  font-size: 25px;
  text-indent: 20px;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  font-family: "Montserrat", sans-serif;
}

/* .ballot-homepage-signup-wrapper h2 {
	font-weight: 700;
	font-size: 40px;
	color: #FFFFFF;
	line-height: 42px;
	margin-top: 0;
	text-transform: uppercase;
}

.ballot-homepage-signup-wrapper p {
	font-weight: 700;
	font-size: 20px;
	color: #f8f8f8;
	line-height: 29px;
} */

.ballot-homepage-signup-wrapper input {
  width: 100%;
  margin: 8px 0;
  background: #ffffff;
  font-weight: 700;
  font-size: 20px;
  color: #4a4a4a;
  border: none;
  padding: 10px 10px;
  box-sizing: border-box;
}

.ballot-homepage-signup-wrapper input[type="email"] {
  width: 58%;
  display: inline-block;
  margin-right: 4%;
}

.ballot-homepage-signup-wrapper input[type="tel"] {
  width: 38%;
  display: inline-block;
  margin-left: 0;
}

.ballot-homepage-signup-wrapper input[type="submit"] {
  background: #654885;
  font-weight: 900;
  font-size: 34px;
  color: #ffffff;
  text-align: center;
}

.ballot-homepage-signup-wrapper input[type="submit"]:hover {
  background-color: #ffe351;
  color: #000000;
  transition: 0.2s ease;
  cursor: pointer;
}

.ballot-homepage-video-wrapper {
  width: 100%;
}

.ballot-homepage-video {
  width: 100%;
  height: auto;
}

.ballot-strength-wrapper {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 7%;
  margin-top: -5px;
  background: #ffffff;
}

.ballot-strength-wrapper h2 {
  font-weight: 700;
  font-size: 40px;
  color: #000000;
  text-transform: uppercase;
  line-height: 42px;
}

.ballot-strength-wrapper h3 {
  padding: 30px;
  background-color: #000000;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  width: 550px;
}

.ballot-read-more-link {
  color: #21a6db;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.card-bottom .ballot-read-more-link {
  bottom: 20px;
  right: 20px;
  position: absolute;
}

.card-bottom .ballot-read-more-link svg {
  transition: all ease-in-out 0.4s;
}

.ballot-read-more-link:hover {
  color: #281445;
}

.card-bottom .ballot-read-more-link:hover svg {
  transform: translateX(5px);
}

.ballot-change-scroll-div-wrapper {
  width: 95%;
  margin: 0 0 0 5%;
}

.ballot-change-scroll-div {
  display: inline-block;
  vertical-align: top;
}

.ballot-what-we-do-wrapper {
  font-size: 0;
  width: 85%;
  margin: 80px auto;
}

.ballot-what-we-do-wrapper h2 {
  font-weight: 700;
  font-size: 40px;
  color: #000000;
  line-height: 42px;
  text-transform: uppercase;
}

.ballot-what-we-do-wrapper p {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  line-height: 28px;
}

.ballot-what-we-do-wrapper .ballot-read-more-link {
  font-size: 16px;
}

.ballot-what-we-do-card {
  width: 45%;
  padding: 20px 20px 20px 0;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  margin-right: 20px;
}

.ballot-what-we-do-card h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.ballot-what-we-do-wrapper .ballot-button {
  background: #ffe351;
  font-weight: 900;
  font-size: 25px;
  color: #000000;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px 25px;
  max-width: 100%;
  width: 260px;
  display: block;
  margin: 35px auto;
}

.ballot-what-we-do-wrapper .ballot-button:hover {
  background-color: #21a6db;
}

#ballotMap {
  display: block;
  box-sizing: border-box;
  width: 73%;
  margin: 20px auto;
  height: auto;
  min-height: 534px;
  max-width: 750px;
}

.ballot-around-us-wrapper {
  margin: 0;
  /* width: 85%; */
  background: #f8f8f8;
  padding: 100px 7.5%;
}

#mapsvg {
  position: absolute;
  width: 5%;
}

#nf-field-12 {
  height: auto !important;
  background-color: #ffe351 !important;
  padding: 10px 50px !important;
  font-weight: 900 !important;
  color: #000000 !important;
  text-align: center !important;
  transition: all ease-in-out 0.4s !important;
  font-size: 25px !important;
  text-transform: uppercase !important;
}

.ballot-around-us-wrapper h2 {
  font-weight: 700;
  font-size: 40px;
  color: #000000;
  line-height: 42px;
  margin: 0;
}

.ballot-around-us-wrapper h3 {
  font-weight: 700;
  font-size: 30px;
  color: #000000;
  margin: 5px 0;
}

.ballot-map-key-wrap {
  font-size: 0;
  margin-top: 30px;
}

.ballot-single-key-wrap {
  display: inline-block;
  width: 33.3%;
  box-sizing: border-box;
  padding: 10px 20px 10px 0;
  vertical-align: top;
}

.ballot-map-key-wrap p {
  font-size: 16px;
  color: #000000;
  display: inline-block;
  margin: 0;
  width: calc(100% - 42px);
}

.ballot-key-color {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  vertical-align: top;
}

/* .first {
	background-color: #281445;
}

.second {
	background-color: #654885;
}

.third {
	background-color: #aa9bbb;
} */

/* #ballotMap path,
#ballotMap polygon {
	fill: #bebebe;
}

#CA,
#AZ,
#NV,
#MT,
#CO,
#ND,
#SD,
#NE,
#OK,
#MO,
#AR,
#MI,
#OH,
#MA,
#OR {
	fill: #281445 !important;
} */

/* #AK,
#WA,
#UT,
#WY,
#ME,
#ID {
	fill: #654885 !important;
}

#FL,
#IL {
	fill: #aa9bbb !important;
} */

.ballot-home-news-wrapper {
  background-color: #21a6db;
}

.ballot-slider {
  padding: 60px 5% 55px;
  font-size: 0;
}

.ballot-slider h2 {
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  letter-spacing: 1.02px;
  line-height: 42px;
  text-transform: uppercase;
}

.ballot-slider .card {
  width: 33.3%;
  display: inline-block;
  vertical-align: top;
  padding: 0 20px;
  box-sizing: border-box;
}

.card .ballot-date {
  font-weight: 700;
  font-size: 16px;
  color: #f6fcfd;
  line-height: 20px;
  margin: 0;
}

.card .ballot-pub {
  font-weight: 600;
  font-size: 19px;
  color: #ffffff;
  line-height: 33px;
  margin: 0;
}

.ballot-slider .card h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ffffff;
  line-height: 33px;
  margin: 10px 0;
}

.ballot-slider .card h3 a {
  color: #ffffff;
  text-decoration: none;
}

.ballot-slider .card h3 a:hover {
  color: #654885;
}

.ballot-slider .card p a {
  color: #ffffff;
}

.ballot-slider .card h3 a:hover {
  color: #654885;
}

.ballot-slider .ballot-read-more-link:hover {
  color: #ffffff;
}

.ballot-slider .ballot-read-more-link {
  color: #654885;
  font-size: 14px;
  text-transform: uppercase;
}

.ballot-home-twitter-wrapper {
  background-color: #654885;
}

.ballot-twitter-logo {
  display: block;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
}

.pop-up {
  padding: 40px 7%;
  background-size: cover;
  background-position: center center;
  min-height: 500px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  transition: all ease-in-out 0.3s;
}

.close-btn:hover {
  transform: scale(1.2);
}

.ballot-popup-signup-wrapper .ballot-homepage-signup-wrapper {
  background-color: transparent;
  max-width: 700px;
  padding: 40px 0 50px;
}

.ballot-popup-signup-wrapper
  .ballot-homepage-signup-wrapper
  input[type="text"] {
  width: 48%;
  display: inline-block;
}

.ballot-popup-signup-wrapper
  .ballot-homepage-signup-wrapper
  input[type="text"]:first-of-type {
  margin-right: 4%;
}

.ballot-popup-signup-wrapper
  .ballot-homepage-signup-wrapper
  input[type="submit"] {
  background-color: #21a6db;
}

.ballot-popup-signup-wrapper
  .ballot-homepage-signup-wrapper
  input[type="submit"]:hover {
  opacity: 0.8;
}

.ballot-slider {
  position: relative;
}

.arrow {
  position: absolute;
  top: 45%;
}

.left,
.left2 {
  left: 20px;
}

.right,
.right2 {
  right: 20px;
}

.left:hover,
.left2:hover,
.right:hover,
.right2:hover {
  cursor: pointer;
}

.tweetbody {
  font-size: 20px;
  line-height: 130%;
  word-break: break-word;
  color: #ffffff;
}

.main-header ul li ul li a {
  font-size: 16px;
}

.ctct-form-header,
.ctct-form-text,
.ctct-form-custom label,
.ctct-gdpr-text,
.ctct-form-footer {
  display: none !important;
}

/* menu-item-301 */
.main-header ul #menu-item-2553 .sub-menu,
.main-header ul #menu-item-301 .sub-menu,
.main-header ul #menu-item-300 .sub-menu {
  width: 250%;
}

.ctct-form-defaults {
  background-color: transparent !important;
  padding: 0 !important;
}

.ctct-form-custom input {
  width: 100% !important;
  margin: 8px 0 !important;
  background: #ffffff !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  color: #4a4a4a !important;
  border: none !important;
  padding: 10px 10px !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
}

div.ctct-form-embed form.ctct-form-custom div.ctct-form-field {
  margin: 0 !important;
}

.ctct-form-embed.form_0 .ctct-form-custom .ctct-form-button {
  background: #654885 !important;
  font-weight: 900 !important;
  font-size: 34px !important;
  color: #ffffff !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.ctct-form-embed.form_0 .ctct-form-custom .ctct-form-button:hover {
  background: #836c9d !important;
  transition: 0.2s ease;
}

.ballot-bisc-sign-up-form .ctct-form-field input {
  background: #ededed !important;
  display: block !important;
  width: 100% !important;
  font-size: 30px !important;
  padding: 5px 10px !important;
  border: none !important;
  box-sizing: border-box !important;
  margin-top: 5px !important;
}

div.ctct-form-embed form.ctct-form-custom .ctct-form-required:before {
  display: none !important;
}

.ballot-bisc-sign-up-form .ctct-form-field label {
  font-weight: 700 !important;
  font-size: 20px !important;
  color: #4a4a4a !important;
  width: 100% !important;
  display: inline-block !important;
  padding: 10px 0 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  font-family: "Montserrat", sans-serif !important;
  padding-bottom: 0 !important;
}

.ballot-bisc-sign-up-form .ctct-form-custom .ctct-form-button {
  background: #ffe351 !important;
  font-weight: 900 !important;
  font-size: 25px !important;
  color: #000000 !important;
  text-align: center !important;
  width: 200px !important;
  max-width: 100% !important;
  margin: 30px 0 0 !important;
  padding: 15px 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  text-transform: uppercase !important;
}

.ctct-form-success .ctct-form-header,
.ctct-form-success .ctct-form-text {
  display: block !important;
}

.home .ctct-form-success .ctct-form-header h2,
.home .ctct-form-success .ctct-form-text {
  color: #ffffff !important;
}

.header-logo:hover img {
  transition: 0.2s ease;
  transform: scale(1.1);
}

.header-logo {
  transition: 0.2s ease;
}

.header-logo img {
  transition: 0.2s ease;
}

.footer-logo:hover img {
  transition: 0.2s ease;
  transform: scale(1.1);
}

.footer-logo {
  transition: 0.2s ease;
}

.footer-logo img {
  transition: 0.2s ease;
}

.event p {
  font-size: 18px;
}

.basic-page-content-wrapper li {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 400;
}

.basic-page-content-wrapper a,
.basic-page-wrapper a {
  color: #21a6db;
  text-decoration: none;
  font-weight: inherit;
  transition: all ease-in-out 0.3s;
}

.archive.event a.h3a,
.resource-library a.h3a {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.event.resource-library p {
  font-weight: 500;
}

.resource-library a.h3a:hover {
  color: #ff00ff;
}

.basic-page-wrapper a:hover,
.basic-page-content-wrapper a:hover {
  text-decoration: underline;
  color: #ff00ff;
}

/* .basic-page-content-wrapper a:visited,
.basic-page-wrapper a:visited {
	color: #281445;
} */

#outlines path.active:hover,
#outlines polygon.active:hover {
  cursor: pointer;
  opacity: 0.8;
}

.event-social a {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}

#footersocial svg {
  height: auto;
  width: 40px;
}

#footersocial a {
  margin: 0 10px 0 0;
  display: inline-block;
}

#footersocial a .background {
  transition: all ease-in-out 0.3s;
}

#footersocial a:hover .background {
  fill: #ff00ff;
}

.ninja-forms-field-description p {
  font-size: 14px !important;
}

.nf-field-description p {
  margin: 0 !important;
}

.field-wrap.text-wrap.label-above {
  margin: 0 !important;
  width: 100% !important;
  background: transparent !important;
}

#first_name_field_3,
#last_name_field_3,
#email_address_field_3,
#company_field_3 {
  width: 49% !important;
  display: inline-block !important;
}

#custom_field_string_political_issue_field_3 {
  width: 98%;
  margin: 0 auto !important;
}

#first_name_3,
#last_name_3,
#email_address_3,
#company_3,
#custom_field_string_political_issue_3 {
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 100 !important;
}

#ctct_form_3 .ctct-form-button {
  background: #654885;
  font-weight: 900;
  font-size: 34px;
  color: #ffffff;
  border: 0;
  text-align: center;
  width: 98%;
  text-indent: 0;
  margin: 0 auto;
  border-radius: 0;
  text-transform: uppercase;
}

#ctct_form_3 {
  margin: 100px auto;
}

/* NEW HOMEPAGE 25 */
.homepage-hero-slick {
  background-image: url("./images/ballot-new/home-slider.png");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0;
  padding: 50px 5%;
  width: 100%;
}

.homepage-hero-slick-slide {
  width: 100%;
}

.slider-left {
  display: inline-block;
  vertical-align: top;
  width: 45%;
}

.slider-left .inner-slide {
  padding-right: 5%;
}

.inner-hero-slide {
  display: flex;
  align-items: center;
}

.silder-right {
  border: 5px solid #ff00ff;
  display: inline-block;
  height: 500px;
  max-width: 1000px;
  vertical-align: top;
  width: 54%;
}

.homepage-hero-slick img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.homepage-hero-slick h1 img {
  max-width: 400px;
}

.video-container {
  display: inline-block;
  position: relative;
  height: 500px;
  width: 100%;
}

.video-container video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url("./images/ballot-new/play-button.svg");
  background-size: cover;
  cursor: pointer;
}

.homepage-hero-slick h1 {
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 0;
  opacity: 0;
}

.homepage-hero-slick p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}

.homepage-hero-slick.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.homepage-hero-slick .slick-dots li button:before {
  color: #ffffff;
  font-size: 13px;
}

.homepage-hero-slick .slick-dots li.slick-active button:before {
  color: #ff00ff;
}

.homepage-hero-slick .slick-dots {
  bottom: 15px;
  text-align: left;
  width: 90%;
}

.homepage-section {
  border-bottom: 12px solid #21a6db;
  margin: auto;
  max-width: 1200px;
  width: 90%;
}

.homepage-section:last-of-type {
  border-bottom: none;
}

.homepage-section h2 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 65px;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 0;
  text-transform: uppercase;
}

.title-copy-section {
  align-items: flex-start;
  /* border-bottom: 12px solid #21a6db; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0;
}

.title-copy-section h2 {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 20px;
  width: 100%;
}

.title-copy-section h2 span {
  display: block;
}

.title-copy-section .inner-home {
  width: 100%;
}

.homepage-section p {
  color: #000000;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.title-copy-section p {
  margin-top: 0;
}

.pink-button,
.page-template-page-training .generic-wrapper a.pink-button,
.home .home-popup-wrapper a.pink-button,
.home .road-ahead-wrapper a.pink-button,
.home .homepage-section a.pink-button {
  background: #ff00ff;
  border-radius: 26px;
  color: #ffffff !important;
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  min-width: 200px;
  max-width: 100%;
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

.pink-button:hover,
.page-template-page-training .generic-wrapper a.pink-button:hover,
.home .home-popup-wrapper a.pink-button:hover,
.home .road-ahead-wrapper a.pink-button:hover,
.home .homepage-section a.pink-button:hover {
  background-color: #21a6db !important;
}

.home .homepage-section.title-copy-image-section a.pink-button.mobile {
  display: none;
}

.road-ahead-wrapper a.pink-button {
  color: #fff !important;
}

.title-copy-image-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0;
}

.title-copy-image-section h2 {
  margin-bottom: 20px;
}

.title-copy-image-section .inner.left {
  width: 48%;
}

.title-copy-image-section .inner.right {
  width: 48%;
}

.title-copy-image-section img,
.title-copy-image-section .video-container {
  height: auto;
  width: 100%;
}

.homepage-section h3 {
  color: #000000;
  display: inline-block;
  /* font-family: 'Anton', sans-serif; */
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 0;
  text-transform: uppercase;
}

.homepage-section h3 span {
  border-bottom: 5px solid rgba(40, 171, 225, 0.3);
}

.latest-section {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

.latest-section h2 {
  margin: 0;
  width: 30%;
}

.latest-section img {
  border-radius: 50%;
  border: 5px solid #ff00ff;
  object-fit: cover;
  height: 250px;
  width: 250px;
}

.latest-section .inner {
  text-align: center;
  width: 35%;
}

.in-news-section {
  padding: 50px 0;
}

.social-section {
  padding: 50px 0;
}

.in-news-section-inner {
  /* display: flex;
	justify-content: space-between;
	flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  grid-auto-rows: 1fr;
  margin-bottom: 40px;
  padding: 0;
}

.ballot-single-card {
  background-color: #000000;
  display: inline-block;
  /* width: 30%; */
}

.ballot-single-card:first-of-type {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.ballot-single-card:first-of-type img {
  height: 200px;
}

.ballot-single-card:first-of-type .ballot-single-card h3 {
  font-size: 24px;
}

.ballot-single-card .card-bottom {
  padding: 20px;
  position: relative;
}

.ballot-single-card img {
  height: 150px;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
  width: 100%;
}

.ballot-single-card h3 {
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: none;
}

.ballot-single-card a {
  color: #ffffff;
  display: block;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  position: relative;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

.ballot-single-card .card-bottom a {
  padding-bottom: 20px;
}

.ballot-single-card .card-bottom a svg {
  /* bottom: 20px; */
  bottom: 0;
  right: 20px;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.ballot-single-card a:hover h3 {
  color: #ff00ff;
}

.ballot-single-card .card-bottom a:hover svg {
  transform: translateX(5px);
}

.ballot-single-card a.img-a {
  display: block;
  overflow: hidden;
  width: 100%;
}

.ballot-single-card a:hover img {
  transform: scale(1.1);
}

/* new basic page */
.basic-page-wrapper {
  padding: 50px 5%;
}

.basic-page-wrapper .inner {
  margin: auto;
  max-width: 1200px;
  width: 100%;
}

.basic-page-main {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.basic-page-wrapper h1 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-size: 55px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 40px 0;
}

.basic-page-image {
  width: 100%;
}

.basic-page-image img {
  border: 5px solid #ff00ff;
  height: auto;
  width: 100%;
}

/* FAQ */
.page-template-page-jobs h1,
.page-template-page-faq h1 {
  font-family: "Anton", sans-serif;
  font-size: 55px;
  color: #000000;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0px 0 60px;
  width: 50%;
}

.faq-wrapper {
  margin: 50px 0;
}

.faq-wrapper h3 {
  color: #000000;
  cursor: pointer;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
  padding-right: 10px;
}

.faq-wrapper h3 svg {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.faq-wrapper.active h3 svg {
  transform: rotate(180deg);
}

.faq-wrapper h3 svg .fill {
  transition: all ease-in-out 0.3s;
}

.faq-wrapper.active h3 svg .fill,
.faq-wrapper h3 svg:hover .fill {
  fill: #21a6db;
}

.faq p {
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.faq-wrapper .answer {
  display: none;
}

section.generic-wrapper a {
  color: #ff00ff;
  transition: all ease-in-out 0.3s;
}

section.generic-wrapper a:hover {
  color: #21a6db;
}

.basic-page-wrapper.jobs {
  padding: 0;
  position: relative;
}

.basic-page-wrapper.jobs h2 {
  font-size: 55px;
  text-transform: uppercase;
}

.jobs-inner {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.job-card {
  background: #bde5f6;
  display: inline-block;
  margin: 20px 0;
  padding: 20px 20px 40px;
  position: relative;
  min-width: 30%;
  width: 49%;
}

.job-card:nth-of-type(even) {
  background: #ffb2fe;
}

.job-card p {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.job-card .pub,
.job-card p.job-date {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  text-align: right;
}

.job-card h3 a.h3a {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  transition: all ease-in-out 0.3s;
}

.job-card h3 a.h3a:hover {
  color: #ff00ff;
}

.job-card .pub {
  text-align: left;
}

.job-card .summary {
  padding-bottom: 35px;
}

.job-card a.ballot-read-more-btn {
  background: #000000;
  border-radius: 13px;
  bottom: 20px;
  color: #ffffff;
  display: block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 5px 10px;
  position: absolute;
  right: 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  width: 120px;
}

.job-card a.ballot-read-more-btn:hover {
  background-color: #ff00ff;
  color: #ffffff !important;
}

.basic-page-wrapper.jobs section.generic-wrapper {
  max-width: 1200px;
  margin: auto;
}

#jobs-search {
  background-image: url("./images/ballot-new/whitemag.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border: 1px solid #000000;
  border-radius: 18.5px;
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 17.25px;
  letter-spacing: 0;
  padding: 5px 10px 5px 40px;
  text-align: left;
  text-transform: uppercase;
}

#jobs-search::placeholder {
  color: #000000;
}

.eeo .inner {
  max-width: 1200px;
  margin: auto;
}

.page-id-25 .fastaction-signup-inner p,
.page-id-25 .fastaction-signup-inner h1 {
  color: #654885 !important;
}

.page-id-25 .fastaction-signup-inner {
  margin: 20px auto;
}
.page-id-25 .ngp-form .at label.at-text input[type="tel"],
.page-id-25 .ngp-form .at label.at-text input[type="email"] {
  background-color: white !important;
}
.page-id-25.ngp-form .at-form-submit.clearfix {
  margin: 0 0 0 20px;
}
.page-id-25 .ngp-form .thankYou h2,
.page-id-25 .ngp-form .thankYou p,
.page-id-25 .ngp-form .thankYou span {
  font-family: "Montserrat", sans-serif !important;
  text-align: center;
  color: white;
  margin: 30px auto 0 !important;
}
.page-id-25 .ngp-form .at-title {
  display: none !important;
}
.page-id-25 .ngp-form .at-inner {
  background-color: transparent;
}
.page-id-25 .main-content.newsroom-main .ngp-form input::placeholder,
.page-id-25 .main-content.newsroom-main .ngp-form input,
.page-id-25 .main-content.newsroom-main .ngp-form kbd,
.page-id-25 .main-content.newsroom-main .ngp-form .at input[type="text"],
.page-id-25 .main-content.newsroom-main .ngp-form label {
  border: none;
  border-radius: 0 !important;
  font-family: "Montserrat", sans-serif !important;
  color: gray !important;
  text-transform: uppercase;
}
.page-id-25 .ngp-form .btn-at-primary {
  border-radius: 30px !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-color: #ff00ff;
  border: none;
  font-family: "Anton", sans-serif;
  font-weight: 400 !important;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
  width: 100%;
}
.page-id-25 .ngp-form h2,
.page-id-25 .ngp-form input,
.page-id-25 .ngp-form p,
.page-id-25 .ngp-form input::placeholder {
  font-family: "Montserrat", sans-serif;
}
.page-id-25 .ngp-form .UpdateMyProfile {
  display: none;
}
.page-id-25 .at .error small.error {
  color: white !important;
  font-weight: 800 !important;
  padding-left: 0px !important;
  margin-bottom: 0px;
}
.page-id-25 .ngp-form .at-fields {
  background: transparent;
}
.page-id-25 .ngp-form .HeaderHtml {
  display: none !important;
}
.page-id-25 .ngp-form .at-legend {
  display: none;
}
.page-id-25 .ngp-form .at label.at-text input {
  width: 100% !important;
  margin: 8px 0 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  color: #4a4a4a !important;
  height: 46px;
  border: none !important;
  padding: 10px 10px !important;
  line-height: 1.5;
  font-family: helvetica neue, Arial, sans-serif;
  color: #323232;
  display: inline-block;
  box-sizing: border-box !important;
  border-radius: 0 !important;
}

.page-id-25 .ngp-form .at-form-submit .at-submit.btn-at.btn-at-primary {
  background: #654885;
  font-weight: 900;
  font-size: 34px;
  height: fit-content;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.page-id-25 .ngp-form .at-form-submit {
  padding: 0.2rem 0.625rem;
}

.road-ahead-wrapper {
  position: relative;
}

.road-ahead-wrapper .generic-wrapper,
section.generic-page-content-wrapper.full-width {
  box-sizing: border-box;
  max-width: none;
  padding: 5% 0;
  width: 100%;
}

.road-ahead-wrapper .inner {
  max-width: 1200px;
  margin: auto;
  width: 90%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.according-wrap {
  margin: 50px 0;
}

/* .highlight-wrapper h2,
.according-wrap h2, */
.road-ahead-wrapper h2 {
  color: #000000;
  font-size: 55px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.road-ahead-wrapper .according-wrap h2,
.road-ahead-wrapper .highlight-wrapper h2 {
  cursor: pointer;
}

.highlight-wrapper h2 {
  margin: 10px 0;
}

.highlight-wrapper h2 svg,
.according-wrap h2 svg {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.road-ahead-wrapper .according-wrap .active h2 svg,
.road-ahead-wrapper .highlight-wrapper .active h2 svg {
  transform: rotate(180deg);
}

.according-body {
  display: none;
}

.highlight-wrapper .highlight {
  background-color: #ffb2fe;
  padding: 50px 0;
}

.highlight-wrapper .highlight:nth-of-type(odd) {
  background-color: #87cde9;
}

.highlight-wrapper
  .highlight:nth-of-type(even)
  .according-arrow
  #BISC2302_Desktop_Page-15-Road-Ahead-23 {
  fill: #21a6db;
}

.road-ahead-slider {
  margin: 50px auto;
  padding: 0 2%;
  position: relative;
}

.road-ahead-slider .slide {
  font-size: 0;
  position: relative;
}

.road-ahead-slider .slide img {
  height: auto;
  width: 100%;
}

.road-ahead-slider .slide .caption {
  background-color: #ffb2fe;
  bottom: 0;
  margin: 0;
  padding: 20px 5%;
  /* position: absolute; */
}

.news-cards-wrapper .arrow.next,
.quote-wrapper .arrow.next,
.road-ahead-slider .arrow.next {
  right: -4%;
  cursor: pointer;
}

.news-cards-wrapper .arrow.prev,
.quote-wrapper .arrow.prev,
.road-ahead-slider .arrow.prev {
  left: -4%;
  cursor: pointer;
}

.news-cards-wrapper .arrow.next:hover,
.quote-wrapper .arrow.next:hover,
.road-ahead-slider .arrow.next:hover,
.news-cards-wrapper .arrow.prev:hover,
.quote-wrapper .arrow.prev:hover,
.road-ahead-slider .arrow.prev:hover {
  opacity: 0.7;
}

.quote-wrapper {
  position: relative;
}

.quote-wrapper .slick-track {
  display: flex;
  justify-content: space-evenly;
}

.quote-wrapper .slick-slide {
  height: inherit;
}

.quote-card {
  box-sizing: border-box;
  background-color: #ffb2fe;
  display: inline-block;
  margin: 20px 1%;
  padding: 30px;
  width: 30%;
}

.quote-card:nth-of-type(odd) {
  background-color: #87cde9;
}

.quote-card-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.quote-card-inner p {
  font-weight: 700;
  font-size: 16px;
}

.quote-card-by {
  display: block;
  font-weight: 700;
  margin-top: 20px;
  text-align: right;
}

.quote-p {
  position: relative;
}

img.start.quote {
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 40px;
  font-weight: 400;
  position: absolute;
  left: -18px;
  top: -23px;
  width: 30px;
}

img.end.quote {
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 40px;
  font-weight: 400;
  position: absolute;
  right: -18px;
  bottom: -4px;
  width: 30px;
}

.meter {
  color: #ffffff;
}

.meter-wrapper {
  margin: 100px auto;
}

.meter-line {
  background-image: linear-gradient(90deg, #ff00ff 0%, #381bb3 100%);
  border-radius: 16.5px;
  min-height: 33px;
  position: relative;
}

.meter-wrapper svg {
  position: absolute;
  top: -5px;
  display: none;
}

.face-wrapper {
  display: flex;
  justify-content: space-between;
}

.single-face {
  margin: 0 0 10px;
  text-align: center;
  width: 200px;
}

.single-face img {
  height: auto;
  max-width: 65px;
  width: 100%;
}

.single-face span {
  display: block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 31px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
}

.generic-page-content-wrapper.dddc h3 {
  color: #000000;
  font-size: 40px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  word-break: break-all;
}

.generic-page-content-wrapper.dddc h2 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 55px;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.dddc-main {
  position: relative;
  padding: 0 5%;
}

.news-cards-wrapper {
  margin: 50px auto;
  position: relative;
}

.news-cards-wrapper .slick-track {
  display: flex;
  justify-content: space-evenly;
}

.news-cards-wrapper .slick-slide {
  height: inherit;
}

.news-cards-wrapper .single-news-card {
  background-color: #ffb2fe;
  display: inline-block;
  margin: 20px 0.5%;
  padding: 20px 20px 60px;
  position: relative;
  width: 30%;
}

.news-cards-wrapper .single-news-card:nth-of-type(odd) {
  background-color: #87cde9;
}

.news-cards-wrapper .single-news-card p {
  color: #000000;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: right;
}

.news-cards-wrapper .single-news-card h3 {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 16.25px;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 30px 0;
}

.news-cards-wrapper .single-news-card h3 a {
  color: #000000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.5;
  text-decoration: none;
  word-break: initial;
}

.news-cards-wrapper .single-news-card h3 a:hover {
  color: #281445;
}

.news-cards-wrapper .black-button {
  background: #000000;
  border-radius: 26px;
  color: #ffffff;
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  max-width: 100%;
  margin-left: auto;
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  width: 75px;

  position: absolute;
  bottom: 20px;
  right: 30px;
}

.news-cards-wrapper .black-button:hover {
  background-color: #ff00ff;
  color: #ffffff !important;
}

.news-cards-wrapper .single-news-card:nth-of-type(even) .black-button:hover {
  background-color: #21a6db;
}

.generic-page-content-wrapper.dddc .quote {
  margin: 55px 0;
}

.generic-page-content-wrapper.dddc .quote-inner {
  position: relative;
}

.quote-inner .quote-start {
  left: -21px;
  height: 20px;
  position: absolute;
  top: -20px;
  width: auto;
}

.quote-inner .quote-end {
  bottom: 0;
  height: 20px;
  right: 0;
  position: absolute;
  width: auto;
}

.quotes-card-wrapper .quote-inner p {
  font-weight: 700;
  font-size: 17px;
  color: #000000;
  letter-spacing: 0;
  line-height: 1.5;
}

.quotes-card-wrapper p.quote-by {
  color: #000000;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5;
}

.pods-content-map {
  margin: 50px auto;
}

.new-map {
  display: block;
  height: auto;
  margin: 20px auto;
  max-width: 950px;
  width: 100%;

  max-width: 800px;
  width: 90%;
  margin: 10px auto;
  display: flex;
  overflow: visible;
  max-height: 600px;
  height: auto;
}

.generic-page-content-wrapper.dddc .pods-content-map h2,
.pods-content-map h2 {
  display: inline-block;
  font-size: 60px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  margin-top: 0;
  padding-right: 5%;
  width: 59%;
  vertical-align: top;
}

.legend-wrapper {
  display: inline-block;
  width: 40%;
  vertical-align: top;
}

.legend-item {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 20px 0;
}

.legend-color {
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

.legend-item p {
  margin: 5px 0;
}

.dark-library-wrapper.login-page {
  color: #ffffff;
}

.dark-library-wrapper.login-page .basic-page-content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dark-library-wrapper.login-page .inner {
  color: #ffffff;
  display: inline-block;
  vertical-align: top;
  width: 45%;
}

.dark-library-wrapper.login-page h1,
.dark-library-wrapper.login-page p {
  color: #ffffff;
}

.dark-library-wrapper.login-page h1 {
  margin-top: 0;
  text-transform: uppercase;
}

/* splash page ----------------------- */
.home-popup-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  background-color: rgb(0 0 0 / 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -ms-backdrop-filter: blur(20px);
  -moz-backdrop-filter: blur(20px);
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  z-index: 10000000000;
}

.home-popup-wrapper .home-popup-inner {
  background-color: #000000;
  box-shadow: 4px 4px 18px rgb(0 0 0 / 25%);
  display: flex;
  margin: 50px auto;
  max-width: 1000px;
  padding: 75px 5%;
  position: relative;
  width: 90%;
}

.home-popup-wrapper .home-popup-inner .close-btnn {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 3;
}

.home-popup-wrapper .home-popup-inner .close-btnn:hover {
  transition: all 0.8s ease-in-out;
  transform: rotate(90deg);
}

.home-popup-wrapper video,
.home-popup-wrapper img {
  align-self: stretch;
  border: 3px solid #ff00ff;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.home-popup-wrapper img {
  height: 100%;
}

.popup-inner {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.popup-inner-left {
  color: #ffffff;
  width: 47%;
}

.popup-inner-left h2 {
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 55px;
  margin-top: 0;
  letter-spacing: 0;
  line-height: 1.2;
}

.popup-inner-left p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.popup-inner-right {
  height: 100%;
  width: 47%;
}

.ig-wrapper {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  margin: 50px auto;
}

.ig-wrapper .single-ig {
  position: relative;
  font-size: 0;
  width: 25%;
}

.ig-wrapper .single-ig img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.ig-wrapper .single-ig p {
  background: rgba(0, 0, 0, 0.75);
  bottom: 0;
  font-weight: 500;
  /* display: none; */
  opacity: 0;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0;
  left: 0;
  line-height: 1.3;
  margin: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  transition: all ease-in-out 0.3s;
}

.ig-wrapper .single-ig:hover p {
  opacity: 1;
}

.ballot-footer .signup-footer input {
  box-sizing: border-box;
  background-color: transparent !important;
  border: 1px solid #ffffff;
  color: #ffffff !important;
  display: block;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500;
  font-size: 20px !important;
  line-height: 1.3;
  margin: 30px 0;
  padding: 5px;
  width: 100%;
}

.ballot-footer .signup-footer input::placeholder,
.ballot-footer .signup-footer input::-webkit-input-placeholder {
  color: #ffffff !important;
}

.ballot-footer
  .signup-footer
  .ngp-form
  .at-form-submit
  .at-submit.btn-at.btn-at-primary {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-color: #ff00ff;
  border: none;
  border-radius: 30px;
  font-family: "Anton", sans-serif;
  font-weight: 400 !important;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

.map-wrap {
  display: block;
  margin: auto;
  position: relative;
  width: fit-content;
}

.tooltip {
  position: fixed;
  background-color: #fff;
  border: 1px solid #001f42;
  margin-left: 10px;
  padding: 10px;
  display: none;
  /* Initially hidden */
}

.main-content.news-clips {
  background-image: url(./images/ballot-new/dark-body-background.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #000000;
  padding: 50px 5%;
}

.main-content.news-clips .ballot-resource-library-wrapper.ballot-news-page {
  max-width: 1200px;
  margin: auto;
  width: 90%;
}

.main-content.news-clips #innersection h1.ballot-h1 {
  color: #ffffff;
  margin: 0;
}

.ballot-resource-listing-wrap.ballot-bisc-news .resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-whole-wrap {
  position: relative;
}

.home-whole-wrap .blue {
  border-radius: 50%;
  background-image: radial-gradient(
    circle at 50% 50%,
    #28abe1 0%,
    rgba(40, 171, 225, 0) 50%
  );
  filter: blur(58px);
  height: 500px;
  position: absolute;
  opacity: 0.36;
  width: 500px;
}

.home-whole-wrap .blue.one {
  left: -10%;
  top: 9%;
}

.home-whole-wrap .blue.three {
  left: 0;
  bottom: 18%;
}

.home-whole-wrap .pink {
  /* background-image: radial-gradient(circle at 50% 50%, #FF00FF 0%, rgba(255,0,255,0.00) 50%);
	border-radius: 50%;
    height: 500px;
	filter: blur(58px);
	position: absolute;
	opacity: 0.36;
	width: 500px;

	top: 35%;
	right: -10%; */

  background-image: radial-gradient(
    circle at 50% 50%,
    #6c1d6e 0%,
    rgba(255, 0, 255, 0) 50%
  );
  background-image: radial-gradient(
    circle at 50% 50%,
    #ff00ff96 0%,
    rgba(255, 0, 255, 0) 60%
  );
  border-radius: 50%;
  height: 1000px;
  filter: blur(38px);
  position: absolute;
  opacity: 0.7;
  width: 700px;
  top: 16%;
  right: -10%;
  z-index: -1;
}

.bh-inner,
.page-id-304 .basic-page-wrapper {
  padding: 50px 0;
  max-width: 1200px;
  margin: auto;
  width: 90%;
}

.map_fields {
  display: none;
}

.tooltip.black {
  color: #000000 !important;
}

.meter-wrap {
  display: flex;
  justify-content: space-between;
}

.below_the_meter_content-wrapper h2 {
  font-family: "Anton", sans-serif;
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
}

.below_the_meter_content-wrapper h3 {
  font-family: "Anton", sans-serif;
  font-size: 40px;
  font-weight: 400;
}

.below_the_meter_content-wrapper {
  width: 31%;
}

.below_the_meter_content-wrapper .pink-button {
  margin: 10px 0;
}

.below_the_meter_content-wrapper .state-name {
  margin: 0 auto 20px;
}

.tablepress img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: auto !important;
  width: 25px;
}

.dataTables_scrollHeadInner,
.tablepress .row-1 {
  width: 100% !important;
}

.tablepress .column-1 {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.tablepress > :where(thead, tfoot) > * > th span {
  font-weight: 400;
}

.tablepress > :where(thead, tfoot) > * > th:not(1) {
  text-align: center !important;
}

.tablepress .column-1,
.tablepress .column-2,
.tablepress .column-3,
.tablepress .column-4,
.tablepress > :where(thead, tfoot) > * > th {
  width: 25% !important;
}

.tablepress span.indirect {
  /* font-family: 'Anton', sans-serif;
    font-weight: 400; */
  text-align: center;
  text-transform: uppercase;
  display: block;
  font-size: 12px;
}

.tablepress span.indirect img {
}

.page-template-page-faq main {
  position: relative;
}

.newsroom-inner .ballot-form-wrapper p {
  font-size: 22px;
}

.newsroom-inner .basic-page-content-wrapper {
  margin-bottom: 20px;
}

/* .dataTables_scroll,
.dataTables_wrapper {
	max-width: 99%;
    overflow-x: scroll;
} */


.search-page {
  margin: 50px 5%;
  max-width: 1100px;
}

.search-page article {
  margin: 50px auto;
}

.search-page article h2 a {
  color: #21a6db;
}

.search-page article h2 a:hover {
  color: #ff00ff;
}

.search-page h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 40px;
}

.search-page article h2 a {
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.four {
  margin: 50px auto;
  max-width: 500px;
  min-height: 50vh;
  text-align: center !important;
  width: 90%;
}

.page-id-2036 input[type="submit"],
#wppb-recover-password-button {
  appearance: none;
  background-color: #ff00ff;
  border: 0;
  border-radius: 30px;
  color: #ffffff;
  font-size: 20px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  padding: 6px 65px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.4s;
  cursor: pointer;
}

.page-id-2036 input[type="submit"]:hover,
#wppb-recover-password-button:hover {
  background-color: #21a6db;
}

li.state {
  margin: 40px 0 !important;
}

li.state-li {
  margin-top: 35px;
}