/*@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');*/

/** {
	box-sizing: border-box;
}
*/

body {
	/*background-image: url("../../assets/images/background/town_day.png");*/
	  
	background-attachment: fixed;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% 85%;
	padding: 0; 
	margin: 0;

  	/*padding-bottom: 6rem;*/

  	position: relative;
  	height: auto;
	min-height: 100% !important;

}

body.dark {
  	/*background-image: url("../../assets/images/background/town_night.png");*/
  
  	background-attachment: fixed;
  	background-position: top center;
  	background-repeat: no-repeat;
  	background-size: 100% 85%;
  	padding: 0; 
  	margin: 0;

  	position: relative;
  	height: auto;
  	min-height: 100% !important;
	
}

/*	min-height: 80vh;
    height: 710px; 
	background-color: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
	transition: background 0.2s linear; */


@media screen and (max-width: 768px) {


	body {
		background-image: none;
		  
		background-attachment: fixed;
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100% 85%;
		padding: 0; 
		margin: 0;

	  	/*padding-bottom: 6rem;*/

	  	position: relative;
	  	height: auto;
		min-height: 100% !important;

	}

	
	body.dark {
		background-image: none;
  
		background-attachment: fixed;
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100% 85%;
		padding: 0; 
		margin: 0;

	  	position: relative;
	  	height: auto;
	  	min-height: 100% !important;
    }

}

@media screen and (max-height: 600px) {

	
	body.dark {
		background-image: url("../../assets/images/background/town_night.png");
  
		background-attachment: fixed;
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100% 100%;
		padding: 0; 
		margin: 0;

	  	position: relative;
	  	height: auto;
	  	min-height: 100% !important;
    }

}

#featurelink{
	color: #555;
}

#featurelink.dark {
	color: #ccc;
}

/*min-height: 80vh;*/
/*height: 710px; */
/*background: #292C35;*/

.checkbox {
	opacity: 0;
	position: absolute;
}

.label {
	background-color: #333;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px;
	position: relative;
	height: 26px;
	width: 50px;
	transform: scale(1.2);
}

.label .ball {
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	height: 22px;
	width: 22px;
	transform: translateX(0px);
	transition: transform 0.2s linear;
	size: 12px;
}

#checkbox:checked + .label .ball {
	transform: translateX(24px);
}


.fa-moon-o {
	color: #f1c40f;
	margin-right: 4px;
}

.fa-sun-o {
	color: #f39c12;
	margin-left: 4px;
}









