:root{
	--dark_grey: #0F1011;
	--medium_dark_grey: #151618;
	--medium_grey: #1B1D1F;
	--grey: #99A1A6;
	--white: #FFFFFF;
	--very_light_grey: #F9F9F9;
	--lighter_grey: #F2F2F2;
	--light_grey: #D5D5D5;
}

body {
    margin: 0px;
    overflow: hidden;
	font-family: 'Poppins';
}

#v3d-container {
    position: absolute;
    top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
}

#progress_bar{
	width: 100%;
	height: 100%;
	background-color: white;
}

.loader-text {
	display: block;
	overflow: hidden;
	width: auto;
	max-width: 180px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
	font-family: 'Poppins';
	font-weight: bold;
	color: #CFCFCF;
	font-size: 26px;
	text-align: center;
	margin-top: 30px;
}

.div-block-9 {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translate(0, -50%);
	right: 0px;
	display: block;
	overflow: visible;
	width: auto;
	margin-right: auto;
	margin-left: auto;
}

.div-block-11 {
	display: block;
	width: 300px;
	height: 185px;
	margin-right: auto;
	margin-left: auto;
	float: none;
}

#loading_empty {
	position: absolute;
	max-width: 300px;
	width: 100%;
	height: 100%;
}

#loading_full {
	position: absolute;
	max-width: 300px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
}

#loading_full_img{
	width: 0px;
	height: 185px;
	object-fit: cover;
	object-position: left;
}



/*SIDE BAR*/

#side_bar {
	position:fixed;
	left: 0px;
	background-color: white;
	height: 100%;
	width: 130px;
	display: grid;
	grid-template-rows: 130px auto auto auto auto auto;
	visibility: hidden;
	border-right: solid 2px var(--very_light_grey);
}

#side_bar_logo {
	justify-self: stretch;
	align-self: stretch;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: solid 2px var(--very_light_grey);
}

#side_bar_logo a{
	height: 100%;
	width: 100%;
}

#side_bar_logo img{
	width: 100%;
	height: 100%;
}

.side_bar_elements{
	justify-self: stretch;
	align-self: stretch;
	color: #CFCFCF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.side_bar_elements:hover{
	color: var(--dark_grey);
	cursor: pointer;
}

.side_bar_selected{
	color: var(--dark_grey);
	background-color: white;
}

.side_bar_selected .options_selected{
	opacity: 1;
}

.side_bar_content{
	text-align: center;
}

.side_bar_content img{
	width: 55px;
}

.options_selected{
	position: absolute;
	margin-left: -55px;
	opacity: 0;
}

.side_bar_elements:hover .options_selected{
	opacity: 1;
}

.side_bar_content p{
	margin: 20px 0 0 0;
}



/*PARAMETERS*/



.parameters{
	top: 0;
	left: 130px;
	width: 400px;
	height: 100%;
	background-color: white;
	overflow-y: scroll;
  	-ms-overflow-style: none;  /* IE and Edge */
  	scrollbar-width: none;  /* Firefox */
	display: none;
}

.parameters::-webkit-scrollbar {
  	display: none;
}

.collapsible, .open-collapsible {
	background-color: white;
	color: var(--dark_grey);
	cursor: pointer;
	padding: 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-family: 'Poppins';
	font-size: 30px;
	font-weight: bold;
	border-top: solid 2px var(--very_light_grey);
}

.collapsible:after {
	  content: '\002B';
	  color: var(--dark_grey);
	  font-weight: bold;
	  float: right;
	  margin-left: 5px;
}

.active:after {
  	content: "\2212";
}

#accents_check{
	width: 360px;
}

#accents_check:after {
	content:none;
}

.checkbox{
	background-color: white;
	color: var(--dark_grey);
	cursor: pointer;
	padding: 20px;
	border: none;
	text-align: left;
	outline: none;
	font-size: 30px;
	font-weight: bold;
	border-top: solid 2px var(--very_light_grey);
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.checkbox img{
	width: 25px;
	right: 20px;
	float: right;
	margin-top: 6px;
}

.checked_icon{
	margin-right: -25px;
}

.content{
	padding: 0 20px;
	color: var(--dark_grey);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: white;
	font-size: 25px;
}

.open-content {
	padding: 0 20px;
	color: var(--dark_grey);
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: white;
	font-size: 25px;
}

.content_child {
	margin-top: 20px;
}

/*parameters general*/

.parameters_subtitle{
	margin: 0px;
	font-weight: bold;
}

.space_bot{
	margin-bottom: 20px;
}

.btn_container{
	display: flex;
	flex-wrap: wrap;
}

input[type="radio"]{
	display: none;
}

.btn_style{
	color: #A1A09C;
	border: solid 1px #A1A09C;
	border-radius: 4px;
	padding: 2px 6px;
	display:inline-block;
	cursor: pointer;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	margin: 0 20px 20px 0;
	font-weight: normal;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.btn_style:hover{
	color: var(--dark_grey);
	border-color: var(--dark_grey);
}

input[type="radio"]:checked + .btn_style{
	color: var(--dark_grey);
	border: solid 3px var(--dark_grey);
	padding: 0px 4px;
}

.color_box{
	height: 35px;
	width: 35px;
}

/*THEMES*/

.theme p{
	color: #A1A09C;
}

.theme p:hover{
	color: var(--dark_grey);
	cursor: pointer;
}

.theme .theme_selected{
	color: var(--dark_grey);
}

/*COLOR SELECTION*/

.color_select2{
	display: grid;
	grid-template-columns: auto auto auto;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.btn_color{
	margin: 0px;
	padding: 0px;
	outline: solid 1px var(--dark_grey);
	outline-offset: -1px;
	padding: 0px 0px;	
}

input[type="radio"]:checked + .btn_color{
	border: solid 0px var(--dark_grey);
	outline: solid 2px var(--dark_grey);
	padding: 0px 0px;
	outline-offset: -2px;
}

.color2{
	position: relative;
	margin: 0px;
	padding: 0px;
	display:flex;
}

.select_image2{
	width: 100%;
	display: block;
}

.color_select_overlay2{
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: .2s ease;
	background-color: rgba(255, 255, 255, 0.5);
}

.color2:hover .color_select_overlay2{
 	opacity: 1;
	cursor: pointer;
}

.color_select_overlay_text2{
	color: black;
	opacity: 2;
	font-size: 16px;
	font-weight: bold;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

/*TOOLTIP*/

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: auto;
	background-color: var(--grey);
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 10px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s;
	transition-delay: 0.5s;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: var(--grey) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}


/*LENGTH*/


.slidecontainer {
	width: 100%;
}

.slider{
	position: relative;
	top: -7px
}

input[type="range"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 80%;
	height: 3px;
	outline: none;
	cursor: pointer;
	background-color: #444444;

}

/*Chrome thumb*/

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #DDDDDD;
	cursor: pointer;
}


/*Mozilla thumb*/

input[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #DDDDDD;
	cursor: pointer;
}

.slider_value{
	margin: 0;
	float: right;
}


/*CONNECTOR*/









/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }
