/*-------------------------------------------------------------------------*/
/*	1.	Browser Reset + Font Face
/*-------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend{vertical-align:baseline; font-family:inherit; font-weight:inherit; font-style:inherit; font-size:100%; outline:0; padding:0; margin:0; border:0}
*{scroll-behavior: smooth;}

:focus{outline:0}
p:empty{display: none;}
input[type=submit]{   -webkit-appearance:none}

html{text-rendering: optimizeLegibility;max-width:  100%; overflow-x:hidden; overflow-y: auto;}

body{max-width:  100%; background:white; font-family:'Open Sans',sans-serif; color:#000; position:relative; min-height: 100vh;display: flex;flex-flow: column nowrap; overflow:hidden; -webkit-overflow-scrolling: touch;}

ol, ul{list-style:none}

input[type=text]::-ms-clear{    display:none}

sup{font-size:10px; vertical-align:super}

sub{font-size:10px; vertical-align:sub}

/*p:empty{display:none}*/
a{text-decoration: none;cursor: pointer;}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{    display:block}


@font-face {
	font-family: 'OpenSans';
	src: url('fonts/OpenSans-Regular.ttf')  format('truetype');
	font-weight: normal;
	font-display: swap;
	
}

@font-face {
	font-family: 'OpenSans';
	src: url('fonts/OpenSans-Bold.ttf')  format('truetype');
	font-weight: bold;
	font-display: swap;
}

.edit_page{
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100vw;
    background-color: #23282d;
    padding: 12px 0;
    color: #fff;
}
.edit_page img{
	height: 22px;
	margin: 0 8px;
	filter: invert(1);
}

.edit_page a{
	text-align: right;
	color: #fff;
	opacity: 1;
	transition: opacity .4s;
	margin: 0 32px;
}

.edit_page a:hover{
	opacity: .7;
}

body.edit_page_open{
	margin: 46px 0 0;
}



body.page-dashboard{
	padding: 0;
}

.dasboard{
	min-height: 100vh;
}

.dasboard aside,
.dasboard main{
	height: 100%;
}

.dasboard aside{
	grid-column: 1 / 3;
	background-color: #23282d;
}
.dasboard main{
	grid-column: 3 / 13;
	background-color: #fff;
}

.dasboard aside ul{
	margin: 12px 0;
}
.dasboard aside ul li{
	padding: 8px 5px;
	font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.dasboard aside ul li a{
	font-size: 14px;
    font-weight: 400;
    line-height: 18px;
	color: #fff;
}
.dasboard aside ul li .icon__wrap{
	width: 36px;
    height: 34px;
    filter: invert(1);
}

.dasboard aside ul li .icon__wrap img{
	padding: 7px 0;
}

.dasboard main h1{
	padding: 16px 0 16px 24px;
	font-size: 20px;
    color: #000;
	font-weight: bold;
}
.dasboard main table{
	padding: 8px 12px;
	border-collapse: collapse;
    border-spacing: 0;
	width: 100%;
}

.dasboard main table tr th,
.dasboard main table tr td{
	padding: 0 0 0 48px;
	height: 48px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.87);
    border-bottom: solid 1px #DDDDDD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	vertical-align: middle;
	text-align: left;
}
.dasboard main table thead th{
	border-top: solid 1px #DDDDDD;
	font-weight: bold;
	color: #000;
}
.dasboard main table tr th:first-of-type,
.dasboard main table tr td:first-of-type{
	padding: 0 0 0 24px;
}

.dasboard main table tr.unpublished td:nth-of-type(2){
	text-decoration: line-through;
}

.dasboard main table tr td:last-of-type{
	padding: 0 14px 0 48px;
}

.dasboard main table tr:nth-of-type(odd) td{
	background-color: #f1f1f1;
}