#footer-admin{
	position:fixed;
	bottom:0;
	left:0;
	font-size:85%;
	width:100%;
	/*background-color:#dba10d;*/
	color:#222;
	text-align:center;
	z-index:1000;
	border-top:1px solid #bc8907;
    height: 31px;
}
#footer-admin-container{
	background-color:#dba10d;
	width: 100%;
	display: flex;
    height: 31px;
    padding: 0 16px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

#footer-admin a{color:#222;}

#footer-admin hr{
	border-top: 1px dashed #0000007a;
	margin-bottom: .5em;
	margin-top: .5em;
	margin-left: auto;
	margin-right: auto;
	width: 86%;
}

#footer-admin i{
	padding-right:.6em;
}

body.admin-logged{
	margin-bottom:30px;
}

.adm-footer-link{
	position: relative;
    height: 31px;
    line-height: 31px;
    padding: 0 16px;
	cursor: pointer;
}

#footer-admin a:hover{
	color: white;
    background-color: rgba(0,0,0,.2);
}

.adm-footer-menu{
	position: absolute;
	left: 0;
    /*bottom: 9px;*/
    bottom: -50vh;
    display: block;
    background-color: #dba10d;
    border: 1px solid #bc8907;
	border-radius: .4em .4em 0 0;
    padding: 1em;
    padding-bottom: 30px;
    z-index: -1;
	text-align: left;
	transition: bottom .3s;
}
.adm-footer-menu a{
	white-space: nowrap;
	padding:.2em .6em;
	border-radius: .2em;
	margin-bottom: .2em;
	display: block;
	z-index: -1;
}
.adm-footer-menu a:hover{
	color: white !important;
	background-color: rgba(0,0,0,.2);
}
.adm-footer-menu a:hover i{
	font-weight: 900;
}
.adm-footer-link:hover .adm-footer-menu{
	bottom: 9px;
}

.footer-admin-space{
	width:4em;
}

@media print {
	#footer-admin{
		display: none;
	}
}

@media screen and (max-width: 1079px) {
	#footer-admin-container {
		padding: 0 8px;
		justify-content: space-between;
	}
	.adm-footer-link {
		padding: 0 4px;
		text-align: center;
	}
	.footer-admin-space {
		width: .5em;
	}
	.adm-footer-menu {		
		position: fixed;
		left: 2vw;
		width: 96vw;
		bottom: -100vh;
	}
}