/*
Theme Name: frequence3
Description: Une rafale de tubes - th&eagrave;me WP by Laurent
Author: Laurent
Author URI: mailto://laurent@helbe.net
Template: cream-magazine
Version: 1.0
*/

/* base font-size corresponds to 10px and is adapted to rem unit */
.advertisement-area { display:block}
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;
	}


}




.content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s
}

.card:hover .content-overlay {
    opacity: 1;
	cursor: pointer;
}

.content-image {
    width: 100%
}


.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

.card:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;		
	cursor: pointer;
}


.content-details p {
    color: #fff;
    font-size: 0.8em;
	cursor: pointer;
}

.fadeIn-bottom {
    top: 80%
}
