* {
	font-family: "Helvetica Neue", sans-serif;
}
@font-face {
	font-family: "Font Awesome 6 Free";
	src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/webfonts/fa-solid-900.ttf");
	font-display: swap;
}
html, body {
	overflow: hidden;
}
body {
	margin: 0;
}
#realtime_count {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#avatar {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#_subsCount {
	text-align: center;
	font-size: 50px;
	margin-bottom: 10.5px;
	margin-top: 10.5px;
}
#_likesCount {
	text-align: center;
}
#_beansCount {
	text-align: center;
}
input {
	border-radius: 0;
	padding: 10px;
	width: 200px;
}
button[type="submit"] {
	background-color: #006600;
	color: white;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}
input[type="submit"]:hover {
	background-color: #45a049;
}
input {
	background-color: #f2f2f2;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px;
	width: 200px;
}
.form {
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	transition: transform 0.5s ease-out;
	transform: translateX(-100%);
}
.form--show {
	transform: translateX(0);
}
#form_toggle_container {
	position: absolute;
	top: 11px;
}
#nickname_change {
	background-color: #fff;
}
button#submit.fa-check::before {
	display: none;
}
#footer_toggle {
	position: absolute;
	top: -32%;
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 10px;
  padding-left: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
  transition: transform 0.5s ease-out;
  align-items: center;
}
.footer--show {
	transform: translateY(60px);
	transition: transform 0.5s ease-out;
}
.toggle-btn, .toggle-btn-2 {
	border: none;
	height: 39px;
}
.footer-content {
	flex: 1;
}
@media only screen and (max-width: 632px) {
	#realtime_count {
		width: 95%;
	}
}
@media only screen and (max-width: 526px) {
	#footer_toogle {
		top: -25%;
	}
	.footer--show {
		transform: translateY(80px);
	}
}
