@charset 'utf-8';

body {
	position: relative;
}

#wp-extend-toolbar-window {
	display: block;
	position: fixed;
	top: 30px;
	right: 30px;
	width: auto;
	height: auto;
	padding: 40px 15px 15px;
	border-radius: 6px;
	background-color: rgba(35, 40, 45, 0.75);
	z-index: 99999;
	cursor: move;
	overflow: visible;
}

.window-info-inner {
	overflow: visible;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

#wp-extend-toolbar-window__list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: auto;
	max-height: 100%;
	max-width: 100%;
}

.wp-extend-toolbar-window__item {
	margin: 0;
	padding: .25em;
	border-top: 1px dotted #CCC;
}

.wp-extend-toolbar-window__item:last-of-type {
	border-bottom: 1px dotted #CCC;
}

#wp-extend-toolbar-window__theme .title,
#wp-extend-toolbar-window__template .title,
#wp-extend-toolbar-window__title .title,
#wp-extend-toolbar-window__desc .title,
#wp-extend-toolbar-window__keyword .title,
#wp-extend-toolbar-window__post-type .title,
#wp-extend-toolbar-window__post-id .title,
#wp-extend-toolbar-window__taxonomy .title,
#wp-extend-toolbar-window__term .title {
	color: #FC5;
}

#wp-extend-toolbar-window__theme .value,
#wp-extend-toolbar-window__template .value,
#wp-extend-toolbar-window__title .value,
#wp-extend-toolbar-window__desc .value,
#wp-extend-toolbar-window__keyword .value,
#wp-extend-toolbar-window__post-type .value,
#wp-extend-toolbar-window__post-id .value,
#wp-extend-toolbar-window__taxonomy .value,
#wp-extend-toolbar-window__term .value {
	color: #FFF;
}

#wp-extend-toolbar-window__close {
	position: absolute;
	top: 3px;
	left: 8px;
	width: 35px;
	height: 35px;
	z-index: 999;
	margin: 0;
	border: none;
	background: none;
	cursor: pointer;
	line-height: 1;
}

#wp-extend-toolbar-window__close:active {
	margin: 1px 0 0 0;
}

#wp-extend-toolbar-window__close img {
	width: 100%;
	height: auto;
}

#wp-extend-toolbar-window__reopen {
	display:none;
	position:fixed;
	top: 40px;
	left: 5px;
	z-index:99999;
	width: 40px;
	height: 40px;
	background: none;
	border:none;
	cursor:pointer;
}

#wp-extend-toolbar-window__reopen img {
	width: 100%;
	height: auto;
}

#wp-extend-toolbar-window__resize-handle {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	cursor: se-resize;
	z-index: 100;
	background: transparent;
	pointer-events: auto;
}

#wp-extend-toolbar-window__resize-handle:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-left: 16px solid transparent;
	border-top: 16px solid transparent;
	border-right: 16px solid #CCC;
}