/*
 * Theme Name: Capitol Watch
 * Description: Custom theme developed for the Colorado Capitol Watch website
 * Author: Serendum
 * Author URI: https://www.serendum.com/
 * Template: genesis
 * Version: 1.0.0
 * License: MIT
 */
 /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 * Begin General Styles
 */
html, body {
  font-family: 'futura-pt', sans-serif;
  font-size: 18px;
  line-height: 1.3rem;
  overflow-x: hidden;
}
*.ccw-uppercase {
  text-transform: uppercase;
}
*.ccw-blue {
  color: #007291;
}
*.ccw-blue-background {
  background-color: #007291;
}
*.ccw-orange {
  color: #FC6508;
}
*.ccw-bold {
  font-weight: 600;
}
*.ccw-center {
  text-align: center;
}
*.ccw-small  {
  font-size: 0.8rem;
}
*.ccw-flex-unset {
  flex-direction: row !important;
}
i, em  {
  font-style: italic;
}
strong, b {
  font-style: bold;
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 2.8rem;
}
h1.ccw-with-underline::after,
h2.ccw-with-underline::after,
h3.ccw-with-underline::after {
  content: '';
  display: block;
  border-bottom: 2px solid;
  width: 30%;
  border-color: inherit;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.7rem;
}
h4 {
  font-size: 1.6rem;
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.2rem;
}
a,
a:focus,
a:visited {
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #333333;
}
a.ccw-orange-button,
button.ccw-orange-button {
  text-decoration: none;
  display: block;
  border-radius: 0.7rem;
  padding: 0.4rem 1rem 0.4rem 1rem;
  background-color: #FC6508;
  width: fit-content;
  color: #000000;
  font-size: 0.9rem;
  transition: background-color 0.4s ease-in-out;
  outline: none;
  border: none;
  cursor: pointer;
}
a.ccw-blue-button,
button.ccw-blue-button {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  border-radius: 0.7rem;
  padding: 0.4rem 1rem 0.4rem 1rem;
  background-color: #007291;
  width: fit-content;
  font-size: 0.9rem;
  transition: background-color 0.4s ease-in-out;
  outline: none;
  border: none;
  cursor: pointer;
}
a.ccw-button-full {
  width: auto;
}
a.ccw-button-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
a.ccw-with-arrow::after,
a.ccw-orange-button::after,
button.ccw-orange-button::after {
  content: "";
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  margin-left: 0.8rem;
  padding: 3px;
  transform: rotate(-45deg);
}
a.ccw-orange-button:hover,
button.ccw-orange-button:hover {
  background-color: #FC650890;
}
ul {
  list-style: disc inside;
  font-weight: 600;
}
ul li {
  margin: 0.75rem 0;
}

div.ccw-site-header-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  margin: 1rem;
}
div.title-area a img {
  max-width: 20vw;
  height: auto;
}

nav.nav-primary ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding-inline-start: 0;
}

nav.nav-primary ul li a {
  text-decoration: none;
  text-decoration-color: transparent;
  color: #000000;
  font-family: 'futura-pt', sans-serif;
  font-weight: 600;
  transition: text-decoration-color 0.4s ease-in-out;
}

nav.nav-primary ul li.current_page_item a,
nav.nav-primary ul li:hover a {
  text-decoration: underline;
  text-decoration-color: #000000;
  text-underline-offset: 0.4rem;
}

div.nav-login-free-trial ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-inline-start: 0;
}

div.nav-login-free-trial ul li a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

div.nav-login-free-trial ul li {
  border-radius: 8px;
  font-family: 'futura-pt', sans-serif;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  transition: box-shadow 0.45s linear, background-color 0.45s linear;
  cursor: pointer;
}

div.nav-login-free-trial ul li:first-of-type {
  background-color: #007291;
  color: #FFFFFF;
}
div.nav-login-free-trial ul li:first-of-type:hover {
  background-color: #00729199;
}

div.nav-login-free-trial ul li:last-of-type {
  background-color: #FFFFFF;
  color: #007291;
  box-shadow: 1px 1px 3px #007291;
}
div.nav-login-free-trial ul li:last-of-type:hover {
  box-shadow:  2px 2px 3px #007291;
}

div.mobile-nav-toggle {
  display: none;
  visibility: hidden;
  height: 0;
  position: relative;
}
div.mobile-nav-toggle input#mobile-nav-toggle-checkbox {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
div.mobile-nav-toggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #007291;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 30px 0px;
  transition:  transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}
div.mobile-nav-toggle span:first-child {
  transform-origin: 0% 0%;
}
div.mobile-nav-toggle span:nth-last-child(2) {
  transform-origin: 38% 100%;
}
div.mobile-nav-toggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -2px);
  background: #007291;
}
div.mobile-nav-toggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
div.mobile-nav-toggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(4px, 2px);
}

/*
 * Media Breakpoints for Nav
 */
@media only screen and (min-width: 992px) {
  div.title-area a img {
    max-width: 15vw;
  }
}
@media only screen and (max-width: 768px) {
  div.ccw-site-header-wrapper {
    margin: 0.5rem;
    display: block;
  }
  div.title-area a img {
    max-width: 30vw;
  }
  nav.nav-primary {
    display: none;
  }
  nav.nav-primary ul {
    display: block;
    text-align: center;
  }
  nav.nav-primary ul li {
    margin: 1rem 0;
  }
  div.nav-login-free-trial ul {
    justify-content: center;
  }
  div.nav-login-free-trial ul li {
    margin: 1rem 0;
    width: fit-content;
  }
  header.site-header {
    display: inline-block;
    vertical-align: middle;
  }
  div.mobile-nav-toggle {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    vertical-align: middle;
    visibility: visible;
    height: auto;
    left: 50vw;
  }
}

/*
 * Begin Hero Image
 */
div.ccw-hero-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.ccw-hero-image div.ccw-hero-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 55vw;
  margin: 0 2rem;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  div.ccw-hero-image div.ccw-hero-content {
    max-width: 100vw;
  }
}
/*
 * Media breakpoints for hero image
 */
@media only screen and (min-width: 992px) {
  div.ccw-hero-image div.ccw-hero-content {
    max-width: 35vw;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  div.ccw-hero-image {
    background-position: top right 26% !important;
  }
}

/*
 * Begin CCW Split Background
 */
div.ccw-split-background {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
div.ccw-split-background div.ccw-split-background-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #FFFFFF;
  max-width: 60vw;
}
div.ccw-split-background div.ccw-split-background-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  position: absolute;
  right: 2rem;
  max-width: 30vw;
}
div.ccw-split-background div.ccw-truths-banner {
  font-size: 1.2rem;
  background-color: #FFFFFF;
  border-radius: 0.7rem;
  padding: 1rem;
  text-align: center;
}
div.ccw-split-background div.ccw-special-offers-banner {
  border-radius: 1.1rem;
  color: #FFFFFF;
  padding: 1rem 1rem 2rem;
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
div.ccw-split-background div.ccw-special-offers-banner div.ccw-special-offer-list-container {
  color: #000000;
  background-color: rgba(255, 255, 255, 0.55);
  padding: 1rem;
  font-size: 0.8rem;
  border-radius: 0.7rem;
}

@media only screen and (max-width: 767px) {
  div.ccw-split-background {
    flex-direction: column;
  }
  div.ccw-split-background div.ccw-split-background-content-wrapper {
    max-width: 100vw;
  }
  div.ccw-split-background div.ccw-split-background-sidebar {
    max-width: 100vw;
  }
  div.ccw-split-background div.ccw-split-background-sidebar {
    position: static;
  }
}
/*
 * Start Tabs
 */
div.ccw-legboard {
  border: 1px solid #007291;
  border-radius: 5px;
  margin: 2rem;
}
ul.ccw-tabs {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: space-evenly;
}
ul.ccw-tabs li {
  padding: 1rem 0;
  margin: 0;
  text-align: center;
  width: 100%;
}
ul.ccw-tabs li.ui-tabs-tab {
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.ccw-tabs li:not(:last-of-type) {
  border-right: 1px solid #007291;
  text-align: center;
}
ul.ccw-tabs li.ui-state-active {
  background-color: #FC6508;
}
div.ui-tabs-panel {
  padding: 2rem;
  border-top: 1px solid #007291;
}
div.ui-tabs-panel button.ccw-show-more {
  display: none;
  margin-top: 1rem;
}
div.ui-tabs-panel h2 {
  color: #61A8BB;
  font-size: 0.8rem;
}
div.ui-tabs-panel table  {
  display: flex;
  flex-direction: row;
}
div.ui-tabs-panel table tbody tr td {
  padding-right: 1rem;
}
div.ui-tabs-panel div.cal-item div.agenda-item.now {
  background-color: #007291;
  color: #FFFFFF;
  padding: 0.5rem;
  font-weight: 700;
}
div.ui-tabs-panel div.cal-item .agenda-item.maybe\~now {
  background-color: #61A8BB;
  padding: 0.5rem;
  font-weight: 700;
}
div.ui-tabs-panel div.cal-item div.agenda-item.now::before {
  content: 'NOW: ';
  font-weight: 700;
}
div.ui-tabs-panel div.cal-item .agenda-item.maybe\~now::before {
  content: 'MAYBE NOW: ';
  font-weight: 700;
}
div.ui-tabs-panel div.cal-item div.cmte-hdr {
  color: #61A8BB;
  font-size: 0.8rem;
  font-weight: bold;
}
div.ui-tabs-panel a.audio-link img {
  display: none;
  visibility: hidden;
  height: 0;
}
div.ui-tabs-panel div.cal-item div.cmte-hdr a.audio-link img {
  display: none;
  visibility: hidden;
  height: 0;
}
div.ui-tabs-panel span {
  color: #61A8BB;
}
div.ui-tabs-panel span#title a {
  margin-left: 2rem;
  color: #000000;
}
div.ui-tabs-panel div.cal-item div.agenda-item {
  margin: 0.5rem 0;
}

@media only screen and (max-width: 767px) {
  ul.ccw-tabs li {
    font-size: 0.7rem;
  }
  div.ui-tabs-panel h2 {
    line-height: 1rem;
    margin-bottom: 1rem;
  }
  div.ui-tabs-panel table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

/*
 * Begin CCW Gray Background
 */
div.ccw-gray-background {
  background-color: #E8E8E8;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

/*
 * Begin CCW Calendar
 */
div.ccw-calendar div.calendar-main {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  border-radius: 2rem;
}
div.ccw-calendar div.calendar-main caption  {
  background-color: #007291;
  padding: 1rem 3rem;
}
div.ccw-calendar div.calendar-main caption a {
  color: #FFFFFF;
  padding: 0 2rem;
  display: inline;
  vertical-align: middle;
  font-weight: 600;
}
div.ccw-calendar div.calendar-main tr:first-of-type {
  background-color: #61A8BB;
}
div.ccw-calendar div.calendar-main tr:first-of-type th:not(:last-of-type) {
  border-right: 1px solid #E8E8E890;
}
div.ccw-calendar div.calendar-main tr {
  line-height: 3rem;
}
div.ccw-calendar div.calendar-main tr:not(:first-of-type) {
  background-color: #F2F2F2;
}
div.ccw-calendar div.calendar-main a {
  color: #61A8BB;
  font-weight: 600;
}

@media only screen and (min-width: 992px) {
  div.ccw-calendar div.calendar-main caption a {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 767px) {
  div.ccw-calendar div.calendar-main {
    justify-content: center;
  }
  div.ccw-calendar div.calendar-main caption {
    padding: 1rem 2rem;
  }
  div.ccw-calendar div.calendar-main caption a {
    padding: 0 0.7rem;
  }
}
/*
 * Begin Free Tools
 */
div.ccw-free-tools  {
  margin-top: 2rem;
}
div.ccw-free-tools ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-content: center;
  margin-top: 2rem;
  text-align: center;
  gap: 1rem;
}
div.ccw-free-tools ul li {
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  box-shadow: 1px 6px 9px rgba(0, 0, 0, 0.25);
  width: 30%;
  flex-grow: 1;
}
div.ccw-free-tools ul li img {
  padding: 1rem 0;
  max-width: 80px;
}
div.ccw-free-tools ul li a {
  display: block;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-color: #FC6508;
  padding: 1rem 2rem;
}

@media only screen and (max-width: 767px) {
  div.ccw-free-tools ul {
    flex-direction: column;
  }
  div.ccw-free-tools ul li {
    width: 100%;
  }
}
/*
 * Begin CCW Subscriptions
 */
div.ccw-split-background-white {
  background-image: linear-gradient(to bottom left, #FFF 60%, #61A8BB 30%);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
div.ccw-subscriptions ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  text-align: center;
  gap: 1rem;
  margin-top: 2rem;
}
div.ccw-subscriptions ul li {
  padding-inline-start: 0;
  flex-grow: 1;
  box-shadow: 1px 3px 9px rgba(0, 0, 0, 0.25);
}
div.ccw-subscriptions ul li.ccw-most-popular {
  background-color: #FC6508;
  border-radius: 0.35rem;
  padding: 1rem;
}
div.ccw-subscriptions ul li.ccw-most-popular p.ccw-most-popular-label {
  margin: 0 0 0.75rem 0;
  font-weight: 400;
}
div.ccw-subscriptions ul li div.subscription-container {
  background-image: linear-gradient(45deg, #61A8BB, #FFFFFF);
  border-radius: 0.35rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
div.ccw-subscriptions ul li div.subscription-container img {
  max-width: 150px;
}
div.ccw-subscription-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  div.ccw-subscriptions ul {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  div.ccw-subscription-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
/*
 * Begin Capitol Contact Interstitial
 */
div.capitol-contact-interstitial {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 4rem 2rem;
  justify-content: center;
  align-items: end;
}
div.capitol-contact-interstitial div.capitol-contact-sidebar {
  max-width: 30vw;
  text-align: center;
}
div.capitol-contact-interstitial div.capitol-contact-sidebar img {
  max-width: 25vw;
}
div.capitol-contact-interstitial div.capitol-contact-sidebar p {
  color: #FFFFFF;
  padding: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 0.5rem;
}
div.capitol-contact-interstitial div.capitol-contact-content {
  font-weight: 600;
  font-size: 0.9rem;
}
div.capitol-contact-interstitial div.capitol-contact-content p:not(:first-of-type) {
  margin: 1rem 0;
}
@media only screen and (max-width: 767px) {
  div.capitol-contact-interstitial {
    align-items: center;
    flex-direction: column;
  }
  div.capitol-contact-interstitial div.capitol-contact-sidebar {
    max-width: 100%;
  }
}
/*
 * Begin CTA
 */
div.ccw-cta {
  display: flex;
  flex-direction: column;
  min-height: 40vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  color: #FFFFFF;
}
div.ccw-cta h2 {
  font-size: 2rem;
  max-width: 40vw;
}
div.ccw-cta a,
div.ccw-cta a::after {
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
  div.ccw-cta {
    background-position: center right 30%;
  }
  div.ccw-cta h2 {
    max-width: 100vw;
  }
}
/*
 * Begin Posts
 */
section.gb-block-post-grid {
  margin: 2rem;
}
section.gb-block-post-grid div.gb-post-grid-items {
  justify-content: space-between;
}
main.content article.post {
  margin: 2rem;
}
main.content article.post p {
  margin: 1rem 0;
}
*.ccw-margins {
  margin: 2rem;
}
@media only screen and (min-width: 992px) {
  *.ccw-max-width-fix {
    max-width: 1104px;
  }
  *.ccw-max-width-fix.with-margin {
    margin: 2rem auto !important;
  }
}

/*
 * Begin Most Recent Bills
 */
div.ccw-most-recent-bills div.senate,
div.ccw-most-recent-bills div.house {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
div.ccw-most-recent-bills h2 {
  font-size: 1.3rem;
}
div.ccw-most-recent-bills div.bills {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  grid-gap: 1rem;
}
div.ccw-most-recent-bills div.bills div.bill {
  max-width: 30vw;
}
@media only screen and (max-width: 900px) {
  div.ccw-most-recent-bills div.bills {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  div.ccw-most-recent-bills div.senate,
  div.ccw-most-recent-bills div.house {
    flex-direction: column;
  }
}

/*
 * Begin Footer
 */
div.ccw-footer {
  background-image: linear-gradient(to bottom right, #FFF 80%, #61A8BB 30%);
}
div.ccw-footer div.ccw-footer-menus {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: top;
  padding: 2rem;
}
div.ccw-footer div.ccw-footer-menus ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
div.ccw-footer div.ccw-footer-menus ul li:first-of-type a {
  font-weight: 600;
  font-size: 1rem;
}
div.ccw-footer div.ccw-footer-menus ul li a {
  font-size: 0.9rem;
  font-weight: 400;
}
div.ccw-footer div.ccw-footer-menus img {
  max-width: 20vw;
  height: auto;
}
div.ccw-footer footer {
  padding: 0 2rem;
}
div.ccw-footer footer p {
  font-size: 0.8rem;
}
@media only screen and (max-width: 767px) {
  div.ccw-footer div.ccw-footer-menus {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
  div.ccw-footer div.ccw-footer-menus img {
    max-width: 50vw;
  }
}
