/**
* Orion
**/

body,html {
    margin: 0;
    min-height: 100%;
    padding: 0;
}

body {
    background: #050404;
    color: #000000;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    text-align: center;
}

/**
* Header and navigation
**/

.site_header {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 55px 15px;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: .5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    transition: opacity .2s ease-in-out;
    z-index: 11;
}

body.mouse_away .site_header {
    opacity: 0;
}

.header_image {
    padding: 0;
    height: 40px;
    margin-right: 35px;
    float: left;
    line-height: 0;
}

.header_image img {
    width: auto;
    max-height: 50px;
    margin-top: -5px;
}

.header_text {
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    font-weight: 400;
    vertical-align: baseline;
    white-space: nowrap;
    float: left;
}

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

body:not(.mobile) .header_text a:hover {
    color: rgba(230, 34, 255, 0.88);
}

body:not(.mobile) .header_text a:active {
    color: #666;
}

.navigation {
    float: right;
    z-index: 9;
}

.navigation .following {
    color: rgba(0,0,0,0.4);
}

.navigation .set_link.active a {
    color: #f22;
}

.navigation li.active a {
    color: #cd22ff;
}

.navigation li.active {
    color: #06f;
}

.navigation span.set_name {
    color: #fff;
    font-weight: 700;
}

.navigation a {
    color: #fff;
    text-decoration: none;
}

.navigation a:hover {
    color: #de22ff;
}

.navigation a:active {
    color: #666;
}

.navigation a.set_name {
    color: #fff;
    font-weight: 700;
}

.navigation a.set_name:hover {
    color: #f22;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation li {
    display: inline-block;
    margin: 0 0 0 20px;
}

.site_header > .filter {
	color: #fff;
	float: left;
	position: relative;
	margin-left: 20px;
	z-index: 10;
}

.navigation ul > .filter {
	display:none;
}

body.open .navigation .filter {
	display: none;
}

.filter b {
    margin-right: 5px;
}

.filter a {
    border-bottom: 1px solid #fff;
    color: #fff;
    padding-bottom: 1px;
    text-decoration: none;
}

.filter a:hover {
    border-bottom: 1px solid #F22;
    color: #F22;
}

.filter a:active {
    border-bottom: 1px solid #666;
    color: #666;
}

/**
* Project navigation
**/

#project_nav {
	position: fixed;
	top: 0;
	left: 0;
	margin-left: -18px;
	margin-top: -18px;
	line-height: 0;
	pointer-events:none;
	opacity: 0;
	transition: .2s opacity ease-in-out;
	z-index: 100;
	-ms-user-select: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
}


#project_nav a {
    border: none;
    display: none;
    vertical-align: top;
    text-decoration: none;
}

#project_nav.right a.next_slide {
	display: inline-block;
}

#project_nav.left a.previous_slide {
	display: inline-block;
}

body.mouse_away #project_nav {
    opacity: 0;
}

#project_nav.active {
	opacity: 1;
}

/**
* Project Nav styles for swipe mode
**/

body.swipe_active #project_nav {
	display:none;
	margin: 0;
	position: absolute;
	pointer-events: auto;
	opacity: 1;
	height: 0;
	top: 50vh;
	margin-top: -18px;
	left: 45px;
	right: 45px;
	width: auto;
	text-align: center;
}

body.swipe_active #project_nav.dismissed {
	opacity: 0;
	pointer-events:none;
}


body.swipe_active.no_slide_content.between_projects {
	opacity: 0;
}

body.swipe_active.no_slide_content #project_nav {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

body.swipe_active.no_slide_content.between_projects #project_nav {
	opacity:0;
}

body.swipe_active #project_nav.animation {

    -webkit-animation-name: wiggle_nav;
            animation-name: wiggle_nav;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
    -webkit-animation-iteration-count: 3;
            animation-iteration-count: 3;

}

@-webkit-keyframes wiggle_nav {
    0%   {left: 45px; right: 45px;}
    50%  {left: 60px; right: 60px;}
	100%   {left: 45px; right: 45px;}
}
@keyframes wiggle_nav {
    0%   {left: 45px; right: 45px;}
    50%  {left: 60px; right: 60px;}
	100%   {left: 45px; right: 45px;}
}

body[data-pagetype="project"] #project_nav {
	display: block;
}

body.swipe_active.page_text_visible #project_nav {
	pointer-events:none;
	opacity: 0;
}


body.swipe_active #project_nav > a.previous_slide {
	display: block;
	float: left;
}

body.swipe_active #project_nav > a.next_slide {
	display: block;
	float: right;
}


#project_nav a svg path {
    transition: fill .1s ease-in-out;
}

#project_nav a.next_slide svg,
#project_nav a.previous_slide svg {
    height: 36px;
    width: 36px;
}

#project_nav a.inactive {
	display: none;
	pointer-events: none;
}

#project_nav a svg path.shape {
	fill: #fff;
}

#project_nav a svg path.outline {
	fill: #000;
	opacity: 0.2;
}

/**
* Information Footer
* holds project title, text toggle, media player and caption
**/


.information_header {
    color: #fff;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 0;
    font-size: 18px;
    line-height: 40px;
    transition: opacity .2s ease-in-out;
    position: absolute;
    z-index: 13;
    letter-spacing: .5px;
    font-size: 0;
}

.page_text_visible .information_header {
	position: fixed;
	z-index: 11;
}

.between_projects .information_header {
	opacity: 0;
	transition: none;
}

.information_header > span > * {
	font-size: 18px;
}

.project_text_visible .information_header {
	color: #000;
}

.no_slide_content.no_text_content .information_header {
	color: #fff;
}

body[data-pagetype="page"] .information_header {
	color: rgba(255,255,255,0.9);
}

body.mouse_away .information_header {
	opacity: 0;
}

.information_header .slide_numbers.first {
	margin-left: .5em;
}

.information_header .slide_numbers.first:before {
	content:"(";
}

.information_header .slide_numbers.last:after {
	content:")";
}

.information_header  .inactive {
	display: none;
}

.information_header .separator:before {
    content: " —";
}

.information_header a {
	color: #fff;
	text-decoration:none;
	border-bottom: 1px solid white;
}

.project_text_visible .information_header a {
	color: #000;
	border-bottom: 1px solid black;
}

.information_header a:hover {
	color: #F22;
	border-bottom: 1px solid #F22;
}

.information_header.inactive {
	display:none;
}

/**
* Project content area
**/

.container {
    clear: both;
    margin: 0 auto;
    padding-bottom: 0;
}

#project {
    background: #f2f2f2;
    box-sizing: border-box;
    padding: 135px 60px 90px 60px;
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    margin: auto;
    max-width: 720px;
    min-height: 100vh;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0, 1, 0, 1);
    opacity: 1;
    z-index: 11;
}

#project.inactive {
	opacity: 1;
	position: fixed;
	transform: translateY(100vh);
	transition: transform 0.2s cubic-bezier(0.4, 0, 1, 1);
}

body.no_slide_content.no_text_content #project {
	opacity: 0;
	display:none;
}

.entry {
    display: inline-block;
    max-width: 600px;
    width: 100%;
    z-index: 10;
}

.project_content {
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
}

.project_content:after {
    clear: both;
    content:" ";
    display: table;
    height: 0;
}

.project_content img {
    border: none;
    display: block;
    float: none;
    margin: 0 auto 15px;
    transition: opacity 0.2s ease-in-out;
}

.project_content img:last-child {
	margin-bottom: 0px;
}

.project_content iframe {
    border: none;
    float: none;
    margin: 0 auto 15px;
}

.project_content iframe:last-child {
	margin-bottom: none;
}

#project_media .inner .slick-slide > * {
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    float: left;
}

#project_media *.loading,
.project_content *.loading {
	opacity: 0;
}

.project_content br {
    clear: both;
}

.project_content a {
    color: #000;
    text-decoration:underline;
}

.project_content a:hover {
    color: #f22;
    text-decoration: none;
}

.project_content a:active {
    color: #666;
}

/**
*  Page content area
**/

.overlay {
	background-color: rgba(4, 4, 4, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity ease-in-out .4s;
	z-index: 13;
}

.overlay.inactive {
	opacity: 0;
}

#page > * {
	cursor: initial;
}

#page {
	box-sizing: border-box;
	cursor: pointer;
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	min-height: 100%;
	padding-top: 125px;
	padding-bottom: 125px;
	margin-top: 0;
	transition: opacity ease-in-out .4s;
	z-index: 10;
}

#page .entry {
	background: #f2f2f2;
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	max-width: 720px;
	text-align: left;
	width: 100%;
	margin: auto;
	padding: 60px 60px 60px 60px;
}

#page .project_title {
    color: #000;
    display: block;
    font-size: 18px;
    line-height: 40px;
    padding-bottom: 60px;
    text-rendering: optimizeLegibility;
}

#page.inactive{
	opacity: 0;
}

/**
* Project media area
**/

#project_media {
	cursor: pointer;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity ease-in-out .4s;
	z-index: 2;
	height: auto;
}

#project_media .dont-resize .slick-slide > * {
    margin: auto;
    display: inline-block;
    float: none;
    position: absolute;
    top: -200%;
    left: -200%;
    right: -200%;
    bottom: -200%;
}


#project_media .dont-resize .slick-slide {
    position: relative;
    height: 100%;
}


body.swipe_active #project_media {
	cursor: -webkit-grab;
	cursor: grab;
}

body.swipe_active #project_media:active {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

body[data-pagetype="project"].no_slide_content #project_media.hide_cursor,
body:not(.project_text_visible) #project_media.hide_cursor {
	cursor: url(http://cargocollective.com/_gfx/spacer.gif), auto;
}

.project_text_visible #project_media,
.page_text_visible #project_media {
	opacity:0.3;
}

#project_media.inactive {
    opacity: 0;
    pointer-events: none;
}

/**
* Slideshow in Pages
**/

.slideshow {
	display: inline-block;
}

.slideshow img {
	margin: 0;
}

.slideshow_container {
	overflow: hidden;
	cursor: pointer;
	display: block;
	margin-bottom: 15px;
	position: relative;

	/* Disable selection */
	-webkit-touch-callout: none;
	-webkit-user-select	 : none;
	-khtml-user-select	 : none;
	-moz-user-select	 : none;
	-ms-user-select		 : none;
	user-select			 : none;
}

.slideshow .slideshow_container > * {
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 1;
}

.slideshow_navigation {
	font-size: 12px;
	margin-bottom: 15px;
}


.slideshow_navigation a {
	text-decoration: none;
}


/**
* Misc text styles
**/

h1,h2,h3,h4,h5 {
    display: block;
    margin: 0 0 10px;
    max-width: 905px;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

blockquote {
    color: #666;
    margin: 0;
}

.project_content p {
    margin: 0 auto;
    padding: 0;
}

/**
* Media player & image caption holder
**/

.media_footer.active {
    display: inline-block;
}

.media_footer {
    display: none;
    text-align: center;
    margin: auto;
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 0;
    z-index: 9;
    line-height: 0;
    transition: opacity 0.2s ease-in-out;
}


.media_footer.media.active.paused a[rel="play_media"]{
	display: inline-block;
}

.media_footer.media.active.playing a[rel="pause_media"]{
	display: inline-block;
}

.media_footer a.movie_controls{
    background: rgba(0,0,0,0.7);
    display: none;
    line-height: 0;
    font-size: 0;
    margin-top: -56px;
    vertical-align: bottom;
    width: 36px;
    height: 36px;
    padding: 10px;
    text-align: center;
    transition: all .2s ease-in-out;
}

.media_footer a[rel="play_media"] svg {
    height: 36px;
    width: 36px;
}

.media_footer a[rel="pause_media"] svg {
    height: 36px;
    width: 36px;
}

.media_footer a.movie_controls svg path {
	fill: #fff
}

.media_footer .caption {
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 15px;
    vertical-align: bottom;
    margin-top: -38px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.8px;
    display: inline-block;
    transition: all .2s ease-in-out;
}

body.mouse_away .media_footer {
	opacity: 0;
}

.media_footer .caption:empty {
    display: none;
}

/**
* Project Footer
**/

.project_footer {
    clear: both;
    text-align: left;
    color: rgba(0,0,0,0.25);
    font-family:Menlo,monaco,monospace;
    font-size: 12px;
    line-height: 2;
    padding: 20px 60px 20px 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.project_footer span {
    display: inline-block;
}

.project_footer .tags span {
    display: inline-block;
    margin: 0 3px 0 0;
}

.project_footer a {
    color: rgba(0,0,0,0.25);
    cursor:pointer;
    text-decoration: none;
}

.project_footer a:hover {
    background: none;
    color: #000;
}

.project_footer a:active {
    background: none;
    color: #666;
}

.project_footer .tags span:after {
    color: rgba(0,0,0,0.15);
    content:",";
}

.project_footer .tags span:last-child {
    margin-right: 0;
}

.project_footer .tags span:last-child:after {
    content:"";
}

.project_footer .edit_site {
    margin: 0 8px;
}

.project_footer .edit_site:first-child{
	margin-left: 0;
}

/**
* Thumbnail index
**/

[data-columnize].thumbnails {
	visibility: hidden;
}

.thumbnails {
    background-color: #212121;
    font-size: 0;
    line-height: 0;
    padding: 105px 35px 40px 35px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    transition: opacity .4s ease-in-out;
    overflow-y: auto;
}

body.page_text_visible .thumbnails {
	pointer-events:none;
	overflow:hidden;
}

body.page_text_visible .thumbnails {
	opacity: 0.4;
}

.thumbnails.inactive,
body.open .thumbnails {
	opacity: 0;
	pointer-events:none;
}


.thumbnail {
    width: 100%;
    display: inline-block;
    padding: 20px;
	opacity: 1;
    position: relative;
    text-align: center;
    vertical-align: top;
}

.thumbnail > a {
    text-decoration: none;
}

.thumbnail .thumb_image {
    background-repeat:no-repeat;
    background-size: contain;
    display: inline-block;
    height: auto;
    position: relative;
    width: 100%;
    opacity: 1;
    transition: 0.3s opacity ease-in-out;
}

.thumbnail.individual_loading .thumb_image {
	opacity: 0;
}

.thumbnail .thumb_image img {
    border: none;
    display: block;
    height: auto;
    width: 100%;
}

.thumbnail.default_thumb .thumb_image {
    background: #666;
    height: 200px;
    max-width: 100%;
    width: 320px;
}

.thumbnail.default_thumb .thumb_image img {
    visibility: hidden;
}

.thumb_info_wrapper {
    cursor: pointer;
    font-size: 18px;
    margin: auto;
	opacity: 1;
    z-index: 9;
    transition: 0.3s opacity ease-in-out;
}

.thumbnail.individual_loading .thumb_info_wrapper {
	opacity: 0;
}

.thumb_info {
    -webkit-flex-flow: column nowrap;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    line-height: 1.5;
    margin: auto;
    padding: 13px 0;
}


.thumb_excerpt {
    color: rgba(255,255,255,0.5);
    display: inline-block;
    font-size: 14px;
    padding: 5px;
}

.thumbnail .loading {
    display: none;
    left: 15px;
    position: absolute;
    text-align: center;
    top: 15px;
    z-index: 3;
}

.thumbnail .thumb_title {
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: .8px;
    overflow: hidden;
    padding: 0;
    text-overflow:ellipsis;
}

.thumbnail .thumb_tags {
    color: rgba(255,255,255,0.25);
    font-family:Menlo,monaco,monospace;
    font-size: 12px;
    padding: 2px;
}

.thumbnail .thumb_tags span:after {
    content:", ";
}

.thumbnail .thumb_tags span:last-child:after {
    content:"";
}

.thumbnail .thumb_tags a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
}

.thumbnail .thumb_tags a:hover {
    color: rgba(255,255,255,0.8);
}

.thumbnail .thumb_tags a:active {
    color: rgba(255,255,255,0.6);
}

.thumb_excerpt:empty,.thumb_tags:empty,.thumb_title:empty {
    display: none;
}


/**
* Search form and search results
**/

#search {
    box-sizing: border-box;
    min-height: 100vh;
    background: #f2f2f2;
    clear: both;
    display: block;
    max-width: 720px;
    margin: 0 auto;
    padding: 150px 60px 0;
}

body[data-view="project"] #search {
    display: none;
}

#search_form {
    margin-left: 40px;
    position: absolute;
    z-index: 999;
}

#search_form_results {
    height: 0;
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 9999;
}

.search_header {
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    line-height: 40px;
    font-style:normal;
    font-weight: 400;
    margin: 0 10px 0 0;
}

#search_term {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    float:left;
    font-family: arial,Helvetica,sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 5px;
    width: 220px;
}

#results_search_term {
    background: #fff;
    border: 0px;
    border-radius: 2px;
    color: #000;
    display: inline-block;
    font-family: arial,Helvetica,sans-serif;
    font-size: 18px;
    line-height: 40px;
    margin: 0;
    padding: 0 10px;
    width: 220px;
}

#search_results {
    float:left;
}

.result {
    clear: both;
    display: inline-block;
    margin-bottom: 20px;
    text-align:left;
    width: 100%;
}

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

.search_thumb img {
    height: auto;
    width: 200px;
}

.search_text {
    margin-left: 240px;
    max-width: 500px;
}

.search_title a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.search_title a:hover {
    background: #ff0;
    color: #000;
    text-decoration: none;
}

.search_title a:active {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.search_tags {
    color: rgba(0,0,0,0.3);
    padding-top: 10px;
}

.search_tags span:after {
    content:",";
}

.search_tags :last-child:after {
    content:"";
}

.search_tags a {
    color: rgba(0,0,0,0.4);
    text-decoration: none;
}

.search_tags a:hover {
    background: none;
    color: #000;
    text-decoration:underline;
}

.search_tags a:active {
    color: #666;
}

/**
* Media players and Miscellaneous
**/

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

.project_content .audio_component {
    color: #777;
    float: none;
    font-family:"Droid Sans Mono",Monaco,Monospace,Arial,san-serif;
    font-size: 10px;
    height: 30px;
    line-height: 26px;
    margin: 0 auto;
    width: 300px;
}

.audio_component .text {
    text-align:left;
}

.audio_component div {
    height: 26px;
}

.audio_component .border {
    -khtml-opacity: .5;
    -moz-border-radius: 5px;
    -moz-opacity: .5;
    -webkit-border-radius: 5px;
    border: 2px solid #aaa;
    border-radius: 5px;
    filter: alpha(opacity=50);
    opacity: .5;
}

.audio_component .vertical_border {
    -khtml-opacity: .5;
    -moz-opacity: .5;
    background: #aaa;
    filter: alpha(opacity=50);
    opacity: .5;
}

.audio_component .controls {
    left: 2px;
    top: 2px;
}

.audio_component .play_pause {
    background-image:url(/_gfx/svg/playpause.svg),none;
}

.audio_component .spectrum .spectrum_bar {
    background: #666;
}

.audio_component .loading {
    -khtml-opacity: .25;
    -moz-opacity: .25;
    background: #bbb;
    filter: alpha(opacity=25);
    opacity: .25;
}

.audio_component .progress {
    -khtml-opacity: .25;
    -moz-opacity: .25;
    background: #bbb;
    border-right: 1px dotted #333;
    filter: alpha(opacity=25);
    opacity: .25;
}

.audio_component .volume_slide.hover {
    -khtml-opacity: .3;
    -moz-opacity: .3;
    background: #bbb;
    filter: alpha(opacity=30);
    opacity: .3;
}

a#save_button {
    background: #06f;
    border-radius: 3px;
    color: #fff;
    cursor:pointer;
    display: none;
    font-family:'Lucida Grande','Lucida Sans Unicode',Arial,sans-serif;
    font-size: 10px;
    padding: 5px 7px 4px;
    position: fixed;
    right: 81px;
    text-decoration: none;
    top: 10px;
    z-index: 99999999;
}

#thumb_position_loader {
    display: none;
    left: auto;
    position: fixed;
    right: 84px;
    top: 12px;
    z-index: 999;
}

.clear:after {
    clear: both;
    content:"";
    display: table;
    width: 100%;
}

body > .loading {
    display: none;
    left: 8px;
    position: fixed;
    top: 8px;
    z-index: 100;
}

#autopaginate_loader {
    padding: 60px 0;
    text-align: center;
}

#autopaginate_loader .loading {
    margin: 0 auto;
}

.toolset {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 9999999;
}

body.mobile_menu #toolset {
    display: none;
}

.cargo_link {
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    bottom: 80px;
    color: #000;
    font-family: sans-serif;
    font-size: 11px;
    height: 0;
    line-height: 0;
    opacity: .25;
    position: fixed;
    right: -15px;
    text-align:left;
    transform: rotate(270deg);
    z-index: 99;
}

.cargo_link:hover {
    opacity: .6;
}

.cargo_link:active {
    opacity: .9;
}

.cargo_link a {
    color: #000;
    text-decoration: none;
}

a#fullscreen {
    background-color: #fff;
    background-image:url(/_gfx/svg/fullscreen_open.svg),none;
    background-position: 67px 3px;
    background-repeat:no-repeat;
    border: 1px solid #ccc;
    color: #666;
    display: inline-block;
    font-family:"Lucida Grande","Lucida Sans Unicode",Arial,sans-serif;
    font-size: 11px;
    height: 19px;
    line-height: 18px;
    padding: 0 4px 0 5px;
    text-align:left;
    text-decoration: none;
    width: 74px;
}

a#fullscreen:hover {
    background-color: #fff;
    border: 1px solid #999;
    color: #000;
}

a#fullscreen:active {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #999;
}

#fullscreen {
    clear: both;
}

#fullscreen.fullscreen_ie {
    line-height: 21px;
}

#freshbox {
    background: #000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
}

#freshbox.ie {
    visibility:visible!important;
}

#freshbox_centering {
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
}

#freshbox img {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 109;
}

#freshbox img.active {
    display: block;
    z-index: 110;
}

#freshbox img.preload {
    display: block;
    filter: alpha(opacity=50);
    opacity: .5;
    zoom: 1;
}

#freshbox img#freshbox_loading,#freshbox #freshbox_loading.retinaSpinner {
    display: block;
    float: none;
    height: 20px;
    left: 50%;
    margin: -10px 0 0 -10px;
    position: absolute;
    top: 50%;
    width: 20px;
    z-index: 101;
}

body.mobile #design_panel {
    display:none;
}

body.mobile_menu .mobile_site_header {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000000;
    transition: 0.4s opacity ease-in-out;
}

body.mobile_menu.mouse_away .mobile_site_header{
	opacity: 0;
}

.mobile_site_header {
    display: none;
}

body.mobile_menu .navigation_toggle {
    cursor:pointer;
    position: fixed;
    right: 15px;
    top: 15px;
}

body.mobile_menu.mobile_menu_active .site_header {
	z-index: 999;
}
body.mobile_menu.mobile_menu_active .information_header {
	display:none;
}

body.mobile_menu .site_header > .filter {
	display:none;
}

body.mobile_menu .navigation_toggle.active {
    background-color: transparent;
}

body.mobile_menu .navigation_toggle img {
    display: block;
}

body.mobile_menu .navigation_toggle .menu_icon {
    display: block;
    height: 18px;
    padding: 13px 11px 12px 13px;
    width: 18px;
}

body.mobile_menu .navigation_toggle.active .menu_icon {
    display: none;
}

body.mobile_menu .navigation_toggle .close {
    display: none;
    height: 18px;
    padding: 12.5px 10px 12px;
    width: 18px;
}

body.mobile_menu .navigation_toggle.active .close {
    display: block;
}

body.mobile_menu .navigation {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: transparent;
    color: #fff;
    display: none;
    font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-size: 16px;
    line-height: 14px;
    margin-top: 0;
    overflow-y: scroll;
    padding: 0;
    position: fixed;
    right: 15px;
    text-align:left;
    top: 15px;
    z-index: 9999;
    width: 100%;
    max-width: 400px;
}

body.mobile_menu .navigation ul {
    display: block;
}

body.mobile_menu .navigation li {
    display: block;
    margin: 0;
}

body.mobile_menu .navigation .filter {
	display: block;
    background: rgba(0,0,0,0.9);
    border-top: 1px solid rgba(255,255,255,0.15);
    float: none;
    margin: auto;
    height: auto;
    padding: 14px 30px 14px 11px;
    position: relative;
}

body.mobile_menu .navigation .filter b {
    display: inline-block;
    max-width: 50%;
    overflow: hidden;
    vertical-align: bottom;
    padding: 5px 5px 5px 0;
    margin: -5px 0px -5px 0;
    text-overflow:ellipsis;
}

body.mobile_menu .navigation .filter a {
    background: none;
    border: none;
    float: right;
    padding: 10px 0 0 10px;
    margin: -10px 20px -10px -10px;
    text-transform: capitalize;
}

body.mobile_menu .navigation .filter a:hover {
	color: #f22;
	background:none;
}

body.mobile_menu .navigation.active {
    display: block;
}

body.mobile_menu .navigation a {
    background: rgba(0,0,0,0.90);
    border-top: 1px solid rgba(255,255,255, 0.15);
    display: block;
    overflow: hidden;
    padding: 14px 11px;
    text-decoration: none;
    text-overflow:ellipsis;
    white-space:nowrap;
}

body.mobile_menu .navigation li:first-child a{
	border-top: none;
}

body.mobile_menu .navigation a:hover {
    background: rgba(51,51,51,0.9);
    color: #fff;
}

body.mobile_menu .set_link.first {
    margin: 0;
    padding: 0;
}

body.mobile_menu .set_link.last {
    margin: 0;
    padding: 0;
}

body.mobile_menu .navigation .set_link > span.set_name {
    color: #fff;
}

body.mobile_menu .navigation .set_link > a.set_name {
    color: rgba(255,255,255,1);
}

body.mobile_menu .navigation .set_link.active > .set_name {
    color: rgba(255,255,255,0.6);
}

body.mobile_menu a.set_name+.set_wrapper {
    display: none;
}

body.mobile_menu .set_wrapper {
    margin: 0;
    padding: 0;
}

body.mobile_menu .set_wrapper li a {
    padding-left: 18px;
}

body.mobile_menu .navigation .following {
    background: none;
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

body.mobile_menu .navigation .following a {
    display: block;
    padding: 14px 30px 14px 11px;
}

body.mobile.mobile_menu .navigation_toggle {
	top: 0;
	right: 0;
}

body.mobile.mobile_menu .navigation_toggle .menu_icon {
	background: rgba(0,0,0,0.8)
}

body.mobile.mobile_menu .navigation {
	top: 0;
	left: 0;
	right: 0;
	max-width: 100%;
}

body.mobile {
    -webkit-text-size-adjust: none;
    font-size: 15px;
}

body.mobile .header_image {
    margin-right: 10px;
}

body.mobile #project {
	padding: 60px 20px 0px 20px;
	left: 0;
	max-width: initial;
	min-height: initial;
	position: relative;
	width: auto;
	text-align: center;
	transition: opacity 0.4s ease-in-out;
}

body.mobile.page_text_visible #project {
	display:none;
}

body.mobile.no_slide_content #project {
	padding-top: 60px;
}

body.mobile.no_text_content #project{
	opacity: 0;
	display: none;
}

body.mobile #project.inactive {
	opacity: 0;
	transform: none;
}

body.mobile #page {
	justify-content: flex-start;
	flex-direction: column;
	padding: 80px 0 60px 0;
	background: #f2f2f2;
}

body.mobile #page .entry {
	margin:0;
	padding: 10px 15px;
}


body.mobile #project_media {
	position: relative;
	margin-top: 0;
	width: 100%;
	height: 70vh;
	height: calc(100vh - 200px);
}

body.mobile.no_text_content #project_media {
	height: 80vh;
	height: calc(100vh - 120px);
}

body.mobile.project_text_visible #project_media {
	opacity: 1;
}

body.mobile.no_slide_content #project_media,
body.mobile[data-pagetype="page"] #project_media{
	height:0;
}

body.mobile.swipe_active #project_nav {
	left: 15px;
	right: 15px;
}

body.mobile.swipe_active #project_nav.animation {

    -webkit-animation-name: mobile_wiggle_nav;
            animation-name: mobile_wiggle_nav;

}

@-webkit-keyframes mobile_wiggle_nav {
    0%   {left: 15px; right: 15px;}
    50%  {left: 30px; right: 30px;}
	100%   {left: 15px; right: 15px;}
}
@keyframes mobile_wiggle_nav {
    0%   {left: 15px; right: 15px;}
    50%  {left: 30px; right: 30px;}
	100%   {left: 15px; right: 15px;}
}

body.swipe_active.mobile.no_slide_content #project_nav {
	top: 90px;
}

body.mobile .media_footer {
	text-align: center;
	position: relative;
	top: -48px;
	display: block;
	bottom: initial;
	right: initial;
	width: 100%;
	height: 0;
}

body.mobile .media_footer .caption {
	box-shadow: none;
}

body.mobile .project_content img,
body.mobile .project_content iframe {
    margin-bottom: 15px;
}

body.mobile .project_footer {
    padding: 17px 0 10px 0;
    position: relative;
    bottom: auto;
    margin: 0 auto;
}

body.mobile .thumbnails {
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
	text-align: left;
	padding: 70px 10px 45px;
	width: 100vw;
}

body.mobile .thumbnails.inactive {
	z-index: -1;
	pointer-events:none;
}

body.mobile [data-columnize] .thumbnail {
	width: 100%;
	box-sizing: content-box;
}

body.mobile .thumbnail {
	width: 50%;
	box-sizing: border-box;
	padding: 5px;
	max-width: initial!important;
}


body.mobile [data-columnize] .thumbnail.default_thumb {
	max-width: 100%!important;
}

body.mobile .thumbnail.default_thumb {
	max-width: 50%!important;
}

body.mobile .thumbnail.default_thumb .thumb_image {
    height: 0;
    padding-bottom: 57%;
    max-width: 100%;
    width: 100%;
}

body.mobile .thumb_info_wrapper {
    font-size: 14px;
    padding: 0;
}

body.mobile .thumb_info {
    padding: 7px 0 25px;
}

body.mobile .thumb_title {
    letter-spacing: 0;
    padding: 0;
    white-space: nowrap;
}

body.mobile .thumb_tags {
    font-size: 12px;
    overflow: hidden;
    padding: 0;
    text-overflow:ellipsis;
    white-space:nowrap;
}

body.mobile .site_header {
    padding: 10px 15px 10px;
    position: relative;
    z-index: 12;
}


body.mobile .information_header .project_title {
	float:left;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	white-space: nowrap;
	max-width: 50%;
}



body.mobile .information_header {
	color: #000;
	display:block;
	position: relative;
	line-height: 24px;
	top: initial;
	left:0;
	right:0;
	bottom:0;
	height: 0;
	text-align: right;
}


body.mobile .information_header.inactive {
	display:none;
}

body.mobile .information_header > span {
	display: block;
	padding: 20px 20px 0px 20px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}


body.mobile .information_header .slide_numbers {
	color: #999;
}



body.mobile .information_header .separator,
body.mobile .information_header .toggle_text {
	display: none;
}

body.mobile .header_image img {
    max-height: 50px;
    width: auto;
}



body.mobile .cargo_link {
    display: none;
}

body.mobile #search {
    float: none;
    padding: 15px 15px 30px;
    width: auto;
}

body.mobile #results_search_term {
    box-sizing: border-box;
    clear: both;
    float:left;
    margin: 10px 0 30px;
    width: 100%;
    background: #fff;
    border: 2px solid #ccc;
}

body.mobile .result {
    float: none;
    font-size: 14px;
    line-height: 1.5;
}

body.mobile .result .search_thumb {
    margin-right: 16px;
    padding-right: 0;
}

body.mobile .result .search_thumb img {
    width: 100px;
}

body.mobile .result .search_text {
    margin-left: 116px;
    width: auto;
}

body.mobile .result .search_tags {
    font-size: 14px;
}

body.mobile #search_form_results {
	position: relative;
	height: auto;
	top: 0;
	left: initial;
}

body.mobile .search_header {
	color: #000;
	float: left;
}

/**
 * Lightbox Navigation
 */
.freshbox_navigation {
    font-family: "Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,sans-serif;
    font-size: 12px;
    margin-left: -53px;
    position: fixed;
    bottom: 50px;
    left: 50%;
    width: 106px;
    z-index: 99999;
}

.freshbox_navigation_group {
    background: rgba(10,10,10,0.2);
    float: left;
    height: 34px;
    margin: 0 10px 0 0;
    padding: 0 2px 0 1px;
    border-radius: 4px;
}

.freshbox_navigation a {
    background-color: #fff;
    color: #000;
    display: block;
    float: left;
    height: 30px;
    line-height: 30px;
    margin: 2px 0 2px 1px;
    padding: 0 10px;
    text-decoration: none;
    border-radius: 2px;
}

a.freshbox_nav_button {
    padding: 0;
    width: 30px;
}

a.freshbox_nav_button .nav_svg {
    fill: #999;
}

a.freshbox_nav_button:hover {
    background-color: #f2f2f2;
}

a.freshbox_nav_button:hover .nav_svg {
    fill: #555;
}

a.freshbox_nav_button:active a:active {
    background-color: #f2f2f2;
}

a.freshbox_nav_button:active .nav_svg {
    fill: #222;
}

a#fullscreen_close .nav_svg {
    shape-rendering: crispEdges;
}

a.freshbox_nav_button.disabled {
    background-color: #fff;
    cursor: default;
}

a.freshbox_nav_button.disabled .nav_svg {
    fill: #ccc !important;
}

#freshbox.single .freshbox_navigation_group {
    margin: 0 0 0 35px;
}

/**
 * iOS formatting for fullscreen
 */
#freshbox.ios .freshbox_navigation {
    bottom: 20px;
}

/*
 * IE Fullscreen SVG fallback used in the navigation.
 *
 *
 */
#freshbox.ie .freshbox_navigation svg {
    display: none;
}

#freshbox.ie a.freshbox_nav_button {
    background-image: url(/_gfx/landsat_navigation_sprite.png);
    background-repeat: no-repeat;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_prev {
    background-position: 0 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_prev:hover {
    background-position: 0 -30px;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_prev:active {
    background-position: 0 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_next {
    background-position: -59px 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_next:hover {
    background-position: -59px -30px;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_next:active {
    background-position: -59px 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_close {
    background-position: -180px 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_close:hover {
    background-position: -180px -30px;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_close:active {
    background-position: -180px 0;
}

.freshbox_navigation {
    margin-left: -43px;
    width: 150px;
}

a.freshbox_nav_button#fullscreen_zoom {
    margin-left: 14px;
    overflow: hidden;
}

a.freshbox_nav_button#fullscreen_zoom.active svg {
    margin-left: -30px;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_zoom {
    background-position: -90px 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_zoom:hover {
    background-position: -90px -30px;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_zoom:active {
    background-position: -90px 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_zoom.active {
    background-position: -120px 0;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_zoom.active:hover {
    background-position: -120px -30px;
}

#freshbox.ie a.freshbox_nav_button#fullscreen_zoom.active:active {
    background-position: -120px 0;
}



/**
* Cog menu for design options
**/

#design_panel {
	text-align: left;
	color: #fff;
	font-family: 'Lucida Grande','Lucida Sans Unicode',Arial,sans-serif;
	font-size: 14px;
	position: fixed;
	top: 80px;
	right: 10px;
	z-index: 999;
}

#design_panel.no_toolset {
	top: 10px;
	right: 10px;
}


a#design_symbol {
    background: rgba(0,0,0,0.2);
    display: block;
    float: right;
    padding: 3px;
    border-radius: 3px;
    overflow: hidden;
    filter: alpha(opacity=50);
    -moz-opacity: .5;
    -khtml-opacity: .5;
    opacity: 1;
    width: 30px;
    height: 18px;
}

.no_toolset a#design_symbol {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

a#design_symbol {
    width: 18px;
    height: 18px;
}

a#design_symbol img {
    width: 18px;
    height: 18px;
}

a#design_symbol:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    background: #000;
}

a#design_symbol:hover::after {
	content:"";
	position: absolute;
	display: block;
	bottom: 2px;
	left: 2px;
	border-top: 2px solid transparent;
	border-right: 2px solid transparent;
	border-bottom: 2px solid white;
	border-left: 2px solid white;
}

#design_options {
    background: #000;
    clear: both;
    display: none;
    float: right;
    margin-bottom: -24px;
    width: 150px;
    letter-spacing: 0.4px;
}

#design_options a#design_options_close {
    color: #555;
    text-decoration: none;
    float: right;
}

#design_options a#design_options_close:hover {
    color: #fff;
}

#design_options a#design_options_close:active {
    color: #999;
}

#design_options > span {
	text-align: center;
	text-transform:uppercase;
	letter-spacing: 0px;
	font-size: 11px;
	background: #000;
	border-bottom: 1px solid #333;
	color: rgba(255,255,255,0.5);
	display: block;
	line-height: 34px;
	overflow: hidden;
	padding: 0 20px;
	text-decoration: none;
}

#design_options a.option {
	background: #000;
	position: relative;
	border-bottom: 1px solid #333;
	color: #ccc;
	display: block;
	line-height: 34px;
	overflow: hidden;
	padding: 0px 11px;
	text-decoration: none;
}



#design_options a[data-option="autoplay"]{
	margin-top: 34px;
	border-top: 1px solid #333;
	border-bottom: none;
}

#design_options a[data-value="default"]{
	display:none;
}

#design_options a.option.selected .check {
	display: block;
}

#design_options a.option.selected .check {
	display: block;
}

#design_options a.option .check {
	position: absolute;
	top: 10px;
	right: 11px;
	display:none;
}

#design_options a.option .check path {
	fill: #ccc;
}

#design_options a.option.selected:hover {
    color: #fff;
}

#design_options a.option.selected:active {
    color: #ccc;
}

#design_options a.option:hover {
    background: #333;
    color: #fff;
}

#design_options a.option:active {
    background: #333;
    color: #ccc;
}


#design_options a.option span {
    color: #00aa50;
    float: right;
}

#design_options a.option.selected span {
    color: #666;
}

#design_options a#help {
	margin-top: 20px;
	border-bottom: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}


#design_options a#help:hover{
    color: #ccc;
}

#design_options a#help:active {
    color: #999;
}

.no_toolset #help_content {
	top: 10px;
	right: 141px;
}


#help_content b {
    color: #fff;
}



