/*Main css*/
body {
	font-family: arial;
	padding: 0;
	margin: 0;
}
/* Reset */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*
* {
    padding: 0;
    margin: 0;
}
*/
.clearfix:after {
     display: block;
}
a {
    text-decoration: none;
}
.clickable {
	cursor: pointer;
}
ul, li {
	list-style-type: none;
}

h1 {
	
}
h2 {
	
}
h3 {
	font-size: 13px;
	
}
h4 {
	font-size: 10px;
	font-weight: normal;
}

/*assetViewer*/
#assetOverlay {
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	top: 0;
	left:0;
	background-color: rgba(0, 0, 0, 0.8);
}

.hideAssetOverlay {
	display: none;
}

.showAssetOverlay {
	display: block;
}

.hidePanel {
	visibility: hidden;
    width: 0;
/*    opacity: 0;*/
    transition: all 0.3s ease; 
/*
	display: none;
	width: 0;
*/
}

.showPanel {
	visibility: visible;
/*	display: block;*/
/*	width: 100%; Mobile slide */
	width: 260px;
	transition: all 0.3s ease; 
}

#assetBox {
/*	position: absolute;*/
/*	height: 90%;*/
/*
	top: 5%;
	left: 4%;
	right: 4%;
*/
	display: -webkit-box;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row;
	-moz-flex-flow: row;
	flex-flow: row;
	flex-direction: row;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
}

#assetMain {
	position: relative;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex:  1 1 auto;
	-ms-flex:  1 1 auto;
	box-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-box-ordinal-group: 1;  
	-moz-box-ordinal-group: 1;	 
	-ms-flex-order: 1;	  
	-webkit-order: 1;
	order: 1;
	overflow-y: hidden;
	overflow-x: hidden;
}

#assetPanel {
	-webkit-box-flex: 0 0 auto;
	-moz-box-flex: 0 0 auto;
	-webkit-flex:  0 0 auto;
	-ms-flex:  0 0 auto;
	box-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-box-ordinal-group: 2;  
	-moz-box-ordinal-group: 2;	 
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: #242223;
	color: white;
/*	width: 240px;*/
}

#assetMain_header {
	position: relative;
	height: 37px;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 6px 0;
	width: 100%;
}

#assetMain_viewer {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.assetLabel {
	display: inline-block;
	line-height: 26px;
	padding-left: 9px;
	color: white;
	font-size: 13px;
}

.assetBts {
	position: absolute;
	text-align: center;
	top: 0px;
	width: 100%;
	height: 100%;
}

.link {
	display: inline-block;
}

.btDl {
	display: inline-block;
	background: url('icons/download.svg') no-repeat center center;
	background-size: contain;
	width: 30px;
	height: 37px;
}


.btVers {
	display: inline-block;
	background: url('icons/versions.svg') no-repeat center center;
	background-size: contain;
	width: 36px;
	height: 37px;
}

.assetBts > * {
	color: white;
}

/*
.assetBts img {
	width: 20px;
	height: auto;
}
*/

.assetMain_viewer {
	background-color: white;
	width: 100%;
	overflow: hidden;
}

#togglePanel {
	position: fixed;
	right: 40px;
	top: 10px;
	color: #fff;
}

#closeAssetOverlay {
	position: fixed;
	right: 10px;
	top: 10px;
	color: #fff;
}

/*assetPAnel*/
#assetAccordion {
	display: block;
	width: 260px;
}
.assetAccTitle {
	position: relative;
	display: block;
	font-size: 13px;
	height: 30px;
	line-height: 30px;
	border-bottom: 1px solid gray;
}
.assetAccTitle .fa {
	font-size: initial;
}

.assetAccTitle > :first-child {
	margin-right: 12px;
	margin-left: 20px;
}

.assetAccTitle .fa-chevron-up {
	position: absolute;
	top: 7px;
	right: 12px;
	transition: all 0.4s ease;
}

.open .assetContent{
	border-bottom: 1px solid gray;
}

.accordion li.open i.fa-chevron-up {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	color: #b63b4d;
}

.submenu {
/*  display: none;*/
/*  background: #444359;*/
/*  font-size: 14px;*/
	padding-top: 
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.assetContent {
	position: relative;
	display: block;
	border-spacing: 6px 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 14px;
	width: 100%;
/*
	padding-top: 20px;
	padding-left: 10px;
*/
}

.stripTable {
	display: table;
	width: 100%;
}

.stripCell {
	display: table-cell;
	position: relative;
	vertical-align: top;
}

.thumbwrap, .thumbnail {
	width: 80px;
	height: 80px;
}

/******************************************************
	VIDEO-JS
******************************************************/
.video-js {
	position: relative !important;
	width: auto !important;
	height: 100% !important;
}


/******************************************************
	ODF
******************************************************/
#viewerOdf{
	position: relative;
	width: auto;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

#viewerOdf:first-child {
	margin-left: auto;
	margin-right: auto;
}


/******************************************************
	MEDIA QUERIES : SMARTPHONES & TABLETS
******************************************************/

@media screen and (max-width: 900px) {
	
.showPanel {
	width: 100%;
	transition: all 0.3s ease; 
}

#assetAccordion {
	width: 100%;
}
	
}
