/* base font-size corresponds to 10px and is adapted to rem unit */
html {
  height: 100%;
}
body {
  height: 100%;
	background-image: radial-gradient(50% 176%, #253854 80%, #061922 100%);	
}

.hero {
  background-image: radial-gradient(50% 176%, #253854 80%, #061922 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-content: center;
  
  &__content {
    position: relative;
    align-self: center;
    padding: 3rem 0;
  }
}

.snow {
  position: absolute;
  min-width: 100vw;
  min-height: 100vh;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.snow .svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

#snow-top-layer {
  will-change: transform;
  transform: translateY(-768px);
  animation: fall 22.5s infinite linear;
}

#snow-bottom-layer {
  will-change: transform;
  transform: translateY(-768px);
  animation: fall 45s infinite linear;
}

@keyframes fall {
  
  100% {
    transform: translateY(0);
  }
  
}

.i-large {
	background: url("./particules_large.png") repeat 0px 0px;
	-webkit-animation: dropFlowParticles 2s linear infinite;
	     -o-animation: dropFlowParticles 2s linear infinite;
	        animation: dropFlowParticles 2s linear infinite;
}
.i-medium {
	background: url("./particules_medium.png") repeat 0px 0px;
	-webkit-animation: dropFlowParticles 12s linear infinite;
	     -o-animation: dropFlowParticles 12s linear infinite;
	        animation: dropFlowParticles 12s linear infinite;
}
.i-small {
	background:url("./particules_small.png") repeat 0px 0px;
	-webkit-animation: dropFlowParticles 27s linear infinite;
	     -o-animation: dropFlowParticles 27s linear infinite;
	        animation: dropFlowParticles 27s linear infinite;
}
 
@-webkit-keyframes dropFlowParticles {
	from { background-position: 0 0; }
	to { background-position: 0 413px; }
}
@keyframes dropFlowParticles {
	from { background-position: 0 0; }
	to { background-position: 0 413px; }
}
artist {
	font-family: 'Indie Flower', cursive;
	font-size:2em;
}
track-title {
	font-family: 'Special Elite', cursive;
	font-size:1.4em;
	line-height: 0.2;
}
cover {
	background-size: 80px;
	margin: 0 10px 0 0;
	height:80px;
	width:80px;
}
share {
	font-size: 1.4em;
	line-height:2.5;
}
#play {
	width:80px;
	height:80px;
	font-size:40px;
	margin:10px 0 0 0;
}
#pause {
	display:none;
	width:80px;
	height:80px;
	font-size:40px;
	margin:10px 0 0 0;
}
#stop {
	display:none;
	width:40px;
	height:40px;
	font-size:20px;
	margin:30px;
}
#volume {
	display:none;
	padding:30px 0;
	margin:0 0 -40px 0;
}
#formVolume{
	width:100px;
	margin:5px;
	display:block;
}
input[type=range] {
  width: 100%;
  margin: 5px 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  background: #faf6f9;
  border: 0.1px solid #ffffff;
  border-radius: 25px;
  width: 100%;
  height: 11px;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  margin-top: -5.1px;
  width: 11px;
  height: 21px;
  background: #ffc800;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ffffff;
}
input[type=range]::-moz-range-track {
  background: #faf6f9;
  border: 0.1px solid #ffffff;
  border-radius: 25px;
  width: 100%;
  height: 11px;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 11px;
  height: 21px;
  background: #ffc800;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
}
input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 5px 0;
  color: transparent;
  width: 100%;
  height: 11px;
  cursor: pointer;
}
input[type=range]::-ms-fill-lower {
  background: #f5ecf2;
  border: 0.1px solid #ffffff;
  border-radius: 50px;
}
input[type=range]::-ms-fill-upper {
  background: #faf6f9;
  border: 0.1px solid #ffffff;
  border-radius: 50px;
}
input[type=range]::-ms-thumb {
  width: 11px;
  height: 21px;
  background: #ffc800;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
  background: #faf6f9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {
  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
  input[type=range] {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}

#maximize {
	display:none;
}
#notitrage {
	display:none;
}
@media (max-width: 480px)
{
	cover { display:none; }
	artist { font-size:1.4em; padding:0 0 0 5px; }
	track-title { font-size:1em; padding:0 0 0 5px; }
	share { display:none; }
	#radioSelector { display:none; }
	#play {
		width:60px;
		height:60px;
		font-size:30px;
	}
	#pause {
		display:none;
		width:60px;
		height:60px;
		font-size:30px;
	}
	#stop {
		display:none;
		width:30px;
		height:30px;
		font-size:16px;
		margin:25px;
	}
	#formVolume {
		display:none;
	}

}

@media (min-width: 481px) and (max-width: 780px)
{
	cover {
		background-size: 50px;
		height:50px;
		width:50px;
	}
	artist { font-size:1.4em; }
	track-title { font-size:1em; }
	share { display:none; }
	#radioSelector { display:none; }
	#play {
		width:40px;
		height:40px;
		font-size:20px;
		margin:5px 0 0 0;
	}
	#pause {
		display:none;
		width:40px;
		height:40px;
		font-size:20px;
		margin:5px 0 0 0;
	}
	#stop {
		display:none;
		width:25px;
		height:25px;
		font-size:10px;
		margin:12px;
	}
	input[type=range] {
	  width: 100%;
	  margin: 8.25px 0;
	  background-color: transparent;
	  -webkit-appearance: none;
	}
	input[type=range]:focus {
	  outline: none;
	}
	input[type=range]::-webkit-slider-runnable-track {
	  background: #faf6f9;
	  border: 0.1px solid #ffffff;
	  border-radius: 25px;
	  width: 100%;
	  height: 7.5px;
	  cursor: pointer;
	}
	input[type=range]::-webkit-slider-thumb {
	  margin-top: -8.35px;
	  width: 7px;
	  height: 24px;
	  background: #ffc800;
	  border: 0;
	  border-radius: 50px;
	  cursor: pointer;
	  -webkit-appearance: none;
	}
	input[type=range]:focus::-webkit-slider-runnable-track {
	  background: #ffffff;
	}
	input[type=range]::-moz-range-track {
	  background: #faf6f9;
	  border: 0.1px solid #ffffff;
	  border-radius: 25px;
	  width: 100%;
	  height: 7.5px;
	  cursor: pointer;
	}
	input[type=range]::-moz-range-thumb {
	  width: 7px;
	  height: 24px;
	  background: #ffc800;
	  border: 0;
	  border-radius: 50px;
	  cursor: pointer;
	}
	input[type=range]::-ms-track {
	  background: transparent;
	  border-color: transparent;
	  border-width: 8.25px 0;
	  color: transparent;
	  width: 100%;
	  height: 7.5px;
	  cursor: pointer;
	}
	input[type=range]::-ms-fill-lower {
	  background: #f3e9f0;
	  border: 0.1px solid #ffffff;
	  border-radius: 50px;
	}
	input[type=range]::-ms-fill-upper {
	  background: #faf6f9;
	  border: 0.1px solid #ffffff;
	  border-radius: 50px;
	}
	input[type=range]::-ms-thumb {
	  width: 7px;
	  height: 24px;
	  background: #ffc800;
	  border: 0;
	  border-radius: 50px;
	  cursor: pointer;
	  margin-top: 0px;
	  /*Needed to keep the Edge thumb centred*/
	}
	input[type=range]:focus::-ms-fill-lower {
	  background: #faf6f9;
	}
	input[type=range]:focus::-ms-fill-upper {
	  background: #ffffff;
	}
	/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
	how to remove the virtical space around the range input in IE*/
	@supports (-ms-ime-align:auto) {
	  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
	  input[type=range] {
		margin: 0;
		/*Edge starts the margin from the thumb, not the track as other browsers do*/
	  }
	}
	#formVolume{
		width:50px;
		margin:-15px;
		display:block;
	}

}

@media (min-width: 781px) and (max-width: 979px)
{
	cover {
		background-size: 80px;
		height:80px;
		width:80px;
	}
	share { display:none; }
	#radioSelector { display:block; }
	#play {
		width:60px;
		height:60px;
		font-size:30px;
		margin:10px 0 0 0;
	}
	#pause {
		display:none;
		width:60px;
		height:60px;
		font-size:30px;
		margin:10px 0 0 0;
	}
	#stop {
		display:none;
		width:30px;
		height:30px;
		font-size:15px;
		margin:25px;
	}
	input[type=range] {
	  width: 100%;
	  margin: 8.25px 0;
	  background-color: transparent;
	  -webkit-appearance: none;
	}
	input[type=range]:focus {
	  outline: none;
	}
	input[type=range]::-webkit-slider-runnable-track {
	  background: #faf6f9;
	  border: 0.1px solid #ffffff;
	  border-radius: 25px;
	  width: 100%;
	  height: 7.5px;
	  cursor: pointer;
	}
	input[type=range]::-webkit-slider-thumb {
	  margin-top: -8.35px;
	  width: 7px;
	  height: 24px;
	  background: #ffc800;
	  border: 0;
	  border-radius: 50px;
	  cursor: pointer;
	  -webkit-appearance: none;
	}
	input[type=range]:focus::-webkit-slider-runnable-track {
	  background: #ffffff;
	}
	input[type=range]::-moz-range-track {
	  background: #faf6f9;
	  border: 0.1px solid #ffffff;
	  border-radius: 25px;
	  width: 100%;
	  height: 7.5px;
	  cursor: pointer;
	}
	input[type=range]::-moz-range-thumb {
	  width: 7px;
	  height: 24px;
	  background: #ffc800;
	  border: 0;
	  border-radius: 50px;
	  cursor: pointer;
	}
	input[type=range]::-ms-track {
	  background: transparent;
	  border-color: transparent;
	  border-width: 8.25px 0;
	  color: transparent;
	  width: 100%;
	  height: 7.5px;
	  cursor: pointer;
	}
	input[type=range]::-ms-fill-lower {
	  background: #f3e9f0;
	  border: 0.1px solid #ffffff;
	  border-radius: 50px;
	}
	input[type=range]::-ms-fill-upper {
	  background: #faf6f9;
	  border: 0.1px solid #ffffff;
	  border-radius: 50px;
	}
	input[type=range]::-ms-thumb {
	  width: 7px;
	  height: 24px;
	  background: #ffc800;
	  border: 0;
	  border-radius: 50px;
	  cursor: pointer;
	  margin-top: 0px;
	  /*Needed to keep the Edge thumb centred*/
	}
	input[type=range]:focus::-ms-fill-lower {
	  background: #faf6f9;
	}
	input[type=range]:focus::-ms-fill-upper {
	  background: #ffffff;
	}
	/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
	how to remove the virtical space around the range input in IE*/
	@supports (-ms-ime-align:auto) {
	  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
	  input[type=range] {
		margin: 0;
		/*Edge starts the margin from the thumb, not the track as other browsers do*/
	  }
	}
	#formVolume{
		width:80px;
		margin:0px;
		display:block;
	}


}