/* https://github.com/sursly/leaguemono */
@font-face {
	font-family: LeagueMono;
	font-style: normal;
	font-weight: 100;
    src: url(LeagueMono-UltraLightNormal.woff);
}
@font-face {
	font-family: LeagueMono;
	font-style: normal;
	font-weight: 200;
	src: url(LeagueMono-ThinNormal.woff);
}
@font-face {
	font-family: LeagueMono;
	font-style: normal;
	font-weight: 300;
	src: url(LeagueMono-LightNormal.woff);
}
@font-face {
	font-family: LeagueMono;
	font-style: normal;
	font-weight: 400;
	src: url(LeagueMono-RegularNormal.woff);
}
@font-face {
	font-family: LeagueMono;
	font-style: normal;
	font-weight: 500;
	src: url(LeagueMono-MediumNormal.woff);
}
@font-face {
	font-family: LeagueMono;
	font-style: normal;
	font-weight: 600;
	src: url(LeagueMono-SemiBoldNormal.woff);
}
@font-face {
	font-family: LeagueMono;
	font-style: normal;
	font-weight: 700;
	src: url(LeagueMono-BoldNormal.woff);
}


@font-face {
    font-family: 'Gotham SSm';
    src: url('GothamSSm-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham SSm';
    src: url('GothamSSm-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham SSm';
    src: url('GothamSSm-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face{
	font-family: 'Gotham Narrow';
    src: url('GothamNarrowSSm-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face{
	font-family: 'Gotham Narrow';
    src: url('GothamNarrowSSm-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face{
	font-family: 'Gotham Narrow';
    src: url('GothamNarrowSSm-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/*@import url('https://fonts.googleapis.com/css?family=Noto+Serif');*/


/* House red: rgb(228, 46, 0)  Brand red: rgb(250, 70, 22); */

html, body {
	font-size: 16px;
}
body{
	font-family: 'LeagueMono', sans-serif;
	font-weight:300;
	background-color: #eeeee8;
	padding-top: 3rem;

}

a, .clickable {
	color: rgb(250, 70, 22);
}

.clickable {
	text-decoration: underline;
	cursor:pointer;
}

h1, h2, h3 {
	font-family: 'Gotham Ssm', sans-serif;
	font-weight: 400;

}
h1 {
	font-weight: 300;
	font-size: 3.5rem;
	text-transform: uppercase;
}
h2 {
	font-size: 2.75rem;
}
h3 {
	font-size: 2rem;
}

h4, h5, h6 {
	font-family: 'LeagueMono', serif;
	font-weight: 600;
	line-height: 1.2em;
	margin: 0.25em 0;
}

h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}

p {
	line-height: 1.15em;
}

strong {
	font-weight: 700;
}




#main-header {
	position: fixed;
	width: 100%;
	height: 3rem;
	box-sizing: border-box;
	top: 0;
	left: 0;;
	background-color: black;
	overflow: hidden;
	z-index: 9999;
}


#main-header h1 {
	color: white;
	font-size: 1.5em;
	line-height: 3rem;
	font-weight: 200;
	margin-left: 1rem;
}
#main-header h1 a {
	color: inherit;
	text-decoration: none;
}

#nav-toggle {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	width: 1.5rem;
	height: 2rem;
	background: no-repeat center center url('../images/menu.svg');
	background-size: contain;
	display: none;
}
#main-header.vis #nav-toggle {
	background-image: url('../images/cross_white.svg');
}

#main-nav {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 30rem;
	height: 2rem;
	display: flex;
	font-family: 'Gotham Ssm', sans-serif;
	font-weight: 300;
	line-height: 2rem;
	font-size: 1.25rem;
	justify-content: flex-end;
}
#main-nav li {
	font: inherit;
	position: relative;
	padding: 0 1.5rem;
	cursor: pointer;
}
#main-nav a, #main-nav span {
	color: white;
	text-decoration: none;
	box-sizing: border-box;
	transition: background-color 0.25s;
	font: inherit;
}
#main-nav a:hover, #main-nav span:hover {
	color: rgb(250, 70, 22);
}
#main-nav a.active{
	border-bottom: 1px solid rgb(250, 70, 22);
}
#main-nav .favecount {
	display: inline-block;
	font-family: 'Gotham Narrow';
	font-size: 0.6em;
	text-align: center;
	color: black;
	font-weight: 700;
	background-color: rgb(250, 70, 22);
	border-radius: 50%;
	line-height: 2em;
	width: 2em;
	position: absolute;
	right: -0.5em;
	top: 0;
}


#main-footer{
	background:black;
	color:white;
	display: block;
	margin-top: 5em;
	font-family: 'Gotham Narrow';
	padding: 2rem 1rem;
	font-size: 0.825rem;
}
#main-footer a {
	color: #f4f4f4;
}
#main-footer p {
	line-height: 1.25em;
}
#main-footer h6 {
	margin-top: 1rem;
}

#main-footer > div {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-top {
	display: flex;
}
.footer-logos {
	width: 30%;
}
.footer-nav {
	width: 70%;
	text-align: right;
}

.footer-logo {
	text-decoration: none;
}
.footer-logo:first-of-type {
	margin-right: 2rem;
}

#main-footer div {
	margin-bottom: 2rem;
	line-height: 3rem;
}

.footer-nav-item {
	display: inline-block;
	margin-left: 1em;
}

.mobile-logo {
	display: none;
	height: 5.5rem;
	width: 6rem;
}


.footer__acknowledgment {
    font-size: 1.4rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.hide-visually {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}



.beta{
	font-family: 'Gotham Narrow';
	font-weight: 500;
	background: rgb(250, 70, 22);
	position: absolute;
	box-sizing: border-box;
	left: 0;
	top: 3rem;
	width: 100%;
	padding: 1rem;
	background: #d4d4ce url('../images/stripes_angled_white.svg');
	background-size: 60px;
	text-align: center;
}



#login-window {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #eeeee8;
	z-index: 9991;
	padding-top: 4rem;
	display: none;
}
#login-window.vis {
	display: block;
}
#login-window iframe {
	width: 100%;
	height: calc(100% - 5rem);
	max-width: 500px;
	display: block;
	margin: 0 auto;
}
.loginClose {
	position: fixed;
	right: 2rem;
	top: 4rem;
	width: 2rem;
	height: 2rem;
	background: url('../images/cross_black.svg') no-repeat center right;
	cursor: pointer;
}



#search-form {
	margin-bottom: 2em;
}
#site-search {
	font: inherit;
	font-size: 2em;
	width: 100%;
	line-height: 2em;
	background: rgba(0,0,0,0.1) repeat-x url('../images/stripes_angled_white.svg');
	border: none;
	border-bottom: solid 2px red;
	border-radius: 0;
	margin-top: 1em;
	padding: 0 0.25em;
	box-sizing: border-box;
}
#site-search::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: black;
}
#site-search::-moz-placeholder { /* Firefox 19+ */
	color: black;
}
#site-search:-ms-input-placeholder { /* IE 10+ */
	color: black;
}
#site-search:-moz-placeholder { /* Firefox 18- */
	color: black;
}
#site-search::placeholder {
	color: black;
}

.searchRadios{
	font-weight: 400;
	columns:2;
	column-width: 180px;
	margin: 0.5em 0;
}

.searchRadios div{
 break-inside: avoid;
}

.searchRadios > div:nth-of-type(4) {
	-webkit-column-break-before: always;
	column-break-before: always;
}

.searchRadios input{
	visibility: hidden;
	position:fixed;
}

.searchRadios label{
	background: #D8D8D8;
	cursor: pointer;
	margin: 0.25em 0;
	padding:0.5em;
	display:inline-block;
}
.searchRadios input:checked + label{
  background-color: rgb(250, 70, 22);	
}

#search-form .btn.reset{
	background-color:#d8d8d8;
	color:black;
}



#map{
	width:100%;
	/*height:calc(100vh - 3em);*/
	height:75vh;
}
#map.list {
	height: 50vh;
}
.singleItem #map {
	height: 20em;
	margin: 1em 0;
}

.placemarker {
	/* fill: url('#bg_marker'); */
	fill: black;
	stroke: none;
}
.placemarker.select {
	fill-opacity: 0.8;
	fill: rgb(250, 70, 22);
}
.geoPhoto {
	fill: rgb(250, 70, 22);
}

.spoolMarkerPopup{
	font-family: 'LeagueMono';	
}

.spoolMarkerPopup .leaflet-popup-content-wrapper{
	border-radius:0;
}

ul.places {
 	margin: 1em;
 	columns: 3;
 	column-width:300px;
 	
 }

 ul.places li{
 	display:block;
 	margin-bottom:1em;
 	break-inside: avoid;
 }



.home-bg{
	/* background-image: url('../images/homebg-tile.jpeg');
	background-repeat: repeat; */
	background: #d4d4ce url('../images/stripes_angled_white.svg');
	background-size: 60px;
	z-index:-1;
	width: 100%;
	height: 100vh;
	position:fixed;
	top:0;
	/* background-size:50% 50%; */
	opacity:0.7;
}

#home-carousel{
	position: relative;
	width: 100%;
	height:100vh;
	overflow: hidden;
	border-bottom: solid 1px white;
	background: rgb(250, 70, 22) url('../images/stripes_angled.svg');
	background-size: 80px;
	margin-top: -3rem;
	perspective: 600px;
}

.pangroup {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 140vh;
	transform-style: preserve-3d;
	padding-top: 20vh;
}
.pangroup.intro {
	transition: transform 50s linear;
	transform: translate3d(0, -170vh, 0);
}

.pangroup.reset {
	transition: none;
	transform: translate3d(0, 90vh, 0);
}
.pangroup.pan {
	transition: transform 90s linear 7s;
	transform: translate3d(0, -170vh, 0);
}
.carousel-item {
	display: inline-block;
	width: calc(20vw - 1.5rem);
	height: auto;
	padding: 0.5rem;
	margin: 0 0.25rem;
	background-color: white;
	box-shadow: rgba(0,0,0,0.4) 0 4px 8px;
}

#carousel-mask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,1);
	transform: translateZ(300px);
	transition: background-color 5s;
}
#carousel-mask.fade {
	background-color: rgba(0,0,0,0);
}
#carousel-mask.hide {
	display: none;
}




.explainer{
	background:white;
	width:80%;
	max-width: 44rem;
	margin: 2em auto;
	font-family: 'Gotham Narrow';
	font-weight: 300;
	font-size:1.2em;
	line-height: 1.2em;
	box-sizing: border-box;
	border: 1px solid rgba(0,0,0,0.15);
	/* padding:1em; */
}
.explainer.intro {
	position: absolute;
	top: calc(50vh - 10rem);
	left: calc(50vw - 22rem);
	box-shadow: rgba(0,0,0,0.3) 0 18px 48px;
	padding: 0;
	border: none;
	padding-top: 1rem;
}
.explainer.recent{
	margin-top:3em;
	margin-bottom: 1em;
}

.explainer .bigger{
	font-weight: bold;
}


.explainer h2{
	margin: 1rem 0 1rem 0;
	font-family: 'Gotham Narrow', sans-serif;
	font-weight: 600;
	text-align: center;
	line-height: 1.0em;
}

.explainer p {
	padding: 0 1em 1em;
}
.explainer p:last-of-type {
	margin: 0;
}
.explainer .arrow {
	font-family: 'LeagueMono';
	font-weight: 500;
	color: white;
	text-align: center;
	background: no-repeat url('../images/chevron_right_white.svg') right center, #525251 repeat-x url('../images/stripes_angled.svg');
	background-size: auto 60%, 90px;
	height: 3rem;
	line-height: 3rem;
	transition: background-color 0.5s;
	cursor: pointer;
}
.explainer .arrow:hover {
	background-color: rgb(250, 70, 22);
}
.explainer.intro .arrow {
	background: no-repeat url('../images/arrow_down_white.svg') center center, #525251 repeat-x url('../images/stripes_angled.svg');
	background-size: auto 80%, 90px;
}
.explainer .arrow a {
	color: white;
	display: inline-block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}


.home-links {
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}
.tab {
	flex: 1;
	margin: 0 0 0.25em 1rem;
	padding: 1em;
	text-align: center;
	font-family: 'LeagueMono';
	font-size: 1.2rem;
	line-height: 1.2em;
	color:white;
	font-weight: 600;
	background: rgb(250, 70, 22) repeat-x url('../images/stripes_angled.svg');
	background-size: 90px;
	box-sizing: border-box;
	transition: background-color 0.5s;
	cursor: pointer;
}
.tab:last-child {
	margin-right: 1rem;
}
.tab:hover {
	background-color: #525251;
}
.stories.tab {
	margin: 1rem;
}



.recentItems{
	padding:0.5em;
	text-align:center;
	display:flex;
	align-items: flex-start;
}
.recentItems.home {
	background: #d4d4ce url('../images/stripes_angled.svg');
	background-size: 80px;
}
.recentItems.new_tagged {
	align-items: stretch;
}

.recentItems div.wrapper{
		width: calc(33.3333% - 1em);
		min-width: calc(20% - 1em);
		padding: 0.5em;
		background: white;
		margin: 0.5em;
		box-sizing: border-box;
}

.recentItems .item{
	width:100%;
	position:relative;
	margin-bottom: 0.5em;
}

.recentItems .tagCloud li, .recentItems .tagCloud li:hover{
	background-color: #eeeee8;
	font-size:90%;
	line-height: 1.3;
    padding: 0.5em 0.6em;
}

.recentGeo #map{
	height:50vh;
	width: calc(100% - 2rem);
	border: 1em solid white;
	border-bottom: 1em solid white;
	margin: 0 1rem;
	box-sizing: border-box;
}

.geoThumb{
	width:180px;
}

.recentStory{
	margin-top: 0.5em;
}

.recentStory li.itemThumb{
	max-width: 100%;
	margin: 1em auto;
	padding: 0;
}

.recentStory p, .story-text p, p.thumb-caption {
	text-align:left;
	line-height:1.25;
	font-size:1.0em;
	font-family: 'Gotham Narrow', sans-serif;
	font-weight: 400;
	margin: 0.75em 0;
}

.new_stories {
	display: block;
	columns: 5;
	padding: 1rem;
	padding-bottom: 0;
	overflow: hidden;
	box-sizing: border-box;
}
.new_stories.stories {
	max-height: none;
}
.recentItems.new_stories div.wrapper {
	display: inline-block;
	min-width: auto !important;
	width: 100% !important;
	margin: 1rem 0 0 0;
}
.recentItems.new_stories div.wrapper:first-child {
	/* margin-top: 0; */
}

.stories.recentItems.new_stories div.wrapper:first-child {
	margin-top: 1rem;
}
.new_stories div.wrapper {
	-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
}
.new_stories .story-text {
	padding: 0;
}
.new_stories h6 {
	margin-top: 1em;
}

.home.new_stories {
	height: 34rem;
	padding-top: 0;
}
.home.new_stories div.wrapper {
	height: 32rem;
	overflow: hidden;
	margin: 0;
	margin-top: 1rem;
	border-bottom: solid 0.5rem white;
	position: relative;
}
.home.new_stories .story-text {
	max-height: 10rem;
	overflow: hidden;
	padding-bottom: 0;
	border-bottom: solid 1rem #eeeee8;
}
.home.new_stories .more {
	display: block;
	position: absolute;
	box-sizing: border-box;
	bottom: 0;
	width: 100%;
	padding-right: 1rem;
	padding-top: 0.25em;
	background-color: white;
	text-align: right;
}
.home.new_stories .more a {
	color: inherit;
	text-decoration: none;
}




.single-wrap {
	max-width: 1100px;
	margin: 0 auto;
}

.singleItem .cols {
	display: flex;
	padding: 1em;
	position: relative;
}

.singleItem .col {
	width: 100%;
	min-height: 20em;
}
.favesView .rightcol {
	padding-top: 0.25rem;
}
.favesView .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #eeeee8ee;
	z-index: 9999;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.singleItem .photoinfo {
	max-width: 33%;
}

.singleItem .photofeature {
	padding-left: 1em;
	padding-right: 0.25em;
}


.singleItem h6, .singleSpool h6 {
	line-height: 1.2em;
	margin: 0.75em 0;
}


hr.striped {
	height: 2rem;
	background: repeat-x url('../images/stripes_angled.svg');
	background-size: 4rem;
	margin: 1em 0;
	border: none;
}


.title {
	padding: 1rem ;
	margin-bottom: 1rem;
}
.col .title {
	padding: 0;
}
.title.top {
	margin-top: 2rem;
}

.title h2 {
	font-size: 3rem;
}
.title h6 {
	max-width: 62rem;
}


.spool, .singleSpool {
	margin-bottom: 1.5rem;
}
.spool h6 {
	font-weight: 500;
	margin: 0 1rem 0.5rem;
	padding-left: 0.25rem;
	line-height: 2em;
	background-color: white;
	/* border-bottom: solid 1px #333; */
}
.spool a {
	font-weight: 700;
}
.spool h6 span {
	float: right;
	background: no-repeat 0.25em 0.625em url('../images/chevron_down.svg');
	background-size: 1em;
	padding-left: 1.75em;
	padding-right: 0.25rem;
	cursor: pointer;
}
.spool h6 span.all {
	background-image: url('../images/chevron_up.svg');
}
.spool h6 span:hover {
	background-color: black;
	color: white;
	background-image: url('../images/chevron_down_white.svg');
}
.spool h6 span.all:hover {
	background-image: url('../images/chevron_up_white.svg');
}

.spool ul, .singleSpool ul, .searchResults ul, .singleItem ul {
	padding: 0.5rem;
	/* text-align: center; */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
corley-item .imagewrapper{
	display: block;
	position: relative;
}

corley-item a:hover ~ .fave-btn{
	display:block;
}

corley-item .address{
	font-size:0.8em;
	margin: 0.5em 0 0.25em;
}

corley-item .flags{
	position:absolute;
	top:2%;
	left:2%;
	width: 50%;
	height: 10%;
	text-align: left;
	max-height: 2rem;
	display: flex;
}

corley-item .flags span{
	display:inline-block;
	background: url('../images/tag_striped.svg?v=5') no-repeat center center;
	background-size: contain;
	width: 16%;
	height: 100%;
}

corley-item .flags .storyicon {
	background-image: url('../images/story_striped.svg?v=3');
	width: 20%;
}


.itemThumb {
	position: relative;
	padding: 4px;
	box-sizing: border-box;
	vertical-align: middle;
	margin: 0.5rem;
	background-color: white;

	flex: 1;
	min-width: calc(20% - 1rem);
	max-width: calc(25% - 1rem);
}
.singleItem ul {
	padding-left: 0;
	padding-right: 0;
}
.singleItem .itemThumb {
	min-width: calc(33.333% - 1rem);
	max-width: calc(50% - 1rem);
}
.shareView.singleItem .itemThumb {
	min-width: calc(50% - 1rem);
	max-width: calc(100% - 1rem);
}

.spoolHeaderWrapper{
 display: flex;
}

.spoolItems h6{
	width:50%;
}

.spoolItems h6.selected{
	color:rgb(250, 70, 22);
}

.spoolItems h6:last-of-type{
	text-align: right;
}

.spoolItems p {
	margin: 0.5em 0;
}
.spoolItems ul {
	position: relative;
	padding: 0;
	background: #eeeee8cc url('../images/stripes_angled.svg');
	background-size: auto 60px;
	border-left: solid 2em #00000055;
	border-right: solid 2em #00000055;
}
.spoolItems li.nav {
	position: absolute;
	left: -1.9em;
	top: calc(50% - 5em);
	width: 2em;
	height: 10em;
	background:  url('../images/chevron_left_white.svg') no-repeat center center;
	background-size: 80%;
	cursor: pointer;
}
.spoolItems li.nav:last-of-type {
	left: auto;
	right: -1.9em;
	background-image: url('../images/chevron_right_white.svg');
}

.itemThumb.spoolThumb {
	min-width: calc(20% - 1rem);
}
.spoolThumb.selected {
	border: solid 1px #666;
}

.similarItems ul {
	padding: 0;
}
.itemThumb.similarThumb {
	min-width: calc(100% - 1rem);
}

.thumb-caption {
	font-size: 0.825em;
	margin: 0.5em;
}

.story-pages {
	margin-top: 3rem;
}
.page-num {
	font-size: 1.25rem;
	line-height: 2em;
	flex: 1;
	text-align: center;
	background-color: white;
	margin: 0.5rem 0.5rem 0.5rem 0;
	cursor: pointer;
}
.page-num:nth-of-type(2) {
	margin-left: 0.5rem;
}
.page-num:hover {
	background-color: rgb(250, 70, 22);
	color: white;
}
.page-num.selected {
	background-color: #333;
	color: white;
	cursor: default;
}
.page-num a, .story-pages .nav a {
	display: inline-block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}





.fave-btn {
	position: absolute;
	top: 2%;
	right: 2%;
	width: 8%;
	max-width: 2rem;
	height: 12%;
	background: url('../images/heart_striped.svg?v=1') no-repeat left top;
	/* display: none; */
	cursor: pointer;
	opacity: 0.8;
}

.fave-btn:hover, .itemThumb a:hover ~ .fave-btn, .bigPhoto:hover .fave-btn {
	display: block;
}

.fave-btn.faved {
	background-image: url('../images/heart_red.svg');
	display: block;
}
.favesView .fave-btn {
	background-image: url('../images/cross_black.svg');
}

.bigPhoto .fave-btn{
		top: 1.0em;
		right: 1.0em;
}

.favesView .btn {
	width:50%;
}
.favesView .btn.fullwidth {
	width: calc(100% - 1.2rem);
}
.favesView .leftcol .btn.fullwidth {
	width: calc(100% - 2.7rem);
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.favesView h3 {
	margin-top: 1em;
}

.singleSpool .info{
	background:white;
	padding:1em;
	margin:0 1em 1.75em;
}

.singleSpool .info h4{
	margin:1em 0;
	font-weight:300;
	/*font-size:16px;*/
}


img{
	width: 100%;
	display:block;
}

.bigPhoto {
	background-color: white;
	padding:0.75em;
	box-sizing: border-box;
	width: 100%;
}
.photowrap {
	max-width: 125vh;
	margin: 0 auto;
}
#photoZoom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 84.25%;
	background: no-repeat;
	background-size: 400%;
	display: none;
}
#photoZoom.vis {
	display: block;
}
.zoom-btn {
	position: absolute;
	top: 1em;
	left: 1em;
	width: 2em;
	height: 2em;
	background: no-repeat center center url('../images/icon_magnify.svg?v=1');
	cursor: pointer;
}
#photoZoom.vis ~ .zoom-btn {
	background-image: url('../images/icon_magnify_off.svg?v=1');
}
.sticky, .sticky-bottom {
	position: -webkit-sticky;
	position: sticky;
	top: 68px;
}
.sticky {
	/* max-width: 100vh; */
	max-width: 100vh;
	margin: 0 auto;
}
.sticky-bottom {
	bottom: 0;
}


.photo-meta h2 {
	font-family: 'LeagueMono';
	font-weight: 700;
}

.col .tagCloud {
	padding-left: 0;
}



.add-text {
	font-size: 1.25em;
	font-family: 'LeagueMono';
	padding: 0.25em;
	margin: 0.3em 0;
	border: 1px solid black;
	border-radius: 0;
}
textarea.add-text {
	height: 5em;
}

.subscribeBlock {
	padding: 2rem;
}
.storyFrame {
	width: 100%;
	height: 200vh;
}
.subscribeBlock .storyFrame {
	height: 25em;
}
.storyClose {
	background: url('../images/cross_black.svg') no-repeat center right;
	text-align: right;
	padding-right: 1.5em;
	cursor: pointer;
}
.story {
	margin: 1rem 0;
}
.story-text {
	padding: 1em;
	background-color: white;
	overflow: hidden;
}
.home .story-text{
	padding: 0.5em;
	background-color: #eeeee8;
}
.story-caption {
	text-align: right;
	margin-top: 0.5em;
}
.story hr.striped, hr.striped.thin {
	height: 0.2rem;
}
.story ul {
	padding: 0;
}
.story li.itemThumb.similarThumb {
	min-width: 100%;
	padding: 0.5em;
}

.long {
	width: calc(100% - 0.625em);
}
.short {
	width: 4em;
}
.favesView .long {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.add-address div{
	margin: 1em 0;
}

.address-input label {
	display: block;
}

.locality {
	text-decoration: none !important;
}
.locality:not(:first-of-type)::before {
	content: " or ";
	color: black;
}

.confirm-address .btn, #search-form .btn{
	display: inline-block;
	width: calc(50% - 1.6rem);
}

.add-tags {
	margin: 0.5em 0;
}

.add-tags input[type=checkbox]{
	transform:scale(2);
	-webkit-transform:scale(2);
	padding:10px;
}

.btn {
	display: block;
	font-size: 1.25em;
	font-family: 'LeagueMono';
	background-color: rgb(250, 70, 22);
	color: white;
	line-height: 1.75em;
	margin: 0;
	padding: 0 0.5em;
	text-align: center;
	cursor: pointer;
}
.btn:hover, .btn.active {
	background-color: black;
}
.share-btn .btn {
    margin-bottom: 0.5rem;
}

.save-block {
	background-color: #eeeee8dd;
	padding: 0.5em 0;
}



.tagCloud .btn {
	vertical-align: middle;
	width: 10em;
	margin-top: 0.25em;
}

.add-tags h3 {
	font-size: 1.5em;
	margin-top: 1rem;
}
.roofShape {
	display: flex;
	flex-wrap: wrap;
}
.roofpic {
	position: relative;
	width: 50%;
	height: 0;
	padding-top: 36%;
	background: rgb(242, 199, 163) no-repeat center top;
	background-size: 100%;
	background-blend-mode: multiply;
	box-sizing: border-box;
	transition: background-color 0.25s;
}
.roofpic.other {
	width: 100%;
	padding-top: 15%;
	background: rgb(242, 199, 163) url('../images/stripes_angled.svg');
	background-size: 60px;
}
.roofpic:hover {
	background-color: white;
}
.roofpic .pic {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background: no-repeat center top,
				url('images/stripes_angled.svg');
	background-size: 100%, 69px;
}
.roofpic h6 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	padding-left: 0.5em;
	margin: 0;
	background-color: black;
	color: white;
	line-height: 1.5em;
}
.plus-tag {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent no-repeat center center;
	background-blend-mode: multiply;
	cursor: pointer;
}
.plus-tag:hover {
	background: rgba(228, 46, 0, 0.7) no-repeat center center url('../images/plus_black.svg');
	background-size: 20%;
}
.roofpic.other .plus-tag {
	background: no-repeat center 25% url('../images/roof-other.svg');
	background-size: 8%;
}
.roofpic.other .plus-tag:hover {
	background: rgba(228, 46, 0, 0.7) no-repeat center 25% url('../images/plus_black.svg');
	background-size: 8%;
}

/*CHECKBOX TOGGLE*/

span.toggleLabel{
	vertical-align: bottom;
	padding:8px 0;
	display: inline-block;
}

.toggleWrapper{
	margin-bottom:0.8em;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}


input:checked + .slider {
  background-color: rgb(250, 70, 22);
}

input:focus + .slider {
  box-shadow: 0 0 1px rgb(250, 70, 22);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}




.facetframe, .correlationframe {
	/*width: 90%;*/
	display: block;
	margin: 80px auto;
	padding:0 1em;
	box-sizing: border-box;
	/*max-width: 1200px;*/
	min-height:400px;
	position:relative;
}

.correlationframe{
	text-align: center;
}

.correlation-image{
	padding:1em 2em;
	background:white;
	margin:20px auto;
	position:relative;

}

.facetframe .wrap{
	display:flex;
	align-items: flex-start;
}

.facet-graph{
	width: 45%;
	/*min-width: 400px;*/
	padding-right: 20px;
}
.facet-graph div{
	height:35px;
	background-color: white;
	font-size: 1.0em;
	font-weight: 600;
	padding:4px;
	box-sizing: border-box;
	position:relative;
	margin-bottom:0.3em;
	cursor:pointer;
}

.facet-graph div.focus{
	background: repeat-x url('../images/stripes_angled.svg');
	background-size: 90px;
	background-color: rgb(250, 70, 22);	
	/*color:white;*/
}

.facet-graph span.tag{
	position: absolute;
	left:100%;
	padding-left:10px;
	font-weight: 300;
	white-space: nowrap;
}

.tag-tab:first-child span.tag{
	position: absolute;
	left:auto;
	right: 3px;
	background: white;
	padding: 2px;
}

.facet-graph span.facetcount{
	background: white;
	color:black;
	padding: 3px;
	position:absolute;
	font-weight:300;
	font-size:1.0em;
	bottom:3px;
	left:3px;
}


.facet-image{
	padding:1em 2em;
	background:white;
	position:relative;
	width:55%;
	box-sizing: border-box;
}

.facet-image img{
	width:100%;
}



.itemlinks{
	font-size: 75%;
	/*padding:0.5em;*/
	/*position:absolute;*/
	/*bottom:10px;*/
	/*right:10px;*/
 /*color:white;*/
	/*z-index:99;*/
}

.nextbutton{
	position: absolute;
	right: 0.5em;
	padding-top: 0.25em;
	font-size: 75%;

}



.facet-image .nav, .correlation-image .nav{
	position: absolute;
	top: 45%;
	font-size: 2em;
	cursor:pointer;
}

.nav.prev, .nav.next {
	width: 1em;
	height: 1em;
	background: no-repeat center center;
	background-size: 80% auto;
}
.nav.prev{
	left:0;
	background-image: url('../images/chevron_left_black.png');
}
.nav.next{
	right:0;
	background-image: url('../images/chevron_right_black.png');
}





.correlation-bar{
	background: white;
	height:30px;
	padding:10px;
	
	margin:0.3em 0;
	font-size:75%;
}

.correlationframe h3, .facetframe h3{
	font-size:150%;
	margin:0.5em 0;
}



.correlation-graph{
	margin-bottom: 1em;
}

.crl{
	height:50px;
	display:inline-block;
	padding:0.3em;
	margin-top:0.3em;
	position:relative;
	box-sizing: border-box;

}

.crl.focus{
	background-color: rgb(250, 70, 22);
}

.crl span{
	position: absolute;
	background: rgba(255,255,255,0.8);
	padding: 3px;
	left: 10px;
	top: 9px;
	/*margin-left:-50%;*/
}

.base{
	background-color: #888;

}
.overlap{
	background: repeat-x url('../images/stripes_angled.svg');
	background-size: 60px;
	text-align: center;
	cursor:pointer;
}
.correlate{
	background-color: white;
}

/*tag cloud*/
.tagCloud{
	padding-left:1em;
}
.tagCloud ul{
	display:inline-block;
}
.tagCloud li{
	position: relative;
	display:inline-block;
	background:white;
	padding: 0 0.6em;
	margin: 0.3em 0.6em 0.3em 0;
	line-height: 2.2em;
	vertical-align: middle;
	cursor:pointer;
}

.tagCloud li.selected {
	cursor: default;
}

.tagCloud li.selected, .tagCloud li:hover {
	background-color: rgb(250, 70, 22);
}

.add-tags .tagCloud li:hover:not(.selected), .tagCloud li.clicked {
	background:#ccc;
}

.tagCloud li:hover a, li a:hover, .tagCloud li.selected a, .tagCloud li.selected {
	color:white;
}

.tagCloud .clicked:hover::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 2em;
	background: black no-repeat center center url('../images/cross_white.svg');
	background-size: 1.5em;
}

.cloudLabel{
	margin: 1.5em 1em;
}

.subCloud{
	position:relative;
}

.tagCloud .showall span {
	text-transform: capitalize;
}

#explorerWarning {
	font-size: 0.8em;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	padding: 3vh 1vh;
	background-color: black;
	color: red;
	display: none;
}
#explorerWarning.vis {
	display: block;
}

@media (max-width: 1400px) {
	.recentItems div.wrapper {
		min-width: calc(25% - 1rem);
	}
	.new_stories {
		columns: 4;
	}
}

@media (max-width: 1280px) {
	.recentItems div.wrapper {
		min-width: calc(25% - 1rem);
	}
	.recentItems div.wrapper:nth-of-type(5) {
		display: none;
	}
	.new_stories {
		columns: 3;
	}
	.home.new_stories {
		height: 67rem;
	}

	#main-footer div {
		line-height: 1rem;
		margin-bottom: 3rem;
	}
	.footer-top {
		display: block;
	}
	.footer-logos {
		display: block;
		width: auto;
		text-align: center;
	}
	.footer-nav {
		width: auto;
		text-align: center;
	}
	.carousel-item {
		width: calc(25vw - 1.5rem);
	}
	.carousel-item p {
		font-size: 0.7em;
	}
}


@media (max-width: 900px) {
	#main-header.vis {
		height: 100vh;
	}
	#nav-toggle {
		display: block;
		width: 2rem;
		background-image: url('../images/menu.svg');
	}
	#main-nav {
		height: calc(100vh - 3rem);
		position: relative;
		display: block;
		top: auto;
		right: auto;
		width: 100%;
	}
	#main-nav li {
		position: relative;
		line-height: calc((100vh - 8rem) / 6);
		font-size: 4vh;
		padding: 0;
	}
	#main-nav a, #main-nav span:not(.favecount) {
		position: relative;
		display: block;
		padding-left: 1em;
	}
	#main-nav a:hover, #main-nav span:hover {
		background-color: rgb(250, 70, 22);
		color: black;
	}
	#main-nav a.active {
		border: none;
	}
	#main-nav .favecount {
		right: 0.5em;
		top: 0.5em;
	}
	#site-search {
		font-size: 2rem;
		padding: 0.5em 0;
		margin: 1em 0;
	}

	.explainer.intro {
		left: 10%;
	}

	.recentItems div.wrapper {
		min-width: calc(33% - 1em);
	}
	.recentItems div.wrapper:nth-of-type(4) {
		display: none;
	}

	.new_stories {
		columns: 2;
	}


	.singleItem .cols {
		flex-wrap: wrap;
		padding-top: 0;
	}
	.singleItem .col {
		width: 100%;
		max-width: none;
		min-height: auto;
	}
	.singleItem .photofeature {
		height: auto;
		max-width: none;
		order: 1;
		padding: 0;
	}
	.singleItem .photoinfo {
		order: 2;
	}
	.sticky {
		position: relative;
		top: 0;
	}

	.itemThumb, .singleItem .itemThumb:not(.spoolItems .itemThumb):not(.photoView .itemThumb) {
		min-width: calc(25% - 1rem);
		max-width: calc(25% - 1rem);
		margin: 0.5rem;
	}
	.spool .itemThumb:nth-of-type(5) {
		display: none;
	}

	.facet-graph, .facet-image{
		width:100%;
		display:block;
		margin: 0 auto 20px;
	}

	.facetframe .wrap{
	 display:block;
	}

	.roofpic:not(.other) {
		width: 50%;
		height: calc(32vw + 1.5em);
	}

	.title h2 {
		margin-top: 0.5em;
	}

}

@media (max-width: 740px) {
	.itemThumb, .singleItem .itemThumb:not(.spoolItems .itemThumb) {
		min-width: calc(33.333% - 1rem);
		max-width: calc(33.333% - 1rem);
	}
	.similarItems .itemThumb {
		min-width: calc(25% - 1rem) !important;
	}
	.spoolItems:not(.story-pages) {
		display: none;
	}
	.new_stories {
		columns: 2;
	}

	.recentItems div.wrapper {
		min-width: calc(50% - 1em);
	}
	.recentItems div.wrapper:nth-of-type(3) {
		display: none;
	}

	.mobile-logo {
		display: inline-block;
	}
	.mobile-logo svg {
		width: 100%;
		height: 100%;
	}
	.desktop-logo {
		display: none;
	}
	.footer-nav-item {
		display: block;
		margin-left: 0;
		margin-bottom: 1em;
	}
	.carousel-item {
		width: calc(33vw - 1.5rem);
	}
	.carousel-item p {
		display: none;
	}

	#photoZoom {
		height: 100%;
	}

}

@media (max-width: 540px) {
	.explainer.intro {
		top: 25vh;
	}
	.itemThumb, .singleItem .itemThumb {
		min-width: calc(50% - 1rem) !important;
		max-width: calc(50% - 1rem);
	}
	.new_stories {
		columns: auto;
		max-height: none;
	}
	.home.new_stories {
		height: auto;
		padding-bottom: 1rem;
	}
	.home.new_stories div.wrapper {
		height: auto;
	}
	.spoolItems .itemThumb {
		min-width: calc(25% - 1rem);
	}
	.spoolItems .itemThumb:nth-of-type(5) {
		display: none;
	}
	.searchRadios > div:nth-of-type(4) {
		-webkit-column-break-before: auto;
	}
	.footer-nav li {
		font-size: 1.25em;
		line-height: 1.75em;
	}
	.carousel-item {
		width: calc(50vw - 1.5rem);
	}
	.recentStory p, .story-text p, p.thumb-caption{
		font-size:1.1em;
	}
}
	

@media (max-width: 500px) {
	html, body {
		font-size: 12px;
	}
}

@media (max-height: 480px) {
	.explainer.intro {
		top: calc(50vh - 9rem);
	}
	.beta, .explainer.intro .bigger {
		display: none;
	}
	.recentGeo #map {
		height: 80vh;
	}
}
