/* customizable snowfall styling */
#santahat {
	pointer-events: none;
	position: absolute;
	background: url("./images/santahat.png");
	height: 128px;
	width: 128px;
	margin: -28px -75px -100px -53px;
	z-index: 1;
}

.santahatsm {
	pointer-events: none;
	position: absolute;
	background: url("./images/santahatsm.png");
	height: 64px;
	width: 64px;
	margin: -16px -40px -48px -24px;
	z-index: 1;
}

@media screen and (max-width: 920px) {
	#santahat {display: none;}
}

#snowcap {
	display: block;
	background: transparent;
	background-image: url("./images/snowcap.png");
	background-size: auto 100%;
	height: 56px;
	border-radius: 28px 28px 0 0;
	margin: -20px -7px -35px;
	z-index: 1;
}

.snowcaps {
	display: block;
	background: url("./images/snowcaps.png") repeat-x;
	background-size: 100% 24px;
	height: 28px;
	margin: 10px 1px -12px;
	border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 900px) {
  .snowcaps {
      background: url("./images/snowcapsm.png") repeat-x;
  }
}

.action-bar {
	margin: 15px;
}

#snow-container {  
	pointer-events: none;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	transition: opacity 500ms;
	width: 100%;
	z-index: 1;
}

.snow {
	animation: fall ease-in infinite, sway ease-in-out infinite;
	color: rgba(255,255,255,1);
	position: absolute;
}

@keyframes fall {
	  0% { opacity: 0; }
	 50% { opacity: 1; }
	100% { top: 100vh; opacity: 1; }
}

@keyframes sway {
	  0% { margin-left: 0; }
	 25% { margin-left: 50px; }
	 50% { margin-left: -50px; }
	 75% { margin-left: 50px; }
	100% { margin-left: 0; }
}

.timecount {
	margin-top:-4px;
}
