
:root{
	--bg-c: #fff;
	--main-c: #212121;
	--sec-c: #41B7DC;
	--border-c: #eee;
	--slider-c: #ccc;
}
.switch {
	position: absolute;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}


.navbar{
	margin-top: 1.5rem;
}
.navbar ul {
	display: flex;
	list-style: none;
	flex: row;
	margin: 0; 
}
.navbar li {
	margin: 0; 
	margin-right: 35px;
}
.navlink {
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	line-height: 5;
	font-weight: 400;
}
img.logo{
	display: block;
	margin: 0 auto;
	width: 128px;
	height: 128px;
	content:url('/images/logo_light.png');
}

label {
	font-weight: 400;
	text-transform: uppercase;

}


.slider {
	background-color: var(--slider-c);
}
.slider:before {
	background-color: #fff;
}
input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

.navbar{

	border-top: 1px solid var(--border-c);
	border-bottom: 1px solid var(--border-c);
}
body{
	background-color: var(--bg-c);
	color:  var(--main-c);
}
a{
	color: var(--main-c);
}
a:hover {
	color: var(--sec-c);
}
.navlink{
	color: var(--main-c);

}
img.qrcode{
	background-color: white;
}

hr {border-color: var(--border-c);}

::-webkit-scrollbar {
	width: 8px;
	height: 5px;
  }
  ::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
  }
  ::-webkit-scrollbar-thumb {
	background: #909090;
	border: 0px none #666666;
	border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb:hover {
	background: #909090;
  }
  ::-webkit-scrollbar-thumb:active {
	background: #909090;
  }
  ::-webkit-scrollbar-track {
	background: #ffffff;
	border: 0px none #ffffff;
	border-radius: 50px;
  }
  ::-webkit-scrollbar-track:hover {
	background: #ffffff;
  }
  ::-webkit-scrollbar-track:active {
	background: #ffffff;
  }
  ::-webkit-scrollbar-corner {
	background: transparent;
  }
@media (prefers-color-scheme: light) {
	:root{
		--bg-c: #fff;
		--main-c: #212121;
		--sec-c: #41B7DC;
		--border-c: #eee;
		--slider-c: #ccc;
	}

}
@media (prefers-color-scheme: dark) {
	
::-webkit-scrollbar {
	width: 8px;
	height: 5px;
  }
  ::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
  }
  ::-webkit-scrollbar-thumb {
	background: #e1e1e1;
	border: 0px none #ffffff;
	border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb:hover {
	background: #ffffff;
  }
  ::-webkit-scrollbar-thumb:active {
	background: #ffffff;
  }
  ::-webkit-scrollbar-track {
	background: #666666;
	border: 0px none #ffffff;
	border-radius: 50px;
  }
  ::-webkit-scrollbar-track:hover {
	background: #666666;
  }
  ::-webkit-scrollbar-track:active {
	background: #666666;
  }
  ::-webkit-scrollbar-corner {
	background: transparent;
  }
	:root{
		--bg-c: #212121;
		--main-c: #f1f1f1;
		--sec-c: #41B7DC;
		--bc: #eee;
		--border-c: #5f5f5f;
		--slider-c: #5d5d5d;
		--input-bg-c: #333;

	}
	.button,button{
		background-color: var(--main-c);
		color: var(--main-c);
		background-color: var(--input-bg-c);
	}
	img.logo{
		content: url('/images/logo_dark.png');
	}
	input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select{
		background-color: var(--input-bg-c);
		color: var(--main-c);
	}
	input:-webkit-autofill,
	input:-webkit-autofill:hover, 
	input:-webkit-autofill:focus, 
	input:-webkit-autofill:active{
		/* background-color: var(--input-bg-c) !important; */
		background-color: transparent !important;
		-webkit-text-fill-color: var(--main-c) !important;
		-webkit-box-shadow: 0 0 0 50px var(--input-bg-c) inset;
	}
	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover,
	.button:focus,
	button:focus,
	input[type="submit"]:focus,
	input[type="reset"]:focus,
	input[type="button"]:focus{
		background-color: var(--input-bg-c);
		color: white;
	  	border-color: #fff;
	  	outline: 1; 
	}
	.slider{

	}
	.header a:hover {
		color: white;
	}

}
