@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: 25px;
		line-height: 25px;
		font-size: 12px;
		font-weight: 100;
		text-align: center;
		padding: 0;
	}
	body {
		overflow-x: hidden;
		overflow-y: auto;
		max-width: 100%;
		height: 100vh;
		width: 100vw;
	}
	#container {
		border: none;
		border-radius: 0;
		width: 100%;
		height: auto;
		min-height: 100vh;
		left: 0px;
		top: 0px;
		overflow: auto;
		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 {
	background: #abafb0;
	position: relative;
	width: 100%;
	height: 4px;
	margin-top: 13px;
	margin-bottom: 47px;
}
.slider-left-fill {
  display: none;
	position: absolute;
	top:0px;
	left: 0px;
	width:50%;
	height: 100%;
	background: #a7a79d;
}
.slider-right-fill {
  position: absolute;
  top:0px;
  left: 50%;
  width:50%;
  height: 100%;
  position: relative;
  background: #e6e6db;
}
.slider-handle {
	z-index: 1;
	position: absolute;
	left: 50%;
	top: 0px;
	margin-left: -14px;
	margin-top: -11px;
	width: 26px;
	height: 26px;
	background: center no-repeat url(../assets/slider-arrows-horizontal.png);
	background-color: white;
	cursor: pointer;
	border-radius: 14px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.slider-value {
  position: absolute;
  pointer-events: none;
  left: calc(100% + 10px);
  top: 24px;
  margin-left: 10px;
  margin-top: -38px;
  width: 54px;
  text-align: center;
  font-size: 16px;
  background: #31363a;
  color: white;
  box-sizing: border-box;
  display: none;
  padding: 7px 7px;
}
.slider-max-value, .slider-min-value {
	color: rgb(171,175,176);
	position: absolute;
	margin-top: 6px;
	white-space: nowrap;
}
.slider-fill {
	
}
.slider-min-value {
	left: 0px;
}
.slider-max-value {
	left: auto;
	right: 0px;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
	z-index: 20;
}




.front-page .scope {
}