/*
	Theme Name: Outer
	Theme URI: https://outer-agency.com
	Version: 1.0.0
	Author: Modem Studio (@modem_studio)
	Author URI: https://modem.studio
*/

/*------------------------------------*\
    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;
}
:root {
  --red: red;
  --grey: silver;
  --background: whitesmoke;
  --text: black;
}
html {
	background-color: var(--background);
	color: var(--text);
}
body {
	font-weight: 400;
	font-size: 30px;
	font-family:'ABCROM', sans-serif;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	max-height: 100%;
	height: auto;
	vertical-align: middle;
}
video:focus { 
	outline:none; 
}
a {
	text-decoration: none;
	color: var(--grey);
}
a:hover {
	text-decoration: none;
	color: var(--text);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid var(--red);
}
.clear{
	clear: both;
}
h1, h2, h3{
	font-size: 1em;
	font-weight: normal;
	margin: 0;
}
h1 a,
h2 a{
	text-decoration: none;
}
.mono{
	font-family: monospace;
}
figcaption,
.small-type{
	font-size: 14px;
	font-family: monospace;
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'ABCROM';
	src:url('fonts/ABCROM-Bold.otf');
	src:url('fonts/ABCROM-Bold.otf') format('otf'),
		url('fonts/ABCROM-Bold.woff') format('woff');
	font-weight:normal;
	font-style:normal;
}

@font-face {
	font-family:'ABCROM-italic';
	src:url('fonts/ABCROM-BoldItalic.otf');
	src:url('fonts/ABCROM-BoldItalic.otf') format('otf'),
		url('fonts/ABCROM-BoldItalic.woff') format('woff');
	font-weight:normal;
	font-style:normal;
}

/*------------------------------------*\
    COOKIE CONSET
\*------------------------------------*/
.tpp__cook_msg{
	display:block;
	color:black;
	position:fixed;
	bottom:20px;
	left: 20px;
	padding: 10px;
	z-index:9999999;
	background-color: var(--background);
	border-radius: 20px;
	max-width: calc(100% - 40px);
	filter: drop-shadow(0px 2px 2px)
}
.tpp__cook_msg #acceptCookie{
	background-color: var(--text);
	border-radius: 50px;
	padding:5px 10px;
	border: none;
	color: var(--background);
}
.tpp__cook_msg #acceptCookie:hover{
	opacity: 0.5;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper: padding-top for menu height */
.wrapper {
	width:100%;
	margin:0 auto;
	padding: 20px;
	position:relative;
	overflow: hidden;
}
/* NAVIGATION */
.nav a {
  text-decoration: none;
}
/* FOOTER */
.footer{
	margin-top: 50px;
}

.column-1{
	flex: 1;
}
.column-2{
	flex: 2;
}
.column-3{
	flex: 3;
}
.highlight{
	color: var(--red);
}
.silver{
	color: var(--grey) !important;
}
/*------------------------------------*\
	STRUCTURE
\*------------------------------------*/

/* ARTISTS */
.artist-list{
	margin: 0;
	padding: 0;
}
.artist-list li{
	list-style: none;
}
.artist-name{
	cursor: pointer;
}
.artist-name:hover{
	color: var(--red);
}
.artist-info{
	display: none;
	max-width: 1400px;
}
.artist-img{
	text-align: right;
}
.artist-desc  p:first-child{
	margin-top: 0;
}
.artist-link{
	margin-right: 5px;
}


.pagination a{
	text-decoration: none;
}
.pagination .current{
	color: red;
}



.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {
}
@media only screen and (min-width:1024px) {
	.columns{
		display: flex;
		gap: 20px;
	}
}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (min-width:1480px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: var(--grey);
	color:var(--text);
	text-shadow:none;
}
::-webkit-selection {
	background: var(--grey);
	color:var(--text);
	text-shadow:none;
}
::-moz-selection {
	background: var(--grey);
	color:var(--text);
	text-shadow: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;
	}
}
