@charset "utf-8";


/* GENERAL */
.clear { clear: both; }
#outerdiv {
    overflow: hidden; /* make sure this doesn't cause unexpected behaviour */
}


DIV#pdftext {
  max-width: 690px;
  }



/*-------------------------
	Simple reset
--------------------------*/

*{
	margin:0;
	padding:0;
}


/*-------------------------
	File manager
-------------------------*/


.filemanager {
	width: 95%;
	max-width:700px;
	position: relative;
    margin:-25px 0px 50px 18px;*/
	/*margin:-25px auto 50px;*/
}

@media all and (max-width: 700px) {
	.filemanager {
		margin: 0px auto 0;
		padding: 1px;
	}
}


/*-------------------------
	Breadcrumps
-------------------------*/


.filemanager .breadcrumbs {
	color: #A3A3A3;
	margin: 40px 0px -25px 3px;
	font-size: 14px;
	font-weight: 600;
	line-height: 10px;
}

.filemanager .breadcrumbs a:link, .breadcrumbs a:visited {
	color: #A3A3A3;
	text-decoration: none;
  	font-size: 14px;
    font-weight: 600;
}

.filemanager .breadcrumbs a:hover {
	/* text-decoration: underline; */
	color: #756F52;  
}

.filemanager .breadcrumbs .arrow {
	color:  #6a6a72;
	font-size: 12px;
	font-weight: 400;
	line-height: 10px;
}


/*-------------------------
	Search box
-------------------------*/


.filemanager .search {
	position: absolute;
	padding: 0px 0px 0px 0px;
	cursor: pointer;
	right: 0;
	font-size: 14px;
	color: #0;
	display: block;
	width: 40px;
	height: 40px;
  
}

.filemanager .search:before { /* affiche le 'O' de la loupe */
	content: '';
	position: absolute;
	margin:12px 20px 0px 0px;
	width: 10px;
	height: 11px;
	border-radius: 50%;
	border: 2px solid #666666;
	right: 8px;
}

.filemanager .search:after { /* affiche le '/' de la loupe */
	content: '';
	width: 3px;
	height: 10px;
	background-color: #666666;
	border-radius: 2px;
	position: absolute;
	margin:23px 20px 0px 0px;
    right: 4px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.filemanager .search input[type=search] {
    border-radius: 2px;
    border: 1px solid #666666;
	color: #fff;
	background-color: #AEB9BF;
	width: 250px;
	height: 32px;
    /* below are the searh box alignement  */
	margin-top: -20px;
    margin-left: -270px;
	padding-left: 20px;
	/*  ----   */
	text-decoration-color: #4d535e;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	display: none;
	outline: none;
	border: none;
	padding-right: 10px;
	-webkit-appearance: none;
}

::-webkit-input-placeholder { /* WebKit browsers */
	color:    #4d535e;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color:    #4d535e;
	opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color:    #4d535e;
	opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color:    #4d535e;
}


/*-------------------------
	Content area
-------------------------*/

.filemanager .data {
	margin-top: 40px;
	z-index: -3;
}

.filemanager .data.animated {
	-webkit-animation: showSlowlyElement 700ms; /* Chrome, Safari, Opera */
	animation: showSlowlyElement 700ms; /* Standard syntax */
}

/* taille et couleur des boites*/
.filemanager .data li {
	border-radius: 3px;
	background-color: #E6E6E6;
	width: 700px;
	height: 64px;
	list-style-type: none;
	margin: 2px 10px 2px -18px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 0.2em;
	z-index: 1;
	cursor: pointer;
	box-sizing: border-box;
	transition: 0.3s background-color;
}

.filemanager .data li:hover {
	background-color: #D9D9D9;

}

.filemanager .data li a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* design: nom du fichier */
.filemanager .data li .name {
	color: #777777;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	width: 450px;
	white-space: nowrap;
	display: inline-block;
	position: absolute;
	overflow: hidden;
	text-overflow: ellipsis;
	top: 16px;
}

/* design: taille du fichier */
.filemanager .data li .details {
	color: #b6c1c9;
	font-size: 12px;
	font-weight: 300;
	width: 55px;
	height: 10px;
	top: 36px;
	white-space: nowrap;
	position: absolute;
	display: inline-block;
}

.filemanager .nothingfound {
	border-radius: 3px;
	background-color: #DEDEDE;
	width: 700px;
	margin: 2px 10px 2px -18px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding: 0.2em;
	height: 26em;
	display: none;
	font-family: Arial;
	-webkit-animation: showSlowlyElement 700ms; /* Chrome, Safari, Opera */
	animation: showSlowlyElement 700ms; /* Standard syntax */
}

.filemanager .nothingfound .nofiles {

}
.filemanager .nothingfound .nofiles:after {
}

.filemanager .nothingfound span {
	margin: 0px 0px 0px 30px;
	color: #707070;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	height: 13px;
	position: relative;
	top: 2em;
}


/*taille boite resized */
@media all and (max-width:750px) {

	.filemanager .data li {
		width: 350px;
		margin: 2px 0;
	}

}

/* Chrome, Safari, Opera */
@-webkit-keyframes showSlowlyElement {
	100%   	{ transform: scale(1); opacity: 1; }
	0% 		{ transform: scale(1.2); opacity: 0; }
}

/* Standard syntax */
@keyframes showSlowlyElement {
	100%   	{ transform: scale(1); opacity: 1; }
	0% 		{ transform: scale(1.2); opacity: 0; }
}


/*-------------------------
		Icons
-------------------------*/

.icon {
	font-size: 15px;
}
.icon.folder {
	display: inline-block;
	margin: 1em;
	background-color: transparent;
	overflow: hidden;
}
.icon.folder:before {
	content: '';
	float: left;
	background-color: #555B5E;

	width: 1.5em;
	height: 0.45em;

	margin-left: 0.07em;
	margin-bottom: 0.07em;

	border-top-left-radius: 0.1em;
	border-top-right-radius: 0.3em;

	box-shadow: 1.45em 0.25em 0 0em #7ba1ad;
}
.icon.folder:after {
	content: '';
	float: left;
	clear: left;

	background-color: #AEB9BF;
	width: 3em;
	height: 2.00em;

	border-radius: 0.3em;
}
.icon.folder.full:before {
	height: 0.55em;
}
.icon.folder.full:after {
	height: 2.15em;
	box-shadow: 0 -0.12em 0 0 #ffffff;
}

/* design icone */
.icon.file {
	width: 2.5em;
	height: 3em;
	line-height: 3em;
	text-align: center;
	border-radius: 12px;
	color: #FFF;
	display: inline-block;
	margin: 0.65em 1.9em 0.8em 0.7em;
	position: relative;
	overflow: hidden;
	box-shadow: 1.74em -2.1em 0 0 #A4A7AC inset;
    
    
}
.icon.file:first-line {
	font-size: 12px;
	font-weight: 400;
}

/* rond du coin haut-droit de l'icone feuille*/
.icon.file:after {
	content: '';
	position: absolute;
	z-index: -1;
	border-width: 0;
	border-bottom: 2.6em solid #4A4A4A;
	border-right: 2.22em solid rgba(0, 0, 0, 0);
	top: -25.5px;
	right: -4px;
}

.icon.file.f-avi,
.icon.file.f-flv,
.icon.file.f-mkv,
.icon.file.f-mov,
.icon.file.f-mpeg,
.icon.file.f-mpg,
.icon.file.f-mp4,
.icon.file.f-m4v,
.icon.file.f-wmv {
	box-shadow: 1.74em -2.1em 0 0 #7e70ee inset;
}
.icon.file.f-avi:after,
.icon.file.f-flv:after,
.icon.file.f-mkv:after,
.icon.file.f-mov:after,
.icon.file.f-mpeg:after,
.icon.file.f-mpg:after,
.icon.file.f-mp4:after,
.icon.file.f-m4v:after,
.icon.file.f-wmv:after {
	border-bottom-color: #5649c1;
}

.icon.file.f-mp2,
.icon.file.f-mp3,
.icon.file.f-m3u,
.icon.file.f-wma,
.icon.file.f-xls,
.icon.file.f-xlsx {
	box-shadow: 1.74em -2.1em 0 0 #5bab6e inset;
}
.icon.file.f-mp2:after,
.icon.file.f-mp3:after,
.icon.file.f-m3u:after,
.icon.file.f-wma:after,
.icon.file.f-xls:after,
.icon.file.f-xlsx:after {
	border-bottom-color: #448353;
}

.icon.file.f-doc,
.icon.file.f-docx,
.icon.file.f-psd{
	box-shadow: 1.74em -2.1em 0 0 #03689b inset;
}

.icon.file.f-doc:after,
.icon.file.f-docx:after,
.icon.file.f-psd:after {
	border-bottom-color: #2980b9;
}

.icon.file.f-gif,
.icon.file.f-jpg,
.icon.file.f-jpeg,
.icon.file.f-pdf,
.icon.file.f-png {

    
}
.icon.file.f-gif:after,
.icon.file.f-jpg:after,
.icon.file.f-jpeg:after,
.icon.file.f-pdf:after,
.icon.file.f-png:after {

    
}

.icon.file.f-deb,
.icon.file.f-dmg,
.icon.file.f-gz,
.icon.file.f-rar,
.icon.file.f-zip,
.icon.file.f-7z {
	box-shadow: 1.74em -2.1em 0 0 #867c75 inset;

}
.icon.file.f-deb:after,
.icon.file.f-dmg:after,
.icon.file.f-gz:after,
.icon.file.f-rar:after,
.icon.file.f-zip:after,
.icon.file.f-7z:after {
	border-bottom-color: #685f58;
}

.icon.file.f-html,
.icon.file.f-rtf,
.icon.file.f-xml,
.icon.file.f-xhtml {
	box-shadow: 1.74em -2.1em 0 0 #a94bb7 inset;
}
.icon.file.f-html:after,
.icon.file.f-rtf:after,
.icon.file.f-xml:after,
.icon.file.f-xhtml:after {
	border-bottom-color: #d65de8;
}

.icon.file.f-js {
	box-shadow: 1.74em -2.1em 0 0 #d0c54d inset;
}
.icon.file.f-js:after {
	border-bottom-color: #a69f4e;
}

.icon.file.f-css,
.icon.file.f-saas,
.icon.file.f-scss {
	box-shadow: 1.74em -2.1em 0 0 #44afa6 inset;
}
.icon.file.f-css:after,
.icon.file.f-saas:after,
.icon.file.f-scss:after {
	border-bottom-color: #30837c;
}


