@charset "UTF-8";

/* My New Admin Theme */
/* Background */
.wp-admin {	
	background-image: url(images/layout/noise.jpg);
	}
	
#wpwrap {
	/* webkit example */
	background-image: -webkit-gradient(
	  linear, left top, left bottom, from(rgba(224,212,187,.6)), 
	  to(rgba(256,256,256,0.5)), color-stop(.4,#FFF), color-stop(.7,#FFF)
	);
	/* mozilla example - FF3.6+ */
	background-image: -moz-linear-gradient(
	  rgba(224,212,187,.6) 0%, rgba(255, 255, 255, .8) 40%
	);
	/* approximately a 33% opacity on blue I HAVE NOT TESTED THIS */
	filter: progid:DXImageTransform.Microsoft.gradient(
	  startColorstr=#550000FF, endColorstr=#550000FF
	);
	
	/* IE8 uses -ms-filter for whatever reason... I HAVE NOT TESTED THIS */
	-ms-filter: progid:DXImageTransform.Microsoft.gradient(
	  startColorstr=#550000FF, endColorstr=#550000FF
	);
	}
	
/* Navigation */
#adminmenuback,
#adminmenuwrap,
#adminmenu {
	width: 270px;
	background: rgba(255,255,255,.5);
}
.menu-top {
	width: 50%;
	float: left;
	}
.menu-top.wp-menu-open, a.menu-top {
	width: 100%;
	}	
#adminmenu div.wp-menu-image:before {
	color: #4b74c4;
}
	
/* This is a darker option
#adminmenuback,
#adminmenuwrap,
#adminmenu {
	width: 200px;
	background: rgba(224,212,187,.1);
}*/

#adminmenu a.menu-top,
#adminmenu .wp-submenu-head{
	font-size: 18px !important;
	padding-top: 8px !important;
	padding-bottom: 8px !important; 
}

#adminmenu .wp-submenu {
	width: 100%;
	clear: left;
	}
	
#adminmenu .wp-submenu a {
	font-size: 14px !important;
	padding-top: 5px !important;
	padding-bottom: 5px !important;
	color: #555; }

/* Arrows */
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover::after {border-right-color: transparent !important;}

ul#adminmenu a.wp-has-current-submenu:after, 
ul#adminmenu>li.current>a.current:after{
	top: auto;
	right: auto;
	left: 50%;
	margin-left: -8px;
	bottom: 0;
	border: 8px solid transparent;
	border-bottom-color: #E7DFCC;
	margin-top: 0px;	
	}

#adminmenu div.wp-menu-image {
	display: block; 
	margin: 0 auto; 
	float: none;}	
.wp-menu-name {
	text-align:center;}	

#adminmenu .wp-submenu li.current a {
	color: #4b74c4; 
	}

#collapse-menu {clear: both;}

/*Hides & Repositions Fly-outs - BTW this is a really wierd Chrome Fix */
.js #adminmenu .sub-open,
.js #adminmenu .opensub .wp-submenu,
#adminmenu a.menu-top:focus + .wp-submenu,
.no-js li.wp-has-submenu:hover .wp-submenu {
	top: -100000px !important;
}
.js #adminmenu .wp-menu-open .sub-open,
.js #adminmenu .wp-menu-open.opensub .wp-submenu,
#adminmenu .wp-menu-open a.menu-top:focus + .wp-submenu,
.no-js .wp-menu-open li.wp-has-submenu:hover .wp-submenu {
	top: -1px !important;
	left: 0px;
}   

/*Navigation Colors -- From wp-admin > CSS > colors-fresh.css */
#adminmenu li.menu-top:hover,
#adminmenu li.opensub > a.menu-top,
#adminmenu li > a.menu-top:focus,
#adminmenu .wp-submenu {
	background-color: rgba(224,212,187,.2) !important;
} /* Hover Background Color */

a, #adminmenu a, 
#the-comment-list p.comment-author strong a, 
#media-upload a.del-link, 
#media-items a.delete, 
#media-items a.delete-permanently, 
.plugins a.delete,
 .ui-tabs-nav a {
	 color: #4b74c4;
} /* Link Text (Everywhere not just menu */

#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, 
#adminmenu li.current a.menu-top, 
.folded #adminmenu li.wp-has-current-submenu,
.folded #adminmenu li.current.menu-top, 
#adminmenu .wp-menu-arrow, 
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
	background: #4b74c4;
} /* Active Backgroung Color */

/*Navigation - WP Header Bar*/
html.wp-toolbar {
	padding-top: 34px;
	}
#wpadminbar {
	height: 34px;
	background: rgba(70,70,70,.1);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,#373737),color-stop(18%,#464646));
	background-image: -webkit-linear-gradient(bottom,#373737 0,#464646 5px);
	background-image: -moz-linear-gradient(bottom,#373737 0,#464646 5px);
	background-image: -o-linear-gradient(bottom,#373737 0,#464646 5px);
	background-image: linear-gradient(to top,#373737 0,#464646 5px);
}
#wpadminbar .quicklinks a, #wpadminbar .quicklinks .ab-empty-item, #wpadminbar .shortlink-input {
	height: 24px;
	padding: 5px 12px;}
	
/*End Navigation Styles*/

/*Start Main area (right side of admin) */
.postbox h3, 
.stuffbox h3, 
.widefat thead tr th, 
.widefat tfoot tr th, 
h3.dashboard-widget-title, 
h3.dashboard-widget-title span, 
h3.dashboard-widget-title small, 
#nav-menu-footer, 
.menu-item-handle, 
.nav-tab {
	background-color: rgba(224,212,187,.2) !important;
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,#373737),color-stop(18%,#464646)) !important;
	background-image: -webkit-linear-gradient(bottom,#373737 0,#464646 5px) !important;
	background-image: -moz-linear-gradient(bottom,#373737 0,#464646 5px) !important;
	background-image: -o-linear-gradient(bottom,#373737 0,#464646 5px) !important;
	background-image: linear-gradient(to top,#373737 0,#464646 5px) !important;
}
/* Widgets Panel */
.sidebar-name  {
	background: transparent;
}
.widget .widget-top {
	background: #fff;
}

div.sidebar-name h3, 
#menu-management .nav-tab, 
#dashboard_plugins h5, 
a.rsswidget, 
#dashboard_right_now td.b, 
#dashboard-widgets h4, 
.tool-box .title, 
#poststuff h3, 
.metabox-holder h3, 
.pressthis a, 
#your-profile legend, 
.inline-edit-row fieldset span.title, 
.inline-edit-row fieldset span.checkbox-title, 
.tablenav .displaying-num, 
.widefat th, 
.quicktags, 
.search, .sidebar-name h3, 
.widget-title h4, 
.nav-tab, 
.item-title, 
.item-type   {
	font-family: Arial, Helvetica, sans-serif !important; 
	font-weight: bold !important; 
	text-shadow: none !important;
}
#wp-content-editor-tools {
	background: transparent;
}
.manage-column a span, 
.postbox h3, 
.sidebar-name h3, 
.widget-title h4, 
.nav-tab, 
.item-title, 
.item-type {
	color: #FFFFFF !important;
	}
.widefat thead tr th, 
.widefat tfoot tr th, 
h3.dashboard-widget-title, 
h3.dashboard-widget-title span, 
h3.dashboard-widget-title small {
	color: #CCCCCC !important;
}
.widefat {
	background-color: rgba(224,212,187,.2) !important;
}

.wp-core-ui .button-primary {
	background-color: #4b74c4;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#3D7CEE),to(#516C9F));
	background-image: -webkit-linear-gradient(top,#3D7CEE,#516C9F);
	background-image: -moz-linear-gradient(top,#3D7CEE,#516C9F);
	background-image: -ms-linear-gradient(top,#3D7CEE,#516C9F);
	background-image: -o-linear-gradient(top,#3D7CEE,#516C9F);
	background-image: linear-gradient(to bottom,#3D7CEE,#516C9F);
	border-bottom-color: #3D7CEE;
	border-top-color: #516C9F;
	border-right-color: #4b74c4;
	border-left-color: #4b74c4;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-variant: small-caps;
	font-size: 16px;
}
.wp-core-ui .button-primary:hover, 
.nav-tab:hover, 
.nav-tab-active {
	background-color: #4285FF;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#4285FF),to(#3D7CEE)) !important;
	background-image: -webkit-linear-gradient(top,#4285FF,#3D7CEE) !important;
	background-image: -moz-linear-gradient(top,#4285FF,#3D7CEE) !important;
	background-image: -ms-linear-gradient(top,#4285FF,#3D7CEE) !important;
	background-image: -o-linear-gradient(top,#4285FF,#3D7CEE) !important;
	background-image: linear-gradient(to bottom,#4285FF,#3D7CEE) !important;
}
#contextual-help-back {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 150px;
	right: 0px;
	border-width: 0 1px;
	border-style: solid;
}
#wpcontent,
#wpfooter {
	margin-left: 260px;
}

/*forces our one column layout everywhere */
#poststuff #post-body.columns-2,
#post-body.columns-2 #postbox-container-1 {
	margin-right:0px !important;
	}
#post-body.columns-2 #postbox-container-1,
#poststuff #post-body.columns-2 #side-sortables {
	width: 100% !important;
	min-height: 0;
	}
	
/*Genesis Specific Hiding*/	
#genesis_inpost_seo_box tr:nth-of-type(4),
#genesis_inpost_seo_box tr:nth-of-type(6),
#genesis_inpost_layout_box
/*#genesis_inpost_layout_box tr:nth-of-type(2),
#genesis_inpost_layout_box tr:nth-of-type(3)*/{
	display: none;
}

/*Publish*/
#submitdiv.postbox {
	position: fixed;
	z-index: 10000;
	width: 100%;
	top: 0;
	left: 0;
	margin-left: 282px;
}

#minor-publishing {
	width: 70%;
	float: right; 
	position: relative;
	}
#misc-publishing-actions {
	width: 70%;
}
#major-publishing-actions {
	width: 30%;
	float: left;
}

#major-publishing-actions {
	padding: 10px 10px 8px;
	clear: none;
	border-top: 1px solid #f5f5f5;
	margin-top: -2px;
}
#publishing-action {
	line-height: 12px;
	float: left !important;
}

#publishing-action,
#delete-action,
#publish,
#minor-publishing,
#major-publishing-actions,
.misc-pub-section.misc-pub-post-status,
.misc-pub-section.misc-pub-visibility,
.misc-pub-section.curtime.misc-pub-curtime  {
	box-sizing:border-box;
}
.misc-pub-section.misc-pub-post-status,
.misc-pub-section.misc-pub-visibility,
.misc-pub-section.curtime.misc-pub-curtime {
	float: left;
	padding-top: 10px;
	padding-bottom: 0 !important;
}
.misc-pub-section.misc-pub-post-status {
	width: 30%;
	}
.misc-pub-section.misc-pub-visibility {
	width: 30%
	}
.misc-pub-section.curtime.misc-pub-curtime {
	width: 40%;
	}

#publish,
#delete-action {
	font-size: 20px;
}
#publishing-action,
#delete-action {
	width: 48%;
}

#publish {
	padding: 5px 0px 30px 0px !important; 
	float: left;
	width: 100%;
}

/*Dashboard Date since last update counter*/
.good,
.ok,
.not-good,
.bad,
.last-updated {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto;
	text-align:center;
}
.good {
	border: 25px solid #4b74c4;
}
.ok {
	border: 25px solid #F2E279;
}
.not-good {
	border: 25px solid #FFBB6A;
}
.bad {
	border: 25px solid #FF4545;
}
.last-updated {
	border: 5px solid #CECECE;
	position: relative;
	padding-top: 50px;
	font-size: 60px;
	font-weight: bold;
	box-sizing: border-box;
}
.days-ago {
	position: absolute;
	bottom: 25px;
	font-size: 10px;
	text-transform:uppercase;
	width: 100%;
}
/*To give some love to the delete button*/
.wp-core-ui #delete-action {
	background-color: #FF4545;
	background-image: linear-gradient(to bottom,#FF4545,#a00);
	border-bottom-color: #3D7CEE;
	border-top-color: #516C9F;
	border-right-color: #4b74c4;
	border-left-color: #4b74c4;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-variant: small-caps;
	box-shadow: inset 0 2px 0 #a00;
	border-radius: 3px;
	float: right;
	padding: 5px 0px 5px 0px !important; 
	text-align: center;
}
.wp-core-ui #delete-action:hover {
	background-color: #FF4545;
	background-image: linear-gradient(to bottom,#a00,#a00) !important;
}
.wp-core-ui #delete-action a {
	color: #fff !important;
	text-align: center !important;
}
body.post-new-php .submitbox .submitdelete {
	display: block !important;
}

#publishing-action .spinner {
	display: none;
}
#normal-sortables .submitbox .submitdelete:hover {
	background-color: transparent;
}
/*Opstions Page*/
.spark-settings .form-table th {
	width: 50% !important;
}

/*Envira Specifc Customizations */
body.post-type-envira.edit-php div.wrap {
	margin: 0 24px; /*moves envira up*/
}
body.post-type-envira div.wrap > h1,
body.post-type-envira_album div.wrap > h1 {
	background: transparent !important;
	font-size: 23px !important;
	font-weight: 400 !important;
	margin: 10px 20px 2px 20px !important;
	padding: 9px 15px 4px 0 !important;
	line-height: 29px; /*Fixes the titles*/
}
form#post.envira-gallery #poststuff #envira-gallery {
	margin: 0 0 20px 0 !important; /*fixed some goofy spacing */
}
/*Hides a whole bunch of stuff*/
/*Not as important stuff*/
#wp-admin-bar-wp-logo, 
#wp-admin-bar-comments, 
#wp-admin-bar-tribe-events-help, 
#wp-admin-bar-tribe-events-app-shop, 
#wp-admin-bar-new-media,
#minor-publishing-actions, 
#pageparentdiv,
#authordiv,
#commentstatusdiv,
#postcustom,
#postexcerpt,
.logo, 
.wf-wrap .nav-tab, 
.wp-menu-open.toplevel_page_woothemes li:nth-child(3), 	/*Woo Theme Canvas Filters */
.wp-menu-open.toplevel_page_woothemes li:nth-child(4), 	/*Woo Theme Canvas Hooks */
.wp-menu-open.toplevel_page_woothemes li:nth-child(6), 	/*Woo Theme Canvas Layout */
.toplevel_page_woocommerce li:nth-child(7), 			/*Woo System Status*/
.toplevel_page_woocommerce li:nth-child(8), 			/*Woo Add-ons */
.menu-icon-tribe_events li:nth-child(9), 				/*Tribe Help */
.menu-icon-tribe_events li:nth-child(10), 				/*Tribe Add-ons */
.eventBritePluginPlug, 									/*Tribe Event Bright add-on ask */
#tagsdiv-post_tag, #tribe_events_event_options,			/*Tribe Editor Page "Tags" and "Event Options" */				
#contextual-help-link-wrap,
#toplevel_page_wpforms-overview li:nth-child(5),		/*WpForms Settings*/
#toplevel_page_wpforms-overview li:nth-child(6),		/*WpForms Add-ons*/
#wpforms-builder .wpforms-toolbar .wpforms-left,		/*WpForms bear mascott*/
#envira-header,											/*Envira Crazy Huge Green Heading*/
#envira-types-nav,										/*Envira Gallery Types -- Opens up something folks can't use without an add-on */
.envira-code:nth-of-type(1),
.envira-code:nth-of-type(3),
.envira-code:nth-of-type(4),
#envira-gallery-code p:nth-of-type(2),					/*Envira silly embed options and leaves the obvious one.*/
.envira-misc,											/*Envira Misc Tab */
.envira-intro,											/*Envire help on each tab */
#soliloquy-tab-misc,									/*Soliloquy Misc Tab */
ul#soliloquy-types-nav.soliloquy-clear 					/*Soliloquy Slider Type -- there is only one options at this time...default*/
{
		display: none;
} 

/*Hides more !important stuff*/
#menu-links, 
#menu-tools, 
#menu-dashboard, 
#menu-comments,
#menu-users,
#menu-media,
.wp-menu-arrow, 
.contextual-help-sidebar, 
.toplevel_page_genesis, 
#menu-appearance,
li#wp-admin-bar-tribe-events-import.menupop,
#wp-admin-bar-my-sites,
#wp-admin-bar-my_header,
.useful-links,
.inline-edit-author, 									/*next few things hide some stuff in the quick editor */
.inline-edit-col-right .inline-edit-group:last-of-type .alignleft:last-of-type,
.inline-edit-col-right .inline-edit-group:first-of-type,
#widget-tpl-gform_widget-3, 							/*These two hide GF widgets in teh customizer. These lines of code make me nervous.*/
#widget-tpl-gform_login_widget-3,
button.wpforms-panel-providers-button,					/*WpForms Marketing Tab*/
button.wpforms-panel-payments-button,					/*WpForms Payment Tab*/
#wpforms-embed											/*WpForms Embed Button*/
 {					
	display: none !important;
} 


