@charset "UTF-8";
/* CSS Document */

/*#f7cb70
#f7cb70*/

html {
	font-family: 'Ubuntu', sans-serif;
	font-size: 14px;
	color: rgb(187,187,187);
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #171717;
}

a {
	color: inherit;
	text-decoration: none;
	text-size: inherit;
}

.contact {
	width: 100%;
	margin-top: 25px;
	text-align: center;
	font-weight: 100;
	color: #666666;
}

.footer {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 25px;
	text-align: center;
	font-weight: 100;
	color: #666666;
}


/*HEADER/////////////////////////////////////////////////////////////////////////////////*/

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 48px;
	background: #000000;
	z-index: 99;
}

header h1 {
	display: inline-block;
	margin: auto;
	padding: 0;
	font-weight: 500;
	margin-left: 25px;
	margin-top: 15px;
	font-size: 18px;
}

header h2 {
	position: absolute;
	text-align: right;
	margin: auto;
	padding: 0;
	font-weight: 300;
	right: 25px;
	top: 18px;
	font-size: 10px;
}

/*Classes/////////////////////////////////////////////////////////////////////////////////*/

input[type="range"]{
	cursor: grab;
}

/*input[type="color"] {
	-webkit-appearance: none;
	border: none;
	width: 15px;
	height: 15px;
	display: inline-block;
	background-color: transparent;
	cursor: pointer;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;

}
input[type="color"]::-webkit-color-swatch {
	border: none;
	border-radius: 100%;
	border: 1px solid rgba(255,255,255,0.75);
}*/

input[type="color"] {
	-webkit-appearance: none;
	border: none;
	width: 100%;
	height: 15px;
	margin: -2px;
	display: inline-block;
	background-color: transparent;
	cursor: pointer;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;

}
input[type="color"]::-webkit-color-swatch {
	border: 2px solid transparent;
	margin: 0;
	border-radius: 3px;
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

input[type="color"]:hover::-webkit-color-swatch {
	border-color: #f7cb70;
}

/*BODY/////////////////////////////////////////////////////////////////////////////////*/

#globalContainer {
	position: relative;
	margin: 25px;
	margin-top: 73px;
	display: grid;
	width: calc(100vw - 50px);
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 50px;
}

#settingsContainer {
	position: relative;
	/*margin-right: 25px;*/
}

#colorContainer {
	position: relative;
	/*margin-left: 25px;*/
}

#UVCheckerContainer {
	grid-column: 2/4;
	position: relative;
	cursor: default;
	width: 100%;
	height: 0;
  	padding-top: 100%; /* 1:1 Aspect Ratio */
	overflow: hidden;
	
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */

    /*-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;*/
	/*width: 500px;
	height: 500px;
	object-fit: contain;
	overflow: hidden;*/
	/*transform: scale(0.5);*/
}

#UVCheckerScale {
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	-moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    -webkit-transform-origin: top left;
     transform-origin: top left;
}

#UVChecker {
	/*width: 500px;
	height: 500px;*/
	font-family: 'Rubik', sans-serif;
	background-color: #444;
	display: grid;
	grid-gap: 0;
	position: relative;
	/*grid-template-columns: repeat(2 1fr);*/
	/*grid-template-rows: 2 1fr;*/
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(8, 1fr);
	text-align: center;
	vertical-align: middle;
	
	/*background-color:#269;
	background-image: linear-gradient(white 2px, transparent 2px),
	linear-gradient(90deg, white 2px, transparent 2px),
	linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
	linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
	background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
	background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px;*/
}

#UVCheckerOverlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
	opacity: 0.5;
}

.box {
	position: relative;
	color: #fff;
	overflow: hidden;
}

.boxBG {
	position: absolute;
	/*width: 100%;
	height: 100%;*/
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #444444;
	border-radius: 0px;
	border-color: rgba(0,0,0,0.3);
	border-style: solid;
	border-width: 1px;
}

.boxText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.grid {
	display: flex;
	border-radius: 0px;
	/*justify-content: center;
	align-items: center;*/
	border-bottom: 1px solid rgba(255,255,255,0.10);
	border-right: 1px solid rgba(255,255,255,0.10);
}

.gridCanvas {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}

#microGridColumnsContainer {
	position: absolute;
	width: 100%;
	height: 100%;
	display: grid;
	/*grid-template-columns: repeat(200,12.5%);
	/*grid-template-columns: auto;*/
	grid-auto-flow: column;
	z-index: 5;
	
	/*-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;*/
}

#microGridRowsContainer {
	position: absolute;
	width: 100%;
	height: 100%;
	display: grid;
	/*grid-template-rows: repeat(200,12.5%);
	/*grid-template-rows: auto;*/
	z-index: 5;
	
	/*-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;*/
}

.microGridColumn {
	height: 100%;
	border-right: 1px solid white;
	
	/*-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;*/
}
.microGridColumn:first-child {
	border-left: 1px solid white;
}
.microGridRow {
	width: 100%;
	border-bottom: 1px solid white;
	
	/*-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;*/
}
.microGridRow:first-child {
	border-top: 1px solid white;
}

/*/////////////////////////////////////////////////////////////////////////////////*/

.settingsColumn {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 25px;
}

.settingsDiv {
	position: relative;
	margin: 7px 0;
	padding: 0;
}

.metashootLogo {
	grid-column: span 2;
}

.settingsSeparator {
	position: relative;
	margin: 0;
	padding: 0;
	font-weight: 400;
	margin-top: 10px;
	margin-bottom: 5px;
	border-bottom: 1px solid #999999;
	grid-column: 1/3;
	padding-bottom: 5px;
}

.settingsTitle {
	position: relative;
	margin: 0;
	padding: 0;
	font-weight: 300;
	margin-bottom: 5px;
}

.slidecontainer {
	position: relative;
}

.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 15px;
	width: calc(100% - 0px);
  	margin: 0 auto;
	background: rgba(155,155,155,1.00);
	outline: none;
	opacity: 1;
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	border-radius: 3px;
}

.slider:hover {
	background: #f7cb70;
}

.slider:hover::-webkit-slider-thumb {
	border: 5px solid white;
}
.slider:hover::-moz-range-thumb {
	border: 5px solid white;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	background: rgba(0,0,0,0);
	border: 1px solid white;
	border-radius: 100%;
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

/*.slider::-webkit-slider-thumb:hover {
	border: 5px solid white;
}*/

.slider::-moz-range-thumb {
	width: 15px;
	height: 15px;
	background: rgba(0,0,0,0);
	border: 1px solid white;
	border-radius: 100%;
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

/*.slider::-moz-range-thumb:hover {
	border: 5px solid white;
}*/


/*RADIO BUTTONS/////////////////////////////////////////////////////////////////////////////////*/


/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 7px;
  cursor: pointer;
  
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ddd;
  border-radius: 50%;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #f7cb70;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: block;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 2px;
	left: 2px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #171717;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

.container input:checked ~ .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 5px;
	height: 5px;
}


/*COLOR/////////////////////////////////////////////////////////////////////////////////*/

.colorDiv {
	position: relative;
	margin: 10px 0;
	padding: 0;
}

.colorTitle {
	position: relative;
	margin: 0;
	padding: 0;
	font-weight: 300;
	margin-bottom: 5px;
}

.colorPalette {
	position: relative;
	width: 100%;
	height: 50px;
	display: grid;
	grid-template-columns: repeat(5, 20%);
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid;
	border-color: transparent;
	margin: -2px;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

.colorPalette:hover {
	border-color: #f7cb70;
	border-color: #cccccc;
}

.colorPaletteSelected {
	border-color: #dedede;
}

.colorPaletteSelected:hover {
	border-color: #dedede;
}

.colorPaletteColor {
	position: relative;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

#colorPaletteCustom {
	display: grid;
	grid-template-columns: auto;
	grid-auto-flow: column;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

#colorPaletteCustom input[type="color"] {
	-webkit-appearance: none;
	border: none;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	display: block;
	background-color: transparent;
	cursor: pointer;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
#colorPaletteCustom input[type="color"]::-webkit-color-swatch-wrapper {
	margin: 0;
	padding: 0;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
#colorPaletteCustom input[type="color"]::-webkit-color-swatch {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

#colorPaletteCustom input:hover::-webkit-color-swatch { padding: 0 7px }

#colorPaletteCustom .colorPaletteColor {
	position: relative;
}

#colorPaletteCustom .colorPaletteColor:hover {
	background-color: white;
}

[title~=rainbowroad] .colorPaletteColor:nth-child(1) {
	background-color: #fd5bb4;
}
[title~=rainbowroad] .colorPaletteColor:nth-child(2) {
	background-color: #fdb366;
}
[title~=rainbowroad] .colorPaletteColor:nth-child(3) {
	background-color: #b6ff67;
}
[title~=rainbowroad] .colorPaletteColor:nth-child(4) {
	background-color: #6effb3;
}
[title~=rainbowroad] .colorPaletteColor:nth-child(5) {
	background-color: #69b0ff;
}

/*[title~=valhalla] .colorPaletteColor:nth-child(1) {
	background-color: #48D9BE;
}
[title~=valhalla] .colorPaletteColor:nth-child(2) {
	background-color: #4BF2C3;
}
[title~=valhalla] .colorPaletteColor:nth-child(3) {
	background-color: #D9CEB0;
}
[title~=valhalla] .colorPaletteColor:nth-child(4) {
	background-color: #262014;
}
[title~=valhalla] .colorPaletteColor:nth-child(5) {
	background-color: #736243;
}*/

[title~=golden] .colorPaletteColor:nth-child(1) {
	background-color: #4a381e; /* dark bronze */
}
[title~=golden] .colorPaletteColor:nth-child(2) {
	background-color: #9b6b1f; /* warm ochre gold */
}
[title~=golden] .colorPaletteColor:nth-child(5) {
	background-color: #d19c26; /* true gold tone */
}
[title~=golden] .colorPaletteColor:nth-child(4) {
	background-color: #f3c74b; /* bright golden yellow */
}
[title~=golden] .colorPaletteColor:nth-child(3) {
	background-color: #fff1a3; /* pale highlight gold */
}



[title~=battlefront] .colorPaletteColor:nth-child(1) {
	background-color: #F2E85C;
}
[title~=battlefront] .colorPaletteColor:nth-child(2) {
	background-color: #D9AF32;
}
[title~=battlefront] .colorPaletteColor:nth-child(3) {
	background-color: #A66C24;
}
[title~=battlefront] .colorPaletteColor:nth-child(4) {
	background-color: #731702;
}
[title~=battlefront] .colorPaletteColor:nth-child(5) {
	background-color: #0D0D0D;
}

[title~=gambit] .colorPaletteColor:nth-child(1) {
	background-color: #333333;
}
[title~=gambit] .colorPaletteColor:nth-child(2) {
	background-color: #cccccc;
}
[title~=gambit] .colorPaletteColor:nth-child(3) {
	background-color: #333333;
}
[title~=gambit] .colorPaletteColor:nth-child(4) {
	background-color: #cccccc;
}
[title~=gambit] .colorPaletteColor:nth-child(5) {
	background-color: #333333;
}

[title~=normals] .colorPaletteColor:nth-child(1) {
	background-color: #0b5d79;
}
[title~=normals] .colorPaletteColor:nth-child(2) {
	background-color: #5ed6c2;
}
[title~=normals] .colorPaletteColor:nth-child(3) {
	background-color: #feedaa;
}
[title~=normals] .colorPaletteColor:nth-child(4) {
	background-color: #fc8f74;
}
[title~=normals] .colorPaletteColor:nth-child(5) {
	background-color: #cf2c65;
}

[title~=boring] .colorPaletteColor:nth-child(1) {
	background-color: #ff0000;
}
[title~=boring] .colorPaletteColor:nth-child(2) {
	background-color: #ffff00;
}
[title~=boring] .colorPaletteColor:nth-child(3) {
	background-color: #00ff00;
}
[title~=boring] .colorPaletteColor:nth-child(4) {
	background-color: #00ffff;
}
[title~=boring] .colorPaletteColor:nth-child(5) {
	background-color: #0000ff;
}

/*DOWNLOAD/////////////////////////////////////////////////////////////////////////////////*/

.downloadTitle {
	position: relative;
	margin: 0;
	padding: 0;
	font-weight: 300;
	margin-top: 35px;
	margin-bottom: 5px;
	border-top: 1px solid #999999;
	padding-top: 10px;
}

.downloadDiv {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: auto;
	grid-auto-flow: column;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	grid-column-gap: 10px;
	margin-top: 10px;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

.downloadDivButton{
	position: relative;
	background-color: #333333;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 5px 0;
	cursor: pointer;
	font-size: 12px;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

.downloadDivButton:hover{
	color: #f7cb70;
	background-color: #111111;
	border: 1px solid #ffffff;
}

#bakedUV {
	position: absolute;
	left:0;
	top: -73px;
	width: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
}

#downloadCount {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: 300;
	font-size: 12px;
	margin-top: 10px;
}

@media only screen and (max-width: 767px) {
	#downloadCount {
		position: relative;
	}
}

/*PAYPAL/////////////////////////*/

.paypal-buttons-context-iframe {
	background-color:white;
}

.donateDiv {
	position: relative;
	margin: auto;
	padding: 0;
	font-weight: 300;
	margin-top: 20px;
	border-top: 1px solid #999999;
	padding-top: 25px;
	text-align: center;
}

#donateButton, .DonateAlertButton {
	position: relative;
	background-color: #333333;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 5px 30px;
	cursor: pointer;
	font-size: 12px;
	color: inherit;
	font: inherit;
	margin: auto;
	text-align: center;
	
	-moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

#donateButton:hover, .DonateAlertButton:hover {
	color: #f7cb70;
	background-color: #111111;
	border: 1px solid #ffffff;
}

.DonateAlertButton {
	width: 92px;
	height: 26px;
	color: white;
	padding: 0;
	position: absolute;
	top: 0;
	margin-left: -46px;
	pointer-events: none;
}


/*PRESETS/////////////////////////*/

#presets {
	position: relative;
	margin: 25px;
	margin-top: 50px;
	padding-top: 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 50px;
	border-top: 1px solid #999999;
	text-align: center;
	font-weight: 100;
}

#presetsHeader {
	padding-bottom: 25px;
	grid-column-start: 1;
  	grid-column-end: 5;
}

.presetThumb {
	position: relative;
	cursor: pointer;
}

.presetThumb img {
	width: 100%;
}

/*OTHERS/////////////////////////*/

.ArrowSize {
	margin: 0;
	padding: 0;
	display: inline-flex;
    vertical-align: bottom;
}

div.mdl-layout__drawer > nav.mdl-navigation > a.mdl-navigation__link {
    display: inline-flex;
    vertical-align: bottom;
}


/*alert/////////////////////////*/

#jsAlert{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: 9;
	background:rgba(23,23,23,0.66);
	text-align: center;
	display: none;
}

#jsAlertBG{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: 8;
	background:rgba(23,23,23,0.66);
	text-align: center;
}

#jsAlertPopUp{
	position: absolute;
	left:50%;
	top:50%;
	padding: 30px;
	transform: translate(-50%, -50%);
	background:#e9e9e9;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(255, 255, 255, 1));
	border-radius: 10px;
	color:#222222;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #000000;
	max-height: 75vh;
    font-size: 1.3rem;
    font-weight: 400;

    overflow: auto;
}