:root{
    --slider_width: 13px;
    --thumb_width: 26px;
	//--border_color: rgb(221,221,221);
	--border_color: rgba(217,217,217,1);//rgba(0,0,0,0.15);
    --hover_color: rgba(0,0,0,0.06);
}

input{
    width: calc(100% - 16px);
    margin: 0px;
    //border: 0px;
    margin-top: 5px;
    //margin-bottom: 10px;
    margin-bottom: 5px;
    padding: 7px;
    font-size: 16px;
    //border-radius: 2px;
    //box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.9);
    outline: 0;
	
	border: 1px;
	border-style: solid;
	border-color: var(--border_color);
    border-radius: 5px;
	background-color: rgba(256,256,256);
}

select{
    width: 100%;
    margin: 0px;
    border: 0px;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 20px;
    border-radius: 2px;
    box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.9);
    outline: 0;
}

.select_normal{
	width:auto;
	font-size:16px;
	margin:5px;
	background: rgb(255,255,255);
}

.select_footer{
	width:auto;
	height: 30px;
	padding: 2.5px 5px 2.5px 5px;
	margin:5px 0 0 0;
	appearance:none;
	-webkit-appearance:none;
	color:inherit;
	background:inherit;
	font-size:16px;
	box-shadow:none;
	cursor: pointer;
}

input[type=button]{
    width: auto;
    padding: 5px 20px;
    font-size: 15px;
	margin: 10px 10px 0 0;
    //margin-right: 10px;
    cursor: pointer;
    -webkit-appearance: none;
	color: rgb(0,0,0);
	
	border-color: rgba(0,0,0,0.1);
	background-color: rgba(0,0,0,0.08);//var(--hover_color);
    //background: rgba(0,0,0,0.1);
}
input[type=button]:hover{
	background-color: rgb(232,232,232);
}

.filterhead{
    margin: 2px;
    font-size: 32px;
    width: auto;
    /*font-style: italic;*/
    padding: 4.5px 2px 5px 10px;
    font-size: 18px;
    align-self: flex-start;
}

input[type=button].filter.active{
    margin: 2px;
    color: rgba(0,0,0,1);
	border: 0;
    font-weight: bold;
    padding: 5px 10px 5px 10px;
    //background: rgba(0,0,0,0.1);
    background: rgba(0,0,0,0);
    box-shadow: none;
}
input[type=button].filter.inactive{
    margin: 2px;
	border: 0;
    color: rgba(0,0,0,0.5);
    padding: 5px 10px 5px 10px;
    //background: rgba(0,0,0,0.05);
    background: rgba(0,0,0,0);
    box-shadow: none;
	//cursor: default;
}
input[type=button]:disabled{
	cursor: default;
}

textarea{
    width: calc(100% - 10px);
    min-height: 120px;
    resize: vertical;
    margin: 0px;
    border: 0px;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 20px;
    border-radius: 2px;
    box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.9);
    outline: 0;
}

input[type=checkbox]{
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;//px 0 10px 0;
    padding: 0;
    //border: 2px;
    border-radius: 15px;
    //border-style: solid;
    //border-color: rgba(0,0,0,0.0);
    //background: rgba(0,0,0,0.1);
    vertical-align: middle;
    cursor: pointer;
}

input[type=checkbox]:checked{
    border-color: var(--border_color);/*rgba(255,255,255,0.6);*/
    background: radial-gradient(rgba(0,0,0,0.4) 0, rgba(0,0,0,0.4) 40%, white 43%);/*rgba(0,0,0,0.5);*/
}

input[type=file]{
    font-size: 15px;
}

.input_image{
    font-size: 15px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	opacity: 0
}

.background_image{
	width: 100%;/*calc(100% - 2px);*/
	height: 150px;
	background-size:cover;
	background-position: center center;
	margin: 5px 0 10px 0;
    border-radius: 5px;
	/*border: 1px;
	border-style: solid;
	border-color: var(--border_color);
    border-radius: 4px;*/
    //box-shadow: 0px 0px 1px 0.1px rgba(0,0,0,0.9);
}

.descriptor{
	padding-top: 5px;
}


label{
    vertical-align: middle;
    padding: 0px 0 0px 10px;
    cursor: pointer;
}

.slider{
	border: 0px;
    -webkit-appearance: none;
    width: calc(100%);
    margin: 10px 0px 7px 0px;
    padding: 0;
    height: var(--slider_width);
    border-radius: calc(var(--slider_width) / 2);
    box-shadow: none;
    background: rgb(200,200,200);
    outline: none;
    cursor: pointer;
	z-index: 1;
}

.slider::-webkit-slider-runnable-track{
    cursor: pointer;
	z-index: 1;
}

.slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: var(--thumb_width);
    height: var(--thumb_width);
    border-radius: 50%;
    background: rgb(100,100,100);
    cursor: pointer;
    outline: none;
    border-width:0;
	box-shadow: none;
	z-index: 1;
}

.slider::-moz-range-thumb{
    appearance: none;
    width: var(--thumb_width);
    height: var(--thumb_width);
    border-radius: 50%;
    background: rgb(100,100,100);
    cursor: pointer;
    outline: none;
    border-width:0;
	z-index: 1;
}

.slider.untouched::-webkit-slider-thumb{
    background: rgba(200,200,200,0);
	z-index: 1;
}

.slider.untouched::-moz-range-thumb{
    background: rgba(200,200,200,0);
	z-index: 1;
}

.slider_label{
    text-align: center;
    color:grey;
    margin-top:10px;
    font-size: 12px;
    font-style: italic;
}

.slider_label.no_margin{
    margin-top:0px;
}

.evaluation_indicator{
	/*width: 10px;
	height: 35px;
	border-radius: 5px;*/
    width: 8px;
    height: 8px;
    border-radius: 50%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 9.5px;
	background: rgb(255,255,255);
	z-index: 0;
}

.explainer{
	position: relative;
	padding: 0px;
	margin-top: 0px;//2px;
}
.explainer.phase{
	display: flex;
}

.explainer.phase img{
	width: 28px;
	height: 28px;
}

.explainer.phase input[type=button].filter{
	padding-left: 2px;
}

.explainer span{
	display: none;
	z-index:4;//2;//6;
	position: absolute;
	margin: 10px 0px 0px 5px;
	padding: 2px 10px 2px 10px;
	border: 1px solid var(--border_color);
	color: rgb(0,0,0);
	text-align: center;
	border-radius: 10px;
	font-size: 12px;
	width: auto;
	overflow: hidden;
	max-width: 200px;
	background: rgba(255,255,255,1);
}

.explainer:hover span{
	display: block;
	z-index:4;//2;//6;
}
.centered_explainer{
	top: 45px;
	left: 0px;
	transform: translate(calc(-50% + 13px),0);
}
.explainer:hover span.above{
	bottom: 50px;
}

img.button_icon.inactive{
	opacity: 0.3;
}
img.button_icon.hover.inactive:hover{
	opacity: 0.5;
}
img.button_icon.active{
	opacity: 1;
}
img.button_icon.hover{
	cursor: pointer;
}
img.button_icon.hover:hover{
	opacity: 1;
}

img.button_icon{
	border-radius: 5px;
	width:40px;
	height:40px;
	padding:0 10px;
	margin:0 5px;
}

img.button_icon.small{
	width:30px;
	height:30px;
	padding:0 5px;
}
