#disk {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#disk-info {
	text-align: center;
	max-width: 400px;
}

#disk-img {
	width: 100%;
}

#disk-header {
	display: flex;
	align-items: center;
}

#disk-header-left {
	flex: 1;
}

#disk-title {
	font-size: 2em;
	margin: 10px 0;
}

#disk-subtitle {
	font-size: 1.25em;
	font-style: italic;
	margin: 5px 0;
}

#disk-share {
	cursor: pointer;
}

#song-list {
	width: calc(100% - 475px);
}

.song-header {
	display: flex;
	justify-content: space-between;
	font-size: 0.9em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.75);
	border-bottom: 1px solid rgba(0, 0, 0, 0.75);
	padding-bottom: 5px;
	margin:  0 10px 5px;
}

.song-header-right {
	display: flex;
}

.song-header-right span {
	width: 41px;
	display: block;
	margin: 0 7px;
}

.song {
	text-align: left;
}

.song:hover .song-preview,
.song.selected .song-preview {
	background-color: rgba(0, 0, 0, 0.2);
}

.song-title {
	font-size: 1.2em;
	margin: 0;
}

.song-info {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 10px 0 0 5px;
	font-size: 0.9em;
}

.song-info li:last-child::after {
	display: none;
}

.song-info li::after {
	content: "•";
	padding: 0 5px;
}

.song-data-container {
	height: 0;
	overflow: hidden;
	transition: 0.35s;
	background-color: #e6e6e6;
}

.song.selected .song-data-container {
	overflow: visible;
}

.song-data {
	padding: 15px;
}

.song-preview {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	transition: 0.25s;
}

.song-preview a {
	display: block;
	margin-right: 10px;
}

.song-preview img {
	height: 49px;
}

.song-left {
	display: flex;
}

.song-lyrics,
.song-video,
.song-share {
	font-size: 36px;
	margin-right: 10px;
}

.song-share {
	display: none;
}

.song.selected .song-share {
	display: unset;
}

.file-title {
	margin: 0 0 5px 0;
}

.file-title .material-icons {
	font-size: inherit;
	cursor: help;
}

.audio {
	display: flex;
	align-items: center;
	width: 100%;
}

.audio a {
	margin-left: 5px;
	color: inherit;
	text-decoration: none;
}

.audio .material-icons {
	font-size: 36px;
}

.audio a:not([href]) .material-icons {
	opacity: 0.25;
	cursor: default;
}

.audio-wrapper {
	flex: 1;
	margin: 0 0 7px 0;
}

.file-audio {
	width: 100%;
	font-size: 0.8em;
	font-style: italic;
}

.tooltip {
	position: relative;
}

.tooltip-content {
	display: none;
	position: absolute;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 10px;
	margin: 0;
	border-radius: 5px;
	font-family: "Trebuchet MS", sans-serif;
	text-align: center;
	white-space: normal;
}

.song.selected .tooltip:hover .tooltip-content {
	display: block;
}

#popup {
	display: none;
	position: absolute;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.75);
	cursor: pointer;
}

#paroles-container {
	text-align: center;
	position: relative;
	margin: 15vh auto;
	width: 80%;
	height: calc(100% - 30vh);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	background-color: white;
	cursor: auto;
}

#paroles {
	display: block;
	width: 100%;
	height: calc(100% - 15px);
	padding-top: 15px;
	overflow-y: auto;
}

#paroles > :not(video):last-child {
	margin-bottom: 50px;
}

#paroles > video {
	max-height: calc(95% - 75px);
	max-width: 95%;
	margin-bottom: 15px;
}

#close-paroles {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	cursor: pointer;
}

.close-paroles-cross {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 10%;
	background-color: rgb(206, 8, 8);
}

#close-paroles-cross-part-1 {
	transform: translate(-50%) rotate(45deg);
}

#close-paroles-cross-part-2 {
	transform: translate(-50%) rotate(-45deg);
}