/*
//Set a variable to use for the primary brand identity color
//We'll use this color for the background color of the menus - this should have a decent contrast with white as it is sometimes used on a white or gray background for links
$brand-identity-1: #1974bc;

//Set the inverse/contrast color to use for text on that background
$brand-identity-1-inverse: #fff;

//We'll use this color for the background color of the section titles on the detail and form pages
//It should not be the same as the brand-identity-1 color as when using the jump links on the side of
//form and detail pages, we highlight the section with the brand-identity-1 colors
$brand-identity-2: #f9b62e;

//Set the inverse/contrast color to use for text on that background
$brand-identity-2-inverse: #fff;

//Set the background for the header bar.  You could also set a properly tiled
//background image if appropriate
$headerbar-bg: #000;

//Set the border color to be used on that background
$headerbar-border: #333;
//Set a color to be used for hovers on the background
$headerbar-highlight: lighten($headerbar-bg,10%);

//Set the color to be used on the app switcher (currently says extranet)
$headerbar-appname-color: $brand-identity-1-inverse;

//Set the background color of the organization switcher
$headerbar-org-dropdown-color: $brand-identity-2;

//Set the foreground color of the organization switcher
$headerbar-org-dropdown-color-inverse: $brand-identity-2-inverse;

//Set the menu colors (this applies only to the secondary side nav, the primary nav bar should remain the same)
$secondary-nav-color: $brand-identity-1;
$secondary-nav-color-inverse: $brand-identity-1-inverse;

//Just darkening the nav color to create a border and the active state
$secondary-nav-color-border: darken($secondary-nav-color,10%);
$primarynav-color-active: $secondary-nav-color-border;

//Update the logo image
html {
	.logoArea{
		img.logo{
			background-image: url(http://www.neworleanscvb.com/includes/images/shell/logo_footer.png);
			width: 0;
			height: 0;
			background-size: cover;
			padding: 24px 86px;
		}
	}
}


//Set up the responsive header image for the site.  If a header image is used must set the
//height (which should never vary) in the
.headercontainer {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 300px;
  overflow: hidden;
}

#header_theme_image {
  background-image: url(http://res.cloudinary.com/benextranetdemo/image/upload/crm/extranetv2/BE68EC4F-81D6-4C83-A0B6AB0BD76E5999_469214c5-8767-46c1-a80ecc8fbdd8ddfb);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  min-height: 300px;
}

html .formPanelTitle{
	background-color: $brand-identity-2 !important;
	color: $brand-identity-2-inverse !important;
}

.itemDetail section, .itemForm section {
	border-color: $brand-identity-2 !important;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.itemDetail .formPanelTitle.sectionActiveTitle, .itemForm .formPanelTitle.sectionActiveTitle{
	background-color: $brand-identity-1 !important;
	color: $brand-identity-1-inverse;
}

.itemDetail section.sectionActive, .itemDetail section.sectionActive{
	border-color: $brand-identity-1 !important;
}


//Import the core shared bar file which is extensible
@import "../../../core-src/simpleview/modules/color/sharedbar";

//Import the core theme file where any other themable definitions will be placed
@import "../../../core-src/simpleview/theme";
*/
/*
.dropdown-menu > li > a:focus {
   	@include gradient-vertical($start-color: $dropdown-link-hover-bg, $end-color: darken($dropdown-link-hover-bg, 5%));
	background-color: darken($dropdown-link-hover-bg, 5%);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	@include gradient-vertical($start-color: $dropdown-link-active-bg, $end-color: darken($dropdown-link-active-bg, 5%));
 	background-color: darken($dropdown-link-active-bg, 5%);
}
*/
/* line 126, ../sass/theme/theme.scss */
.form-control:focus {
  border-color: #018a77;
  /*@include box-shadow($shadow);*/
}

/* line 132, ../sass/theme/theme.scss */
.form-control option:checked {
  background-color: #01BDA3;
  color: #fff !important;
  border-color: #01BDA3;
}

/* line 138, ../sass/theme/theme.scss */
.btn {
  font-weight: normal;
}

/* line 141, ../sass/theme/theme.scss */
.btn-primary {
  border: 1px solid #01BDA3 !important;
}

/* line 144, ../sass/theme/theme.scss */
.secondaryNav {
  background: #01BDA3 none repeat !important;
  border-color: #01BDA3 !important;
  color: white;
}

/* line 150, ../sass/theme/theme.scss */
.crmHome .leftNav .secondaryNav .item:hover {
  background: #03A992;
}

/* line 153, ../sass/theme/theme.scss */
.item.active {
  background: #01BDA3 !important;
  color: #03A992;
}

/* pseudo-dropdowns on the grids */
/* line 159, ../sass/theme/theme.scss */
div.extraActions ul.gridExtraActionList li.gridExtraAction:hover {
  background-color: #03A992 !important;
}

/* line 162, ../sass/theme/theme.scss */
div.extraActions ul.gridExtraActionList li.gridExtraAction:hover a {
  color: #fff !important;
}

/* line 165, ../sass/theme/theme.scss */
div.extraActions ul.gridExtraActionList li.gridExtraAction a:hover {
  color: #fff !important;
}

/* line 169, ../sass/theme/theme.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background-color: #03A992;
  color: #fff !important;
  border-color: #03A992;
}

/* line 175, ../sass/theme/theme.scss */
#label_evtdate li.active a {
  background-color: #01BDA3;
  color: #fff !important;
  border-color: #01BDA3;
}

/* line 181, ../sass/theme/theme.scss */
fieldset.recurrenceSettingsGroup ul li label.selected {
  background-color: #01BDA3 !important;
  color: #fff !important;
}

/* line 185, ../sass/theme/theme.scss */
.itemForm label {
  font-weight: normal !important;
}

/* line 188, ../sass/theme/theme.scss */
.crmHome .leftNav .primaryNav .item.active {
  color: #fff;
}

/* line 191, ../sass/theme/theme.scss */
.crmHome .leftNav .secondaryNav .titleSection {
  border-color: #03A992;
}

/* line 194, ../sass/theme/theme.scss */
.crmHome .sharedBar {
  background-color: #ffffff !important;
  border-color: #ffffff;
}

/* line 198, ../sass/theme/theme.scss */
.sharedBar .area.clickable:hover {
  background-color: #ffffff !important;
  border-color: #ffffff;
}

/* line 202, ../sass/theme/theme.scss */
.sharedBar .logoArea, .sharedBar .switchArea, .sharedBar .fa, .sharedBar .clientArea, .sharedBar .userArea, .sharedBar .taskArea, .sharedBar .searchArea, .crmHome .sharedBar .switchArea span {
  color: #6D6559;
  border-color: #ffffff;
}

/* line 206, ../sass/theme/theme.scss */
.sharedBar .orgArea select, .sharedBar .orgArea option {
  background-color: #ffffff;
  color: #01BDA3;
}

/* line 210, ../sass/theme/theme.scss */
a, .jumpTo .nav li a {
  color: #01BDA3 !important;
}

/* line 213, ../sass/theme/theme.scss */
a:hover, a:focus {
  color: #03A992 !important;
  text-decoration: underline;
}

/* line 217, ../sass/theme/theme.scss */
a.filter {
  color: #03A992;
}

/* line 219, ../sass/theme/theme.scss */
.dashboard .postActionBar span.fa {
  color: #03A992;
}

/* line 222, ../sass/theme/theme.scss */
.filterBar .filterTitleBar span.fa {
  color: #01BDA3 !important;
}

/* line 225, ../sass/theme/theme.scss */
.btn, .btn:hover, btn-filter, .btn-filter:hover, .itemList table thead th.isSorted {
  background-color: #01BDA3 !important;
  color: #ffffff !important;
}

/* line 230, ../sass/theme/theme.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  border-color: #03A992 !important;
}

/* line 233, ../sass/theme/theme.scss */
.gridControls .pagination .previousPage, .gridControls .pagination .nextPage {
  background-color: #01BDA3;
}

/* line 238, ../sass/theme/theme.scss */
.filterBar .gridFilters {
  border-color: #01BDA3;
}

/* line 244, ../sass/theme/theme.scss */
.headercontainer {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  height: 200px;
  overflow: hidden;
}

/* line 253, ../sass/theme/theme.scss */
#header_theme_image {
  background-image: url("/img/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  display: block;
}

/*Update the logo image*/
/* line 267, ../sass/theme/theme.scss */
html .logoArea {
  padding: 0px 10px;
  width: 210px;
}
/* line 268, ../sass/theme/theme.scss */
html .logoArea img.logo {
  background-image: url("/img/logo-topbar.png");
  background-position: left;
  width: 175px;
  height: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 30px 0px;
}

/* line 282, ../sass/theme/theme.scss */
.loginPage {
  background-image: url("/img/bGround.jpg") !important;
  background-position: bottom !important;
  background-size: cover;
}

/* line 291, ../sass/theme/theme.scss */
.loginPage .loginPanelContent .loginbottomrow {
  background-image: url("/img/logo-login.png");
  background-repeat: no-repeat;
  background-size: 275px;
  background-position: left center;
  padding-top: 31px;
  z-index: -1;
  overflow: hidden;
}
/* line 301, ../sass/theme/theme.scss */
.loginPage .loginPanelContent .submitrow {
  /*hide simpleview logo*/
  margin-left: 15px !important;
}
/* line 303, ../sass/theme/theme.scss */
.loginPage .loginPanelContent .submitrow img.logo {
  display: none;
}
/* line 307, ../sass/theme/theme.scss */
.loginPage .loginPanelContent .submitrow .btn {
  margin-bottom: 40px;
}

/* line 316, ../sass/theme/theme.scss */
.dashboard-dashboardmodule .headercontainer {
  display: none;
}
