@media (min-width: 600px) {
  .mobile {
    display: none !important; 
  }
}
@media (max-width: 600px) {
  #container {
    background: #fff;
  } 
  .desktop {
    display: none !important; 
  }
	#logo {
		display: none;
	}
	#copyright {
		display: none;
	}
	#title {
		z-index: 2;
		font-family: arial;
		width: 100%;
		border: none;
		border-radius: 0;
		left: 0px;
		top: 0px;
		box-sizing: border-box;
		position: static;
		height: 40px;
		line-height: 40px;
		font-size: 17px;
		font-weight: 100;
		text-align: center;
		padding: 0;
	}
	body {
		overflow-x: hidden;
		overflow-y: auto;
	}
	#container {
		border: none;
		border-radius: 0;
		width: 100%;
		height: auto;
		left: 0px;
		top: 0px;
		overflow: initial;
		position: relative;
		padding: 0;
		box-shadow: none;
		margin-top: 0px;
	}
	#footer {
		display: block;
		position: fixed;
		bottom: 0px;
		width: 100%;
		background: #333;
		height: 60px;
		box-sizing: border-box;
		text-align: center;
	}
	#footer > .button {
		display: inline-block;
		height: 46px;
		width: 46px;
		margin: 12px 6px 0px 6px;
		cursor: pointer;
		opacity: 0.5;
		line-height: 72px;
		color: white;
		font-size: 10px;

		background-size: 28px;
		background-repeat: no-repeat;
		background-position: center top;

		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	#footer > .button.selected {
		opacity: 1;
	}
}
