/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto+Condensed:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alata&family=Montserrat:ital@1&family=Satisfy&display=swap");
/* Generic Styling */

:root {
  --brand-main-color: #013359;
  --brand-accent-color: #a4cbe9;
  --brand-font-family: "Montserrat", sans-serif;
  --brand-font-size: 16px;
}

body {
  background: #ffffff;
  font-family: "Monstserrat", sans-serif;
  overflow-x: clip;
}

body:not(.dnnEditState) .DNNEmptyPane {
  display: none;
}

p,
.Normal {
  font-family: "Monstserrat", sans-serif;
  font-size: 16px;
  color: black;
}

table {
  font-size: 1rem;
}

#backpageTitle {
  color: #b10313;
  text-align: center;
  margin: 1em;
}

.brand-main-blue {
  color: var(--brand-main-color);
}

.brand-main-red {
  color: #b10313;
}

h1 {
  font-family: "Montserrat";
  margin-top: 10px;
}

h2 {
  color: #c10000;
  font-family: "Montserrat";
  margin-top: 10px;
}

h3 {
  color: #082846;
  font-family: "Montserrat";
  margin-top: 10px;
}

h4 {
  margin: 0;
  font-family: "Montserrat";
  margin-top: 10px;
}

.footer-col span {
  color: #294b8a;
}

.h2-Satisfy {
  font-family: "Satisfy";
  font-size: xx-large;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  padding: 1rem;
  margin: 0;
  text-align: center;
}

a.skip:active,
a.skip:focus,
a.skip:hover {
  width: auto;
  height: auto;
  overflow: visible;
}

a:link,
a:active,
a:visited {
  color: #011d42;
}

a:hover {
  text-decoration: none;
  color: #a4cbe9;
}

/* Table Elements - Jon */
.wrapper {
  width: min(900px, 100% - 3rem);
  margin-inline: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fbfbfb;
}

caption,
th,
td {
  padding: 1rem;
}

caption,
th {
  text-align: left;
}

caption {
  background: var(--brand-main-color);
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  caption-side: top;
}

th {
  background: var(--brand-accent-color);
  color: #fff;
}

tr:nth-of-type(2n) {
  background: hsl(0 0% 90% / 0.5);
}

.table-container {
  max-width: 100%;
  overflow-x: auto;
}

@mdia (min-width: 651px) {
  tbody > tr > td {
    width: --webkit-fill-available;
  }

  tbody > tr > td:first-of-type {
    width: 35%;
  }
}

@media (max-width: 650px) {
  th {
    display: none;
  }

  td {
    display: block;
    padding: 0.5rem 1rem;
  }

  td:first-child {
    padding-top: 1rem;
  }

  td:first-child {
    padding-bottom: 1rem;
  }

  td[data-cell]::before {
    content: attr(data-cell) ": ";
    display: block;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.8rem;
  }
}

.table-footer-text {
  padding: 1rem 0;
  text-align: center;
  max-width: 60ch;
  margin: auto;

  & p {
    font-weight: 500;
  }

  & ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
}

/* End Table Elements - Jon */

.withdrawn {
  color: #b10313;
}

/* Structure */

#wrapper {
  position: relative;
}

#skiplink a {
  font-family: Calibri, Arial;
  font-weight: bold;
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#skiplink a:focus {
  position: static;
  width: auto;
  height: auto;
}

#dnn_alertcontentpane {
  display: flex;
  justify-content: center;
}

#dnn_alertcontentpane P {
  margin: 0.5em 0;
  padding: 0 2em;
}

.alert-text {
  text-transform: capitalize;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  color: black;
  font-family: "Monstserrat", sans-serif;
  font-size: 1.4rem;
  height: fit-content;
  border: 0;
  padding: 0;
  margin: 0;
}

#wrapper
  > div.alert.alert-light.alert-dismissible.fade.show.alert-text
  > button {
  font-size: 0.7rem;
  margin: auto;
}

#headerCarousel {
  z-index: 4;
}

.carousel-control-next,
.carousel-control-prev {
  width: 5% !important;
}

#mobileItemsShadowBox {
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.31);
  position: absolute;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

#mobile-items-container {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  z-index: 1;
}

.mobile-items-back {
  width: 100%;
  background-color: white;
  position: relative;
}

.c-hamburger {
  display: block;
  position: relative;
  margin: auto;
  padding: 0px;
  width: 20px;
  height: 20px;
  font-size: 0;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 999;
  bottom: 0px;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  background: #013359;
}

.c-hamburger span::after,
.c-hamburger span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #013359;
  content: "";
}

.c-hamburger span::before {
  top: -6px;
}

.c-hamburger span::after {
  bottom: -6px;
}

@media (max-width: 450px) {
  .c-hamburger span::before {
    top: -9px;
  }

  .c-hamburger span::after {
    bottom: -9px;
  }
}

.c-hamburger--htx {
  background-color: transparent;
}

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

.show {
  opacity: 1;
  transition: 3s;
}

#wrapper > nav > button > span > svg {
  transform: scale(2);
}

.navbar {
  padding: 0;
  z-index: 100;
  filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.29));
}

.navbar-toggler:focus {
  box-shadow: revert;
}

a.nav-link.sf-with-ul:after {
  content: " +";
}

a.nav-link.sf-with-ul:hover::after,
.nav-item:has(.submenu:focus-within) > .sf-with-ul:after,
.nav-item:has(.submenu > .nav-item:hover) > .sf-with-ul:after {
  content: " -";
}

#navbarNavDropdown {
  position: absolute;

  width: 100%;
  left: 0px;
  right: 0px;
  top: 100%;
  z-index: 9;
  height: 50vh;

  width: 100%;
  left: 0px;
  right: 0px;
  top: 100%;
  z-index: 9;
  height: fit-content;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.61);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.61);

  @media (max-width: 580px) {
    height: 55vh;
  }
}

.nav-inner {
  position: relative;
  margin: auto;
  background-color: #023e6b;
  color: #ffff;
  padding: 1.5em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2vw;
  justify-items: stretch;
  font-size: large;
  height: fit-content;
  align-items: start;

  @media (max-width: 975px) {
    grid-template-columns: repeat(3, 1fr);
  }

  @media (max-width: 650px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 580px) {
    grid-template-columns: 1fr;
    overflow-y: scroll;
    height: -webkit-fill-available;
  }
}

.nav-inner li {
  display: inline-block;
  position: relative;
}

.nav-fill .nav-item {
  text-align: start;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  color: #ffff;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link .nav-link {
  color: white;
  margin: auto;
  width: 100%;
}

.carousel-item > img {
  width: 100%;
}

.header-alignment {
}

#header {
}

#header > a {
  margin: auto;
  margin-bottom: 0;
}

.carousel-indicators {
  visibility: hidden;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 999 !important;
}

.largeSeperatedHeroImages {
}

.smallHeroImage {
  display: none;
}

@media (max-width: 575px) {
  .largeSeperatedHeroImages {
    display: none;
  }

  .smallHeroImage {
    display: block;
  }
}

.heroImageLeft,
.heroImageRight {
  width: 20%;
  height: 100%;
}

.heroImageRight {
  width: 16%;
  margin: auto;
}

.heroCenterDiv {
  background: transparent;
  width: 100%;
  margin: auto;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.heroImageCenter {
  position: relative;

  height: auto;
  flex: 1;
  width: 100%;
}

.logo-image-small {
  background-color: #e6eaee;
  width: 100%;
  margin: auto;
  padding-bottom: 3rem;
}

#header-menu-items {
  position: absolute;
  bottom: 10px;
  left: 43%;
  margin: auto;
  width: 10%;
  font-weight: bolder;
  display: flex;
  flex-direction: row;
  align-content: center;
  text-align: center;
  justify-content: space-evenly;
  align-items: flex-start;
}

#social {
  border: none;
  background: none;
}

#mobileitems2 > div {
  height: 100%;
  display: flex;
}

#mobileitems2 > div + div {
  border-left: 1px solid #013359 !important;
}

#mobileitems2 > div + button {
  border-left: 1px solid black !important;
}

#mobiletranslate {
  padding-left: 1rem;
  border-left: 1px solid black !important;
  border-right: 1px solid black !important;
  margin-left: 1rem;
  padding-right: 1rem;
  margin-right: 1rem;
}

#mobileitems,
#mobileitems2 {
  margin: 0 auto;
  width: 42%;
  padding: 1em;
  background-color: white;
  display: flex;
  justify-content: center;
  height: fit-content;
  flex-direction: row;
  flex-wrap: nowrap;
}

#mobilesearch2 > svg,
#mobiletranslate2 > svg {
  color: #013359;
  height: auto;
  width: 20px;
}

.utility-button-label {
  margin: 0;
  padding: 0;
  color: #013359;
  font-size: 1em;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.btn-close {
  height: auto !important;
}

#mobileitems > div:hover .utility-button-label,
#mobileitems2 > div:hover .utility-button-label,
#mobileitems > div:focus-within .utility-button-label,
#mobileitems2 > div:focus-within .utility-button-label {
  text-decoration: underline;
}

.hamburger-div {
  flex: 1;
}

@media (max-width: 768px) {
  .utility-button-label {
    font-size: small;
  }
}

.sliding-div {
  position: absolute;
  visibility: hidden;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  width: fit-content;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: transform 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bcs-container-searchbox,
#google_translate_element {
  margin: 1em;
}

.sliding-div.active {
  transform: translateX(-50%) translateY(110%);
  visibility: visible !important;
}

.bcs-modal {
  z-index: 2 !important;
  padding: 1em !important;
  top: -7px !important;
  left: unset !important;
  width: 100vw !important;
  height: 100vh !important;
  filter: drop-shadow(1px 6px 10px #000);
}

.bcs-container-searchbox {
  margin-top: 8px;
}

/*
body:has(.bcs-modal[style*="block"]) {
  overflow-y: hidden;
  height: 100vh;
}

body:has(.bcs-modal[style*="block"]) #searchContainer {
  z-index: 9999;
}

body:has(.bcs-modal[style*="none"]) #searchContainer {
  z-index: -1;
}
*/
/*
.bcs-modal {
  position: fixed !important;
  padding-top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9;
} 

body:has(.bcs-modal[style*="block"]) {
  overflow-y: hidden;
  height: 100vh;
}

.bcs-modal-content {
  padding: 0 !important;
  margin-top: 4em !important;
}

.bcs-modal-body {
  padding: 2px 16px;
  background-color: white;
   max-height: calc(100vh - 156px); 
  overflow: auto;
  height: 50% !important;
}
*/

.mobilebuttons {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  font-size: medium;
  margin: auto;
  align-items: center;
  justify-content: center;
  width: 80%;
}

@media (max-width: 725px) {
  .mobilebuttons {
    font-size: xx-small;
  }
}

.mobilebuttons:hover,
.mobilebuttons:focus {
  color: rgb(31, 17, 230);
}

.glyphicon {
  color: white;
  font-size: 23px;

  display: block;

  text-align: center;
}

/* Google Translate */

.goog-te-gadget {
  color: white;
}

.goog-logo-link {
  color: white;
}

/*Quicklinks*/

#dnn_quicklinksb {
  margin: 1em 3em;
}

#dnn_quicklinksb p {
  text-align: center;
}

#quicklinks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  grid-row-gap: 15px;
  grid-column-gap: 15px;
  align-items: center;
  justify-items: center;
  width: 100%;
  padding: 1rem 2rem;

  & a {
    text-decoration: none;
    text-align: center;
    display: grid;
    width: 98%;
    height: 98%;
    align-items: center;
    justify-items: center;
  }

  @media (max-width: 768px) {
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    padding: 1em 0;
    margin: auto;
  }
}

.card {
  width: clamp(120px, 75%, 600px);
  margin: auto;
}

.quicklink-item {
  display: grid;
  border-radius: 100%;
  height: auto;
  width: 100%;
  background: rgb(216, 3, 22);
  background: radial-gradient(
    circle,
    rgba(216, 3, 22, 1) 16%,
    rgba(183, 4, 20, 1) 76%,
    rgba(183, 4, 20, 1) 100%
  );
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.68));
  align-items: center;
  aspect-ratio: 1 / 1;
  justify-items: center;
  max-width: 160px;

  &:hover,
  &:focus-within {
    background: #02518d;
    background: rgb(2, 81, 141);
    background: -moz-radial-gradient(
      circle,
      rgba(2, 81, 141, 1) 0%,
      rgba(2, 62, 107, 1) 35%
    );
    background: -webkit-radial-gradient(
      circle,
      rgba(2, 81, 141, 1) 0%,
      rgba(2, 62, 107, 1) 35%
    );
    background: radial-gradient(
      circle,
      rgba(2, 81, 141, 1) 0%,
      rgba(2, 62, 107, 1) 35%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02518d", endColorstr="#023e6b", GradientType=1);
  }

  @media (max-width: 650px) {
    width: 73%;
  }
}

.ql-container {
  border-radius: 100%;
  border: 1px solid white;
  display: grid;
  width: 96%;
  height: 96%;
  aspect-ratio: 1 / 1;
  gap: 5%;
  align-items: start;
  grid-template-rows: 1fr 1fr;
  padding: 6% 0;
  justify-items: center;

  & .qlicon {
    width: 40%;
    margin: auto;

    & img {
      vertical-align: middle;
      height: auto;
      width: 100%;
    }
  }

  & .qlwords {
    font-size: clamp(12px, 0.9vw, 60px);
    font-family: "Montserrat", sans-serif;
    color: white;
    font-weight: 600;
    width: clamp(12ch, 80%, 90%);
    padding-bottom: 6%;
    height: 60%;
  }
}

/*------------------------------------------------*/

/* REGISTRATION TOTALS
    /*------------------------------------------------*/

.voter-registration-container {
  background-color: #a6c0d0;
}

.registrationTotalsList {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
  padding: 0;
}

.registrationTotalsList > li:nth-child(1) {
  width: 100%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

#regtotals-large > div > ul > li:not(:first-child) {
  font-size: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.registrationTotalsList > li > span {
  font-family: "Montserrat";
  color: #023e6b;
}

.registrationTotalsList > li > span:first-child {
  font-weight: bolder;
  font-size: 16px;
}

.registrationTotalsList > li > span:last-child {
  font-weight: bolder;
  font-size: 1.5rem;
}

.registrationTotalsList > li:nth-child(1) > span {
  font-weight: bolder;
  font-size: 16px;
}

#regtotals-small > div > ul > :not(:first-child) {
  display: flex;
  padding: 10px;
  margin: auto;
  flex-wrap: nowrap;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .registrationTotalsList {
    list-style: none;
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
  }
}

.registrationTotalsBackground {
  width: 100% !important;
}

.voter-registration-totals-bar-lg {
  padding: 0.5em 2em;
}

.voter-registration-totals-bar-sm {
  background: #a6c0d0;
  width: 100% !important;
}

#regtotals-large,
#regtotals-small {
  color: black;
  font-family: "Monstserrat", sans-serif;
  width: 90%;
  margin: auto;
}

span.totalsValue.dateValue::before {
  content: "";
}

span.totalsValue.dateValue::after {
  content: " ";
}

.demField,
.repField,
.othField,
.totField {
  text-transform: uppercase;
  font-size: 16px;
}

.demValue,
.repValue,
.othValue,
.totValue {
  text-transform: uppercase;
  font-size: 30px;
}

/*Beginning of Content after Quicklinks and Registered Voters*/

#contentwrapper {
  background: #fff;
}

.submenu {
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 1rem;
  left: 0;
  list-style: none;
  position: absolute;
  background-color: #013256;
  z-index: 999;
  width: fit-content;
  border-radius: 3px;
}

@media (max-width: 425px) {
  .submenu {
    position: relative;
  }
}

.nav-item:nth-last-child(-n + 3) .submenu {
  right: 0;
  left: auto !important;
}

.sf-sub-indicator {
  display: none !important;
}

.nav-link {
  font-size: medium;
}

.nav-link:hover,
.nav-item:hover {
  color: #a4cbe9 !important;
}

.nav-link:focus,
.nav-item:focus {
  color: #a4cbe9 !important;
}

.submenu > li.nav-item {
  border: none;
  width: max-content;
  padding: 0;
  width: 100%;
}

.submenu > .nav-item > a {
  color: #a6c0d0 !important;
}

.submenu > .nav-item > a:hover,
.submenu > .nav-item > a:focus {
  color: #cbe5f5 !important;
}

@media (max-width: 767px) {
  .submenu {
    width: 100%;
    z-index: 99;
  }

  .submenu > li.nav-item {
    margin: auto;
    background: transparent;
  }

  .nav-inner li {
    border: none;
  }

  .submenu {
    flex-direction: column;

    border: none;
  }

  .nav-link:hover,
  .nav-item:hover {
    color: #a4cbe9 !important;
    display: flex;
    flex-direction: column;
  }
}

.home {
  color: #ffffff;
}

#icons {
  padding: 10px;
}

#middlecontent {
  display: flex;
  flex-direction: row;
  background-color: #023e6b;
  padding: 2em;
  justify-content: space-between;
}

.homecontentpane {
  position: relative;
  padding: 1rem 3rem;
}

.headshotWelcomeMessageArea,
.legalNoticesMessageArea {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #e1ebf1;
}

.legalNoticesMessageArea {
  background-color: white;
}

.headshotWelcomeMessageArea,
#middlecontent,
.legalNoticesMessageArea {
  padding: 2em 3em;

  @media (max-width: 650px) {
    padding: 2rem 1rem;
  }
}

#welcomeMessageTitle,
#legalNoticewelcomeMessageTitle {
  width: 100%;
  text-align: center;
}

#welcomeMessageTitle > h2,
#legalNoticewelcomeMessageTitle > h2 {
  font-size: clamp(1.8rem, 2vw, 60px);
}

.welcome-message-text {
  width: 100%;
  background: transparent;
  border: none;
}

.DNNModuleContent .ModDNNHTMLC {
  font-family: "Montserrat";
  font-size: medium;
  font-weight: 600;
}

.right-pane-welcome-message {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
  width: 32%;
}

.top-right-pane-welcome-message {
  padding: 0 0.5rem;
}

div.headshotWelcomeMessageArea p {
  font-size: 18px;
  font-family: "Monstserrat", sans-serif;
}

.right-pane-welcome-message > div > div > div > div > div > div > p {
  font-size: 18px;
  font-family: "Monstserrat", sans-serif;
}

.headshot-image-div {
  width: auto;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
}

.headshot-image {
  max-height: 20rem;
}

.electionScheduleDiv {
  background-color: #294b8a;
  padding-bottom: 3rem;
}

.electionScheduleDivHeader {
  font-size: xx-large;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  padding: 2rem;
  margin: 0;
}

.electionScheduleInnerContainer {
  display: flex;
  padding: 1rem;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
}

.electionScheduleInnerDiv {
  width: 100%;
  font-family: "Monstserrat", sans-serif;
  border-radius: 3px;
}

.electionScheduleInnerDiv:nth-child(1):has(#dnn_electionScheduleTitle1:empty) {
  display: none;
}

.electionScheduleInnerDiv:nth-child(2):has(#dnn_electionScheduleTitle2:empty) {
  display: none;
}

.electionScheduleInnerContainer:has(.enrDiv:empty) {
  display: flex;
  padding: 1rem;
  flex-direction: row;
  justify-content: center;
  margin: auto;
}

.electionScheduleInnerDiv:nth-child(3):has(
    #dnn_electionScheduleInnerContainer3:empty
  ) {
  display: none;
}

.electionScheduleInnerDivHeader {
  background-color: #132f62;
  color: #ffffff;
  font-size: large;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.electionScheduleInnerDivHeader > div {
  width: 100%;
  background: none;
  padding: 0;
}

.electionScheduleInnerDivHeader > div > div {
  margin: auto;
}

.electionScheduleInnerDivHeader > div > div > div > div > h3 {
  background-color: #132f62;
  color: #ffffff;
  font-size: large;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.electionScheduleInnerDivBody {
  background-color: #737377;
  display: flex;
  min-height: 70%;
  flex-direction: row;

  align-items: center;
}

.electionScheduleInnerDivIconContainer {
  max-width: 6rem;
}

#dnn_electionScheduleDate1 > div > div > div > h4 {
  color: white;
  font-size: larger;
}

#dnn_electionScheduleDate2 > div > div > div > h4 {
  color: white;
  font-size: larger;
}

.electionScheduleInnerDivDate {
  font-size: larger;
}

#dnn_electionScheduleInnerContainer1 > div > div > div > div > div > p {
  font-size: small;
  color: white;
}

#dnn_electionScheduleInnerContainer2 > div > div > div > div > div > p {
  font-size: small;
  color: white;
}

#dnn_electionScheduleInnerContainer3 {
  height: 100%;
  padding: 0;
  background-color: transparent;
}

#dnn_electionScheduleInnerContainer3 > div {
  width: 100%;
}

#dnn_electionScheduleInnerContainer3 > div > div > h1 {
  display: none;
  visibility: hidden;
}

.schedule-detail {
  color: white;
}

.enrDiv > div > div > div > div > div > a {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.enrDiv > div > div > div > div > div > a > div.HomePageENRElection {
  padding-bottom: 0.4rem;
}

.enrDiv > div > div > div > div > div > a > div.HomePageENRStatus {
  padding-top: 0.4rem;
}

#dnn_electionScheduleInnerContainer > div > div > h1 {
  margin: 0;
}

.enrDiv > div > div > div > div > a > div.HomePageENRElection > span {
  font-size: large;
}

.enrDiv > div > div > div > div > div > a > hr {
  display: none;
}

#dnn_ContentPane
  > .DnnModule-TurnoutQuickView
  > .WFContainer_Title_h1
  > div
  > .ModTurnoutQuickViewC
  > iframe {
}

.HomePageENRLinkContainer {
  width: clamp(200px, 75%, 600px);
  justify-content: center;
  align-items: center;
  font-family: "Montserrat";
  margin: 1em auto;
}

.HomePageENRLinkHighlight {
  padding: 1px;
  font-size: medium;
  outline: 1px dashed transparent;
}

.HomePageENRStatus {
  font-size: small;
  font-family: "Montserrat";
  font-weight: bold;
  line-height: 1.2;
  color: #bf3946;
}

#sxsContent,
.sxscontent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  padding: 2em 4rem;
  gap: 5%;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    padding: 2em 2rem;
  }

  @media (max-width: 660px) {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .top-alert {
    font-size: 5vw;
    margin: 5px 14px;
    padding: 0.2em 0.5em;
  }

  .top-alert > ol {
    margin: 0.5rem;
    padding: 0.5rem;
  }

  .top-alert > li {
    font-size: 5vw;
  }

  #quicklinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    width: 90%;
  }

  .right-pane-welcome-message {
    padding: 2em 0;
  }

  #regtotals-small > .registrationTotals > .registrationTotalsList > {
    padding: 0;
  }

  #regtotals-small
    > .registrationTotals
    > .registrationTotalsList
    > :not(:first-child) {
    padding: 1vw;
  }

  #dnn_homepageMessagepane {
    padding: 0;
  }

  #dnn_homepageMessagepane P {
    font-size: 5vw;
    padding: 0.5rem;
    margin: 0;
    color: black;
  }

  .electionScheduleInnerContainer {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .electionScheduleInnerDivBody {
    padding: 0.5rem;
  }

  .electionScheduleInnerDivHeader {
    background-color: #132f62;
    color: #ffffff;
    padding: 0.6rem;
    font-size: larger;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .electionScheduleInnerDivText {
    font-size: 3vw;
  }

  .electionScheduleInnerDivDate {
    font-size: large;
    margin: 0;
  }

  .electionScheduleInnerDivInfo {
    font-size: 3vw;
    margin: 0;
  }

  .HomePageENRLinkHighlight {
    padding: 1px;
    font-size: medium;
    outline: 1px dashed transparent;
  }

  .HomePageENRStatus {
    font-size: small;
    font-family: "Montserrat";
    font-weight: bold;
    line-height: 1.2;
    color: #bf3946;
  }
}

.backpagecontentpane {
  width: 100%;
  padding: 3em;
}

.backpage-divider {
  height: 20px;
  width: 100%;
}

.backpagecontentpane {
  width: 100%;
  padding: 3em;
}

.backpage-divider {
  height: 20px;
  width: 100%;
}

#aboutContent,
#faqPane {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0 6rem;
  padding-bottom: 2em;
  flex-wrap: wrap;
}

#faqPane {
  justify-content: space-between;
  padding: 0 4em;
}

#verticalQuicklinks {
  width: 12%;
}

#dnn_faqSection_SyncPanel,
#dnn_faqSection {
  width: 80%;
}

#dnn_aboutDescription_SyncPanel {
  width: 50%;
}

#aboutRightContainer {
  width: 25%;
  padding-top: 0;
  margin-right: 1em;
}

#dnn_aboutDescription {
  width: 70%;
}

#dnn_aboutPhoto {
  margin-top: 1em;
}

#dnn_aboutPhotoTitle p {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: xx-large;
  color: #be0326;
  text-align: center;
  width: 80%;
  margin: auto;
  text-transform: uppercase;
}

#aboutRightContainer img {
  width: 80%;
  margin: auto;
  display: flex;
}

#dnn_aboutName p {
  font-family: "Montserrat";
  color: #072850;
  font-size: larger;
  text-transform: capitalize;
  text-align: center;
}

#dnn_faqSection .accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.accordion-item {
  margin: 0.5em 0;
  width: 95%;
}

.accordion-button {
  border: 0;
  background-color: #dce5ee;
}

.accordion-header {
  margin-bottom: 0;
  color: #072850;
  font-family: "Sofia Sans Condensed", sans-serif;
}

.accordion-body {
  margin-bottom: 0;
  color: #000;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: large;
}

#verticalQuicklinks > a {
  text-decoration: none;
}

#verticalQuicklinks > a:hover .quicklink-item2,
#verticalQuicklinks > a:focus .quicklink-item2 {
  background: #c8ddef;
  color: #072850;
}

.quicklink-item2 {
  display: flex;
  border-radius: 100%;
  height: fit-content;
  width: 8em;
  height: 8em;
  border: 2px solid #be0326;
  background: white;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.68));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin: 1em 0;
}

.ql-container2 {
  height: 100%;
  width: 100%;
}

.qlicon2 {
  height: 100%;
  border-radius: 100%;
  border: 1px solid #072850;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ql2words {
  text-align: center;
  text-transform: capitalize;
  width: 80%;
}

@media (max-width: 920px) {
  #dnn_aboutPhotoTitle p {
    font-size: 1.5em;
  }

  #verticalQuicklinks {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  #faqPane {
    flex-direction: column;
  }

  #dnn_faqSection {
    width: 100%;
  }

  .accordion-item {
    width: 100%;
  }
}

@media (max-width: 675px) {
  #aboutRightContainer,
  #dnn_aboutDescription {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  #dnn_aboutPhotoTitle p {
    width: 100%;
  }

  #faqPane {
    padding: 0 0.8em;
  }

  .quicklink-item2 {
    width: 6em;
    height: 6em;
  }

  .ql2words {
    font-size: small;
  }

  .accordion-item {
    margin: 0.5em 0;
  }
}

.editcontentpane {
  position: relative;
  width: 900px;
  margin-left: 40px;
  min-height: 700px;
  float: left;
}

#dnn_rightcontentpane {
  margin-top: 55px;
}

/*Right Sidebar items*/

#rightsidebar {
  width: 221px;
  float: right;
  margin-top: 20px;
}

.news-container,
.dates-container {
  width: 100%;
}

#dnn_datescontentpane h2,
#dnn_datescontentpane li,
#dnn_datescontentpane p {
  color: white;
}

#dnn_datescontentpane h2 {
  font-size: 22px;
  margin: 35px 0 0;
}

.eds_news_BlogOne.eds_subCollection_calendar .archive_list {
  margin: 0 !important;
  padding: 3em !important;
}

.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul {
  background-color: #e1ebf1 !important;
  margin: 0 !important;
}

.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li {
  padding: 1em !important;
  text-align: center;
}

.eds_news_Firefly.eds_subCollection_calendar
  .archive_list.events
  > ul
  li:not(:last-child) {
  border-bottom: 0.8em solid #a6c0d0;
}

.eds_news_Firefly.eds_subCollection_calendar .archive_list.events > ul li a {
  color: #023e6b !important;
  font-family: "Montserrat" !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.calendar span {
  background-color: transparent !important;
  padding: 4px !important;
  color: #b10313 !important;
  font-weight: normal !important;
  border-radius: 3px !important;
  display: block !important;
  font-size: 14px !important;
  font-family: "Montserrat" !important;
  text-decoration: none !important;
  line-height: 15px !important;
  display: block !important;
  padding-top: 10px !important;
}

.calendar a {
}

#news,
#dates {
  height: auto;
  font-family: "Satisfy";
}

#news h2,
#dates h2 {
  color: white;
  font-size: 38px;
}

.news-header-text,
.dates-header-text {
}

.edn_socialPrintWrapper {
  display: none;
}

.edn_nextArticle,
.edn_previusArticle,
.edn_articleTitle {
  color: white !important;
}

.eds_news_Vision.eds_subCollection_news .EDN_article .articleTitle {
  font-family: "Montserrat" !important;
  font-size: 16px !important;
}

.edn_27165_article_list_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 3fr));
  padding: 1vw;
}

div[class*="_article_list_wrapper"] {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  flex-direction: row;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  grid-gap: 5px;
}

@media (max-width: 420px) {
  .utility-button-label {
    font-size: medium;
  }

  .btn-close {
    top: 20% !important;
    bottom: 20% !important;
  }

  .sliding-div {
    width: 90%;
    padding-top: 1em;
  }

  div[class*="_article_list_wrapper"] {
    /* --bs-gutter-x: 1.5rem; */
    --bs-gutter-y: 0;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    flex-direction: column;
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    grid-gap: 5px;
    align-content: stretch;
  }

  #middlecontent {
    display: flex;
    flex-direction: column;
    background-color: #023e6b;
  }

  #dates {
    padding-top: 1em;
  }

  .dates-container {
    width: 100%;
  }

  #datesmiddle {
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
    align-items: center;
  }

  #regtotals-small > div > ul > :not(:first-child) {
    width: 50%;
    display: flex;
    padding: 10px;
    margin: auto;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}

.edn_article,
.EDN_article {
  position: relative;
  padding: 2rem;
  background-color: #024b82;
  margin: 0 !important;
}

.eds_news_Vision.eds_subCollection_news ul,
.eds_news_Vision.eds_subCollection_news ol {
  margin-bottom: 20px !important;
  margin-left: 0 !important;
  padding-left: 25px !important;
  margin-top: 6px !important;
}

.eds_news_Vision.eds_subCollection_news .EDN_article h2 a:hover,
.eds_news_Vision.eds_subCollection_news .EDN_article h2 a:focus {
  color: white !important;
  text-decoration: underline !important;
}

.eds_news_Vision.eds_subCollection_news .EDN_article h2 {
  text-align: center;
  padding-bottom: 7px;
}

.eds_news_Vision.eds_subCollection_news .EDN_article .articleTitle {
  color: white;
}

.eds_news_Vision.eds_subCollection_news .EDN_meta-details {
  display: none;
}

.eds_news_Vision.eds_subCollection_news .EDN_article .EDN_article_content P {
  color: white;
}

.edn_metaDetails {
  display: none;
}

.eds_news_Vision.eds_subCollection_news .EDN_readMoreButtonWrapper {
  display: none !important;
}

.eds_news_Vision.eds_subCollection_news .EDN_article_rss_wrapper {
  display: none !important;
}

#datesmiddle {
  display: flex;
  flex-direction: row;
  align-content: stretch;
  justify-content: center;
}

.dates-container:has(#datesmiddle #dnn_datescontentpane:empty) {
  display: none;
}

#dnn_datescontentpane {
  width: 74%;
}

@media (max-width: 768px) {
  #dnn_datescontentpane {
    width: 100%;
  }
}

#datesmiddle > div > div {
  width: 100%;
}

.archive_list.events {
  margin: none !important;
  box-shadow: none !important;
  background: none !important;
}

@media (max-width: 768px) {
  #dates {
    padding-top: 1em;
  }

  .news-container,
  .dates-container {
    width: 100%;
  }

  .headshotWelcomeMessageArea {
    flex-direction: column;
  }

  .welcome-message-text {
    width: 100%;
    padding: 0em;
    line-height: 1.5;
    margin: 0;
  }

  .headshot-image-div {
    margin: auto;
    padding: 0;
  }

  .right-pane-welcome-message {
    width: 100%;
    padding: 1em 0;
  }

  .electionScheduleInnerDiv {
    padding: 0;
  }

  #middlecontent {
    display: flex;
    flex-direction: column;
  }

  .electionScheduleInnerContainer {
    display: grid;
    padding: 1rem;
  }

  #datesmiddle {
    padding: 0;
  }
}

.accordion {
  width: 50%;
  margin: auto;
}

#dnn_accordionOneHeader > div > div > div > div > div > h2 {
  font-size: large;
}

/*Footer*/

#dnn_disclaimerMessage {
  padding: 1em 3em;
}

.footer {
  display: flex;
  justify-content: space-evenly;
}

svg.bi.bi-facebook {
  color: #3b5998;
  max-height: 2em;
}

svg.bi.bi-facebook:hover,
svg.bi.bi-facebook:focus-within {
  color: #0d6efd;
}

.contact-container {
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

.footer-col a {
  text-decoration: none;
}

.footer-col:not(svg) a:hover {
  text-decoration: underline;
}

.footer-inner-col {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer-col p {
  font-size: 14px;
  margin: 0;
  padding: 2px 0;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

.facebookFooterDesktop {
}

@media (max-width: 767px) {
  .footer {
    flex-direction: column;
  }
}

@media (max-width: 510px) {
  #mobilesearch2 > svg,
  #mobiletranslate2 > svg {
    width: 5vw;
  }

  .nav-fill .nav-item {
    text-align: start;
    width: 60vw;
  }

  .submenu > li.nav-item {
    border: none;
    width: 50vw;
  }

  .registrationTotalsList {
    list-style: none;
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
  }

  #regtotals-small > div > ul > :not(:first-child) {
    width: 50%;
    display: flex;
    padding: 10px;
    margin: auto;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 335px) {
  .footer-col {
    padding: 0.5rem 0;
  }
}

#dnn_footercontentpane {
  width: inherit;

  padding: 2px;
  color: white;
}

.footertext p,
.footertext a {
  font-family: Verdana;
  font-size: 10pt;
  color: #ffffff;
  text-align: center;
  padding-top: 10px;
}

#dnn_disclaimerMessage {
  background-color: #e1ebf1;
  padding: 2em 0;
}

#dnn_disclaimerMessage p {
  text-align: center;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  margin: 0 2em;
}

#dnn_disclaimerMessage_SyncPanel {
  margin-bottom: 6em;
}

.dnnEditState .DnnModule {
  opacity: 1;
}

@media print {
  body {
    background-color: white;
    color: black;
    background-image: none;
  }

  #dnn_ContentPane,
  #contentwrapper,
  #wrapper {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    background: none;
    float: none !important;
    top: 0;
    position: absolute;
  }

  #logo,
  #footer,
  #swoosh {
    display: none;
  }

  #controls,
  #maintop {
    display: none;
  }

  #backwrap,
  #staticbanner {
    background-image: none;
  }

  #leftsidebar,
  #rightsidebar,
  #registeredvoters,
  #quicklinks,
  #rotatordiv {
    display: none;
  }
}

/* Popup Message and Transparent Bar */

#dnn_popup {
  background: #0073b7;
  height: 54px;
  display: none;
}

#dnn_popup a {
  color: #fef795;
}

#dnn_ctr33026_ModuleContent {
  display: table-cell;
  vertical-align: middle;
  min-height: 54px;
  height: 54px;
  width: 52%;
}

#dnn_popup p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  color: white;
  text-align: center;
  line-height: 1;
}

#dnn_popup h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.3em;
  color: #fef795;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 5px;
}

#popupexit {
  padding-top: 15px;
  z-index: 9;
}

#popupexit:hover,
#popupexit:focus {
  color: white;
}

#transparentbar {
  position: absolute;
  z-index: 9;
  background: rgba(2, 47, 99, 0.65);
}

#transparentbarback {
  position: absolute;
  top: 0px;
  z-index: 9;
  background: rgba(2, 47, 99, 0.65);
}

.dnnSortable {
  min-height: 54px !important;
}

.removePopup {
  position: absolute;
  height: 1px;
  width: 1px;
  left: 5000px;
}

.tbarUp {
  top: 0px !important;
}

@media (max-width: 2050px) {
  #dnn_ctr33026_ModuleContent {
    width: 24%;
  }
}

@media (max-width: 1950px) {
  #dnn_ctr33026_ModuleContent {
    width: 25%;
  }
}

@media (max-width: 1850px) {
  #dnn_ctr33026_ModuleContent {
    width: 27%;
  }
}

@media (max-width: 1750px) {
  #dnn_ctr33026_ModuleContent {
    width: 28%;
  }
}

@media (max-width: 1650px) {
  #dnn_ctr33026_ModuleContent {
    width: 30%;
  }
}

@media (max-width: 1550px) {
  #dnn_ctr33026_ModuleContent {
    width: 32%;
  }
}

@media (max-width: 1450px) {
  #dnn_ctr33026_ModuleContent {
    width: 34%;
  }
}

@media (max-width: 1350px) {
  #dnn_ctr33026_ModuleContent {
    width: 37%;
  }
}

@media (max-width: 1250px) {
  #dnn_ctr33026_ModuleContent {
    width: 40%;
  }
}

@media (max-width: 1150px) {
  #dnn_ctr33026_ModuleContent {
    width: 44%;
  }
}

@media (max-width: 1050px) {
  #dnn_ctr33026_ModuleContent {
    width: 48%;
  }
}

@media (max-width: 800px) {
  #popuptext {
    position: relative;
    right: 7%;
  }
}

@media (max-width: 680px) {
  #popuptext {
    right: 8%;
  }
}

@media (max-width: 587px) {
  #dnn_popup {
    height: 71px;
  }
}

@media (max-width: 469px) {
  #dnn_popup {
    height: 85px;
  }

  #popuptext {
    right: 0%;
    width: 90%;
  }
}

/* Content Pane Area */

#dnn_contentpane {
}

.grayBack {
  background-color: #e2e2e2;
}

#dnn_newsarea {
  padding: 0 40px;
}

#dnn_calendararea {
  padding: 0 40px 20px;
}

/* Getting rid of weird category about calendar */

.SelCategory.SubHead {
  display: none;
}

#newstop {
  background: #168abc;
  font-size: 1.8em;
  font-family: Calibri, "Gill Sans", "Gill Sans MT", "Trebuchet MS", sans-serif;
  color: white;
  padding: 10px 20px;
}

#calendartop {
  background: #003366;
  font-size: 1.8em;
  font-family: Calibri, "Gill Sans", "Gill Sans MT", "Trebuchet MS", sans-serif;
  color: white;
  padding: 10px 20px;
}

.contentheader {
  padding: 7px 0px 1px 0px;
  background: #f57921;
  color: #1b286b !important;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px 0 rgb(0 0 0 / 20%), 0 6px 8px 0 rgb(0 0 0 / 19%);
}

#spacertop {
  padding: 15px;
}

#spacerbottom {
  padding: 0px;
}

#contentarea {
  background: #e2e2e2;
  display: flex;
}

@media (max-width: 991px) {
  #contentarea {
    display: inherit;
  }
}

#dnn_middlearea {
  border-right: 2px solid #707070;

  padding: 20px 20px;
  background: white;
}

#rightareaContainer {
  padding: 20px 15px;
  background: #e2e2e2;
}

@media (max-width: 991px) {
  #dnn_middlearea {
    padding: 30px;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  #dnn_middlearea:after {
    border-bottom: 2px solid #707070;
    width: 100%;
    content: "";
    display: block;
    margin: 0 auto;
  }

  #dnn_contentpane:after {
    border-top: 2px solid #707070;
    width: 100%;
    content: "";
    display: block;
    margin: 0 auto;
  }

  #dnn_contentpane {
  }

  #rightarea {
    padding-top: 20px;
  }

  .backpagecontentrow #dnn_contentpane {
  }
}

@media (max-width: 320px) {
  #rightarea {
    padding: 0 0px;
  }

  .electionScheduleInnerContainer {
    display: flex;
    padding: 1rem;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    justify-content: space-evenly;
  }
}

#dnn_rightpane,
#dnn_leftpane,
#dnn_rightpaneTop,
#dnn_leftpaneTop {
  padding-top: 20px;
}

#dnn_rightpane h3,
#dnn_leftpane h3,
#dnn_rightpaneTop h3,
#dnn_leftpaneTop h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4em;
  color: #023b7a;
  text-align: left;
  margin: 0px 0 5px;
  font-weight: bold;
  text-transform: uppercase;
}

#dnn_rightpane h2,
#dnn_leftpane h2,
#dnn_rightpaneTop h2,
#dnn_leftpaneTop h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: normal;
  color: #007ac3;
  text-align: left;
  margin: 10px 0px;
}

#dnn_rightpane p,
#dnn_leftpane p,
#dnn_rightpaneTop p,
#dnn_leftpaneTop p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3em;
  font-style: normal;
  color: #022f63;
  text-align: left;
}

/* News Section Edits */

/* Article Title */

.edn_metaDetails {
  text-align: center !important;
}

.eds_news_Ozone {
  margin-bottom: 0 !important;
}

.eds_news_Vision.eds_subCollection_news ul,
.eds_news_Vision.eds_subCollection_news ol {
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 15px;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSubTitle,
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary ul,
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary p {
  display: none;
}

.eds_news_Ozone.eds_subCollection_news
  .edn_article
  .edn_articleSummary
  p:first-child,
.eds_news_Ozone.eds_subCollection_news
  .edn_article
  .edn_articleSummary
  p:nth-child(2),
.eds_news_Ozone.eds_subCollection_news .edn_article .edn_articleSummary span {
  display: block !important;
  color: #626262 !important;
  text-align: center !important;
}

.eds_news_Ozone.eds_subCollection_news
  .edn_article
  .edn_articleSummary
  p:nth-child(2),
.eds_news_Ozone.eds_subCollection_news
  .edn_article
  .edn_articleSummary
  p:nth-child(3) {
  display: block !important;
  color: #626262 !important;
  text-align: center !important;
}

/* Read More Button */

.eds_news_Ozone.eds_subCollection_news .edn_article .edn_readMoreButtonWrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
}

.eds_news_Ozone.eds_subCollection_news .edn_readMore.edn_readMoreButton,
.eds_news_Ozone.eds_subCollection_news
  .article_comments
  .add_comment
  .add_article_box
  .submit {
  font-family: Arial, Helvetica, sans-serif !important;
  -webkit-transition: all 200ms linear;
  -khtml-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  border: none !important;
  border-radius: none !important;
  font-size: 16px !important;
  padding: 12px !important;
}

/* Notices Section Edits */

.eds_news_Ozone h2 {
  color: #023b7a !important;
  text-align: center !important;
  font-weight: bold !important;
  font-size: x-large !important;
}

/* Events Calendar */

#dnn_ctr33025_ModuleContent {
  width: 90% !important;
  padding-left: 10% !important;
}

.eds_news_Ozone.eds_subCollection_calendar .archive_list.events {
  margin-top: 0px !important;
  box-shadow: 0px 0px 6px grey;
  background: #d1d1d1;
}

.eds_news_Ozone.eds_subCollection_calendar .archive_list {
  padding: 0 !important;
}

.eds_news_Ozone .edn_module_title {
  display: none;
}

.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li:before {
  display: none !important;
}

.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li {
  padding: 15px !important;
  background: white;
  margin-bottom: 10px !important;
}

.eds_news_Ozone.eds_subCollection_calendar .archive_list.events ul li > a {
  font-size: 13pt !important;
  font-family: Arial, Helvetica, sans-serif !important;
  color: #023b7a !important;
  font-weight: bold;
}

.eds_news_Ozone h3 {
  padding: 0 15px !important;
}

/* Search Box & Translate Dropdown Spacing in PaneDrop & Mobile Menu*/

#dnn_mobilemenu {
  position: absolute;
  right: -150%;
  z-index: 15;
  background: white;
}

.bcs-container-searchbox {
  margin-top: 7px;
}

#google_translate_element {
  margin-top: 6px;
}

/* Gets rid of persona bar for dev purposes */
/*
body {
  margin-left: 0px !important;
}

iframe#personaBar-iframe,
.personalBarContainer.evoq .personabar-placeholder {
  display: none;
}
*/
