/* Styles for Data.Energizer.com */
/* temporary marker */
.marker {
  color: red; }

/*=== Header/Nav ===*/
.top-header li:first-of-type a {
  color: #dc291e;
  text-decoration: underline; }

.main-header .logo {
  background-image: url(../img/logo.png); }

.main-header .nav-contain .main-nav > li {
  width: 24%;
  border-left: none; }
  .main-header .nav-contain .main-nav > li:first-of-type {
    border-left: 1px solid #2d2d2d; }

.main-header .nav-contain .products .img {
  background: url(../img/header_nav_products.png) no-repeat center center;
  background-size: contain; }

.main-header .nav-contain .handbooks .img {
  background: url(../img/header_nav_handbooks.png) no-repeat center center;
  background-size: contain; }

.main-header .nav-contain .datasheets .img {
  background: url(../img/header_nav_datasheets.png) no-repeat center center;
  background-size: contain; }

.main-header .nav-contain .general .img {
  background: url(../img/header_nav_general.png) no-repeat center center;
  background-size: contain; }

/*=== Home Slider ===*/
.data-hero {
  padding: 5%;
  background: url(../img/slider-bg-1.png) no-repeat bottom left;
  background-size: cover;
  position: relative;
  height: 385px;
  margin-top: 80px;
  width: 100%;
  border-radius: 8px; }
  .data-hero .data-product-img {
    max-width: 40%;
    position: absolute;
    bottom: -10px;
    right: 70px; }
  .data-hero img {
    max-width: 50%;
    display: block;
    height: auto; }
  .data-hero h2 {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
    padding: 0; }
  .data-hero h3 {
    font-size: 52px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 0.8em;
    margin-bottom: 40px; }
  .data-hero p {
    width: 45%; }

/*== include Custom Select ==*/
/* Container used for styling the custom select, the buttom class below adds the
 * bg gradient, corners, etc. */
.custom-select {
  position: relative;
  display: inline-block;
  background-color: #d2d2d2;
  border-radius: 4px;
  outline: none;
  width: 225px;
  margin-right: 20px; }

/* This is the native select, we're making everything but the text invisible so
 * we can see the button styles in the wrapper */
.custom-select select {
  width: 100%;
  margin: 0;
  outline: none;
  padding: .6em .8em .5em .8em;
  /* Prefixed box-sizing rules necessary for older browsers */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Font size must be 16px to prevent iOS page zoom on focus */
  font-size: 16px;
  background: #d2d2d2;
  font-weight: bold;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  border: none;
  padding: 8px 15px; }

/* Custom arrow sits on top of the select - could be an image, SVG, icon font,
 * etc. or the arrow could just baked into the bg image on the select. */
.custom-select::after {
  content: "";
  background-image: url(../img/arrow-down-lg.png);
  width: 45px;
  height: 100% !important;
  -webkit-background-size: cover;
  background-size: cover;
  height: 6px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-radius: 0 4px 4px 0;
  /* These hacks make the select behind the arrow clickable in some browsers */
  pointer-events: none;
  display: none; }

@supports (-webkit-appearance: none) or (appearance: none) or ((-moz-appearance: none) and (mask-type: alpha)) {
  /* Show custom arrow */
  .custom-select::after {
    display: block; }

  /* Remove select styling */
  .custom-select select {
    padding-right: 2em;
    /* Match-01 */
    /* inside @supports so that iOS <= 8 display the native arrow */
    background: none;
    /* Match-04 */
    /* inside @supports so that Android <= 4.3 display the native arrow */
    border: 1px solid transparent;
    /* Match-05 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }

  .custom-select select:focus {
    border-color: #aaa;
    /* Match-03 */ } }
/* Adds Firefox < 35 support */
/* FIREFOX won't let us hide the native select arrow, so we have to make it wider than needed and clip it via overflow on the parent container. The percentage width is a fallback since FF 4+ supports calc() so we can just add a fixed amount of extra width to push the native arrow out of view. We're applying this hack across all FF versions because all the previous hacks were too fragile and complex. You might want to consider not using this hack and using the native select arrow in FF. Note this makes the menus wider than the select button because they display at the specified width and aren't clipped. Targeting hack via http://browserhacks.com/#hack-758bff81c5c32351b02e10480b5ed48e */
/* Show only the native arrow */
@-moz-document url-prefix() {
  /* Warning: this kills the focus outline style */
  .custom-select {
    overflow: hidden; }

  .custom-select::after {
    display: block; }

  /* Make the native select extra wide so the arrow is clipped. 1.5em seems to be enough to safely clip it */
  .custom-select select {
    overflow: -moz-hidden-unscrollable;
    padding-right: .4em;
    background: none;
    /* Match-04 */
    border: 1px solid transparent;
    /* Match-05 */
    /* Firefox < 4 */
    min-width: 6em;
    width: 130%;
    /* Firefox 4-15 */
    min-width: -moz-calc(0em);
    width: -moz-calc(100% + 2.4em);
    /* Firefox 16+ */
    min-width: calc(0em);
    width: calc(100% + 2.4em); }

  /* Firefox 35+ that supports hiding the native select can have a proper 100% width, no need for the overflow clip trick */
  @supports (mask-type: alpha) {
    .custom-select {
      overflow: visible; }

    .custom-select select {
      -moz-appearance: none;
      width: 100%;
      padding-right: 2em;
      /* Match-01 padding-right */ } } }
/* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */
.custom-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

/* IE 10/11+ - This hides native dropdown button arrow so it will have the custom appearance. Targeting media query hack via http://browserhacks.com/#hack-28f493d247a12ab654f6c3637f6978d5 - looking for better ways to achieve this targeting */
/* The second rule removes the odd blue bg color behind the text in the select button in IE 10/11 and sets the text color to match the focus style's - fix via http://stackoverflow.com/questions/17553300/change-ie-background-color-on-unopened-focused-select-box */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-select select::-ms-expand {
    display: none; }

  .custom-select select:focus {
    border-color: #aaa;
    /* Match-03 */ }

  .custom-select select:focus::-ms-value {
    background: transparent;
    color: #222;
    /* Match-02*/ }

  .custom-select select {
    padding-right: 2em;
    /* Match-01 */
    background: none;
    /* Match-04 */
    border: 1px solid transparent;
    /* Match-05 */ }

  .custom-select::after {
    display: block; } }
/*==== SEARCH FORM ====*/
.row {
  padding: 0 !important; }

#tabs {
  margin-top: 40px;
  position: relative;
  min-height: 425px; }
  #tabs .tab-head {
    background: #d2d2d2;
    text-align: center;
    width: 33.33%;
    color: #8c8c8c;
    margin: 0;
    padding: 15px 0;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    float: left; }
  #tabs .tab-head.tab-active {
    background: #ebebeb;
    color: #6c6c6c; }
  #tabs .form-tab {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    clear: both;
    padding: 0; }

#tab-eur .tab-head {
  margin-left: 33.33% !important; }

#tab-ap .tab-head {
  margin-left: 66.67% !important; }

.form-tab-content {
  background-color: #ebebeb;
  min-height: 200px;
  border-radius: 0 0 5px 5px;
  width: 100%;
  clear: both; }
  .form-tab-content p.adv-search-link {
    display: inline-block;
    float: right;
    margin: 40px; }
    .form-tab-content p.adv-search-link a {
      font-weight: bold; }
  .form-tab-content .data-main-search {
    padding: 40px; }
    .form-tab-content .data-main-search p {
      margin: 0 0 20px 0;
      padding: 0; }
    .form-tab-content .data-main-search input[type="text"] {
      position: relative;
      display: inline-block;
      background-color: #d2d2d2;
      border: none;
      border-radius: 4px;
      outline: none;
      width: 300px;
      margin-right: 20px;
      font-size: 16px;
      padding: 12px 15px; }
    .form-tab-content .data-main-search input[type="submit"] {
      color: white;
      background: #dc291e url(../img/header_top_search.png) no-repeat 90% center;
      border: none;
      border-radius: 4px;
      padding: 11px;
      padding-right: 50px;
      font: 14px "Open Sans", sans-serif;
      display: inline-block; }
  .form-tab-content hr {
    margin: 0 40px; }

/*=== HOMEPAGE  CALLOUTS ===*/
.data-callout {
  border: 1px solid #959595;
  border-radius: 4px;
  height: 200px;
  margin: 10px;
  width: 23.66%; }
  .data-callout p {
    text-align: center;
    padding-top: 135px; }
    .data-callout p a {
      color: black; }

.col_1_4.data-callout:nth-of-type(1) {
  margin-left: 0; }

.col_1_4.data-callout:nth-of-type(4) {
  margin-right: 0; }

.data-callout:nth-of-type(1) {
  background: url(../img/home-callout-1.png) center center no-repeat;
  background-size: cover; }

.data-callout:nth-of-type(2) {
  background: url(../img/home-callout-2.png) center center no-repeat;
  background-size: cover; }

.data-callout:nth-of-type(3) {
  background: url(../img/home-callout-3.png) center center no-repeat;
  background-size: cover; }

.data-callout:nth-of-type(4) {
  background: url(../img/home-callout-4.png) center center no-repeat;
  background-size: cover; }

/*== 2.0 PRODUCTS INDEX ==*/
.product-list {
  padding: 15px; }
  .product-list .mt40 {
    margin-top: 40px !important; }
  .product-list .mt80 {
    margin-top: 80px !important; }
  .product-list #tabs {
    margin: 0; }
  .product-list .row {
    padding: 0; }
  .product-list h4.product-cat {
    height: 40px;
    font-weight: 400;
    width: 100%;
    height: 40px;
    padding-left: 100px;
    border-radius: 5px;
    background: #202020 url(../img/barglow.png) no-repeat right center;
    color: #fff;
    line-height: 40px;
    position: relative; }
    .product-list h4.product-cat:before {
      width: 47px;
      height: 80px;
      content: "";
      position: absolute;
      left: 20px;
      top: -40px; }
  .product-list .alkaline:before {
    background: url(../img/prod-alkaline.png) no-repeat center top; }
  .product-list .carbonzinc:before {
    background: url(../img/prod-carbonzinc.png) no-repeat center top; }
  .product-list .product-bar {
    width: 95%;
    margin: 40px auto;
    height: 40px;
    background: #ebebeb url(../img/prod-pattern-bg.png) no-repeat center top;
    color: #6c6c6c; }
  .product-list .product-detail {
    width: 95%;
    margin: 10px auto; }
  .product-list .product-table {
    margin-top: 0 !important; }
    .product-list .product-table div.pt-row {
      height: 60px;
      border-bottom: 1px solid #6c6c6c;
      color: #6c6c6c;
      font-size: 12px;
      font-weight: 700; }
      .product-list .product-table div.pt-row:first-of-type {
        background: #6c6c6c;
        color: white;
        border-radius: 5px; }
      .product-list .product-table div.pt-row .col_1_11 {
        width: 9%;
        padding: 0;
        text-align: left;
        float: left;
        line-height: 60px; }
        .product-list .product-table div.pt-row .col_1_11:first-child,.product-list .product-table div.pt-row .col_1_3:first-child {
          padding-left: 2%; }
		.product-list .product-table div.pt-row .col_1_3{padding-top: 10px;}
      .product-list .product-table div.pt-row:after {
        content: "";
        clear: both;
        width: 100%;
        height: 1px; }
  .product-list .obsolete {
    color: white;
    background: repeating-linear-gradient(315deg, #fff, #fff 16px, #fff1f1 10px, #fff1f1 20px); }

.table-thumb {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important; }

/*=== Base Content ===*/
.base-content {
  background: transparent;
  max-width: 940px;
  width: 100%;
  margin: 80px auto 0;
  border-radius: 5px; }

.single-drop .custom-select {
  width: 300px; }

#form-or {
  float: right;
  margin-right: 100px;
  margin-top: -35px; }

/*=== ADVANCED SEARCH ===*/
.adv-search p.back-link {
  max-width: 940px;
  margin: 20px auto; }
.adv-search .page-meta {
  max-width: 940px;
  margin: 0 auto;
  height: auto;
  float: none;
  margin-top: 45px; }
  .adv-search .page-meta h1 {
    float: none; }

#advanced-search .adv-search-row {
  line-height: 40px;
  margin-bottom: 20px; }
#advanced-search .custom-select {
  width: 100%; }
#advanced-search input[type="text"] {
  position: relative;
  display: inline-block;
  background-color: #d2d2d2;
  border: none;
  border-radius: 4px;
  outline: none;
  width: 100%;
  margin-right: 0;
  font-size: 16px;
  padding: 12px 15px; }
#advanced-search .top-label-row {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 12px; }
#advanced-search .col_1_12 {
  padding: 0 2%; }
#advanced-search .col_2_12 {
  padding-left: 2%;
  padding-right: 0; }
#advanced-search .red-btn {
  color: white;
  background: #dc291e;
  border: none;
  border-radius: 4px;
  padding: 11px 25px;
  font: 14px "Open Sans", sans-serif;
  display: inline-block;
  margin-right: 15px; }

.glossary-section:first-child {
  width: 100%;
  border-bottom: 1px solid #959595;
  position: relative;
  margin: 45px 0 40px; }

.glossary-item {
  width: 100%;
  border-bottom: 1px solid #959595;
  margin: 20px 0;
  padding: 20px 0; }
  .glossary-item:after {
    content: '';
    height: 1px;
    clear: both; }

@media (max-width: 530px) {
  .main-header .logo {
    background-image: none; } }

@media (max-width: 530px) {
  .data-hero {
    height: auto;
    margin: 80px auto 0 auto;
    background-position: top;
    padding-top: 140px;
    background-size: contain;
    width: 90%;
    border-radius: 2px; } }
@media (max-width: 530px) {
  .data-hero h2 {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
    padding: 0;
    line-height: 1.2; } }
@media (max-width: 530px) {
  .data-hero h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    margin-bottom: 40px; } }
@media (max-width: 530px) {
  .data-hero p {
    width: 100%; } }
@media (max-width: 530px) {
  .data-hero img {
    display: none; } }

@media (min-width: 530px) and (max-width: 1030px) {
  .form-tab-content .data-main-search {
    padding: 20px; } }

@media (min-width: 530px) and (max-width: 1030px) {
  .custom-select {
    width: 200px; } }
@media (max-width: 530px) {
  .custom-select {
    width: 330px;
    margin-bottom: 20px; } }
@media (max-width: 530px) {
  .custom-select:after {
    width: 55px; } }
@media (max-width: 530px) {
  .custom-select select {
    font-size: 20px; } }

@media (min-width: 530px) and (max-width: 1030px) {
  .form-tab-content p.adv-search-link {
    margin: 20px; } }

@media (min-width: 530px) and (max-width: 1030px) {
  .data-callout {
    width: 22.66%;
    height: 160px; } }
@media (max-width: 530px) {
  .data-callout {
    width: 80%;
    margin: 20px auto !important;
    float: none; } }
@media (min-width: 530px) and (max-width: 1030px) {
  .data-callout p {
    padding-top: 95px; } }

@media (min-width: 530px) and (max-width: 1030px) {
  .form-tab-content .data-main-search input[type="submit"] {
    margin-top: 20px; } }
@media (max-width: 530px) {
  .form-tab-content .data-main-search input[type="submit"] {
    display: inline-block;
    background-image: none;
    width: 100%;
    font-size: 20px; } }

@media (max-width: 530px) {
  #tabs .tab-head {
    padding: 18px 0;
    font-size: 16px; } }

@media (max-width: 530px) {
  .form-tab-content {
    padding-top: 40px; } }
@media (max-width: 530px) {
  .form-tab-content p.adv-search-link {
    display: block;
    float: none;
    width: 80%;
    margin: 20px auto;
    text-align: center;
    background: #666;
    padding: 20px 0;
    border-radius: 8px;
    margin-top: 0; } }
@media (max-width: 530px) {
  .form-tab-content p.adv-search-link a {
    text-decoration: none;
    color: white;
    font-size: 20px; } }
@media (max-width: 530px) {
  .form-tab-content .data-main-search p {
    font-size: 16px; } }
@media (max-width: 530px) {
  .form-tab-content .data-main-search input[type="text"] {
    display: block;
    width: 100%;
    margin: 20px auto; } }
@media (max-width: 530px) {
  .form-tab-content .custom-select {
    width: 300px; } }

@media (min-width: 530px) and (max-width: 1030px) {
  #tabs {
    min-height: 475px; } }
@media (max-width: 530px) {
  #tabs {
    min-height: 825px; } }

@media (max-width: 530px) {
  .product-list {
    padding: 0; } }
@media (max-width: 530px) {
  .product-list h4.product-cat {
    border-radius: 0;
    background-position: -550px center;
    padding-left: 20px; } }
  @media (max-width: 530px) and (max-width: 530px) {
    .product-list h4.product-cat:before {
      background-image: none !important; } }

@media (max-width: 530px) {
  .product-list .pt-row .col_1_11 {
    display: none; } }
@media (min-width: 530px) and (max-width: 1030px) {
  .product-list .pt-row .col_1_11 {
    display: none; } }
@media (min-width: 530px) and (max-width: 1030px) {
  .product-list .pt-row .col_1_11:nth-of-type(-n+6) {
    display: block;
    width: 16% !important; } }
@media (max-width: 530px) {
  .product-list .pt-row .col_1_11:nth-of-type(-n+3) {
    display: block;
    font-size: 18px;
    width: 33% !important;
    font-weight: 300; }
  .product-list .pt-row .col_1_3:nth-of-type(-n+3) {
    display: block;
    width: 33% !important;
    font-weight: 300; }
	}
@media (max-width: 530px) {
  .product-list .accordion-container .accordion-content img.table-thumb {
    margin: 15px 0 0 10px !important; } }
@media (max-width: 530px) {
  .product-list .page-meta, .product-list .back-link {
    width: 90%;
    display: block;
    float: none;
    margin: 0 auto; } }

@media (max-width: 530px) {
  #advanced-search .adv-search-row {
    float: none;
    width: 90%;
    margin: 20px auto; } }
@media (max-width: 530px) {
  #advanced-search .col_2_12 {
    width: 31.6%;
    margin-bottom: 20px; } }
@media (max-width: 530px) {
  #advanced-search .col_2_9 {
    width: 22%;
	} }
@media (max-width: 530px) {
  #advanced-search .red-btn {
    display: block;
    margin: 20px auto;
    width: 100%;
    font-size: 22px; } }

@media (max-width: 530px) {
  .base-content {
    width: 90%; } }

@media (max-width: 530px) {
  .single-drop .custom-select {
    width: 330px !important; } }

@media (max-width: 530px) {
  #form-or {
    float: none; } }

/*# sourceMappingURL=style.css.map */
.product-list .product-table.twelvecol div.pt-row .col_1_11 {
	padding-bottom: 15px;
	font-size: 11px;
	max-height: 16px;
}

.accordion-container .accordion-content img {
	max-height: 35px;
}

.product-list .product-table div.pt-row .col_1_11 a {
	line-height: 16px !important;
	display: inline-block;
}


.product-list .product-table div.pt-row .col_1_11 {
    width: 9%;
    padding: 0;
    text-align: left;
    float: left;
    line-height: 12px;
    padding-top: 22px;
    padding-bottom: 15px;
    font-size: 11px;
    max-height: 16px;
}
#tabs .tab-head {
    background: #d2d2d2;
    text-align: center;
    width: 33.33%;
    color: #8c8c8c;
    margin: 0;
    padding: 15px 0;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    float: left;
}
#tabs .tab-head a{
    background: #d2d2d2;
    color: #8c8c8c;
	text-decoration: none;
}
div:empty {
   display: none;
}
.adv-search.red-btn {
    color: white;
    background: #dc291e;
    border: none;
    border-radius: 4px;
    padding: 11px 25px;
    font: 14px "Open Sans", sans-serif;
    display: inline-block;
    margin-right: 15px;
}
@media (max-width: 530px){
.data-hero p {
    width: 100% !important;
}
.product-list .accordion-container .accordion-content img.table-thumb {
    margin: 0px 0 0 0px !important;
}
#tabs .form-tab {
    top: 52px;
}
