/**
* ===========================
* ===========================
* APPLICATION EPGL STREAM CSS
* Core CSS
* version 0.9.0
* author: Yann MANET
* EPGL - Section des sciences
* pharmaceutiques - Genève
* - 2017
* ===========================
* ===========================
*/
body {
	background: url(../img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: thesansosflight,Helvetica,Arial,sans-serif;
	font-size:1.6em;
	/*overflow-y: scroll;
	overflow-x: hidden;*/
}

/**
* PANEL
*/

.panel {
	border:none;
}

.panel-main {
	margin-top:70px;
	margin-bottom:60px;
}

.panel-less-opacity {
	background-color: rgba( 255, 255, 255, 0.5 );
}

/**
* VIDEOS LIST 
*/

.folder {
	padding:5px;
	margin-bottom:5px;
	font-weight:400;
	border-radius:5px;
}

.videos-list li {
	color: #585858;
	margin-left:15px;
	padding:2px;
	line-height:24px;
}

.videos-list li:hover {
	background-color: #bbbbbb;
	border-radius:5px;
	cursor: pointer;
	-webkit-transition: background-color 0.3s; 
    transition: background-color 0.3s;
}

/**
* MODALE 
*/
.modal-dialog {
	width:60%;
}

@media (max-width:768px) {
	.modal-dialog {
		width:100%;
	}
}