/* Nunito font-weights */

/* 

200: extra-light
300: light
400: regular
600: semi-bold
700: bold
800: extra-bold
900: black

*/


a {
    color: #fff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	position: relative;
	-webkit-tap-highlight-color: transparent;
}


html,
body {
	color: white;
	font-size: 16px;
	-webkit-text-size-adjust: none;
		-moz-text-size-adjust: none;
			-ms-text-size-adjust: none;
				text-size-adjust: none;
}

body {
	background: #181818;
	font-family: "Nunito", Helvetica, Arial, sans-serif;
	font-weight: 400;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	-webkit-user-select: none;
		-moz-user-select: none;
			-ms-user-select: none;
				user-select: none;
	width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	color: #A0A0A0;
}



body {
	background-color: #0d0d0d;
}

.container {
	max-width: 720px;
	margin-right: auto;
	margin-left: auto;
	/* width: 87.5%; */
	padding-right: 6.25%;
	padding-left: 6.25%;

	padding-top: 40px;

	/* background-color: green; */
}

.toggler {
	z-index: 1;
	margin-right: auto;
	margin-left: auto;
	max-width: 500px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	/* justify-content: center; */
	border-radius: 8px;
	padding: 4px;
	margin-bottom: 60px;
	background-color: #282828;
}


input[type="radio"].toggle-item {
	display: none;
}

.halfy,
input[type="radio"].toggle-item + label.toggle-button {
	display: block;
	cursor: pointer;
	border-radius: 6px;
	text-align: center;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.02em;
	font-weight: 600;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	color: rgba(255,255,255,0.8);
	transition: color 200ms cubic-bezier(0.77, 0, 0.175, 1), background-color 200ms cubic-bezier(0.77, 0, 0.175, 1);
	transition: color 200ms ease-out;
}
.toggler-2-options input[type="radio"].toggle-item + label.toggle-button {		width: 50%;}
.toggler-3-options input[type="radio"].toggle-item + label.toggle-button {		width: 33.3%;}
.toggler-4-options input[type="radio"].toggle-item + label.toggle-button {		width: 25%;}

input[type="radio"].toggle-item:checked + label.toggle-button {
	color: rgba(255,255,255,1.0);
	cursor: default;
}


input[type="radio"].toggle-item + label.toggle-button:hover {
	color: rgba(255,255,255,1.0);
	/* background-color: rgba(0,0,0,0.3); */
}
input[type="radio"].toggle-item:checked + label.toggle-button:hover {
	background-color: transparent;
}


input[type="radio"].toggle-item + label.toggle-button:active {
	/* background-color: rgba(0,0,0,0.5); */
	transition: 0s;
}
input[type="radio"].toggle-item:checked + label.toggle-button:active {
	background-color: transparent;
}




.halfy:first-child::after,
input[type="radio"].toggle-item.toggle-left + label.toggle-button::after {
	display: block;
	z-index: -1;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	transition: transform 200ms cubic-bezier(0.77, 0, 0.175, 1);
	transform: translateX(100%);

	background-color: #646464;
}


input[type="radio"].toggle-item.toggle-left:checked + label.toggle-button::after {
	transform: translateX(0px);
}
