/************************************/
/*              TOP                 */
/************************************/

.music .grey_colonne {
	position: relative;
}
.round_btn {
	padding: 8px 15px;
	padding-left: 40px;
	font-size: 16px;
	border-radius: 6px;
}
.round_btn::after {
    left: 10px;
    height: 14px;
    width: 18px;
}
.player_top {
	position: relative;
	width: 100%;
}
.player_top .visuel {
	position: relative;
	left: 0;
	top: 0;
	width: 33%;
	padding: 40px;
	padding-bottom: 0;
}
.player_top .visuel img {
	width: 100%;
	height: auto;
}
.player_top .titre {
	position: absolute;
	left: 33%;
	top: 0;
	padding-top: 30px;
}
.player_top .titre .marges {
	padding: 0;
	padding-top: 40px;
}
.player_top .titre .song_name {
	color: #ffffff;
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 0;
}
.player_top .titre .album_name {
	color: #ffffff;
	font-size: 24px;
	font-weight: 500;
}
.player_top .titre .album_name span {
	opacity: 0.5;
	margin-left: 15px;
}
.player_top .titre .CTA {
	text-align: left;
	margin: 0;
	padding: 0;
	margin-top: 10px;
}
.controls_container {
	position: absolute;
	left: 33%;
	bottom: 0;
	width: 67%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.controls_container .controls {
	width : 50%;
	display: flex;
	flex-direction: column;
}
.controls .buttons {
	min-height: 100px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 5px
}
.btn_big {
	height: 90px;
	width: 90px;
	border-radius: 100px;
	background-color: #f04568;
	background-image: url("../icons/Music_Player/picto_Play.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 40%;
	-webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
	cursor: pointer;
}
.btn_play {
	background-image: url("../icons/Music_Player/picto_Play.svg");
}
.btn_pause {
	background-image: url("../icons/Music_Player/picto_Pause.svg");
	background-color: #565656;
	opacity: 1;
	display: none;
}
.btn_small {
	height: 50px;
	width: 50px;
	border-radius: 100px;
	background-color: #565656;
	margin-bottom: 7px;
	opacity: 0.5;
	background-image: url("../icons/Music_Player/picto_Next.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 40%;
	-webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
	cursor: pointer;
}
.btn_prev {
	margin-right: 15px;
	transform: rotate(-180deg);
}
.btn_next {
	margin-left : 15px;
}
.btn_big:hover, .btn_small:hover {
	opacity: 0.8;
}
.hidden {
    display: none;
}
.visible {
    display: block;
}
.timeline {
	display: flex;
	align-items: center;
}
.timeline .time {
	font-size: 14px;
	opacity: 0.4;
	font-weight: 500;
	width: 40px;
	text-align: right;
}
.timeline .time2 {
	text-align: left;
}
.volume {
	height: 6px;
	width: 100%;
	max-width: 150px;
	background-color: #353535;
	position: relative;
	margin-bottom: 6px;
	margin-right: 40px;
	margin-left: 60px;
}
.volume:after {
	background-image: url("../icons/Music_Player/picto_Sound.svg");
	background-repeat: no-repeat;		
	content: "";
    height: 24px;
	width: 28px;;
    top: -7px;
    left: -35px;
    position: absolute;
    display: inline-block;
	opacity: 0.4;
}
.tracker {
	height: 6px;
	flex: 1;
	background-color: #353535;
	margin: 0 10px;
	border-radius: 100px;
	position: relative;
}
.ui-slider-range {
	height: 4px;
	top: 1px;
	left: 1px;
	position: absolute;
	background-color: #f04568;
	border-radius: 100px;
}
.ui-slider-handle {
    cursor: pointer;
    height: 14px;
	width: 14px;
    margin-left: -4px;
    position: absolute;
    top: -4px;
    z-index: 2;
	outline: none;
}
.volume .ui-slider-handle {
	background-color: #868686;
	background-position: center center;
	border-radius: 100px;
}

@media only screen and (max-width : 1200px) {
	.player_top .titre .song_name {
		font-size: 35px;
	}
	.player_top .titre .album_name {
		font-size: 18px;
	}
	.btn_big {
		height: 70px;
		width: 70px;
	}
	.btn_small {
		height: 30px;
		width: 30px;
	}
}

@media only screen and (max-width : 992px) {
	.player_top {
		display: flex;
		flex-wrap: wrap;
	}
	.player_top .visuel {
		position: relative;
		display: inline-block;
		left: 0;
		top: 0;
		width: 50%;	
		padding: 20px !important;
		padding-top: 40px !important;
		padding-bottom: 0 !important;
	}
	.player_top .titre {
		position: relative;
		width: 49%;
		left: 0;
		top: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding-top: 40px;
		padding-right: 10px;
	}
	.player_top .titre .marges {
		padding-top: 0;
		padding-bottom: 0;
	}
	.controls_container {
		position: relative;
		width: 100%;
		left: 0;
		padding: 0 20px;
	}
	.controls_container .controls {
		width : 100%;
		display: flex;
		flex-direction: column;
	}
	.volume {
		display: none;
	}
	.visuel {
		padding: 30px;
		padding-top: 40px
	}
	.player_top .titre .song_name {
		font-size: 26px;
		margin-bottom: 5px;
	}
	.player_top .titre .album_name {
		font-size: 18px;
	}
}
@media only screen and (max-width : 780px) {
	.player_top .visuel {
		width: 100%;
		padding: 30px 20px !important;
		padding-bottom: 0 !important;
	}
	.player_top .titre {
		width: 100%;
		padding-top: 10px;
		padding-left: 20px;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.controls_container {
		padding: 0 15px;
	}
	.player_top .titre .song_name {
		font-size: 22px;
	}
	.player_top .titre .album_name {
		font-size: 16px;
	}
	.player_top .titre .album_name span {
		display: block;
		margin-left: 0;
	}
	.round_btn {
		padding: 8px 15px;
		padding-left: 32px;
		font-size: 14px;
		border-radius: 6px;
	}
	.round_btn::after {
		left: 8px;
		height: 14px;
		width: 16px;
	}
}


/************************************/
/*          SONGS LIST              */
/************************************/

.songs_list {
	padding: 40px;
}
.header_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #353535;
	padding: 10px 20px;
}
.header_list div {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	opacity: 0.5;
}
.header_list img {
	height: 22px;
}
.col1 {
	width: 75px;
	text-align: center;
	margin-right: 30px;
}
.col2 {
	flex: 1;
}
.col3 {
	flex: 1;
}
.col4 {
	flex: 0.5;
}
.col5 {
	width: 45px;
	text-align: center;
}
.song_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	border-bottom : 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
}
.song_row:hover {
	background-color: rgba(0,0,0,0.2);
}
.song_row.active {
	background-color: rgba(0,0,0,1);
}
.song_row.active .col2{
	color: #f04568;
}
.song_row div {
	font-size: 16px;
	font-weight: 500;
	color: #a8a8a8;
}
.song_row .col2 {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}
.song_row img {
	width: auto;
	height: 75px;
}
.credits {
	padding: 15px;
	font-size: 14px;
	opacity: 0.8;
	line-height: 140%;
	padding-bottom: 0;
}
/*.CTA_Download {
	float: right;
	margin-top: -50px;
}*/
.CTA_Download {
	text-align: center;
	margin-top: -50px
}


@media only screen and (max-width : 992px) {
	.songs_list {
		padding: 20px;
	}
	.col1, .col4, .col5 {
		display: none;
	}
	.credits {
		padding: 15px;
		font-size: 13px;
		opacity: 0.8;
		line-height: 140%;
		padding-bottom: 0px;
	}
}
@media only screen and (max-width : 780px) {
	.play_list {
		padding: 5px 5px;
		padding-bottom: 10px;
	}
	.songs_list {
		padding: 0;
		padding-top: 20px;
	}
	.song_row div {
		font-size: 14px;
	}
	.song_row .col2 {
		font-size: 14px;
		padding-right: 20px;
	}
	.song_row {
		padding: 15px;
	}
	.header_list {
		padding: 10px 15px;
	}
	.header_list div {
		font-size: 15px;
	}
	.credits {
		padding-top: 5px;
		padding-left: 15px;
		font-size: 12px;
		opacity: 0.8;
		line-height: 140%;
		padding-bottom: 15px;
	}
	.CTA_Download {
		float: none;
		margin-top: 0;
		padding: 10px;
		padding-top: 0;
		padding-bottom: 20px;
	}
}













