#account {
	display: block; position: relative;
}
#account .summary {
	display: block; position: relative;
}
#account .summary .icon {
	display: block; position: absolute;
	right: 0; top: 0; width: 4rem; height: 4rem;
	cursor: pointer;
}
#account .summary .info {
	min-height: 4rem; padding: 0 5rem 0 0;
}
#account .summary .info p {
	overflow: hidden;
	margin-top: 0.25rem;
	text-overflow: ellipsis;
}
#account .summary .info p.handle {
	margin-bottom: 1rem;
	font-weight: 700;
}
#account .logout {
	display: block;
	margin-top: 1rem;
	text-align: right;
}
@media (min-width: 425px) {
	#account .summary .icon {
		left: 0; right: unset; width: 4rem; height: 4rem;
	}
	#account .summary .info {
		min-height: 4rem; padding: 0 0 0 5rem;
	}
}
@media (min-width: 768px) {
	#account .summary .info {
		padding-right: 11rem;
	}
	#account .logout {
		position: absolute;
		top: 0; right: 0; margin-top: 0;
	}
}
#in_icon {
	display: none;
}

#token_count {
	display: block;
	font-size: 1.125rem;
}
#token_count .count {
	margin-left: 1rem;
}
#token_count i {
	margin-left: 0.375rem;
}

.setting {
	display: flex; column-gap: 1rem; align-items: center;
}
.setting .name {
	flex: 1 1 auto;
	font-size: 1.125rem;
}
.setting .ctrl {
	flex: 0 0 fit-content;
}
.setting .check {
	display: block;
}
.setting .switch {
	display: none;
}
.setting .switch + label {
	display: block; position: relative;
	width: 3rem; height: 1.6rem;
	border-radius: 0.8rem; box-shadow: inset 0 0 0 1px #d5d5d5;
}
.setting .switch + label:before {
	content: "";
	display: block; position: absolute;
	left: 0; top: 0; width: 1.6rem; height: 1.6rem;
	background: rgba(0,0,0,0); border-radius: 0.8rem;
	transition: .15s ease-in-out;
}
.setting .switch + label:after {
	content: "";
	display: block; position: absolute;
	left: 0; top: 0; width: 1.6rem; height: 1.6rem;
	background: #fff; border-radius: 0.8em; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.2);
	transition: .15s ease-in-out;
}
.setting .switch:checked + label:before {
	width: 3rem;
	background: #468c0d;
}
.setting .switch:checked + label:after {
	left: 1.4rem;
	box-shadow: inset 0 0 0 1px #468c0d, 0 1px 2px rgba(0,0,0,0.2);
}
