@charset "UTF-8";
@font-face {
  font-family: 'MuseoSans_500';
  src: url('/dist/fonts/museo_sans/museosans_500_macroman/MuseoSans_500-webfont.woff2') format('woff2'),
       url('/dist/fonts/museo_sans/museosans_500_macroman/MuseoSans_500-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'MuseoSans_700';
  src: url('/dist/fonts/museo_sans/museosans_700_macroman/MuseoSans_700-webfont.woff2') format('woff2'),
       url('/dist/fonts/museo_sans/museosans_700_macroman/MuseoSans_700-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

/* Breakpoints */
/* Responsive media query Mixin */
body {
  font-family: 'MuseoSans_500', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

a {
  color: #e0251b;
  transition: color 0.3s; /* Smooth transition for hover effect */
}

a:hover {
  color: #e0251ba1;
}

.interior,
#homepage {
  padding-top: 0px;
}

@media (min-width: 768px) {
  
  .interior,
  #homepage {
    padding-top: 119px;
  }
}

@media (min-width: 992px) {

  .interior,
  #homepage {
    padding-top: 180px;
  }
}

.button {
  display: inline-block;
  padding: 10px 35px;
  color: #ffffff;
  font-family: 'MuseoSans_500';
  font-weight: 700;
  font-size: 18px;
}

.button:visited,
.button:focus {
  color: #ffffff;
  text-decoration: none;
}

.button:hover {
  color: #e4e4e4;
  text-decoration: none;
}

.button.gold {
  background: #e0251b;
}

.button.gold:hover {
  background-color: #e0251ba1;
}

/*Button was actually once blue. Changed to gold but keeps the name so as to keep code simple (??)*/
.button.blue {
  background: #53555a;
}

.button.blue:hover {
  background-color: #6E7075;
}

.button.small {
  font-size: 14px;
  padding: 5px 25px;
}

.button.pdf {
  background-image: url(/img/pdf_white.png);
  background-position: right center;
  background-size: 40px;
  background-repeat: no-repeat;
  padding-right: 50px;
}

.button.pdf.blue {
  border-right: 15px solid #e0251b;
}

.button.pdf.blue:hover {
  border-right: 15px solid #e0251ba1;
}

.button.pdf.gold {
  border-right: 15px solid #53555a;
}

.button.pdf.gold:hover {
  border-right: 15px solid #6E7075;
}

.cda-search-wrap {
  display: none;
  margin-bottom: 30px;
  padding: 19px 17px 0px 15px;
  border: 1px solid #474037;
}

.cda-search-wrap h3 {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 10px;
  font-weight: bold;
}

.cda-search-wrap .key-alloys {
  background: #dcc7ab;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cda-search-wrap .key-alloys a {
  font-weight: 800;
}

.cda-search-wrap .key-alloys a:hover {
  background: #53555a;
}

.cda-search-wrap .row .col-sm-3 {
  border-right: none;
}

@media (min-width: 768px) {
  .cda-search-wrap .row .col-sm-3 {
    border-right: 1px solid #474037;
  }
}

.cda-search-wrap .row .col-sm-3:nth-child(4) {
  border: none;
}

.cda-search-wrap.active {
  display: block;
}

.cda-search-wrap a {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #474037;
  padding-left: 15px;
  line-height: 30px;
}

.cda-search-wrap a:hover {
  text-decoration: none;
  background: #ececeb;
}

.cda-search-wrap .key {
  margin-top: 15px;
  border-top: 1px solid #474037;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .cda-search-wrap .key {
    text-align: center;
  }
}

.cda-search-wrap .key a {
  vertical-align: middle;
  padding: 0px 12px;
}

@media (min-width: 768px) {
  .cda-search-wrap .key a {
    display: inline-block;
  }
}

#header {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  background: #fff;
}

@media (min-width: 768px) {
  #header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
  }
}

#header #subnav {
  background: #53555a;
  clear: both;
  display: none;
  width: 100%;
}

@media (min-width: 768px) {
  #header #subnav {
    display: block;
  }
}

#header #subnav ul {
  margin: auto;
  width: 94%;
}

#header #subnav ul li {
  display: block;
  float: left;
}

@media (min-width: 768px) {
  #header #subnav .row {
    margin-left: 0;
    margin-right: 0;
  }

  #header #subnav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
  }

  #header #subnav ul.clearfix:before,
  #header #subnav ul.clearfix:after {
    display: none;
  }

  #header #subnav ul li {
    float: none;
    flex: 0 0 auto;
  }
}

#header #subnav ul li a {
  padding: 8px 8px;
  color: #fff;
  display: block;
  font-family: 'MuseoSans_500';
  font-weight: 700;
  font-size: 11px;
}

@media (min-width: 992px) {
  #header #subnav ul li a {
    padding: 8px 10px;
    font-size: 12px;
  }
}

#header #subnav ul li a.contact {
  background: #e0251b;
}

#header #subnav ul li a.contact:hover,
#header #subnav ul li a.contact.active {
  background: #C21E17;
}

#header #subnav ul li a:hover,
#header #subnav ul li a.active {
  background: #6E7075;
  text-decoration: none;
}

#header #subnav ul li #site-search {
  padding: 0px 0px 0px 8px;
}

@media (min-width: 992px) {
  #header #subnav ul li #site-search {
    padding: 0px 0px 0px 15px;
  }
}

#header #subnav ul li #site-search form {
  margin: 0;
  padding-top: 5px;
}

#header #subnav ul li #site-search img {
  display: inline-block;
  padding-top: 3px;
  margin-right: 3px;
  cursor: pointer;
  vertical-align: top;
}

@media (min-width: 992px) {
  #header #subnav ul li #site-search img {
    padding-top: 5px;
    margin-right: 5px;
  }
}

#header #subnav ul li #site-search input {
  display: none;
  padding-left: 5px;
  padding-right: 5px;
  margin: 0px;
  box-sizing: border-box;
  width: 110px;
  border: none;
  font-size: 15px;
}

@media (min-width: 992px) {
  #header #subnav ul li #site-search input {
    width: 160px;
    font-size: 17px;
  }
}

#header #subnav ul li #site-search input.active {
  vertical-align: top;
  display: inline-block;
}

#header #mainnav {
  clear: both;
  padding-top: 12px;
  padding-bottom: 14px;
}

#header #mainnav .left {
  text-align: center;
}

@media (min-width: 768px) {
  #header #mainnav .left {
    padding-top: 6px;
  }
}

@media (min-width: 991px) {
  #header #mainnav .left {
    text-align: left;
  }
}

@media (min-width: 768px) {
  #header #mainnav .left.col-sm-3 {
    float: left !important;
    width: 100% !important;
  }
}

@media (min-width: 991px) {
  #header #mainnav .left.col-sm-3 {
    float: left !important;
    width: 338px !important;
  }
}

#header #mainnav .left .nav-toggle {
  float: left;
  font-size: 16px;
  font-weight: bold;
  font-family: 'MuseoSans_500';
  color: #53555a;
  padding: 2px 8px;
  border-top: 3px solid #53555a;
  border-bottom: 3px solid #53555a;
  margin-left: 10px;
  margin-top: 3px;
}

#header #mainnav .left .nav-toggle:hover {
  text-decoration: none;
}

@media (min-width: 991px) {
  #header #mainnav .left .nav-toggle {
    display: none;
  }
}

#header #mainnav .left .nav-search {
  float: right;
  padding: 5px 0px 0px 32px;
  margin-right: 10px;
  margin-top: 5px;
}

@media (min-width: 991px) {
  #header #mainnav .left .nav-search {
    display: none;
  }
}

#header #mainnav .left .logo-main img {
  height: 60px;
}

@media (min-width: 991px) {
  #header #mainnav .left .logo-main img {
    height: 50px;
  }
}

@media (min-width: 992px) {
  #header #mainnav .left .logo-main img {
    height: 60px;
  }
}

@media (max-width: 991px) {
  #header #mainnav .right {
    display: none;
  }
}

#header #mainnav .right>ul {
  padding: 0px;
  margin: 0px;
}

#header #mainnav .right>ul>li {
  display: block;
  float: left;
  padding-bottom: 10px;
  padding: 0px 0px;
  position: relative;
} 

@media (min-width: 992px) {
  #header #mainnav .right>ul>li {
    padding: 0px 10px;
  }
}


#header #mainnav .right>ul>li>a {
  display: block;
  padding: 20px 10px 10px;
  color: #53555a;
  font-family: 'MuseoSans_700';
  font-weight: 700;
  font-size: 14px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  #header #mainnav .right>ul>li>a {
    padding: 35px 0px 0px;
    font-size: 14px;
  }
}

#header #mainnav .right>ul>li>a:hover,
#header #mainnav .right>ul>li>a.active {
  text-decoration: none;
  border-bottom: 4px solid #53555a;
  margin-bottom: -4px;
}

#header #mainnav .right>ul>li:hover .submenu {
  display: block;
}

#header #mainnav .right>ul>li .submenu {
  position: absolute;
  top: 100%;
  list-style: none;
  width: 349px;
  padding: 0px 15px;
  left: 50%;
  margin-left: -130px;
  display: none;
  max-height: 70vh;
  overflow-y: scroll;
}

#header #mainnav .right>ul>li .submenu li {
  display: block;
  float: none;
}

#header #mainnav .right>ul>li .submenu li a {
  display: block;
  padding: 6px 15px;
  background: #fff;
  color: #53555a;
  font-weight: 600;
}

#header #mainnav .right>ul>li .submenu li a:hover,
#header #mainnav .right>ul>li .submenu li a.active {
  background: #ececeb;
  text-decoration: none;
}

#header #mainnav .right>ul>li .submenu li:last-child a:hover,
#header #mainnav .right>ul>li .submenu li:last-child a.active {
  background: #fff;
  text-decoration: none;
}

#header #mainnav .right>ul>li .submenu li.hoverfix {
  background: transparent;
  height: 5px;
}

#footer #upper {
  background: #e0251b;
  padding: 5px 0px;
  text-align: center;
}

#footer #upper img {
  height: 31px;
  display: inline-block;
  vertical-align: middle;
}

#footer #upper ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

#footer #upper ul li {
  display: block;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  position: relative;
  font-family: 'MuseoSans_500';
  font-weight: 500;
  font-size: 16px;
}

@media (min-width: 768px) {
  #footer #upper ul li {
    display: inline-block;
    list-style: disc;
  }
}

#footer #upper ul li a {
  color: #fff;
}

#footer #upper ul li:after {
  content: '•';
  position: absolute;
  left: -5px;
  height: 2px;
  width: 2px;
  display: none;
}

@media (min-width: 768px) {
  #footer #upper ul li:after {
    display: inline;
  }
}

#footer #upper ul li:first-child:after {
  display: none;
}

#footer #lower {
  background: #53555a;
  text-align: center;
  padding: 20px 0px;
}

#footer #lower p {
  font-size: 10.5px;
  color: #fff;
  margin: auto;
}

#footer #lower ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  line-height: 12px;
  margin-bottom: 6px;
}

#footer #lower ul li {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  padding: 0px 5px;
}

#footer #lower ul li a {
  color: #fff;
  font-size: 10.5px;
}


#footer #lower #social a {
  padding: 5px;
}

#footer #lower #social a img {
  height: 36px;
}

#footer #lower .iso img {
  display: inline-block;
  vertical-align: middle;
  max-width: 18%;
}

#footer #lower .iso p {
  display: inline-block;
  vertical-align: middle;
  max-width: 46%;
}

#footer #lower .brands {
  padding-top: 7px;
}

#footer #lower .brands img {
  height: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  filter: grayscale(100%) brightness(0) invert(100%);
}

#footer #lower .brands img:last-child {
  margin-right: 0px;
}

#mobilenav {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 99;
  background: #fff;
}

#mobilenav .top {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 991px) {
  #mobilenav .top {
    text-align: left;
  }
}

#mobilenav .top .nav-exit {
  float: left;
  padding: 3px 3px 0px 0px;
  margin-left: 10px;
  margin-top: 0px;
}

@media (min-width: 991px) {
  #mobilenav .top .nav-exit {
    display: none;
  }
}

#mobilenav .top .nav-search {
  float: right;
  padding: 5px 0px 0px 16px;
  margin-right: 10px;
  margin-top: 5px;
}

@media (min-width: 991px) {
  #mobilenav .top .nav-search {
    display: none;
  }
}

#mobilenav .top .logo-main img {
  height: 60px;
}

@media (min-width: 991px) {
  #mobilenav .top .logo-main img {
    height: 80px;
  }
}

@media (min-width: 992px) {
  #mobilenav .top .logo-main img {
    height: 100px;
  }
}

#mobilenav .container.middle {
  padding: 0px;
}

#mobilenav .container.middle ul {
  padding: 0px;
  margin: 0px;
}

#mobilenav .container.middle ul li {
  display: block;
  border-top: 1px solid #fff;
}

#mobilenav .container.middle ul li a {
  color: #fff;
  background: #e0251b;
  display: block;
  margin: 0;
  padding: 9px 30px;
  font-family: 'MuseoSans_500';
  font-weight: 500;
  font-size: 27px;
}

#mobilenav .container.middle ul li a:hover {
  background: #173460;
  text-decoration: none;
}

#mobilenav .bottom ul {
  list-style: none;
  padding: 0px;
  margin: 15px 0px 0px;
}

#mobilenav .bottom ul li {
  float: left;
  width: 50%;
  margin-bottom: 15px;
}

#mobilenav .bottom ul li a {
  display: block;
  background: #fff;
  border: 2px solid #53555a;
  box-sizing: border-box;
  color: #53555a;
  text-align: center;
  font-family: 'MuseoSans_500';
  font-weight: 500;
  padding: 10px 0px;
}

#mobilenav .bottom ul li a:hover {
  color: #fff;
  text-decoration: none;
  background: #53555a;
}

#mobilenav .bottom ul li:nth-child(odd) {
  padding-right: 7px;
}

#mobilenav .bottom ul li:nth-child(even) {
  padding-left: 7px;
}

#mobilenav .bottom .contact {
  display: block;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  margin-bottom: 15px;
}

#mobilenav .bottom .callout-box {
  background-color: #474037;
  padding: 20px 15px;
  margin-bottom: 20px;
  text-align: center;
}

#mobilenav .bottom .callout-box h1 {
  font-size: 27px;
  font-weight: 800;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin: 0px 10px 0px 0px;
}

#mobilenav .bottom .callout-box:hover {
  background: #353029;
}

#mobilenav.active {
  display: block;
}

@media (min-width: 991px) {
  #mobilenav.active {
    display: none;
  }
}

#homepage .hero {
  background: url(/img/Concast_Home_Metal-Splash.jpg) no-repeat top left;
  background-size: cover;
  max-height: 880px;
  margin-bottom: 17px;
  overflow: hidden;
}

@media (min-width: 374px) {
  #homepage .hero {
    max-height: 857px;
  }
}

@media (min-width: 461px) {
  #homepage .hero {
    max-height: 720px;
  }
}

@media (min-width: 768px) {
  #homepage .hero {
    max-height: 580px;
  }
}

#homepage .hero .hero-content {
  max-width: 80%;
  margin-top: 65px;
  margin-left: 50px;
  padding-bottom: 18%;
}

#homepage .hero .hero-content h1 {
  color: #ffffff;
  margin: 0px 0px 10px 0px;
  padding: 0px;
  font-weight: 800;
  font-size: 33px;
}

@media (min-width: 400px) {
  #homepage .hero .hero-content h1 {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  #homepage .hero .hero-content h1 {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  #homepage .hero .hero-content h1 {
    font-size: 45px;
  }
}

@media (min-width: 1200px) {
  #homepage .hero .hero-content h1 {
    font-size: 55px;
  }
}

#homepage .hero .hero-content p {
  margin: 0px 0px 10px 0px;
  padding: 0px;
  color: #ffffff;
  font-size: 18px;
}

@media (min-width: 768px) {
  #homepage .hero .hero-content {
    max-width: 80%;
  }
}

@media (min-width: 992px) {
  #homepage .hero .hero-content {
    max-width: 60%;
  }
}

@media (min-width: 1200px) {
  #homepage .hero .hero-content {
    max-width: 50%;
  }
}

#homepage .announce {
  background: url(/img/wieland_announce_bg_2.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
  margin-top: 17px;
  margin-bottom: 17px;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 308px;
}



#homepage .announce .announce-content {
  display: flex;
  justify-content: right;
  flex-direction: column;
  margin-right: 30px;
}

#homepage .announce .announce-content h1 {
  margin: 30px 35px 0px auto;
  padding: 0px;
  color: #484C50;
  max-width: 252px;
  font-family: "MuseoSans_500";
}

#homepage .announce .announce-content h1 a {
  color: #E0251B;
  font-family: "MuseoSans_700";
}

#homepage .announce .announce-content img {
  display: block;
  margin-right: 30px;
  margin-left: auto;
  width: 50%;
}

@media (min-width: 400px) {
  #homepage .announce .announce-content h1 {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  #homepage .announce .announce-content h1 {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  #homepage .announce .announce-content h1 {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  #homepage .announce .announce-content h1 {
    font-size: 20px;
  }
}

@media (min-width: 400px) {
  #homepage .announce .announce-content img {
    width: 35%;
  }
}

@media (min-width: 768px) {
  #homepage .announce .announce-content img {
    width: 25%;
  }
}

@media (min-width: 992px) {
  #homepage .announce .announce-content img {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  #homepage .announce .announce-content img {
    font-size: 25px;
  }
}

@media (min-width: 400px) {
  #homepage .announce .announce-content {
    -webkit-filter: drop-shadow(-1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(-1px 1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.25));
    filter: drop-shadow(-1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(-1px 1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.25));
  }
}

@media (min-width: 768px) {
  #homepage .announce .announce-content {
    -webkit-filter: drop-shadow(-1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(-1px 1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.25));
    filter: drop-shadow(-1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px -1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(-1px 1px 1px rgba(255, 255, 255, 0.25)) drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.25));
  }
}

@media (min-width: 992px) {
  #homepage .announce .announce-content {
    max-width: 43%;
  }
}

@media (min-width: 1200px) {
  #homepage .announce .announce-content {
    max-width: 33%;
  }
}

#homepage .findproduct {
  background: #53555a;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  #homepage .findproduct {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

#homepage .findproduct h2 {
  display: block;
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 35px;
  margin: 0px 0px 8px 0px;
}

@media (min-width: 768px) {
  #homepage .findproduct h2 {
    display: inline-block;
    font-size: 40px;
    margin: 0px;
  }
}

@media (min-width: 992px) {
  #homepage .findproduct h2 {
    font-size: 54px;
  }
}

@media (min-width: 1200px) {
  #homepage .findproduct h2 {
    font-size: 57px;
  }
}

#homepage .findproduct .button.gold {
  margin-left: 30px;
  margin-top: 10px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  height: 45px;
}

@media (min-width: 768px) {
  #homepage .findproduct .button.gold {
    font-size: 16px;
    margin-left: 30px;
  }
}

@media (min-width: 992px) {
  #homepage .findproduct .button.gold {
    font-size: 18px;
  }
}

#homepage .findproduct .button.blue {
  margin-left: 0px;
  margin-top: 11px;
  padding-top: 6px;
  width: 216px;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  height: 45px;
}

@media (min-width: 481px) {
  #homepage .findproduct .button.blue {
    margin-top: 10px;
    margin-left: 5px;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  #homepage .findproduct .button.blue {
    font-size: 12px;
    margin-left: 354px;
    width: 237px;
  }
}

@media (min-width: 992px) {
  #homepage .findproduct .button.blue {
    font-size: 14px;
    margin-left: 394px;
    padding-top: 4px;
    width: 257px;
  }
}

@media (min-width: 1200px) {
  #homepage .findproduct .button.blue {
    margin-left: 15px;
  }
}

/*
Temporary styles for the old homepage, these should be deleted when
the design in concast_homepage_11 is moved to the main index.php page
 */
#homepage .findproduct h2 {
  padding-left: 12px;
}

#homepage .findproduct {
  text-align: left;
}


#homepage .key-alloys .alloy-info-home a {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 15px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
}

#homepage .key-alloys .alloy-info-home a:hover {
  text-decoration: none;
  background: #fff;
  color: #474037;
  text-align: left;
}

#homepage .key-alloys .alloy-info-home p {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding-left: 15px;
  text-align: left;
}

#homepage .key-alloys .alloy-info-home {
  display: block;
  padding: 15px;
}

#homepage .home-info-container .col-sm-6 {
  padding: 0;
}

#homepage .col-sm-6 video {
  object-fit: cover;
  width: 100%;
  height: 341px;
}

@media (max-width: 1199px) {
  #homepage .home-video-container {
    width: 100%;
  }

  #homepage .col-sm-6 video {
    height: 100%;
  }

  #homepage .home-info-container .col-sm-12 .col-sm-6 {
    width: 100%;
  }
}


/*End temporary styles*/

#homepage .home-panel {
  background: #53555a;
  margin-bottom: 30px;
}

#homepage .home-panel .panel-image {
  position: relative;
  width: 100%;
  height: 275px;
  background: black;
}

#homepage .home-panel#panel1 .panel-image {
  background: url(/img/Feature-4.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#homepage .home-panel#panel2 .panel-image {
  background: url(/img/Feature-3.jpg) no-repeat top;
  background-size: cover;
}

#homepage .home-panel#panel3 .panel-image {
  background: url(/img/site-see-feature-image.jpg) no-repeat top left;
  background-size: cover;
}

#homepage .home-panel#panel4 .panel-image {
  background: url(/img/Feature-2.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#homepage .home-panel#panel5 .panel-image {
  background: url(/img/Feature-1.jpg) no-repeat top;
  background-size: cover;
}

#homepage .home-panel#panel6 .panel-image {
  background: url(/img/Feature-8.jpg) no-repeat top left;
  background-size: cover;
}

#homepage .home-panel#panel7 .panel-image {
  background: url(/img/Feature-6.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#homepage .home-panel#panel8 .panel-image {
  background: url(/img/Feature-5.jpg) no-repeat top;
  background-size: cover;
}

#homepage .home-panel#panel9 .panel-image {
  background: url(/img/Feature-7.jpg) no-repeat top left;
  background-size: cover;
}

#homepage .home-panel#panel10 .panel-image {
  background: url(/img/Feature-9.jpg) no-repeat top left;
  background-size: cover;
}

#homepage .home-panel .panel-text {
  padding: 10px 10% 10px 12px;
}

#homepage .home-panel h3 {
  font-size: 23px;
  color: #ffffff;
  margin: 0px 0px 5px 0px;
  font-weight: 700;
}

#homepage .home-panel p {
  font-size: 11px;
  color: #ffffff;
  margin: 0px 0px 8px 0px;
  font-weight: 600;
}

.interior .cda-search-wrap {
  margin-top: -20px;
  margin-left: 15px
}

.interior .superscript {
  font-size: 8px;
  vertical-align: top;
}

.interior .form-wrapper .checks {
  margin-bottom: 15px;
}

.interior .form-wrapper label {
  display: block;
}

.interior .form-wrapper label.checkbox {
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.interior .form-wrapper input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 5px 0px 0px;
}

.interior .form-wrapper input[type=submit] {
  border: none;
}

.interior .form-wrapper input[type=text] {
  height: 30px;
  line-height: 30px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.interior .form-wrapper input[type=email] {
  height: 30px;
  line-height: 30px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}


.interior .form-wrapper input[type=text].code {
  width: 175px;
  margin-top: 5px;
}

.interior .form-wrapper textarea {
  display: block;
  width: 100%;
  min-height: 100px;
  margin-bottom: 15px;
}

.interior .content h1 {
  font-weight: 800;
  color: #53555a;
  font-size: 24px;
  margin-top: 0px;
}

.interior .content h1 span {
  font-weight: normal;
  font-size: 18px;
}

.interior .content h1.underline {
  border-bottom: 3px solid #53555a;
}

.interior .content h2 {
  font-weight: 800;
  font-size: 18px;
  margin-top: 0px;
}

.interior .content h2 a {
  color: #e0251b;
}

.interior .content h4 {
  font-weight: normal;
  font-size: 16px;
}

.interior .content h5 {
  font-weight: bold;
  font-size: 20px;
  text-decoration: underline;
}

.interior .content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #474037;
}

.interior .content p.note {
  font-size: 14px;
  font-style: italic;
}

.interior .content p a {
  color: #e0251b;
  font-weight: bold;
}

.interior .content .button {
  margin-bottom: 30px;
  margin-right: 15px;
}

.interior .content section {
  padding: 17px 0px;
}

.interior .content section:first-child {
  padding-top: 35px;
}

.interior .content section:last-child {
  padding-bottom: 35px;
}

.interior .content .sidebar img {
  width: 130%;
}

.interior .content .pdf-box {
  background: #ececeb;
  max-width: 100%;
  text-align: center;
  width: 170px;
  max-width: 100%;
  padding-bottom: 10px;
}

.interior .content .pdf-box h5 {
  background-color: #53555a;
  padding: 5px;
  margin: 0px 0px 10px;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}

.interior .content .pdf-box a {
  color: #e0251b;
  font-size: 16px;
  display: block;
  font-family: 'MuseoSans_500';
  font-weight: normal;
  margin-bottom: 5px;
}

.interior .content ul li {
  color: #53555a;
  font-size: 20px;
}

.interior .content ul li p {
  color: #000;
  font-size: 18px;
  margin: 0;
}

.interior .content ul li p a {
  color: #e0251b;
  font-weight: bold;
}

.interior .content.product p span {
  font-weight: bold;
  color: #474037;
}

.interior .content.product th,
.interior .content.product td {
  border: 1px solid #ececeb;
}

.table-responsive {
  overflow-x: hidden;
}

.interior .content.product table {
  width: 100%;
  border-collapse: collapse;
}

.interior .content.product table thead {
  background: #474037;
  color: #fff;
}

.interior .content.product table tfoot {
  border: none;
  background: #fff;
}

.interior .content.product table tfoot td,
.interior .content.product table tfoot tr {
  background: #fff !important;
  border: none !important;
}

.interior .content.product table tfoot .note {
  font-size: 13px;
  font-style: italic;
}

.interior .content.product table th {
  vertical-align: top;
  padding: 3px 5px 2px;
  width: 10%;
}

.interior .content.product table th .i0 {
  width: 10%;
}

.interior .content.product table th .i1 {
  width: 10%;
}

.interior .content.product table th .i2 {
  width: 12%;
}

.interior .content.product table th .i3 {
  width: 7%;
}

.interior .content.product table th .i4 {
  width: 7%;
}

.interior .content.product table th .i5 {
  width: 12%;
}

.interior .content.product table th .i6 {
  width: 8%;
}

.interior .content.product table th .i7 {
  width: 13%;
}

.interior .content.product table th .d {
  width: 14%;
}

.interior .content.product table td {
  padding: 5px;
  vertical-align: top;
  text-align: left;
}

.interior .content.product table tr td:nth-child(odd) {
  background: #ececeb;
}

.table-12-col th {
  width: 8.333% !important;
}

.interior .content.alloy-search-page p span {
  font-weight: bold;
  color: #474037;
  text-transform: uppercase;
}

.interior .content.alloy-search-page th,
.interior .content.alloy-search-page td {
  border: 1px solid #ececeb;
}

.interior .content.alloy-search-page table {
  width: 100%;
  border-collapse: collapse;
}

.interior .content.alloy-search-page table thead {
  background: #474037;
  color: #fff;
}

.interior .content.alloy-search-page table tfoot {
  border: none;
  background: #fff;
}

.interior .content.alloy-search-page table tfoot td,
.interior .content.alloy-search-page table tfoot tr {
  background: #fff !important;
  border: none !important;
}

.interior .content.alloy-search-page table tfoot .note {
  font-size: 14px;
  font-style: italic;
}

.interior .content.alloy-search-page table th {
  padding: 3px 5px 2px;
  width: 10%;
}

.interior .content.alloy-search-page table th .i0 {
  width: 10%;
}

.interior .content.alloy-search-page table th .i1 {
  width: 10%;
}

.interior .content.alloy-search-page table th .i2 {
  width: 12%;
}

.interior .content.alloy-search-page table th .i3 {
  width: 7%;
}

.interior .content.alloy-search-page table th .i4 {
  width: 7%;
}

.interior .content.alloy-search-page table th .i5 {
  width: 12%;
}

.interior .content.alloy-search-page table th .i6 {
  width: 8%;
}

.interior .content.alloy-search-page table th .i7 {
  width: 13%;
}

.interior .content.alloy-search-page table th .d {
  width: 14%;
}

.interior .content.alloy-search-page table td {
  padding: 5px;
  vertical-align: top;
  text-align: left;
}

.interior .content.alloy-search-page table tr.hard {
  border-bottom: 2px solid #474037;
}

.interior .content.alloy-search-page table tr td:nth-child(odd) {
  background: #ececeb;
}

.interior .hero {
  /* hero default image */
  background-image: url("/img/hero_cast_products.jpg");
  background-color: #000;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 40px 30px;
  margin-bottom: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .interior .hero {
    padding: 50px 30px;
  }
}

@media (min-width: 992px) {
  .interior .hero {
    padding: 65px 30px;
  }
}

@media (min-width: 1200px) {
  .interior .hero {
    padding: 85px 30px;
  }
}

@media (min-width: 1200px) {

  /*small margin-left fix for squaring line card headers/tables*/
  .interior .hero.hero-margin {
    padding: 85px 30px;
    margin-left: -15px !important;
  }
}

.interior .hero h1 {
  font-size: 40px;
  padding: 0px;
  margin: 0px;
  color: #fff;
  font-weight: 800;
  position: relative;
  z-index: 3;
}

@media (min-width: 480px) {
  .interior .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .interior .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 992px) {
  .interior .hero h1 {
    font-size: 56px;
  }
}

.interior .gray-block {
  background: #ececeb;
  padding: 30px 30px;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .interior .gray-block {
    padding: 60px 65px;
  }
}

.interior .gray-block p {
  font-size: 18px;
  margin: 0;
  color: #474037;
}

.interior .gray-block p a {
  font-size: 18px;
  display: inline;
  font-weight: bold;
}

.interior .gray-block .right {
  padding: 30px 15px 0px;
}

@media (min-width: 768px) {
  .interior .gray-block .right {
    padding: 0px 30px;
  }
}

@media (min-width: 992px) {
  .interior .gray-block .right {
    padding: 0px 38px;
  }
}

@media (min-width: 1200px) {
  .interior .gray-block .right {
    padding: 0px 80px;
  }
}

.interior .gray-block .right a {
  font-weight: bold;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  line-height: 25px;
}

@media (min-width: 992px) {
  .interior .gray-block .right a {
    font-size: 24px;
  }
}

.interior .gray-block .right a img {
  float: left;
  margin-right: 10px;
  width: 45px;
}

.interior .gray-block .right a:after {
  display: block;
  content: "";
  clear: both;
}

.interior .callout-column {
  padding-bottom: 20px;
}

.interior .button-block {
  background: #53555a;
  text-align: center;
  padding: 18px;
  margin-bottom: 20px;
  height: 72px;
}

.interior .button-block.extra-text h3 {
  max-width: 100%;
  margin-right: 0px;
}

@media (min-width: 992px) {
  .interior .button-block.extra-text h3 {
    margin-right: 40px;
    max-width: 65%;
  }
}

.interior .button-block h3 {
  font-size: 18px;
  padding: 0px;
  margin: 0px 0px 10px 0px;
  color: #fff;
  font-weight: 700;
  max-width: 100%;
  display: block;
  text-align: center;
}

@media (min-width: 768px) {
  .interior .button-block h3 {
    margin: 0px 0px 10px;
  }
}

@media (min-width: 992px) {
  .interior .button-block h3 {
    display: inline-block;
    text-align: left;
    max-width: 68%;
    font-size: 18px;
    margin: 0px 10px 0px 0px;
  }
}

@media (min-width: 1200px) {
  .interior .button-block h3 {
    display: inline-block;
    text-align: left;
    max-width: 68%;
    font-size: 18px;
    vertical-align: middle;
  }
}

.interior .button-block .button {
  display: inline-block;
  vertical-align: middle;
}


@media (min-width: 992px) {
  .interior .button-block .button {
    padding: 5px 11px;
  }
}

@media (min-width: 1200px) {
  .interior .button-block .button {
    padding: 5px 25px;
  }
}

.interior .button-block img {
  display: inline-block;
  vertical-align: middle;
  max-height: 44px;
}

@media (min-width: 768px) {
  .interior .button-block img {
    max-height: 30px;
  }
}

@media (min-width: 992px) {
  .interior .button-block img {
    max-height: 39px;
  }
}

@media (min-width: 1200px) {
  .interior .button-block img {
    max-height: 38px;
  }
}

.interior .search-drop {
  display: none;
  background: #53555a;
  padding-top: 15px;
  padding-bottom: 15px;
}

.interior .search-drop ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.interior .search-drop ul li a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'MuseoSans_500';
  line-height: 30px;
}

.interior .search-drop ul li a:hover {
  background: #6E7075;
  text-decoration: none;
}

.interior .search-drop.active {
  display: block;
}

.interior .stocked-drop {
  display: none;
  background: #6E7075;
  padding-top: 15px;
  padding-bottom: 15px;
}

.interior .stocked-drop ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.interior .stocked-drop ul li a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'MuseoSans_500';
  line-height: 30px;
}

.interior .stocked-drop ul li a:hover {
  background: #e0251b;
  text-decoration: none;
}

.interior .stocked-drop.active {
  display: block;
}

.interior .callout-box {
  background-color: #53555a;
  padding: 20px 15px;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .interior .callout-box {
    padding: 20px 15px;
  }
}

@media (min-width: 992px) {
  .interior .callout-box {
    padding: 25px 25px;
  }
}

@media (min-width: 1200px) {
  .interior .callout-box {
    padding: 25px 30px;
  }
}

.interior .callout-box h1 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin: 0px 20px 0px 0px;
}

@media (min-width: 768px) {
  .interior .callout-box h1 {
    font-size: 24px;
    margin: 0px 10px 0px 0px;
  }
}

@media (min-width: 992px) {
  .interior .callout-box h1 {
    font-size: 30px;
    margin: 0px 20px 0px 0px;
  }
}

@media (min-width: 1200px) {
  .interior .callout-box h1 {
    font-size: 36px;
  }
}

.interior .callout-box img {
  display: inline-block;
  vertical-align: middle;
  height: 27px;
}

@media (min-width: 768px) {
  .interior .callout-box img {
    height: 27px;
  }
}

@media (min-width: 992px) {
  .interior .callout-box img {
    height: 33px;
  }
}

@media (min-width: 1200px) {
  .interior .callout-box img {
    height: auto;
  }
}

.interior .callout-box .button {
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .interior .callout-box .button {
    padding: 5px 8px;
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .interior .callout-box .button {
    padding: 5px 15px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .interior .callout-box .button {
    padding: 5px 25px;
  }
}

.interior .resource {
  background-color: #e0251b;
  display: inline-block;
  padding: 5px 20px;
}

.interior .resource h1 {
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.interior .resource img {
  display: inline-block;
  vertical-align: middle;
}

.interior#anodes .hero {
  background-image: url("/img/hero_anodes.jpg");
}

.interior#bronze-plate .hero {
  background-image: url("/img/hero_bronze_plate.jpg");
}

.interior#cast-products .hero {
  background-image: url("/img/hero_cast_products.jpg");
}

.interior#alloys-green-alloys .hero {
  background-image: url('/img/hero_green_alloy.jpg');
}

.interior#alloys-leaded-tin-bronze .hero {
  background-image: url("/img/hero_leaded_tin_bronze.jpg");
}

.interior#alloys-high-tin-bronze .hero {
  background-image: url("/img/hero_leaded_tin_bronze.jpg");
}

.interior#alloys-high-leaded-tin-bronze .hero {
  background-image: url("/img/hero_leaded_tin_bronze.jpg");
}

.interior#alloys-aluminum-bronze .hero {
  background-image: url("/img/hero_aluminum_bronze.jpg");
}

.interior#alloys-leaded-red-brass .hero {
  background-image: url("/img/hero_leaded_red_brass.jpg");
}

.interior#alloys-manganese-bronze .hero {
  background-image: url("/img/hero_manganese_bronze.jpg");
}

.interior#contact-form {
  padding-bottom: 115px;
}

.interior#contact-form .hero {
  background-image: url("/img/hero_contact_form.jpg");
}

.interior#request .hero {
  background-image: url("/img/hero_request.jpg");
}

.interior#directions .hero {
  background-image: url("/img/hero_directions.jpg");
}

.interior#directions iframe {
  width: 100%;
}

.interior#directions .view-larger {
  margin-bottom: 15px;
  display: block;
}

.interior#custom-products .hero {
  background-image: url("/img/hero_custom_products.jpg");
}

/*.interior#inventory .hero {
  background-image: url("/img/hero_inventory2.jpg"); }*/

.interior#markets .hero {
  background-image: url("/img/hero_markets.jpg");
}

.interior#markets #market-carousel {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.interior#markets #market-carousel .carousel-inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.interior#markets #market-carousel .carousel-inner .item {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.interior#markets #market-carousel .carousel-inner #item1 {
  background-image: url("/img/hero_markets.jpg");
}

.interior#markets #market-carousel .carousel-inner #item2 {
  background-image: url("/img/hero_applications.jpg");
}

.interior#markets #market-carousel .carousel-inner #item3 {
  background-image: url("/img/hero_transportation.jpg");
}

.interior#markets #market-carousel .carousel-inner #item4 {
  background-image: url("/img/hero_military.jpg");
}

.interior#markets #market-carousel .carousel-inner #item5 {
  background-image: url("/img/hero_water.jpg");
}

.interior#markets #market-carousel .carousel-inner #item6 {
  background-image: url("/img/hero_special.jpg");
}

.interior#markets #market-carousel .carousel-inner #item7 {
  background-image: url("/img/hero_industrial.jpg");
}

.interior#markets #market-carousel .carousel-inner #item8 {
  background-image: url("/img/hero_hydraulics.jpg");
}

.interior#markets #market-carousel .carousel-inner #item9 {
  background-image: url("/img/hero_oil_gas.jpg");
}

.interior#markets #market-carousel .carousel-inner #item10 {
  background-image: url("/img/hero_aerospace.jpg");
}

.interior#inventory #inventory-carousel {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.interior#inventory #inventory-carousel .carousel-inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.interior#inventory #inventory-carousel .carousel-inner .item {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.interior#inventory #inventory-carousel .carousel-inner #item1 {
  background-image: url("/img/hero_inventory1.jpg");
}

.interior#inventory #inventory-carousel .carousel-inner #item2 {
  background-image: url("/img/hero_inventory2.jpg");
}

.interior#inventory #inventory-carousel .carousel-inner #item3 {
  background-image: url("/img/hero_inventory3.jpg");
}


.interior#applications-aerospace .hero {
  background-image: url("/img/hero_aerospace.jpg");
}

.interior#applications-energy .hero {
  background-image: url("/img/hero_energy.jpg");
}

.interior#applications-oil_gas .hero {
  background-image: url("/img/hero_oil_gas.jpg");
}

.interior#applications-power_transmission_control .hero {
  background-image: url("/img/hero_markets.jpg");
}

.interior#applications-hydraulics .hero {
  background-image: url("/img/hero_hydraulics.jpg");
}

.interior#applications-apps .hero {
  background-image: url("/img/hero_applications.jpg");
}

.interior#applications-industrial .hero {
  background-image: url("/img/hero_industrial.jpg");
}

.interior#applications-military .hero {
  background-image: url("/img/hero_military.jpg");
}

.interior#applications-plumbing .hero {
  background-image: url("/img/hero_plumbing.jpg");
}

.interior#applications-transportation .hero {
  background-image: url("/img/hero_transportation.jpg");
}

.interior#applications-water .hero {
  background-image: url("/img/hero_water.jpg");
}

.interior#production .hero {
  background-image: url("/img/hero_production.jpg");
}

.interior#quality .hero {
  background-image: url("/img/hero_quality.jpg");
}

.interior#certifications .hero {
  background-image: url("/img/hero_certifications.jpg");
}

.interior#line-card .hero {
  background-image: url("/img/hero_line-card.jpg");
}

.interior#terms .hero {
  background-image: url("/img/hero_terms2.jpg");
}

.interior#tolerances .hero {
  background-image: url("/img/hero_tolerances.jpg");
}

.interior#resources {
  padding-bottom: 20px;
}

.interior#resources .hero {
  background-image: url("/img/hero_resources.jpg");
}

.interior#reference-guide {
  padding-bottom: 50px;
}

.interior#reference-guide .hero {
  background-image: url("/img/hero_resources.jpg");
}


.interior#video .hero {
  background-image: url("/img/hero_videos.jpg");
}

.interior#video .video-wrapper {
  margin-top: 15px;
}

.interior#video .video {
  padding: 5px 0px;
}

.interior#video .video img {
  margin-right: 7px;
  float: left;
}

.interior#video .video::after {
  content: "";
  display: block;
  clear: both;
}

.interior#video iframe {
  width: 80%;
}

.interior#wrought-products .hero {
  background-image: url("/img/hero_wrought.jpg");
}

.interior#lead-free .hero {
  background-image: url("/img/GreenAlloysLogo_2.png"), url("/img/hero_green_alloy_no_text.jpg");
  background-size: 231px 46px, cover;
  background-position: left 15% bottom 25%, top;
}

@media (min-width: 768px) {
  .interior#lead-free .hero {
    background-size: 264px 52px, cover;
  }
}

@media (min-width: 992px) {
  .interior#lead-free .hero {
    background-size: 297px 59px, cover;
  }
}

@media (min-width: 1200px) {
  .interior#lead-free .hero {
    background-size: 363px 65px, cover;
  }
}

.interior#alloys-green-alloys .hero {
  background-image: url("/img/GreenAlloysLogo_2.png"), url("/img/hero_green_alloy_no_text.jpg");
  background-size: 231px 46px, cover;
  background-position: left 15% bottom 25%, top;
}

@media (min-width: 768px) {
  .interior#alloys-green-alloys .hero {
    background-size: 264px 52px, cover;
  }
}

@media (min-width: 992px) {
  .interior#alloys-green-alloys .hero {
    background-size: 297px 59px, cover;
  }
}

@media (min-width: 1200px) {
  .interior#alloys-green-alloys .hero {
    background-size: 363px 65px, cover;
  }
}


.interior#lead-free .button.pdf {
  width: 250px;
}

.interior#contact .hero {
  background-image: url("/img/hero_contact.jpg");
}

.interior#contact .contact-socials {
  margin: 10px 0px 25px 0px;
}

.interior#contact .contact-socials a {
  padding: 0px 10px;
}

.interior#links .hero {
  background-image: url("/img/hero_links.jpg");
}

.interior#links img.right {
  float: right;
  margin: 0 0 12px 15px;
}

.interior#news .hero {
  background-image: url("/img/hero_news.jpg");
}

.interior#news img.right {
  float: right;
  margin: 0 0 12px 15px;
}

.interior#msds ul {
  list-style: none;
}

.interior#msds ul li {
  padding: 15px 0px;
}

.interior#downloads .hero {
  background-image: url("/img/hero_downloads.jpg");
}

.interior#downloads .content a {
  font-size: 20px;
  display: inline-block;
  padding-bottom: 10px;
}

.interior#downloads .content h2 {
  font-size: 24px;
}

.interior#site-search input[type=image] {
  box-sizing: content-box;
}

.interior#weight-calculator .hero {
  background-image: url("/img/hero_cast_products.jpg");
}

.interior#weight-calculator .validation-message {
  display: none;
  color: red;
}

.interior#weight-calculator .shape {
  text-align: center;
  padding-bottom: 15px;
}

.interior#weight-calculator .shape .button {
  margin: 15px 0px 0px 0px;
}

.interior#weight-calculator .shape .button.active {
  background: #78552e;
}

.interior#weight-calculator .shape p {
  margin: 0px 0px 10px 0px;
}

.interior#weight-calculator .shape img {
  display: block;
  margin: 0 auto;
}

.interior#weight-calculator h2 {
  margin-bottom: 15px;
}

.interior#weight-calculator label {
  min-width: 160px;
  padding-bottom: 10px;
}

.interior#weight-calculator table {
  width: 100%;
  border-collapse: collapse;
}

.interior#weight-calculator table thead {
  background: #453e36;
  color: #fff;
}

.interior#weight-calculator table thead th {
  width: 50%;
  border: 1px solid #ececeb;
  padding: 3px 5px 2px;
  font-size: 24px;
}

.interior#weight-calculator table tbody tr {
  background: #ececeb;
}

.interior#weight-calculator table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.interior#weight-calculator table tbody tr td {
  border: 1px solid #ececeb;
  padding: 5px;
  font-size: 20px;
  width: 50%;
}

.interior#product-c89835 .hero,
.interior#product-c89325 .hero,
.interior#product-c89831 .hero,
.interior#product-c89833 .hero,
.interior#product-c89844 .hero,
.interior#product-c90800 .hero,
.interior#product-c90810 .hero,
.interior#product-c90300 .hero,
.interior#product-c95400 .hero {
  background-image: url("/img/hero_lead_free1.jpg");
}

/*.interior#product-c51000 .hero, .interior#product-c54400 .hero, .interior#product-c63000 .hero, .interior#product-c64200 .hero, .interior#product-c46400 .hero, .interior#product-c67300 .hero, .interior#product-c31600 .hero, .interior#product-c52100 .hero, .interior#product-c53400 .hero, .interior#product-c65100 .hero {
  background-image: url("/img/hero_wrought.jpg"); }*/

.interior#product-c31400 .hero {
  background-image: url("/img/hero_wrought.jpg");
}

.interior#product-c31600 .hero {
  background-image: url("/img/hero_wrought.jpg");
}

.interior#product-c51000 .hero {
  background-image: url("/img/hero_500_series.jpg");
}

.interior#product-c52100 .hero {
  background-image: url("/img/hero_500_series.jpg");
}

.interior#product-c53400 .hero {
  background-image: url("/img/hero_500_series.jpg");
}

.interior#product-c54400 .hero {
  background-image: url("/img/hero_500_series.jpg");
}

.interior#product-c63000 .hero {
  background-image: url("/img/hero_c63000.jpg");
}

.interior#product-c64200 .hero {
  background-image: url("/img/hero_c64200.jpg");
}

.interior#product-c65100 .hero {
  background-image: url("/img/hero_wrought.jpg");
}

.interior#product-c67300 .hero {
  background-image: url("/img/hero_c67300.jpg");
}

.interior#product-c69300 .hero {
  background-image: url("/img/hero_c69300.jpg");
}

.interior#product-c72900 .hero {
  background-image: url("/img/hero_c72900.jpg");
}

#homepage .home-panel#panel2 .panel-image .text-overlay-bg {
  position: absolute;
  height: 34px;
  line-height: 34px;
  width: 272px;
  top: 75px;
  right: 0px;
  background-color: #114a97;
  color: #ffffff;
  text-align: center;
}

@media (min-width: 768px) {
  #homepage .home-panel#panel2 .panel-image .text-overlay-bg {
    width: 150px;
    height: 50px;
    word-wrap: default;
    line-height: 1em;
    padding-top: .6em;
  }
}

@media (min-width: 992px) {
  #homepage .home-panel#panel2 .panel-image .text-overlay-bg {
    height: 34px;
    line-height: 34px;
    width: 272px;
    top: 75px;
    right: 0px;
    background-color: #114a97;
    color: #ffffff;
    text-align: center;
    padding-top: 0px;
  }
}


/*small hacks for various visual exceptions around the site*/

#button-block-smallText {
  font-size: 0.9em;
}

@media (min-width: 768px) {
  #button-block-smallText h3 {
    font-size: 1.3em;
  }
}

@media (min-width: 992px) {
  #button-block-smallText h3 {
    font-size: 1.1em;
  }
}

@media (min-width: 1200px) {
  #button-block-smallText h3 {
    font-size: 1.4em;
  }
}

#callout-box-smallText h3 {
  font-size: 0.8em;
}

@media (min-width: 768px) {
  #callout-box-request {
    padding-bottom: 34px;
  }
}

@media (min-width: 992px) {
  #callout-box-request {
    padding-bottom: 33px;
  }
}

@media (min-width: 1200px) {
  #callout-box-request {
    padding-bottom: 32px;
  }
}

@media (min-width: 768px) {
  #callout-box-request h1 {
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  #callout-box-request h1 {
    padding-top: 15px;
  }
}

@media (min-width: 1200px) {
  #callout-box-request h1 {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  #homepage .findproduct h2 {
    margin-left: 0px;
  }
}

#homepage .hero .hero-content p:first-of-type {
  font-weight: bold;
  font-size: 1.5em;
}

.interior .gray-block .standard-mark {
  font-size: 18px;
  color: #e0251b;
  font-weight: bold;
  margin-bottom: 15px;
}

.google-maps {
  position: relative;
  padding-bottom: 50%;
  /* This is the aspect ratio */
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

#subhead {
  color: white;
  margin-left: 5px;
  margin-top: 0px;
  font-weight: 500;
}

.downloadLinks {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.interior .hero.aboutushero {
  /* hero default image */
  background-position: 0px 23px;
}

@media (max-width: 991px) {
  .addsearchnav {
    display: none;
  }
}

#header #subnav .addsearchnav {
  display: flex;
  align-items: center;
  min-height: 33px;
}

.adds-components-widget-search-field {
  max-width: 180px;
}

.addsWg-searchfield-container-class .addsWg-searchfield input[type=search] {
  margin-top: 0;
  margin-left: 10px;
  width: 180px !important;
  min-width: 100px !important;
  height: 15px;
  box-sizing: content-box !important;
}

/*truck directions button*/

.truck-wrap {
  display: none;
  margin-bottom: 30px;
  padding: 19px 17px 0px 15px;
  border: 1px solid #474037;
}

.truck-wrap h3 {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 10px;
  font-weight: bold;
}

.truck-wrap .key-alloys {
  background: #dcc7ab;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*    .cda-search-wrap .key-alloys a {
      font-weight: 800; }
      .cda-search-wrap .key-alloys a:hover {
        background: #53555a; }*/
.truck-wrap .row .col-sm-3 {
  border-right: none;
}

@media (min-width: 768px) {
  .truck-wrap .row .col-sm-3 {
    border-right: 1px solid #474037;
  }
}

.truck-wrap .row .col-sm-3:nth-child(4) {
  border: none;
}

.truck-wrap.active {
  display: block;
}

.truck-wrap a {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #474037;
  padding-left: 15px;
  line-height: 30px;
}

.truck-wrap a:hover {
  text-decoration: none;
  background: #ececeb;
}

.truck-wrap .key {
  margin-top: 15px;
  border-top: 1px solid #474037;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .truck-wrap .key {
    text-align: center;
  }
}

.truck-wrap .key a {
  vertical-align: middle;
  padding: 0px 8px;
}

@media (min-width: 768px) {
  .truck-wrap .key a {
    display: inline-block;
  }
}



@media(max-width: 768px) {
  #footer #lower .iso img {
    max-width: 10%;
  }

  #footer #lower .iso p {
    max-width: 70%;
  }
}

.text-smaller {
  font-size: 85% !important;
}


/* these are more or less copies of classes with the same name from bootstrap-4. */
.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 3rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}


.br-sm,
.br-md,
.br-lg {
  display: none;
}


@media(min-width: 992px) and (max-width: 1199px) {
  .br-md {
    display: block;
  }

  #footer-links {
    padding-left: 50px;
    padding-right: 0px;
  }

}

@media(min-width: 768px) and (max-width: 993px) {
  .br-sm {
    display: block;
  }

  #footer #lower .iso p {
    max-width: inherit;
    margin-top: 8px;
  }
}


@media (min-width: 768px) and (max-width: 1199px) {
  #footer-lower-row {
    display: flex;
  }

  #footer-lower-row div {
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media (max-width: 767px) {
  #footer-lower-row div {
    margin-bottom: 15px;
  }

  #footer-lower-row:last-child {
    margin-bottom: inherit;
  }

}

.link-anchor {
  display: block;
  position: relative;
  top: -180px;
  visibility: hidden;
}


@media (max-width: 992px) {
  .link-anchor {
    top: -144px;
  }
}

@media (max-width: 767px) {
  .link-anchor {
    top: 0;
  }
}

.link-anchor {
  display: block;
  position: relative;
  top: -180px;
  visibility: hidden;
}

#search-label {
  margin-right: 5px;
}

#cramped-btn {
  font-size: 15px;
}

.green-alloys-header {
  font-weight: bold;
  color: white;
  font-size: 35px;
}

.green-alloy-box>.row>.callout-column>.button-block {
  background-color: #02703b;
}

.green-alloy-box>.row>.callout-column>.search-drop,
.green-alloy-box>.row>.callout-column>.stocked-drop {
  background-color: #1a7240;
}

@media (max-width: 1200px) {
  .homepage-flex-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

#homepage-feature-columns {
  margin-top: 1em;
}

#homepage .no-padding {
  padding: 0;
}

#homepage .cda-search-wrap .row .col-sm-3 {
  padding-top: 1em;
}

#homepage-col-1 {
  padding-left: 0;
}

#homepage-col-3 {
  padding-right: 0;
}

.form-trap {
  display: none;
}

#sitemap h1 a {
  color: #e0251b;
}

#production .normalized-img>img {
  width: 100%;
}

.dash-style-type>li {
  list-style-type: "- ";
}

.contact-socials>a>img {
  width: 60px;
}

.non-sorting-column>p {
  margin: 0;
  margin-top: 2em;
}

#site-see .hero {
  background-image: url('/img/hero_site_see_FINAL.jpg');
}

.blue-h2 {
  color: #164594;
}

.single-block-vids iframe {
  height: 200px;
  width: 100%;
  padding: 2em;
}

@media(min-width: 425px) {
  .single-block-vids iframe {
    height: 300px;
  }
}

@media(min-width: 650px) {
  .single-block-vids iframe {
    height: 400px;
  }
}

@media(min-width: 768px) {
  .single-block-vids iframe {
    height: 500px;
  }
}

.single-block-vids img {
  width: 100%;
  padding: 2em;
}

.double-block-vids {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px;
  margin-bottom: 4em;
}

@media (min-width: 768px) {
  .double-block-vids {
    grid-template-columns: 1fr 1fr;
  }
}

.double-block-vids>div {
  width: 100%;
  height: 400px;
  padding: 1em;
  margin-bottom: 1em;
}

.double-block-vids>div>iframe {
  width: 100%;
  height: 350px;
}

.double-block-vids>div>p {
  font-weight: bold;
}

.furnace-image-group {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  /*padding: 0 15%;*/
}

.furnace-image-group>img {
  height: auto;
  width: 100%;

}

@media(min-width: 768px) {
  .furnace-image-group {
    grid-template-columns: 1fr 1fr;
  }
}

#line_cast {
  width: 100% !important;
}

.center-header {
  text-align: center;
}

.resizable-video-container>div {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  overflow: hidden;
}

.resizable-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.resizable-video-container>p {
  margin-top: -1em;
  margin-left: 1.5em;
  font-weight: bold;
}

.quote-thankyou-text {
  padding-bottom: 14em;
}

.double-block-vids>h1 {
  margin-bottom: 15px;
}

.js-hidden-element {
  display: none;
}

.home-video-container>iframe {
  width: 100%;
  height: 342px;
}

#chatbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.chatlog {
  margin: 0.5em;
}

#chatbox-input {
  padding: 10px;
  width: 88%;
}

.preset-option {
  padding: 0.5em;
  font-size: 90%;
  background-color: #eeeeee;
  transition: 0.3s;
  margin: 5px;
  border-radius: 0.5em;
}

.preset-option:hover {
  background-color: #333333;
  color: white;
  cursor: pointer;
}

#preset-input-box {
  display: flex;
  flex-direction: row;
}

.bot-msg {
  color: #53555a;
}

.hidden-chat-option {
  display: none;
}

.complete-msg {
  text-align: center;
  font-size: 90%;
  color: gray;
  display: block;
}

#chatbox-input-container {
  display: flex;
  flex-direction: row;
}

.submitArrow {
  display: flex;
  align-items: center;
  font-size: 2em;
  padding-left: 5px;
  font-weight: 700;
  color: darkgray;
  transition: 0.3s;
}

.submitArrow:hover {
  color: #8a6d3b;
  cursor: pointer;
}

.chat-popup-container {
  display: inline-block;
  bottom: 3%;
  right: 2%;
  position: fixed;
  z-index: 999;
}

#chat-iframe {
  width: 0em;
  height: 0em;
  transition: 0.8s height, 0.3s width;
  padding: 0.5em;
}

.chat-btn-icon {
  width: 5em;
  height: 5em;
}

.chat-logo-img {
  width: 22em;
  display: block;
  margin: 0 auto auto auto;
}

#chat-container {
  visibility: hidden;
  height: 0;
  background-color: white;
}

#chat-close {
  display: flex;
  justify-content: flex-end;
  padding: 0 5px;
  font-size: 1.5em;
  cursor: pointer;
}

#weight-calc-full {
  display: none !important;
}

@media (min-width: 1200px) {
  #weight-calc-partial {
    display: none !important;
  }

  #weight-calc-full {
    display: block !important;
  }
}

#conversion-calc-full {
  display: none !important;
}

@media (min-width: 1200px) {
  #conversion-calc-partial {
    display: none !important;
  }

  #conversion-calc-full {
    display: block !important;
  }
}

.sized-pdf-icon {
  width: 45px;
}


.mini-link {
  color: #e0251b;
  font-weight: bold;
}

.lebronze-image {
  width: 97px;
  height: 43px;
}

.news-image {
  /* Base styling for news images */
  max-width: 100%;
  display: block;
}

/* Constrain thumbnails within the gallery to a uniform height */
.news-gallery .news-image {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

/* News gallery layout tweaks for consistent spacing */
.news-gallery .gallery-item {
  margin-bottom: 20px;
}

.news-gallery .news-gallery-thumb {
  display: block;
}

#yellow-bullet-section>li>p {
  display: inline-block;
  margin: 0;
}

#yellow-bullet-section>li {
  color: #53555a;
  font-size: 20px;
}

.converter-select {
  width: 12em;
}

#conversion-calculator table {
  width: 100%;
  border-collapse: collapse;
}

#conversion-calculator table thead {
  background: #453e36;
  color: #fff;
}

#conversion-calculator table thead th {
  width: 50%;
  border: 1px solid #ececeb;
  padding: 3px 5px 2px;
  font-size: 24px;
}

#conversion-calculator table tbody tr {
  background: #ececeb;
}

#conversion-calculator table tbody tr:nth-child(odd) {
  background: #ffffff;
}

#conversion-calculator table tbody tr td {
  border: 1px solid #ececeb;
  padding: 5px;
  font-size: 20px;
  width: 50%;
}


#conversion-calculator .btn-group {
  padding: 3em 0;
  cursor: pointer;
}

#conversion-calculator .section-h1 {
  padding: 1em 0;
}

#DownloadContent>a {
  display: flex;
  align-items: center;
  color: #e0251b;
}

#DownloadContent .sized-pdf-icon {
  margin-right: 8px;
}

.new-calc-shape .button {
  cursor: pointer;
}

#weight-calculator .button.blue {
  background-color: #b8935c;
}

.hidden-element {
  display: none;
}

#Download {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  width: auto;
}

#DownloadContent {
  font-weight: bold;
  font-size: 20px;
  display: flex;
  color: #e0251b;
  margin: 0 auto;
  margin-bottom: 35px;
  line-height: 25px
}

#line-card .theplan li a {
  color: #53555a;
} 

#line-card .theplan li a:hover {
  color: #6E7075;
}

.castNote {
  font-size: 10px !important;
  margin-bottom: 20px;
}

/* Credit Application Form */
.collapsible-section {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.collapsible-header {
    background-color: #53555a;
    color: white;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collapsible-header:hover {
    background-color: #6E7075;
}

.collapsible-header h2 {
    margin: 0;
    color: white !important;
}

.collapsible-header .toggle-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.collapsible-header.active .toggle-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
}

.collapsible-content.active {
    max-height: 2000px;
    padding: 15px;
}

.upload-section {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 4px;
}

.upload-form .form-group {
    margin-bottom: 20px;
}

.upload-form input[type="file"] {
    display: block;
    margin-top: 10px;
}

/* Form Divider */
.form-divider {
    text-align: center;
    margin: 40px 0;
}

.form-divider h3 {
    display: inline-block;
    padding: 0 10px;
    background: #fff;
    position: relative;
    z-index: 1;
}
