@charset "utf-8";
/* CSS Document */
body, html {
	/*width: 100%;
	height: 100%;*/
	margin: 0;
	padding: 0;
}
body {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 300;
	background-color: #000000;
}
.playground {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	max-width: 100%;
	padding: 0;
}
.playground-head{
	display: flex;
	align-items: center;
	margin-left: 0.5rem;
}
.playground-row {
	height: 45%;
	display: flex;
	/* width: 100%; */
	justify-content: center;
}
.playground-row:after {
	clear: both;
	content: '';
	display: table;
}

.playground-nav {
	width: 99%;
	height: 65px;
	display: flex;
	margin: 0;
	color: #fff;
	background-color: #000000;
	padding:2px;
	justify-content: space-between;
}
.playground-nav:after {
	clear: both;
}
.playground-nav h1 {
	font-size: 1.5em;
	padding: 0px 0 0 20px;
	margin: 0;
}
.playground-button-container {
	margin: 0;
	display: flex;
	padding: 2px 100px 0 0;
	align-items: center;
}
.playground-button {
	padding: 0.6rem;
	margin: 0 10px 0 0;
	background-color: #08128d;
	color: #fff;
	font-size: 1.1em;
	font-weight: 400;
	border-radius: 5px;
	display: flex;
	align-items: center;
}
.playground-button:hover {
    background-color: #8188e9;
}
.playground-button:hover ._run{
	color: #81e9a4;
}

.playground-player {
    height: 100%;
    transition: all .6s ease-in-out;
    position: relative;
    padding: 0 0.2rem;
    flex-grow: 1;
    display: flex;
    flex-basis: 0;
    min-width: 0.5%;
    flex-direction: column;
}
.playground-player.is-active{
	flex-grow: 8;/*à ajuster en fonction de la taille de la fenêtre dans laquelle on affiche*/
}
.playground-player.is-collapsed{
	flex-grow: 0;
}
.btn {
    background-color: #0d0d0e;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    font-size: 1.3rem;
    margin-left: 0rem;
    padding: 0.3rem;
    transition: all .2s ease-in-out;
    line-height: 1rem;
}
.btn:hover {
    background-color: #39373e;
    color: rgb(172, 238, 238);
}

.playground-player.is-active .btn {
    background: #656565;
    color: #000;
}
.playground-label {
    display: flex;
    border-radius: 16px 16px 0 0;
    background-color: rgb(34 34 34);
    color: #fff;
    padding: 5px;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	height: 35px;
}
code.padding-10{
	padding: 0 10px;
}
iframe {
	height: 100%;
	position: relative;
	width: 100%;
	border: none;
}
.playground-results-frame{
	background-color: rgb(255, 255, 255);
}
.playground-player-results {
	border: 0;
	border-top: 1px solid #fff;
	position: relative;
	height: 100%;
	width: 100%;
}
.playground-player-results .playground-label{
	border-radius: 0;
    justify-content: flex-start;
}
._resultat{
	padding: 0 10px;
}
.cm-s-ambiance .CodeMirror-linenumber {
    text-shadow: 0px 0px 3px #000000;
    color: #959595;
    padding: 0 5px;
}