/**
*
* @package phpBB Extension - CSS Magic
* @copyright (c) 2018 martin - https://www.martins-play-ground.com & dmzx - https://www.dmzx-web.net
* @license Proprietary/All rights reserved (martins-play-ground.com ownes these files and has the right to disable them)
*
*/

#snowcap {
  display: absolute;
  background: transparent;
  background-size: auto 100%;
  height: 56px;
  border-radius: 28px 28px 0 0;
  margin: -18px -7px -41px;
}


#snowcaps {
  display: block;
  height: 26px;
  margin: -10px 0px -12px;
  border-radius: 30px 60px 6px 6px;
}

.action-bar {
  margin: 15px;
}

#snow-container {  
	pointer-events: none;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	transition: opacity 500ms;
	width: 100%;
}

.snow {
	animation: fall ease-in infinite, sway ease-in-out infinite;
	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;
}
