html, body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
	background-color: #000000;
	font-family: 'Work Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 600;
}

a:visited {
	color: white;
}

#loadingMain {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: fixed;
    display: flex;
    align-items: center;
  	justify-content: center;
    z-index: 99999;
    text-align: center;
}

#loadingText {
	font-size: 12px;
	color: #fff;
}

#everything {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: fixed;
    display: none;
}

#threeDeePhone {
	height: 100%;
	width: 100%;
}

#bottomLogo {
	position: absolute;
	z-index: 999999;
	bottom: 20px;
	left: 10px;
	width: 13%;
	height: 17%;
	/*background-image: url(../images/logo_overlay.png);*/
	background-image: url(../images/logo_overlay-owners-club.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
}

#rightside {
	position: absolute;
	top: 2%;
	right: 0;
	width: 400px;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	padding: 10px;
	text-align: left;
	overflow: visible;
	overflow-y: scroll;
	overflow-x: visible;
	-ms-overflow-style: none;
	display: none;
}

#rightside::-webkit-scrollbar {
  display: none;
}


#title {
	width: 100%;
	text-align: left;
	font-size: 28px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}

#by {
	width: 100%;
	font-size: 12px;
	text-decoration: none;
	color: #888;
	margin-bottom: 30px;
}

#by a {
	color: #888;
}

#byBottom a {
	color: #262626;
}

#byBottom {
	text-align:center;
	width: 100%;
	font-size: 12px;
	text-decoration: none;
	color: #262626;
	/*text-shadow: 0 0 3px #000000;*/
	margin-bottom: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#textureOptions {
	display: none;
}

#mobile_photo_upload {
	display: none;
}

#downloadTextureSheet {
	font-family: arial;
	font-size: 10px;
	text-decoration: underline;
	cursor: pointer;
	text-align: right;
	width: 92%;
}

#rowLeft {
	float: left;
}
#rowRight {
	float: right;
	margin-right: 30px;
}


#sepa {
	width: 90%;
	height: 3px;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,0.0533788515406162) 100%);
	margin-top: 20px;
	margin-bottom: 20px;
}

#colours {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
}

#colorChoice {
	width: 60px;
	height: 60px;
	background-color: black;
	color: white;
	margin: 5px;
	cursor: pointer;
}

#textures {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

#textureCyberTruckOG, #textureNone, #textureCyberTruckCamo, #textureSpaceballs, #texturePlaid {
	height: 60px;
	width: 60px;	
	border-radius: 30px;
	margin: 5px;
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	background-image: url('../models/seamless-metal-texture.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
#textureCyberTruckCamo {
	background-image: url('../models/camo_bw.png');
}
#textureSpaceballs {
	background-image: url('../images/spaceballs_tex.jpg');
}
#texturePlaid {
	background-image: url('../images/plaid_tex.jpg');
}
#textureNone {
	padding-top: 20px;
	height: 40px;
	background-image: unset;
	background-color: black;
}

#drop-area {
	height: 45px;
	width: 160px;	
	/*border-radius: 5vh;*/
	margin: 5px;
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	background-color: #fff;
	border-radius: 30px;
	border: 1px dashed #ccc;
	padding-top: 15px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #000;
}

#drop-area.highlight {
  border: 1px dashed #333;
  background-color: rgba(155,155,155,1);
}

#canvasHolder {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 30%;
    z-index: 9999;
}

#drawingCanvas {
	background-color: rgba(1,1,1,0.5);
	border: 2px solid white;
	height: 800px;
	width: 800px;
	visibility: hidden;
}



input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin-top: 6px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  background: #ffffff;
  border-radius: 1.3px;
}
input[type=range]::-webkit-slider-thumb {
  height: 22px;
  width: 10px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #efefef;
}
input[type=range]::-moz-range-thumb {
	cursor: pointer;
	background: #111;
}
input[type=range]::-ms-thumb {
	cursor: pointer;
	background: #111;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.sliderSwitch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  -webkit-transition: .4s;
  transition: .4s;
}

.sliderSwitch:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .sliderSwitch {
  background-color: #000;
}

input:focus + .sliderSwitch {
  box-shadow: 0 0 1px #000;
}

input:checked + .sliderSwitch:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

#saveButton {
	width: 80%;
	color: #fff;
	background-color: rgba(0,0,0,0.2);
	height: 40px;
	text-align: center;
	font-size: 21px;
	border: 1px solid white;
	padding-top: 15px;
	margin-left: 10%;
	cursor: pointer;
	margin-bottom: 20px;
}

#viewInAR {
	width: 275px;
	color: #fff;
	background-color: rgba(0,0,0,0.2);
	background-image: url(../images/ARKit_logo.png);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: 70px center;
	height: 40px;
	padding-left: 45px;
	text-align: center;
	font-size: 21px;
	border: 1px solid white;
	padding-top: 15px;
	margin-left: 10%;
	cursor: pointer;
}

#bottomPanelPad {
	margin-bottom: 100px;
}

#arLoading {
	width: 100%;
	text-align: center;
	font-size: 12px;
	padding-top: 10px;
}

#arProgressBar {
    width: 0%;
    height: 15px;
    background-color: white;
    margin-top: 10px;
    margin-left: 40px;
}

#usdzFile {
	position: absolute;
	z-index: 999999;
	top: 20px;
	right: 20px;
	font-size: 60px;
}

#stickers {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

#drop-area-sticker {
	height: 55px;
	width: 67px;
	/*border-radius: 5vh;*/
	margin: 5px;
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	background-color: #fff;
	border-radius: 30px;
	border: 1px dashed #ccc;
	padding-top: 10px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #000;
}

#drop-area-sticker.highlight {
  border: 1px dashed #333;
  background-color: rgba(155,155,155,1);
}

#mobile_sticker_upload {
	display: none;
}

#stickerCTOG {
	height: 67px;
	width: 67px;
	border-radius: 30px;
	background-image: url(../images/CTOG-sticker.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 0px;
}

#stickerTeslaRed {
	height: 67px;
	width: 67px;
	border-radius: 30px;
	background-image: url(../images/tesla-logo-red.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 0px;
}

#stickerTeslaBlack {
	height: 67px;
	width: 67px;
	background-image: url(../images/tesla-logo-black.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 0px;
}

#stickerBanana {
	height: 67px;
	width: 67px;
	background-image: url(../images/banana.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 0px;
}

.draggableStickerHolder {
	/*position: absolute;*/
	height: 67px;
	width: 67px;
	border-radius: 38px;
	border: 1px solid white;
	margin-left: 5px;
	margin-right: 5px;
	background-color: rgba(0,0,0,20%);
	/*background-image: url(../images/sticker_background.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;	*/
}
.draggableSticker {
	position: relative;
	height: 67px;
	width: 67px;
	border-radius: 30px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: 5px;
	margin-right: 5px;
}

#deleteLastSticker {
	font-family: arial;
	font-size: 10px;
	text-decoration: underline;
	cursor: pointer;
	text-align: right;
	width: 92%;
	padding-top:20px;
}

#stickerOptions {
	margin-top: 10px;
	display: none;
}