@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: 5;
		font-family: arial;
		width: 100%;
		border: none;
		border-radius: 0;
		left: 0px;
		top: 0px;
		box-sizing: border-box;
		position: static;
		height: 25px;
		line-height: 25px;
		font-size: 12px;
		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;
	}
}
.slider-holder {
	position: relative;
}
.slider:not(.vertical) {
	position: absolute;
	height: 4px;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 3;
	opacity: 0;
	pointer-events: none;
}
.slider-left-fill {
  position: absolute;
  top:0px;
  left: 0px;
  width:50%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}
.slider-right-fill {
  position: absolute;
  top:0px;
  left: 50%;
  width:50%;
  height: 100%;
  position: relative;
}
.slider-handle {
	z-index: 1;
	position: absolute;
	left: 50%;
	top: 0px;
	margin-left: -15px;
	margin-top: -13px;
	width: 30px;
	height: 30px;
	z-index: 65;
	background-color: white;
	cursor: pointer;
	border-radius: 17px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	z-index: 6;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.slider-value {
  position: absolute;
  /* pointer-events: none; */
  left: 100%;
  top: 23px;
  margin-left: 10px;
  margin-top: -39px;
  width: 50px;
  text-align: center;
  font-size: 16px;
  background: #666;
  color: white;
  box-sizing: border-box;
  padding: 7px;
  text-align: center;
  padding-top: 8px;
}
.slider-max-value, .slider-min-value {
	color: #b8bcbe;
	position: absolute;
	margin-top:4px;
	font-size: 12px;
}
.slider-fill {
	
}
.slider-min-value {
	left: 0px;
}
.slider-max-value {
	right: 0px;
}

