@font-face {
	font-family: SunDog;
	src: url('../fonts/SunDog.ttf') format('truetype');
}

@font-face {
	font-family: SunDogMono;
	src: url('../fonts/SunDogMonospace.ttf') format('truetype');
}

:root {
    
    --c1r: 0;
    --c1g: 0;
    --c1b: 0;
    
    --c2r: 40;
    --c2g: 40;
    --c2b: 40;
    
    --c3r: 190;
    --c3g: 190;
    --c3b: 190;
    
    --c4r: 255;
    --c4g: 255;
    --c4b: 255;
    
    --car: 255;
    --cag: 255;
    --cab: 0;
   
}


html {

    background-color: rgb( calc(var(--c2r)) calc(var(--c2g)) calc(var(--c2b)) );
    height: 100%;

}

body {
	width: 100%;
	height: 100%;
	
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;

	background-color: rgb( calc(var(--c2r)) calc(var(--c2g)) calc(var(--c2b)) );
	color: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) );
	font-family: SunDog, monospace;
	font-size: 1.25em;
}

header {
	background-color: rgb( calc(var(--c2r) + 11) calc(var(--c2g) + 11) calc(var(--c2b) + 11) );
	width: 100%;
	height: 10vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

path, rect {

    fill: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) ) !IMPORTANT;

}

svg {

    width: 100%;
    height: auto;
    margin: auto;

}

#header-logo {
	width: 10%;
	margin: auto;
}

#header-logo svg {
	width: 100%;
	height: auto;
}

#header-logo a {
    
    width: 100%;
    height: auto;

}

@media only screen and (max-width: 810px) {
	header {
		height: auto;
	}

	#header-logo {
		width: 30%;
	}
}

nav {
	background-color: rgb( calc(var(--c2r) + 59) calc(var(--c2g) + 59) calc(var(--c2b) + 63) );
	width: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
	border-bottom: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
}

@media only screen and (max-width: 810px) {
	nav {
		flex-flow: column;
	}
}

.nav-link {
	display: block;
}

@media only screen and (max-width: 810px) {
	.nav-link {
		display: none;
	}
}

#nav-hamburger {
	display: none;
}

@media only screen and (max-width: 810px) {
	#nav-hamburger {
		display: block;
	}
}

nav a {
	flex-basis: 10%;
	padding: 10px;
	text-align: center;
	color: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) );
	text-decoration-line: none;
}

nav a:hover {
	background-color: rgb( calc(var(--c2r) + 69) calc(var(--c2g) + 68) calc(var(--c2b) + 72) );;
}

ul {

    list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3C!-- Created with Inkscape (http://www.inkscape.org/) --%3E%3C%3Fxml-stylesheet type='text/css' href='/css/style.css' %3F%3E%3Csvg version='1.1' id='svg6162' width='16' height='16' viewBox='0 0 16 16' fill='rgb(127 127 127)' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Cdefs id='defs6166' /%3E%3Cg id='layer1'%3E%3Crect style='stroke-width:30;stroke-linecap:square' id='rect8389' width='4' height='4' x='6' y='9' /%3E%3C/g%3E%3C/svg%3E");

}

#top-functions {

    display: flex;
    align-items: center;
    justify-content: space-between;

}

#color-button-container {

    width: 1em;
    margin-left: auto;
    
    cursor: pointer

}

#color-menu {

    width: 60%;
    height: 60%;
    
    background-color: rgb( calc(var(--c2r) + 11) calc(var(--c2g) + 11) calc(var(--c2b) + 11) );
	padding: 10px;
	border: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
	
	position: fixed;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    
    margin: auto;
    
    display: flex;
    flex-direction: column;
    
}

#color-presets {

    flex-grow: 6;

}

.color-preset-row {

    display: flex;
    flex-direction: row;
    height: 25%;
    
    justify-content: space-between;

}

.color-preset {

    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 1px;
    
    justify-content: space-between;
    cursor: pointer;

}

.color-preset-color-preview {

    width: 100%;

}

#color-sliders {

    height: 20%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    
    flex-grow: 1;

}

.c-sliders {

    display: flex;
    flex-direction: row;
    width: 100%;

}

.c-sliders-vertical {

    width: 100%;
    display: flex;
    flex-flow: column;
    
    justify-content: space-between;
    align-items: stretch;

}

.c-sliders input[type="range"] {

    -webkit-appearance: none;
    appearance: none;
    
    width: 100%;
    height: 100%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    
    line-height: 20px;
    
    margin: 0px;
    background: rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );

}

.c-preview {

    width: 30%;

}

.c-slider-label-container {

    position: absolute;
    padding-left: 5px;
    margin: 0px;
    padding-left: 5px;
    height: inherit;
    
    display: flex;
    flex-direction: column;
    justify-content: left;
    
    flex-wrap: wrap;

}

.c-slider-container {

    margin: 2px;
    padding: 0px;
    height: auto;
    
    overflow: clip;
    
    flex: 1;
    
    

}

.c-sliders input[type="range"]::-webkit-slider-runnable-track {
  height: 100%;
  margin: 0px;
}

.c-sliders input[type="range"]::-moz-range-track {
  width: 100%;
  height: auto;
  margin: 0px;
}

 
.c-sliders input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  
  height: 0em;
  width: 0em;
  background-color: rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
  border-radius: 0%;
  border: 0px solid rgb( calc(var(--c2r) + 59) calc(var(--c2g) + 59) calc(var(--c2b) + 63));
  
  box-shadow: -407px 0 0 400px rgb( calc(var(--c2r) + 59) calc(var(--c2g) + 59) calc(var(--c2b) + 63));
}

.c-sliders input[type="range"]::-moz-range-thumb {

  height: 0em;
  width: 0em;
  background-color: rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
  border-radius: 0%;
  border: 0px solid rgb( calc(var(--c2r) + 59) calc(var(--c2g) + 59) calc(var(--c2b) + 63));
  
  box-shadow: -407px 0 0 400px rgb( calc(var(--c2r) + 59) calc(var(--c2g) + 59) calc(var(--c2b) + 63));
    

}

#color-buttons input[type="button"] {

    background-color: rgb( calc(var(--c2r) + 11) calc(var(--c2g) + 11) calc(var(--c2b) + 11) );
    border: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
    color: rgb( var(--c4r) var(--c4g) var(--c4b));
    font-family: SunDog, monospace;
    font-size: 2vw;
    width: 15%;
    
    margin-top: 10px;
    
    cursor: pointer;

}

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

    #color-buttons input[type="button"] {

        font-size: 4vw;

    }
    
}


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

	#color-menu {

        width: inherit;
    
    }
}

#page-darken {

    width: 100%;
    height: 100%;
    
    background-color: black;
    opacity: 50%;
	
	position: fixed;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    
    margin: auto;

}



hr {

    border: 1px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );

}

#content {
	display: flex;
	align-items: top;
	padding: 20px;
	justify-content: center;
}

@media only screen and (max-width: 810px) {
	#content {
		flex-flow: column;
	}
}

#back-link {
	color: rgb( calc(var(--c3r)) calc(var(--c3g)) calc(var(--c3b)) );
	font-size: 0.8em;
	text-decoration: none;
}

#gallery {
	order: 2;
	width: 50%;
	margin-left: 10px;
	display: flex;
	flex-flow: column wrap;
	flex-wrap: wrap;
}

@media only screen and (max-width: 810px) {
	#gallery {
		margin-top: 20px;
		margin-left: 0px;
		width: inherit;
	}
}

#gallery-header, #gallery-subtitle {
	text-align: center;
}

.release-gallery-header {
	text-align: center;
}

aside {
	order: 1;
	background-color: rgb( calc(var(--c2r) + 11) calc(var(--c2g) + 11) calc(var(--c2b) + 11) );
	width: 15%;
	padding: 10px;
	border: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
	margin-right: 10px;
	
}

aside h3 {
	text-align: center;
}

@media only screen and (max-width: 810px) {
	aside {
		width: inherit;
		margin-right: 0px;
	}
}

article {
	background-color: rgb( calc(var(--c2r) + 11) calc(var(--c2g) + 11) calc(var(--c2b) + 11) );
	margin-bottom: 20px;
	padding: 10px;
	border: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
}

@media only screen and (max-width: 810px) {
	article {
		width: inherit;
	}
}

article a {
	text-decoration-line: none;
	color: rgb( calc(var(--car)) calc(var(--cag)) calc(var(--cab)) );
}

.subtitle-link {
    text-decoration-line: none;
	color: rgb( calc(var(--car)) calc(var(--cag)) calc(var(--cab)) );
}

.white {
	color: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) );
	text-decoration: none;
}

article p {
	line-height: 1.25em;
}

.content h1, .content h2, .content h3 {
	text-align: center;
}

.left {
	text-align: left;
}

.center-header {
	text-align: center;
}
.title {
	font-size: 1.5em;
	padding: 0px;
	margin: 10px 0px 10px 0px;
}

.category-header {
	text-align: center;
}

.category-header a {
	color: white;
	text-decoration-line: none;
}

#about {
	font-size: 1.35em;
}

#about h2 {
	font-size: 1.30em;
}

#about p {

	line-height: 1.35em;

}

.big-link {

    color: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) );

}

.image-caption-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-caption-text {
    text-align: center;
    font-size: 0.75em;
}

.phone-pic {
    width: 50%;
    height: auto;
}

.webcam-pic {

    width: 100%;
    height: auto;

}

@media only screen and (max-width: 810px) {
	.phone-pic, .webcam-pic {
        width: 100%;
        height: auto;
    }
}

.blog-image {

    width: 100%;
    height: auto;

}

code {
	font-family: SunDog, monospace;
	
}

.progress-container {
    width: 50%;
    height: 2px;
	padding: 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.progress {

    background-color: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) );
    height: 2px;

}

.release-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.release-gallery article {
	flex: 0 0 43%;
}

/* #alias-gallery article {
	flex: 0 0 43%;
} */

@media only screen and (max-width: 810px) {
	#alias-gallery article {
		
		flex: 1 1 100%;
		overflow-x: hidden;
		width: inherit;
	}
}

.music-type-header {
	color: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) );
	text-decoration-line: none;
}	

@media only screen and (max-width: 810px) {
	.release-gallery article {
		flex: 1 1 100%;
		overflow-x: hidden;
	}
}

.tags {
	color: rgb( calc(var(--c3r)) calc(var(--c3g)) calc(var(--c3b)) );
}

.post-title {
	font-size: 2em;
	text-align: center;
	padding: 0px;
	margin: 10px 0px 10px 0px;
	
}

.post-tags {
	color: rgb( calc(var(--c3r)) calc(var(--c3g)) calc(var(--c3b)) );
}

.post-info {
	text-align: center;
}

.post-excerpt {
	font-style: italic;
	text-align: center;
}

.cover {
	margin-top: 10px;
	width: 100%;
}

.alias-logo {
	width: 50%;
	height: 50%;
	display: block;
	margin: auto;
}

.alias-icon {
	width: 50%;
	margin: auto;
	margin-bottom: 20px;
}

.alias-display {
	width: 100%;
	min-width: 0;
}

.release-info {
	text-align: center;
}

.art-preview-container {
	display: flex;
}

.art-preview {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.art-full {
	width: 100%;
	height: auto;
	display: block;
}

.player-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.player {
	width: 75%;
	display: flex;
	margin-top: 10px;
	padding: 10px;
	border: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
	box-sizing: border-box;
	margin-bottom: 10px;
}

@media only screen and (max-width: 810px) {
	.player {
		width: 100%;
	}
}

.player-play {
	width: 9%;
	display: flex;
	align-items: center;
	margin-right: 10px;
	padding: 0;
	cursor: pointer
}

.player-play img {
	max-width: 100%;
	height: auto;
}

.player-main {
	width: 80%;
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.player-details {
	display: flex;
	height: auto;
}

.player-title, .player-current-time, .player-separator, .player-total-time {
	margin-right: 10px;
}

.player-skip {
	width: 10%;
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: center;
}

.player-skip svg {
	max-width: 100%;
	height: 24px;
}
.player-seek-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 5px;
	background: rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
	outline: none;
	cursor: pointer;
}

.player-seek-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 26px;
	height: 26px;
	border: 0;
	background: url('data:image/svg+xml,%3C%3Fxml version="1.0" encoding="UTF-8" standalone="no"%3F%3E%3C!-- Created with Inkscape (http://www.inkscape.org/) --%3E%3Csvg version="1.1" id="svg6162" width="100%25" height="auto" fill="rgb(127 127 127)" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"%3E%3Cdefs id="defs6166" /%3E%3Cg id="layer1"%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8861" width="1" height="7" x="6" y="4.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8863" width="1" height="5" x="5" y="5.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8865" width="1" height="3" x="4" y="6.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8867" width="1" height="1" x="3" y="7.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8869" width="1" height="7" x="9" y="4.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8871" width="1" height="5" x="10" y="5.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8873" width="1" height="3" x="11" y="6.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8875" width="1" height="1" x="12" y="7.5" /%3E%3C/g%3E%3C/svg%3E');
	  
	cursor: pointer;
}

.player-seek-slider::-moz-range-thumb {
	width: 26px;
	height: 26px;
	border: 0;
	background: url('data:image/svg+xml,%3C%3Fxml version="1.0" encoding="UTF-8" standalone="no"%3F%3E%3C!-- Created with Inkscape (http://www.inkscape.org/) --%3E%3Csvg version="1.1" id="svg6162" width="100%25" height="auto" fill="rgb(127 127 127)" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"%3E%3Cdefs id="defs6166" /%3E%3Cg id="layer1"%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8861" width="1" height="7" x="6" y="4.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8863" width="1" height="5" x="5" y="5.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8865" width="1" height="3" x="4" y="6.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8867" width="1" height="1" x="3" y="7.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8869" width="1" height="7" x="9" y="4.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8871" width="1" height="5" x="10" y="5.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8873" width="1" height="3" x="11" y="6.5" /%3E%3Crect style="stroke-width:30;stroke-linecap:square" id="rect8875" width="1" height="1" x="12" y="7.5" /%3E%3C/g%3E%3C/svg%3E');
	 
	cursor: pointer;
}

.tracklist-container {
	width: 100%;
	font-family: SunDogMono;
	display: flex;
	justify-content: center;
}

.tracklist-container table {
	
	width: 50%;
}

.col-tracklengths {
	text-align: right;
}

.col-tracktitles {
	text-align: left;
}
@media only screen and (max-width: 810px) {
	.tracklist-container table {
		width: 100%;
	}
}

.release-link {
	width: 50%;
	border: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.release-link svg {

    width: 16px;
    height: 16px;

}

.link-icon-container {

    display: flex;
    flex-flow: column;
    justify-content: center;

}

.download-link-container {

    display: block;
    color: rgb( calc(var(--c4r) + 40) calc(var(--c4g) + 39) calc(var(--c4b) + 39) );

}

.download-indicator {

    font-size: smaller;
    padding: 0px;
    margin: 0px;
    margin-bottom: 10px;
    text-align: center;
    
}

.button-text {

    margin: 0;

}

@media only screen and (max-width: 810px) {
	.release-link {
		width: 100%;
	}
}

.video-thumbnail {
	width: 100%;
}	

.video-preview-container {
	margin-top: 10px;
}

#alias-gallery {
	display: flex;
	flex-direction: column;
}

.module-type-list {
	list-style: none;
	font-size: 0.9em;
	margin: 0;
	padding: 0;
	
}

.module-type-list a {
	text-decoration: none;
	color: white;
}	

#module-type-list-wrapper {
	font-size: 1.3em;
	text-align: center;
}

.module-type {
	color: rgb( calc(var(--c3r) + 11) calc(var(--c3g) + 11) calc(var(--c3b) + 11) );
	display: block;
	text-align: center;
}

.module-download-button {

    margin-top: 10px;

}

footer {
	background-color: rgb( calc(var(--c2r) + 11) calc(var(--c2g) + 11) calc(var(--c2b) + 11) );
	width: 100%;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: center;
	border-top: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
	border-bottom: 2px solid rgb( calc(var(--c2r) + 40) calc(var(--c2g) + 39) calc(var(--c2b) + 39) );
}

#footer-info {
	text-align: center;
	color: rgb( calc(var(--c3r)) calc(var(--c3g)) calc(var(--c3b)) );
}


#rss-link {
    text-align: center;
	color: rgb( calc(var(--c4r)) calc(var(--c4g)) calc(var(--c4b)) );
}

