html,
body {
	margin: 0;
	padding: 0;
}

body *
{
	transition: 0.4s all;
	-o-transition: 0.4s all;
	-moz-transition: 0.4s all;
	-webkit-transition: 0.4s all;
}

body {
	background: #000484; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #000484 0%, #63ddff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #000484 0%,#63ddff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #000484 0%,#63ddff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	background-size: 100vw 100vh;
	background-attachment: fixed;
	color: white;
	font-family: sans-serif;
	text-align: center;
}
div#background-wrap {
	background: #000484; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #000484 0%, #63ddff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #000484 0%,#63ddff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #000484 0%,#63ddff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	background-size: cover;
	height: 140vh;
	width: 100vw;
	position: fixed;
	z-index: -1;
	top: -20vh;
	left: 0;
}
h1
{
	font-size: 42px;
}
h2 {
	font-size: 18px;
}
ul
{
	width: 90vw;
	max-width: 650px;
	margin: 0 auto;
	list-style: none;
	padding: 0 0 70px;
}
li
{
	width: 100%;
	max-height: 53px;
	margin: 12px 0;
	overflow: hidden;
	border-radius: 25px;
}
li > a,
li > label
{
	display: inline-block;
	background: white;
	color: black;
	height: 50px;
	border-radius: 25px;
	width: calc(100% - 60px);
	vertical-align: middle;
	font-size: 25px;
	line-height: 25px;
	padding: 12.5px 13px;
	text-decoration: none;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
}
li > a > span
{
	float: right;

}
li > label
{
	width: 50px;
	padding: 12.5px 0;
	margin-left: 10px;
	text-align: center;

	transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
img
{
	height: 25px;
	width: 25px;
	display: inline-block;
	vertical-align: top;
}
input[type=checkbox]
{
	display: none;
}
input[type=checkbox]:checked + li label
{
	transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}
input[type=checkbox]:checked + li
{
	max-height: 100vh;
	background: rgba(255,255,255,0.2)
}
div
{
	text-align: left;
	margin: 0;
	padding: 25px 12px;
	line-height: 29px;
}
strong {
	width: 100px;
	display: inline-block;
}
p {
	line-height: 24px;
	margin: 20px 0 0;
}
input[type=text]:focus-visible {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
input,
input[type=text],
input[type=text]:focus
{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	outline: none;
	border: 0;
	background: white;
	height: 29px;
	padding: 0 10px;
	margin-bottom: 6px;
	width: 200px;
	vertical-align: top;
	border-radius: 10px 0 0 10px;
	-webkit-border-radius: 10px 0 0 10px;
}
button {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	background: white;
	height: 29px;
	padding: 2px 2px 0 0;
	margin-left: 5px;
	width: 30px;
	border: 0;
	border-radius: 0 10px 10px 0;
	-webkit-border-radius: 0 10px 10px 0;
	vertical-align: top;
	cursor: pointer;
}
button img
{
	height: 18px;
	width: 18px;
}
hr {
	border: 1px solid white;
}
.copied
{
	background: #0dbc00 !important;
}
.nobr
{
	white-space: nowrap;
}

@media screen and (max-width: 575px) {
	ul {
		width: 96vw;
	}
	li a
	{
		font-size: 18px;
	}
}
@media screen and (max-width: 410px) {
	ul {
		width: 99vw;
	}
	li {
		border-radius: 20px;
		max-height: 42px;
	}
	li a {
		width: calc(100% - 50px);
	}
	li a,
	li label
	{
		font-size: 14px;
		height: 40px;
		border-radius: 20px;
		padding: 11px;
	}
	li label
	{
		width: 40px;
	}
	li img
	{
		height: 18px;
		width: 18px;
	}
}