:root {
	--top-voluntary-beaver:0;
	--top-voluntary-attempted:0;
	--top-incentives-poughkeepsie:0;
	--top-incentives-newyork:0;
	--top-mandatory-hughes:0;
	--top-mandatory-arkansas:0;

	--height-voluntary-beaver:0;
	--height-voluntary-attempted:0;
	--height-incentives-poughkeepsie:0;
	--height-incentives-newyork:0;
	--height-mandatory-hughes:0;
	--height-mandatory-arkansas:0;

	--max-height-modal:85%;
}

#voluntary-beaver { top: var(--top-voluntary-beaver, 0); }
#voluntary-attempted { top: var(--top-voluntary-attempted, 0); }
#incentives-poughkeepsie { top: var(--top-incentives-poughkeepsie, 0); }
#incentives-newyork { top: var(--top-incentives-newyork, 0); }
#mandatory-hughes { top: var(--top-mandatory-hughes, 0); }
#mandatory-arkansas { top: var(--top-mandatory-arkansas, 0); }

#voluntary-beaver ~ dd:last-of-type { padding-bottom: var(--height-voluntary-beaver, 0); }
#voluntary-attempted ~ dd:last-of-type { padding-bottom: var(--height-voluntary-attempted, 0); }
#incentives-poughkeepsie ~ dd:last-of-type { padding-bottom: var(--height-incentives-poughkeepsie, 0); }
#incentives-newyork ~ dd:last-of-type { padding-bottom: var(--height-incentives-newyork, 0); }
#mandatory-hughes ~ dd:last-of-type { padding-bottom: var(--height-mandatory-hughes, 0); }
#mandatory-arkansas ~ dd:last-of-type { padding-bottom: var(--height-mandatory-arkansas, 0); }

#stranded-intro-island {
	height: 100%;
}
#stranded-intro-waves {
	height: 115px;
}
main.stranded {
	margin-bottom: 0;
}
main.stranded .contains-map {
	background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100% 100%"><text fill="#666" x="50%" y="50%" font-family="\'Lato\', sans-serif" font-size="32" text-anchor="middle">Loading Map...</text></svg>') 0px 0px no-repeat;
}

/* will need to be set on a per visual basis */

/*main.stranded .contains-map iframe {
	max-width: 500px;
    height: 600px;
    overflow: hidden;
    border: none;
    box-sizing: unset;
    min-width: 68%;
    max-height: 500px;
}*/
main.stranded .parallax {
	padding-top: 50px;
	background-color: #ffffff;
	/*background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 49%, #3fb0bc 49%);*/ /* FF3.6-15 */
	/*background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 49%, #3fb0bc 49%);*/ /* Chrome10-25,Safari5.1-6 */
	/*background: linear-gradient(to bottom, #ffffff 0%, #ffffff 49%, #3fb0bc 49%);*/
}
main.stranded .parallax img {
	opacity: 1;
}

main.stranded .waves {
	background: transparent;
	height: 0;
	position: relative;
}
@-webkit-keyframes waving {
    from{
        background-position:0px;
    }
    to{
        background-position:80px;
    }
}
main.stranded .waves::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background-repeat: repeat;

	/*height: 20px;
	background-size: 40px 40px;
	background-image: radial-gradient(circle at 20px -10px, transparent 22px, #3fb0bc 23px);

	height: 20px;
	background-size: 40px 40px;
	background-image: radial-gradient(circle at 20px -15px, transparent 32px, #3fb0bc 33px);*/

	height: 80px;
	background-size: 80px 80px;
	background-image: radial-gradient(circle at 40px -35px, transparent 100px, #3fb0bc 101px);

	animation: waving 6s linear infinite;
	/*animation-delay: 6s;*/
}
main.stranded .introduction.content {
	background-color: #3fb0bc;
	padding-top: 30px; /* for wide screens.. bring it in as gets smaller */
	text-align: justify;
}
main.stranded img.sprinkle {
	padding: 15px;
}

main.stranded blockquote {
  clear: both;
  position: relative;
  border: none;
  font-style: italic;
  color: white;
  font-size: 1.35em;
  /*padding: 20px;*/
  margin: 30px auto;
  width: 80%;
}
main.stranded blockquote:before, main.stranded blockquote:after {
  content: "";
  position: absolute;
}
main.stranded blockquote:before {
  top: -2px;
  left: -2px;
  right: -2px;
  height: 2px;
  /*background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#224a58), to(transparent));
  background-image: -webkit-linear-gradient(transparent, #224a58);
  background-image: -moz-linear-gradient(transparent, #224a58);
  background-image: -o-linear-gradient(transparent, #224a58);*/
  background-image: linear-gradient(90deg, transparent 50%, white 55%);
}
main.stranded blockquote:after {
  bottom: -2px;
  left: -2px;
  right: -2px;
  height: 2px;
  /*background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#224a58), to(transparent));
  background-image: -webkit-linear-gradient(left, #224a58, transparent);
  background-image: -moz-linear-gradient(left, #224a58, transparent);
  background-image: -o-linear-gradient(left, #224a58, transparent);*/
  background-image: linear-gradient(90deg, white 50%, transparent 55%);
}

main.stranded p.heading {
	font-size: 2.2rem;
    /*color: white;*/
    /*text-align: center;*/
    font-weight: 300;
}

@media (max-width: 768px) {
	main.stranded img.sprinkle {
		max-width: 300px;
		display: block;
    	margin: auto;
    	float: none;
	}
	main.stranded blockquote {
		text-align: center;
		font-size: 1.2em;
	}
}

main.stranded .icon.card {
	width: 400px;
	visibility: none;
	background-color: transparent;
	box-shadow: none;
	position: relative;
	z-index: 33;
	overflow: hidden;
	transition-property: top, left, transform;
	transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.005, 1.650, 1.000, -0.600);
}
main.stranded .icon.card.left {
	float: left;
	margin: 0 1em 1em 0;
}
main.stranded .icon.card.right {
	float: right;
	margin: 0 0 1em 1em;
}
main.stranded .icon.card .card-reveal {
	background-color: rgba(63,176,188,0.95);
	color: white;
	padding: 10%;
    font-size: 1.1em;
}

main.stranded .icon.card::after {
	content: '';
	width: 500px;
    height: 500px;
    position: absolute;
    top: -180px;
    left: -600px;
    transition: 1s;
    transform: rotate(30deg);
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0)50%, rgba(255, 255, 255, 0.1)100%);
    animation: 5s shimmer infinite;
	z-index: 34;
}

@keyframes shimmer {
	0% { top: -180px; left: -600px; transform: rotate(30deg); }
	35%, 100% { top: 0px; left: 300px; transform: rotate(0deg); }
}


@media (max-width: 768px) {
	main.stranded .icon.card.right, main.stranded .icon.card.left {
		width: 100%;
		display: block;
    	margin: auto;
    	float: none;
	}
}


main.stranded .section .subheading {
	padding-bottom: 10px;
}
main.stranded .section.case-studies, main.stranded .section.case-studies div, main.stranded .section.case-studies p {
	/*background-color: #D9CA7C;*/
	padding-bottom: 0;
	margin-bottom: 0;
}
main.stranded .section.case-studies .row {
	margin-top: 1em;
}
main.stranded .section.case-studies h4 {
	margin-top: 20px;
}
main.stranded .section.solution h4 {
	margin-top: 10px;
}
main.stranded .modal {
	border-radius: 6px 6px 0 0;
	border: 2px solid white;
}
main.stranded .modal .content {
	background-color: #fafafa;
}

/* CASE STUDY SUBTITLE BEGIN */

/*main.stranded .modal .content .section dl div:first-of-type dd:first-of-type p:first-of-type*/ 
main.stranded .modal .content .section dl .subtitle {
	font-weight: bold;
	font-style: normal;
	/*text-transform: uppercase;*/
	font-style: italic;
	font-size: 1.8rem;
	color: #3fb0bc
}

/* CASE STUDY SUBTITLE END */

/* DROP CAPS BEGIN */

@supports not ((initial-letter: 3) or (-webkit-initial-letter: 3)) {
	main.stranded .modal .content .section dl div:first-of-type dd:nth-of-type(2) p:first-of-type::first-letter,
	main.stranded .story.section p:first-of-type::first-letter {
        font-size: 500%;
        float: left;
        line-height: .7;
        margin: .1em .05em 0 0;
    }
    main.stranded .modal .content .section dl div:first-of-type dd:nth-of-type(2) p:first-of-type::first-letter {
    	font-size: 650%;
    }
    main.stranded .story.section p:first-of-type::first-letter {
        margin: .07em .07em 0 0;
    }
}

@supports (initial-letter: 3) or (-webkit-initial-letter: 3) {
	main.stranded .modal .content .section dl div:first-of-type dd:nth-of-type(2) p:first-of-type::first-letter,
	main.stranded .story.section p:first-of-type::first-letter {
        -webkit-initial-letter: 3;
        initial-letter: 3;
        margin-right: .3em;
    }
}

/* DROP CAPS END */

main.stranded .modal .title {
	overflow: hidden;
}
main.stranded .modal .title > h4 {
	float: left;
}
main.stranded .modal .title > h4 .stranded {
	color: #333;
}
main.stranded .modal .title > h4 .case-studies {
	color: #2c7179;
}
main.stranded .modal .title > h4 .case-study {
	/*font-size: .8em;*/
}
main.stranded .modal .title > h4.mobile-heading {
	font-size: 2.4rem;
	margin-bottom: 10px;
	display: none;
}
main.stranded .modal .title > ul.subnav {
	float: right;
	margin: 0 20px 0 0;
}
main.stranded .modal .title > ul.subnav li {
	display: inline;
	padding: 10px;
	border-radius: 50%;
	/*border: 1px solid #2c7179;*/
	background-color: #3fb0bc;
	vertical-align: middle;
    line-height: 40px;
    margin-right: 5px;
    color: #2c7179;
}
main.stranded .modal .title > ul.subnav li.methodology {
	border: none;
    margin-left: 15px;
    color: #2c7179;
}
main.stranded .modal .title > ul.subnav li.methodology i {
	vertical-align: middle;
	font-size: 1.5em;
}
main.stranded .modal .title > ul.subnav li.active {
	color: #333;
	border-color: #333;
	background-color: white;
}
main.stranded .modal .title > ul.subnav li.cycle {
	border-radius: 50%;
	padding: 5px 10px;
	width: 30px;
	height: 20px;
	color: #2c7179;
	border-color: #2c7179;
}
main.stranded .modal .title > ul.subnav li.cycle.prev {
	/*color: #2c7179;
	border-color: #2c7179;*/
}
main.stranded .modal .title > ul.subnav li.cycle.next {
	margin-right: 20px;
}
main.stranded .modal .title > .modal-close {
	float: right;
	line-height: 40px;
    vertical-align: middle;
    display: block;
}
main.stranded .modal .title > .modal-close i { /* no idea why this doesn't cascade from above */
	vertical-align: middle;
}

@media (max-width: 768px) {
	main.stranded .modal .title > h4 {
		display: none;
	}
	main.stranded .modal .title > h4.mobile-heading {
		display: block;
	}
	main.stranded .modal .title > ul.subnav {
		float: left;
		margin: 0;
	}
}

main.stranded a.modal-trigger .card-title {
	color: #333;
	text-decoration: none;
}
#stranded-heading {
	width: 40%;
    vertical-align: middle;
    height: 400px;
    display: table-cell;
    padding-top: 100px;
    padding-right: 115px;
    float: right;
    /*width: 100%;
    height: 300px;
    padding: 0;*/
}
#stranded-heading .title {
	font-size: 5rem;
	font-weight: normal;
	line-height: 6rem;
	color: #333;
}
#stranded-heading .description {
	font-size: 16px;
    line-height: 1.428571429;
	font-weight: normal;
    color: #444;
}
#stranded-heading .description .line-1 {
	break-after: always;
}
@media (max-width: 1200px) {
	#stranded-heading {
		width: 35%;
	    padding-top: 60px;
	    padding-right: 50px;
	}
	#stranded-heading .title {
		font-size: 4rem;
		font-weight: normal;
		line-height: 5rem;
		color: #333;
	}
	#stranded-heading .description {
		font-size: 16px;
	    line-height: 1.428571429;
		font-weight: normal;
	    color: #444;
	}
}
@media (max-width: 992px) {
	#stranded-heading {
		width: 35%;
	    padding-top: 50px;
	    padding-right: 15px;
	}
	#stranded-heading .title {
		font-size: 3rem;
		font-weight: normal;
		line-height: 4rem;
		color: #333;
	}
	#stranded-heading .description {
		font-size: 14px;
	    line-height: 1.628571429;
		font-weight: normal;
	    color: #444;
	}
	#stranded-heading .description .line-1 {
		break-after: avoid;
	    display: inline;
	}
}
@media (max-width: 768px) {
	#stranded-heading {
		width: 40%;
	    padding-top: 25px;
	    padding-right: 10px;
	}
	#stranded-heading .title {
		font-size: 3rem;
		font-weight: normal;
		line-height: 4rem;
		color: #333;
	}
	#stranded-heading .description {
		font-size: 13px;
	    line-height: 1.528571429;
		font-weight: normal;
	    color: #444;
	}
}



@media (min-width: 1201px) {
	main.stranded .parallax-container {
		height: 100%;
    	max-height: 300px;
	}
	main.stranded .parallax {
		padding-top: 10px;
	}
	main.stranded .parallax img {
		min-width: 800px;
		min-height: 100px;
		max-height: 400px;
		width: 100%;
	}
	#stranded-heading {
		width: 35%;
	    padding-top: 80px;
	    padding-right: 50px;
	}
	#stranded-heading .title {
		font-size: 4rem;
		font-weight: normal;
		line-height: 5rem;
		color: #333;
	}
	#stranded-heading .description {
		font-size: 16px;
	    line-height: 1.428571429;
		font-weight: normal;
	    color: #444;
	}
}
@media (min-width: 1400px) {
	html {
		font-size: 10.5px;
	}
	#stranded-heading .title {
		font-size: 4.5rem;
		line-height: 5.5rem;
	}
	#stranded-heading .description {
		font-size: 18px;
	}
	main.stranded blockquote {
		font-size: 1.6em;
	}
	main.stranded .parallax-container {
		height: 100%;
    	max-height: 300px;
	}
	main.stranded .parallax {
		padding-top: 10px;
	}
	main.stranded .parallax img {
		min-width: 800px;
		min-height: 100px;
		max-height: 400px;
		width: 100%;
	}
	#stranded-heading {
		width: 35%;
	    padding-top: 80px;
	    padding-right: 50px;
	}
	/*#stranded-heading .title {
		font-size: 4rem;
		font-weight: normal;
		line-height: 5rem;
		color: #333;
	}
	#stranded-heading .description {
		font-size: 16px;
	    line-height: 1.428571429;
		font-weight: normal;
	    color: #444;
	}*/
	.col-xl-4 {
		width: 33.3333333333%;
	}
	.col-xl-offset-2 {
		margin-left: 16.6666666667%;
	}
}
@media (min-width: 1600px) {
	html {
		font-size: 12px;
	}
	#stranded-heading .title {
		font-size: 5rem;
		line-height: 6rem;
	}
	#stranded-heading .description {
		font-size: 20px;
	}
	main.stranded blockquote {
		font-size: 1.7em;
	}
}

@media (max-width: 1200px) {
	main.stranded .parallax-container {
		height: 100%;
    	max-height: 250px;
	}
	main.stranded .parallax {
		padding-top: 10px;
	}
	main.stranded .parallax img {
		min-width: 800px;
		min-height: 100px;
		max-height: 335px;
		width: 100%;
	}
}
@media (max-width: 992px) {
	main.stranded .parallax-container {
		height: 100%;
    	max-height: 225px;
	}
	main.stranded .parallax img {
		min-width: 800px;
		min-height: 100px;
		max-height: 300px;
		width: 100%;
	}
}

main.stranded p {
	font-size: 1.7rem;
}
main.stranded dl > div {
	/*padding: 20px 0 0 0;
	font-size: 1.6rem;
	line-height: 3.2rem;*/
}
main.stranded dl > div > dd > p {
	font-size: 1.6rem;
	line-height: 3.2rem;
}
main.stranded dt {
	margin: 0;
	/*padding: 10px 0 200px 12px;*/
	position: -webkit-sticky;
	position: sticky;
	opacity: .2;
	text-align: center;
}
main.stranded dd {
	visibility: visible;
	overflow-wrap: normal;
	position: relative;
}
main.stranded dd + dd {
	/*border-top: 1px solid #CCC;*/
}
/*main.stranded .case-studies.section .row > div:not(:last-of-type) div:last-of-type:after {
      content: '';
      position: absolute;
      width: 100%;
      height: 70%;
      left: 0;
      top: 10%;
      border-right: 1px solid #328e98;
}*/

main.stranded dl > div > dd > p img.timeline {
	width: 110%;
	padding-left: 0;
	margin-left: -5%;
}
@media (min-width: 768px) {
	main.stranded dl > div > dd > p img.timeline {
		width: 100%;
		padding-left: 0;
		margin-left: 0;
	}
}
@media (min-width: 900px) {
	main.stranded dl > div > dd > p img.timeline {
		width: 90%;
		padding-left: 5%;
		margin-left: 0;
	}

	main.stranded .case-studies .cards .card .card-reveal .card-title {
		line-height: 3em;
	}
	main.stranded .case-studies .cards .card .card-reveal .description {
		font-size: 1.2em;
		line-height: 1.5em;
	}
}

@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
	max-width:1200px;
  }
}
.modal.bottom-sheet {
	max-height: var(--max-height-modal, 85%);
	min-height: var(--max-height-modal, 85%);
	max-width: 97%;
	left: 1.5%;
}
.modal.bottom-sheet .title {
	position: -webkit-sticky;
	position: sticky;
    top: 0;
    background: #3fb0bc;
    padding: 15px;
    z-index: 1234;
    color: white;
	height: 70px;
}

.modal.bottom-sheet .sticky-wrapper {
	/*position: -webkit-sticky;
	position: sticky;*/
	top: 0;
	z-index: 1234;
	height: 70px;
}
.modal.bottom-sheet .title.stuck, .modal.bottom-sheet .title.stuckit {
	position:fixed;
	top: unset;
    width: 96.7%;
}

@media (max-width: 768px) {
	.modal.bottom-sheet .title, .modal.bottom-sheet .sticky-wrapper {
		height: 107px;
	}
	#st-pol-cats-modal .title {
		height: 70px;
	}
	#st-pol-cats-modal .title h4.mobile-heading {
		width: 85%;
		margin-top: -8px;
	}
}



main.stranded .case-studies .cards .card {
	border: 30px solid white;
	border-radius: 6px;
}
main.stranded .case-studies .cards .card-image {
	border: 1px solid #000000;
    border-radius: 6px;
    margin-right: 1px; /* hov-zoom removal does the job, but modal activation removes right border */
}
main.stranded .case-studies .cards .card .card-content {
	padding: 20px 0 0 0;
	text-align: center;
}
main.stranded .case-studies .cards .card .card-content p {
	padding-top: 15px;
}
main.stranded .case-studies .cards .card .card-title {
	font-size: 2.2rem;
	line-height: 2.6rem;
	transition: opacity .2s;
}

main.stranded .case-studies .cards .card .card-reveal {
	height: 101%;
	padding: 0;
	text-align: center;
}
main.stranded .case-studies .cards .card .card-reveal .card-title {
	margin-bottom: 10px;
	text-align: center;
}
main.stranded .case-studies .cards .card .card-reveal .btn {
	color: white;
	/*-webkit-text-stroke: thin #d1be61;*/
	background-color: #D9CA7C;
    border-color: #d1be61;
    margin-top: 5px;
    display: block;
    transition: all .2s;
}
main.stranded .case-studies .cards .card .card-reveal .btn:hover {
	opacity: .9;
}
@media (min-width: 992px) {
	main.stranded .case-studies .cards .card .card-reveal .btn {
	    position: absolute;
	    bottom: 0;
	    width: 100%;
	}
}
main.stranded .case-studies .cards .card .card-reveal a { color: #333; }
main.stranded .case-studies .cards .card .card-reveal a:hover { color: #005064; }

@media (max-width: 992px) {
	main.stranded p {
		font-size: 1.5rem;
	}
	main.stranded .case-studies .cards .card .card-title {
		font-size: 1.6rem;
		line-height: 1.8rem;
	}
	main.stranded .case-studies .cards .card {
		border: 15px solid white;
	}
	main.stranded .case-studies .cards .card .card-reveal {
		font-size: 1.2rem;
	}
}
@media (max-width: 850px) {
	main.stranded .case-studies .cards .card .card-title {
		font-size: 1.5rem;
		line-height: 1.7rem;
	}
}

@media (max-width: 768px) {
	main.stranded .case-studies .cards {
		display: none;
	}
	main.stranded .case-studies .mobile-cards {
		display: block;
	}
}
@media (min-width: 769px) {
	main.stranded .case-studies .cards {
		display: block;
	}
	main.stranded .case-studies .mobile-cards {
		display: none;
	}
}

main.stranded .case-studies .mobile-cards .card {
	display: flex;
    border-radius: 6px;
    text-align: left;
    border: 4px solid #3fb0bc;
}
main.stranded .case-studies .mobile-cards .card .card-image {
	max-width: 40%;
}
main.stranded .case-studies .mobile-cards .card .card-image img {
	border-radius: 6px 0 0 6px;
}
main.stranded .case-studies .mobile-cards .card .card-title {
	display: inline-block;
	/*font-size: 2.2rem;*/
	margin-bottom: 8px;
    	
}
main.stranded .case-studies .mobile-cards .card .card-content p {
	/*font-size: 1.3rem;*/
}

main.stranded .case-studies .card .description::after {
	content: " Click to read more…";
	color: #3990a3;
	font-weight: 700;
	/*display: block;*/ /*force to new line */
}

@media (max-width: 500px) {
	main.stranded .case-studies .mobile-cards .card .card-content {
		padding: 6px;
	}
	main.stranded .case-studies .mobile-cards .card .card-content p {
		font-size: 1.3rem;
	}
	main.stranded .case-studies .mobile-cards .card .card-title {
		font-size: 1.9rem;
		margin-bottom: 5px;
	}
}

/* NEW ICON */

#state-comparison-fixed-button::after {
	content: "";
    transition: opacity .2s ease, left .2s ease;
    opacity: 0;
    left: 0;
}
#state-comparison-fixed-button > div {
	width: 40px;
    height: 40px;
    position: fixed;
    z-index: 999;
    left: 10px;
    top: 105px;
    /*transition: left .2s ease .2s, top .2s ease .2s;*/
}
#state-comparison-fixed-button > div > div {
	border: 1px solid #3fb0bc;
	border: 1px solid #333;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3fb0bc;
    color: #333;
    font-size: 16px;
    background-color: transparent;
    transition: border-radius .2s ease;
}

.modal-trigger .state-icon {
	font-size: 2.4rem;
    top: 6px;
    position: relative;
}
#state-comparison-fixed-button > div > div .state-icon {
	font-size: 2.4rem;
    top: 3px;
    position: relative;
}
#state-comparison-fixed-button:hover > div > div {
    color: #3fb0bc;
    border-color: white;
    border-radius: 6px;
    background-color: #ffffff;
}
#state-comparison-fixed-button:hover::after {
    content: "See Your State Policy";
    color: #333;
    position: fixed;
    left: 22px;
    top: 105px;
    padding: 10px 16px 10px 28px;
    background-color: #ffffff;
    /*background-color: transparent;*/
    z-index: 998;
    /*border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;*/
    border-radius: 6px;
    opacity: 1;
}

/* END NEW ICON */

#download-report::after {
	content: "";
    transition: opacity .2s ease, left .2s ease;
    opacity: 0;
    left: 0;
}
#download-report > div {
	width: 40px;
    height: 40px;
    position: fixed;
    z-index: 999;
    left: 10px;
    top: 60px;
    /*transition: left .2s ease .2s, top .2s ease .2s;*/
}
#download-report > div > div {
	border: 1px solid #3fb0bc;
	border: 1px solid #333;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3fb0bc;
    color: #333;
    font-size: 16px;
    background-color: transparent;
    transition: border-radius .2s ease;
}
#download-report:hover > div > div {
    color: red;
    border-color: white;
    border-radius: 6px;
    background-color: #ffffff;
}
#download-report:hover::after {
    content: "Download Full Report";
    color: #333;
    position: fixed;
    left: 22px;
    top: 60px;
    padding: 10px 16px 10px 28px;
    background-color: #ffffff;
    /*background-color: transparent;*/
    z-index: 998;
    /*border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;*/
    border-radius: 6px;
    opacity: 1;
}
@media (max-width: 768px) {
  #download-report > div {
	top: 9px;
    left: 75px;
    width: 32px;
    height: 32px;
    z-index: 1040;
  }
  #download-report::after {
  	left: calc(75px + 2px);
  }
  #download-report:hover::after {
    top: 9px;
    left: calc(75px + 12px);
    z-index: 1039;
    padding: 6px 16px 6px 20px;
  }
  #state-comparison-fixed-button > div {
	top: 9px;
    left: 115px;
    width: 32px;
    height: 32px;
    z-index: 1038;
  }
  #state-comparison-fixed-button::after {
  	left: calc(75px + 2px);
  }
  #state-comparison-fixed-button:hover::after {
    top: 9px;
    left: calc(115px + 12px);
    z-index: 1037;
    padding: 6px 16px 6px 20px;
  }
}

main.stranded button.st-pol-cats {
	margin: 3em 0 3em 0;
	border: 1px solid #2c7179;
	border-radius: 6px;
	background-color: white;
	color: #2c7179;
	width: 100%;
	font-size: 1.5em;
}
main.stranded button.st-pol-cats .fa {
	color: #333;
}

#solutions-table-wrapper {
	overflow: auto;
	background-color: #fafafa;
	height: calc(var(--max-height-modal, 0) - 100px);
	text-align: center;
	margin-bottom: 20px;
}
#solutions-table-wrapper table {
	margin-bottom: 0;
}
#solutions-table-wrapper table thead {
	background-color: #fafafa;
}
#solutions-table-wrapper table tbody th {
	font-weight: normal;
	text-align: center;
}
#solutions-table-wrapper table tbody tr.total th, #solutions-table-wrapper table tbody tr.total td {
	border-top: 1px solid #333;
}

#solutions-table-wrapper table thead tr th {
	text-align: center;
	border-left: none;
}

#solutions-table-wrapper table tbody tr td {
	/*border-left: 1px solid #ddd;*/
}

@media (max-width: 992px) {
	#solutions-table-wrapper {
		margin-bottom: 42px;
	}
}}

.sandbar {
	background-color: #D9CA7C;
	width: 100%;
	height: 50px;
    border-radius: 40% / 60%;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	position: relative;
	top: 0;
	left: 0px;
	padding: 0;
	margin: auto;
}
main.stranded a {
	color: #98e3f1;
}
main.stranded a:hover, main.stranded a:active {
	color: #dbf9ff;
}
main.stranded .introduction.sand {
	background-color: #D9CA7C;
}
main.stranded .introduction.sand.border {
	padding-top: 75px;
}
main.stranded .introduction.border {
	padding-left: 0;
	padding-right: 0;
}
main.stranded .introduction.content.solutions {
	padding-top: 0;
}
main.stranded .introduction.no-pad {
	padding-top: 0;
	padding-bottom: 0;
}

main.stranded .intro-arrow {
	position: relative;
    top: -50px;
    font-size: 50px;
    text-align: center;
}
main.stranded .intro-arrow a {
	color: rgba(255,255,255,.8);
    display: inline-block;
    position: relative;
    animation: mymove 2s ease-in-out forwards;
    animation-iteration-count: infinite;
    -webkit-animation: mymove 2s;
    -webkit-animation-iteration-count: infinite;
    margin-top: 35px;
}
@keyframes mymove {
	from { top: 0px; opacity: 0; }
	50% { opacity: 1; }
	to { top: 50px; opacity: 0; }
}
@-webkit-keyframes mymove { /* Safari and Chrome */
	from { top: 0px; opacity: 0; }
	50% { opacity: 1; }
	to { top: 50px; opacity: 0; }
}

#industry-with {
	transition: 1s;
}
#industry-without {
	position: absolute;
    top: 0;
    width: 100%;
}

@media (min-width: 992px) {
	.modal-close i.material-icons {
	    padding-right: 20px;
	}
}

.reportlink {
	padding: 15px;
}

.published {
	margin: 50px 0 50px 0;
    padding: 10px 0 10px 0;
    font-style: italic;
    opacity: .75;
    font-size: 1.1em;
    border-top: 1px solid #333;
}

/*main.stranded p.proof {
	opacity: 0;
}*/