/*
	Theme Name: VDOF
	Theme URI: https://www.dof.virginia.gov/
	Description: Custom wordpress site using HTML5 Blank WordPress Theme
	Version: 1.0.1
	Author: Christina Reeser
	Author URI: http://sitevision.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/


/*------------------------------------*\
    MAIN
\*------------------------------------*/

/*
font-family: 'Roboto Condensed', sans-serif; <- Navigation
font-family: 'Cabin', sans-serif; <- Headlines
font-family: 'PT Sans', sans-serif; <- body
*/

/*
COLORS
#315F14 - Bright green for nav
#617c5f - Darker green
#617c5f - Pale Green
#43586D - Blue
#AF6300 - Orange (brown)
#E8991D - Old Orange (deprecated)
#653D28 - Brown
#f5efdf - Pale tan if we need it
*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:100%;
}

body {
	font:400 16px/1.5 'PT Sans', Arial, sans-serif;
	color:#444;
}

.clearfix::after, .cf::after {
  content: "";
  clear: both;
  display: table;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    zoom:1;
}

.screen-reader-text { display: none; }

img {
	max-width:100%;
	vertical-align:bottom;
	height: auto;
}

a {
	color:#617c5f;
	text-decoration:none;
	
}
a:hover {
	color:#43586D;
}

/*
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}
*/
article a { 
	color: #43586D;
	text-decoration: underline; 
	font-weight: bold;
	}
article a:hover { 
	color: #444;
	text-decoration: underline; 
	}

article h3 a { 
	color: #617c5f;
	text-decoration: underline; 
	}
article  h3 a:hover { 
	color: #444;
	text-decoration: underline; 
	}	
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper, .container {
	max-width:1280px;
	width:1280px;
	margin:0 auto;
	position:relative;
}

/* wrapper */
.container {
	max-width: 100%;
	width:100%;
	margin:0 auto;
	position:relative;
}

.eyebrow-nav { 
	background-color: #617c5f;
	color: #fff;
}

#menu-eyebrow-menu { margin-left: 0; padding-left: 0;}

.logo { }

.logo img {
	float: left;
	width: 125px;
	height: auto;
	padding: 10px;
}

.sidebar {
	margin-bottom: 40px;
}


.footer {

}

figcaption { font-size: smaller; text-align: center;}

.mobile-widget { display: none; }

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

h1, h2, h3, h2, h5, h6 {  
	font-family: 'Cabin', sans-serif; 
	color: #43586D;
	text-decoration: none !important;
	line-height: 1.2;
	}

h3 { margin-top: .5rem; }
#main h3 {
font-size: 1.5em;
}	

#main h4, #main .h4 {
    font-size: 1.3em;
}
    
h4.team  { font-size: 22px; font-weight: normal; color: #617c5f; }	
h4.team span { font-size: 14px; text-transform:uppercase; letter-spacing: 1px; color:#43586D; font-weight: bold;}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

.logo h1 { margin: 0; padding: 20px 0 0 0; line-height: .7; }
.logo h1 a { color: #fff; font-size: 22px; text-decoration: none; }
.social { font-size: 22px; float: right; margin-right: 40px; color: #fff;}
.social a { padding: 0 5px; color: #fff;}
.social a:hover { opacity: .8; }
.socialtext {
    display: inline-block;
    text-indent: -9000px;
    height: 0;
}

.search-block {
    padding: 0;
    border-top: 0;
    height: auto;
    z-index: 96;
    float: right;
}

.search-block label {
	padding-top: 5px;
}
.search-block label,
.search-block .search-field {
    float: left;
    margin-right: 10px;
}
.search-block .search-field {
    margin: 0;
    padding: 2px 8px;
    height: 33px;
    width: 170px;
    color: #898989;
    outline: none;
	vertical-align: top;
	box-sizing: border-box; 
   
    font-size: 16px;   
    border-radius: 0;
    -webkit-appearance: none;
}
.search-block .search-submit {
	margin: 0 0 0 -1px;
    width: 30px;
    background-color: #AF6300;
}

.search-block .search-submit:hover {
    background-color: #43586D;
}

.search-block .search-submit,
.widget_search .search-submit {
    padding: 0;
    background-image: url(img/search_btn_bg.png) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    height: 33px;
    position: relative;
    border: 0;
}

.eyebrow-menu {
	list-style-type: none;
	width: 100%;
	text-align: right;
	display: block;
	margin-top: 20px;
}
.eyebrow-menu li { display: inline-block;  border-right: 1px solid #fff; }
  
.eyebrow-menu li a {
	display: block;
	text-decoration: none;
	padding: 0 7px;
	color: #fff;
 }

.eyebrow-menu li:last-child {
	border-right: 0px solid #fff;
} 


/*------------------------------------*\
    HOME PAGE ALERT WIDGET
\*------------------------------------*/

.emergency-alert {
	background-color: #f5efdf;
	margin-top: 0px;
	padding: 20px;
}

.homeboxes { margin-top: 20px;}

/*------------------------------------*\
    A few role based tweaks to hide editing ability
\*------------------------------------*/

body.regional_editor a.post-edit-link,
body.finance_admin a.post-edit-link { display: none !important; }

body.regional_editor.single-user_directory a.btn-edit-post-link { display: block; width: 200px;}
body.regional_editor.add-employee .gform_wrapper,
body.finance_admin.add-employee .gform_wrapper,
{ display: none;}
 
#wpadminbar .quicklinks .menupop ul li#wp-admin-bar-new-glossary .ab-item,
body.regional_editor #wpadminbar .quicklinks .menupop ul li#wp-admin-bar-new-office_location .ab-item,
body.regional_editor #wpadminbar ul#wp-admin-bar-root-default>li#wp-admin-bar-edit,
body.regional_editor #wpadminbar ul#wp-admin-bar-root-default li#wp-admin-bar-new-content
{
display: none !important;
}

body.resource_admin_2 #wp-admin-bar-new-content {
    display: none !important;
}

li.logged-btn { display: none; }

body.logged-in li.logged-btn { display: inline-block; border-right: 0px;}

body.logged-in li.login-btn { display: none; }

body.business_directory li.logged-btn { display: none !important;  }
body.business_directory li.login-btn { display: inline-block !important;  }



/*------------------------------------*\
    Accessability
\*------------------------------------*/

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*------------------------------------*\
    MAIN NAVIGATION
\*------------------------------------*/

nav { margin: 20px 0; }

nav li {
	list-style-type: none;
	display: inline-block;  
	border-right: 1px solid #653D28; 
	padding: 0 20px;
	font-family: 'Cabin', sans-serif; 
	font-size: 22px;
	text-align: center;
	font-weight: 700;
	}

nav li p {
	font-weight: 400 !important;
	}	

nav li:last-child {
	border-right: 0px solid #fff;
	}		

nav li a  { color: #653D28; }

nav li a:hover  { color: #43586D; text-decoration: none;  }

nav .sub-menu { display: none; }

/*------------------------------------*\
    SIDE NAVIGATION
\*------------------------------------*/


.sidebar-nav, .widget_nav_menu  { margin: 0; padding: 0px; list-style-type: none }
.sidebar-nav  { background-color: #d0d9cf;  }

.sidebar-nav ul, .widget_nav_menu .menu, .sub-menu { margin: 0; padding: 0; list-style-type: none }
.sidebar-nav a br { display: none; }

.sidebar-nav li, .widget_nav_menu h3  { background-color: #43586D; font-family: 'Cabin', sans-serif; font-size: 22px; font-weight: bold; }
.sidebar-nav li a { color: #fff; }
.sidebar-nav li  li { background-color: #d0d9cf; }
.sidebar-nav li  li li { background-color: #eaefe7; }

.sidebar-nav li li a, .widget_nav_menu .menu a { color: #315f14; font-family: 'PT Sans', sans-serif; font-size: 16px; }

.sidebar-nav li li.current_page_item > a,
#menu-about-us li li.current_page_item > a,
.widget_nav_menu li li.current_page_item > a { color: #43586D; }

.sidebar-nav a, .widget_nav_menu .menu a { display: block; border-bottom: 1px solid #fff; padding: 15px 10px;}

.widget_nav_menu .menu a { display: block; border-bottom: 1px solid #fff; padding: 15px 0px;}

.sidebar-nav a:hover, .widget_nav_menu .menu a:hover { text-decoration: none; }

.sidebar-nav li li.menu-item-has-children a::before,
#menu-about-us  li.menu-item-has-children a::before,
.widget_nav_menu  li.menu-item-has-children a::before {
	font-family: 'Font Awesome\ 7 Free';
    content: "\f0da ";
    padding-right: 8px;
}

.sidebar-nav li li.current_page_parent a::before,
#menu-about-us   li.current_page_parent a::before,
.widget_nav_menu   li.current_page_parent a::before {
	font-family: 'Font Awesome\ 7 Free';
    content: "\f0d7 ";
    padding-right: 8px;
}


.sidebar-nav li li.menu-item-has-children .sub-menu li a::before,
#menu-about-us  li.menu-item-has-children .sub-menu li a::before,
.widget_nav_menu  li.menu-item-has-children .sub-menu li a::before,
.widget_nav_menu .menu a::before {
    content: "";
    padding-right: 0px;
}

.sidebar-nav li li.menu-item-has-children .sub-menu li a,
#menu-about-us  li.menu-item-has-children .sub-menu li a,
.widget_nav_menu  li.menu-item-has-children .sub-menu li a {
	padding-left: 27px;
}

.widget_nav_menu .menu a::before {
	padding-left: 10px;
}

.sidebar-nav li li.current_page_item.menu-item-has-children > a::before,
#menu-about-us  li.current_page_item.menu-item-has-children > a::before,
.widget_nav_menu  li.current_page_item.menu-item-has-children > a::before
 { 
	font-family: 'Font Awesome\ 7 Free';
    content: "\f0d7 "
	}	
	
	
.sidebar-nav .sub-menu .sub-menu,	
#menu-about-us .sub-menu,
.widget_nav_menu .sub-menu { display: none; background-color: #d0d9cf; }

.sidebar-nav .sub-menu.current_page_item .sub-menu,
#menu-about-us .current_page_item .sub-menu,
.widget_nav_menu .current_page_item .sub-menu { display: block;}

.sidebar-nav li li.current_page_item.menu-item-has-children .sub-menu,
.sidebar-nav li li.current_page_ancestor.menu-item-has-children .sub-menu,
#menu-about-us li.current_page_ancestor.menu-item-has-children .sub-menu,
.widget_nav_menu li.current_page_ancestor.menu-item-has-children .sub-menu  { display: block; }



/*hide third level item but color their direct parent */
.sidebar-nav li li li.current_page_ancestor.menu-item-has-children a { color: #43586D }
.sidebar-nav li  li li ul { background-color: #fff; display: none !important; }

/* and hide them on the mega menu */
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
    display: none !important;
}


/*.menu .sub-menu .sub-menu { display: none !important; }*/


.widget_nav_menu h3,
.sidebar-widget h3 { margin: 0; color: #fff; background-color: #315f14; padding: 15px 10px;}
.widget_nav_menu .menu { background-color: #eaefe7; font-weight: bold;}
.sidebar-widget { margin-bottom: 30px;}
.sidebar-news .sidebar-widget h3 { margin-bottom: 30px; }
.widget_nav_menu h3 { margin-bottom: 0px !important;}

/*------------------------------------*\
    Employee Nav
\*------------------------------------*/
.mega-menu-description { display: none;}
.employee_intro {
	text-align: right; 
	margin-top: 40px;
}

nav {
    margin: 20px 0 0 0;
	}

.emp-nav ul {
	text-align: center; 
	margin-bottom: 0;
	}

.emp-nav ul ul {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 99999;
    width: 180px;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    text-align: left;
    
}

.emp-nav ul ul li { text-align: left; width: 100%; border-right: 0;}
.emp-nav ul ul li a { display: block; width: 100%;}

.emp-nav ul li:hover > ul {
    display: block;
}

.emp-nav li {
    position: relative;
    list-style-type: none;
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
	text-align: center;
	font-weight: 400;
	padding: 10px;
}

@media only screen and (max-width:1024px) {	
	.employee_intro {
	text-align: center; 
	margin-top: 20px;
	}
}
@media only screen and (max-width:767px) {	



	.emp-nav ul {
		width: 90%;
		margin: 0 auto;
		padding: 0;
		text-align: left;
		}
		
	.emp-nav ul ul {
		display: block;
		position: relative;
		top: auto;
		width: 100%;
		box-shadow: 0px 0px 0px rgba(0,0,0,0);
		list-style-type: disc;
		}

	.emp-nav li,
	.emp-nav li a  {
		display: block; 
		width: 100% ;
		border-right: 0;
		border-bottom: 1px solid #ccc;
		text-align: left;
		padding: 0;
	}  
	
	.emp-nav li a  {
		border-bottom: 0px solid #ccc;
		padding: 10px 5px;
	} 
	.emp-nav li li a  {
		border-bottom: 0px solid #ccc;
		padding: 5px;
	}    

	.emp-nav ul ul li {
		text-align: left;
		border-bottom: 0px solid #ccc;
	} 
	.emp-nav ul ul li a:before {
		content: '- ';
	}
	.emp-nav li a:hover {
		background-color: #ccc;
	}    
    

}

body.gfur-activate .widecolumn { 
  padding: 20px;    
  margin: 60px;
  border-top: 1px solid #ccc;
}

body.gfur-activate .hero { 
display: none;
}



/*------------------------------------*\
    HOMEPAGE SLIDER
\*------------------------------------*/
.slick,
.slick-list,
.slick-track,
.homeslide_container {
    height: 100%;
    min-height: 500px;
    background-size: auto;
}

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.slick-dots {
    position: absolute;
    bottom: 20px !important;
 }
 

.slick-dots li button {
    } 

.slick-dots li button::before {
    font-size: 16px !important;   
    color: #fff !important; 
    }

.homeslide_container {	
	background-position: unset; 
	background-position-x: center; 
	background-repeat: no-repeat; 
	background-color: rgb(67, 88, 109);
}
  
.homeslide_content {
  /*background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.65) 25%, rgba(0,0,0,0.65) 75%, rgba(255,255,255,0) 100%); 
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
  padding: 40px;
  color: #fff;
  text-align: center;
  */
  background: rgb(0,0,0, .65);
  width: 100%;
  margin:0;
  padding: 20px 20px 40px 20px;
  position: absolute;
  bottom: 0;
}

/* this is all new */

.homeslide_content p.excerpt {
display: none; 
}

.homeslide_content p {
}

.homeslide_content h2 {
font-size: 26px; 
}


.skillet { display: none; }

.homeslide_content_wrap { 
	max-width: 800px; margin: 0 auto; 
	display: grid;
  	grid-template-columns: 1fr 150px; /* "1fr" for the first column and "150px" for the second column */
  	grid-gap: 20px; /* optional gap between columns */
  	align-items: center; 
  }

@media only screen and (max-width:1024px) {	
	
	.homeslide_content_wrap { display: block; text-align; center;}
	.homeslide_content h2 { text-align: center; }
	.homeslide_content p { text-align: center; }
}

.homeslide_placeholder { display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; }

@media only screen and (max-width:767px) {	

	.homeslide_content h2 {
	font-size: 22px;
	}
	
	.homeslide_container {
		background-size: cover;
    	min-height: 385px !important;
	}

}

.slick-dots li {
    border-radius: 12px;
}

.slick-active { background-color: #fff;}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 18px;
    height: 18px;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 12px;
}

/* this ends the new stuff */


.heroslider { padding: 0; }

.hero { 
	background-color: #43586D; 
	margin-top: 20px;
}

.hero h1, .hero h2 { color: #fff;}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap;
}
.row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.actionbox { padding: 40px;}


.drop-menu .btn { display: block; margin:20px 0;}

.divider-white { 
border: 1px solid #fff;
margin: 20px 0;
}

.homebox  { text-align: center; margin: 20px 0 40px 0; }
.homebox p  { margin-top: 20px; width: 250px; margin: 0 auto; }
.homebox i { margin-bottom: 10px;}

.homebox a { color: #AF6300; transition: .5s ease;}



.homebox h2 a { color: #43586D !important; margin-top: 10px !important; }

.h2_line { border: 1px solid #43586D; width: 115px; margin: 0 auto; margin-bottom: 10px; }

.homebox h2 a:hover { text-decoration: none; color: rgba(232, 153, 29, 1); }
.homebox a:hover { text-decoration: none; color: rgba(67, 88, 109, 1); }


.post-divider { 
   border: none;
   background-color: #617c5f;
   color: #ccc;
   height: 1px;
   margin: 30px 0; 
   clear: all;
   display: block;
   float: none;
   overflow: hidden;
   }
   
article { border-bottom: 1px solid #617c5f; overflow:hidden; padding-bottom: 20px; margin-bottom: 30px;}  

body.home article { margin-right: 40px; }

article:last-of-type { border-bottom: 0px solid red; overflow:hidden; padding-bottom: 20px; margin-bottom: 30px;}  
  
 .divider-shadow  {
    border: none;
   background-color: #617c5f;
   color: #ccc;
	height: 6px;
   margin-bottom: 60px; 
   clear: all;
   display: block;
   float: none;
   overflow: hidden;
   	background: #D1D6D1 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	opacity: 1;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
 }
.sub-featured { width: 100%; height: auto; margin-bottom: 30px; }

.main-content { padding-left: 40px;}


.single-featured { 
	margin: o auto; 
}

/*------------------------------------*\
    TOOLTIP
\*------------------------------------*/

.vdof-tt { font-size: smaller}

body.home .vdof-tt { color: #fff;}

.tooltip-inner {
  font-size: 16px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: 1px solid #000
  text-align: left;
}

.listNav {
    margin: 0 0 40px;
    position: relative;
    padding-top: 12px;
}

#glossaryList {
-webkit-column-count: 2;  /* Chrome/Opera, Safari */
-moz-column-count: 2; /* Mozilla Firefox */
column-count: 2;

/* Properties below are optional: */
-webkit-column-gap: 50px; /* Chrome/Opera, Safari */
-moz-column-gap: 50px; /* Mozilla Firefox */
column-gap: 50px;

-webkit-column-rule: 1px single grey; /* Chrome/Opera, Safari */
-moz-column-rule: 1px single grey; /* Mozilla Firefox */
column-rule: 1px single grey;
}

.glossaryLink  { font-weight: normal;}

.ln-letters a {
    font-size: 1em;
    display: block;
    float: left;
    padding: 4px 12px;
    border: 1px solid silver;
    border-right-color: silver;
    border-right-style: solid;
    border-right-width: 1px;
    border-right: none;
    text-decoration: none;
}


/*------------------------------------*\
    Photo Buttons
\*------------------------------------*/


.photo_button { 
	background-image: url('img/photo_button.jpg');
	margin-bottom: 20px !important;
	background-size:cover;
	min-width: 300px;
	min-height:142px;
	text-align: center;
	font-size: 32px;
	font-family: 'Cabin', sans-serif;
	color: #fff;
	text-align: center;
	display: block;
	position: relative;
	line-height: 1;
}

.photo_button a {
	display: block;
	color: #fff;
	height: 142px;
	width: 100%;
	background-color: rgba(67, 88, 109, 0.2);
	transition: .5s ease;
	padding: 25px;
	text-decoration: none !important;
	}

.photo_button a:hover {
	text-decoration: none;
	background-color: rgba(67, 88, 109, 1);
	color: #fff !important;
	text-decoration: none;
	}	
	


/*------------------------------------*\
    PAGE ELEMENTS
\*------------------------------------*/

.space { 
	height: 40px;
	width: 100%; 
	display: block;
}

.hr-grad { margin: 40px 0 !important;}

.featured {
font-size: larger;
color: #315f14;
font-family: Georgia;
}

.doclib { 
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background-color: #f7f5f3;
	padding: 60px 0;
	margin-bottom: 0px;
	margin-top: 60px;
 }
 
.newsposts { 
	background-image: url('img/leaves-bg.jpg');
	background-size:cover;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 60px 0;
	margin-bottom: 0px;
	margin-top: 0px;
	min-height: 300px;
	color: #fff;

}

.newsposts h2 { color: #E8991D; }

.newsposts a { color: #fff; font-weight: bold; }

.image-cropper {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    /* border-radius: 50%; */

}

article .post {
    border-bottom: 0px solid #617c5f;
/*    overflow: hidden;*/
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.newspost { padding: 40px; }

 .news-even   {
 	background-color: #f8f9fa;
 }
  .news-odd   {
 	background-color: #dfe5df;
 }
 
 .news-even .image-cropper  {
 	float: left;
 	margin-right: 20px;
 }
 
  .news-odd .image-cropper  {
 	float: right;
 	margin-left: 20px;
 }

/* .wp-block-column:has(.wp-block-post-featured-image) {
 	flex-basis: 0 !important;
 }

 .wp-post-image{
		width: 100px !important;
	  height: 100px !important;
	  object-fit: fill !important;
 }*/
 
.news-pic {
	max-width: auto;
  display: inline;
  margin: 0 auto;
   
	/*  width: auto;*/
/*		width: 200px;*/
/*	  height: 200px;*/
	/*  object-fit: contain;*/
	/*  background: #617c5f;*/
}

/*------------------------------------*\
    PAGE ELEMENTS
\*------------------------------------*/

.lightgreen { background-color: #dfe5df; padding: 3px;}
.my-toggle {
    padding: 0;
    margin-bottom: 20px;
}

.my-toggle ul,.my-toggle ol { margin-left: 20px;}

.my-toggle .trigger {
	margin: 0; padding: 0;
	padding: 6px 0px 5px 20px;
	display: block;
	float: none;
	text-transform: none;
	position: relative; 
    text-decoration: none !important;
    color: #07495F;
	background-color: #eaefe7;

	font-family: 'Cabin', sans-serif;
	font-weight: bold;
    }

.my-toggle .trigger:before {
	font-family: 'Font Awesome\ 7 Free';
    content: "\f067 ";
    padding-right: 8px;
}

    
.my-toggle .focus { outline: 0;}

.my-toggle .active:before {
font-family: 'Font Awesome\ 7 Free';
content: "\f068 ";
}

.active { background-color: #eaefe7 }

.my-toggle .box {
	padding: 20px;
	color: #2C2C2C;
}

.my-toggle .box p:first-child,
.my-toggle .box ul:first-child{
	padding-top: 0; margin-top: 0;
}


/*------------------------------------*\
   BOXES
\*------------------------------------*/

.alert, .warning {
  padding: 20px;
  background-color: #f44336; 
  opacity: 0.83;
  transition: opacity 0.6s;
  color: white;
  margin-bottom: 20px;
}

.warning {
  background-color: #AF6300; 
}

.success {
  background-color: #4CAF50; 
}

.info {
  background-color: #293C4E !important; 
  color:white !important;
}

.alert p {
  padding: 0px;
  margin: 0;
}

.alert a, .alert h3 { color: #fff; }
.alert a:hover { color: #fff; text-decoration:none;  }

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
} 

.tanbox { background-color: #eaefe7; padding: 10px; margin-bottom: 20px; }


.green { background-color: #617c5f }
.blue { background-color: #43586D }
.brown { background-color: #653D28 }

/*------------------------------------*\
    More Content
\*------------------------------------*/

.showmore {
}
.morelink {
    display: block;
}

.morelink:focus {
	outline:0;
}

.embedded_page {width: 100%; display: block; border: 3px solid #ccc;}

/*------------------------------------*\
    Event Calendar
\*------------------------------------*/


.tribe-events-list .tribe-events-loop .tribe-event-featured {
    background: #eee;
    margin-bottom: 2rem;
    padding-top: 20px;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-content
 {
    color: #444;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-meta {
    background-color: transparent;
    color: #444;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost .ticket-cost {
    background: #617c5f;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-event-cost span {
color: #fff;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured:before {
	content: "FEATURED EVENT"
}

.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-list-event-title a {
    color: #617c5f;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured .tribe-events-list-event-title {
    margin-top: 0;
}

.tribe-events-list .tribe-events-loop .tribe-event-featured a,
.tribe-events-list .tribe-events-loop .tribe-event-featured a:hover {
    color: #444;
}


h1.tribe-events-page-title  {
font-size: 2.5em;
line-height: 1.333em;
text-align: left;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding-bottom: 60px;
    padding-top: 0px;
    min-height: 700px;
}

#tribe-events, #tribe-events-pg-template, .tribe-events-pg-template {
    padding: 0px;
}

.tribe-events-header__breadcrumbs { display: none;}


.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
    max-width: auto;
    width: 100%;
    margin: 0 auto;
    margin: 0;
}

body.post-type-archive-tribe_events .tribe-events-category-employee-only { display: none; }

body.employee .tribe-events-category-employee-only { display: block; }

body.employee .tribe-events-category-employee-only h3:after { 
color: red;
font-size: 16px;
content: " (EMPLOYEE ONLY)" }

.tribe-section-event-status { display: none !important;}

.employee-only_ecs_category { display: none;}


#tribe-events-footer { display: none; }

li.employee-only-nav { display: none;}
body.employee li.employee-only-nav { display: block;}

body.postid-3300 .tribe-events-back { display: none; }


.newsposts .ecs-event-list,
.newsposts .ecs-event { margin-left : 0; padding-left: 0; list-style-type:none; }

.post-type { 
background-color: #617c5f;
color: #fff;
display:block;
font-size: 18px;
padding: 3px 15px;
}

/* Employee photos */
.emp-portrait { 
	float: right; margin-left: 40px;
	}
	
	@media screen and (max-width: 1085px) {
		.emp-portrait { 
		float: none; margin-bottom: 40px;
		}
	}



/* HIDE EMPLOYEE POSTS FROM PUBLIC BLOG */

/*
body.blog .category-employees-only,
body.blog .category-parent-employees-only,
body.archive .category-employees-only,
body.archive .category-parent-employees-only { display: none; }
*/
.searchandfilter { margin-bottom: 20px;}

.searchandfilter ul, .searchandfilter ul li { margin-left: 0; padding-left: 0;}


.forester-block { padding-bottom: 1.2em;}
.forester-panel { border: 1px solid #ccc; padding: 10px; min-height: 230px;}


/*------------------------------------*\
    CONNECTIONS PRO PLUGIN
\*------------------------------------*/

/*
#cn-metabox-metabox-messenger,
#cn-metabox-metabox-excerpt,
#cn-metabox-metabox-date { display: none !important; }

#cn-cmap .cn-right .county { display: block;}

#cn-cmap .cn-right .county::before {
  content: "County: ";
}
*/

.cn_cat_in_3_chosen,
.cn_cat_in_324_chosen,
.cn_cat_in_189_chosen,
.chosen-container-single,
.cn-search { display: none !important; }


.cn-char,
.cn-char-current {
	border: 1px solid #ccc; 
	padding: 5px 7px; 
	text-decoration: none;
}

.cn-char-current {
	font-weight: bold;
	color: #E8991D
}

.link-title-container:before { content: 'Website'}

#cn-metabox-metabox-logo .cn-radio-group { display: none !important; }
#cn-metabox-metabox-image .cn-radio-group { display: none !important; }

#cn-list span.adr span.address-name { display: none;}

#categorychecklist { list-style-type: none;}

#cn-metabox-visibility,
#cn-entry-type,
.address-geo { display: none !important; }

#cn-cmap span.cn-image-style {
    border-radius: 0px;
    background: #f1f1f1;
    background: linear-gradient(top,#f1f1f1 0,#e3e3e3 100%);
    border: 1px solid red;
    margin: 0;
    padding: 5px;
    margin-bottom: 20px;
    /*float: right !important;*/
}

.secondimg {
float: right; 
}
.cp-categories {
float: left;
}

.vdof-cn-right {
width: 30%; 
float: right; 
text-align: left;
}
.vdof-cn-left {
width: 60%; margin-right: 20px; 
float: left;
}

.vdof-cn-right ul {
margin: 0; 
}

.cn-list .cn-entry-content-block-list {
    margin-top: 0 !important;
}


#cn-cmap .cn-left .cn-image-style { float: left !important }

#cn-cmap .cn-entry-cmap-card h3 {
    clear: none;
    font-size: 14px !important;
    font-weight: 700;
    line-height: normal;
    margin: 0px;
    color: #000;
}

.cn-list .cn-entry-content-block ul {
    margin: 5px 0 !important;
    padding-left: 2em;
}


.cn-list-head {  display: none !important;  }


#cn-multi-category-search { 
	background-color: #eaefe7 !important;
	border-radius: 0 !important;
	}

.select2-container--sscit .select2-selection--single {
    background-color: #FFF;
    border: 2px solid #43586D;
    border-radius: 6px 0 0 6px;
    height: 36px;
    opacity: .8;
    padding: 4px 10px;
    text-align: left;
}

body.business-directory .select2-selection--single .select2-selection__arrow {
    background: #43586D;
    font-size: 36px;
    height: 34px;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 2px;
    width: 36px;
}

#cn-multi-category-search button#cnmcs-search-submit {
    background: #AF6300;
    border: 2px solid #AF6300;
    border-radius: 0px;
}

#cn-multi-category-search input[type="text"] {
    background-color: white;
    border: 2px solid #43586D;
    border-radius: 0px;
    color: #5e5e5e;
    font-size: 16px;
}

.select2-container--sscit .select2-selection--single .select2-selection__arrow {
    background: #43586D;
    font-size: 36px;
}

.select2-container--sscit .select2-selection--single .select2-selection__rendered {
    color: #5e5e5e;
    font-size: 16px;
    line-height: normal;
}



/*
#cn-cmap .cn-entry.cn-background-gradient { background-color: #f7f5f3 !important; }
#cn-cmap .cn-entry.cn-background-shadow { box-shadow: 0 0px 0px 0px rgba(100,100,100,0) !important;}
*/

.office-card { 
	border: 1px solid #ccc; 
	padding: 20px;
}

.map-legend {
	border: 0px solid #ccc; 
	margin: 40px 0;
}

.gallery-item { margin: 0;}
.gallery-icon { margin: 5px;}
.gallery img { border: 0 !important; }

.gallery { margin-bottom: 40px; }
.gallery-columns-4 .gallery-item {
    max-width: 25%;
    float: left;
}
.gallery-columns-3 .gallery-item {
    max-width: 33%;
    float: left;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
    float: left;
}

.circle-icon {
background: #f5efdf;
width: 52px;
height: 52px;
border-radius: 50%;
text-align: center;
line-height: 50px;
vertical-align: middle;
padding: 0;
font-size: 35px;
margin: 5px;
}	

body.page-template-page-stateforest .circle-icon {
background: #fff;
width: 25px;
height: 25px;
border-radius: 50%;
text-align: center;
line-height: 25px;
vertical-align: middle;
padding: 0;
font-size: 18px;
margin: 2px;
}

.circle-icon:hover {
background-color: #eaefe7;
}	

.picnic {
background: #f5efdf url(img/ico-picnic.png) center no-repeat;
background-size: 34px 24px;
}

body.page-template-page-stateforest .picnic {
background: #fff url(img/ico-picnic.png) center no-repeat;
background-size: 20px 14px;
}

.ico-sm { height: 17px; width: auto; padding-bottom: 3px;}


tablepress tfoot th, 
.tablepress thead th {
    background-color: #eaefe7 !important;
}

tablepress tfoot th:hover, 
.tablepress thead th:hover {
    background-color: #dfe5df !important;
}

.firedangertable td, 
.firedangertable th { 
text-align: center !important;
border: 1px solid #ccc !important;
}





/*------------------------------------*\
    FOOTER
\*------------------------------------*/

.footer { 
	background-color: #dfe5df; 
	width: 100%;
	color: #43586D;
	margin-top: 0px;
	}

.inner-footer { 
	padding: 40px 0 0 0;
	}	

.footer a { 
	color: #43586D;
	text-decoration: underline;
	font-weight: bold;
	}
.footer .social { float: none; text-align: center; margin: 0;}		

.copyright-footer { padding: 20px 0; background-color: #43586D; text-align: center; color: #fff; }

.copyright-footer a { 
	text-decoration: underline;
	font-weight: normal;
	color: #fff;
	}
.copyright-footer a:hover { 
	font-weight: bold;
	}	
	



.footer_logo {
	width: 125px;
	height: auto;
}


.posts-data-table tr.odd td {

background-color: #f7f5f3 !important; 
background-color: #f4f8ec !important; 

}
.posts-data-table tr.even td {
background-color: #fff;
}

.simpletable .posts-data-table thead{

}

.simpletable .posts-data-table{

}

/* HOME PAGE FORM */

#gform_7  { background-color: #43586D; color: #fff; padding: 20px; }
#gform_7 h3.gform_title  { color: #fff; font-weight: normal; }


#gform_7 ul li.gfield,
#gform_7 span.gform_description,
#gform_7 .gform_heading,
#gform_7 .gform_footer  {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0;
    padding-bottom: 0; }
#gform_7 label { display: none; }
#gform_7 .gform_footer  {
    margin-top: 10px;
    text-align: left; }
#gform_7 .gf_one_fourth  {
	width: 25% !important;
	display: inline-block;
	vertical-align: bottom;
	padding-right: 16px;
	float: none; }
#gform_7 .top_label input.small,
#gform_7 .ginput_complex .ginput_right { width: 100%;}
#gform_submit_button_9 { background-color: #AF6300; color: #fff; border: 0; padding: 10px 20px; }

/*
#gform_7 .rc-anchor-light.rc-anchor-normal {
    border: 0px solid #d3d3d3;
}
#gform_7 .rc-anchor-light {
    background: trasnparent;
    color: #fff;
}
#gform_7 .rc-anchor-normal-footer { display: none !important; }
*/

.hidden-on-mobile {
	display: block;
}
.hidden-on-desktop {
	display: none;
}

#cn-form .cn-add.cn-button {
	background-color: #43586D !important;
}

#cn-form .cn-button.green{
	background-color: #AF6300 !important;
}

@media only screen and (max-width:1280px) {
	.wrapper {
	width: 90%;
	margin: 0 auto;
	}
	
	.header .wrapper:nth-child(2) { width: 100%;}
}

@media only screen and (max-width:1024px) {
	.logo { text-align: center; }
	.logo img { float: none; margin: 0 auto; }
	.logo h1 br { display: none; line-height: 1.2; }
	.logo h1 { line-height: 1; padding: 0; }
	.eyebrow-menu { text-align: center; margin: 20px 0;}
	.social { float: left; }
	
	#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
	font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;
	padding: 0px 10px 0px 10px;
	}
	
	section .alignright {
    float: none;
    margin: 0 auto;
    margin: 20px 0;
    width: 100%;
	}


	table.responsive {
	margin-bottom: 0;
/*	overflow: hidden;*/
	overflow-x: scroll;
	display: block;
	white-space: nowrap;
	}

	.hidden-on-mobile {
		display: none;
	}
	.hidden-on-desktop {
		display: block;
	}
}



@media only screen and (max-width:767px) {	
	
	.col-md-8, .col-md-4, .heroslider, .actionbox { display: block; width: 100% !important;  }

	.slick, .slick-list, .slick-track, .homeslide_container {
    height: 100%;
    min-height: 300px;
	}
	.homeslide_content { margin-top: 0 }

	.main-content {
    padding-left: 0px;
	}
	
	.footer .m-all { text-align: center}
	
	.footer ul,
	.footer li { list-style-type: none; margin: 0; padding: 0;}
		
	.footer ul { margin-bottom: 40px;}
	
	.footer .search-block {
    display: inline-block;
    margin: 0 auto;
    float: none;
    margin-bottom: 40px;
	}
	
/*	#sidebar1, .sidebar-nav, .sidebar .widget_nav_menu { display: none; }*/
	
	
	
	.mobile-widget { display: block; }
}

@media only screen and (max-width:530px) {

	.search-block {
    display: inline-block;
    float: none;
    margin: 20px 0;
	}
	.eyebrow-nav { text-align: center;}
	
	.social { float: none; text-align: center; margin: 0 0 20px 0; font-size: 26px; }
	
	.social a { padding: 10px; }
	
	.eyebrow-menu li a { padding: 7px 10px; }
	
	.eyebrow-menu li { border-right: 0px solid #fff; }
	
	.footer li { padding: 5px; }

}



@media only screen and (min-width:320px) {

}
	

@media only screen and (min-width:1140px) {

}

	

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
/*	border:1px solid #F0F0F0;*/
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
/*	width:auto;*/
}

.single-featured {

}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

body #tt #ttcont div.glossaryItemTitle {
	color: white !important;
	font-weight: bold;
}

h2, h4, .alert.info {	
	overflow: auto;
}

/*h3 {
	overflow: auto;
}*/

.btn, .reset, .gform_button, #gform_submit_button_9, .search-block .search-submit {
	background-color: #AF6300;
	color: white;
}

.select-css {
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%), linear-gradient(to right, #AF6300, #AF6300);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

.posts-table-select-filters {
	z-index: 0 !important;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
	
	nav,
	.nav,
	.sidebar,
	.eyebrow-nav,
	#doclib,
	#cn-multi-category-search,
	.newsposts,
	#menu-footer-menu-left,
	#menu-footer-menu-right,
	.search-block,
	.switcher,
	.copyright a,
	.footer a,
	.searchfooter,
	.copyright-footer,
	.post-edit-link,
	.cn-list-section-head,
	.reset-btn,
	.cn-tray-links,
	body.business-directory .alert,
	body.business-directory .contact-label,
	body.business-directory .address-name { display: none; }
	
	.main-content,
	.t-2of3,
	.d-3of4,
	.footer .d-1of4 { width: 100%}
	
	.box {
    display: block !important;
	}
	
	.cn-entry { border: 1px solid #000 !important; text-shadow: none !important;}
	
	#cn-list span.adr span.address-name,
  	 #cn-list span.email span.email-name,
  	#cn-list span.tel span.phone-name,
  	#cn-list span.link span.link-name,
  	#cn-list span.fn,
  	#cn-cmap span.contact-label,
  	#cn-cmap .cn-list-row a,
  	#cn-cmap .cn-list-row-alternate a {
    font-weight: normal !important;
	}
	
	body.business-directory b, 
	body.business-directory strong {
    font-weight: normal !important;
	}
	
	#cn-list span.fn { font-size: 18px;}	
	.cn-list a[href]:after {
		content:"";
	}
	
	.cn-list .d-1of3 {
	width: 33%;
	float: right;
	}
	
	.cn-list .d-2of3 {
	width: 33%;
	float: left;
	}
	
	.cn-bio-tray { display: block; }
	
}

.posts-table-controls .select2-container .select2-selection--single{
	height: unset !important;
}

.posts-table-wrapper .posts-table-controls > div {
	margin-top: 30px;
}

.wp-block-post {
	margin-bottom: 40px !important;
}

:where(.wp-block-columns) {
  margin-bottom: 0px;
}
