/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
	min-height: 100%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#444;
	overscroll-behavior: none;
}

body.is_dark_mode *::selection,
body.is_dark_mode *::-webkit-selection {
  color: #000000;
  background-color: #ffffff;
}
body.light-mode *::selection,
body.light-mode *::-webkit-selection {
  color: #ffffff;
  background-color: #000000;
}

/*
a,
.work .thumbnail,
.work,
.filter-selector li,
.filter_minted,
.filter_platforms,
.filter_container_search {
	cursor: url(img/cursor_frenetik.png) -2 0, auto !important;
}
*/

.tooltip {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
    position: absolute;
    display: none;
    background-color: #000;
    color: #c1c1c1;
    padding: 5px 5px 2px 5px;
    pointer-events: none;
    font-size: 15px;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: transform .7s cubic-bezier(.175,.885,.295,1);
    transition-timing-function: cubic-bezier(.175,.885,.295,1);
}
.light-mode .tooltip {
	background: #ffffff;
	color: #000000;
}

body.home,
body.page-template-light-mode {
	overflow: hidden;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: white;
	overscroll-behavior-x: none;
	-ms-scroll-chaining: none;
}

body.my-collection,
body.minted-work,
body.news,
body.journal {
	color: #000000;
	/*
	background: #ffffff url(img/white.jpg) center;
	*/
	background-size: contain;
	background-attachment: fixed;
}
body.light-mode {
	background: #ffffff;
	color: #000000;
}
body.journal.is_dark_mode,
body.is_dark_mode {
	background: #000000 url(img/black_2.jpg) center;
	background-size: contain;
	background-attachment: fixed;
	color: #c1c1c1;
}
body.minted-work.is_dark_mode,
body.news.is_dark_mode, {
	background: none;
	color: #c1c1c1;
}
/*
body.minted-work.is_dark_mode:after,
body.news.is_dark_mode:after,
body.my-collection.is_dark_mode:after,
body.minted-work.light-mode:after,
body.news.light-mode:after,
body.my-collection.light-mode:after {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: #000000 url(img/black_mobile.png) center;
	background-size: 768px;
}
body.minted-work.light-mode:after,
body.news.light-mode:after {
	background-image: url(img/white_mobile.png);
}
*/
body.is_dark_mode.home,
body.minted-work.light-mode,
body.news.light-mode {
	background-image: none;
}
body.news,
body.journal {
	padding-top: 70px;
}
/*
body.minted-work.is_dark_mode .noise {
	background-image: url(img/noise_black.png);
	opacity: .2;
}
*/
body.minted-work .noise {
	z-index: 0;
}
.courier {
	font-family: c_std_web;
}
.is_dark_mode .hide_on_dark_mode,
.dark-mode .hide_on_dark_mode,
.hide_on_light_mode {
	display: none;
}
.is_dark_mode .hide_on_light_mode,
.dark-mode .hide_on_light_mode,
.hide_on_dark_mode {
	display: initial;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	text-decoration: none;
	color: #ffffff;
}

a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}

.parallax {
	will-change: transform;
	overflow: visible;
    pointer-events: none;
    min-height: 200vh;
    min-width: 200vw;
}
.parallax>div {
	position: absolute;
}
.parallax img {
	pointer-events: none;
}
#background_layer div {
	position: absolute;
}
#background_layer {
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: 0;
}
.infinite {
	display: flex;
}
#background_layer {
	z-index: 6;
}
#layer_back,
#layer_front {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
}
#layer_front {
	z-index: 9;
}
.viewport {
	overflow: visible;
	position: absolute;
	min-width: 100vw;
	min-height: 100vh;
}
.loader {
	color: #c1c1c1;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	z-index: 9999999999;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	text-transform: uppercase;
	font-size: 17px;
	line-height: 1.15em;
	letter-spacing: 1px;
	writing-mode: vertical-rl;
}
.light-mode .loader {
	background: rgba(255,255,255,1);
	color: #000000;
}
.loaded .loader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.loader .container {
	width: 100%;
	height: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
}
/*
.loader p {
	transition: .4s ease;
	-webkit-transition: .4s ease;
	filter: blur(.5px);
}
*/

#layer_back .cell {
	position:relative;
	height: 300px;
	width: 300px;
}
#layer_back .cell .work {
	left: var(--mobile-left);
	top: var(--mobile-top);
}
.back img {
	width: var(--mobile-width);
}
#layer_front .cell {
	position:relative;
	height:500px;
	width:500px;
}
#layer_front .cell .work {
	left: var(--mobile-left);
	top: var(--mobile-top);
}
.front img {
	width: 250px;
}
#background_layer .cell {
	position: relative;
	height: 100%;
	width: 100%;
}
#background_layer .cell div {
	position: absolute;
	top: -1px;
	left: -1px;
	bottom: -1px;
	right: -1px;
	background-image: var(--mobile-back);
	background-size: 768px;
}
.light-mode #background_layer .cell div {
	background-image: url(img/background-white.jpg);
}
@media (min-width: 650px) {
	#layer_back .cell {
		position:relative;
		height: 500px;
		width: 500px;
	}
	#layer_back .cell .work {
		left: var(--desk-left);
		top: var(--desk-top);
	}
	.back img {
		width: var(--desk-width);
	}
	#layer_front .cell {
		position:relative;
		/*
		height:1000px;
		width:1165px;
		*/
		height:800px;
		width:965px;
	}
	#layer_front .cell .work {
		left: var(--desk-left);
		top: var(--desk-top);
	}
	.front img {
		width: 300px;
	}
	#background_layer .cell div {
		background-image: var(--desk-back);
		background-size: 1920px;
	}
}

@media (min-width: 1700px) {

	#layer_back .cell {
		position:relative;
		height: 650px;
		width: 650px;
	}
	.back img {
		width: calc(var(--desk-width) * 1.25);
	}
	#layer_front .cell {
		position:relative;
		height:1000px;
		width:1100px;
	}
	.front img {
		width: 500px;
	}

}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
html {
	font-size:62.5%;
}
body {
	font: 11px/1.4 'c_std_web', Helvetica, Arial, sans-serif;
	color:#ffffff;
	-webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.page-template-dark_mode {
	background-color: #000000;
}

body.blood_mode #layer_back,
body.blood_mode #layer_front {
	filter: invert(1);
	-webkit-transition: filter .5s ease-in-out;
	transition: filter .5s ease-in-out;
}
body.blood_mode #background_layer .cell div {
	background-image: url(img/red.jpg) !important;
}

@font-face {
	font-family: 'CuxhavenTimes';
	src: url('fonts/CuxhavenTimes.eot');
	src: local('☺'), url('fonts/CuxhavenTimes.woff') format('woff'), url('fonts/CuxhavenTimes.ttf') format('truetype'), url('fonts/CuxhavenTimes.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Courier';
	src: url('fonts/AnyConv.com__Courier.eot');
	src: local('☺'), url('fonts/AnyConv.com__Courier.woff') format('woff'), url('fonts/AnyConv.com__Courier.ttf') format('truetype'), url('fonts/AnyConv.com__Courier.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
/** Generated by FG **/
@font-face {
	font-family: 'frenetiktype';
	src: url('fonts/frenetiktype.eot');
	src: local('☺'), url('fonts/frenetiktype.woff') format('woff'), url('fonts/frenetiktype.ttf') format('truetype'), url('fonts/frenetiktype.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: c_std_web;
	src:url(fonts/CourierStd.eot);
	src:url(fonts/CourierStd.eot?#iefix) format("embedded-opentype"), url(fonts/CourierStd.woff) format("woff"), url(fonts/CourierStd.ttf) format("truetype"),url(fonts/CourierStd.svg#005954a37e256422a1fe18fd532c9c2d) format("svg");
	font-style: normal;
	font-weight: 400
}

/*.cuxhaven {
	font-family: 'CuxhavenTimes';
}*/
.courier {
	font-family: c_std_web;
}
.frenetiktype {
	font-family: 'frenetiktype';
}

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

.logo {
	box-sizing: border-box;
    margin: 0;
    min-width: 0;
    //background: linear-gradient(110.78deg,#76E650 -1.13%,#F9D649 15.22%,#F08E35 32.09%,#EC5157 48.96%,#FF18BD 67.94%,#1A4BFF 85.34%,#62D8F9 99.57%);
    //background: linear-gradient(110.78deg,#F08E35 -1.13%,#EC5157 15.22%,#FF18BD 32.09%,#1A4BFF 48.96%,#62D8F9 67.94%,#62D8F9 85.34%,#62D8F9 99.57%);
    /*-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    text-overflow: ellipsis;*/
}
.showAccount {
	padding-left: 5px;
}
nav a,
header a,
header {
	color: #000000;
	position: relative;
}
header a:hover,
.home .menu_home,
body.minted-work .menu_minted,
body.my-collection .menu_collection,
body.journal .menu_journal,
body.news .menu_news {
	text-decoration: underline;
}
body.page-template-dark_mode header,
body.is_dark_mode header,
body.page-template-dark_mode nav a,
body.is_dark_mode nav a,
body.page-template-dark_mode header a,
body.is_dark_mode header a,
.filter-selector a {
	color: #c1c1c1;
}
/*
body.page-template-dark_mode nav a:hover,
body.is_dark_mode nav a:hover,
body.page-template-dark_mode header a:hover,
body.is_dark_mode header a:hover {
	animation: linkcolorwhite 5s infinite;
}
nav a:hover {
	animation: linkcolor 5s infinite;
}
*/
@keyframes linkcolor {
    0% {
    	color: #000000;
    }
    25% {
    	color: #b95700;
    }
    50% {
    	color: #0036fd;
    }
    75% {
    	color: #ff0090;
    }
    100% {
    	color: #000000;
    }
}
@keyframes linkcolorwhite {
    0% {
    	color: #ffffff;
    }
    25% {
    	color: #b95700;
    }
    50% {
    	color: #0036fd;
    }
    75% {
    	color: #ff0090;
    }
    100% {
    	color: #ffffff;
    }
}
/*
nav a:hover {
	background: linear-gradient(110.78deg,#F08E35 -1.13%,#EC5157 15.22%,#FF18BD 32.09%,#1A4BFF 48.96%,#62D8F9 67.94%,#62D8F9 85.34%,#62D8F9 99.57%);
	//background: linear-gradient(110.78deg,#76E650 -1.13%,#F9D649 15.22%,#F08E35 32.09%,#EC5157 48.96%,#FF18BD 67.94%,#1A4BFF 85.34%,#62D8F9 99.57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    text-overflow: ellipsis;
}
*/
/*
nav a:before {
	display: block;
    content: attr(title);
    overflow: hidden;
    position: absolute;
    opacity: 0;
    -webkit-transition: .2s ease;
    transition: .2s ease;

    background: linear-gradient(110.78deg,#F08E35 -1.13%,#EC5157 15.22%,#FF18BD 32.09%,#1A4BFF 48.96%,#62D8F9 67.94%,#62D8F9 85.34%,#62D8F9 99.57%);
	//background: linear-gradient(110.78deg,#76E650 -1.13%,#F9D649 15.22%,#F08E35 32.09%,#EC5157 48.96%,#FF18BD 67.94%,#1A4BFF 85.34%,#62D8F9 99.57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    text-overflow: ellipsis;
}
nav a:hover:before {
	opacity: 1;
}
*/

.must-accept-terms header,
.must-accept-terms .code_form,
.must-accept-terms .filter_minted,
.must-accept-terms .filter_platforms {
	display: none;
}

header {
	display: block;
	position: fixed;
	top: 10px;
	right: 10px;
	left: 10px;
	font-size: 17px;
	line-height: 1.15em;
	letter-spacing: 1px;
	z-index: 9999999;
}
nav {
	margin: -3px 0 0 0;
	max-width: 1100px;
	width: 100%;
}
nav ul {
	align-items: baseline;
	display: flex;
    justify-content: start;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
nav ul li {
	align-items: baseline;
	display: inline-flex;
	padding: 3px 5px 0 0;
}
nav ul li:empty {
	display: none;
}
.wallet-connected nav ul li:after {
	content: ", ";
}
.wallet-connected nav ul li:last-child:after {
	content: "";
}
nav ul li:first-child:after {
	content: ", ";
}
footer div {
	margin-right: 50px;
}
nav ul li:last-child {
	margin-right: 0;
}
footer div:last-child {
	margin: 0;
	line-height: 14px;
}
.dark_mode
.is_dark_mode {
	color: #000000;
}
.hide_on_wallet {
	display: none;
}
.wallet-connected .hide_on_wallet {
	display: initial;
}
footer {
	color: #000000;
	display: flex;
	align-items: center;
	position: fixed;
	top: 10px;
	right: 10px;
	font-size: 1.4rem;
	z-index: 9999999;
}
footer a {
	color: #000000;
}
/*footer .cuxhaven {
	line-height: 14px;
}*/
.code_form input {
	background: transparent;
	border: none;
	-webkit-box-shadow: inset 0px -1px 0px 0px #000000;
	box-shadow: inset 0px -1px 0px 0px #000000;
	outline: none;
	padding: 0;
	-webkit-user-select: text
}
body.page-template-dark_mode .code_form input,
body.is_dark_mode .code_form input,
.archive .code_form input {
	-webkit-box-shadow: inset 0px -1px 0px 0px #c1c1c1;
	box-shadow: inset 0px -1px 0px 0px #c1c1c1;
	color: #c1c1c1;
	outline: none;
}
.code_form input[type="submit"] {
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #000000;
	cursor: pointer;
	height: 17px;
	font-size: 1.5rem;
	padding: 0;
}
body.page-template-dark_mode .code_form input[type="submit"],
body.is_dark_mode .code_form input[type="submit"] {
	-webkit-box-shadow: none;
	box-shadow: none;
}
body.page-template-dark_mode .code_form input[type="submit"],
body.is_dark_mode .code_form input[type="submit"],
.archive .code_form input {
	color: #c1c1c1;
}
.code_form {
	display: block;
	font-size: 1.6rem;
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 9999999;
}
#download_typo {
	font-size: 1.6rem;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 99999999;
}
.glitched .code_form {
	z-index: 99999999;
}
.error {
    position: relative;
    animation: shake .1s linear;
    animation-iteration-count: 5;
}
.error#code_form input {
	-webkit-box-shadow: inset 0px -1px 0px 0px red;
	box-shadow: inset 0px -1px 0px 0px red;
	color: red;
}
@keyframes shake {
    0% {
    	transform: translate3d(-5px,0,0);
    }
    100% {
    	transform: translate3d(5px,0,0);
    }
}

.viewport .work {
    cursor: pointer;
    user-select: none;

    pointer-events: all;
			position: absolute;
}

.must-accept-terms #mobile-header {
	display: none;
}
#mobile-header {
	background: rgba(200,200,200,.1);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border: none;
	position: fixed;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	left: 35px;
	right: 35px;
	top: 10px;
	height: 40px;
	overflow: hidden;
	margin: 0 auto;
	z-index: 9999999;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 10px 5px 6px 5px;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    width: 80px;
}
.light-mode #mobile-header,
.light-mode .pswp__caption,
.light-mode #filter-mobile {
	background: rgba(50,50,50,.1);
}
.light-mode .menu-mobile-button,
.light-mode #mobile-header a,
.light-mode #filter-mobile button,
.light-mode #filter-mobile a,
.light-mode .toggle-caption,
.light-mode .filter-selector a,
.light-mode .filter_platforms {
	color: #000000;
}
.menu-open #mobile-header {
	height: 210px;
	width: 50%;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.filter-open #filter-mobile {
	height: 300px;
	width: 50%;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
#filter-mobile {
	text-align: center;
	overflow: hidden;
}
#filter-mobile ul {
	opacity: 0;
	visibility: hidden;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    pointer-events: none;
}
#filter-mobile>ul {
	height: 220px;
	overflow: auto;
}
.filter-open #filter-mobile ul {
	-webkit-transition: opacity .5s .5s, visibility .5s .5s;
	transition: opacity .5s .5s, visibility .5s .5s;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

#filter-mobile ul ul {
	height: 0;
	overflow: hidden;
	position: relative;
	height: 0;
	transition: .2s ease !important;
	margin: 0;
}
.open-sub-menu {
	margin: 20px 0 0 0;
}
.open-sub-menu svg {
	vertical-align: middle;
	transition: .2s ease;
	width: 20px;
}
.sub-menu-open .open-sub-menu svg {
	transform: rotate(180deg);
}

.photoswipe-opened {
	overflow: auto;
}

.photoswipe-opened #filter-mobile {
	display: none;
}

.light-mode .code_form input[type="submit"],
.light-mode .code_form input[type="text"] {
	color: #000000;
}
#filter-mobile button {
	border: none;
	background: transparent;
	color: #ffffff;
	position: absolute;
    bottom: 8px;
    margin: 0 auto;
    left: 0;
    right: 0;
}
button:focus {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}
#mobile-header .container {
	visibility: hidden;
	opacity: 0;
}
.menu-open #mobile-header .container {
	visibility: visible;
	opacity: 1;
	-webkit-transition: .5s .5s;
	transition: .5s .5s;
}
.menu-mobile-button {
	color: #ffffff;
	background: transparent;
	border: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 1px;
	margin: 0 auto;
	height: 40px;
	width: 80px;
}
#mobile-header .head {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content:space-between;
	margin-top: 25px;
	display: none;
}
#mobile-header ul {
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}
#mobile-header ul li {
	margin: 20px 0 0 0;
}
#filter-mobile ul {
	margin: 20px 0 0 0;
}
#filter-mobile ul li a {
	display: block;
	margin: 20px 0 0 0;
}
#mobile-head {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	font-size: 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
	z-index: 99;
}
header {
	background: rgb(0, 0, 0, 80%);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-transition: opacity 2.5s ease, visibility 2.5s ease !important;
	transition: opacity 2.5s ease, visibility 2.5s ease !important;
	position: fixed;
	display: none;
	top: 50px;
	left: 10px;
	right: 10px;
	padding: 5px 10px;
	font-size: 17px;
	line-height: 1.15em;
	letter-spacing: 1px;
	z-index: 999999999;
}

.code_form {
	display: none;
}

.pswp__caption {
	height: auto;
	position: fixed;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    bottom: 10px;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background: rgba(200,200,200,.1);
	-webkit-border-radius: 8px;
    border-radius: 8px;
    height: 40px;
    width: 80px;
    padding: 10px;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.caption-open .pswp__caption {
	height: 400px;
    max-height: 400px;
	width: 250px;
	-webkit-border-radius: 8px;
    border-radius: 8px;
}
.toggle-caption,
#filter-mobile {
	background: transparent;
	-webkit-transition: .5s ease;
    transition: .5s ease;
	-webkit-border-radius: 8px;
    border-radius: 8px;
	position: fixed;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80px;
	height: 40px;
	color: #ffffff;
	border: none;
	font-size: 14px;
	padding: 4px 0 0 0;
	z-index: 99999;
}
.toggle-caption {
	padding: 0;
}
#filter-mobile {
	-webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background: rgba(200,200,200,.1);
	-webkit-border-radius: 8px;
    border-radius: 8px;
}
#filter-mobile ul {
	list-style: none;
	padding: 0;
}
.caption-open .toggle-caption {
}
.caption_list {
	text-shadow: none;
	font-size: 14px;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	color: #000000;
	height: 340px;
	overflow: auto;
}
.caption-open .caption_list {
	visibility: visible;
	opacity: 1;
	-webkit-transition: .5s .5s;
	transition: .5s .5s;
}
.caption_list .thumbnails {
	display: -webkit-flex;
	display: flex;
	margin: 20px auto 30px auto;
	width: 100%;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}

.viewport .work img {
	-webkit-transition: filter .4s ease-in-out;
    transition: filter .4s ease-in-out;
	filter: blur(7px);
}
.viewport #layer_back .work img {
	filter: blur(7px);
}
/*
.viewport #layer_back .work img {
	filter: blur(15px);
}
*/

_::-webkit-full-page-media, _:future, :root .viewport .work {
		-webkit-transform: translate3d(0, 0, 0);
}


.desktop_coordinates {
	display: none;
	background: #ffffff;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 1.5rem;
	z-index: 9999999;
	color: #000000;
}
.home .desktop_coordinates {
	display: block;
}
body.page-template-dark_mode .desktop_coordinates,
body.is_dark_mode .desktop_coordinates {
	background: #000000;
	color: #c1c1c1;
}
.is-owner .filter_minted,
/*.wallet-connected .filter_minted,
.wallet-connected .filter_platforms,*/
.is-owner .filter_platforms {
	top: 50px;
}
.all_filters {
    mix-blend-mode: difference;
	position: fixed;
	top: 51px;
	left: 10px;
	z-index: 99999999;
	display: flex;
	font-size: 17px;
	line-height: 1.15em;
	letter-spacing: 1px;
}
.filter_container {
	align-items: baseline;
	display: flex;
	position: relative;
}
body.light-mode .filter_container:after {
	color: #000000;
}
.filter_container:after {
    content: '/';
    margin: 0 10px 0 10px;
    display: inline-block;
    padding-top: 2px;
}
.filter_container_search:after {
    display: none;
}
.filter_minted,
.filter_platforms,
.filter_container_search {
	display: none;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.15em;
	letter-spacing: 1px;
	z-index: 99999999;
}
.filter_container_search {
    transition: opacity 2.5s ease, visibility 2.5s ease !important;
}
.filter_minted span,
.filter_platforms span {
	//text-decoration: underline;
}
.filter_container_search form {
	position: relative;
	margin: 0 0 0 10px;
}
.filter_container_search input {
	background: transparent;
	border: none;
	color: #c1c1c1;
	cursor: text;
	height: 19px;
	margin: -1px 0 0;
	width: 150px;
	line-height: 1.15em;
	letter-spacing: 1px;
	z-index: 99999999;
	-webkit-user-select: text;
}
.filter_container_search input:focus {
	outline: 0;
}
.light-mode .filter_container_search input {
	color: #000000;
}
.light-mode .filter_container_search form:after {
	background: #000000;
}
.filter_container_search form:after {
	background: #c1c1c1;
	content: "";
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 100%;
}
.filter-selector {
	background: rgba(0,0,0,.55);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	height: 0;
	width: 0;
	overflow: hidden;
	-webkit-transition: .3s ease;
    transition: .3s ease;
    top: -10px;
	z-index: 999999999;
	left: 102px;

	pointer-events: none;
}
.filter-selector.open {
	pointer-events: all;
}
.filter-selector li {
	cursor: pointer;
}
.filter-selector li:hover {
	text-decoration: underline;
}
.filter_container_platforms .filter-selector {
	left: 46px;
}
.light-mode .filter-selector{
	background: rgba(50,50,50,.1);
}
.filter-selector {
    position: fixed;
    font-size: 17px;
    line-height: 1.15em;
    letter-spacing: 1px;
}
@-moz-document url-prefix() {
	.filter-selector {
		background: rgba(50,50,50,1);
	}
	.light-mode .filter-selector {
		background: rgba(200,200,200,1);
	}
}
.filter-selector a:hover {
	text-decoration: underline;
}
.filter-selector ul {
	list-style: none;
	margin: 0;
	padding: 10px 10px 7px 10px;
	visibility: hidden;
	opacity: 0;
}
.filter-open .filter-selector ul {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity .3s .3s, visibility .3s .3s;
	transition: opacity .3s .3s, visibility .3s .3s;
}
.filter_minted a,
.filter_platforms a {
	color: #000000;
}
body.is_dark_mode .filter_minted a,
body.is_dark_mode .filter_platforms a {
	color: #c1c1c1;
}
#minted_order {
	cursor: pointer;
	outline: none;
	border: none;
	font-size: 17px;
	line-height: 20px;
	text-decoration: underline;
	letter-spacing: 1px;
	background: transparent;
	-o-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.is_dark_mode #minted_order {
	color: #c1c1c1;
}
/*
.coordinates {
	display: none;
}
*/
.home .coordinates,
body.light-mode .coordinates {
	display: initial;
}
.archive header input {
	color: #c1c1c1;
	box-shadow: #c1c1c1;
}

img.lazy {
	opacity: 0;
}
img:not(.initial) {
	transition: opacity 1s;
}
img.initial,
img.loaded,
img.error {
	opacity: 1;
}
img:not([src]) {
	visibility: hidden;
}

.archive {
	background: #000000;
	color: #c1c1c1;
}
.archive a {
	color: #c1c1c1;
}
.archive-grid {
	overflow: hidden;
	padding-top: 40px;
	position: relative;
}
.archive-grid .container {
	display: flex;
	//padding: 0 .5% 40px .5%;
	padding: 0 5px 40px 5px;
	position: relative;
	flex-flow: wrap;
	z-index: 1;
}

.minted-masonry .archive-grid .container {
    column-count: 2;
    column-gap: 11px;
    display: block;
    padding: 0 11px;
}

/*
body.my-collection .archive-grid .container {
    flex-direction: column;
}
*/
.archive-grid .work {
	position: relative;
	padding: 0 5.5px 0 5.5px;
	width: 50%;
	line-height: 12px;
}

.minted-masonry .archive-grid .work {
    padding: 0;
    width: 100%;
}

.archive-grid .work img {
	vertical-align: middle;
	width: 100%;
}
.archive-grid .work .box {
	padding-top: 11px;
}
.cursor-none {
	pointer-events: none;
}
.is_dark_mode .archive-grid .work .box,
.is_dark_mode .archive-grid .work .blank,
.is_dark_mode .grid_placeholder>div>div,
.is_dark_mode .archive-grid .work .blank .placeholder {
	border-color: #2d2d2d;
}
.is_dark_mode .archive-grid .work .blank:after,
.is_dark_mode .archive-grid .work .blank .placeholder:after,
.is_dark_mode .work .thumbnail:before,
.is_dark_mode .work .thumbnail:after {
	background: #2d2d2d;
}
.archive-grid .work .number {
	display: inline-block;
	margin-bottom: 5px;
	min-height: 7px;
}
.archive-grid .work .thumbnail,
.archive-grid .work .blank {
	background: transparent center no-repeat;
	cursor: pointer;
	background-size: cover;
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
	width: 100%;
}
/*.my-collection .archive-grid .work .thumbnail,*/
.minted-masonry .archive-grid .work .thumbnail {
	height: auto;
	padding: 0;
}
.archive-grid .work .blank {
	cursor: default;
	background: transparent;
	padding: 25px 0 0 0;
    height: auto;
}
.archive-grid .work .blank .placeholder {
	background: transparent;
	border-top: 1px solid #cbcbcb;
	border-bottom: 1px solid #cbcbcb;
	position: relative;
	height: 0;
    padding-bottom: calc(100% - 2px);
    position: relative;
    overflow: hidden;
}
.archive-grid .work .noise,
.masonry .project .noise {
	display: block !important;
	position: absolute;
	opacity: 0;
}
.noise {
	transition: .5s ease;
	background: url(img/noise.png) center;
	left: -50%;
	top: -50%;
	right: -50%;
	bottom: -50%;
}
.masonry .project:hover .noise,
.archive-grid .work:hover .noise {
	z-index: 9;
	-webkit-animation: grain .5s steps(8) infinite;
	animation: grain .5s steps(8) infinite;
	opacity: .4;
}
.archive-grid .work .blank .placeholder {
	text-align: center;
	position: relative;
}
.archive-grid .work .blank .placeholder p {
	color: #c1c1c1;
	text-transform: uppercase;
	opacity: 0;
	position: absolute;
	left: 0px;
	top: 9px;
	-webkit-transition: .2s ease;
	transition: .2s ease;
	margin: 0;
}
.light-mode .archive-grid .work .blank .placeholder p {
	color: #000000;
}
.archive-grid .work .blank .placeholder:hover p {
	opacity: 1;
}
.archive-grid .work .blank .placeholder:after {
	content: "";
	background: #cbcbcb;
	height: 145%;
	position: absolute;
	-webkit-transform: rotate(45.3deg);
	transform: rotate(45.3deg);
	transform-origin: top;
	top: -1px;
	right: -1px;
	width: 1px;
}
.menu_color_mode {
	padding-top: 2px;
}
.menu_color_mode button {
	background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
#mobile-header .menu_color_mode svg,
#mobile-header .menu_color_mode button svg {
	width: 15px;
}
.light-mode #mobile-header .menu_color_mode svg path {
	fill: #000000;
}

.grid_placeholder {
	display: flex;
	padding: 0 5px 0 5px;
	position: absolute;
	top: 92px;
	left: 0;
	right: 0;
	bottom: 41px;
	flex-flow: wrap;
}
.grid_placeholder>div {
    padding: 0 5.5px 0 5.5px;
    height: 100%;
    width: 50%;
}
.grid_placeholder>div>div {
	border-left: 1px solid #cbcbcb;
    border-right: 1px solid #cbcbcb;
    height: 100%;
    width: 100%;
}
.grid_placeholder>div:last-child {
	display: none;
}

.must-accept-terms {
	overflow: hidden;
}
.must-accept-terms #terms-popup {
	visibility: visible;
	opacity: 1;
}
#terms-popup {
	visibility: hidden;
	opacity: 0;
	color: #c1c1c1;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,.7);
	height: 100vh;
	-webkit-transition: 1s ease;
	transition: 1s ease;
	font-size: 13px;
    line-height: 1.1em;
    letter-spacing: 1px;
	width: 100%;
	z-index: 9999999;
}

@media only screen and (max-width:640px) {

	#terms-popup {
		align-items: baseline;
		padding-top: 20px;
	}

}
#terms-popup .wrapper {
	max-width: 500px;
	max-height: 80vh;
	width: 90%;
}
@media(min-height: 900px) {
	#terms-popup .wrapper {
		height: 80vh;
		max-width: 750px;
		max-height: 1200px;
	}
	#terms-popup .container {
	    max-height: 1200px;
	}
}
#terms-popup a {
	color: #c1c1c1;
	font-size: 17px;
    line-height: 1.15em;
}
#terms-popup .container {
	border-bottom: 1px solid #2d2d2d;
	border-top: 1px solid #2d2d2d;
	max-height: 80vh;
	overflow: hidden;
	position: relative;
}
#terms-popup .header {
	border-bottom: 1px solid #2d2d2d;
	font-size: 17px;
    line-height: 1.15em;
    letter-spacing: 1px;
	padding: 15px 15px 2px 0;
	font-size: 11px;
	line-height: 12px;
	text-transform: uppercase;
}
.is_dark_mode #terms-popup .container,
.is_dark_mode #terms-popup .header {
	border-color: #2d2d2d;
}
#terms-popup .content {
	background: rgba(0,0,0,.5);
	border: 1px solid #2d2d2d;
	border-top: none;
	border-bottom: none;
	padding: 0 15px 20px 15px;
	height: calc(80vh - 50px);
	overflow: auto;
}
#terms-popup .footer {
	display: -webkit-flex;
	display: flex;
	margin: 0 0;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	width: 100%;
}
#terms-popup .footer button {
	background: transparent;
	cursor: pointer;
	font-size: 14px;
	line-height: 15px;
	font-weight: 300;
	color: #c1c1c1;
	border: none;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 10px 0 5px 0;
	margin: 0 0 0 20px;
	text-transform: uppercase;
}
#terms-popup .footer button:hover {
	text-decoration: underline;
}
#terms-popup .footer button#decline-terms {
	color: grey;
	border-color: grey;
}

.header-shadow {
	display: none;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: rgb(0,0,0);
background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 4%, rgba(0,0,0,0) 100%);
}

/* new filter */
.page-template-minted-works-masonry .all_filters {
	display: none;
}
.page-template-minted-works-masonry .archive-grid {
	padding-top: 270px;
}
.page-template-minted-works-masonry .checkbox_filters_container {
	position: fixed;
	font-size: 17px;
	line-height: 1.15em;
	letter-spacing: 1px;
	top: 55px;
	left: 10px;
	display: flex;
	widows: 800px;
	z-index: 999999;
}
.page-template-minted-works-masonry .checkbox_filters_container .checkbox_filter {
	margin: 0 20px 0 0;
}
.page-template-minted-works-masonry .checkbox_filter ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.page-template-minted-works-masonry .checkbox_filter label {
	cursor: pointer;
	line-height: 1.1;
	display: grid;
	grid-template-columns: 1em auto;
	gap: 1px;
}
.page-template-minted-works-masonry .checkbox_filter input[type="checkbox"],
.page-template-minted-works-masonry .checkbox_filter input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	margin: 0;
	font: inherit;

	border-radius: 0;
	transform: translateY(3px);

	display: grid;
	place-content: center;

	background: transparent;
	-webkit-box-shadow: 0px 0px 0px .5px inset #fff;
	box-shadow: 0px 0px 0px .5px inset #fff;
	margin-right: 5px;
	height: 7px;
	width: 7px;
}
/* end new filter */

input[type="checkbox"]::before,
input[type="radio"]::before {
content: "";
width: 3px;
height: 3px;
clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
transform: scale(0);
transform-origin: bottom left;
transition: 120ms transform ease-in-out;
background-color: #fff;
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
transform: scale(1);
}

@media (min-width: 810px) {

	/*
	body.minted-work.is_dark_mode:after,
	body.news.is_dark_mode:after,
	body.my-collection.is_dark_mode:after {
		background: #000000 url(img/black_2.jpg) center;
		background-size: 120%;
	}
	body.minted-work.light-mode:after,
	body.news.light-mode:after,
	body.my-collection.light-mode:after {
		background-image: url(img/white.jpg);
		background-size: 120%;
	}
	*/
	body.news,
	body.journal {
		padding-top: 100px;
	}

	header,
	header a,
	.code_form,
	.filter_minted,
	.filter_platforms,
	#download_typo {
		mix-blend-mode: difference;
		color: #c1c1c1;
	}
	.caption_list,
	.pswp__caption,
	.pswp__caption a {
		color: #c1c1c1;
	}
	/*
	.light-mode header,
	.light-mode header a,
	.light-mode .code_form,
	.light-mode #download_typo,
	.light-mode .all_filters,
	.light-mode .filter_container div {
		mix-blend-mode: difference;
		color: #c1c1c1;
	}
	*/
	.light-mode .caption_list,
	.light-mode .pswp__caption,
	.light-mode .pswp__caption a {
		color: #000000;
	}
	.light-mode .code_form input[type="text"] {
		-webkit-box-shadow: inset 0px -1px 0px 0px #000000;
		box-shadow: inset 0px -1px 0px 0px #000000;
	}

	header,
    .filter-selector {
		-webkit-border-radius: 0;
		border-radius: 0;
		font-size: 15px;
    }
    header {
      	align-items: flex-start;
      	display: flex;
      	justify-content: space-between;
      	-webkit-transition: .2s ease !important;
      	transition: .2s ease !important;
    }
    body.light-mode header .actions {
    	background: #ffffff;
    }
    header .actions {
    	align-items: baseline;
    	background: #000000;
    	display: flex;
    	list-style: none;
    	margin: 0;
    	padding: 0;
    	gap: 10px;
    }
    header .actions svg {
    	cursor: pointer;
    	vertical-align: middle;
    	width: 17px;
    }
    .hide-header header {
      	transform: translate3d(0, -100%, 0);
    }

	.photoswipe-opened.hide_info .pswp__button,
	.photoswipe-opened.hide_info header,
	.photoswipe-opened.hide_info .code_form,
	.photoswipe-opened.hide_info #download_typo,
	.photoswipe-opened.hide_info .coordinates,
	.photoswipe-opened.hide_info .filter_minted,
	.photoswipe-opened.hide_info .filter_platforms,
	.photoswipe-opened.hide_info .pswp__caption,
	.photoswipe-opened.hide_info .pswp__button {
		opacity: 0 !important;
		visibility: hidden;
	}

	#terms-popup {
		font-size: 13px;
	    line-height: 1.1em;
	    letter-spacing: 1px;
	}
	#terms-popup .content::-webkit-scrollbar {
		background: transparent;
		width: 1px;
	}
	#terms-popup .content::-webkit-scrollbar-thumb {
		background: #ffffff;
	}

	#mobile-head,
	.toggle-caption,
	#filter-mobile {
		display: none;
	}
	.code_form,
	.filter_minted,
	.filter_platforms {
		display: block;
	}
	.filter_container_search {
		display: flex;
	}
	.filter-selector.open {
		height: 112px;
		width: 225px;
		visibility: visible;
		opacity: 1;
		//-webkit-backdrop-filter: saturate(180%) blur(20px);
		//backdrop-filter: saturate(180%) blur(20px);
		background: transparent;
	}
	body.light-mode .filter-selector li {
		background: #ffffff;
	}
	.filter-selector li {
		background: #000000;
		margin: 0 0 0 0;
		padding: 0 0 2px 0;
		width: fit-content;
	}
	.filter-selector.open[data-filter="platforms"] {
		height: 300px;
	}
	.filter-selector[data-filter="platforms"] {
	    top: 48px;
        left: 280px;
	}
	.filter-selector {
	    left: 112px;
	    top: 48px;
	    -webkit-transition: .0s;
	    transition: .0s;
	    padding: 4.5px 0 0 0;
	}
	.filter-open .filter-selector ul {
		-webkit-transition: .0s;
	    transition: .0s;
	    padding: 0;
	}
	.checkbox_filter li {
		background: #000000;
		width: fit-content;
		padding-left: 5px;
	}
	.views-selector {
	    left: 0;
	    height: 85px !important;
	    width: 125px !important;
	}
	.minted-state-selector {
	    left: 132px;
	    height: 56px !important;
	    width: 100px !important;
	}
	.cronological-selector {
	    left: 230px;
	    height: 56px !important;
	    width: 95px !important;
	}

	@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
	  .code_form {display: none;}
	}
	@media only screen 
	and (min-device-width: 1366px) 
	and (max-device-width: 1366px) 
	and (orientation: landscape) 
	and (-webkit-min-device-pixel-ratio: 2) {
		.code_form {display: none;}
	}
	@media only screen 
	and (min-device-width: 1024px) 
	and (max-device-width: 1366px)
	and (-webkit-min-device-pixel-ratio: 2) {
		.code_form {display: none;}
	}
	@media only screen 
	and (min-device-width: 1112px) 
	and (max-device-width: 1112px) 
	and (orientation: landscape) 
	and (-webkit-min-device-pixel-ratio: 2) {
		.code_form {display: none;}
	}
	@media only screen 
	and (min-device-width: 834px) 
	and (max-device-width: 1112px)
	and (-webkit-min-device-pixel-ratio: 2) {
		.code_form {display: none;}
	}
	@media only screen 
	and (min-device-width: 768px) 
	and (max-device-width: 1024px) 
	and (orientation: landscape) 
	and (-webkit-min-device-pixel-ratio: 2) {
		.code_form {display: none;}
	}

	header {
		background: transparent;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		left: 0;
		right: 0;
		top: 0;
		z-index: 9999999;
	}
	header div:last-child {
		/*
		position: absolute;
		top: 10px;
		right: 0;
		*/
		align-items: center;
		display: flex;
		position: relative;
		top: initial;
		left: initial;
	}
	header div.filter_container_search {
		align-items: end;
	}

	#mobile-header {
		display: none;
	}

	.viewport .work:hover img,
	.viewport #layer_back .work:hover img {
		filter: blur(0);
	}

	.pswp__caption {
		padding: 0;
		width: inherit;
		top: 15%;
		left: 10px;
		bottom: inherit;
		background: transparent;
		color: #000000;
		opacity: 1;
		visibility: visible;
		-webkit-backdrop-filter: none;
	    backdrop-filter: none;
	    background: transparent;
	    -webkit-border-radius: 0;
	    border-radius: 0;
	    height: auto;
	    margin: 0;
	    width: 280px;
	}
	.light-mode .pswp__caption {
		background: transparent;
	}
	.caption_list {
		text-align: left;
		height: auto;
		max-width: inherit;
		max-height: inherit;
		font-size: 17px;
		opacity: 1;
		visibility: inherit;
		height: auto;
	}
	.landscape .caption_list span {
		background: #000000;
		padding-top: 2px;
	}
	.landscape .pswp__caption,
	.landscape header,
	.landscape .filter_minted,
	.landscape .filter_platforms,
	.landscape .code_form,
	.light-mode.landscape header a,
	.landscape .all_filters {
		mix-blend-mode: normal;
	}
	.landscape header span,
	.landscape header a,
	.landscape .filter_minted,
	.landscape .filter_platforms,
	.landscape .code_form {
		background: #000000;
		padding-top: 4px;
	}
	.landscape .filter_container_search {
	    background: #000000;
	}
	.light-mode.landscape .filter_container_search {
	    background: #ffffff;
	    color: #000000;
	}
	.light-mode.landscape header span,
	.light-mode.landscape header a,
	.light-mode.landscape .filter_minted,
	.light-mode.landscape .filter_platforms,
	.light-mode.landscape .code_form,
	.light-mode.landscape .caption_list span,
	.light-mode.landscape .code_form input[type="submit"],
	.light-mode.landscape .code_form input[type="text"] {
		background: #ffffff;
		color: #000000;
	}
	.landscape .filter_minted,
	.landscape .filter_platforms {
		margin-top: -4px;
	}
	.pswp__caption__center {
		font-size: 17px;
	    line-height: 1.15em;
	    letter-spacing: 1px;
		padding: 0;
		max-width: inherit;
	}
	.caption_list .thumbnails {
		-webkit-justify-content: inherit;
		justify-content: inherit;
		max-width: 300px;
		margin: 20px -5px 0 -5px;
	}

	body.light-mode header span,
	body.light-mode header a,
	body.light-mode .filter_minted,
	body.light-mode .filter_platforms,
	body.light-mode .code_form,
	body.light-mode .filter_container_search,
	body.light-mode nav li {
		background: #ffffff;
		color: #000000;
	}

	header span,
	header a,
	.filter_minted,
	.filter_platforms,
	.code_form,
	.filter_container_search,
	nav li {
		background: #000000;
		padding-top: 3px;
		line-height: 14px;
	}
	header a {
		display: inline-block !important;
	}
	header a.menu_home {
		padding-top: 5px;
	}
	header, header a, .code_form, .filter_minted, .filter_platforms, #download_typo,
	.all_filters {
		mix-blend-mode: unset;
	}
	.all_filters {
		background: #000000;
		top: 56px;
	}
	body.light-mode .all_filters {
		background: #ffffff;
	}
	header>div {
		width: fit-content;
		margin-top: 0;
		padding-top: 4px;
	}
	header>div:first-child {
		margin-top: 0;
	}

	.pswp__caption,
	.pswp__button {
		-webkit-transition: opacity 2.5s ease, visibility 2.5s ease !important;
		transition: opacity 2.5s ease, visibility 2.5s ease !important;
	}
	.photoswipe-opened .pswp__ui--idle .pswp__caption,
	.photoswipe-opened .pswp__ui--idle .pswp__button {
		-webkit-transition: opacity 2.5s ease, visibility 2.5s ease !important;
		transition: opacity 2.5s ease, visibility 2.5s ease !important;
	}
	.pswp__caption,
	.pswp__top-bar,
	.pswp--has_mouse .pswp__button--arrow--left,
	.pswp--has_mouse .pswp__button--arrow--right {
		-webkit-transition: none;
		transition: none;
	}

	#the_content {
		font-size: 15px;
		line-height: 1.15em;
		letter-spacing: 1px;
	}

}

@media ( min-width: 768px ) {

	.archive-grid .work,
	.grid_placeholder div {
		width: 33.33%;
	}
	.minted-masonry .archive-grid .container {
	    column-count: 3;
	}
	
	.grid_placeholder.active-1 div {
	    display: none;
	}
	.grid_placeholder.active-1 div:first-child {
	    display: block;
	}
	/*
	.archive-grid .work-1 .box,
	.archive-grid .work-2 .box,
	.archive-grid .work-3 .box {
		padding-top: 80px;
	}
	.is-owner .archive-grid .work-1 .box,
	.is-owner .archive-grid .work-2 .box,
	.is-owner .archive-grid .work-3 .box {
		padding-top: 100px;
	}
	*/
	.archive-grid {
		padding-top: 75px;
	}
	/* .wallet-connected .archive-grid  */
	.is-owner .archive-grid {
		padding-top: 50px;
	}
	.my-collection.wallet-connected .archive-grid {
		padding-top: 50px;
	}

}

@media ( min-width: 1000px ) {

	.archive-grid .work,
	.grid_placeholder div {
		width: 25%;
	}
	.minted-masonry .archive-grid .container {
	    column-count: 4;
	}
	/*
	.archive-grid .work-1 .box,
	.archive-grid .work-2 .box,
	.archive-grid .work-3 .box,
	.archive-grid .work-4 .box {
		padding-top: 80px;
	}
	.is-owner .archive-grid .work-1 .box,
	.is-owner .archive-grid .work-2 .box,
	.is-owner .archive-grid .work-3 .box,
	.is-owner .archive-grid .work-4 .box {
		padding-top: 100px;
	}
	*/

}

@media ( min-width: 1380px ) {

	.archive-grid .work,
	.grid_placeholder div {
    	width: 16.66%;
	}
	.minted-masonry .archive-grid .container {
	    column-count: 6;
	}
	/*
	.my-collection .archive-grid .work,
	.my-collection .grid_placeholder div {
		width: 33.33%;
	}
	*/
	/*
	.archive-grid .work-1 .box,
	.archive-grid .work-2 .box,
	.archive-grid .work-3 .box,
	.archive-grid .work-4 .box,
	.archive-grid .work-5 .box,
	.archive-grid .work-6 .box {
		padding-top: 80px;
	}
	.is-owner .archive-grid .work-1 .box,
	.is-owner .archive-grid .work-2 .box,
	.is-owner .archive-grid .work-3 .box,
	.is-owner .archive-grid .work-4 .box,
	.is-owner .archive-grid .work-5 .box,
	.is-owner .archive-grid .work-6 .box {
		padding-top: 100px;
	}
	*/

}

@media ( min-width: 1720px ) {

	.archive-grid .work,
	.grid_placeholder div {
    	width: 14.2%;
	}
	.minted-masonry .archive-grid .container {
	    column-count: 6;
	}
	.grid_placeholder>div:last-child {
		display: block;
	}
	/*
	.my-collection .archive-grid .work,
	.my-collection .grid_placeholder div {
		width: 25%;
	}
	*/

}


@media ( min-width: 2500px ) {

	#terms-popup,
	.loader {
		font-size: 22px;
		line-height: 1.4em;
	}
	#terms-popup .footer button {
		font-size: 17px;
		line-height: 21px;
	}

	/*
	.my-collection .archive-grid .work,
	.my-collection .grid_placeholder div {
		width: 20%;
	}
	*/
	.minted-state-selector {
	    width: 150px !important;
	}
	header, .filter-selector,
	header, body.grid-view-mode .grid-view, .filter_minted, .filter_platforms, .filter_container_search, .filter-selector {
		font-size: 19px;
	}

}	

/* Noise */
.noise {
	display: none !important;
	display: block;
	position: fixed;
	opacity: .4;
	pointer-events: none;
}
.dark-mode .noise,
.is_dark_mode .noise {
	background-image: url(img/noise_black.png);
	opacity: .2;
}
.archive .noise {
	opacity: .2;
}
.work a {
    display: block;
}
.work .thumbnail {
	-webkit-transition: .2s ease;
	transition: .2s ease;
	position: relative;
}
.work .thumbnail:hover {
	opacity: 0.75;
}
/*
.my-collection .work .thumbnail {
	overflow: inherit;
}
.my-collection .work .thumbnail:hover {
	opacity: 1;
}
*/
.magnify > .magnify-lens {
	border: 1px solid #333333;
	box-shadow: none;
}
.work .thumbnail:before,
.work .thumbnail:after {
	background: #cbcbcb;
	height: 1px;
	content: "";
	//display: block;
	display: none;
	position: absolute;
	width: 100%;
	z-index: -1;
}
/*
.my-collection .work .thumbnail:after {
	display: none;
}
*/
.work .thumbnail:before {
	top: 1px;
}
.work .thumbnail:after {
	bottom: 1px;
}
.view_details {
	text-transform: uppercase;
	display: inline-block;
	padding: 10px 0;
	cursor: pointer;
	user-select: none;
}
.view_details:hover,
.download_hires:hover {
	text-decoration: underline;
}
.view_details {
	color: #c1c1c1;
}
.light-mode .view_details {
	color: #000000;
}
.download_hires {
	color: #c1c1c1;
	text-transform: uppercase;
	padding: 10px 0;
	margin: 0 0 0 50px;
	bottom: 0;
}
.work a.download_hires {
      display: inline;
}
.light-mode .download_hires {
	color: #000000;
}
@-webkit-keyframes grain {
	0%,100% {
	    -webkit-transform: translate(0,0);
	    transform: translate(0,0);
	}
	10% {
	    -webkit-transform: translate(-5%,-10%);
	    transform: translate(-5%,-10%);
	}
	20% {
	    -webkit-transform: translate(-15%,5%);
	    transform: translate(-15%,5%);
	}
	30% {
	    -webkit-transform: translate(7%,-15%);
	    transform: translate(7%,-15%);
	}
	40% {
	    -webkit-transform: translate(-5%,25%);
	    transform: translate(-5%,25%);
	}
	50% {
	    -webkit-transform: translate(-15%,10%);
	    transform: translate(-15%,10%);
	}
	60% {
	    -webkit-transform: translate(15%,0);
	    transform: translate(15%,0);
	}
	70% {
	    -webkit-transform: translate(0,15%);
	    transform: translate(0,15%);
	}
	80% {
	    -webkit-transform: translate(3%,25%);
	    transform: translate(3%,25%);
	}
	90% {
	    -webkit-transform: translate(-10%,10%);
	    transform: translate(-10%,10%);
	}
}
@keyframes grain {
	0%,100% {
	    -webkit-transform: translate(0,0);
	    transform: translate(0,0);
	}
	10% {
	    -webkit-transform: translate(-5%,-10%);
	    transform: translate(-5%,-10%);
	}
	20% {
	    -webkit-transform: translate(-15%,5%);
	    transform: translate(-15%,5%);
	}
	30% {
	    -webkit-transform: translate(7%,-15%);
	    transform: translate(7%,-15%);
	}
	40% {
	    -webkit-transform: translate(-5%,25%);
	    transform: translate(-5%,25%);
	}
	50% {
	    -webkit-transform: translate(-15%,10%);
	    transform: translate(-15%,10%);
	}
	60% {
	    -webkit-transform: translate(15%,0);
	    transform: translate(15%,0);
	}
	70% {
	    -webkit-transform: translate(0,15%);
	    transform: translate(0,15%);
	}
	80% {
	    -webkit-transform: translate(3%,25%);
	    transform: translate(3%,25%);
	}
	90% {
	    -webkit-transform: translate(-10%,10%);
	    transform: translate(-10%,10%);
	}
}

.nipple .back,
.nipple .front {
	background: transparent !important;
	border: 1px solid transparent;
}

/* PhotoSwipe */
body .pswp__container, .pswp__zoom-wrap {
	touch-action: auto;
}
.pswp__bg {
	background: #ffffff;
	-webkit-transition: .5s ease;
	transition: .5s ease;
}
body.page-template-dark_mode .pswp__bg,
body.is_dark_mode .pswp__bg {
	background: #000000;
}
.pswp__container {
	cursor: url(img/icons/cursor_cross.png) 16 16, pointer;
}
body.page-template-dark_mode .pswp__container,
body.is_dark_mode .pswp__container {
	cursor: url(img/icons/cursor_cross_white.png) 16 16, pointer;
}
.pswp__container video {
	/*
	max-height: 100vh;
	max-width: 70%;
	margin: 0 auto;
	display: block;
	pointer-events: none;
	top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    */
	object-fit: contain;
	max-width: 90%;
	height: 100%;
	margin: 0 auto;
	display: block;
	pointer-events: none;
}
.pswp__ui .pswp__top-bar {
	opacity: 0;
}
.pswp__ui--fit .pswp__caption {
	background: transparent;
}
.pswp__ui--hidden .pswp__caption {
	opacity: 1;
}
.pswp__caption,
.pswp__caption a {
	color: #000000;
}
.pswp__caption a:hover {
	text-decoration: underline;
}
.archive .pswp__caption img {
	display: none;
	width: 10px;
	position: fixed;
	top: 10px;
	left: 10px;
}
.pswp__img--placeholder--blank {
	opacity: .2;
}
.pswp--has_mouse .pswp__button--arrow--left {
	cursor: url(img/icons/cursor_left.png) 16 16, pointer;
}
.pswp--has_mouse .pswp__button--arrow--right {
	cursor: url(img/icons/cursor_right.png) 16 16, pointer;
}
body.page-template-dark_mode .pswp--has_mouse .pswp__button--arrow--left,
body.is_dark_mode .pswp--has_mouse .pswp__button--arrow--left {
	cursor: url(img/icons/cursor_left_white.png) 16 16, pointer;	
}
body.page-template-dark_mode .pswp--has_mouse .pswp__button--arrow--right,
body.is_dark_mode .pswp--has_mouse .pswp__button--arrow--right {
	cursor: url(img/icons/cursor_right_white.png) 16 16, pointer;
}
.pswp__button--arrow--left,
.pswp__button--arrow--right {
	background: center no-repeat;
	background-size: cover !important;
	opacity: 1;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	top: inherit;
	bottom: 10%;
	height: 65px;
	width: 60px;
}
.pswp__button--arrow--left {
	left: 10px;
}
.pswp__button--arrow--right {
	right: 10px;
}
.pswp__button--arrow--left span {
	position: absolute;
    bottom: -20px;
    left: 0;
    color: #000000;
    font-size: 1.2rem;
}
.pswp__button--arrow--right span {
	position: absolute;
    bottom: -20px;
    right: 0;
    color: #000000;
    font-size: 1.2rem;
}
body.page-template-dark_mode .pswp__button--arrow--left span,
body.is_dark_mode .pswp__button--arrow--left span,
body.page-template-dark_mode .pswp__button--arrow--right span,
body.is_dark_mode .pswp__button--arrow--right span,
body.is_dark_mode .glitch {
	color: #c1c1c1;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
	display: none;
}
.caption_list .cell span {
	cursor: default;
}


.pswp__img--placeholder {
	filter: blur(10px);
}

body.page-template-dark_mode .caption_list,
body.is_dark_mode .caption_list,
body.is_dark_mode .pswp__caption a {
	color: #c1c1c1;
}
.caption_list .caption_grid {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}
.caption_list .caption_grid div {
	width: 50%;
}

.pswp__container_transition {
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--zoom-allowed .pswp__img {
	cursor: url(img/icons/cursor_zoom.png) 16 16, zoom-in;
}
body.page-template-dark_mode .pswp--zoom-allowed .pswp__img,
body.is_dark_mode .pswp--zoom-allowed .pswp__img {
	cursor: url(img/icons/cursor_zoom_white.png) 16 16, zoom-in;
}

.caption_list .thumbnails div.active {
	border: 2px solid #ffffff;
}
body.page-template-dark_mode .caption_list .thumbnails div.active {
	border: 2px solid #c1c1c1;
}
.caption_list .thumbnails div {
	background: center no-repeat;
	background-size: cover;
	cursor: pointer;
	user-select: none;
	margin: 5px;
	height: 40px;
	width: 40px;
}

.photoswiper_zoom-in .pswp__caption,
.photoswiper_zoom-in .pswp__button,
.photoswiper_zoom-in header,
.photoswiper_zoom-in .code_form,
.photoswiper_zoom-in #download_typo,
.photoswiper_zoom-in .coordinates,
.photoswiper_zoom-in .filter_minted,
.photoswiper_zoom-in .filter_platforms,
.photoswiper_zoom-in .filter_container_search,
.photoswipe-opened .pswp__ui--idle .pswp__caption,
.photoswipe-opened .pswp__ui--idle .pswp__button,
.photoswiper_zoom-in .pswp__caption,
.photoswipe-idle header,
.photoswipe-idle .filter_minted,
.photoswipe-idle .filter_platforms,
.photoswipe-idle .code_form,
.photoswipe-idle .filter_container_search {
	opacity: 0 !important;
	visibility: hidden;
}

.pswp__img--placeholder {
    -webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}

.filter_minted,
.filter_platforms,
.coordinates,
.code_form {
	-webkit-transition: opacity 2.5s ease, visibility 2.5s ease !important;
	transition: opacity 2.5s ease, visibility 2.5s ease !important;
}

.news,
.journal {
	padding: 50px 0 0 0;
}
#the_content {
	color: #000000;
	font-size: 15px;
	line-height: 1.15em;
	letter-spacing: 1px;
	margin: 0 0 40px 0;
	padding: 0 10px;
	width: 95%;
}
@media(min-width: 650px) {
	#the_content {
		max-width: 900px;
		width: 60%;
	}
}
@media(min-width: 2000px) {
	#the_content {
		width: 85%;
	}
}
#the_content h1,
#the_content h2,
#the_content h3,
#the_content h4,
#the_content h5,
#the_content h6 {
	font-weight: normal;
}
.news #the_content {
	word-break: break-word;
}
.is_dark_mode #the_content,
.is_dark_mode #the_content a {
	color: #c1c1c1;
}
#the_content h2 {
	font-size: 17px;
	font-weight: normal;
	margin: 0;
	text-transform: uppercase;
}
#the_content p {
	margin: 0 0 20px 0;
}
#the_content a {
	color: black;
	text-decoration: underline;
}
#the_content a:hover {
	text-decoration: none;
}
#the_content .link {
	margin: 10px 0 0 0;
}

#compass {
	opacity: 0;
	transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	pointer-events: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}


.glitch,
.fixed-noise {
	font-size: 15px;
	user-select: none;
	position: fixed;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	bottom: 0;
	z-index: 99999999;
	overflow: auto;
	color: #000000;
	opacity: 0;
	visibility: hidden;
	transition: .2s ease-in-out;
	-webkit-transition: .2s ease-in-out;
}
.glitch {
	font-size: 17px;
    line-height: 1.15em;
	text-align: left;
	z-index: 9999999999;
}
.glitch a {
	color: #000000;
	text-decoration: underline;
}
.is_dark_mode .glitch a {
	color: #c1c1c1;
}
.glitch>div {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 10px;
}
.fixed-noise {
	z-index: 99999999;
}
body.floating_head_mode {
	overflow: hidden;
}
body.glitched .glitch,
body.floating_head_mode #floating_head,
body.glitched .fixed-noise,
body.show_head #floating_head {
	opacity: 1;
	visibility: visible;
}
body.show_head #floating_head {
	-webkit-transition: opacity 2.5s ease, visibility 2.5s ease !important;
	transition: opacity 2.5s ease, visibility 2.5s ease !important;
}
#floating_head {
	pointer-events: none;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .2s ease-in-out;
	-webkit-transition: .2s ease-in-out;
	z-index: 999999991;
}

#zone_joystick {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 7;
}
.home #zone_joystick,
.page-template-light-mode #zone_joystick {
	display: block;
}
canvas {
	width: 200px;
	height: 200px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99;
	background-color: transparent;
}

/*
body.my-collection .archive-grid .container {
    display: block;
}
body.my-collection .archive-grid .work {
    margin: 0 auto 50px auto;
    width: fit-content;
}
body.my-collection .archive-grid .work img {
    max-height: 70vh;
}
*/

/* Fail open if JavaScript or an unrelated image never finishes loading. */
.loader {
    pointer-events: none;
    animation: fv-reveal-content 0s 4s forwards;
}
/* Keep the moving home covered until its eager previews have loaded. */
.home .loader,
.page-id-743 .loader {
    animation-delay: 25s;
}
.loaded .loader,
.fv-content-ready .loader {
    animation: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@keyframes fv-reveal-content {
    to { opacity: 0; visibility: hidden; }
}

