
body {
	margin: 0;
}
.example-container {
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
}
.options-panel {
	position: fixed;
	top: 0;
	left: 50%;
	display: flex;
	transform: translateX(-50%);
	z-index: 2;
}
.options-panel img {
	border: solid 2px;
	width: 50px;
	height: 70px;
	object-fit: cover;
	cursor: pointer;
}
.options-panel img.selected {
	border-color: green;
}
.slidecontainer {
	width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
	-webkit-appearance: none;  /* Override default CSS styles */
	appearance: none;
	/* width: 100%; Full-width */
	height: 40px; /* Specified height */
	background: hsl(0, 1%, 19%); /* Grey background */
	outline: none; /* Remove outline */
	/*opacity: 0.7;  Set transparency (for mouse-over effects on hover) */
	-webkit-transition: .2s; /* 0.2 seconds transition on hover */
	transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
	opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
	-webkit-appearance: none; /* Override default look */
	appearance: none;
	width: 25px; /* Set a specific slider handle width */
	height: 55px; /* Slider handle height */
	background: #04AA6D; /* Green background */
	cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
	width: 25px; /* Set a specific slider handle width */
	height: 55px; /* Slider handle height */
	background: #04AA6D; /* Green background */
	cursor: pointer; /* Cursor on hover */
}
.options-Toggle {
	position: absolute;
	top: 0px;
	right: 0px;
    z-index: 10;
	margin: 0px auto;
	padding: 0px;
}
.options-panel2 {
	color:white;
	position: absolute;
	right: 0px;
    top: 40;
	/*transform: translateX(-50%);*/
	z-index: 10;
	margin: 0px 0px;
	padding: 20px;
	/*background: green;*/
}

.scene {
	height: 300px;
	width: auto;
}

.footer-container {
	border-radius: 3px 3px 0 0;
	display: flex;
	flex-direction: column;
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.site-link-bar {
	border-radius: 3px 3px 0 0;
	align-items: center;
	justify-content: center;
	display: flex;
	background-color: rgb(203, 57, 57);
	width: 100%;
	height: 35px;
	text-align: center;
	text-decoration: none;
}

.site-link-bar span {
	color: white;
}

#item-nav {
	overflow: auto;
	white-space: nowrap;
}

#item-nav img {
	border: 1px solid rgba(132, 132, 132, 0.429);
	width: 50px;
	height: 50px;
	border-radius: 5px;
	margin: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#item-nav img.selected {
	
	border: 6px solid green;
}

.photo-options-container {
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
}

.small-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background-color: #101010;
	border: 2px solid white;
	margin: 0px 15px 0 15px;
}

.small-circle img {
	height: 20px;
	width: auto;
}

.small-circle.white-background {
	border: transparent;
	background-color: white!important;
}

.circle {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	width: 56px;
	border-radius: 50%;
	background-color: #101010;
	border: 2px solid white;
}

.circle img {
	height: 30px;
	width: auto;
}

.big-circle {
	position: absolute;
	height: 130px;
	width: 130px;
	border-radius: 50%;
	background-color: rgb(203, 57, 57);
	border: transparent;
	bottom: -55px;
	right: -45px;
}

.big-circle img {
	position: relative;
	right: 10px;
	bottom: 20px;
	height: 50px;
	width: 50px;
}

.position-container {
	z-index: 10;
	position: absolute;
	margin: 0px 20px 0px 20px;
	top:0;
   right:0;
}

.position-row {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 13px 0px 13px 0px;
}

.position-with-rotator-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
}

img.up-chevron {
	width: 30px;
}
img.mid-row-chevron {
	height: 30px;
}
img.down-chevron {
	width: 30px;
}

.box-shadow {
	box-shadow: 0px 0px 31px 1px rgba(33,33,33,0.4);
}

.button-cursor:hover {
    cursor: pointer;
}

.button-cursor:active {
    opacity: 0.7;
}

.earring-anchor-position {
    background-color: #04AA6D;
    border: none;
    border-radius: 5px;
    color: #222;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    width: 50px;
}

.earring-anchor-position .float-left {
    float: left;
}

.earring-anchor-position .float-right {
    float: left;
}

  
  #text{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 50px;
	color: white;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
  }
  #overlay {
	position: fixed;
	display: none;
	width: 70%;
	height: 70%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 2;
	cursor: pointer;
  }
  #wakeUp{
	position: relative;
	top: 40%;
	text-align:center;  
	
  }
  #wakeUp p{
	display: inline-block;
  vertical-align: middle;
  }
  
  #overlay .close-btn {
	position: absolute;
	top: 3%;
	left: 8%; 
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #555;
	color: white;
	font-size: 16px;
	padding: 12px 24px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
  }
  #snackbar {
	/*visibility: hidden; /* Hidden by default. Visible on click */
	min-width: 250px; /* Set a default minimum width */
	margin-left: -125px; /* Divide value of min-width by 2 */
	background-color: #333; /* Black background color */
	color: #fff; /* White text color */
	text-align: center; /* Centered text */
	border-radius: 2px; /* Rounded borders */
	padding: 16px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	z-index: 1; /* Add a z-index if needed */
	left: 50%; /* Center the snackbar */
	bottom: 80%; /* 30px from the bottom */
  }
  .prevent-select {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
	-webkit-user-select: none; /* disable selection/Copy of UIWebView */
  	-webkit-touch-callout: none;
  }
  