/*
design.css
---------
 
Pour le site jmt-musique.com
Fichier créé le 25/12/2023
*/
/*/////////////////////// fiche 03 - NOTES TRANGERES/////////////////////////*/

.flex2 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10%;
}
.flex2 .article {
	flex: 1;
	max-width:400px;
	min-width: 300px;
}

.partition {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partition iframe {
  width:100%;
  max-width:800px;
}


.flexOeil {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5%;
	margin: 0 30px;
	padding: 0 10px;
	border: solid 1px;

}

.articleOeilLeft * {
	transition: all 1s ease-out;
}
.oeil {
	display: inline-block;
	height: 50px;
	width: 50px;
	margin-right: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 40px;
}

.articleOeilLeft,
.articleOeilRight
{
	 display : flex;
	 align-items : center;
   /* border: solid 1px; */
}

.articleOeilLeft {
   justify-content : center;
 }

.articleOeilRight {
   justify-content : left;
   width: 350px;
}
.articleOeilRight:hover {
	cursor: pointer;
	color: blue;
}
.articleOeilLeft img {
	width: 100%;
}

.oeilLeft{
	display: inline-block;
	height: 100px;
  width: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 500px;
}

.mp3 {
	display: inline-block;
	width: 100%;

}
audio {
	width: 100%;
	height: 30px;
}
/*/////////////////////// fiche 03 - 01 - EXERCICES 1 /////////////////////////*/

form.answer .comment {
		display: inline;
		margin-left : 10px;
}

form.answer .porteesDoubles.good .iconCorrection {
	background-image: url('../harmonie_files/fiches/fiches_files/icons/true.png');
}
form.answer .porteesDoubles.bad .iconCorrection {
	background-image: url('../harmonie_files/fiches/fiches_files/icons/false.png');
}
.iconCorrection {
	display: inline-block;
	height: 20px;
	width: 60px;
	min-width: 20px;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 16px;
}

form.answer .porteesDoubles.good select {
	color: green;
}
form.answer .porteesDoubles.bad select {
	color: red;
}
.porteesDoubles {
	width: 20%;
}
.porteeDouble {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.porteeDouble img,
.porteeDouble audio
{
	width: 80%;
	min-width: 220px;
}


