html,body{
	height: 100%;
    font-family: 'Open Sans',sans-serif;
    margin: 0;
    font-size: 12px;
    color: #333;
}

.admin-row{
	display:flex;
}

.admin-m5{
    padding:5px;
}

.admin-center{
	display: flex;
    align-items: center;
    justify-content: center;
}

.admin-fill{
	flex-grow:1;
}

.admin-container{
	min-height: 100%;
    width: 100%;
}

/**
 * HEADER
 */

.admin-header{
	height: 64px;
    min-height: 64px;
    max-height: 64px;
    display: flex;
    align-items: center;
}

.admin-header-separator{
	height: 64px;
    width: 1px;
    background: rgba(0,0,0,.12);
}

.admin-header-button{
    height: 64px;
    padding: 0 30px;
    cursor: pointer;
    color: rgb(51, 51, 51) !important;
    text-decoration: none !important;
}

.admin-header-button:hover{
	background-color: rgba(158,158,158,0.2);
}

/**
 * NAVIGATION
 */
.admin-navigation-header{
	background: #373C47;
    color: white;
    padding: 20px;
}

.admin-navigation{
	min-height: 100%;
    flex-grow: 1;
    background: #2D323E;
    box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.2), inset 0 1px 1px 0 rgba(0,0,0,.14), inset 0 2px 1px -1px rgba(0,0,0,.12);

}

.admin-navigation-container{
	max-width:200px;
}



.admin-navigation-logo{
	background: #039BE5;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 19px;
    margin-right: 10px;
	text-align:center;
}

.admin-navigation-icon{
	font-size: 19px;
}

/**
 * CONTENT
 */
.admin-content-container{
	flex-grow:1;
}

.admin-content{
	min-height: 100%;
    position: relative;
    flex-grow: 1;
    background: #F5F5F5;
    overflow: hidden;
    box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.2), inset 0 1px 1px 0 rgba(0,0,0,.14), inset 0 2px 1px -1px rgba(0,0,0,.12);
}

/**
 * SECTION
 */
.admin-section{
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
    margin: 20px;
    background: white;
}

.admin-inner{
	padding:20px;
}


.btn-em{
    padding:2px 4px;
}

.rotate{
    animation-name: rotate; 
    animation-duration: 2s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}