/** CSS ActaFile **/

@import url('https://fonts.googleapis.com/css?family=Titillium+Web&display=swap');

html, body
{
	font-size: 14px;
	font-family: 'Titillium Web';
	background-color: #fff;
	height: 100%;
	overflow-x: hidden;
}

/** ||- TABLE ||- **/
.table th, .table td
{
	padding: 4px;
}

/** ||- BUTTONS ||- **/

.actafile-btn
{
	width: 150px;
}

.manage-file-btn, .manage-folder-btn
{
	width: 30px;
}

/** ||- TOP HEADER ||- **/

.top-header-row
{
	height: 80px;
	color: #fff;
	background-color: #003340;
	padding: 10px;
}

.ente-link
{
	color: #fff;
}

.ente-link:hover
{
	color: #fff;
}

.nome-ente
{
	font-size: 20px;
}

/** ||- LEFT SIDEBAR ||- **/

.left-sidebar
{
	background-color: #313131;
	overflow: auto;
	font-size: 13.5px;
	overflow-x: hidden;
	transition: all 0.5s ease;
}

.left-sidebar ul li
{
	background-color: transparent;
	text-align: left;
	transition: all 0.5s ease;	
}

.left-sidebar ul li a
{
	color: #a9a9a9;
	display: block;
    font-weight: bold;
	transition: all 0.5s ease;
}

.left-sidebar ul li a:hover
{
	color: #fff;
	text-decoration: none;
}

.navbar
{
	padding-left: 0;
	padding-right: 0;
}

.navbar-toggler
{
	border: none;
	padding-left: 0;
	padding-right: 0;
}

.navbar-nav li
{
	padding: 10px;
	border-bottom: 1px solid #616161;
}

@media (max-width: 991px)
{
	.full-sidebar
	{
		display: none !important;
	}
}

@media (min-width: 992px)
{
	.navbar
	{
		display: none;
	}
}

.sidebar-header
{
	margin-bottom: 0;
	color: #fff;
	background-color: #171717;
	margin-right: -15px;
	margin-left: -15px;
	padding: 3px;
}

/** ||- MAIN BOX ||- **/

.main-box
{
	background-color: #fff;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
	transition: all 0.5s ease;
	padding: 20px;
}

/** ||- FOLDERS ||- **/

.actafile-new-folder
{
	width: 200px;
	height: 200px;
	border: 1px dashed #dbdbdb;
	text-align: center;
	align-content: center;
	display: grid;
	float: left;
	position: relative;
	opacity: 0.8;
	margin-right: 10px;
}

.actafile-new-folder:hover
{
	cursor: pointer;
	opacity: 1;
}

.actafile-new-folder i
{
	font-size: 50px;
	color: #888;
}

.actafile-new-folder-label
{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #888;
	color: #fff;
	padding: 5px;
}

.actafile-folder
{
	width: 200px;
	height: 200px;
	border: 1px solid #dbdbdb;
	text-align: center;
	align-content: center;
	display: grid;
	float: left;
	position: relative;
	margin-right: 10px;
	margin-bottom: 10px;
}

.actafile-folder:hover
{
	cursor: pointer;
}

.actafile-folder-icon
{
	font-size: 70px;
	color: #ffe453;
	position: relative;
}

.actafile-folder-password-icon
{
	font-size: 20px;
	color: #313131;
	position: absolute;
	bottom: 16px;
	right: 70px;
}

.actafile-folder-header
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: right;
	background-color: #ebebeb;
	padding: 5px;
}

.actafile-folder-date, .actafile-folder-expire
{
	color: #313131;
	font-size: 12px;	
}

.actafile-folder-expire
{
	margin-bottom: 10px;
}

.actafile-folder-label
{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #ffe453;
	color: #313131;
	padding: 5px;
}

.folder-size
{
	font-size: 12px;
    color: #313131;
    position: absolute;
    bottom: 49px;
    right: 70px;
}

/** ||- PAGE HEADER ||- **/

.page-title
{
	text-align: center; 
	border-bottom: 1px solid #dee2e6; 
	padding: 20px;
	color: #313131;
}

.page-icon
{
	float: left; 
	font-size: 40px; 
	color: #ffe453;
}

/** ||- INDEX PAGE ||- **/

#index-page
{
	max-width: 1300px;
	margin: 0 auto;
}

/** ||- FOLDER PAGE ||- **/

#folder-page
{
	max-width: 1300px;
	margin: 0 auto;
}

.auth-box
{
	max-width: 500px;
	margin: 50px auto;
}

.files-table
{
	margin-bottom: 100px;
}

.files-table-header
{
	background-color: #93aac8 !important;
	color: #fff;
}

.no-result
{
	text-align: center; 
	color: #a9a7a7; 
	padding: 20px; 
	font-family: Roboto, sans-serif; 
	font-style: italic;
}

/** ||- FOOTER ||- **/

.footer-row
{
	background-color: #003340;
	color: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 10px;
	margin-left: 0;
	margin-right: 0;
	height: 45px;
}