/* customizable snowflake styling */
.smiliebig1 {
	display: none;
}
/* style the header */
#santahat {
	pointer-events: none;
	position: absolute;
	background: url("./images/santahat.png");
	height: 128px;
	width: 128px;
	margin: -20px 0 4px -52px;
	z-index: 1;
}
@media screen and (max-width: 700px) {
    #santahat {display: none;}
}

/* style the row on hover */
li.row:hover {
  background-image: url("./images/santahat.png");
  background-size: 50px;
  background-repeat:  no-repeat;
  background-position: center right;
}

#snowcap {
  display: absolute;
  background: transparent;
  background-image: url("./images/snowcap.png");
  background-size: auto 100%;
  height: 56px;
  border-radius: 28px 28px 0 0;
  margin: -18px -7px -41px;
}

.snowcaps {
  display: absolute;
  background: url("./images/snow.png") repeat-x;
  height: 26px;
  margin: 10px -3px -15px;
  border-radius: 20px 20px 10px 10px;
}

.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,0.7);
  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;
  }
}
