@import url("https://use.typekit.net/yas1wpb.css");
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: var(--behr-normal);
  src: local('Material Icons'),
    local('MaterialIconsOutlined-Regular'),
    url("../font/MaterialIconsOutlined-Regular.otf") format('opentype');
}

.material-icons-outlined {
  font-family: 'Material Icons';
  font-weight: var(--behr-normal);
  font-style: normal;
  font-size: 16px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  color: #FFFFFF;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}


/* Global Variables */
:root {
    /* Breakpoints */
    --behr-breakpoint-tablet: 768px;
    --behr-breakpoint-desktop-small: 992px;
    --behr-breakpoint-desktop-large: 1200px;
    --behr-breakpoint-desktop-xlarge: 1920px;

    /* Colors */
    --behr-navy-primary: #465058;
    --behr-navy-medium: #373E44;
    --behr-navy-dark: #282C2F;
    --behr-black: #212529;
    --behr-beige: #F6F5F0;
    --behr-grey-light: #D8D8D8;
    --behr-grey-medium: #8A8A8A;
    --behr-grey-dark: #6B6B6B;
    --behr-red-primary: #BD483C;
    --behr-red-medium: #943A2A;
    --behr-red-dark: #783A2A;
    --behr-input-default-border: #CED4DA;
    --behr-input-focus-border: #465058;

    /* Fonts */
    --behr-heading-font: "alternate-gothic-atf", sans-serif;
    --behr-body-and-label-font: "proxima-nova", sans-serif;
    --behr-body-and-label-font--bold: "proxima-nova", sans-serif;

    /* Global Padding */
    --behr-mobile-padding: 10px 30px;

    /* Font Weight */
    --behr-normal: 400;
    --behr-bold: 700;
    --behr-atf-500:500;
    --behr-bold-600:600;
}
/* Set base size for REM */
html {
    font-size: 16px;
}


body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



h1, h2, h3, h4, h5, h6 {
    color: var(--behr-navy-primary);
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    text-transform: uppercase;
}

.font-proxima-regular {
    font-family: var(--behr-body-and-label-font)!important;
    font-weight: var(--behr-normal);
}

.font-proxima-bold {
    font-family: var(--behr-body-and-label-font--bold)!important;
    font-weight: var(--behr-bold);
}

.font-gothic-regular {
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
}
sup {
	font-size: 60%;
    position: relative;
    vertical-align: super;
    top: 0.1rem;
	font-family: inherit;
	font-weight: inherit;
}
.disclaimer {
    font-size: 12px;
    line-height: 12px;
}
/* prevent blue highlight on tap */
a {
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
a:focus {
    outline: none;
}
@media only screen and (max-width: 768px) {
    /* Heading font sizes will be consistent across breakpoints above 768px */
    h1 {
        font-size: 2.813rem;
    }

    h2 {
        font-size: 2.125rem;
    }

    h3 {
        font-size: 1.875rem;
    }

    /* Mobile h4 and h5 are the same font size */
    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.5rem;
    }

    h6 {
        font-size: 1.25rem;
    }
}

p{
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 18px;
    line-height: 24px;
}


/* CSS Resets */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
/* html:focus-within {
    scroll-behavior: smooth;
} */

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.public-css {
    color: red;
}

.container {
    max-width: 1190px !important;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    -webkit-transition: all 1s ease-in;
    -moz-transition: all 1s ease-in;
    -ms-transition: all 1s ease-in;
    -o-transition: all 1s ease-in;
    transition: all 1s ease-in;
}

@media (min-width: 1200px) and (max-width: 1330px) {
    .container {
        padding-left: 65px!important;
        padding-right: 65px!important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
		padding-left: 56px!important;
        padding-right: 56px!important;
    }
}
    
@media (min-width: 768px) and (max-width: 991px) {
    .container {
		padding-left: 29px!important;
        padding-right: 29px!important;
    }
}

@media (max-width: 767px) {
	.container {
		padding-left: 18px!important;
        padding-right: 18px!important;
	}
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Remove default margin / padding */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, p, blockquote, table, th, td, embed, object {
	padding: 0;
	margin: 0;
}

/* Heading font sizes will be consistent starting at 769px, h5 and h6 are same as mobile */
h1 {
    font-size: 4.875rem;
}

h2 {
    font-size: 2.813rem;
}

h3 {
    font-size: 2.125rem;
}

h4 {
    font-size: 1.875rem;
}

a,
button {
    cursor: pointer;
}

button:focus {
    outline: unset;
}

@keyframes fade-in-behr {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;	
	}
}

.fade-in-behr {
	animation: fade-in-behr .2s linear;
}
/* Arrows and Icons*/
.custom-arrow-right {
	border: 1px solid;
	border-width: 0px 2px 2px 0px;
	display: inline-block;
	padding: 4px;
	transform: rotate(-45deg);
	margin-left: 5px;
}

.custom-arrow-left {
	border: 1px solid;
	border-width: 0px 2px 2px 0px;
	display: inline-block;
	padding: 4px;
	transform: rotate(135deg);
	margin-left: 5px;
}
.custom-arrow-down {
	border: 1px solid;
	border-width: 0px 2px 2px 0px;
	display: inline-block;
	padding: 4px;
	transform: rotate(45deg);
	margin-left: 5px;
}
.custom-arrow-up {
	border: 1px solid;
	border-width: 0px 2px 2px 0px;
	display: inline-block;
	padding: 4px;
	transform: rotate(225deg);
	margin-left: 5px;
}
.custom-close-icon {
    font-style: normal;
	cursor: pointer;
}
/* Custome Plus Icon */
.custom-material-icons-add,
.custom-material-icons-minus {
	font-family: 'Material Icons';
    font-style: normal;
    color: inherit;
    font-size: 24px;
    font-weight: 900;
    align-items: center;
    display: flex;
    justify-content: center;
}
.w-100px {
    width: 100px;
}
.remove-color-id {
    display: flex;
    align-items: center;
    object-fit: contain;
}

/* HomePage Carousel CSS */
.homepage-carousel {
  position: relative;
}
.homepage-carousel__image-slider .homepageCarousel__desktop_prev,
.homepage-carousel__image-slider .homepageCarousel__desktop_next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 0px 8px;
    color: white;
    font-weight: var(--behr-body-and-label-font);
    font-size: 18px;
    border: 1px solid white;
    border-radius: 100%;
    background-color: #ffffff24;
    box-shadow: 2px 2px 22px #00000047;
    text-shadow: 2px 2px 7px black;
    height: auto;
}
.homepage-carousel__image-slider .homepageCarousel__desktop_prev:hover,
.homepage-carousel__image-slider .homepageCarousel__desktop_next:hover {
  color: rgb(218, 216, 216);
}
.homepage-carousel__image-slider .homepageCarousel__desktop_prev {
  left: 10%;
}
.homepage-carousel__image-slider .homepageCarousel__desktop_next{
  right: 10%;
}
.homepage-carousel__image-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  position: relative;
}
.homepage-carousel__mobile-image,
.homepage-carousel__slide-mobile,
.homepage-carousel__text-mobile {
  display: none !important;
}
.homepage-carousel__slide-desktop h2 {
  font-size: 45px;
  line-height: 1;
  color: white;
}
.homepage-carousel__slide-desktop p {
  color: white;
  margin: 10px 0px;
}
/*.homepage-carousel__slide-desktop a {
  top: 20px;
  left: 45%;
}*/
.homepage-carousel__slide-desktop .homepage-carousel__legal {
  font-size: 10px;
}
.homepage-carousel__slide-desktop, .homepage-carousel__slide-mobile, .homepage-carousel__slide-mobile h2 {
  color: white;
}
.homepage-carousel__slide-desktop, .homepage-carousel__slide-mobile {
  position: absolute;
  top: 30%;
  left: 50%;
}
.homepage-carousel__text-desktop {
  font-size: 18px;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}
@media (min-width:2300px) {
  .homepage-carousel__image-slider .homepageCarousel__desktop_prev {
    left: 15%;
  }
  .homepage-carousel__image-slider .homepageCarousel__desktop_next{
    right: 15%;
  }
}
@media (min-width:2700px) {
  .homepage-carousel__image-slider .homepageCarousel__desktop_prev {
    left: 25%;
  }
  .homepage-carousel__image-slider .homepageCarousel__desktop_next{
    right: 25%;
  }
}
@media (min-width:992px) and (max-width:1439px) {
  .homepage-carousel__slide-desktop h2 {
    font-size: 30px;
    line-height: 1;
  }
  .homepage-carousel__slide-desktop p {
    font-size: 12px;
    line-height: 1.3;
    font-weight: var(--behr-bold);
  }
}  

@media (max-width:991px) {
  .homepage-carousel__slide-item, .homepage-carousel__slide-item img {
    justify-content: center;
    width: 100%;
  }
  .homepage-carousel__desktop-image,
  .homepage-carousel__slide-desktop,
  .homepage-carousel__text-desktop {
    display: none !important;
  }
  .homepage-carousel__mobile-image, 
  .homepage-carousel__slide-mobile {
    display: block !important;
    top: 30%;
    left: 0%;
  }
  .homepage-carousel__slide-mobile {
    top: 15%;
    text-align: center;
  }
  /*.homepage-carousel__slide-mobile a {
    top: 20px;
  }*/
  .homepage-carousel__text-mobile {
    display: block;
  }
  .homepage-carousel__image-slider .homepageCarousel__desktop_prev,
  .homepage-carousel__image-slider .homepageCarousel__desktop_next {
  display: none;
  }
  .homepage-carousel__text-mobile {
    font-size: 18px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
  }
}

@media (max-width:767px) {
  .homepage-carousel__slide-mobile {
    top: 5%;
  }
  .homepage-carousel__slide-mobile h2 {
    font-size: 25px;
    line-height: 1;
  }
  .homepage-carousel__slide-mobile p {
    text-align: center;
  }
  /*.homepage-carousel__slide-mobile a {
    top: 20px;
  }*/
}
.no_banner_text {
  display: none;
}
.homepage_banner_text {
  font-size: 18px;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}
.homepage-carousel__image-slider .owl-prev {
  margin-left: 10% !important;
  float: left;
}
.homepage-carousel__image-slider .owl-next {
  margin-right: 10% !important;
  float: right;
}
.homepage-carousel__image-slider .home-carousel-nav-btn {
  box-shadow: 2px 2px 22px #00000047;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  padding: 0px 8px;
  text-shadow: 2px 2px 7px black;
  font-size: 16px;
}
.homepage-carousel__image-slider .owl-nav {
  margin-top: -20%;
}
.homepage-carousel__image-slider .owl-prev:hover, .homepage-carousel__image-slider .owl-next:hover {
  background-color: transparent !important;
  text-decoration: none;
}
.homepage-carousel__image-slider .owl-dots {
  display: none;
}
@media (max-width:991px) {
  .homepage-carousel__image-slider .owl-prev, .homepage-carousel__image-slider .owl-next {
    display: none !important;
  }
}
.homepage-carousel .homepage-carousel__image-slider .owl-nav {
/*position: absolute;
width:100%;*/
display:initial;
}
.homepage-carousel__slide-item,
.homepage-carousel__slide-item img {
	position: relative;
}
.homepage-carousel__slide-desktop, .homepage-carousel__slide-mobile {
	right: 0;
	margin: 0 auto;
	text-align: center;
}

/* this will override any horizontal (left) percentage to center the button in relation to the entire slide - NOT any text or icons */
.homepage-carousel__slide-desktop.center-slide-cta, .homepage-carousel__slide-mobile.center-slide-cta {
  left: 50% !important;
  transform: translate(-50%, 0);
}

.homepage-carousel .owl-prev, .homepage-carousel .owl-next {
margin-top: -19% !important;
}
@media (min-width:1921px) {
  .homepage-carousel .homepage-carousel__slide-item {
    display: flex;
    justify-content: center;
  }
  .homepage-carousel .homepage-carousel__slide-item img {
    width: unset !important;
  }
}
@media (min-width:2300px) {
  .homepage-carousel .owl-prev, .homepage-carousel .owl-next {
    margin-top: -15% !important;
  }
  .homepage-carousel__image-slider .owl-prev {
    margin-left: 15% !important;
  }
  .homepage-carousel__image-slider .owl-next {
    margin-right: 15% !important;
  }
}
.homepage-carousel__slide-desktop.center-slide-cta {
  width: 100%;
}
.homepage-carousel__slide-desktop {
  width: fit-content;
}
@media (min-width: 992px) {
  div.homepage-carousel {
    min-height: 356px; 
    max-height: 670px; 
  }  
}
/* End HomePage Carousel CSS */
.anchor-button, .button{
  font-size: .938rem;
  border-radius: 25px;
  padding: 5px 30px;
  height: 50px;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* prevent blue highlights of buttons when clicked */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button a{
  color: inherit;
  text-decoration: none;
}

.black-primary{
  color: #fff !important;
  background-color: var(--behr-navy-primary);
  border: none;
}

.black-primary:hover{
  color: #fff;
  background-color: var(--behr-navy-medium);
  border: none;
  text-decoration: none;
}

.black-primary:active{
  background-color: var(--behr-navy-dark);
}
div#dynasty-exterior a.button.black-primary {
  color: var(--behr-navy-primary) !important;
  background-color: #fff !important;
  border: none;
}

div#dynasty-exterior a.button.black-primary:hover{
  color:var(--behr-navy-primary);
  background-color: #fff !important;
  border: none;
  text-decoration: none;
}

div#dynasty-exterior a.button.black-primary:active{
  background-color: #fff !important;
}

.border-white-primary{
  color: #fff !important;
  background-color: var(--behr-navy-primary);
  border: none;
  border: 1px solid white;
}

.border-white-primary:hover{
  color: #fff;
  background-color: var(--behr-navy-medium);
  border: none;
  text-decoration: none;
  border: 1.5px solid white;
}

.border-white-primary:active{
  background-color: var(--behr-navy-dark);
  border: 1.5px solid white;
}

.white-primary:active{
  background-color: #fff !important;
}


.white-primary {
  color: var(--behr-navy-primary) !important;
  background-color: #fff !important;
  border: none;
}

.white-primary:hover{
  color:var(--behr-navy-primary);
  background-color: #fff !important;
  border: none;
  text-decoration: none;
}
.red-primary{
  color: #fff;
  background-color: var(--behr-red-primary);
  border: none;
}


.red-primary:hover{
  color: #fff;
  background-color: var(--behr-red-medium);
  border: none;
  text-decoration: none;
}

.red-primary:active{
  background-color: var(--behr-red-dark);
}

.black-secondary{
  color: var(--behr-navy-primary);
  background-color: transparent;
  border: 1px solid var(--behr-navy-primary);
}

.black-secondary:hover{
  color: var(--behr-navy-medium);
  background-color: transparent;
  border: 1px solid var(--behr-navy-medium);
  text-decoration: none;
}

.black-secondary:active{
  color: var(--behr-navy-dark);
  background-color: transparent;
  border: 1px solid var(--behr-navy-dark);
}

.red-secondary{
  color: var(--behr-red-primary);
  background-color: transparent;
  border: 1px solid var(--behr-red-primary);
}

.red-secondary:hover{
  color: var(--behr-red-medium);
  background-color: transparent;
  border: 1px solid var(--behr-red-medium);
  text-decoration: none;
}

.red-secondary:active{
  color: var(--behr-red-dark);
  background-color: transparent;
  border: 1px solid var(--behr-red-dark);
}

.btn-white-outline--primary{
  background-color: var(--behr-navy-primary);
  border: 1px solid #fff;
  color: #fff;
}

.btn-white-outline--primary:hover{
  background-color: var(--behr-navy-primary);
  border: 1px solid var(--behr-grey-light);
  color: var(--behr-grey-light);
  text-decoration: none;
}
.app-promo-banner{
    position: relative;
}

.color-smart-app{
    background-color: var(--behr-beige);
    padding-top: 24px;
    padding-bottom: 24px;
}

.color-smart-app__row{
    padding-bottom: 8px;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    margin-right: -15px;
    margin-left: -15px;
}

.color-smart-app__info{
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    max-width: 435px;
}

.color-smart-app__info--img{
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.color-smart-app__info--copy{
    padding-left: 0;
    padding-right: 15px;
    flex: 0 0 75%;
    max-width: 75%;
}

.color-smart-app__info--copy h5{
    font-size: 1.5rem;
    line-height: 25px;
}

.color-smart-app__info--copy  p{
    font-size: .938rem;
    line-height: 20px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    margin-bottom: 16px;
}

.color-smart-app__buttons{
    display: flex;
    justify-content:center;
    align-items: center;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;
}

.color-smart-app__buttons img{
    /* width: 45%; */
    width: auto;
}

.color-smart-app__buttons a{
    display: block;
}

.color-smart-app__buttons a:nth-child(1) img{
    padding-right: 8px;
}

@media only screen and (min-width: 768px){
    .color-smart-app__buttons img{
        width: auto;
    }

    .color-smart-app__row{
        flex-direction: row;
    }

    .color-smart-app__buttons{
        flex: 0 0 25%;
        max-width: 25%;
        margin-top: 0;
        margin-left: 0;
    }
    
    .color-smart-app__info--img{
        flex: 0 0 16%;
        max-width: 16%;
    }
}

@media only screen and (min-width: 992px){
    .color-smart-app__info{
        flex: 0 0 41.6%;
    }
}

@media only screen and (min-width: 1200px){
    .color-smart-app__info--copy  p{
        font-size: 1.125rem;
    }
}

button, .button{
    font-size: .938rem;
    border-radius: 25px;
    padding: 5px 30px;
    height: 50px;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    
    /* prevent blue highlights of buttons when clicked */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
} 

.button a{
  color: inherit;
  text-decoration: none;
}

.black-primary{
  color: #fff;
  background-color: var(--behr-navy-primary);
  border: none;
}

.black-primary:hover{
  color: #fff;
  background-color: var(--behr-navy-medium);
  border: none;
}

.black-primary:active{
  background-color: var(--behr-navy-dark);
}

.red-primary{
  color: #fff;
  background-color: var(--behr-red-primary);
  border: none;
}

.red-primary:hover{
  color: #fff;
  background-color: var(--behr-red-medium);
  border: none;
}

.red-primary:active{
  background-color: var(--behr-red-dark);
}

.black-secondary{
  color: var(--behr-navy-primary);
  background-color: transparent;
  border: 1px solid var(--behr-navy-primary);
}

.black-secondary:hover{
  color: var(--behr-navy-medium);
  background-color: transparent;
  border: 1px solid var(--behr-navy-medium);
}

.black-secondary:active{
  color: var(--behr-navy-dark);
  background-color: transparent;
  border: 1px solid var(--behr-navy-dark);
}

.red-secondary{
  color: var(--behr-red-primary);
  background-color: transparent;
  border: 1px solid var(--behr-red-primary);
}

.red-secondary:hover{
  color: var(--behr-red-medium);
  background-color: transparent;
  border: 1px solid var(--behr-red-medium);
}

.red-secondary:active{
  color: var(--behr-red-dark);
  background-color: transparent;
  border: 1px solid var(--behr-red-dark);
}

.btn-white-outline--primary{
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-white-outline--primary:hover{
  border: 1px solid var(--behr-grey-light);
  color: var(--behr-grey-light);
}
div#dynasty-exterior a.button.black-primary {
  color: var(--behr-navy-primary) !important;
  background-color: #fff !important;
  border: none;
}

.border-white-primary{
  color: #fff !important;
  background-color: var(--behr-navy-primary);
  border: none;
  border: 1px solid white;
}

.border-white-primary:hover{
  color: #fff;
  background-color: var(--behr-navy-medium);
  border: none;
  text-decoration: none;
  border: 1.5px solid white;
}

.border-white-primary:active{
  background-color: var(--behr-navy-dark);
  border: 1.5px solid white;
}

div#dynasty-exterior a.button.black-primary:hover{
  color:var(--behr-navy-primary);
  background-color: #fff !important;
  border: none;
  text-decoration: none;
}

div#dynasty-exterior a.button.black-primary:active{
  background-color: #fff !important;
}
.cta-button-bar-comp {
  padding-top: 24px;
  padding-bottom: 48px;
  position: relative;
}

.cta-button-bar-comp h2 {
  font-size: 4.875rem;
  line-height: 4.6875rem;
  margin-bottom: 8px;
}

.cta-button-bar-comp p {
  margin-bottom: 32px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0;
}

.cta-button-bar-comp__wrapper--row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cta-button-bar-comp__wrapper--col:hover > a{
  text-decoration: none;
}

.cta-button-bar-comp__wrapper--col {
  width: 25%;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}

.cta-button-bar-comp__wrapper--col>* {
  width: 100%;
  text-decoration: none;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .cta-button-bar-comp {
    padding-top: 80px;
  }
  .cta-button-bar-comp h2 {
    font-size: 2.813rem;
    line-height: 3.6875rem;
    margin-bottom: 8px;
    font-weight: var(--behr-atf-500);
  }

  .cta-button-bar-comp p {
    margin-bottom: 32px;
    font-size: .938rem;
    line-height: 1.2rem;
  }

  .cta-button-bar-comp__wrapper--row {
    margin: 0;
  }

  .cta-button-bar-comp__wrapper--col {
    width: 100%;
    padding: 0;
  }
}
.image-contain-top {
    object-fit: contain;
    object-position: top;
    -o-object-position: top;
}

.symbol-icon {
    top: 3%;
    right: 3%;
}

.color-detail__mobile-circle {
    position: absolute;
}

@media (min-width:576px) and (max-width:991px) {
    .color-detail__mobile-circle {
        top: 51%;
        right: 2%;
    }
}

@media (max-width:575px) {
    .color-detail__mobile-circle {
        top: 48%;
        right: 2%;
    }
}

.color-detail-header {
    position: relative;
}

.colorDetail-carousel__color {
    position: absolute;
    width: 100%;
}

.colorDetail-carousel__color:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.mobile-cd__carousel .cd-square {
    border-right: 2px solid #dee2e6;
    border-left: 2px solid #dee2e6;
}

.mobile-cd__carousel .owl-stage-outer {
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}

.mobile-cd__carousel .owl-dots {
    margin: 20px 0 !important;
    position: absolute;
    bottom: 1%;
    left: 0;
    right: 0;
}

.mobile-cd__carousel .owl-dots .owl-dot span {
    background: #fff !important;
    border: 1px solid #000;
    height: 11px;
    width: 11px;
}

/*  */
.color-detail-header .mobile-cd__carousel .owl-dots button,
.color-detail-header .mobile-cd__carousel .owl-dots button.active {
    background: none;
    border: none;
}

.color-detail-header .color-detail-main.color-main-wrapper .container .mobile-cd__carousel .owl-dots {
    position: relative;
    margin-top: 20px !important;
    margin-bottom: 35px !important;
}

/*  */

.desktop-cd__selected-image.square::after {
    display: none;
}

.color-detail-header .owl-carousel .owl-stage {
    padding-left: 0 !important;
}

.color-detail-main {
    background-color: var(--behr-beige);
}

.mobile-cd__carousel .owl-dots .owl-dot.active span {
    background: #000 !important;
}

.desktop-cd__img-selector {
    display: none;
}

.desktop-cd__selected-image {
    width: 515px;
    height: 289px;
    border: 2px solid #dee2e6;
    margin-bottom: 8px;
    position: relative;
}

.desktop-carousel {
    width: 515px;
}

.desktop-carousel .prevBtn.enabled img,
.desktop-carousel .nextBtn.disabled img {
    transform: rotate(180deg);
}

.desktop-cd__img-thumbs {
    display: flex;
    justify-content: center;
}

.desktop-cd__img-thumbs li {
    width: 95px;
    height: 53px;
    border: 2px solid #dee2e6;
    overflow: hidden;
    margin-right: 30px;
    cursor: pointer;
}

.desktop-cd__selected-image .circle-number {
    position: absolute;
}

.cd-color-info .circle-number {
    width: 20px;
    height: 20px;
    font-size: 12px;
    padding: 2px;
}

.circle-number {
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    padding: 3px 5px;
    font-size: 15px;
    border: 1px solid #465058;
    border-radius: 50%;
    color: #465058;
    line-height: 16px;
    display: none;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    background: #fff;
    text-align: center;
}

.cd-color-info .circle-number {
    margin-right: 8px;
}

.mixedCoat {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #000000 50%, #000000 100%) !important;
    display: block !important;
}

.intCoat {
    display: block !important;
}

.exteriorCoat {
    background-color: #000 !important;
    color: #fff !important;
    display: block !important;
}

.color-detail-main .owl-theme .owl-nav.disabled+.owl-dots {
    margin: 0 0 0 0 !important;
}

.cd-color-info>.container {
    padding-top: 24px !important;
}

.cd-color-info h1 {
    font-size: 2.125rem;
    line-height: 30px;
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 24px;
}

.cd-color-info__code-logo {
    display: flex;
    margin-bottom: 4px;
}

.cd-color-info__code-logo img {
    width: 30px;
    height: 16px;
}

.cd-color-info__color-code {
    font-size: 1rem;
    padding-left: 6px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    color: #4E4E4E;
    text-transform: uppercase;
}

.mixedCoat+sup,
.intCoat+sup,
.exteriorCoat+sup {
    display: block !important;
}

.cd-color-info__oneCoat {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    margin-top: 16px;
}

.oneCoat-text {
    color: #4E4E4E;
    font-size: .875rem;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}


.cd-color-info__rgb-text b {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.cd-color-info__rgb-text .lrv {
    margin: 0 8px 0 0;
}

.cd-color-info__rgb-text span {
    margin: 0 4px;
}

.cd-color-info .button,
.cd-color-info .anchor-button {
    width: 100%;
    text-decoration: none;
}

.desktop-cd__selected-image img:not(.hide)+.circle-number {
    display: none !important;
}

.savecolor,
.removecolor {
    margin-top: 24px;
}

.cd-color-info .button img,
.cd-color-info .anchor-button img {
    padding-right: 8px;
}

.cd__visualizer {
    margin-top: 24px;
    /*margin-bottom: 24px;*/
}

.cd__buy-product {
    margin-top: 24px;
    /*margin-bottom: 24px;*/
}

.button.cd_instore {
    padding: 5px 16px;
}

.help-illuminator {
    border: none;
    background-color: transparent;
}

.store-color-finder {
    padding-bottom: 48px;
    display: flex;
    justify-content: space-between;
}

.store-color-finder button {
    width: auto !important;
}

.cd-disclaimer,
.ten-years-disclaimer {
    font-size: .625rem;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    color: var(--behr-navy-primary);
    padding-top: 16px;
}

.cd-disclaimer a,
.ten-years-disclaimer a {
    text-decoration: none;
    color: var(--behr-red-primary);
}

.cd-disclaimer a:hover,
.ten-years-disclaimer a:hover {
    color: var(--behr-navy-primary);
    text-decoration: underline;
}

.cd-color-info__color-family {
    color: #212529;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    padding-top: 24px;
}

.color-detail-main {
    padding-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .mobile-cd__carousel {
        display: none !important;
    }

    .desktop-cd__img-selector {
        display: unset;
    }

    .color-detail-main {
        display: flex;
    }

    .cd-color-info>.container {
        padding: 0 0 0 0 !important;
    }

    .color-detail-main>.container {
        display: flex;
        /*justify-content: space-between;*/
    }

    .cd-color-info {
        margin-left: 70px;
        /* flex: 0 0 41.666667%;
        max-width: 41.666667%; */
        padding-right: 15px;
        padding-left: 15px;
    }

    .color-detail-main {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .cd-color-info .button,
    .cd-color-info .anchor-button {
        width: 80%;
    }

    .cd__buy-product {
        margin-top: 24px;
        margin-bottom: 0;
    }

    .store-color-finder {
        display: none;
    }

    .cd-disclaimer {
        padding-top: 24px;
    }
}

@media screen and (min-width: 1200px) {
    .cd-color-info h1 {
        font-size: 2.813rem;
    }
}

@media screen and (min-width: 1330px) {
    .color-detail-main {
        padding-top: 72px;
    }
}

/* STRY0273394 */
@media (min-width:992px) and (max-width:1090px) {
    .color-detail-header .cd-color-info {
        margin-left: 30px;
    }

    .color-detail-header .cd-color-info__rgb-text {
        white-space: nowrap;
    }

    .color-detail-header .cd-color-info .button,
    .cd-color-info .anchor-button {
        width: 100%;
    }
}

@media (min-width:1331px) {

    .cd-color-info .button,
    .cd-color-info .anchor-button {
        width: 75%;
    }
}
#colorDetailNav .closebtn {
    font-size: 26px;
    font-weight: bold;
    font-family: var(--behr-heading-font);
    color: #465058;
}
#browseCollections .closebtn {
    font-size: 26px;
    font-weight: bold;
    font-family: var(--behr-heading-font);
    color: #465058;
}
.bs-popover-bottom .btn-close {
    font-size: 18px;
    font-weight: bold;
    font-family: var(--behr-heading-font);
    color: #465058;
}
.shopModuleClass .modal-header .close {
    opacity: 1;
}
.color-families {
    position: relative;
    padding-top: 5rem;
}

.color-families__wrapper {
    padding-top: 0rem;
    padding-bottom: 1.5rem !important;
}

.color-families__wrapper h2 {
    margin-bottom: 0.5rem;
    font-size: 34px;
    line-height: 30px;
}

.color-families__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 100px);
    column-gap: 1rem;
    row-gap: 3rem;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.color-families__color-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.color-families__color-box {
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0.5rem;
    border: 1.5px solid lightgray;
}

.color-families__img {
    height: 77px;
    width: 77px;
    border-radius: 0.3rem;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0.3));
    margin-top: 0.3rem;
    position: absolute;
}

.color-families__color-box p {
    text-transform: uppercase;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-black);
    padding: 0.8rem 0;
    margin-bottom: 16px;
    font-size: 15px;
    position: absolute;
    padding-top: 96px;
}

.color-families__link .color-families__img {
    position: relative;
}

.color-families__link {
    z-index: 50;
}

.color-families__link.rotate {
    transform: ScaleY(-1);
    transition: linear;
}

.color-families__link.rotate .color-families__img {
    margin-top: 0rem;
    margin-bottom: 0.3rem;
}

@media screen and (min-width: 992px) {
    .color-families__grid {
        grid-template-columns: repeat(auto-fill, 100px);
        row-gap: 4rem;
    }
}

@media screen and (min-width: 1200px) {
    .color-families__grid {
        grid-template-columns: repeat(10, 1fr);
    }

    .color-families__wrapper h2 {
        margin-bottom: 0.5rem;
        font-size: 45px;
        line-height: 40px;
    }
}
.colorsmart-bg {
    background-color: var(--behr-beige);
    padding: 20px 0px;
}

.colorsmart-bg input {
    border-radius: 0px !important;
}

.colorsmart-bg .bcaf_col {
    align-items: center;
}

.input-search-icon {
    position: absolute;
    z-index: 9999;
    padding: 7px;
    cursor: pointer;
}

.colorsmart-bg .colorsmart-input input {
    padding-left: 40px;
}

@media (min-width:992px) {
    .browse-collection .bcaf_col {
        max-width: 41.66%;
    }

    .color-visualizer p {
        margin: 10px 0px;
    }

    .select-a-room {
        padding-left: 20px;
    }

    .upload-photo {
        width: 100%;
    }

    .collection-content {
        max-width: 450px;
    }
    .visualizer-pyp-room-type .uploadPhoto_row {
        border-right: 1px solid black;
    }
    .visualizer-pyp-room-type .colorsmartRoom_row {
        margin-left: 8.5%;
    }
    .visualizer-pyp-room-type .uploadPhoto_row {
        max-width: 40%;
    }
}

@media (min-width:768px) {
    .colorsmart-content {
        width: 100%;
    }

    .colorsmart-input {
        width: 100%;
        justify-content: end;
    }
}

.input-search-icon span img {
    width: 20px;
    height: 20px;
}

.colorsmart-input input::placeholder {
    font-size: 12px;
}

.paint-visualizer p {
    font-size: 15px;
}

.paint-visualizer .disclaimer {
    font-size: 12px;
    line-height: 16px;
}

.selected-option {
    color: #373e44;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    border: 3px solid #ccc;
    background-color: #fff;
    width: 100%;
    display: block;
    padding: 10px;
}

.custom-dropdown .selected-option:after {
    content: '';
    border: 2px solid #373e44;
    background-color: transparent;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    margin-right: 10px;
    float: right;
    margin-top: 5px;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.collection-content p {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width:991px) {
    .visualizer-welcome img {
        width: 100%;
    }
    .visualizer-bg .colorsmart-content .flex-column {
        display: flex;
    }
    .color-visualizer_container p {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .bcaf_row_1 {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .colorsmart-input {
        max-width: 381px;
        width: 100%;
    }

    .color-visualizer,
    .browse-collection {
        background: linear-gradient(180deg, #e0e0d9, #f6f5f0);
    }

    .collection-content {
        padding: 20px;
    }

    .bcaf_row_0 {
        margin-bottom: 10px;
    }
}

@media (min-width:1921px) {

    .color-visualizer,
    .browse-collection {
        background-size: contain;
    }
}

.color-visualizer_container .uploadFile-form-group .uploadFile_description {
    padding-left: 15px;
}

.uploadFile_label {
    color: #fff;
    background-color: var(--behr-navy-primary);
    border-radius: 50px;
    padding: 10px 45px;
    color: white;
    justify-content: center;
    font-weight: var(--behr-bold);
    display: flex;
    cursor: pointer;
}

.uploadFile_label:hover {
    color: #fff;
    background-color: var(--behr-navy-medium);
    border: none;
}

.uploadFile_label:active {
    background-color: var(--behr-navy-dark);
}

.colors-by-family__wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: hidden;
}

.colors-by-family__item {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding: 20px;
}

.color-chip__text {
    margin: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: var(--behr-bold);
}

.color-visualizer {
    position: relative;
}

@media (min-width: 992px) {
    .visualizer-image img {
        height: 326px;
        object-fit: cover;
    }

    .color-visualizer .bcaf_col.col-12 {
        position: absolute;
        align-self: anchor-center;
        padding-left: 20px;
    }

    .browse-collection .set_img img {
        height: 326px;
        object-fit: cover;
    }

    .browse-collection .bcaf_col.col-12 {
        position: absolute;
        align-self: anchor-center;
        padding-left: 20px;
    }
}

@media (max-width:991px) {

    .color-visualizer .bcaf_col.col-12,
    .browse-collection .bcaf_col.col-12 {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    button.uploadPhoto,
    button.dropdown-toggle {
        max-width: 330px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .legalTerm_mb_label {
        padding-left: 0px !important;
    }

    .colorsmartRoom-form-group .col-12 {
        padding-left: 0px !important;
        margin-top: 15px;
    }
}

html {
    overflow-x: hidden;
    max-width: 1600px;
    margin: 0 auto;
    background: #ccc;
}

.color-visualizer [name="error_message"],
.input_icon_1 {
    display: none;
}
.colorsmart-bg [name="searchColorsmart"] {
    width: 381px;
    padding-left: 35px;
}

.colorsmart-bg .input-icon.input_icon_0 {
    position: absolute;
    left: 25px;
    top: 7px;
}

@media (min-width:768px) {
    .colorsmart-bg [name="searchColorsmart"] {
        width: 381px;
    }
}

@media (max-width:767px) {
    .colorsmart-bg .searchColorsmart_row {
        margin-left: -20px;
    }

    .colorsmart-bg [name="searchColorsmart"] {
        width: 100%;
    }
}

.uploadPhoto_description {
    padding-left: 0px;
}

.visualizer-bg {
    background: #f6f5f0;
    padding-top: 25px;
}

.visualizer-welcome {
    background: #f6f5f0;
    margin-bottom: 25px;
    padding-top: 40px;
}

@media (min-width:992px) {
    .visualizer-welcome .col-12.col-lg-5 {
        order: 1;
    }
    .colorsmartRoom_row .colorsmartRoom_description {
        margin-left: 15px;
    }
}

.visualizer-welcome .welcomeMessage_label {
    font-size: 45px;
    line-height: 40px;
    font-family: 'alternate-gothic-atf';
    font-weight: 400 !important;
    color: #465058;
}

.visualizer-welcome .welcomeMessage_description {
    max-width: 596px;
}

.visualizer-welcome .bcaf_col.col-12.col-lg-7 {
    padding-left: 0px
}

.visualizer-pyp-room-type .legalTerm_row .legalTerm-form-group,
.colorsmartRoom_description {
    max-width: 290px;
}

.uploadPhoto-form-group .col-12.my-3,
.colorsmartRoom_description,
.colorsmartRoom_row .col-12.my-3 {
    padding-left: 0px;
}

.visualizer-pyp-room-type .uploadPhoto_label,
.visualizer-pyp-room-type .colorsmartRoom_label {
    padding-left: 0px;
    font-size: 30px;
    line-height: 35px;
    color: #465058;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500) !important;
}

.visualizer-pyp-room-type .legalTerm_label,
.color-visualizer .legalTerm_label, 
.visualizer-pyp-room-type .legalTerm_mb_label,
.color-visualizer .legalTerm_mb_label {
    font-size: 12px;
    color: #465058;
    text-transform: none;
    padding-left: 0px;
    margin-top: 5px !important;
}

.visualizer-pyp-room-type [name="error_message"] {
    display: none;
}

@media(max-width: 991px) {

    .visualizer-welcome {
        padding-bottom: 25px;
    }
    .visualizer-welcome .px-0.d-none.d-md-block.d-lg-none.col-12.col-md-12,
    .visualizer-welcome .px-0.d-md-none.col-12 {
        order: 1;
    }
    .colorsmartRoom_row {
        border-top: 1px solid black;
    }
} 
@media (min-width:992px) and (max-width:1100px) {
    .colorsmartRoom_row {
        max-width: 30% !important;
    }
}
.colorsmart-bg .colorsmart-content img,
.visualizer-bg .colorsmart-content img{
    width: 320px !important;
}
.colorsmart-bg .colorsmart-content .title-header,
.visualizer-bg .colorsmart-content .title-header  {
    font-size: 20px;
    color: #212529;
    text-decoration: none;
}
.colorsmart-content a {
    text-decoration: none;
}
@media (min-width:992px) and (max-width:1330px) {
    .color-visualizer-sp .dropdown-toggle-name,
    .visualizer-pyp-room-type-sp  .dropdown-toggle-name,
    .color-visualizer-fr .dropdown-toggle-name {
        font-size: 12px;
    }
}
.color-visualizer-sp .dropdown-toggle-name,
.visualizer-pyp-room-type-sp .dropdown-toggle-name,
.color-visualizer-fr .dropdown-toggle-name {
    font-size: 16px;
    display: flex;
    align-items: center; 
    padding-left: 0px !important;
}
.color-visualizer-sp .btn-dropdown,
.visualizer-pyp-room-type-sp .btn-dropdown {
    padding: 2px 15px !important;
}
.visualizer-pyp-room-type-fr .dropdown-toggle.btn-dropdown {
    font-size: 16px;
} 
@media (min-width:992px) {
    .visualizer-pyp-room-type-fr .uploadPhoto_description {
        max-width: 60%;
    }
}
.color-swatch-grid {
    padding-top: 30px !important;
    padding-bottom: 80px !important;
    position: relative;
}

.color-swatch-grid__wrapper h2 {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 30px;
}

.color-swatch-grid__color-section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch-grid__color-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-wrap: anywhere;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    width: calc((100% - 60px) / 6);
    font-weight: normal !important;
    min-width: 77px;
}

.color-swatch-grid__img {
    width: 100%;
}

.color-swatch-grid__img:after {
    content: "";
    display: block;
    padding-bottom: 100%;

}

.color-swatch-grid__color-name {
    text-transform: uppercase;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-navy-primary);
    text-align: center;
    line-height: normal;
    padding-top: 8px;
    font-size: 0.813rem;
    line-height: 1.125rem;
}

.color-swatch-grid__color-code {
    color: var(--behr-black);
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 0.938rem;
    line-height: 1.5rem;
}


@media only screen and (min-width: 992px) {
    .color-swatch-grid__color-section{
        row-gap: 10px;   
    }

    .color-swatch-grid__color-tile {
        max-width: 140px;
    }

    .color-swatch-grid__color-name {
        padding-top: 10px;
        font-size: 0.938rem;
        line-height: 1.25rem;
    }


    .color-swatch-grid__wrapper h2 {
        margin-bottom: 40px;
        font-size: 2.813rem;
        line-height: 42px;
    }

    .color-swatch-grid__color-name {
        padding-top: 10px;
    }

    .color-swatch-grid__img {
        max-width: 140px;

    }
}
.colorVisualizer-room {
    background-color: #f6f5f0;
    padding-top: 25px;
}
.paint-your-place {
    padding-top: 40px;
    padding-bottom: 40px;
}
.paint-your-place .horizontal-ln p {
    margin-top: 15px;
}
.paint-your-place .horizontal-ln p.disclaimer {
    margin-top: 0px;
}
@media (min-width:992px) {
    .horizontal-ln {
        border-right: 1px solid #000000;
    }
    .max-content-place {
        max-width: 300px;
    }
}
@media (max-width:991px) {
    .horizontal-ln {
        border-bottom: 1px solid #000000;
        padding-bottom: 20px;
    }
    .paint-your-place .offset-lg-1.col-lg-4 {
        padding-top: 20px;
    }
    .paint-your-place .upload-photo,
    .paint-your-place .selected-option {
        width: 240px;
    }
}
@media (min-width:1600px) {
    [data-popper-placement="bottom-start"] .dropdown-menu.show,
    [data-popper-placement="top"] .dropdown-menu.show {
        position: relative !important;
    }
}
.color-tools-comp {
  background-color: var(--behr-beige);
  padding-top: 75px;
  padding-bottom: 30px;
  position: relative; /* this is for edit content button for CMS */
}

.color-tools-comp a {
  text-decoration: none;
}

.color-tools-comp h2 {
  font-size: 2.125rem;
  line-height: 1.875rem;
  margin-bottom: 16px;
}

.color-tools-comp p {
  font-size: 0.938rem;
  margin-bottom: 24px;
}

.color-tools-comp__wrapper--content {
  background-image: url("../images/colortools-background-mobile.jpg");
  background-repeat: no-repeat;
  background-size: contain;
}

.color-tools-comp__wrapper--top {
  padding-bottom: 48px!important;
}

.color-tools-comp__wrapper--top h3 {
  font-size: 2.125rem;
  line-height: 1.875rem;
  /*margin-bottom: 24px;*/
}

.color-tools-comp__wrapper--top .color-tools-comp__behr-colors {
  display: flex;
  flex-direction: column;
}

.color-tools-comp__wrapper--top .color-tools-comp__behr-colors a:first-of-type {
  margin-top: 0;
}

.color-tools-comp__wrapper--top .color-tools-comp__behr-colors a {
  margin-top: 16px;
  margin-bottom: 16px;
}

.color-tools-comp__colorsmart {
  padding-top: 48px;
}

.color-tools-comp__colorsmart img {
  box-shadow: 0px 21px 42px -4px rgba(33, 37, 41, 0.75);
  border-radius: 12px;
}

.color-tools-comp__colorsmart-img-mobile {
  display: block;
}

.color-tools-comp__colorsmart-img-desktop {
  display: none;
}

.color-smart__text-wrapper p {
  min-height: 60px;
  margin-bottom: 16px;
}

.color-tools-comp__ptp,
.color-tools-comp__color-discovery {
  text-align: center;
}

.color-tools-comp__behr-colors h3 {
  padding-bottom: 30px;
}

.color-tools-comp__colorsmart p {
	text-align: center;
}

@media only screen and (max-width: 767px) {
    .color-tools-comp__colorsmart img {
      box-shadow: none!important;
      border-radius: 12px;
    }
	.color-tools-comp__colorsmart {
	  text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	  
	}
	.color-tools-comp__colorsmart h3 {
	    font-size: 2.125rem;
	    line-height: 1.875rem;
	    margin-top: 30px!important;
		text-align: center;
	    padding-bottom: 5px;	    
	}	
  .color-tools-comp__wrapper--content {
    background-size: contain;
  }

  .color-tools-comp__wrapper--top .color-tools-comp__behr-colors a {
    min-width: 48%;
    max-width: 75%;
    width: 75%!important; 
  }

  .color-smart__text-wrapper {
    padding: 0 24px 48px 24px;
  }
}

@media only screen and (min-width: 768px) {
	.color-tools-comp__wrapper--top h3 {
	  margin-bottom: 24px;
	}	
  .color-tools-comp h2 {
    font-size: 2.125rem;
    line-height: 2.5rem;
  }

  .color-tools-comp__wrapper--top h3 {
    font-size: 1.5rem;
    line-height: 1.563rem;
  }

  .color-tools-comp__wrapper--content {
    background-image: url("../images/colortools-background-desktop.jpg");
    max-width: 1920px;
    margin: auto;
  }

  .color-tools-comp__wrapper--top {
    display: flex;
  }

  .color-tools-comp__wrapper--top .color-tools-comp__behr-colors {
    flex: 50%;
  }

  .color-tools-comp__wrapper--top .color-tools-comp__behr-colors a {
    width: 220px;
  }

  .color-tools-comp__colorsmart {
    padding-top: 0px;
  }

  .color-tools-comp__colorsmart-img-mobile {
    display: none;
  }

  .color-tools-comp__colorsmart-img-desktop {
    display: block;
  }

  .color-tools-comp__wrapper--bottom {
    display: flex;
    justify-content: center;
  }

  .color-tools-comp__wrapper--bottom > div {
    flex: 50%;
    padding: 0 16px;
  }

  .color-tools-comp__wrapper--bottom img {
    width: 100%;
  }

  .color-smart__text-wrapper {
    padding: 0 0 48px 0;
  }

  .color-smart__text-wrapper p {
    min-height: 72px;
  }
}

@media only screen and (min-width: 992px) {
  .color-tools-comp__wrapper--bottom > div {
    padding: 0 80px;
  }

  .color-tools-comp__wrapper--top .color-tools-comp__behr-colors {
    flex: 33%;
  }

  .color-tools-comp__wrapper--top .color-tools-comp__behr-colors a {
    width: 220px;
  }

  .color-tools-comp__behr-colors h3 {
    padding-bottom: 48px;
  }
}
@media (min-width:992px) and (max-width:1200px) {
  .color-tools-comp__wrapper--top .color-tools-comp__behr-colors {
    flex: 40% !important;
  }
}
@media only screen and (min-width: 1200px) {
  .color-tools-comp h2 {
    font-size: 2.813rem;
  }

  .color-tools-comp p {
    font-size: 1.125rem;
  }

  .color-tools-comp__wrapper--top h3 {
    font-size: 1.875rem;
  }
}
.color-tools-comp__behr-colors a {
  white-space: nowrap;
}
/* DFCT0026252 */
.colorsmart .browser-color-families .ng-star-inserted .row .col-12,
.visualizer-home .col-12.font-weight-bold.m-0.p-0.py-2 {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}
.consumer-reports{
    position: relative;
}

.consumer-reports__hero img{
    width: 100%;
}

.cr-report__stain img{
    max-height: 332px;
}

.consumer-reports__hero--dsktp{
    display: none;
}

.consumer-reports .hero-banner{
    display: block;
}

/*
.hero-banner .hero-banner__desktop, .hero-banner .hero-banner__mobile{
    width: 100%;
}
*/

.consumer-reports__disclaimer p{
    font-size: .625rem;
    line-height: 24px;
    margin-top: 8px;
}

.consumer-reports-listing-wrapper > div > div > div:nth-child(3) > div > div > p:nth-child(2) > strong{
    font-weight: var(--behr-bold);
    font-size: .938rem;
    line-height: 24px;
    margin-bottom: 16px;
    display: block;
}

.consumer-reports-listing-wrapper > div > div > div:nth-child(2) > .rte.container > .rte__wrapper > p{
    margin-top: 8px;
}

.consumer-reports-listing-wrapper > div > div > div:nth-child(3) > div > div > p:nth-child(3){
    font-size: .938rem;
}

.consumer-reports-listing-wrapper > div > div > div:nth-child(2){
    margin-bottom: -10px;
}

.cr-panel__list .cr-report__paint p a{
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.consumer-reports__header{
    padding-top: 32px;
    margin-bottom: -10px;
}

.consumer-reports__header h1, .consumer-reports .rte.container h1{
    font-size: 2.813rem;
    line-height: 45px;
    margin-bottom: 16px;
    margin-top: 32px;
}


.cr-container hr{
    margin: 0;
    border: 0;
    height: 1px;
    border-top: 1px solid #DEE2E6;
}

.consumer-reports__header label{
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: #000000CC;
    font-size: .938rem;
    margin-bottom: 22px;
    display: block;
    line-height: 24px;
}

.consumer-reports__header p{
    color: #000000CC;
    font-size: .938rem;
    line-height: 24px;
}

.consumer-reports__disclaimer, .consumer-reports__header{
    max-width: 910px;
}

.cr-panel{
    padding-bottom: 63px;
    padding-top: 63px;
    max-width: 910px;
}

.cr-panel__header{
    margin-bottom: 43px;
}

.cr-panel__header h2{
    font-size: 1.875rem;
    line-height: 35px;
    margin-bottom: 15px;
}

.cr-panel__header p{
    font-size: .938rem;
    line-height: 20px;
}

.cr-report__paint img, .cr-report__stain img{
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.cr-report__paint a, .cr-report__stain a{
    text-decoration: none;
}

.consumer-reports .cr-report-learn-more {
    font-size: 0.75rem;
    font-family: var(--behr-body-and-label-font--bold) !important;
    font-weight: var(--behr-bold);
}

.cr-panel__list li{
    list-style: none;
    margin-bottom: 66px;
    text-align: center;
}

.cr-panel__list li:last-child{
    margin-bottom: 0;
}

.cr-report__paint .anchor-button, .cr-report__stain .anchor-button{
    margin: 0 auto;
    width: 100%;
    max-width: 364px;
}

.cr-report__paint a:not(.anchor-button){
    color: var(--behr-red-primary);
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    max-width: 176px;
    display: block;
    text-align: center;
    margin: 0 auto 22px;
    font-size: .75rem;
}

@media (min-width: 992px){
    .consumer-reports-listing-wrapper > div > div > div:nth-child(3) > div > div > p:nth-child(3),.consumer-reports-listing-wrapper > div > div > div:nth-child(3) > div > div > p:nth-child(2) > strong{
        font-size: 1.125rem;
    }
    .consumer-reports-listing-wrapper > div > div > div:nth-child(2) > .rte.container > .rte__wrapper > p{
        font-size: 18px;
    }
    .consumer-reports__hero--dsktp{
        display: block;
    }

    .consumer-reports__hero--mobile{
        display: none;
    }

    .cr-report__paint .anchor-button, .cr-report__stain .anchor-button{
        width: auto;
    }

    .cr-report__paint a:not(.anchor-button){
        /* max-width: 157px; */
        max-width: 100%;
        margin-bottom: 25px;
        font-size: .938rem;
    }

    .consumer-reports__disclaimer p{
        font-size: 1.125rem;
        margin-top: 15px;
    }

    .consumer-reports__header{
        padding-top: 70px;
    }

    .consumer-reports__header h1, .consumer-reports .rte.container h11{
        font-size: 4.875rem;
        line-height: 78px;
        margin-bottom: 28px;
        margin-top: 71px;
    }

    .consumer-reports__header label, .consumer-reports__header p{
        font-size: 1.125rem;
    }

    .cr-panel{
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .cr-panel__header{
        margin-bottom: 48px;
    }

    .cr-panel__header h2{
        font-size: 2.125rem;
        line-height: 35px;
        margin-bottom: 18px;
    }

    .cr-panel__header p{
        font-size: 1.125rem;
        line-height: 24px;
    }

    .cr-report__paint{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 0 0 25%;
        max-width: 25%;
        padding: 30px 0px;
    }

    .cr-report__stain{
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        margin-bottom: 71px;
        flex-direction: row;
    }

    .cr-report__stain img{
        margin-left: 0;
        margin-right: 38px;
        margin-bottom: 0;
        max-width: 25%;
        max-height: 195px;
    }

    .consumer-reports .cr-report-learn-more {
        font-size: 0.938rem;
    }

    .cr-report__stain .anchor-button{
        margin-left: 0;
        margin-right: 0;
    }

    .cr-panel__list{
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .cr-panel__list .cr-report__paint{
        margin-bottom: 0;
        justify-content: flex-start;
    }

    .cr-report__btn{
        flex-grow: 1;
        align-items: flex-end;
        display: flex;
    }

}
@media (min-width:1200px) {
    .consumer-reports-listing-wrapper h1 {
        font-size: 78px !important;
        line-height: 75px !important;
    }
}
.content-tiles {
  position: relative;
}

.content-tiles__tile article {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.content-tiles__tile a {
  color: inherit;
  text-decoration: inherit;
}

.content-tiles h2{
  margin-bottom: 40px;
  /*line-height: 30px;*/
}

.content-tiles__flex .content-tiles__tile h2 {
  margin-bottom: 20px;
}

.content-tiles__flex .content-tiles__tile p:first-child {
  color: var(--behr-black);
}

.content-tiles__flex .content-tiles__tile p {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-navy-primary);
}

.content-tiles__flex > div {
  margin-bottom: 20px;
}

.content-tiles__flex .content-tiles__tile img{
  margin-bottom: 10px;
}

.content-tiles__wrapper.owl-carousel .owl-stage-outer{
  margin-bottom: 24px;
}

.content-tiles__wrapper.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--behr-black) !important;
}

.content-tiles__wrapper.owl-theme .owl-dots .owl-dot span {
  background: var(--behr-grey-light) !important;
  border: none;
  height: 11px;
  width: 11px;
}

@media only screen and (min-width: 768px) {
  .content-tiles h2{
    line-height: 40px;
  }
  .content-tiles__flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .content-tiles__flex .content-tiles__tile {
    height: 100%;
  }

  .content-tiles__flex > div {
    flex-basis: calc(35%);
    margin-right: 10px;
  }

  .content-tiles__tile p:nth-child(2){
    font-size: 1.10rem;
  }
}

@media only screen and (min-width: 992px){
  .content-tiles__flex > div {
    flex: 0 1 21%;
    height: auto;
  }
}
.content-hub-header {
    padding: 40px 0;
    position: relative;
}

.content-hub-header__eyebrow {
    font-size: 1.875rem;
    line-height: 2.188rem;
    margin-bottom: 16px;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    text-transform: uppercase;
    color: var(--behr-navy-primary);
    display: block;
}

.content-hub-header__primary-title {
    font-size: 2.813rem;
    line-height: 2.5rem;
    margin-bottom: 8px;
}

.content-hub-header__description {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-black);
    font-size: 1.125rem;
    line-height: 1.5rem;
}

@media only screen and (min-width: 992px) {
    .content-hub-header {
        padding: 80px 0;
    }

    .content-hub-header__eyebrow {
        font-size: 2.125rem;
        line-height: 1.875rem;
        margin-bottom: 24px;
    }

    .content-hub-header__primary-title {
        font-size: 4.875rem;
        line-height: 4.688rem;
    }
}
.content-hub-nav {
  position: relative;
}

.content-hub-nav__scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: none;
  padding-left: 29px;
  padding-right: 29px;
}

.content-hub-nav__mobile-nav {
  position: relative;
}

.content-hub-nav__fade-wrapper {
  overflow-x: scroll;
}

.content-hub-nav__fade-wrapper.no-before-fade::before {
  content: "";
}

.content-hub-nav__fade-wrapper.content-hub-nav__fade-before::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  height: 100%;
  width: 80px;
  background-image: linear-gradient( to right, rgb(246, 245, 240, 1), rgba(246, 245, 240, 0));
  transition: all linear 0.3s;
  pointer-events: none;
  z-index: 20;
}

.content-hub-nav__fade-wrapper.content-hub-nav__fade-after::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  height: 100%;
  width: 80px;
  background-image: linear-gradient( to left, rgba(246, 245, 240, 1), rgba(246, 245, 240, 0));
  transition: all linear 0.3s;
  pointer-events: none;
  z-index: 20;
}

.content-hub-nav__fade-wrapper.content-hub-nav__fade-before.content-hub-nav__show-fade-before::before {
  left: 0;
}

.content-hub-nav__fade-wrapper.content-hub-nav__fade-after.content-hub-nav__show-fade-after::after {
  right: 0;
}

.content-hub-nav__scroll::-webkit-scrollbar {
  display: none; 
}

.content-hub-nav {
  display: flex;
  flex-direction: column;
}

.content-hub-nav__nav {
  position: relative;
  overflow: hidden;
  background-color: var(--behr-beige);
  height: 64px;
  width: 100%;
  display:flex;
  flex-flow:row;
  justify-content: flex-start;
  align-items:center;
}

.content-hub-nav__nav ul {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.content-hub-nav__nav ul li {
  flex: 0 0 auto;
  list-style-type: none;
}

.content-hub-nav__nav ul li:first-child {
  padding-left: 0px;
}

.content-hub-nav__nav ul li a {
  text-transform: uppercase;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-grey-medium);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9375em;
  line-height: 1.25rem;
}

.content-hub-nav__nav ul li a:hover {
  color: var(--behr-navy-primary);
}

.content-hub-nav__image {
  width: auto;
  object-fit: cover;
  max-height: 615px;
}

.content-hub-nav__nav ul li a.active-nav-item {
  padding-bottom: 5px;
  border-bottom: 3px solid var(--behr-navy-primary);
  color: var(--behr-navy-primary);
  z-index: 30;
}

.content-hub__nav-desktop {
  display: none;
}

.content-hub-nav__desktop-nav  {
  display: none;
}


@media only screen and (min-width: 992px) {
  .content-hub__nav-mobile { 
    display: none;
  }

  .content-hub__nav-desktop {
    display: block;
  }

  .content-hub-nav__image {
    max-height: 515px;
    max-width: 1920px;
    width: 100%;
  }

  .content-hub-nav__mobile-nav {
    display: none;
  }

  .content-hub-nav__desktop-nav {
    clear: both;
    position: relative;
    width: 100%;
    display: block;
  }
  .content-hub-nav__desktop-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 5;
    gap: 0px;
  }
  
  .content-hub-nav__desktop-nav.space-between-hub-nav > ul {
    justify-content: space-between;
  }


  
  .content-hub-nav__desktop-nav > ul > li {
    background: none;
    flex: 0 0 auto;
    margin-bottom: 0;
    padding-left: 0;
    position: relative;
    text-transform: uppercase;
    z-index: 500;
  }
  .content-hub-nav__desktop-nav > ul > li.hub-nav-more-hidden {
    display: none;
  }
  
  .content-hub-nav__desktop-nav > ul > li:hover ul {
    display: block;
  }

  .content-hub-nav__desktop-nav > ul > li .content-hub-nav__main-nav-more-btn {
    border-bottom: 3px solid transparent;
  }

  .content-hub-nav__desktop-nav > ul > li:hover a.content-hub-nav__main-nav-more-btn {
    /* border-bottom: 3px solid var(--behr-navy-primary); */
    color: var(--behr-navy-primary);
  }

  .content-hub-nav__desktop-nav > ul > li:hover .hub-nav-more-arrow {
    transform: rotate(0deg);
  }

  .content-hub-nav__desktop-nav li {
    margin-right: 40px;
  }

  .content-hub-nav__desktop-nav .content-hub-nav__main-nav-more-btn {
    display: inline-flex;
    right: 0px;
    gap: 5px;
    align-items: center;
    margin-top: 4px;
  }

  .content-hub-nav__desktop-nav ul ul {
    display: none;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 100%;
    padding-top: 5px;
    right: 0;
    background-color: var(--behr-beige);
  }

  .content-hub-nav__desktop-nav ul ul li {
    margin-right: 0px;
    margin: 24px 28px 24px 22px;
  }
  
  .content-hub-nav__desktop-nav ul ul li:last-child {
    margin-bottom: 21px;
  }

  .content-hub-nav__desktop-nav ul ul a {
    white-space: nowrap;
  }

  .content-hub-nav__nav {
    overflow: inherit;
  }

  .content-hub-nav__nav ul {
    height: inherit;
  }

  .hub-nav-more-arrow {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--behr-grey-medium);
    transform: rotate(180deg);
  }
}
.crd-colors_palettes{
    margin-top: 32px;
}

.crd-colors_palettes li{
    list-style: none;
}

.crd-colors_palettes .palette-outer{
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 1.2;
    word-break: break-word;
}

.crd-colors_palettes .palette-inner{
    width: 100%!important;
    position: relative;
    left: 0% !important;
    overflow: hidden;
    padding-bottom: 100%;
    /* border-radius: 0; */
}

.crd-colors_palettes .palette-color-1{
    position: absolute;
    height: calc(66.66% - 1px);
    width: calc(66.66% - 1px);
}
.crd-colors_palettes .palette-color-2{
    position: absolute;
    width: calc(33.33% - 1px);
    height: calc(33.33% - 1px);
    right: 0;
}
.crd-colors_palettes .palette-color-3{
    position: absolute;
    width: calc(33.33% - 1px);
    height: calc(33.33% - 1px);
    right: 0;
    top: 33.33%;
}
.crd-colors_palettes .palette-color-4{
    position: absolute;
    height: calc(33.33% - 1px);
    width: 100%;
    bottom: 0;
}

.crd-colors_palettes .owl-stage{
    margin-left: -30px;
}

.crd-colors_palettes .owl-dots{
    display: none;
}

.coordinating-colors .crd-colors_palettes .owl-nav button.owl-prev, .coordinating-colors .crd-colors_palettes .owl-nav button.owl-next{
    border: 1px solid #465058;
    width: 25px;
    height: 25px;
    color: #fff;
    background: #465058 !important;
    border-radius: 50%;
    position: absolute;
    margin: 15px 0px;
}

.crd-colors_palettes .owl-nav button.owl-prev {
    right: 30px;
}

.crd-colors_palettes .owl-nav button.owl-next {
    right: 0px;
}

.crd-colors_palettes .owl-nav button.owl-prev span, .crd-colors_palettes .owl-nav button.owl-next span{
    font-size: 20px;
    line-height: 1;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.crd-colors_palettes .owl-next.disabled, .crd-colors_palettes .owl-prev.disabled{
    opacity: 1 !important;
}

.crd-colors__header{
    padding-top: 48px;
}

.crd-colors__header h2{
    font-size: 34px;
    line-height: 30px;
}

.crd-colors__header p{
    font-size: 15px;
    line-height: 20px;
    color: var(--behr-black);
    padding-top: 8px;
}

.coordinating-colors-wrapper{
    position: relative;
}

.coordinating-colors{
    padding-bottom: 48px;
    position: relative;
}

@media screen and (min-width: 768px){
    .crd-colors_palettes .owl-stage{
        padding-left: 0 !important;
    }
}


@media screen and (min-width: 992px){
    .crd-colors_palettes .owl-stage{
        margin-left: 0px;
        padding-left: 0 !important;
    }
}

@media screen and (min-width: 1200px){
    .crd-colors__header h2{
        font-size: 2.813rem;
    }

    .crd-colors__header p{
        line-height: 24px;
        font-size: 1.125rem;
    }
}
.customer-service-header {
    position: relative;
    padding: 48px 0px;
}
.customer-service-header h1 {
    font-size: 2.813rem;
    line-height: 2.5rem;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    margin: 0px 0px 8px 0px;
}
.customer-service-header p {
    font-size: 0.938rem;
    line-height: 24px;
    letter-spacing: 0px;
    margin-bottom: 16px;
}
.customer-service-header a {
    color: #bd483c;
    text-decoration: none;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}
.customer-service-header a:hover {
    text-decoration: underline;
}
.customer-service-header__item img{
    margin: 0 auto;
}
.customer-service-header__item p {
    margin:0px 0px 16px 0px;
}
.customer-service-header__phone_chat {
    font-size: 34px !important;
    line-height: 30px !important;
    color: var(--behr-navy-primary)!important;
    font-family: var(--behr-heading-font) !important;
    font-weight: var(--behr-atf-500);
}

.customer-service-header .customer-service-header__dropdown-menu.show {
    display: block;
}

.customer-service-header__content-block {
    margin: 24px 0px;
}

.customer-service-header__content-block:last-of-type {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    margin-top: 24px;
}

.customer-service-header__item {
    text-align: center;
    display: grid;
    justify-content: center;
    padding: 12px 0px;
}
@media (min-width:1200px) {
    .customer-service-header h1 {
        font-size: 4.875rem;
        line-height: 75px;
    }
    .customer-service-header p {
        font-size: 1.125rem;
    }
}
@media (min-width:992px) {
    .customer-service-header__offset-lg-2 {
        margin-left: 16.66%;
    }
    .customer-service-header__wrapper {
        display: flex;
        flex-wrap: wrap;
        margin: 20px 0px;
    }
    .customer-service-header__item {
        width: 33.33%;
        text-align: center;
        display: grid;
        justify-content: center;
    }

    .customer-service-header__dropdown {
        width: 300px;
    }

    .customer-service-header__select-expert.btn {
        width: 100%;
    }
}
@media (max-width:991px) {
    .customer-service-header__item p {
        font-size:  0.938rem;
        margin-bottom: 16px;
    }
    .customer-service-header__item h1 {
        font-size: 2.813rem !important;
    }
    .customer-service-header__phone_chat {
        font-size: 1.875rem!important;
    }
}
.customer-service-header__select-expert.btn {
    border: 1px solid #ccc !important;
    padding: 5px 10px !important;
    font-size: 15px !important;
    width: 100% !important;
    height: auto;
    background-color: transparent !important;
    margin-bottom: 16px !important;
    border-radius: 25px !important;
}
.customer-service-header__select-expert.btn:after {
    display: inline-block !important;
    margin-left: 0.255em !important;
    vertical-align: 0.255em !important;
    content: "" !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
}

.customer-service-header__dropdown-menu {
    display: none;
}
.customer-service-header__dropdown-menu {
    position: absolute;
    top: auto;
    left: auto;
    z-index: 1000;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    transform: translate3d(5px, 0px, 0px)!important;
}

.customer-service-header__dropdown {
    position: relative;
    justify-content: center;
    width: 100%;
}

.customer-service-header .customer-service-header__dropdown .dropdown.btn-group {
    width: 100%;
}

.customer-service-header__dropdown ul {
    position: absolute;
    transform: translate3d(5px, -15px, 0px)!important;
    top: 100% !important;
    left: -4px !important;
    will-change: transform;
    float: left;
    min-width: 15rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    width: 100%;
}
.customer-service-header__dropdown li {
    list-style: none;
    padding: 0 10px;
}
.customer-service-header__dropdown img {
    vertical-align: middle;
    object-fit: contain;
}
.customer-service-header__dropdown .button_offline {
    display: inline-flex;
    align-items: flex-start;
}
.customer-service-header__dropdown .button_online {
    display: inline-flex;
}

.customer-service-header ul.dropdown-menu li {
    font-weight: var(--behr-bold);
}

.customer-service-header__dropdown-menu label {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    text-transform: uppercase;
}
@media (max-width:991px) {
    .customer-service-header__dropdown ul {
        width: 100%;
    }
}
.cf-search-color {
    position: relative;
}
.cf-search-color__content {
    margin-top: 7rem;
    background-color: #F6F5F0;
}
.cf-search-color__border-line::after {
    content: "";
    background: url(https://www.behr.com/binaries/content/gallery/behr-refresh-2021/brand-page/background_brown.jpg) no-repeat;
    background-size: 100% 20px;
    position: absolute;
    width: 100%;
    height: 20px;
}
.cf-search-color__wrapper {
    display: flex;
    width: 100%;
}
.cf-search-color__item {
    width: calc(100%/2);
    padding: 50px 0px;
}
.cf-search-color__item h2 {
    font-size: 45px;
    line-height: 45px;
}
.cf-search-color__item form {
    margin-top: 2rem;
}
.cf-search-color__item form input {
    width: 65%;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}
.cf-search-color__item form button {
    padding: 10px 40px;
    height: unset;
    margin-left: 10px;
}
.cf-color-chip__label {
    font-family: var(--behr-body-and-label-font--bold) ;
    font-weight: var(--behr-bold);
    font-size: 16px !important;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 20px;
}
@media (max-width:991px) {
    .cf-search-color__item form button {
        margin-top: 20px;
    }
}
@media (max-width:1199px) {
    .cf-search-color__item h2 {
        font-size: 34px;
        line-height: 30px;
    }
}
@media (max-width:767px) {
    .cf-search-color__wrapper {
        display: grid;
    }
    .cf-search-color__item {
        padding: 25px 0px;
        width: 100%;
    }
}
.cf-search-color__paint-primer {
    margin-top: -25%;
    position: relative;
}
.cf-search-color__mobile-image {
    display: none;
}
@media (max-width:1024px) {
    .cf-search-color__paint-primer {
        margin-top: -35%;
    }
}
@media (max-width:550px) {
    .cf-search-color__paint-primer {
        margin-top: -20%;
    }
}
@media (max-width:420px) {
    .cf-search-color__paint-primer {
        margin-top: -25% !important;
        margin-right: -5%;
    }
}
@media (max-width:767px) {
    .cf-search-color__paint-primer {
        margin-top: -15%;
    }
    .cf-search-color__mobile-image {
        display: block;
    }
    .cf-search-color__desktop-image {
        display: none;
    }
}
.cf-color-search__show-error {
    position: absolute;
    box-shadow: 10px 10px 20px rgb(0 0 0 / 25%);
    z-index: 999;
    top: 25%;
    margin-top: 1.5rem;
    animation: animateModal 1s;
    width: 35%;
}
@keyframes animateModal {
    0%   {top: 0%;}
    100% {top: 25%;}
}
  @media (min-width:1700px) and (max-width:1900px) {
    .cf-color-search__show-error {
        width: 30%;
    }
}
@media (min-width:1901px) and (max-width:2300px) {
    .cf-color-search__show-error {
        width: 25%;
    }
}
@media (min-width:2301px) {
    .cf-color-search__show-error {
        width: 20%;
    }
}
.cf-search-color__error-header {
    background: #ECECEC;
    padding: 15px 20px 55px 20px;
}
.cf-search-color__error-header h3 {
      float: left;
}
.cf-search-color__error-header p{
    font-size: 30px;
    margin: 0;
}
.cf-search-color__close {
    float: right;
    color: rgba(0,0,0,0.8);
    opacity: 0.6;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}
.cf-search-color__close:hover {
      cursor: pointer;
}
.cf-search-color__error-msg {
    padding: 30px 20px;
    background-color: white;
}
@media (max-width:1200px) {
    .cf-search-color__error-header h3 {
       font-size: 24px;
  }
}
@media (max-width:768px) {
    .cf-color-search__show-error {
        top: 37%;
    }
    @keyframes animateModal {
        0%   {top: 0%;}
        100% {top: 37%;}
    }
}
@media (max-width:767px) {
    .cf-search-color__error-header h3 {
       font-size: 24px;
  }
}
@media (max-width:768px) {
    .cf-color-search__show-error {
        width: 85%;
    }
}

.d-none {
    display: none;
}
.cf-search-color__invisible {
    visibility: hidden;
}
.cf-search-color__anchor {
    display: block; 
    position: relative; 
    top: -95px; 
    visibility: hidden;
}
.cf-color-chip {
    position: relative;
    padding: 50px 0px;
}
.cf-color-chip h2 {
    font-size: 45px;
    line-height: 45px;
}
.cf-color-chip p {
    font-size: 18px;
}
.cf-color-chip__wrapper {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(6,100fr);
    grid-gap: 0.5rem;
}
.cf-color-chip a {
    color: #bd483c;
    text-decoration: none;
    font-weight: var(--behr-bold);
    font-size: 15px;
}
.cf-color-chip a:hover {
    color: #465058;
    text-decoration: underline;
}
.cf-color-chip__item {
    position: relative;
    cursor: pointer;
    height: 180px;
}
.cf-color-chip__content {
    display: none;
    background: rgba(89, 89, 89, 1);
    color: white;
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 5px;
}
.cf-color-chip__item:hover .cf-color-chip__content {
    display: block;
}
.cf-color-chip__content p {
    font-size: 16px;
}
@media (max-width:1150px){
    .cf-color-chip__item {
        height: 155px;
    }
}
@media (max-width:1024px){
    .cf-color-chip__item {
        height: 150px;
    }
}
@media (max-width:991px) {
    .cf-color-chip__item {
        height: 140px;
    }
    .cf-color-chip__content p {
        font-size: 11px;
    }
    .cf-color-chip p {
        font-size: 0.938rem;
    }
}
@media (max-width:889px) {
    .cf-color-chip__item {
        height: 125px;
    }
}
@media (max-width:799px) {
    .cf-color-chip__item  {
        height: 115px;
    }
}
@media (max-width:767px) {
    .cf-color-chip__item {
        height: 200px;
    }
    .cf-color-chip__wrapper {
        grid-template-columns: repeat(3,100fr);
    }
}
@media (max-width:650px) {
    .cf-color-chip__item {
        height: 180px;
    }
}
@media (max-width:550px) {
    .cf-color-chip__item {
        height: 140px;
    }
}
@media (max-width:450px) {
    .cf-color-chip__item {
        height: 120px;
    }
}
@media (max-width:375px) {
    .cf-color-chip__item {
        height: 90px;
    }
}
.cf-color-chip__you-know h4{
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    margin-top: 3rem;
    color: #212529;
}
.cf-color-chip__you-know a {
    font-size: inherit;
}
.cf-color-chip__you-know {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
@media (max-width:1199px) {
    .cf-color-chip h2 {
        font-size: 2rem;
        line-height: 30px;
    }
}
.cf-color-chip__mobile {
    display: none;
}
@media (max-width:767px) {
    .cf-color-chip__you-know {
        width: 100%;
        text-align: left;
    }
    .cf-color-chip__desktop {
        display: none;
    }
    .cf-color-chip__mobile {
        display: block;
    }
}

.data-sheets {
    position: relative;
    padding: 24px 0px;
}
.data-sheets h2 {
    font-size: 2.125rem;
    line-height: 1.875rem;
    font-family: var(--behr-heading-font);
    padding: 0px 0px 24px 0px;
    font-weight: var(--behr-atf-500);
}

.heading-2.search-sds,
.data-sheets h2 {
	text-transform: none;
}

.data-sheets p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}
.data-sheets hr {
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}
@media (min-width:992px) and (max-width:1199px) {
  .data-sheets__tabcontent h3 {
    font-size: 1.5rem !important;
  }
}
@media (max-width:991px) {
  .data-sheets__tabcontent h3 {
    text-align: center;
    font-size: 1.5rem !important;
  }
  .data-sheets h2 {
    text-align: center;
  }
  .data-sheets__list li a:nth-child(2), .data-sheets__list li a:nth-child(3) {
    font-size: 1rem !important;
  }
}
/* Style the as inside the Tabs/Navigation for Service Form*/
.data-sheets__desktop {
    overflow: hidden;
    padding: 24px 0px;
    display: flex;
    flex-wrap: wrap;
  }
.data-sheets__desktop a {
  color: #465058;
  font-family: var(--behr-heading-font);
  margin-bottom: -1px;
  font-size: 1.25rem;
  line-height: 1.375rem;
  width: calc(100%/6);
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  padding: 10px 30px 10px 0px;
  text-transform: uppercase;
  display: flex;
  font-weight: var(--behr-atf-500);
  align-items: flex-end;
}
.data-sheets__desktop a:hover {
    text-decoration: none;
  }
.data-sheets__underline {
    border-bottom: 5px solid #465058 !important;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
.data-sheets__tabcontent {
  display: none;
  border-top: none;
  animation: fadeIn 1s;
}
.data-sheets__tabcontent h3 {
    font-size: 1.875rem;
    line-height: 2.1875rem;
    text-transform: uppercase;
    color: #465058;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    padding: 24px 20px 0px 0px
}
.hidden {
  display: none !important;
}
.data-sheets__tab-active {
  display: block !important;
}
#data-sheets__mobile {
  display: none;
  border-radius: 30px;
  margin: 24px 0px;
}
@media (max-width:991px) {
  #data-sheets__mobile {
    display: block;
    margin: 24px auto;
  }
  .data-sheets__desktop {
    display: none;
  }
}
.data-sheets__list {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 10px;
    border-top: 2px solid rgba(0,0,0,.125) !important;
}
.data-sheets__list li {
    border-bottom: 1px solid rgba(0,0,0,.125) !important;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 12px 20px;
    align-items: center;
}
.data-sheets__list li a:nth-child(1) {
    width: 45%;
    text-align: left;
    font-size: 1.25rem;
    line-height: 1.375rem;
    text-transform: uppercase;
    color: #465058;
    font-family: var(--behr-heading-font);
    text-decoration: none;
    font-weight: var(--behr-atf-500);
    padding: 0px 20px 0px 0px;
}
.data-sheets__list li a:nth-child(2) {
    width: 15%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.125rem;
    text-transform: capitalize;
    color: #bd483c;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    text-decoration: none;
}
.data-sheets__list li a:nth-child(3) {
    width: 20%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.125rem;
    text-transform: capitalize;
    color: #bd483c;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    text-decoration: none;
}
.data-sheets__list li select {
    width: 20%;
    border-radius: 30px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.125rem;
    color: #495057;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    text-decoration: none;
}
.custom-select-arrow {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: var(--behr-normal);
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") no-repeat right 0.75rem center/8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    appearance: none;
  }
  @media (min-width:768px) and (max-width:991px) {
    .data-sheets__list li a:nth-child(1) {
        width: 100%;
        margin: 10px 0px 16px 0px;
    }
    .data-sheets__list li a:nth-child(2) {
        width: 15%;
        padding-right: 1rem;
        margin:10px 0px;
    }
    .data-sheets__list li a:nth-child(3) {
        padding-right: 1rem;
        width: 25%;
        margin: 10px 0px;
    }
    .data-sheets__list li select {
        width: 40%;
        max-width: 560px;
    }  
    .data-sheets__list li {
      padding: 15px 20px;
    }
  }
  @media (max-width:767px) {
    .data-sheets__list li a:nth-child(1) {
        width: 100%;
        margin-bottom: 20px;
    }
    .data-sheets__list li a:nth-child(2) {
        width: 40%;
        margin-bottom: 20px;
        font-size: 0.75rem !important;
    } 
    .data-sheets__list li a:nth-child(3) {
        width: 60%;
        margin-bottom: 20px;
        font-size: 0.75rem !important;
    } 
    .data-sheets__list li select {
        width: 100%;
    } 
    .data-sheets__list li {
      padding: 15px 20px;
    }
  }
  .disable-link {
    color: #808080 !important;
    cursor: default !important;
    font-weight: var(--behr-bold);
}
.data-sheets__active {
  border-bottom: 5px solid var(--behr-navy-primary) !important;
}

/**  For Search  **/

.sds-search-wrapper {
  max-width: 590px;
}

.sds-search-wrapper #txt-sds {
  padding-right: 50px;
  border-radius: 5px;
}
.sds-search-wrapper #btn-sds {
  font: 0/0 a;
  background-image: url(/binaries/content/gallery/behrbrxm/search-gray.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  background-color: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  margin-left: -50px;
  margin-right: 10px;
  z-index: 5;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 0;
}
.behr-and-lead-paint .behr-history .body-copy-2 {
  margin-bottom: 1rem;
}

.sup-fnt {
  font-size: 15px !important;
}
/* .sup-baseline {
  vertical-align: baseline;
} */
.whychoose .row .legal {
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}
.designer-image-gallery {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.designer-image-gallery img {
    width: 100%;
}

.designer-image-gallery__single {
    width: 100%;
}

.designer-image-gallery__single div {
    width: 100%;
}

.designer-image-gallery__double {
    display:flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
}

.designer-image-gallery__double div {
    flex: 1;
    overflow: hidden;
}

.designer-image-gallery__single-double {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
}

.designer-image-gallery__single-double__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.designer-image-gallery__single-double__img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.designer-image-gallery__single-double__img img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.designer-image-gallery__single-double__img.designer-image-gallery__single-double__rowspan {
    flex: 2;
}

.designer-image-gallery__triple {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

@media screen and (min-width: 992px){
    .designer-image-gallery__double {
        flex-direction: row;
    }

    .designer-image-gallery__single-double {
        flex-direction: row;
    }

    .designer-image-gallery__triple {
        flex-direction: row;
    }

    .designer-image-gallery__triple div {
        flex: 1 1 33%;
    }
}
.ds-featured-colors-list{
    list-style: none;
}

.designer-story-detail{
    position: relative;
}

.designer-story-detail .ds-featured-colors__name a {
    color: var(--behr-navy-primary) !important
}

.designer-story-detail .two-col-with-sidebar__main.container, .designer-story-detail .designer-story-footer > .container {
    padding: 0 0 0 0 !important;
    margin: 0 0 0 0 !important;
}

.designer-story-detail.ds-authoring .two-col-with-sidebar__main{
    height: auto !important;
}

.two-col-with-sidebar, .designer-story-detail .two-col-with-sidebar{
    padding-top: 20px !important;
    margin-bottom: 40px;
}

.ds-main{
    padding-bottom: 40px;
}

.designer-stories .designer-stories-header-previous--desktop{
    display: none;
}

.height__auto{
    height: auto !important;
}

.designer-story-detail .rte p, .designer-story-detail p{
    font-size: 1.125rem;
}

.two-col-with-sidebar__header-previous{
    margin-bottom: 40px;
}

.designer-story-detail .two-col-with-sidebar__header-image img{
    width: 100%;
}

.designer-story-detail .two-col-with-sidebar__header-image{
    margin-left: -18px;
    margin-right: -18px;
}

.two-col-with-sidebar__header-previous a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-red-primary);
    font-size: .938rem;
}

.two-col-with-sidebar__header-previous a:hover{
    color: var(--behr-red-primary) !important;
    text-decoration: none;
}

.designer-story-detail .rte.container{
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 40px;
}

.two-col-with-sidebar__header-previous a span{
    margin-right: 10px;
}

.designer-story-detail .two-col-with-sidebar__header h1{
    line-height: 40px;
}

.two-col-with-sidebar__header h1{
    font-size: 2.813rem;
    line-height: 40px;
    margin-bottom: 8px;
}

.designer-story-detail .two-col-with-sidebar__header-description{
    max-width: 790px;
}

.two-col-with-sidebar__header-description{
    font-size: 1.125rem;
    color: var(--behr-black);
    line-height: 24px;
    margin-bottom: 16px;
}

.two-col-with-sidebar__header-author{
    color: var(--behr-black);
    font-size: .938rem;
    line-height: 18px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    display: flex;
}

.author-company span{
    margin: 0 6px;
}

.author-company span, .two-col-with-sidebar__header-author .author-company{
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    margin-bottom: 0;
}

.two-col-with-sidebar__header-author .author-name{
    margin-bottom: 0;
}

.two-col-with-sidebar__header-image{
    margin-top: 40px;
    margin-bottom: 40px;
}

.two-col-with-sidebar__left h2{
    font-size: 2.125rem;
    line-height: 30px;
}

.ds-featured-colors-list{
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    max-width: 522px;
}

.ds-featured-colors-list li { 
    max-width: 77px;
    margin-right: 10px;
    text-align: center;
    flex: 0 0 16.67%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    cursor: pointer;
}

 .ds-featured-colors-list li:last-child{
     margin-right: 0;
}

.ds-featured-colors__swatch{
    width: 77px;
    height: 77px;
    margin-bottom: 8px;
}

.designer-story-detail .ds-featured-colors-list li .ds-featured-colors__name{
    color: var(--behr-navy-primary);
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    text-transform: uppercase;
    font-size: .813rem;
}

.ds-featured-colors__colorId{
    font-size: .938rem;
    color: var(--behr-black);
}

.designer-story-detail .two-col-with-sidebar__aside{
border-bottom: 1px solid #D8D8D8;
margin-bottom: 40px;
padding-bottom: 30px;
}

.ds-sidebar__levels ul{
    display: flex;
}

.ds-sidebar__levels ul li{
    list-style-type: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--behr-grey-light);
    border-radius: 50%;
    margin-right: 4px;
}

.ds-sidebar__levels{
    margin-bottom: 24px;
}
.ds-levels .ds-sidebar__levels:last-child{
    margin-bottom: 40px;
}

.ds-sidebar__levels label{
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-black);
    line-height: 20px;
    margin-bottom: 8px;
    display: block;
    font-size: .938rem;
}

.ds-sidebar__levels ul li.is--on{
    background: var(--behr-red-primary);
    border: 1px solid var(--behr-red-primary);
}

.two-col-with-sidebar__aside h3{
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 25px;
}

.ds-sidebar__list{
    margin-bottom: 40px;
}

.ds-sidebar__list li, .ds-sidebar__home-depot p{
    color: var(--behr-black);
    font-size: 1.125rem;
    line-height: 24px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    list-style: none;
    margin-bottom: 10px;
}

.ds-sidebar__list li:last-child{
    margin-bottom: 0;
}

.ds-sidebar__home-depot img{
    margin-bottom: 16px;
}

@media only screen and (max-width: 767px){
    .designer-story-detail .two-col-with-sidebar__main{
        height: auto !important;
    }
}

@media only screen and (min-width: 768px){
    .designer-stories .designer-stories-header-previous--mobile{
        display: none !important;
    }

    .designer-stories .designer-stories-header-previous--desktop{
        display: flex;
    }

    .designer-story-detail .two-col-with-sidebar__header h1{
        line-height: 75px;
    }

    .designer-story-detail .two-col-with-sidebar__header-image{
        margin-left: -29px;
        margin-right: -29px;
    }

    .two-col-with-sidebar__header h1{
        font-size: 4.688rem;
    }

    .two-col-with-sidebar__aside h3{
        font-size: 1.875rem;
    }

    .ds-sidebar h3{
        font-size: 1.875rem;
    }

    .ds-featured-colors__name{
        font-size: .938rem;
    }

    .ds-featured-colors__swatch{
        width: 122px;
        height: 122px;
    }

    .ds-featured-colors-list{
        max-width: 792px;
    }

    .ds-featured-colors-list li{
        max-width: 122px;
    }

    .two-col-with-sidebar__left h2{
        font-size: 2.813rem;
    }

    .two-col-with-sidebar__main.container{
        padding: 0 0 0 0 !important;
        margin: 0 0 0 0 !important;
        position: relative;
    }

    .ds-main {
        display: flex;
        justify-content: space-between;
        padding-top: 24px;
        margin-bottom: 40px;
        position: relative;
    }

    .ds-main.container{
        margin-bottom: -13px !important;
    }

    .designer-stories  .two-col-with-sidebar__left, .designer-stories  .two-col-with-sidebar__rte{
        width: 76%;
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        padding-top: 0;
        margin-bottom: 0;
        padding-right: 110px;
    }

    .designer-stories  .two-col-with-sidebar__aside {
        max-width: 25%;
        padding-top: 0;
        position: absolute;
        right: 0;
        top: 0;
        border-bottom: none;
    }

    .two-col-with-sidebar, .designer-story-detail .two-col-with-sidebar{
        padding-top: 40px !important;
    }

    .two-col-with-sidebar .two-col-with-sidebar-header{
        max-width: 790px !important;
    }

    .two-col-with-sidebar-header h1{
        font-size: 4.875rem;
        line-height: 75px;
    }

}


@media only screen and (min-width: 992px){
    .designer-story-detail .two-col-with-sidebar__header-image{
        margin-left: 0;
        margin-right: 0;
    }
}
.two-col-with-sidebar__rte p, .two-col-with-sidebar__rte li {
    font-size: 18px;
    line-height:24px
}
.two-col-with-sidebar__rte p strong{
    font-size:15px;
    font-weight:var(--behr-bold);
}
@media (max-width:767px) {
    .two-col-with-sidebar__rte p, .two-col-with-sidebar__rte li {
        font-size: 15px;
        line-height:24px
    }
    .two-col-with-sidebar__main th {
        font-size: 14px;
    }
    .rte__wrapper tr td, .rte__wrapper th {
        padding: 0px 2px;
        word-break: break-word;
    }
}
@media (max-width:1199px) {
    h1 {
        font-size: 45px !important;
        line-height: 40px !important;
    }
}

.designer-story-footer {
    position: relative;
    padding-top: 40px;
    padding-bottom: 80px;
}

.designer-story-footer h2 {
    font-size: 2.125rem;
    line-height: 1.875rem;
    margin-bottom: 16px;
}
.designer-story-footer p {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 18px;
    line-height: 24px;
}

.designer-story-footer__list-wrapper {
    margin-top: 34px;
    margin-bottom: 24px;
    margin-left: 20px;
}

/* .designer-story-footer a {
    color: var(--berh-black);
} */

a.designer-store-footer__share {
    height: 40px;
    margin-top: 40px;
}

.designer-store-footer__share {
    margin-top: 40px;
}

.designer-story-footer h3 {
    font-size: 30px;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
}

.designer-story-footer_buy-online {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 18px;
    line-height: 24px;
    color: #212529;
    text-decoration: underline;
}

.designer-story-footer ul {
    margin: 2%;
    list-style-position: outside;
}

.designer-story-footer ul li {
    font-size: 18px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    padding-left: 3px;
}

.designer-story-footer__profile-wrapper {
    margin-top: 40px;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
    padding: 40px 0px;
}

.designer-story-footer__profile {
    display: flex;
    gap: 5%;
}

/*  */

.designer-story-footer__profile-image {
    max-width: none;
    /* height: 80px;
    width: 80px; */
}

.designer-story-footer__profile-image img {
    max-height: 100%;
    border-radius: 50%;
    object-fit: cover;
    width: 80px;
    height: 80px;
}
/*  */
.designer-story-footer__profile-content {
    width: 80%;
    flex-grow: 1;
}

.designer-story-footer__profile-wrapper a {
    text-decoration: underline;
}

.designer-story-footer__legal {
    font-size: 15px!important;
    text-transform: uppercase;
    font-weight: var(--behr-bold) !important;
    font-family: var(--behr-body-and-label-font--bold) !important;
    color:var(--behr-navy-primary)!important;
}

.designer-story-footer__share-icon {
    margin-left: 20%;
}

@media only screen and (min-width: 768px){
    .designer-story-footer__profile-image img{
        width: 190px;
        height: 190px;
        max-width: 190px;
        max-height: 190px;
    }
}

@media (max-width:991px) {
    .designer-story-footer__profile-content {
        width: 70%;
    }
}

@media only screen and (min-width: 992px) {
    .designer-story-footer {
        padding-bottom: 100px;
    }

    .designer-story-footer__profile-wrapper {
        margin-top: 80px;
    }

    .designer-story-footer__profile-image {
        width: auto;
        /* height: 190px;
        width: 190px; */
    }
}
.designer-story-listing {
    position: relative;
}

.designer-story-listing section {
    padding-top: 80px!important;
    padding-bottom: 80px!important;
    position: relative;
}

.designer-story-listing__flex-section {
    display: flex;
    justify-content: center;
}

a.designer-story-listing__card-contents {
    text-decoration-color: var(--behr-black);
    text-decoration: none;
}

/*************************/
/*       Header          */
/*************************/
.designer-story-listing__header {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.designer-story-listing__header-image-spacer {
    display: none;
}

.designer-story-listing__hero {
    height: 0;
    padding-bottom: 90%;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
@media (min-width:1200px) and (max-width:1440px) {
    .designer-story-listing__hero {
        background-position: -1250px 0px;
    }
}
@media (min-width:992px) and (max-width:1199px) {
    .designer-story-listing__hero {
        background-position: -1275px 0px;
    }
}
.designer-story-listing section.designer-story-listing__header-section {
    padding-top: 40px!important;
    justify-content: flex-start;
}

.designer-story-listing section.designer-story-listing__header-section.designer-story-listing__active-filter {
    padding-bottom: 0px!important;
}

.designer-story-listing__header-title {
    line-height: 2.5rem;
    font-size: 2.813rem;
    margin-top: 40px;
    margin-bottom: 24px;
    color: var(--behr-navy-primary);
    font-family: var(--behr-heading-font);
    text-transform: uppercase;
    font-weight: var(--behr-atf-500);
}

.designer-story-listing__header-logo {
    height: 46.67px;
    width: 160px;
}

.designer-story-listing__header-desc {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--behr-navy-primary);
    margin-bottom: 40px;
}

.designer-story-listing__header-filter-wrapper {
    justify-content: space-between;
}


.designer-story-listing__header-filter-btn {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: var(--behr-black);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--behr-grey-light);
}


.designer-story-listing__header-filter-options {
    list-style-type: none;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 0.9375rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    color: var(--behr-navy-primary);
    border-radius: 25px;
    border: 1px solid var(--behr-grey-light);
    flex-direction: column;
    overflow: hidden;
    display: none;
}

.designer-story-listing__header-filter-option {
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.5s;
}

.designer-story-listing__header-filter-option:hover {
    background-color: var(--behr-grey-light);
}


.designer-story-listing__header-filter-wrapper.desinger-story-listing__active-nav-bar .designer-story-listing__header-filter-btn {
    border-radius: 25px 25px 0px 0px;
}

.designer-story-listing__header-filter-wrapper.desinger-story-listing__active-nav-bar .designer-story-listing__header-filter-options {
    border-radius: 0px 0px 25px 25px;
    display: flex;
}

.designer-story-listing__header-filter-wrapper.desinger-story-listing__active-nav-bar .designer-story-listing__header-caret {
    transform: rotate(180deg);
}

/* Featured story */
.designer-story-listing__featured-background {
    background: var(--behr-beige);
}

.designer-story-listing__featured {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.designer-story-listing__featured-image {
    flex: 1 1 60%;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.designer-story-listing__featured-info {
    flex: 1 1 57%;
}

.designer-story-listing__blue-badge {
    width: 150px;
    height: 32px;
    background-color: var(--behr-navy-primary);
    border-radius: 4px;
    color: #fff;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.designer-story-listing__info-badge {
    margin-bottom: 24px;
}

.designer-story-listing__featured-info-title {
    line-height: 42px;
    margin-bottom: 24px;
}

.designer-story-listing__featured-info-author {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-bottom: 8px;
    color: var(--behr-black);
}

.designer-story-listing__featured-info-author {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-bottom: 8px;
}

.designer-story-listing__featured-info-desc {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--behr-navy-primary);
    margin-bottom: 24px;
}

.designer-story-listing__featured-info-link a {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 0.9375rem;
    line-height: 1.125rem;
    color: var(--behr-red-primary);
    margin-bottom: 24px;
}


/*************************/
/* Designer Listing Card */
/*************************/

.designer-story-listing__card {
    float: left;
    height: auto;
    margin-bottom: 20px;
    width: 100%;
}

.designer-story-listing__grid-sizer { 
    width: 100%; 
}

/* clear fix */
.designer-story-listing__grid:after {
    content: '';
    display: block;
    clear: both;
}

.designer-story-listing__card-contents__info {
    padding: 0px 20px 0px 20px;
    margin-top: -15px;
}

.designer-story-listing__card-contents__info-category {
    margin-bottom: 40px;
    text-transform: uppercase;
}

.designer-story-listing__card-contents__info-title {
    margin-bottom: 15.99px;
    font-family: var(--behr-heading-font);
    font-size: 2.125rem;
    line-height: 1.875rem;
    color: var(--behr-navy-primary);
    font-weight: var(--behr-atf-500);
    text-transform: uppercase;
}

.designer-story-listing__card-contents__info-author-company {
    margin-bottom: 8px;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-bottom: 8px;
    color: var(--behr-black);
}

.designer-story-listing__card-contents__info-desc {
    font-family: var(--behr-body-and-label-font);
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--behr-navy-primary);
    margin-bottom: 40px;
    font-weight: var(--behr-normal);
}

.designer-story-listing__card-contents {
    background: white;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    transition: all .1s ease-in;
}

.designer-story-listing__card-contents:hover {
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

.designer-story-listing__card-contents .designer-story-listing__card-contents__thumb {
    padding-bottom: 40%;
    background-size: cover;
    background-position: center center;
}

.designer-story-listing__load-more__wrapper {
    display: flex;
    justify-content: center;
}

.designer-story-listing__load-more__btn {
    width: 172px;
    margin-top: 40px;
}


@media all and (min-width: 768px) {
    .designer-story-listing__grid-sizer { 
        width: 50%; 
    }

    .designer-story-listing__card { 
        width: 48%; 
    }

    .designer-story-listing__hero {
        padding-bottom: 75%;
    }
    
}


@media all and (min-width: 992px) {
    .designer-story-listing section {
        padding-top: 160px!important;
        padding-bottom: 160px!important;
    } 

    .designer-story-listing__featured {
        flex-direction: row;
    }

    .designer-story-listing__featured-image {
        padding-bottom: 500px;
    }

    .designer-story-listing__header-title {
        line-height: 4.688rem;
        font-size: 4.875rem;
        margin-top: 64px;
        margin-bottom: 24px;
        color: var(--behr-navy-primary);
        font-family: var(--behr-heading-font);
        font-weight: var(--behr-atf-500);
    }

    .designer-story-listing section.designer-story-listing__header-section {
        padding-top: 160px!important;
        padding-bottom: 160px!important;
    }

    .designer-story-listing__header-section {
        min-height: 700px;
        max-height: 750px;
    }

    .designer-story-listing__header-logo {
        height: 70px;
        width: 240px;
    }

    .designer-story-listing__header-filter-btn {
        display: none !important;
    }
    .designer-story-listing__header-filter-options {
        list-style-type: none;
        font-family: var(--behr-body-and-label-font--bold);
        font-weight: var(--behr-bold);
        border: none;
        border-radius: 0px!important;
        flex-direction: row;
        color: var(--behr-navy-primary);
        vertical-align: top;
        white-space: nowrap;
        margin-right: 0px;
        justify-content: space-between;
    }
    
    .designer-story-listing__header-filter-option {
        cursor: pointer;
        padding: 0px;
        transition: all 0.5s;
        border-bottom: 1px solid transparent;
    }

    .designer-story-listing__header-filter-option:hover {
        background-color: inherit;
        border-bottom: 1px solid var(--behr-navy-primary);
    }

    .designer-story-listing__active-item {
        border-bottom: 1px solid var(--behr-navy-primary);
    }

    .designer-story-listing__header-info {
        width: 50%;
    }

    .designer-story-listing__header-image {
        display: block;
        width: 100%;
        padding-bottom: inherit;
        position: inherit;
    }
    
    .designer-story-listing__header-image {
        position: absolute;
        top: 0;
        right: 0px;
        width: 45%;
        height: 830px;
        overflow: hidden;
        z-index: 1;
        max-height: inherit;
    }


    .designer-story-listing__hero {
        height: 100%;
    }

    .designer-story-listing__grid-sizer { 
        width: 33.33%; 
    }

    .designer-story-listing__card { 
        width: 31%; 
    }

    .designer-story-listing__header-filter-wrapper {
        display: flex!important;
    }

    .designer-story-listing__header-filter-options {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    
    /* .designer-story-listing__header-filter-options li {
        margin-right: 35px
    } */

    .designer-story-listing__header-filter-options li:last-child {
        margin-right: 0px;
    }

    .designer-story-listing__load-more__btn {
        margin-top: 80px;
    }
}

@media all and (min-width: 1200px) {
    .designer-story-listing__header-filter-options {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        gap: 35px
    }
}
.designer-story-listing__header-filter-btn  span.designer-story-listing__active-nav-text {
    padding-right: 1.5rem;
}
.featured-stories-comp {
  padding-top: 24px;
  padding-bottom: 32px;
  position: relative;
  background-color: var(--behr-beige);
}

.featured-stories-comp a {
  text-decoration: none;
}

.featured-stories-comp__wrapper--row {
  display: flex;
  flex-direction: row;
}

.featured-stories-comp__wrapper--row:last-of-type {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.featured-stories-comp__wrapper--col-3,
.featured-stories-comp__wrapper--col-4,
.featured-stories-comp__wrapper--col-8,
.featured-stories-comp__wrapper--col-9,
.featured-stories-comp__wrapper--col {
  float: left;
}

.featured-stories-comp__wrapper--col-8 {
  max-width: 66.666667%;
  flex: 0 0 66.666667%;
}

.featured-stories-comp__wrapper--col {
  max-width: 100%;
  flex: 0 0 100%;
}

.featured-stories-comp__wrapper--col-9 {
  max-width: 75%;
  flex: 0 0 75%;
}

.featured-stories-comp__wrapper--col-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

.featured-stories-comp__wrapper--col-4 {
  max-width: 33.333333%;
  flex: 0 0 33.333333%;
  text-align: right;
}

.featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col-8 h2 {
  font-size: 1.5rem;
  line-height: 2.1875rem;
}

.featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col-8 p {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  letter-spacing: 0;
  font-weight: var(--behr-normal);
  margin-bottom: 1rem;
}

.featured-stories-comp .d-flex {
  display: flex;
}

.featured-stories-comp .align-items-center {
  align-items: center;
}

.featured-stories-comp .img-fluid {
  max-width: 100%;
  height: auto;
}

.featured-stories-comp .float-right {
  float: right !important;
}

.featured-stories-comp .item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.featured-stories-comp a.custom-red {
  font-size: 0.9375rem;
  color: var(--behr-red-primary);
  text-align: center;
  padding-top: 1.5rem;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
}

.featured-stories-comp .owl-theme .owl-nav.disabled+.owl-dots {
  margin: unset;
  position:relative;
}

.featured-stories-comp .owl-dots button{
  background: none !important;
  border: none !important;
}

.featured-stories-comp .owl-theme .owl-dots .owl-dot.active span{
  background: #000 !important;
}

.featured-stories-comp .owl-theme .owl-dots .owl-dot span{
  background: #fff !important;
  border: 1px solid #000;
  height: 11px;
  width: 11px;
}

.featured-stories-comp__wrapper--col a:hover{
  text-decoration: underline;
}

.featured-stories-comp.cta-bottom .anchor-button:hover, .featured-stories-comp.cta-top .anchor-button:hover{
  text-decoration: none;
}

.featured-stories-comp .body-copy-2 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  letter-spacing: 0;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

.featured-stories-comp__wrapper--desktop {
  display: block;
  text-align: right;
}

.featured-stories-comp__wrapper--desktop a {
  font-size: 0.8125rem;
}

.featured-stories-comp__wrapper--mobile {
  display: none;
}

.cta-bottom .featured-stories-comp__wrapper--col.description {
  padding-right: 20em;
}

.featured-stories-comp.cta-bottom {
  background-color: white;
  padding-top: 80px;
  padding-bottom: 0;
}

.cta-bottom .justify-between {
  justify-content: space-between;
}

.cta-bottom .justify-end {
  padding: 25px 0px;
  justify-content: end;
}

.cta-bottom .featured-stories-comp__wrapper--heading .featured-stories-comp__wrapper--row:last-of-type {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.cta-bottom .no-gutters {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.cta-bottom .featured-stories-comp__wrapper h2 {
  font-size: 2.8125rem;
  line-height: 2.5rem;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.cta-bottom .flex-wrap {
  flex-wrap: wrap;
  flex-direction: column;
}

.cta-bottom .featured-stories-comp__wrapper--heading .align-items-center {
  align-items: flex-start !important;
}

.cta-bottom .featured-stories-comp__wrapper--heading p,
.cta-bottom .featured-stories-comp__wrapper--heading pre {
  padding-right: 20em;
}

@media screen and (min-width: 768px) {
  .featured-stories-comp .owl-stage {
    padding-left: 0 !important;
  }

  .featured-stories-comp p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
  }

  .featured-stories-comp .owl-carousel .owl-stage {
    padding-left: 0 !important;
  }
}

@media screen and (min-width: 1200px) {
  .featured-stories-comp p {
    font-size: 1.125rem;
  }

  .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col-8 h2 {
    font-size: 1.875rem;
  }

  .featured-stories-comp a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1200px) {
  .cta-bottom .featured-stories-comp__wrapper h2 {
    font-size: 2.125rem;
    line-height: 1.875rem;
  }

  .cta-bottom .featured-stories-comp__wrapper p {
    font-size: 0.9375rem;
  }

  .cta-bottom .featured-stories-comp__wrapper a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .featured-stories-comp__wrapper--mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .featured-stories-comp a.custom-red {
    font-size: 0.75rem;
  }

  .featured-stories-comp .body-copy-2 {
    font-size: 0.75rem;
  }

  .featured-stories-comp .owl-stage {
    padding-left: 0px !important;
  }

  .featured-stories-comp__wrapper--desktop {
    display: none;
  }

  .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col-8 h2 {
    font-size: 1.5rem;
    line-height: 1.5625rem;
  }

  .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col-9 {
    max-width: 100%;
    flex: 0 0 100%
  }

  .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col-9 p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
  }

  .featured-stories-comp__wrapper--mobile .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col {
    text-align: center;
    width: 100%;
  }

  .featured-stories-comp__wrapper--mobile .featured-stories-comp__wrapper--row {
    width: 100%;
    padding: 0;
  }

  .featured-stories-comp__wrapper--mobile .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col img {
    margin: auto;
    float: unset !important;
    width: 75%;
    height: auto;
  }

  .featured-stories-comp__wrapper--mobile .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col a {
    width: 75%;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .cta-bottom .featured-stories-comp__wrapper--heading p {
    padding-right: 0;
  }

  .cta-bottom .justify-between {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-bottom.featured-stories-comp {
    padding-bottom: 80px;
  }

  .cta-bottom .featured-stories-comp__wrapper--content--bottom .featured-stories-comp__wrapper--row .featured-stories-comp__wrapper--col {
    padding-bottom: 0;
  }
}
div.fifty-fifty--margin-large:first-child{
  padding-top: 80px !important;
}

div.fifty-fifty--margin-small:first-child{
  padding-top: 16px !important;
}

.fifty-fifty--margin-large{
  padding-bottom: 80px !important;
}

.fifty-fifty--margin-default{
  padding-top: 64px;
  padding-bottom: 54px;
}

.fifty-fifty--margin-small{
  padding-bottom: 16px !important;
}

.fifty-fifty-image-text{
    position: relative;
}

.fifty-fifty-image-text h2, .fifty-fifty-image-text h1{
  font-size: 2.125rem;
  line-height: 75px;
}

.fifty-fifty-image-text p {
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--behr-normal);
  font-family: var(--behr-body-and-label-font);
  margin-bottom: 0px;
  margin-top: 10px;
}
.fifty-fifty-image-text .button{
    margin-top: 32px;
    max-width: fit-content;
}
.fifty-fifty-image-text .fifty-fifty-image-text__content {
    display: flex;
    flex-direction: column;
}
.fifty-fifty-image-text__left-content{
  margin-bottom: 40px;
}
.fifty-fifty-image-text__right-content-video{
  position: relative; 
  padding-bottom: 56.25%; 
  padding-top: 30px; 
  height: 0; 
  overflow: hidden;
}
.fifty-fifty-image-text__right-content-video iframe{
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
}
.fifty-fifty-image-text__right-content{
  height: 100%;
}
@media (min-width:992px) {
  .fifty-fifty-image-text .fifty-fifty-image-text__content{
    flex-direction: row;
    justify-content: space-between;
  }

  .fifty-fifty-image-text__left-content, .fifty-fifty-image-text__right-content{
    flex: 0 0 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .fifty-fifty-image-text__left-content{
    margin-bottom: 0;
  }

  .fifty-fifty-image-text h2, .fifty-fifty-image-text h1{
    font-size: 2.813rem;
  }

  .fifty-fifty--margin-default{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width:991px) {
  #section-responsibility .image-text-right-responsibility {
    padding-left: 15px !important;
  }
}
/**  C004 - Featured Content Banner - Start **/
.featured-content-banner {
	position: relative;
}

.featured-content-banner {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

.featured-content-banner__text-wrapper h2,
.featured-content-banner__text-wrapper h3,
.featured-content-banner__text-wrapper p {
	color: white;
}

.featured-content-banner__text-wrapper p {
	letter-spacing: 0;
	font-size: 1.125rem;
	line-height: 1.375rem;
}

.featured-content-banner__text-wrapper p+p {
	letter-spacing: 0;
	margin-top: 24px;
}

.featured-content-banner--half .featured-content-banner__text-wrapper h3 {
	font-size: 1rem;
	line-height: 2rem;
	font-family: var(--behr-body-and-label-font);
	font-weight: var(--behr-normal);
	text-transform: none;
	margin-bottom: 8px;
}

.featured-content-banner__left-content a {
	font-size: 0.9375rem;
	line-height: 1.375rem;
	margin-top: 40px !important;
}

.featured-content-banner__wrapper--row {
	display: flex;
	width: 100%;
}

.featured-content-banner__text-wrapper h2 {
	font-size: 2.125rem;
	line-height: 1.875rem;
	margin-bottom: 8px;
}

.featured-content-banner__left-content {
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 52px 20px;
}

.featured-content-banner--half .featured-content-banner__wrapper--row .featured-content-banner__left-content {
	flex: 1 0 50%;
	max-width: 50%;
}

.featured-content-banner--half .featured-content-banner__wrapper--row .featured-content-banner__image-wrapper {
	flex: 1 0 50%;
	max-width: 50%;
}

.featured-content-banner--two-thirds a {
	margin-bottom: 4rem;
	margin-top: 1.5rem;
	font-size: 1rem;
}

.image-left .featured-content-banner__image-wrapper img {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.image-right .featured-content-banner__image-wrapper img,
.featured-content-banner__image-wrapper img {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.featured-content-banner--two-thirds .featured-content-banner__image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.image-left.featured-content-banner--two-thirds .featured-content-banner__image-wrapper img {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.featured-content-banner__left-content {
	padding-bottom: 1.5rem;
}

@media (min-width: 1200px) {
	.image-left .featured-content-banner__wrapper--row {
		flex-direction: row-reverse;
	}

	.featured-content-banner__left-content {
		/* padding: 64px 42px 38px 20px; */
		padding: 0 1.5rem 4rem 1.5rem;
		padding-top: 48px;
		justify-content: space-around;
	}
}

@media (max-width: 1199px) {
	.featured-content-banner--two-thirds {
		padding: 52px 20px;
	}

	.featured-content-banner--half {
		padding: 52px 20px 113px;
	}

	.featured-content-banner__text-wrapper p {
		font-size: 0.75rem !important;
	}
}

.featured-content-banner__wrapper {
	max-width: 1190px;
	background-color: var(--behr-navy-primary);
	border-radius: 10px;
}

.featured-content-banner__wrapper img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.featured-content-banner__button-wrapper.button.black-primary {
	border: 1px solid white;
	width: fit-content;
}

@media only screen and (min-width: 992px) {
	.featured-content-banner__desktop-img {
		display: block !important;
	}

	.featured-content-banner__mobile-img {
		display: none !important;
	}

	.featured-content-banner__wrapper--row .featured-content-banner__left-content {
		flex: 1 0 35%;
		max-width: 35%;
	}

	.featured-content-banner__text-wrapper h2 {
		margin-bottom: 8px;
	}

	.featured-content-banner__text-wrapper p {
		font-size: 1.125rem;
		line-height: 1.5rem;
		padding-right: 6rem !important;
	}

	.featured-content-banner__left-content a {
		margin-bottom: 40px !important;
	}

	.featured-content-banner__image-wrapper {
		flex: 1 0 65%;
		max-width: 65%;
	}

	.featured-content-banner__text-wrapper {
		margin-bottom: auto;
	}

	.featured-content-banner--two-thirds .featured-content-banner__left-content {
		flex: 0 0 66.6666%;
		max-width: 66.6666%;
		padding-bottom: 0;
	}

	.featured-content-banner--two-thirds .featured-content-banner__image-wrapper {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
}

@media only screen and (max-width: 991px) {
	.featured-content-banner__desktop-img {
		display: none !important;
	}

	.featured-content-banner__mobile-img {
		display: block !important;
	}

	.featured-content-banner__wrapper--row {
		flex-direction: column-reverse;
	}

	.featured-content-banner__wrapper a {
		margin-bottom: 0;
	}

	.featured-content-banner__wrapper h2 {
		margin-top: 0;
	}

	.featured-content-banner--half .featured-content-banner__wrapper--row .featured-content-banner__left-content {
		flex: 1 0 100%;
		max-width: 100%;
	}

	.featured-content-banner--half .featured-content-banner__wrapper--row .featured-content-banner__image-wrapper {
		flex: 1 0 100%;
		max-width: 100%;
	}

	.image-left .featured-content-banner__image-wrapper img,
	.image-right .featured-content-banner__image-wrapper img {
		border-top-left-radius: 10px;
		border-bottom-left-radius: 0;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 0;
	}

	.featured-content-banner--two-thirds .featured-content-banner__image-wrapper img {
		height: auto;
		object-fit: cover;
	}

	.image-left.featured-content-banner--two-thirds .featured-content-banner__image-wrapper img {
		border-top-right-radius: 10px;
	}

	.featured-content-banner__centered {
		text-align: center;
		align-items: center;
	}
}

@media only screen and (min-width: 1200px) {
	.featured-content-banner__text-wrapper h2 {
		font-size: 2.8125rem;
		line-height: 2.625rem;
	}
}
@media (max-width:991px) {
	.featured-content-banner__wrapper--row .featured-content-banner__image-wrapper.featured-content-banner__wrapper--col {
		display: flex;
		justify-content: center;
	}
	.featured-content-banner__image-wrapper.featured-content-banner__wrapper--col .featured-content-banner__mobile-img {
		width: auto !important;
	}
}
/**  C004 - Featured Content Banner - End **/
.five-column-layout {
  position: relative;
  /* padding-top: 1.5rem!important;
  padding-bottom: 1.5rem!important; */
}

.five-column-layout p {
  margin-bottom: 1rem;
}

.five-column-layout__column-6 a, .five-column-layout__mobile-col-5 a {
  text-decoration: none;
}

.five-column-layout__column-6 a:hover, .five-column-layout__mobile-col-5 a:hover {
  text-decoration: underline!important;
  color: var(--behr-navy-primary);
  cursor: pointer;
}

.five-column-layout__desktop{
  margin-left: -15px;
  margin-right: -15px;
}

.portrait-img--cropped .five-column-layout__img-fluid{
  display: block;
  max-height: 230px;
  min-height: 230px;
  object-fit: cover;
  object-position: 0% 0%;
  width: 100%;
}

a.five-column-layout__btn-avb-color {
  text-decoration: none!important;
}

a.five-column-layout__btn-avb-color:hover{
  text-decoration: none!important;
}

.five-column-layout__img-fluid {
  max-width: 100%;
  height: auto;
}

.five-column-layout__behrfs-5, .five-column-layout__behrfs-2 {
  text-transform: uppercase;
  letter-spacing: 0px;
  color: var(--behr-navy-primary);
  font-size: 24px;
  line-height: 25px;
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
}

.five-column-layout__py-4 {
  padding-top: 1.5rem!important;
  padding-bottom: 1.5rem!important;
}

.five-column-layout__py-1 {
  padding-top: 0.25rem!important;
  padding-bottom: 0.25rem!important;
}

.five-column-layout__mb-2 {
  margin-bottom: 0.5rem!important;
}

.five-column-layout__pt-2 {
  padding-top: 0.5rem!important;
}

.five-column-layout__my-3 {
  margin-bottom: 1rem!important;
  margin-top: 1rem!important;
}

.five-column-layout__py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}

.five-column-layout__py-1 a,
.five-column-layout__five-column-layout__py-1 a {
  text-decoration: none;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--behr-black);
}

.five-column-layout__desktop {
  display: none;
}

.five-column-layout__mobile-row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


.five-column-layout__mobile-col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  padding-right: 15px;
}

.five-column-layout__mobile-col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  padding-left: 15px;
}

.five-column-layout__mobile-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.five-column-layout__behrfs-2 {
  font-size: 34px;
  line-height: 30px;
}

.five-column-layout__btn-primary-stroked {
  color: var(--behr-navy-primary);
  background: #fff;
  border: 1px solid var(--behr-navy-primary);
  padding: 5px 30px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--behr-atf-500);
  height: 50px;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
}

.five-column-layout__btn-avb-color {
  padding: 3px 11px;
  text-align: center !important;
  font-size: 11px;
  width: 105%;
}

.five-column-layout__body-1 {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
}

.five-column-layout__two-column-mobile {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

}

.five-column-layout__two-column-mobile .five-column-layout__column-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0px 15px;
  padding-top: 1rem!important;
}

.five-column-layout__two-column-mobile .five-column-layout__column-6 a{
  color: unset;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.five-column-layout__two-column-mobile .five-column-layout__py-4 {
    padding-bottom: 0.5rem!important;
}

.five-column-layout__two-column-mobile .color-name {
  font-size: 26px;
}

.five-column-layout__two-column-mobile .color-name,
.five-column-layout__two-column-mobile .color-subname {
  color: var(--behr-black);
}

@media (min-width: 540px) {
  .five-column-layout__btn-avb-color {
    font-size: inherit;
    width: auto;
    padding: 5px 30px;
  }
}

@media (min-width: 768px) {
  .five-column-layout__mobile {
    display: none;
  }

  .five-column-layout__desktop {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .five-column-layout__desktop .five-column-layout__column-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-top: 1rem!important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .five-column-layout__desktop .five-column-layout__column-6 {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .five-column-layout__two-column-mobile .five-column-layout__column-6 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .five-column-layout__py-1 a:hover,
  .five-column-layout__five-column-layout__py-1 a:hover {
    text-decoration: underline;
  }
}

@media (min-width: 1200px) {
  .five-column-layout__body-1 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width:420px) {
  .five-column-layout__behrfs-2 {
    font-size: 24px;
  }
}
.footer-subscription-form {
  position: relative; /* this is for CMS Edit Content button placement */
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--behr-beige);
}

.footer-subscription-form h2 {
  font-family: var(--behr-heading-font);
  font-size: 2.125rem;
  line-height: 1.875rem;
  margin-bottom: 8px;
  font-weight: var(--behr-atf-500);
}

.footer-subscription-form p {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 36px;
}

.footer-subscription-form__form {
  display: flex;
  flex-direction: column;
}

.footer-subscription-form__form label {
  display: block;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  font-size: 0.938rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-subscription-form__form input {
  display: block;
  height: 30px;
  width: 100%;
  border: none !important;
  border-bottom: 1px solid var(--behr-black) !important;
  background-color: var(--behr-beige);
  margin-bottom: 36px;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  border-radius: 0 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
  background-color: var(--behr-beige) !important;
}

.footer-subscription-form__form input:focus {
  outline: none !important;
  background-color: var(--behr-beige) !important;
}

.footer-subscription-form__form button {
  height: 42px;
  width: 200px;
  padding: 5px 24px;
  border-radius: 25px !important;
  text-transform: uppercase;
  font-family: var(--behr-body-and-label-font--bold) !important;
  font-weight: var(--behr-bold);
}

.footer-subscription-form__error-wrapper1, .footer-subscription-form__error-wrapper2 {
  display: none;
}

.footer-subscription-form__error-wrapper1.has-error, .footer-subscription-form__error-wrapper2.has-error {
  display: block;
  position: absolute;
  bottom: 0;
}

.footer-subscription-form__error-wrapper1.has-error strong, .footer-subscription-form__error-wrapper2.has-error strong {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  font-size: 1rem;
  color: var(--behr-red-primary);
}

.footer-subscription-form__label-input-wrapper {
  position: relative;
}

@media only screen and (max-width: 575px) {
  .footer-subscription-form__form button {
    margin-top: 6px;
  }
}

@media only screen and (min-width: 576px) {
  .footer-subscription-form__form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-subscription-form__label-input-wrapper {
    position: relative;
    width: 100%;
  }

  .footer-subscription-form__form input {
    width: 80%;
  }
}

@media only screen and (max-width: 991px) {
  .footer-subscription-form__error-wrapper1.has-error, .footer-subscription-form__error-wrapper1.has-error {
    bottom: 12px;
  }
}

@media only screen and (min-width: 992px) {
  .footer-subscription-form__body-wrapper {
    display: flex;
  }

  .footer-subscription-form__body-wrapper p {
    flex: 0 0 42%;
    padding-right: 15px;
    font-size: 1.125rem;
  }

  .footer-subscription-form__form {
    flex: 0 0 58%;
    max-width: 58%;
    justify-content: start;
  }

  .footer-subscription-form__form input {
    width: 100%;
    margin-bottom: 24px;
  }

  .footer-subscription-form__form button {
    margin-left: 80px;
  }
}
.footer-subscription-form__sign-up-btn {
  white-space: nowrap;
}
.footer-social-icon {
    width: 30px;
    height: 30px;
    margin-top: -0.5em;
}

.global-footer {
    background-color: var(--behr-navy-primary);
    position: relative;
}

.global-footer__wrapper {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.global-footer .language-selector__wrapper.show {
    display: block;
    width: auto;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 1rem;
    left: 0;
}

.global-footer .language-selector__wrapper.show a {
    word-break: break-all;
}

.global-footer .language-selector__wrapper.show span {
    word-break: keep-all;
}

.global-footer .language-selector__flag-country-wrapper {
    margin-right: 20px;
}

.global-footer__language-selector {
    align-self: center;
    display: flex;
    align-items: center;
}

.global-footer__language-selector {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.global-footer .language-selector__wrapper span {
    color: var(--behr-black) !important;
}

.global-footer .language-selector__wrapper {
    border: 1px solid var(--behr-grey-light);
    position: absolute;
    background-color: #FFF;
    width: 306px;
    font-size: 1rem;
    position: absolute;
    bottom: 29px;
}

.global-footer .language-selector__wrapper td a {
    font-weight: var(--behr-bold);
    font-family: var(--behr-body-and-label-font--bold);
}

.global-footer .language-selector__wrapper>span {
    padding: 12px;
}

.global-footer__language-options {
    position: relative;
    margin-top: 16px;
}

.global-footer__language-selector img {
    padding-left: 8px;
}

.global-footer ul li {
    list-style: none;
    font-size: .875rem;
}

.global-footer,
.global-footer li,
.global-footer a,
.global-footer p,
.global-footer small,
.global-footer h4,
.global-footer h3 {
    color: #fff;
    text-decoration: none;
}

.global-footer h3 {
    font-size: 1.875rem;
}

.global-footer h4 {
    font-size: 1.5rem;
}

.global-footer li a {
    font-size: .938rem;
}

.global-footer li a:hover {
    border-bottom: 1px solid #fff;
}

.footer-primary {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    margin-bottom: 40px;
}

.footer-nav__social {
    display: flex;
    max-width: 193px;
    flex-wrap: wrap;
}



.footer-link--social {
    height: 40px;
    width: 40px;
    display: block;
}

.footer-link--social:hover {
    border-bottom: none !important;
}

.footer-nav__social li {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.footer-facebook {
    background-image: url("../images/facebook-icon-blue.svg");
}

.footer-twitter {
    background-image: url("../images/twitter-icon-blue.svg");
}

.footer-instagram {
    background-image: url("../images/instagram-icon-blue.svg");
}

.footer-tiktok {
    background-image: url("../images/tiktok-icon-blue.svg");
}

.footer-pinterest {
    background-image: url("../images/pinterest-icon-blue.svg");
}

.footer-email {
    background-image: url("../images/envelope-icon-blue.svg");
}

.footer-youtube {
    background-image: url("../images/youtube-icon-blue.svg");
}

@media (hover: hover) and (pointer: fine) {

    .footer-nav__social .list-inline-item:hover {
        background-color: unset !important;
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .footer-nav__social li:hover {
        background-color: #fff;
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .footer-facebook:hover {
        background-image: url("../images/facebook-icon-white.svg");
    }

    .footer-twitter:hover {
        background-image: url("../images/twitter-icon-white.svg");
    }

    .footer-instagram:hover {
        background-image: url("../images/instagram-icon-white.svg");
    }

    .footer-tiktok:hover {
        background-image: url("../images/tiktok-icon-white.svg");
    }

    .footer-pinterest:hover {
        background-image: url("../images/pinterest-icon-white.svg");
    }

    .footer-email:hover {
        background-image: url("../images/envelope-icon-white.svg");
    }

    .footer-youtube:hover {
        background-image: url("../images/youtube-icon-white.svg");
    }

}


.global-footer__social-list h3 {
    margin-bottom: 22px;
}

.footer-nav__social li {
    flex: 0 0 25%;
    max-width: 40px;
    width: 40px;
    height: 40px;
    margin-bottom: 25px;
    margin-right: 9px;
}

/*.footer-nav__social li:nth-child(4n) {
    margin-right: 0;
}*/

.footer-col-1-secondary {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.footer-col-1-secondary ul {
    flex: 0 0 50%;
    margin-bottom: 40px;
}

.footer-col-1-secondary__row {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-col-1-secondary__row ul:nth-child(2) {
    margin-bottom: 0;
}

.footer-col-1 div:last-child .footer-nav__social,
.footer-nav__color,
.footer-nav__products,
.footer-nav__resc,
.footer-nav__misc,
.footer-nav__tips-and-resources {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.global-footer__social-list {
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    margin-bottom: 40px;
}

.global-footer__wrapper .footer-col-3 {
    margin-top: 76px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.global-footer__wrapper .footer-col-2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.global-footer__logo {
    margin-bottom: 32px;
}

.global-footer__nav-col {
    padding-bottom: 24px;
    margin-bottom: 40px;
    border-bottom: 1px solid #fff;
}

.global-footer__nav-col small {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: .75rem;
}

.global-footer__nav-list li {
    margin-bottom: 17px;
}

@media only screen and (max-width: 330px) {
    .global-footer .language-selector__wrapper {
        right: -10px;
    }
}

@media only screen and (min-width: 768px) {
    .footer-col-1-secondary ul {
        margin-bottom: 65px;
    }
}

@media only screen and (min-width: 992px) {
    .language-selector__wrapper.show {
        border: 1px solid var(--behr-grey-light);
        position: absolute;
        background-color: #FFFFFF;
        right: 0;
    }

    .global-footer .language-selector__wrapper.show {
        display: block;
        font-family: var(--behr-body-and-label-font);
        font-weight: var(--behr-normal);
        font-size: 1rem;
        left: 0;
    }
}

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

    .global-footer__wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 80px !important;
        padding-bottom: 26px !important;
    }

    .global-footer__nav-col {
        padding-bottom: 0;
        margin-bottom: 0;
        border: none;
    }

    .footer-col-1 {
        display: flex;
        flex: 0 0 66.6%;
        border-right: 1px solid #fff;
        margin-left: -1rem;
    }

    .footer-col-1__main {
        flex: 0 0 33.3%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .footer-col-1-secondary {
        flex: 0 0 66.6%;
    }

    .footer-col-2 {
        flex: 0 0 33.3%;
        padding-left: 19px;
    }

    .global-footer .footer-col-3 {
        flex: 0 0 100%;
        margin-top: 122px;
    }

    .global-footer__social-list {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 576px) {
    .global-footer__wrapper .footer-col-3 {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }

    .global-footer .language-selector__wrapper {
        right: 0%;
    }

    .global-footer .language-selector__wrapper.show {
        left: unset;
        right: 0;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }

    .global-footer .language-selector__wrapper.show span,
    .global-footer .language-selector__wrapper.show a {
        word-break: keep-all;
    }

    .global-footer .language-selector__flag-country-wrapper {
        margin-right: 0;
    }
}

@media (max-width:375px) {
    .language-selector__wrapper table td a {
        font-size: 0.9rem;
    }
}
.h-40 {
    height: 40px;
} 
.global-header {
  position: relative; /* this is for edit content button for CMS */
}

.global-header__utility-bar--wrapper {
  background-color: var(--behr-navy-primary);
}

.global-header__utility-bar--nav {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.global-header__utility-bar--nav ul:not(.language-selector__selections) {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.navigation__col-3--img-cover > div img{
  height: 100% !important;
}

.global-header__utility-bar--wrapper {
  padding-top: 8px;
  padding-bottom: 8px;
}

.global-header__mobile-nav,
.global-header__desktop-nav--wrapper {
  border-bottom: 1px solid #E9E9E9;
}

.global-header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding-top: 18.5px;
  padding-bottom: 18.5px;
}

.global-header__mobile-nav--icon-wrapper {
  display: flex;
  justify-content: space-between;
}

.global-header a img {
  height: 25px;
  width: 100px;
}

.global-header__utility-bar--icon-nav,
.global-header__desktop-nav--wrapper {
  display: none;
}

.global-header__utility-bar--icon-nav a img {
  display: inline-block;
  fill: #FFFFFF;
  height: 14px;
  width: 14px;
  margin-right: 8px;
}

.global-header__language-selector {
  display: flex;
  align-items: center;
}

.global-header__language-img {
  height: 29px !important;
  width: 55px !important;
}

.global-header__language-selector--arrow {
  height: 5px;
  width: 10px;
  margin-left: 7px;
}

.global-header__utility-bar--nav ul:not(.language-selector__selections) li {
  align-self: center;
}

.global-header__utility-bar--nav ul:not(.language-selector__selections) li:not(:last-child) {
  margin-right: 24px;
}

.global-header__utility-bar--nav a {
  text-decoration: none;
}

.active-site a,
.global-header__utility-bar--icon-nav ul:not(.language-selector__selections) a {
  color: #FFFFFF;
}

.global-header__utility-bar--nav > ul li a {
  color: #B5B5B5;
}

.active-site a {
  color: #FFFFFF !important;
}

.global-header__utility-bar--icon-nav ul li a {
  align-self: center;
  display: flex;
  align-items: center;
}

.global-header ul:not(.language-selector__selections) {
  list-style: none;
  font-family: var(--behr-body-and-label-font--bold);
  font-size: 0.938rem;
  color: #B5B5B5;
  font-weight: var(--behr-bold);
}

.global-header__utility-bar--nav ul:not(.language-selector__selections) {
  list-style: none;
  font-family: var(--behr-body-and-label-font--bold);
  font-size: 0.938rem;
  color: #B5B5B5;
  font-weight: var(--behr-bold);
}

.global-header .language-selector__wrapper.show {
  display: block;
  width: 100%;
}

.language-selector__wrapper{
  z-index: 10;
}

.global-header .language-selector-open .material-icons-outlined {
  transform: rotate(180deg);
}

.global-header__desktop-nav--main ul {
  font-family: var(--behr-heading-font);
  text-transform: uppercase;
  font-weight: var(--behr-atf-500);
}

.global-header__hamburger {
  height: 12px;
  width: 16px;
  margin-right: 17px;
}

.global-header__hamburger .material-icons-outlined,
.global-header__close-mobile-menu  .material-icons-outlined{
  color: var(--behr-navy-primary);
  font-size: 1.5rem;
  margin-right: 18px;
}

.global-header__close-mobile-menu {
  height: 16px;
  width: 16px;
  margin-right: 17px;
}

.global-header__mobile-nav--icons-left,
.global-header__mobile-nav--icons-right {
  display: flex;
}

.global-header__mobile-nav--icons-left a {
  height: 32px;
}

.global-header__mobile-nav--icons-left a:not(.hide) {
  display: flex;
  align-items: center;
}

.global-header__mobile-nav--icons-right {
  width: 125px ;
  justify-content: space-evenly;
}

.global-header__mobile-nav--icons-right a {
  display: flex;
  align-items: center;
}

.global-header__mobile-nav--icons-right .material-icons-outlined {
  color: var(--behr-navy-primary);
  font-size: 1.5rem;
}

.global-header__mobile-nav--main {
  display: none;
}

.global-header__subnav-section--mobile,
.global-header__subnav-section--mobile > li > ul {
  display: none;
}

.global-header__subnav-section--mobile > li {
  font-family: var(--behr-heading-font);
  font-size: 1.5rem;
  font-weight: var(--behr-atf-500);
  color: var(--behr-navy-primary);
  text-transform: uppercase;
  background-color: #F6F5F0;
  border-bottom: 1px solid #E9E9E9;
  padding: 17px 49px;
}

.global-header__subnav-section--mobile > li > ul {
  margin-top: 16px;
  margin-left: 18px;
}

.global-header__subnav-section--mobile > li > ul > li {
  margin-bottom: 16px;
}

.global-header__subnav-section--mobile > li:not(.global-header__subnav-item--link) > a,
.global-header .navigation__col-1 > ul > li:not(.global-header__subnav-item--link) > a {
  text-decoration: none;
  font-size: 1.875rem !important;
  color: var(--behr-navy-primary);
  line-height: 35px;
  font-weight: var(--behr-atf-500);
}

.global-header__subnav-item--link a {
  /*font-size: 1.25rem !important;*/
  font-size: 1.875rem !important;
  font-weight: var(--behr-normal);
  line-height: 35px;
}

.global-header__subnav-section--mobile li a {
  text-decoration: none;
  font-size: 0.938rem;
  font-weight: var(--behr-normal);
  color: var(--behr-navy-primary);
}

.global-header__subnav-section--mobile li:last-child {
  border-bottom: none;
}

.global-header__color-smart--whites,
.global-header__color-smart--lesblancs,
.global-header__color-smart--ç™½è‰²,
.global-header__color-smart--blanco {
  background-color: #FFFFFF;
}

.global-header__color-smart--grays,
.global-header__color-smart--greys,
.global-header__color-smart--lesgris,
.global-header__color-smart--ç°è‰²,
.global-header__color-smart--gris {
  background-color: #8A8A8A;
}

.global-header__color-smart--neutrals,
.global-header__color-smart--lesneutres,
.global-header__color-smart--neutral {
  background-color: #c2a89f;
}

.global-header__color-smart--blacks,
.global-header__color-smart--lesnoirs,
.global-header__color-smart--é»‘è‰²,
.global-header__color-smart--negro {
  background-color: var(--behr-navy-dark);
}

.global-header__color-smart--reds,
.global-header__color-smart--lesrouges,
.global-header__color-smart--çº¢è‰²,
.global-header__color-smart--rojo {
  background-color: var(--behr-red-primary);
}

.global-header__color-smart--oranges,
.global-header__color-smart--lesoranges,
.global-header__color-smart--æ©™è‰²,
.global-header__color-smart--naranja {
  background-color: #FF7424;
}

.global-header__color-smart--yellows,
.global-header__color-smart--lesjaunes,
.global-header__color-smart--é»„è‰²,
.global-header__color-smart--amarillo {
  background-color: #EAB854;
}

.global-header__color-smart--greens,
.global-header__color-smart--lesverts,
.global-header__color-smart--ç»¿è‰²,
.global-header__color-smart--verde {
  background-color: #005A54;
}

.global-header__color-smart--blues,
.global-header__color-smart--lesbleus,
.global-header__color-smart--è“è‰²,
.global-header__color-smart--azul {
  background-color: #0097DA;
}

.global-header__color-smart--purples,
.global-header__color-smart--lesviolets,
.global-header__color-smart--ç´«è‰²,
.global-header__color-smart--prpura {
  background-color: #91569B;
}

.global-header__color-smart {
  margin: 16px 0 24px 16px;
}

.global-header__color-smart li a {
  font-size: 0.938rem;
  /* text-transform: capitalize; */
}

.global-header__color-smart > li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.global-header__color-smart li div {
  height: 16px;
  width: 16px;
  border: 1px solid #E9E9E9;
  border-radius: 20%;
  margin-right: 10px;
}

.global-header__color-smart--tool {
  margin-left: 26px;
}

.global-header__behr-showcase a {
  font-weight: var(--behr-bold) !important;
}

.global-header__view-all a {
  color: var(--behr-red-medium) !important;
  font-weight: var(--behr-bold) !important;
}

.global-header a {
  color: var(--behr-navy-primary);
  text-decoration: none;
}

.global-header__subnav {
  display: none;
}

.global-header__language-selector--wrapper-mobile {
  margin-top: 20px;
}

.global-header__icon--down-arrow.language-selector-open::after {
  transform: rotate(180deg);
}

.global-header__subnav .desktop .navigation__col-3--img-text.active-subnav-section{
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  height: auto;
}

/********* global header search **********/
.gg-close {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 40px
}
.gg-close::after,
.gg-close::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 16px;
  height: 3.5px;
  background: var(--behr-navy-primary);
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 1px
}
.gg-close::after {
  transform: rotate(-45deg)
}

.global-header__search{
  background-color: var(--behr-beige);
  position: absolute;
  width: 100%;
  z-index: 5;
}

.search-form__inputs{
  text-align: center;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.global-header__search-close{
  display: none;
  cursor: pointer;
}

.search-form__inputs input{
  border-radius: 53px !important;
  height: 47px;
  border: 2px solid var(--behr-navy-primary) !important;
  margin-right: 8px;
  padding: 0.375rem 0.75rem;
  display: block;
  font-size: 1rem;
  font-weight: var(--behr-normal);
  line-height: 1.5;
  color: var(--behr-navy-primary);
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  flex: 1 1 auto;
  width: 1% !important;
}

.search-form__inputs input:focus{
  outline: none;
  border: 2px solid var(--behr-navy-primary) !important;
}

.search-form__inputs button{
  flex: 0 0 auto;
}

@media (min-width: 992px){
  .search-form__inputs{
      max-width: 83.3%;
      padding: 16px 0 !important;
      margin: 16px auto;
  }

  .search-form__inputs input{
      margin-left: 24px;
      margin-right: 24px;
  }

  .global-header__search-close{
      display: block;
      margin-left: 30px;
  }

  .search-form__inputs button{
    width: 25%;
  }
  
}
/********* global header search **********/

@media only screen and (max-width: 991px) {
  .global-header__nav {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .global-header__mobile-nav {
    padding-top: 18.5px;
    padding-bottom: 18.5px;
  }

  .global-header__utility-bar--icon-nav {
    display: none;
  }

  .global-header__mobile-nav--main-wrapper.menu-open {
    height: 100vh;
  }

  .global-header__mobile-nav--main-wrapper.menu-open .global-header__mobile-nav--main {
    display: block;
    border-top: 1px solid #E9E9E9;
    z-index: 950;
  }

  .global-header__mobile-nav {
    position: relative;
  }

  .global-header__mobile-nav--main {
    position: absolute;
    left: 0;
    bottom: -70px;
    height: 100%;
    width: 100%;
  }

  .global-header__nav-items--mobile {
    display: flex;
    flex-direction: column;
  }

  .global-header__nav-items--mobile > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--behr-navy-primary);
    font-size: 1.875rem;
    font-family: var(--behr-heading-font);
    text-transform: uppercase;
    border-bottom: 1px solid #E9E9E9;
    padding: 17px 29px;
    background-color: #FFFFFF;
    z-index: 950;
    font-weight: var(--behr-atf-500);
  }

  .global-header__subnav-section--mobile > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .global-header__nav-items--mobile > a .material-icons-outlined,
  .global-header__subnav-section--mobile > li > a .material-icons-outlined {
    display: inline-block;
    vertical-align: middle;
    color: var(--behr-primary-navy);
    float: right;
    font-size: 1.5rem;
  }

  .global-header__nav-items--mobile .active-nav-item .material-icons-outlined {
    transform: rotate(180deg);
  }

  .global-header__nav-items--mobile .active-subnav-item .material-icons-outlined{
    transform: rotate(180deg);
  }

  .global-header__utility-bar--icon-nav--mobile {
    font-size: 0.938rem;
    padding: 40px 29px 0 29px;
    background-color: white;
  }

  .global-header__utility-bar--icon-nav--mobile a {
    text-decoration: none;
    color: var(--behr-navy-primary);
  }

  .global-header__utility-bar--icon-nav--mobile .global-header__icon::before {
    display: inline-block;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    margin-right: 12px;
  }

  .global-header__utility-bar--icon-nav--mobile .global-header__icon::after {
    display: inline-block;
    vertical-align: middle;
    height: 28px;
    width: 10px;
    margin-left: 8px;
  }

  .global-header__utility-bar--icon-nav--mobile li {
    /* text-transform: capitalize; */
  }

  .global-header__utility-bar--icon-nav--mobile .material-icons-outlined {
    display: inline-block;
    vertical-align: middle;
    color: var(--behr-navy-primary);
    margin-right: 8px;
  }

  .global-header__utility-bar--icon-nav--mobile li {
    margin-bottom: 24px;
  }

  .language-selector__selections li {
    margin-bottom: 0;
  }

  .global-header__utility-bar--icon-nav--mobile ul:not(.language-selector__selections) li:nth-last-child(2) {
    margin-bottom: 40px;
  }

  .global-header__utility-bar--icon-nav--mobile .global-header__language-img {
    margin-right: 7px;
  }

  .global-header .active-nav-item + ul {
    display: block;
  }

  .global-header .active-subnav-item + ul {
    display: block;
  }

  .global-header__language-selector--mobile,
  .global-header__language-selector--desktop {
    display: flex;
    align-items: center;
  }

  .global-header__language-selector--mobile img,
  .global-header__language-selector--desktop img {
    display: inline;
  }
}

@media only screen and (min-width: 992px) {
  .global-header__mobile-nav {
    display: none;
  }

  .global-header__language-selector__wrapper-mobile {
    display: none;
  }

  .global-header__language-selector__wrapper-desktop {
    display: block;
  }

  .global-header__nav-items {
    font-family: var(--behr-heading-font) !important;
    text-transform: uppercase !important;
    font-weight: var(--behr-atf-500);
  }

  .global-header__subnav.active-subnav {
    display: block;
    box-shadow: 0px 30px 42px -4px rgba(33, 37, 41, 0.75);
    height: fit-content;
    z-index: 950;
  }

  .global-header__subnav.active-subnav nav {
    min-height: 640px;
  }

  .global-header__utility-bar--wrapper {
    padding-top: 10.5px;
    padding-bottom: 10.5px;
  }

  .global-header__utility-bar--icon-nav,
  .global-header__desktop-nav--wrapper {
    display: block;
  }

  .global-header__utility-bar,
  .global-header__desktop-nav {
    max-width: 1190px;
    margin: 0 auto;
  }

  .global-header__subnav {
    width: 100%;
    /* padding-left: 56px;
    padding-right: 56px; */
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #FFFFFF;
  }

  .global-header__desktop-nav--wrapper {
    padding-top: 19.5px;
    padding-bottom: 19.5px;
  }

  .global-header__desktop-nav,
  .global-header__desktop-nav--main,
  .global-header__desktop-nav--main ul {
    display: flex;
  }

  .global-header__desktop-nav {
    justify-content: space-between;
  }

  .global-header__desktop-nav--main ul {
    width: 532px;
    justify-content: space-between;
    color: var(--behr-navy-primary);
    font-size: 1.25rem;
    font-weight: var(--behr-normal);
    /* text-transform: uppercase; */
    margin-right: 80px;
    list-style: none;
  }

  .global-header__desktop-nav--main ul a {
    text-decoration: none;
    color: var(--behr-navy-primary);
    font-size: 1.25rem;
    font-weight: var(--behr-atf-500);
  }

  .global-header li.active-nav-item {
    border-bottom: 5px solid var(--behr-black);
    margin-bottom: -5px
  }

  .global-header__utility-bar--icon-nav .material-icons-outlined {
    margin-right: 8px;
    vertical-align: middle;
  }

  .global-header__icon--down-arrow .material-icons-outlined {
    font-size: 24px;
    margin-right: 0 !important;
  }

  .global-header .language-selector__wrapper.show {
    display: block;
    width: max-content;
  }

  /* Flyout Styles */
  .global-header__subnav .desktop {
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* max-width: 1190px; */
    margin: 0 auto;
  }

  .global-header__close-subnav {
    position: absolute;
    background: #FFFFFF;
    height: 64px;
    width: 64px;
    padding: 25px;
  }

  .global-header__close-subnav--icon img {
    height: 18px !important;
    width: 24px !important;
  }

  .global-header__subnav .desktop a {
    text-decoration: none;
  }

  .global-header li.active-subnav-item a {
    border-bottom: 2px solid var(--behr-navy-primary);
  }

  .global-header .navigation__col {
    flex: 30%
  }

  .global-header .navigation__col > ul > li {
    margin-bottom: 24px;
  }

  .global-header .navigation__col-1 > ul > li[data-id] {
    font-size: 1.875rem;
  }

  .global-header .navigation__col-2 {
    background-color: #F6F5F0;
    padding: 48px 40px;
  }

  .global-header .navigation__col-2 a {
    font-weight: var(--behr-normal);
    line-height: 25px;
  }

  .global-header .navigation__col-2 a:hover {
    text-decoration: underline;
  }

  .global-header .navigation__col-1 {
    padding-top: 40px !important;
  }

  .global-header .navigation__col-1 a {
    font-size: 1.875rem;
    font-family: var(--behr-heading-font);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: var(--behr-atf-500);
  }

  .global-header .navigation__col-3 .full-height-img {
    height: 100%;
  }

  .global-header .navigation__col-3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .global-header .navigation__col-2 > ul,
  .global-header .navigation__col-3 > div {
    display: none;
  }

  .global-header .navigation__col-2 .active-subnav-section,
  .global-header .navigation__col-3 .active-subnav-section {
    display: block;
  }

  .navigation__col-3 .find-a-color img {
    height: 403px;
  }

  /* .navigation__col-3 .navigation__col-3--img-text,
  .navigation__col-3 .navigation__col-3--img-text {
    padding: 80px 42px;
  } */

  .navigation__col-3 .navigation__col-3--img-text img,
  .navigation__col-3 .navigation__col-3--img-text img {
    min-height: 260px;
    min-width: 180px;
  }

  .navigation__col-3 .navigation__col-3--img-text--small {
    padding: 108px 40px 30px 40px;
  }

  .navigation__col-3 .navigation__col-3--img-text--small img {
    height: 260px;
    width: 180px;
  }

  .global-header__col-3--text span,
  .navigation__col-3 .navigation__col-3--img-text--small span {
    font-family: var(--behr-heading-font);
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: var(--behr-atf-500);
  }

  .global-header__col-3--text p,
  .navigation__col-3 .navigation__col-3--img-text--small p {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 0.938rem;
    margin-bottom: 16px;
  }

  .global-header__col-3--text button,
  .navigation__col-3 .navigation__col-3--img-text--small button {
    padding: 10px 20px !important;
    margin-right: 10px;
  }

  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text {
    padding-top: 17px;
    padding-bottom: 87px;
    padding-left: 25px;
  }

  .global-header .tips-resources-navigation .navigation__col-3 {
    background-color: #F6F5F0;
  }

  .global-header__button-wrapper {
    display: flex;
  }

  .global-header__button-wrapper .anchor-button,
  .global-header .navigation__col-3 .anchor-button {
    height: 35px;
    min-width: 123px;
    padding: 10px;
  }

  .global-header__button-wrapper .anchor-button:first-child {
    margin-right: 8px;
  }
}

@media only screen and (min-width:1200px) {
  .global-header__utility-bar--wrapper {
    padding-top: 10.5px;
    padding-bottom: 10.5px;
  }

  .global-header__desktop-nav--wrapper {
    padding-top: 19.5px;
    padding-bottom: 19.5px;
  }

  .global-header__subnav {
    width: 100%;
    /* padding-left: 65px;
    padding-right: 65px; */
  }
}

@media only screen and (min-width:1920px) {
  .global-header__subnav {
    max-width: 1440px;
    margin: 0 auto;
  }

  .global-header__utility-bar--wrapper {
    padding: 10.5px 0;
  }

  .global-header__desktop-nav--wrapper {
    padding: 19.5px 0;
  }

  .global-header .navigation__col-1,
  .global-header .navigation__col-3 {
    flex: 36%;
  }

  .global-header .navigation__col-2 {
    flex: 28%;
  }

  .global-header .navigation__col-3 {
    margin-right: -124px;
  }

  .global-header__close-subnav {
    margin-right: -124px;
  }
}

/* right padding needs to be increased to match design, and give appearance of flyout being wider than header */
@media (min-width: 1331px) and (max-width: 1919px) {
  .global-header__desktop-nav,
  .global-header__utility-bar {
    /* padding-right: 56px; */
  }

  /* padding for third column text -- needs to line up with icons on right side of global header */
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text {
    padding-right: 56px;
  }
}
@media (min-width: 1200px) and (max-width: 1330px) {
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text {
    padding-right: 65px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text {
    padding-right: 56px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text {
    padding-right: 29px;
  }
}

@media (min-width: 1920px) {
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text,
  .global-header .global-header__col-3--text {
    padding-right: 115px;
  }
  .global-header__subnav .desktop{
    max-width: 1190px;
    margin: 0 auto !important;
  }
}
@media (min-width:1200px) {
  [data-col-three-id="behr-kitchen"]{
    height: 100% !important;
  }
}

@media (max-width:399px) {
  .search-form__inputs {
    padding: 16px 0px;
  }
}
.header-search-icon {
  max-height: 30px;
}
.how-to-detail {
    position: relative;
    padding-top: 20px;
    /*padding-bottom: 40px;*/
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.how-to-detail__mobile {
    display: block;
}

.how-to-detail__desktop {
    display: none;
}

.how-to-detail__supplies p, .how-to-detail__supplies ul li{
    margin-bottom: 10px;
}

.how-to-detail__breadcrumb {
    color: var(--behr-red-primary);
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.how-to-detail__breadcrumb img {
    margin-right: 5px;
}

.how-to-detail__breadcrumb a {
    display: flex;
    text-decoration: none;
    color: var(--behr-red-primary);
}

.how-to-detail__wrapper h1 {
    font-size: 45px;
    line-height: 40px;
    padding-top: 40px;
    padding-bottom: 24px;
}

.how-to-detail__video-container {
    width: calc(100vw);
    height: calc(100vw * 0.5625);
    margin-left: calc((-50vw + 50%));
}

.how-to-detail__hero-image {
    width: 100vw;
    margin-left: calc((-50vw + 50%));
}

.how-to-detail__description {
    padding-top: 24px;
    margin-bottom: 40px;
    font-size: 18px;
}

.how-to-detail__description p {
    margin-bottom: 16px;
    line-height: 24px;
}

.how-to-detail__supplies {
    padding-top: 40px;
    margin-bottom: 30px;
}

.how-to-detail__supplies span {
    font-family: var(--behr-heading-font);
    color: var(--behr-navy-primary);
    font-weight: var(--behr-atf-500);
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 25px;
}

.how-to-detail__supplies ul {
    list-style: none;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    color: var(--behr-black);
    font-size: 18px;
    line-height: 20px;
}

@media only screen and (min-width: 768px) {
    .how-to-detail__supplies span {
        font-size: 1.875rem;
        line-height: 35px;
    }

    .how-to-detail{
        overflow-x: visible;
    }
    
    .how-to-detail__mobile {
        display: none;
    }

    .how-to-detail__desktop {
        display: block;
    }

    .how-to-detail__wrapper h1 {
        font-size: 78px;
        line-height: 75px;
    }

    .how-to-detail__video-container {
        margin-left: 0;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }

    .how-to-detail__video-container .how-to-detail__video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .how-to-detail__hero-image {
        width: 100%;
        margin-left: 0;
    }

    .how-to-detail__details {
        display: flex;
        /* justify-content: space-between; */
        padding-top: 24px;
        margin-bottom: 40px;
        position: relative;
    }

    .how-to-detail__description {
        flex-basis: 66.67%;
        height: min-content;
        padding-top: 0;
        margin-bottom: 0;
        margin-right: 110px;
    }

    .how-to-detail__supplies {
        /* flex-basis: 22%; */
        padding-top: 0;
        margin-bottom: 0px;
        /* position: absolute;
        right: 0; */
    }
}
.how-to-detail__supplies li p span {
    font-size: 18px;
}
/* STRY0233172 */
.how-to-detail__description ul {
    margin-left: 5%;
}
@media (max-width:991px) {
    .how-to-detail__description ul {
        margin-left: 10%;
    }
}
.hero-banner {
    position: relative;
    overflow-x: hidden;
    margin-bottom: 0px !important;
    display: flex;
    justify-content: center;
}

/*
.hero-banner .hero-banner__desktop ,
.hero-banner .hero-banner__mobile {
    max-width: 100%;
}
*/
.hero-banner__mobile {
    display: none;
}
.hero-banner h2 {
    color: #fff;
    font-size: 25px;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    line-height: 1.2;
}
.hero_banner_text {
    color: #fff;
    font-size: 25px;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    line-height: 1.2;
}
.hero-banner__right-content {
    text-align: right;
}
.hero-banner__behr-logo {
    display: initial;
    float: right;
    width: inherit;
}
.hero-banner__search-careers {
    padding-top: 6rem;
    margin-top: 1rem;
}
.hero-banner_carrer {
    position: absolute;
    font-size: 47px;
    letter-spacing: 10px;
    bottom: 0px;
}
@media (max-width:991px) {
    .hero-banner__desktop {
        display: none;
    }
    .hero-banner__mobile {
        display: block;
    }
    .hero-banner__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .hero-banner h2 {
        font-size: 18px;
    }
    .hero_banner_text {
        font-size: 18px;
    }
    .hero-banner_carrer {
        font-size: 42px;
    }
    .hero-banner__search-careers {
        padding-top: 4rem;
        margin-top: 1rem;
    }
    .hero-banner__search-careers a{
        padding: 5px 20px;
        font-size: 12px;
    }
    .hero-banner__behr-logo {
        width: auto;
    }
}
@media (max-width:349px) {
    .hero-banner h2 {
        font-size: 18px;
    }
    .hero_banner_text {
        font-size: 18px;
    }
    .hero-banner_carrer {
        font-size: 34px;
    }
}
.hero-banner__career-block {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px;
    background: rgb(88,179,205);
    background: linear-gradient(0deg, rgba(88,179,205,1) 0%, rgba(123,154,194,1) 50%, rgba(144,137,187,1) 100%);
    max-width: 450px;
    border: 3px solid #fff;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    display: flex;
    width: 100%;
}
.hero-banner__item {
    width: calc(100% /2) ;
}
.no_banner_text {
    display: none;
}
@media (max-width:991px) {
    .hero-banner__wrapper {
        width: 100%;
    }
    .hero-banner__mobile {
        width: 100%;
    }
}
.horizontal-rule {
    position: relative;
}

.horizontal-rule hr {
    border: none;
    border-top: 1px solid var(--behr-grey-light);
    margin: 50px 0 20px;
}
.how-to-listing {
  position: relative; /* this is for Edit Content button in CMS */
}

.how-to-listing__wrapper {
  padding-bottom: 80px !important;
}

.how-to-listing__filter-btn--mobile {
  height: 36px;
  width: 100%;
  padding: 10px 0;
  border-radius: 25px;
  line-height: 0;
}

.how-to-listing__applied-filters-wrapper--mobile,
.how-to-listing__applied-filters-wrapper--desktop {
  padding-top: 20px;
}

.how-to-listing__applied-filters-wrapper--mobile span,
.how-to-listing__applied-filters-wrapper--desktop span {
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
  color: var(--behr-navy-primary);
  font-size: 1.5rem;
  line-height: 25px;
  text-transform: uppercase;
}

.how-to-listing__filter-selections input[type='radio'] {
  display: none !important;
  position: relative !important;
}

.how-to-listing .material-icons-outlined {
  color: var(--behr-navy-primary);
}

.how-to-listing__filter {
  display: none;
}

.how-to-listing__filter.show {
  display: block;
  /*height: 100vh;*/
}

.how-to-listing__filter-by-header {
  position: relative;
  border-bottom: 1px solid #E9E9E9;
  text-align: center;
  padding: 12px 0;
  margin-left: -18px;
  margin-right: -18px;
}

.how-to-listing__filter-by-header a .material-icons-outlined {
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  margin-left: 18px;
}

.how-to-listing__filter-by-header .how-to-listing__filter-by-header--text {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  font-size: 1.125rem;
}

.how-to-listing__filter-accordion {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-navy-primary);
  text-transform: uppercase;
  border-top: 1px solid var(--behr-grey-light);
  border-bottom: 1px solid var(--behr-grey-light);
}

.how-to-listing__filter.filter-accordion-open .how-to-listing__filter-accordion {
  border-bottom: none;
}

.how-to-listing__filter-accordion:hover{
  color: var(--behr-navy-primary);
}

.how-to-listing__filter-accordion .material-icons-outlined {
  font-size: 1.5rem;
}

.how-to-listing__filter-selections {
  display: none;
}

.how-to-listing__filter.filter-accordion-open .material-icons-outlined {
  transform: rotate(180deg);
}

.how-to-listing__filter.filter-accordion-open .how-to-listing__filter-selections {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--behr-grey-light);
}

.how-to-listing__filter-selections button {
  display: block;
  border: none;
  background: none;
  text-align: left;
  padding: 0 30px 0 0;
  margin-bottom: 10px;
  height: unset;
  margin-top: 0px !important;
}

.how-to-listing__filter-selections button label:before {
  height: 20px;
  width: 20px;
}

.how-to-listing__filter-selections button label:hover {
  cursor: pointer;
}

.how-to-listing__filter-selections button label {
  font-family: var(--behr-body-and-label-font) !important;
  font-weight: var(--behr-normal);
  font-size: 1.125rem;
  text-transform: none !important;
  margin-top: 4px;
  display: inline; /* this is for a radio button issue in Safari */
}

.how-to-listing input[type='radio']:checked + * {
  color: var(---behr-black);
}

.how-to-listing__show-results-btn--wrapper {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 15px 18px;
  margin-left: -18px;
  background-color: #fff;
  -webkit-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
  box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
}

.how-to-listing__show-results-btn--wrapper button {
  height: 35px;
  width: 100%;
  padding: 10px 0;
}

.how-to-listing__tile {
  height: auto;
  width: 269px;
}

.how-to-listing__tile--text-wrapper strong,
.how-to-listing__tile--text-wrapper a {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
}

.how-to-listing__tile--text-wrapper a {
  color: var(--behr-navy-primary);
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.how-to-listing__tile img {
  height: 100%;
  width: 100%;
  margin-bottom: 8px;
}

.how-to-listing__tile strong {
  display: block;
  font-size: 0.938rem;
  line-height: 1.25rem;
  color: var(--behr-black);
  margin-bottom: 4px;
}

.how-to-listing__tile p {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--behr-navy-primary);
}

.how-to-listing__load-more--wrapper {
  text-align: center;
}

.how-to-listing__load-more-btn {
  margin: auto;
  border-radius: 25px !important;
  margin-top: 80px;
}

.how-to-listing__pill-wrapper {
  display: flex;
  margin-top: 10px;
  margin-bottom: 28px;
}

.how-to-listing__filter-pill {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  font-size: 0.938rem;
  color: var(--behr-navy-primary);
  width: fit-content;
  padding: 5px 15px;
  border-radius: 15px;
  background-color: var(--behr-grey-light);
}

.how-to-listing__filter-pill button {
  border: none;
  background-color: var(--behr-grey-light);
  padding: 0;
  height: inherit;
}

.how-to-listing__filter-pill button img {
  width: 10px;
  margin-left: 10px;
}

.how-to-listing__clear-all-btn {
  border: none;
  background-color: #FFFFFF;
  padding: 0;
  height: inherit;
  color: var(--behr-red-primary);
  margin-left: 8px;
}

.how-to-listing a,
.how-to-listing__clear-all-btn--desktop,
.how-to-listing__clear-all-btn--desktop:visited {
  text-decoration: none !important;
}

.how-to-listing__tile > a {
  display: flex;
  height: 227px;
  width: 100%;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .how-to-listing__tile {
    margin: auto;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .how-to-listing__filter-wrapper {
    margin-bottom: 32px;
  }

  .how-to-listing__applied-filters-wrapper--desktop {
    display: none;
  }

  .how-to-listing__applied-filters-header {
    display: none;
  }

  .how-to-listing__applied-filters-wrapper--desktop > span {
    display: none;
  }

  .how-to-listing__pill-wrapper--mobile:not(.hide),
  .how-to-listing__applied-filters-wrapper--mobile > span {
    display: block;
  }

  .how-to-listing__pill-wrapper--mobile:not(.hide) {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-to-listing__clear-all-btn--desktop {
    display: none;
  }

  .how-to-listing__results-grid--wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .how-to-listing__tile {
    flex: 0 0 calc(50% - 20px);
  }

  .how-to-listing__tile a img {
    object-fit: cover;
  }
}

@media only screen and (min-width: 992px) {
  .how-to-listing__pill-wrapper{
    margin-top: -4px;
  }

  .how-to-listing__filter-pill{
    margin-top: 17px;
  }

  .how-to-listing__wrapper {
    padding-top: 16px;
  }

  .how-to-listing__pill-wrapper--mobile,
  .how-to-listing__filter-btn--mobile,
  .how-to-listing__filter-by-header,
  .how-to-listing__show-results-btn--wrapper {
    display: none;
  }

  .how-to-listing__filter {
    display: block;
  }

  .how-to-listing__applied-filters-wrapper--mobile {
    display: none;
  }

  .how-to-listing__wrapper {
    display: flex;
  }

  .how-to-listing__filter-wrapper {
    flex: 0 0 271px;
    margin-right: 32px;
  }

  .how-to-listing__applied-filters-wrapper--desktop {
    padding-top: 0;
  }

  .how-to-listing__pill-wrapper--mobile,
  .how-to-listing__pill-wrapper .how-to-listing__clear-all-btn--mobile {
    display: none;
  }

  .how-to-listing__applied-filters-header {
    display: flex;
    justify-content: space-between;
  }

  .how-to-listing__applied-filters-header .how-to-listing__clear-all-btn--desktop {
    color: var(--behr-grey-light);
    text-decoration: none;
  }
  .how-to-listing__applied-filters-header .how-to-listing__clear-all-btn--desktop:hover {
    cursor: default;
    text-decoration: none;
  }

  .how-to-listing__applied-filters-header .how-to-listing__clear-all-btn--desktop.active {
    color: var(--behr-red-primary);
    text-decoration: underline;
  }
  .how-to-listing__applied-filters-header .how-to-listing__clear-all-btn--desktop.active:hover {
    cursor: pointer;
    text-decoration: underline !important;
  }

  .how-to-listing__results--wrapper {
    display: flex;
    flex-direction: column;
  }

  .how-to-listing__results-grid--wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 30px;
    row-gap: 40px;
  }

  .how-to-listing__clear-all-btn:hover,
  .how-to-listing__tile--text-wrapper a:hover {
    text-decoration: underline;
  }
}

@media only screen and (min-width: 1200px) {
  .how-to-listing__results-grid--wrapper {
    width: 875px;
  }
}

/* VIDEO MODAL CSS*/
.how-to-listing__modal {
  display: none;
}

.how-to-listing__modal-content.how-to-listing__how-to {
  background: black;
}

.how-to-listing__modal-header.how-to-listing__how-to {
  background: black;
  border-bottom: none;
}

.how-to-listing__modal-title.how-to-listing__how-to {
  background: black;
  color: white;
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
}

.how-to-listing__behrfs-5  {
  font-size: 24px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 0px;
}


.how-to-listing__close {
  all: unset;
  color: #fff;
  font-family: var(--behr-heading-font);
  font-size: 25px;
  text-shadow: none;
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  opacity: .75;
  font-weight: var(--behr-atf-500);
}

.how-to-listing__close span {
  cursor: pointer;
}


.how-to-listing__how-to {
  background: var(--behr-beige);
}

.how-to-listing__modal {
  position: relative;
  /* display: none; */
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.5);
}

.how-to-listing__fade:not(.show)  {
  top: 0;
  opacity: 0;
}

.how-to-listing__fade {
  transition: opacity .15s linear;
}

.how-to-listing__modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0.3rem;
  outline: 0;
}

.how-to-listing__modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: .25rem!important;
  padding-right: .25rem!important;
}

/* .how-to-listing__embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
} */

.how-to-listing__embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.how-to-listing__embed-responsive::before {
  display: block;
  content: "";
}

.how-to-listing__embed-responsive::before {
  padding-top: 75%;
}

iframe.how-to-listing__embed-responsive-item{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.how-to-listing__modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.how-to-listing__modal-dialog {
  max-width: 500px;
  width: 100%;
  margin: 1.75rem auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-open {
	overflow: initial!important;
}

#imageGalleryDetailsModal {
	z-index: 1041 !important;
}

#imageGalleryDetailsModal .close.image-gallery {
	position: absolute;
    z-index: 5;
    right: 25px;
    top: 25px;
    padding: 5px;
    width: 25px;
    height: 25px;
    opacity: 1;
    font-weight: var(--behr-bold);
	font-size:24px;
    text-align: center;
    line-height: 1;
    text-shadow: 0 0 BLACK;
    background: unset!important;
	color: #fff;
}

#imageGalleryDetailsModal .modal-header {
	position: relative;
	padding: 0;
	border: unset;
}

#imageGalleryDetailsModal .modal-body {
	padding:0px !important;
}

#imageGalleryDetailsModal .image-gallery .modal-body {
	background: #fff;
}

#imageGalleryDetailsModal .modal-dialog-centered {
	max-width:1070px;
	padding:0px 30px
}

#imageGalleryDetailsModal .displayed-color-chip:after {
	content: "";
  	display: block;
  	padding-bottom: 100%;
}

.modal-fullscreen .modal-body {
	overflow-y: inherit;
}

.d-grid {
    display: grid !important;
}

#image-gallery img:hover,
#image-gallery .displayed-color-chip-container {
    cursor: pointer;
}

.buttons-container a {
    min-width: 255px !important;
}

p.displayed-color-chip-label {
    font-weight: var(--behr-bold);
}

@media (max-width: 991px) {
    .displayed-color-chip-desc,
    .buttons-container {
        text-align: center;
    }
    
    .button {
        height: 35px;
    }

    .displayed-color-chip-label {
		font-size: 17px!important;
	}
			
	.displayed-color-chip-code,
    #imageGalleryDetailsModal .button {
		font-size: 15px!important;
	}

    #imageGalleryDetailsModal .displayed-color-chip {
		height:202px;
	}
	
	#imageGalleryDetailsModal .modal-content {
		width: 700px;
	}
	
	#imageGalleryDetailsModal .modal-dialog {
		justify-content:center;
	}
}

@media (max-width:767px) {
	#imageGalleryDetailsModal .displayed-color-chip {
		height:151px;
	}
	#imageGalleryDetailsModal .modal-content {
		width: 375px;
	}
}

@media (min-width:768px) and (max-width: 991px) {
	.buttons-container {
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}
	
	.buttons-container a {
	    margin: 0px 10px !important;
	}
}
.icon-logo-grid {
    background-color: var(--behr-beige);
    position: relative;
}

.icon-logo-grid h2 {
    margin-bottom: -1rem;
}

.icon-logo-grid__item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    padding: 3rem 0;
    margin: auto;
}

.icon-logo-grid__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.icon-logo-grid__item span {
    font-family: var(--behr-heading-font);
    color: var(--behr-navy-primary);
    text-transform: uppercase;
    font-size: 1.5rem;
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: var(--behr-atf-500);
}

.icon-logo-grid__item p {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-black);
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0.25rem 3rem 0 3rem;
    margin-bottom: 1rem;
}

.icon-logo-grid__item p a {
    text-decoration: none;
    color: var(--behr-red-primary);
}

@media only screen and (min-width: 992px) {
    .icon-logo-grid__item-container {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: left;
    }

    .icon-logo-grid__item {
        width: calc(100% / 3);
    }

    .icon-logo-grid__item p a:hover {
        text-decoration: underline;
    }
}

@media only screen and (min-width: 1200px) {
    .icon-logo-grid__item-container {
        max-width: 1200px;
    }

    .icon-logo-grid__item span {
        font-size: 1.875rem;
        line-height: 2.1875rem;
    }

    .icon-logo-grid__item p {
        font-size: 0.8125rem;
        line-height: 1.25rem;
    }
}
.how-to-steps-wrapper{
    position: relative;
    margin-top: 40px;
}

.how-to-steps-wrapper h2 {
    font-size: 1.875rem;
    line-height: 2.75rem;
    font-family: var(--behr-heading-font);
    width: 66.67%;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 16px;
    font-weight: var(--behr-atf-500);
}

.how-to-steps__list{
    list-style: none;
    padding-top: 30px;
    margin-bottom: 16px;
}

.how-to-steps__list li{
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 160px auto;
    grid-column-gap: 20px;
}

.how-to-steps__list li figure{
    margin: 0;
    width: 160px;
    height: 160px;
    grid-row: 1/3;
}

.how-to-steps__list li figure img{
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.how-to-steps__tip{
    grid-column: 1/3;
    margin-top: 24px;
}

.how-to-steps__description strong{
    font-family: var(--behr-heading-font);
    font-size: 1.875rem;
    font-weight: var(--behr-atf-500);
    color: var(--behr-navy-primary);
    line-height: 35px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.how-to-steps__description p{
    font-size: 1.125rem;
    color: var(--behr-black);
    line-height: 24px;
}

.how-to-steps__tip span{
    font-family: var(--behr-body-and-label-font--bold);
    color: var(--behr-black);
    font-size: 1rem;
    line-height: 24px;
    font-weight: var(--behr-bold);
    text-transform: uppercase;
}

.how-to-steps__tip p{
    padding: 10px 20px;
    background: #d8d8d880;
    border-radius: 4px;
}

@media only screen and (min-width: 768px){
    .how-to-steps__tip{
        grid-column: 2/3;
    }

    .how-to-steps-wrapper h2 {
        font-size: 2.813rem;
        line-height: 2.625rem;
        border-bottom: 1px solid #DEDEDE;
    }

    .how-to-steps__description{
        margin: 0 0 auto 0;
    }

    .how-to-steps__list{
        display: flex;
        flex-direction: column;
        width: 66.67%;
    }

    .how-to-steps__list li figure{
        width: 190px;
        height: 190px;
    }

    .how-to-steps__list li{
        flex-basis: 66.67%;
        grid-column-gap: 60px;
    }

}
/* STRY0233172 */
@media (max-width:767px) {
    .how-to-steps-wrapper {
        overflow-x: hidden;
    }
}
@media (max-width:575px) {
    .how-to-steps__list li {
        grid-column-gap: 10px;
    }
}
.input__label {
  font-size: 0.938rem;
  font-weight: var(--behr-bold);
  text-transform: uppercase;
  display: block;
  color: var(--behr-black);
}

.input__label,
select,
label,
::placeholder {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

select,
::placeholder {
  font-size: 1rem;
  color: var(--behr-navy-primary);
}

input[type='text'],
select {
  max-width: 381px;
  border-radius: 20px;
  padding: 7px 12px;
  border: 1px solid var(--behr-input-default-border);
}

input:focus,
select:focus {
  border: 1px solid var(--behr-input-focus-border);
  outline: none;
}

input[type='radio'] {
  font-size: 1.125rem;
  color: var(--behr-black);
  border: 0px;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: -2px;
  vertical-align: middle;
}

/* customizing radio button */
.radio-wrapper {
  position: relative;
}

/* hiding standard radio and checkbox without removing it, lining it up directly under custom button for AT */
input[type='radio'] {
  height: 1.125rem;
  width: 1.125rem;
	left: -5px;
	opacity: 0;
  top: 5px;
  position: absolute;
  vertical-align: middle;
  margin-top: -3px;
}

/* custom radio */
input[type='radio'] + *::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.3rem;
  border: 1px solid var(--behr-navy-primary);
}

input[type='radio'] + *::before {
  border-radius: 50%;
}

input[type='radio']:checked + *::before {
  background: radial-gradient(var(--behr-navy-primary) 0%, var(--behr-navy-primary) 40%, transparent 50%, transparent);
  border-color: var(--behr-navy-primary);
}

input[type='radio']:checked + * {
  color: var(--behr-navy-primary);
}
.inspiration-detail {
  position: relative;
  margin-top: 20px;
  margin-bottom: 18px; 
}

.inspiration-detail__wrapper {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

.inspiration-detail__title {
  margin-top: 40px;
  margin-bottom: 8px;
  font-size: 2.813rem;
  line-height: 2.5rem;;
}

.inspiration-detail__desc {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.inspiration-detail__hero {
  width: 100%;
  overflow-x: scroll;
}

.inspiration-detail__hero img{
  width: auto;
  height: 400px;
  max-width: inherit;
}

.inspiration-detail__images {
  margin: 40px auto;
}

.inspiration-detail__images img {
  margin: 0 auto;
}

.inspiration-detail__mobile {
  display: block;
}

.inspiration-detail__desktop {
  display: none;
}

/* Breadcrumbs */
.inspiration-detail__breadcrumb {
  color: var(--behr-red-primary);
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
}

.inspiration-detail__breadcrumb img {
  margin-right: 10px;
}

.inspiration-detail__breadcrumb a {
  display: flex;
  text-decoration: none;
  color: inherit;
}

/* Featured color boxes and buttons area */
.inspiration-detail__featured-colors-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inspiration-detail__featured-container {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Featureed color boxes */
.inspiration-detail__color-swatch-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.inspiration-detail__color {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 6);
  min-width: 77px;
  max-width: 122px;
  font-size: 0.938em;
}

.inspiration-detail__color:last-child {
  margin-right: 0px;
}

.inspiration-detail__color-swatch {
  width:100%;
  align-self:center;
  cursor: pointer;
}

.inspiration-detail__color-swatch:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}


.inspiration-detail__color-label {
  align-self:center;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-navy-primary);
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 0.813rem;
}

.inspiration-detail__color-code {
  align-self:center;
  color: var(--behr-black);
  font-size: 0.938rem;
}

.inspiration-detail__buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 100%;
}

.inspiration-detail__buttons a {
  margin: 10px 0px;
  width: 100%;
  font-size: .8rem;
  padding: 14px 32px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
}

.featured-button-icon {
  margin-right: 10px;
}

.inspiration-detial__home-depot-logo {
  width: 73px;
  height: 82px;
  margin-bottom: 30px;
  align-self:flex-end;
}

.inspiration-detail__featured-colors-wrapper h3 {
  font-size: 2.125rem;
  line-height: 2.438rem;
  margin-bottom: 20px;
}

/* Media queries */
@media only screen and (min-width: 768px) {
  .inspiration-detail__hero img {
    width: auto;
    height: 600px;
  }
}

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

  .inspiration-detail {
    margin-top: 40px;
  }

  .inspiration-detail__mobile {
    display: none;
  }
  
  .inspiration-detail__desktop {
    display: block;
  }

  .inspiration-detail__buttons {
    flex: 0 0 30%;
    max-width: 30%;
    margin-top: 0px;
  }

  .inspiration-detail__featured-container {
    flex: 0 0 70%;
    max-width: 70%;
  }
  
  .inspiration-detail__title {
    font-size: 4.875rem;
    line-height: 4.688rem;;
  }
  

  .inspiration-detail__featured-colors-wrapper {
    flex-direction: row;
  }

  .inspiration-detail__featured-colors-wrapper h3 {
    font-size: 2.813rem;
    line-height: 2.625rem;
    margin-bottom: 24px;
  }  

  .inspiration-detail__color-swatch-wrapper {
    justify-content: flex-start;
  }

  .inspiration-detail__color-label {
    font-size: 0.938rem;
    line-height: 1.25rem;
  }
  
  .inspiration-detail__color-code {
    font-size: 0.938rem;
    line-height: 1.5rem;
  }

  .inspiration-detail__buttons a {
    width: 228px;
  }

  .inspiration-detail__mobile {
    display: none;
  }
  
  .inspiration-detail__desktop {
    display: block;
  }
}


.inspiration-listing {
  position: relative;
}

/* Inspiration Listing Component */
.inspiration-listing__wrapper {
  display: flex;
  flex-direction: column;
}

.inspiration-listing__wrapper button{
  justify-content: center;
}

.inspiration-listing__button {
  font-size: inherit;
  padding: 0;
  height: inherit;
  border: none;
  background-color: inherit;
}

.inspiration-listing__wrapper hr {
  border: none;
  border-top: 1px solid var(--behr-grey-light);
  width: 99%;
}

.inspiration-listing__wrapper hr:first-child {
  margin-top: 0px;
}

.inspiration-listing__wrapper li {
  list-style-type: none;
  white-space: nowrap;
}

.inspiration-listing__wrapper input[type='checkbox'], .inspiration-listing__wrapper input[type='radio'] {
  left: -50px;
}

.inspiration-listing__grid-listing-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 44px;
}

.inspiration-listing__no-scroll {
  overflow: hidden;
}

/* Filters */
.inspiration-listing__filters-wrapper {
  display: none;
}


.inspiration-listing__filters {
  width: 100%;
  /* display: none; */
}

.inspiration-listing__filters .inspiration-listing__show-results-wrapper {
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
  box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
}

.inspiration-listing__filters .inspiration-listing__show-results-wrapper button{
  width: 100%;
  height: 35px;
}

.inspiration-listing__close-filter-btn {
  cursor: pointer;
}

.inspiration-listing__mobile-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  font-family: var(--behr-body-and-label-font);
  border: none;
  border-bottom: 1px solid var(--behr-grey-light);
  padding: 12px 18px;
  font-weight: var(--behr-normal);
}

.inspiration-listing__mobile-header div {
  align-self: center;
}

.inspiration-listing__filters-wrapper.inspiration-listing__nav-active {
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  min-height: 100vh;
  overflow-y: scroll;
  max-height: 100%;
  position: fixed;
  display: block;
  padding-bottom: 70px;
}

.inspiration-listing__active-filters-header, .inspiration-listing__filter-options-wrapper {
  padding: 10px;
}

/* remove once button css fixed */
.inspiration-listing__filter-option button {
  padding: 0;
  border: none;
  max-height: 32px;
  background-color: inherit;
  cursor: inherit;
}

.inspiration-listing__filters .inspiration-listing__active-filters-header {
  display: flex;
  justify-content: space-between;
}

.inspiration-listing__filters .inspiration-listing__active-filters-header > h5 {
  white-space: nowrap;
  color: var(--behr-navy-primary);
  text-transform: uppercase;
  align-self: center;
  font-size: 1.5rem;
  line-height: 1.563rem;
}

/* Clear all button */
button.inspiration-listing__clear-all-btn {
  color: var(--behr-grey-light);
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  align-self: center;
  cursor: pointer;
  font-weight: var(--behr-bold);
  border: none;
  background-color: inherit;
  align-self: center;
  white-space: nowrap;
  padding: 0px;
  padding-left: 10px;
  height: inherit;
  line-height: 1.125rem;
}

button.inspiration-listing__clear-all-mobile-btn {
  align-self: center;
}


button.inspiration-listing__clear-all-btn.filters-applied:hover {
  text-decoration: underline;
}

button.inspiration-listing__clear-all-btn.filters-applied {
  color: var(--behr-red-primary);
}

/* active filter pills */

.inspiration-listing__active-filters {
 display: none;
 flex-direction: row;
 flex-wrap: nowrap;
 margin: 10px 0px 66px 0px;
}

.inspiration-listing__active-filters > .inspiration-listing__pills-container{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 8px;
}

.inspiration-listing__nav-active .inspiration-listing__pills-container{
  padding: 0px 5px;
}

.active-filters-pill-close {
  background: none;
}

.inspiration-listing__pills-container > .active-filters-pill {
  font-size: 0.938rem;
  background-color: rgba(216, 216, 216, .50);
  color: var(--behr-navy-primary);
  padding: 5px 15px;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: center;
  margin-right: 8px;
}

.inspiration-listing__pills-container > .active-filters-pill:last-child {
  margin-right: 0px;
}

.inspiration-listing__pills-container > .active-filters-pill > p {
  margin-right: 10px;
}

.inspiration-listing__pills-container > .active-filters-pill > button {
  display: flex;
}

.inspiration-listing__pills-container > .active-filters-pill > button > img {
  width: 8px;
}

.inspiration-listing__filter-option {
  padding-top: 20px;
}

.inspiration-listing__filter-option > button > label {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-navy-primary);
  cursor: pointer;
  font-size: 0.938rem;
  line-height: 1.25rem;
}

.inspiration-listing__filter-option > button {
  width: 100%;
  margin-bottom: 10px;
  text-transform: uppercase;
  cursor: pointer;
}

.inspiration-listing__filter-option > button > img:first-child {
  margin-right: 10px;
}

.inspiration-listing__filter-option > button > img:last-child {
  margin-left: auto;
}

.inspiration-listing__filter-option.active > button > img:last-child {
  transform: rotate(180deg);
}

.inspiration-listing__filter-option > div {
  margin: 10px 0px;
  display: none;
  flex-direction: column;
  max-width: 220px;
}

.inspiration-listing__filter-option.active > div {
  display: flex;
}

/* Color selections */
.inspiration-listing__filter-option > div.inspiration-listing__color-selection {
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0px;
}

.inspiration-listing__filter-option > div.inspiration-listing__color-selection {
  margin-right: 10px;
}

.inspiration-listing__filter-option > div.inspiration-listing__color-selection > button {
  width: 32px;
  height: 32px;
  display: flex;
}

.inspiration-listing__filter-option > div.inspiration-listing__color-selection > button > div {
  border: 1px solid var(--behr-grey-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.inspiration-listing__filter-option > div.inspiration-listing__color-selection > button > div.color-selected {
  outline: 1px solid var(--behr-navy-primary);
  outline-offset: 2px;
}

/* Radio Selections */
.inspiration-listing__filter-option > div.inspiration-listing__radio-selection {
  padding-bottom: 10px;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}

.inspiration-listing__filter-option > div.inspiration-listing__radio-selection > button {
  justify-content: inherit;
}

.inspiration-listing__filter-option > div.inspiration-listing__radio-selection > input {
  margin: 10px 0px;
  height: 21px;
  width: 21px;
}

.inspiration-listing__filter-option > div.inspiration-listing__radio-selection > button > label {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  color: var(--behr-black);
  font-weight: var(--behr-normal);
  font-size: 1.1rem;
  cursor: pointer;
  text-transform: none;
}

/* Grid */
.inspiration-listing__listing {
  position: relative;
  margin-bottom: 40px;
}

.inspiration-listing__listing h3{
  line-height: 2.188rem;
  font-size: 1.875rem;
  margin-bottom: 10px;
}

/* Featureed color boxes */
.inspiration-listing__listing-color-swatch-wrapper {
  display: flex;
  font-size: 0.9rem;
  margin: 10px 0px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.inspiration-listing__listing-color {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 6);
  min-width: 77px;
  font-size: 0.938em;
  text-decoration: none;
  /* overflow: hidden; */
  cursor: pointer;
}

.inspiration-listing__listing-color:hover{
  text-decoration: underline;
  text-decoration-color: var(--behr-navy-primary);
}

.inspiration-listing__listing-color:last-child {
  margin-right: 0px;
}

.inspiration-listing__listing-color-swatch {
  width: 100%;
  align-self: center;
}

.inspiration-listing__listing-color-swatch:after {
  content: "";
  display: block;
  padding-bottom: 100%;
} 

.inspiration-listing__listing-color-label {
  align-self:center;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-navy-primary);
  font-size: 0.813rem;
  line-height: 1.125rem;
  margin-top: 8px;
  text-transform: uppercase;
}

.inspiration-listing__listing-color-code {
  align-self: center;
  color: var(--behr-black);
  font-size: 0.938rem;
  line-height: 1.5rem;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

.inspiration-listing__listing-view-more {
  float: right;
  padding-top: 20px;
  display: none;
  position: relative;
  z-index: 1;
}

.inspiration-listing__listing-view-more:hover {
  border-bottom: 1px solid var(--behr-red-primary);
}

.inspiration-listing__listing-view-more a {
  color: var(--behr-red-primary);
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  text-decoration: none;
}

.inspiration-listing__mobile {
  display: block;
}

.inspiration-listing__mobile-flex {
  margin-top: 24px;
  margin-bottom: 0px;
}

.inspiration-listing__active-filters.inspiration-listing__mobile-flex {
  padding: 0px;
}

.inspiration-listing__desktop {
  display: none;
}

.inspiration-listing__mobile-active-filters-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.inspiration-listing__mobile-active-filters-wrapper:first-child {
  flex: 1 1 20%;
}

.inspiration-listing__mobile-active-filters-wrapper:last-child {
  flex: 1 1 20%;
}

.inspiration-listing__filter-by-btn {
  height: 35px;
}

.inspiration-listing__filter-by {
  color: var(--behr-navy-primary);
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
}

.inspiration-listing__load-more-wrapper {
  align-self: center;
}

.inspiration-listing__load-more-btn {
  width: 172px;
  margin: 16px auto 40px auto;
}

@media only screen and (min-width: 992px) {
  .inspiration-listing__active-filters {
    margin: 10px 0px 22px 0px;
   }

  .inspiration-listing__wrapper {
    display: flex;
    flex-direction: row;
    gap: 2%;
    justify-content: center;
  }

  .inspiration-listing__filters-wrapper {
    display: block;
    flex: 1 1 30%;
  }

  .inspiration-listing__grid-listing-wrapper {
    flex: 1 1 75%;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
  }

  .inspiration-listing__mobile-active-filters-wrapper {
    display: none;
  }
  
  .inspiration-listing__listing {
    margin-bottom: 10px;
  }

  .inspiration-listing__listing-color-wrapper {
    max-width: fit-content;
    transform: translate(0px, -60px);
    /* position: absolute;
    top: calc(100% - 5em); */
  }

  .inspiration-listing__listing-color {
    min-width: 132px;
    max-width: 132px;
    margin: 0px;
    background-color: #FFF;
    padding-top: 10px;
    padding-right: 10px;
  }

  .inspiration-listing__listing-color-swatch-wrapper {
    gap: 0px;
    margin: 0px;
  }

  .inspiration-listing__filters-wrapper.inspiration-listing__nav-active {
    padding: 10px 0px;
    position: relative;
    display: block;
  }

  .inspiration-listing__active-filters-header, .inspiration-listing__filter-options-wrapper {
    padding: 0px 10px 24px 0px;
  }

  .inspiration-listing__filters {
    display: block;
  }

  .inspiration-listing__active-filters > .inspiration-listing__pills-container{
    margin: 0px;
    padding: 0px;
  }

  .inspiration-listing__filter-by-btn {
    display: none;
  }

  .inspiration-listing__mobile-header {
    display: none;
  }

  .inspiration-listing__mobile {
    display: none;
  }

  .inspiration-listing__mobile-flex {
    display: none!important;
  }

  .inspiration-listing__desktop {
    display: block;
  }

  .inspiration-listing__listing-view-more { 
    display: block;
  }

  .inspiration-listing__listing-view-more-short {
    display: block;
  }

  .inspiration-listing__show-results-wrapper {
    display: none;
  }

  .inspiration-listing__listing-view-more-long {
    display: none;
  }

  .inspiration-listing__clear-all-mobile-btn {
    display: none;
  }

  .inspiration-listing__listing h3{
    line-height: 1.875rem;
    margin-bottom: 16px;
  }

  .inspiration-listing__listing-color-label {
    font-size: 0.938rem;
    line-height: 1.25rem;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .inspiration-listing__listing-view-more-short {
    display: none;
  }

  .inspiration-listing__listing-view-more-long {
    display: block;
  }

}
.language-selector {
  max-width: 1190px;
  margin: auto;
}

.language-selector__wrapper {
  display: none;
  color: var(--behr-black) !important;
}

.language-selector__wrapper.show {
  display: block;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  font-size: 1rem;
  background-color: #FFFFFF;
  width: max-content;
}

.language-selector__wrapper table {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  font-size: 1rem;
}

.language-selector__wrapper > span {
  display: inline-block;
  padding: 12px 12px 12px 0;
  color: var(--behr-black) !important;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  text-transform: none !important;
}

.language-selector__wrapper > table {
  border-collapse: collapse;
  width: 100%;
}

.language-selector__wrapper > table span {
  display: inline-block;
  padding: 12px 12px 12px 0;
  color: var(--behr-black) !important;
}

.language-selector__wrapper .language-selector__flag-country-wrapper {
  color: var(--behr-navy-primary) !important;
  display: flex;
  align-items: center;
}

.language-selector__wrapper td {
  padding: 0 0 0 12px;
}

.language-selector__wrapper tr {
  border-bottom: 1px solid var(--behr-grey-light);
}

.language-selector__wrapper tr img {
  margin-right: 8px;
}

/* .language-selector__wrapper td {
  min-width: 100px;
} */

.language-selector__wrapper td a {
  color: var(--behr-navy-primary) !important;
  font-weight: var(--behr-normal);
  margin-right: 20px;
}

.language-selector__wrapper tr:first-child {
  border-top: 1px solid var(--behr-grey-light);
}

.language-selector__wrapper a {
  flex: 0 0 28%;
  text-decoration: none;
}

.language-selector__wrapper .language-selector__flag-country-wrapper span {
  font-weight: var(--behr-normal) !important;
}

.language-selector__wrapper td:not(.language-selector__flag-country-wrapper) a {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-black) !important;
}

@media only screen and (max-width: 991px) {
  .language-selector {
    position: absolute;
    bottom: 0;
    padding-left: 29px;
  }

  .language-selector__wrapper td:not(.language-selector__flag-country-wrapper) {
    word-break: break-all;
  }
}

@media only screen and (min-width: 992px) {
  .language-selector__wrapper.show {
    border: 1px solid var(--behr-grey-light);
    position: absolute;
    background-color: #FFFFFF;
    right: 0;
  }

  .language-selector__wrapper td a:hover {
    text-decoration: underline;
  }

  .language-selector__wrapper > span{
    padding: 12px 12px 12px 12px;
  }
}
/* STRY0251974 */
@media (max-width: 375px) {
	.language-selector__wrapper td {
		padding: 0 0 0 8px;
	}
}
@media (max-width: 374px) {
	.language-selector__wrapper td a {
	  margin-right: 0px;
	}
}
@media (max-width: 335px) {
	.language-selector__wrapper td {
		padding: 0 0 0 5px;
	}
}
.page-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
}

.page-header h1 {
    font-size: 34px;
    line-height: normal;
}

.page-header-behr-background {
    background-color: var(--behr-beige);
}

.page-header span {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    padding-top: 0.25rem;
    margin-bottom: 1rem !important;
    font-size: 15px;
}

.page-header__description {
    font-size: 15px;
    line-height: 20px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.page-header__description p {
    margin-bottom: 1rem;
}

.product-detail-header [data-bv-show="rating_summary"] .bv_main_container .bv_button_buttonMinimalist{
    height: 16px !important;
}

/* small desktop */
@media only screen and (min-width: 768px) {
    .page-header span {
        font-family: var(--behr-body-and-label-font--bold);
        font-weight: var(--behr-bold);
        padding-top: 0.25rem;
        margin-bottom: 1rem !important;
        font-size: 15px;
    }
}

/* large desktop */
@media only screen and (min-width: 1200px) {
    .page-header h1 {
        font-size: 45px;
    }

    .page-header__description {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (max-width:1199px) {
    .page-header h1 {
        font-size: 45px !important;
        line-height: 40px !important;
    }
}
.two-col-with-sidebar__rte p, .two-col-with-sidebar__rte li {
    font-size: 18px;
    line-height: 24px;
}
@media (max-width:768px) {
    .two-col-with-sidebar__rte p strong{
        font-size: 15px;
        line-height: 24px;
    }
}

.behr-legal div.container {
    padding-left: 0px!important;
    padding-right: 0px!important;
}

.behr-legal .two-col-with-sidebar{
    padding-top: 20px;
    margin-bottom: 40px;
}

.behr-legal.two-col-with-sidebar{
    padding-top: 10px;
}

.behr-legal .two-col-with-sidebar__header div.page-header {
    padding-top: 0;
    padding-bottom: 0;
}

.behr-legal .two-col-with-sidebar__header h1{
    font-size: 3.875rem;
    line-height: 4.65rem;
    margin-bottom: 16px;
}

.behr-legal .rte a{
    word-break: break-all;
}

.behr-legal .two-col-with-sidebar__header p {
    font-size: 1.125rem;
    color: var(--behr-black);
    line-height: 24px;
    margin-bottom: 8px;
}

.behr-legal .auto__height{
    height: auto !important;
}

.behr-legal.container .two-col-with-sidebar__header{
    margin-bottom: 22px !important;
}

.behr-legal__copy{
    margin-bottom: 24px;
}

.behr-legal div.container {
    padding-left: 0px!important;
    padding-right: 0px!important;
}

.behr-legal__copy div.container {
    margin-bottom: 3rem;
}

.behr-legal p{
    font-size: .938rem;
    line-height: 20px;
    margin-bottom: 16px;
}

.behr-legal h2{
    font-size: 2.813rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.pp-content{
    margin-bottom: 3rem;
}

.behr-legal a{
    text-decoration: none;
    color: var(--behr-red-primary);
    font-weight: var(--behr-bold);
}

.behr-legal ol{
    margin-bottom: 16px;
    padding-left: 40px;
}

.behr-legal ul{
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}

.policy-links li a{
    color: var(--behr-red-primary);
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    margin-bottom: 8px;
    display: block;
}

.behr-legal ol li{
    list-style: none;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.behr-legal b{
    font-size: .938rem;
    line-height: 20px;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    margin-bottom: 16px;
    display: block;
}

.aside-panel__tel, .aside-panel__fax{
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.behr-legal .aside-panel{
    margin-bottom: 48px;
}

.behr-legal .list-unstyled p{
    margin-bottom: 0;
}

.behr-legal .two-col-with-sidebar__aside{
margin-bottom: 40px;
}

@media only screen and (min-width: 320px){
    .behr-legal b {
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0px;
    }
}

@media (max-width: 379px){
    .behr-legal b {
        font-size: 12px !important;
        line-height: 20px;
        letter-spacing: 0px;
    }
}

@media (max-width: 991px) {
    .behr-legal ol li {
        line-height: normal !important;
    }

    .behr-legal table td {
        font-size: 0.75rem !important;
        line-height: 1rem !important;
    }
}

@media (max-width: 992px){
    .behr-legal .two-col-with-sidebar__header.container, .behr-legal .two-col-with-sidebar__main.container{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (min-width: 992px){
    .two-col-with-sidebar__header h1{
        font-size: 4.688rem;
    }

    .two-col-with-sidebar__aside h3{
        font-size: 1.875rem;
    }

    .two-col-with-sidebar__left h2{
        font-size: 2.813rem;
    }

    .behr-legal .two-col-with-sidebar__header.container, .behr-legal .two-col-with-sidebar__main.container{
        padding: 0 0 0 0 !important;
        margin: 0 0 0 0 !important;
        position: relative;
    }

    .two-col-with-sidebar__left, .two-col-with-sidebar__rte{
        width: 76%;
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        padding-top: 0;
        margin-bottom: 0;
        padding-right: 110px;
    }

    .two-col-with-sidebar__aside {
        max-width: 25%;
        padding-top: 0;
        position: absolute;
        right: 0;
        top: 0;
        border-bottom: none;
    }
    
    .two-col-with-sidebar{
        padding-top: 40px;
    }

    .two-col-with-sidebar .two-col-with-sidebar-header{
        max-width: 790px !important;
    }

    .two-col-with-sidebar-header h1{
        font-size: 4.875rem;
        line-height: 75px;
    }

}


@media only screen and (min-width: 1200px){
    .behr-legal .two-col-with-sidebar__header h1{
        font-size: 4.875rem;
        line-height: 75px;
        margin-bottom: 16px;
    }
}
.learn-science {
    background-color: #F6F5F0;
}
.learn-science .learn-science__text h2 {
    font-family: var(--behr-heading-font);
    font-style: normal;
    font-weight: var(--behr-atf-500);
    font-size: 45px;
    line-height: 45px;
    color: #465058;
    padding-bottom: 20px;
}
.learn-science .learn-science__text p {
    font-family: var(--behr-body-and-label-font);
    font-style: normal;
    font-weight: var(--behr-normal);
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.015em;
    color: rgba(0, 0, 0, 0.8);
}
.learn-science__text {
    margin: auto 0px;
}
@media (max-width:768px) {
    .learn-science {
        overflow-x: hidden;
    }
    .learn-science .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .learn-science__text {
        padding-left: 43px !important;
        padding-right: 43px !important;
    }
    .learn-science .learn-science__text h2 {
        padding-bottom: 25px;
    }
}
@media (max-width:991px) {
    .learn-science__text {
        margin-top: 30px;
    }
}

.palette-detail-header {
	background-color: var(--behr-beige);
	position: relative;
}

.palette-detail-header-wrapper {
	display: flex;
    flex-direction: column;
}

.palette-detail-header__color-wrapper {
	display: flex;
	flex-direction: column;
}

.palette-detail-header__actions-wrapper {
	display: flex;
	flex-direction: column;
}

.palette-detail-header__actions-wrapper .paletteDetail-legal {
	font-size: .625rem;
    font-family: var(--behr-body-and-label-font);
	font-weight: var(--behr-normal);
    color: var(--behr-navy-primary);
	padding-top: 1.5rem;
}

.ten-years-disclaimer {
	padding-top: 16px;
}

.palette-detail-header__actions-btn {
	padding-top: 1.5rem;
}

.palette-detail-header__actions-btn a, .palette-detail-header__actions-btn button {
	width: 100%;
	font-size: 16px;
}

.palette-detail-header__four-square {
	width: 100%;
}

.palette-detail-header__four-square .outer {
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 1.2;
    word-break: break-word;
	width: 100%;
	border-style: solid;
    border-color: #dee2e6!important;
    border-width: 2px;
}

.palette-detail-header__four-square .outer .inner {
	width: 100%!important;
    padding-bottom: 100%;
    position: relative;
    left: 0%!important;
    overflow: hidden;
	border-radius: 0!important;
}

.palette-detail-header__four-square .palette-color-1 {
	position: absolute;
	height: calc(66.66% - 1px);
	width: calc(66.66% - 1px);
}
.palette-detail-header__four-square .palette-color-2 {
	position: absolute;
	width: calc(33.33% - 1px);
	height: calc(33.33% - 2px);
	right: 0;
}

.palette-detail-header__four-square .palette-color-3 {
	position: absolute;
	width: calc(33.33% - 1px);
	height: calc(33.33% - 1px);
	right: 0;
	top: 33.33%;
}

.palette-detail-header__four-square .palette-color-4 {
	position: absolute;
    height: calc(33.33% - 1px);
    width: 100%;
    bottom: 0;
}

.palette-detail-header-wrapper .onecoat {
	display: flex;
    flex-wrap: wrap;
}

.palette-detail-header__four-square .circle-number {
    display: inline;
    bottom: 10px;
    left: calc(100% - 40px);
    width: 30px;
    height: 30px;
    padding: 7px 9px;
    font-size: 15px;
    position: absolute;
}


.palette-detail-header .mixedCoat{
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #000000 50%, #000000 100%)!important;
    display: block !important;
}

.palette-detail-header .intCoat{
    display: block !important;
}

.palette-detail-header .exteriorCoat{
    background-color: #000!important;
    color: #fff!important;
    display: block !important;
}

.palette-detail-header__coat-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0.5rem 0rem;
}

.palette-detail-header__coat {
	display: inline-flex;
    align-items: center;
	font-family: var(--behr-body-and-label-font);
	font-weight: var(--behr-normal);
	font-size: 0.9375rem;
    line-height: 20px;
    letter-spacing: 0px;
	width: auto
}

.palette-detail-header__coat .circle-number {
	margin-right: 5px;
}

.palette-detail-header__coat-1, .palette-detail-header__coat-2, .palette-detail-header__coat-3 {
	display: none;
}

.palette-detail-header__coat .circle-number {
	display: block!important
}

/* color chips */
.palette-detail-header__color-chip-wrapper {
	width: 70%;
	display: flex;
    flex-direction: column;
	justify-content: center;
}

/* color chips */
.palette-detail-header__color-chip-wrapper.four-color-chips-space {
    justify-content: flex-start;
}

.palette-detail-header__color-chip {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin-bottom: 1.5rem;
	align-items: center;
}


.palette-detail-header__color-chip .outer{
	width: 20%;
	border-style: solid;
    border-color: #dee2e6!important;
    border-width: 2px;
}

.palette-detail-header__color-chip .outer .inner {
    border-radius: 0!important;
    padding-bottom: 100%;
    width: 100%!important;
    left: 0%!important;
}

.palette-detail-header__cp-title {
	font-size: 20px;
    line-height: 22px;
	font-family: var(--behr-heading-font);
	color: var(--behr-navy-primary);
	font-weight: var(--behr-atf-500);
}

.palette-detail-header__cp-code {
	font-family: var(--behr-body-and-label-font);
	font-weight: var(--behr-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
	gap: 10px;
	font-size: 18px;
}

.palette-detail-header__actions-label {
	font-family: var(--behr-body-and-label-font--bold);
	font-weight: var(--behr-bold);
	text-transform: uppercase;
	font-size: 15px;
}

.palette-detail-header__actions-title {
	text-transform: uppercase;
	font-family: var(--behr-heading-font);
	color: var(--behr-navy-primary);
	font-weight: var(--behr-atf-500);
	line-height: normal;
	font-size: 2.125rem;
}

.palette-detail-header__actions-title-wrapper.palette-detail-header__mobile {
	margin-bottom: 10px!important;
	padding-top: 1.5rem!important;
}

.palette-detail-header__actions-title-wrapper.palette-detail-header__mobile .palette-detail-header__coat-wrapper {
	margin-bottom: 10px!important;
}

.palette-detail-header__mobile {
	display: block;
}

.palette-detail-header__desktop {
	display: none;
}

.palette-detail-header__in-store-btn {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.save-palette-color-btn img {
	margin-right: 8px;
}

.remove-palette-color-btn img {
	margin-right: 8px;	
}

@media only screen and (max-width: 991px) {
	.palette-detail-header-wrapper.container {
		padding-left: 0px!important;
		padding-right: 0px!important;
	}

	.palette-detail-header__color-chip-wrapper.container {
		margin: 0 0 0 0!important;
	}
}
.palette-detail-header-wrapper {
	padding-bottom: 2rem !important;
}
@media only screen and (min-width: 992px) {
	.palette-detail-header {
		background-color: var(--behr-beige);
	}

	.palette-detail-header__four-square .outer {
		width: calc(100% - 20px);
	}

	.palette-detail-header-wrapper {
		flex-direction: row;
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.palette-detail-header__four-square {
		width: 60%;
	}
	
	.palette-detail-header__color-wrapper {
		flex-direction: row;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
		padding: 0px 15px 0px 0px;
	}
	
	.palette-detail-header__actions-wrapper {
		display: flex;
		flex-direction: column;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.palette-detail-header__actions-wrapper.container {
		padding: 0 0 0 0!important;
	}

	.palette-detail-header__actions-label {
		font-family: var(--behr-body-and-label-font--bold);
		font-weight: var(--behr-bold);
		text-transform: uppercase;	
	}

	.palette-detail-header__actions-btn a, .palette-detail-header__actions-btn button {
		width: 80%;
	}

	.palette-detail-header__in-store-btn {
		display: none;
	}

	/* color chips */
	.palette-detail-header__color-chip-wrapper {
		width: 40%;
	}

	.palette-detail-header__color-chip-wrapper.container {
		margin: 0 0 0 0!important;
		padding: 0 0 0 0!important;
	}
	
	.palette-detail-header__color-chip:last-child {
		margin-bottom: 0;
	}

	.palette-detail-header__mobile {
		display: none;
	}

	.palette-detail-header__desktop {
		display: block;
	}

	.palette-detail-header__coat {
		width: auto;
	}
}

/* @media all and (min-width: 768px) and (max-width: 991px) {  
	.palette-detail-header__color-chip-wrapper {
		width: 50%;
	}
}   */

@media all and (min-width: 992px) and (max-width: 1200px) {  
	.palette-detail-header__color-chip {
		margin-bottom: 0.5rem;
	}
}  

@media all and (min-width: 1200px) { 
	.palette-detail-header__color-chip-wrapper .palette-detail-header__color-chip .outer {
		width: 27.5%!important;
	}  

	.palette-detail-header__actions-title {
		font-size: 2.813rem;
		line-height: 40px;
	}

	.palette-detail-header__color-chip {
		margin-bottom: 1.8rem;
	}
}

@media all and (min-width: 992px) and (max-width: 1199px) { 
	.palette-detail-header__color-chip-wrapper .palette-detail-header__color-chip .outer {
		width: 32.5%!important;
	}
}

@media only screen and (min-width: 1330px) {
	.palette-detail-header {
		padding-top: 3rem!important;
	}
}
.paletteDetail-legal a {
	color: #bd483c;
	text-decoration: none;
}
@media (max-width:464px) {
	.palette-detail-header__coat {
		width: 45% !important;
	}
}
@media (min-width:1331px) {
	.palette-detail-header__actions-btn a, .palette-detail-header__actions-btn button {
		width: 75%;
	}
}
.compare__table-feilds ul li {
    font-size: 1.25rem;
    line-height: 22px;
    text-transform: uppercase;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    font-family: var(--behr-heading-font);
    color: var(--behr-navy-primary);
    font-weight: var(--behr-atf-500);
}

.compare__table-products ul li {
    padding-left: 15px;
    padding-right: 15px;
    height: 100%;
}

.compare__table-products ul li p {
    color: var(--behr-black);
    font-size: .938rem;
    padding-bottom: 30px;
    margin-bottom: 0;
}

.product-cat-compare__header {
    padding: 24px 0;
}

.compare__table-products-detail h3 {
    font-size: 1.25rem;
    padding-top: 16px;
    line-height: 22px;
    margin-bottom: 30px;
}

.compare__table-products-detail a {
    font-size: .75rem;
    text-decoration: none;
    color: var(--behr-red-primary);
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.compare__table-products-detail a:hover {
    text-decoration: underline;
    color: var(--behr-navy-primary);
}


.product-cat-compare{
    padding-top: 24px;
    padding-bottom: 24px;
}

.product-cat-compare__table {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
} 

.product-cat-compare__table ul {
    list-style: none;
    margin-bottom: 0;
}

.compare__table-feilds ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 56px;
}

.compare__table-products-owl-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.compare__table-feilds .compare__table-products-detail {
    margin-bottom: 0;
}

.compare__table-feilds {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    align-items: flex-end;
}

.compare__table-products {
    flex: 0 0 75%;
    max-width: 75%;
}

.compare__table-products-detail {
    margin-bottom: 35px;
    height: auto !important;
}

.product-cat-compare-wrapper {
    background: var(--behr-beige);
    position: relative;
}

.product-cat-compare__disclaimer{
    margin-top: 68px;
}

.product-cat-compare__disclaimer p{
    font-size: .625rem;
    padding-bottom: 1rem;
}

.product-cat-compare__disclaimer a {
    text-decoration: none;
    color: var(--behr-red-primary);
}

.product-cat-compare__disclaimer a:hover{
    text-decoration: underline;
    color: var(--behr-navy-primary);
}

.product-cat-compare__header h2{
    font-size: 2.125rem;
    line-height: 30px;
}

.product-cat-compare .owl-carousel .owl-dots .owl-dot.active span {
    background: #000 !important;
  }

  .product-cat-compare .owl-theme .owl-dots .owl-dot span{
    background: #fff !important;
    border: 1px solid #000;
    height: 11px;
    width: 11px;
    margin: 3px;
  }


@media only screen and (max-width: 992px) {
    .compare__table-products.container{
        padding: 0;
        max-width: none;
    }
}

@media only screen and (min-width: 768px) {
    .compare__table-products ul li {
        background: #fff;
    }
    .compare__table-products-owl-carousel .owl-stage  > * + * {
        margin-left: 15px;
    }

    .compare__table-products ul li{
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .compare__table-feilds ul{
        margin-bottom: 70px;
    }

    .compare__table-products-detail a{
        font-size: .938rem;
    }

    .compare__table-products-owl-carousel .owl-stage{
        padding-left: 0 !important;
    }
}

@media only screen and (min-width: 992px) {
    .compare__table-products-owl-carousel .owl-stage-outer{
        margin-left: 0 !important; 
        margin-right: 0 !important;
    }
    .product-cat-compare__header{
        display: none;
    }

    .product-cat-compare__disclaimer{
        margin-top: 44px;
    }

    .compare__table-feilds{
        display: none;
    }

    .compare__table-products{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-cat-compare__table {
        margin-left: 0px;
        margin-right: 0px;
    }

    .compare__table-products-owl-carousel.owl-carousel .owl-stage{
        width: auto !important;
    }

    .compare__table-products-detail h3{
        margin-bottom: 0;
    }

    .compare__table-feilds {
        max-width: initial;     
    }
}

@media only screen and (min-width: 1200px) {
    .compare__table-products ul li p{
        font-size: 1.125rem;
    }
}
@media (max-width:574px) {
    .product-cat-compare-wrapper .compare__table-feilds {
        flex: 0 0 40%;
        max-width: 40%;
    }
    .product-cat-compare-wrapper .compare__table-products {
        flex: 0 0 60%;
        max-width: 60%;
    }
    .compare__table-products ul li {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.pro-product-intro h2 {
    font-size: 72px;
    line-height: 72px;
}
@media (max-width:991px) {
    .pro-product-intro h2 {
        font-size: 45px;
        line-height: 45px;
    }
}
.product-data-sheets-wrapper{
    position: relative;
}

.behr-product-datasheet-panel{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.datasheet-panel__img{
    flex: 0 0 41.67%;
    max-width: 41.67%;
    padding-right: 15px;
    padding-left: 15px;
}

.behr-product-datasheet-panel{
    padding-bottom: 24px;
    padding-top: 24px;
}

.datasheet-panel__details{
    margin-bottom: 10%;
    padding-top: 8px;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 58.3%;
    max-width: 58.3%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.behr-product-datasheet-panel h4{
    flex: 0 0 100%;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 1.5rem;
}

.datasheet-panel__details h5{
    font-size: 1.5rem;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--behr-navy-primary);
    padding-bottom: 8px;
}


.datasheet-panel__details-msds a:not(.button){
    display: block;
    color: var(--behr-red-primary);
    text-decoration: none;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: .75rem;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.datasheet-panel__details-msds a:hover{
    text-decoration: underline;
}

.behr-product-datasheet-panel .button{
    text-decoration: none;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.data-sheet-btn--dsktp.button{
    display: none;
}

.data-sheet-btn--mobile{
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.grey-hr{
    border: 0;
    height: 1px;
    background: #0000001a;
    margin-top: 32px;
    margin-bottom: 24px;
    border-radius: 0;
}

@media only screen and (min-width: 768px){
    .datasheet-panel__details-msds a{
        font-size: .938rem;
    }

    .data-sheet-btn--dsktp.button{
        display: inline-flex;
    }

    .data-sheet-btn--mobile{
        display: none !important;
    }

    .datasheet-panel__img{
        margin-left: 16.67%;
        flex: 33.3%;
        max-width: 33.3%;
    }

    .datasheet-panel__details{
        flex: 0 0 50%;
        max-width: 50%;
        padding-top: 24px;
    }

    .behr-product-datasheet-panel h4{
        flex: 0 0 83.3%;
        max-width: 83.3%;
        margin-left: 8.3%;
    }

    .grey-hr{
        max-width: 83.3%;
        width: 83.3%;
    }
}

@media only screen and (min-width: 1200px){
    .behr-product-datasheet-panel h4, .datasheet-panel__details h5{
        font-size: 1.857rem;
    }
}
@media (max-width:375px) {
    .datasheet-panel__details {
        padding-left:7px;
    }
}
.productCategoryListing{
    position: relative;
}

.product-cat-listing__header{
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.product-cat-listing__header p, .additional-product-cat-listing__header p{
    line-height: 20px;
}

.product-cat-listing__header p{
    padding-top: 8px;
    padding-bottom: 8px;
}

.product-cat-listing__main.container{
    padding-right: 0;
    padding-left: 0;
}

.product-cat-listing{
    /* background: var(--behr-beige); */
}

.product-cat-listing .product-cat-compare__disclaimer{
    display: none;
}

.product-cat-listing .compare__table-feilds ul{
    margin-bottom: 56px;
}

.product-cat-listing .compare__table-products ul li p{
    min-height: 52px;
}

.product-cat-listing__header h1{
    font-size: 45px;
    line-height: 40px;
    margin-bottom: 0.5rem;
}

.product-cat-4-col{
    list-style: none;
}

.product-cat-listing__thumbImg{
    padding-right: 15%;
}

.product-cat-4-col li{
    padding: 30px;
}

.product-cat-listing__products li{
    margin: 0 3px;
    border-bottom: 5px solid #fff;
}

.product-cat-listing__meta h4{
    font-size: 1.5rem;
    flex: 1;
}

.product-cat-listing__productRating [data-bv-rating] .bv_main_container .bv_text, [data-bv-show=inline_rating] .bv_main_container .bv_text{
    font-family: var(--behr-body-and-label-font) !important;
    font-weight: var(--behr-normal);
}

.product-cat-listing__productRating{
    margin: .5rem 0;
    font-size: 15px;
}

.product-cat-listing__productRating a{
    display: flex;
    text-decoration: none;
    color: inherit;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    align-items: center;
}

.product-cat-listing__productRating a p{
    font-size: .938rem;
}

.productRating__stars{
    display: flex;
    padding-right: 5px;
}

.productRating__averageRating{
    padding-right: 5px;
}

.product-cat-listing__learn-more{
    text-decoration: none;
    margin: 1.5rem 0;
    min-height: 50px !important;
    bottom: unset !important;
}

@media (min-width:768px) {
    a.product-cat-listing__learn-more.black-secondary:active {
        background: #282c2f;
        color: #fff !important;
    }
    
    a.product-cat-listing__learn-more.black-secondary:hover {
        border: 1px solid #373e44;
        text-decoration: none;
        color: #373e44;
    }
}
/*********** product-cat-listing__features *************/
.product-cat-listing__features-list li > div{
    background: #fff;
    margin-left: -15px;
    padding: 24px 15px;
}

.product-cat-listing__features .product-cat-listing__features-list{
    margin: 0;
}

.product-cat-listing__features-list li{
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.product-cat-listing__features-list li p{
    margin-bottom: 40px;
    min-height: 24px;
}

.product-cat-listing__features{
    display: none;
}

/* disclaimer */
.product-cat-listing__disclaimer{
    margin-top: 32px;
}

.product-cat-listing__disclaimer p{
    font-size: .625rem;
    padding-bottom: 1rem;
}

.product-cat-listing__disclaimer a{
    text-decoration: none;
    color: var(--behr-red-primary);
}

.product-cat-listing__disclaimer a:hover{
    text-decoration: underline;
}

/* additional products */
.additional-product-cat-listing{
    padding-top: 90px;
}

.additional-product-cat-listing h3{
    font-size: 2.125rem;
    line-height: 30px;
}
    
.product-cat-listing__additional-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.product-cat-listing__additional-image-container img{
    padding-right: 1.5rem;
}

.product-cat-listing__additional-list li{
    border-bottom: 5px solid #fff;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1.5rem;
}

.product-cat-listing__additional-list li h4{
    font-size: 1.5rem;
    line-height: 25px;
}

.additional-product-cat-listing__header{
    padding-bottom: 24px;
}

.additional-product-cat-listing__header h3{
    margin-bottom: 0.5rem;
}

/* ***************apply when there is no featured product document***************** */
.product-cat-listing-wrapper .additional-product-cat-listing:first-child {
    background: #fff !important;
    padding-top: 30px;
}

.product-cat-listing-wrapper .additional-product-cat-listing:first-child .additional-product-cat-listing__header{
    /* padding-top: 48px; */
}

.product-cat-listing-wrapper .additional-product-cat-listing:first-child .additional-product-cat-listing__header h1{
    font-size: 45px;
    line-height: 40px;
    margin-bottom: 0.5rem;
}

/* ***************apply when there is no featured product document***************** */
@media only screen and (max-width: 226px) {
    .product-cat-listing__learn-more{
        text-align: left;
    }
}

@media only screen and (max-width: 319px) {
    .product-cat-listing__additional-list li h4 {
        font-size: 1rem;
        word-break: break-word;
    }
}

@media only screen and (max-width: 767px){
    .product-cat-listing__additional-list li .button{
        border: none;
        padding: 0;
        margin:  6px 0 0 0;
        color: var(--behr-red-primary);
        height: auto;
        font-size: 12px;
        line-height: 14px;
    }
    .product-cat-listing__learn-more.black-secondary {
        color: var(--behr-navy-primary) !important;
        border: 1px solid var(--behr-navy-primary) !important;
        padding: 5px 30px !important;
    }

    .product-cat-listing__meta h4{
        height: auto !important;
    }
    
     .product-cat-listing__additional-list li{
        flex: unset;
        max-width: 100%;
    }
}

@media only screen and (min-width: 768px){
    .product-cat-listing .compare__table-feilds ul{
        margin-bottom: 70px;
    }

    .product-cat-listing__additional-list li{
        border-bottom: none;
    }

    .additional-product-cat-listing h3{
        padding-top: 4px;
    }

    .product-cat-listing__header h1, 
    .product-cat-listing__header p,
    .additional-product-cat-listing__header h1,
    .additional-product-cat-listing__header h3,
    .additional-product-cat-listing__header p{
        flex: 0 0 50%;
    }

    .product-cat-listing__header, .additional-product-cat-listing__header{
        display: flex;
    }

    .product-cat-listing__header p, .additional-product-cat-listing__header p{
        padding-left: 30px;
    }

    .product-cat-4-col{
        display: flex;
        flex-wrap: wrap;
    }

    .product-cat-4-col li{
        display: flex;
        flex-direction: column;
        flex: 0 0 50%;
        padding: 0 15px;
        border-bottom: none;
        margin: 0;
    }

    .product-cat-listing__meta{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }

    .product-cat-listing__meta h4{
        padding-top: 24px;
    }

}

@media only screen and (min-width: 992px){
    .product-cat-listing .product-cat-compare-wrapper{
        display: none;
    }

    .product-cat-listing__additional-list li{
        flex: 0 0 25%;
        max-width: 25%;
    }

    .product-cat-4-col li {
        flex: 0 0 25%;
    }

    .product-cat-listing__features{
        display: block;
        margin-top: 48px;
    }

    .product-cat-4-col{
        margin:  0 -15px;
    }

    .product-cat-listing__main.container{
        padding-left: 56px;
        padding-right: 56px;
    }
}

@media only screen and (min-width: 1200px){
    /* ***************apply when there is no featured product document***************** */
    .product-cat-listing-wrapper .additional-product-cat-listing:first-child .additional-product-cat-listing__header h1{
        font-size: 4.875rem;
        line-height: 75px;
    }
    /* ***************apply when there is no featured product document***************** */
    .product-cat-listing__header h1{
        font-size: 72px;
        line-height: 72px;
    }

    .product-cat-listing__header p, .additional-product-cat-listing__header p{
        font-size: 1.125rem;
        line-height: 24px;
    }

    .product-cat-listing__meta h4{
        font-size: 1.875rem;
        line-height: 35px;
    }

    .product-cat-listing__meta p{
        font-size: 18px;
    }

}

@media only screen and (min-width: 1300px){
    .product-cat-listing-wrapper .container{
        padding-right: 15px;
        padding-left: 15px;
    }
}
.with-option-link .product-cat-listing__left-wrapper p {
    padding: 0px !important;
}
.productCategoryListing .product-cat-listing__additional-list .product-cat-listing__productShortDesc {
    margin-top: 10px;
}
/* @media (min-width:992px) and (max-width:1024px) {
    .additional-product-cat-listing{
        background: linear-gradient(180deg, #f6f5f0 320px, white 150px);
    }
}
@media (min-width:1025px) {
    .additional-product-cat-listing{
        background: linear-gradient(180deg, #f6f5f0 350px, white 100px);
    }
} */
.product-cat-listing__left-wrapper h1 {
    max-width: 580px;
}
.product-cat-listing__filter-products {
    color: #BD483C;
    cursor: pointer;
    float: right;
    font-weight: var(--behr-bold);
}
.product-cat-listing__filter-products:after {
    content: url(/binaries/content/assets/behrbrxm/web/images/poc/filter-icon.png);
    /* margin-top: 4px; */
    padding-left: 5px;
}
@media (max-width:991px) {
    .product-cat-listing__filter-products {
        float: left;
        margin-top: 10px;
    }
}
/* C045 - Product Detail Header Start */
.product-detail-header{
    padding: 80px 0px 0px 0px;
    position: relative;
}
.product-header-detail__legal {
    font-size: 10px !important;
    line-height: 12px !important;
    margin: 0.5rem 0px !important;
}

.product-header-detail__disclaimer p {
    font-size: 10px !important;
    line-height: 12px !important;
    margin: 0.5rem 0px !important;
}
.product-header-detail__disclaimer p {
    font-size: 14.4px !important;
    font-weight: var(--behr-normal) !important;
    line-height: 24px !important;
}
.product-header-detail__disclaimer p small {
    font-size: 14.4px !important;
    font-weight: var(--behr-normal) !important;
    line-height: 24px !important;
}
.product-detail-header h1 {
    font-size: 3.875rem !important;
    line-height: 1.2 !important;
    padding-top: 15px;
}
.product-detail-header__star-icon {
    font-size: 24px !important;
    color: #ffc107 !important;
    margin: 0px 10px;
}
.product-detail-header__reviews {
    color: #BD483C;
    font-size: 15px ;
    text-decoration: none;
    font-weight: var(--behr-bold) !important;
    margin: 0px 5px;
}

a.product-detail-header__learn-more {
    color: #BD483C;
    font-weight: var(--behr-bold);
    text-decoration: none;
}

.product-detail-header button.red-primary{
    font-size: .938rem;
    border-radius: 25px;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.product-detail-header__learn-more:hover,
.product-detail-header a:hover{
    color: #465058;
    text-decoration: underline;
}
.product-detail-header__reviews:hover {
    cursor: pointer;
    font-size: 16px;
}
.product-detail-header button {
    margin:20px 0px;
}
.product-detail-header img{
    margin: auto;
}
.product-detail-header .product-header-detail__disclaimer {
    font-size: 10px;
}
.product-detail-header .product-detail-header__item label {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    padding-top: 4%;
}

.product-detail-header .product-detail-header__item p {
    padding-top: 3%;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.product-detail-header .product-detail-header__item .product-ratings p {
    padding-top: 0% !important;
}
@media (min-width:768px) {
    .product-detail-header__wrapper{
        display: flex;
        width: 100%;
    }
    .product-detail-header__item {
        width: calc(100% /2);
    }
    
    .product-detail-header .product-detail-header__order--0 {
        order: 1 !important;
    }
    .product-detail-header .product-detail-header__order--1 {
        order: 0 !important;
    }
    
    .product-detail-header .product-ratings {
	    display: flex;
	    padding: 10px 0;
	}
}
@media (max-width:767px) {
    .product-detail-header .product-detail-header__order--0 {
        order: 0 !important;
    }
    .product-detail-header .product-detail-header__order--1 {
        order: 1 !important;
        text-align: center;
    }
    .product-detail-header p b{
        display: block;
    }
    .product-detail-header__wrapper{
        display: grid;
    }
    
    .product-detail-header .product-ratings {
	    padding: 10px 0;
	}
    
    div[data-bv-show="rating_summary"] {
    	text-align: center !important;
	}
}
/* C045 - Product Detail Header Ends */
.product-line-compare {
  position: relative; /* this is for edit content button for CMS */
}

.product-line-compare__wrapper {
  padding-bottom: 88px !important;
}

.product-line-compare__wrapper .owl-theme .owl-dots .owl-dot span{
  display: none;
}

.product-line-compare__wrapper .owl-carousel .owl-dots .owl-dot.active{
  background: #000;
}

.product-line-compare__wrapper .owl-carousel .owl-dots .owl-dot {
  height: 11px;
  width: 11px;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 50%;
  margin: 3px;
  display: inline-block;
}

.product-line-compare__wrapper .owl-theme .owl-dots{
  position: relative;
}

.product-line-compare h2 {
  font-size: 2.125rem;
  padding: 24px 0;
}

.product-line-compare span,
.product-line-compare div {
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
  color: var(--behr-navy-primary);
  text-transform: uppercase;
}

.product-line-compare__table-wrapper {
  display: flex;
}

.product-line-compare__table-wrapper ul {
	color: var(--behr-navy-primary) !important;
}

.product-line-compare__rooms-column {
  flex: 0 0 33%;
  max-width: 33%;
  margin-right: 30px;
}

.product-line-compare__rooms-column span {
  font-size: 1.5rem;
}

.product-line-compare__rooms-column ul,
.product-line-compare__image-title-wrapper > a {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  font-size: 0.75rem;
}

.product-line-compare__rooms-column div:first-child,
.product-line-compare__can-column > div:first-child {
  height: 310px;
}

.product-line-compare__rooms-column ul li,
.product-line-compare__can-column div {
  display: flex;
  align-items: center;
  height: 50px;
  line-height: normal;
  padding: 10px 0;
}

.product-line-compare__can-column div:not(:first-child) {
  justify-content: center;
  }

  /* .product-line-compare__can-column div:first-child{
  justify-content: end;
  } */

.product-line-compare__can-columns-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.product-line-compare__can-columns-wrapper > div {
  width: 200px;
}

.product-line-compare__can-column {
  padding: 24px 15px 0 15px;
  border-left: 1px solid var(--behr-navy-primary);
}

.product-line-compare__image-title-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
  padding-top: 0 !important;
}

.product-line-compare__image-title-wrapper img{
  margin: 0 auto;
}

.product-line-compare__image-title-wrapper > span {
  height: auto;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.375rem;
}

.product-line-compare__image-title-wrapper > a {
  display: block;
  color: var(--behr-red-primary);
  text-transform: capitalize;
  text-decoration: none !important;
  align-self: flex-start;
  line-height: 1.375rem;
}

.product-line-compare__image-title-wrapper > a:hover {
  text-decoration: underline !important;
}

.product-line-compare .owl-carousel .owl-item img {
  max-width: 100%;
}

.product-line-compare .owl-carousel .owl-item .product-line-compare__star-wrapper img {
  height: 20px;
  width: 20px;
}

.product-line-compare__rooms-column > .product-line-compare__top-row {
  margin-top: 24px;
}

@media only screen and (min-width: 391px) and (max-width: 767px) {
  .product-line-compare__can-columns-wrapper > div {
    width: unset;
  }

  .product-line-compare__image-title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start !important;
  }

  .product-line-compare .owl-carousel .owl-item img {
    /* max-height: 300px; */
    height: 92%;
    width: unset !important;
    object-fit: contain;
  }
}

@media only screen and (max-width: 400px) {
  .product-line-compare .owl-carousel .owl-item img{
    max-width: 80px;
    max-height: 118px;
  }
}

@media only screen and (min-width: 768px) {
  .product-line-compare__rooms-column {
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 15px;
  }

  .product-line-compare h2 {
    font-size: 2.813rem;
  }

  .product-line-compare__rooms-column ul li,
  .product-line-compare__image-title-wrapper > a {
    font-size: 0.938rem;
  }

  .product-line-compare__can-columns-wrapper > div {
    flex: 0 0 16%;
  }

  .product-line-compare__can-columns-wrapper {
    flex: 0 0 84%;
    max-width: 84%;
  }
}
@media (min-width:992px) {
  .product-line-compare .product-line-compare__table-wrapper .product-line-compare__rooms-column ul {
    margin-top: 15%;
  }
}
@media (min-width:800px) and (max-width:991px)  {
  .product-line-compare .product-line-compare__table-wrapper .product-line-compare__rooms-column ul {
    margin-top: 17%;
  }
}
@media (min-width:768px) and (max-width:799px) {
  .product-line-compare .product-line-compare__table-wrapper .product-line-compare__rooms-column ul {
    margin-top: 20%;
  }
}
@media (min-width:601px) and (max-width:767px) {
  .product-line-compare .product-line-compare__table-wrapper .product-line-compare__rooms-column ul {
    margin-top: 16%;
  }
}
@media (min-width:501px) and (max-width:600px) {
  .product-line-compare .product-line-compare__table-wrapper .product-line-compare__rooms-column ul {
    margin-top: 19%;
  }
}
@media (max-width:500px) {
  .product-line-compare .product-line-compare__table-wrapper .product-line-compare__rooms-column ul {
    margin-top: 25%;
  }
}
/* CSS For Product Highlights Component */
.product-highlights{
    position: relative;
    padding: 24px 0px 32px 0px;
}
.product-highlights h2 {
    color: #465058;
    font-size: 1.875rem;
    line-height: 2.188rem;
    font-weight: var(--behr-atf-500);
    font-family: var(--behr-heading-font);
}
.product-highlights p{
    color: #212529;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: var(--behr-normal);
    font-family: var(--behr-body-and-label-font);
    margin-top: 8px;
}
.product-highlights .product-highlights__wrapper {
    display:flex;
    width: 100%;
}
.product-highlights .product-highlights__item {
    width: calc(100% /3);
    padding: 0px 12px 0px 0px;
}
@media (max-width:767px) {
    .product-highlights h2 {
        font-size: 24px;
        line-height: 25px;
    }
    .product-highlights .product-highlights__item:not(:first-child) {
        margin-top: 24px;
    }
    .product-highlights .product-highlights__item {
        width: 100%;
    }
    .product-highlights .product-highlights__wrapper {
        display:block;
    }
}
/* End CSS For Product Highlights Component */
.product-line-header {
  position: relative; /* this is for edit content button for CMS */
}

.product-line-header__wrapper {
  background-color: #F6F5F0;
}

.product-line-header .product-line-header__banner-image--desktop {
  display: none;
}
.product-line-header img + div {
  background-color: #F6F5F0;
}

.product-line-header__banner-image--mobile,
.product-line-header__banner-image--desktop {
  margin: auto;
}

.product-line-hero-banner{
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.product-line-header__text-wrapper {
  margin-bottom: 16px;
  padding-top: 2em !important;
}

.product-line-header__text-wrapper h1 {
  font-size: 2.813rem;
  line-height: normal;
  margin-bottom: 24px;
}

.product-line-header__text-wrapper span {
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
  font-size: 1.875rem;
  text-transform: uppercase;
}

.product-line-header__text-wrapper span,
.product-line-header__text-wrapper p {
  color: var(--behr-navy-primary);
  font-weight: var(--behr-normal);
}

.product-line-header__text-wrapper p {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  font-size: 0.938rem;
  margin-bottom: 16px;
}

.product-line-header small p {
  display: inline-block;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  color: var(--behr-navy-primary);
  font-size: 0.625rem;
  margin-bottom: 16px;
}

.product-line-header small p a {
  text-decoration: none;
  color: var(--behr-red-primary);
}

.product-line-header__button-wrapper {
  padding: 8px 0 40px 0;
}

.product-line-header__features {
  background-color: #FFF;
  padding-top: 40px;
  margin-left: -18px;
  margin-right: -18px;
  padding-left: 18px;
  padding-right: 18px;
}

.product-line-header__features > h2 {
  font-weight: var(--behr-atf-500);
  font-size: 2rem !important;
  margin-bottom: 2%;
}

.product-line-header__features ul {
  font-family: var(--behr-body-and-label-font);
  color: var(--behr-navy-primary);
  font-weight: var(--behr-normal);
  list-style-type: none;
}

.product-line-header__features ul li {
  margin-bottom: 16px;
}


@media (min-width: 768px) and (max-width: 1199px){
  .product-line-header .product-line-header__banner-image--desktop {
      height: 418px;
      max-width: none;
  }
}

@media only screen and (max-width: 1199px) {
  .product-line-header__description > p,
  .product-line-header__features ul li {
    font-size: 0.938rem;
  }
}

@media only screen and (min-width: 768px) {
  .product-line-header .product-line-header__banner-image--mobile {
    display: none;
  }

  .product-line-header .product-line-header__banner-image--desktop {
    display: block;
    max-width: none;
  }

  .product-line-header__text-wrapper {
    display: flex;
    gap: 30px;
  }

  /* .product-line-header__text-wrapper > div {
    flex: 50%;
  } */

  .product-line-header__description {
    flex: 58%;
  }

  .product-line-header__features {
    flex: 41%;
    padding-left: 15px;
  }

  /* .product-line-header__features ul {
    padding-top: 18px;
  } */

  .product-line-header__text-wrapper span {
    display: inline-block;
    margin-bottom: 24px;
  }

  .product-line-header__features {
    background-color: #F6F5F0;
    padding-top: 0;
  }

  .product-line-header small p a:hover {
    text-decoration: underline;
  }
}

@media only screen and (min-width: 992px) {
  .product-line-header__features {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}

@media only screen and (min-width: 1200px) {
  .product-line-header__text-wrapper h1 {
    font-size: 4.875rem;
  }

  .product-line-header__description > p,
  .product-line-header__text-wrapper li {
    font-size: 1.125rem;
  }
}

@media only screen and (min-width: 1440px) {
  .product-line-header__text-wrapper {
    max-width: 1190px;
    margin: 0 auto;
  }
}

.product-line-header__title {
	flex: 0 0 50%;
}
.product-line-header .product-line-header__features small {
  font-size: 10px;
}
@media (min-width:450px) and (max-width:767px) {
  #overview .product-line-header .product-line-header__banner-image--mobile {
    display: block;
  }
}
.product-line-listing {
    padding: 1.5rem 0;
    position: relative;
}

.product-line-listing__wrapper h2 {
    font-size: 34px;
    line-height: normal;
    padding: 0.25rem 0;
}

.product-line-listing__wrapper p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 1rem;
    color: var(--behr-black);
}

.product-line-listing__item-container {
    display: flex;
    flex-flow: row wrap;
}

.product-line-listing__item {
    padding: 0 15px;
}

.product-line-listing__item img {
    max-height: 300px;
    width: auto !important;
    /* height: auto !important; */
    padding-bottom: 1.5rem;
}

.product-line-listing__item-title {
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    color: var(--behr-navy-primary);
    font-size: 24px;
    line-height: 25px;
    text-transform: uppercase;
    white-space: unset;
}

.product-line-listing__item a {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 12px;
    line-height: 14px;
    color: var(--behr-red-primary);
    text-decoration: none;
}

.product-line-listing__item a:hover {
    color: var(--behr-navy-primary);
    text-decoration: underline;
}

.product-line-listing__item-details {
    padding: 1.5rem 0;
}


.product-line-listing__item-details p {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.product-line-listing__item-details a:hover {
    text-decoration: none;
    color: var(--behr-black);
}

.product-line-listing__item-details a p {
    color: var(--behr-black);
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 15px;
    line-height: 22px;
    text-decoration: none;
}

.c-icon.active {
    fill: #fece3c;
}

/* owl carousel styles */
.product-line-listing .owl-dots button span {
    margin: 3px !important;
}

.product-line-listing .owl-stage-outer {
    margin-bottom: 1.5rem !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.product-line-listing .owl-carousel .owl-dots .owl-dot.active span,  .threeColLayout .owl-carousel .owl-dots .owl-dot.active span {
    background: #000 !important;
}

.product-line-listing .owl-theme .owl-dots .owl-dot span, .threeColLayout .owl-theme .owl-dots .owl-dot span{
    background: #fff !important;
    border: 1px solid #000;
    height: 11px;
    width: 11px;
}

/* star rating svg styles */
.product-line-listing__item-details a, .product-line-listing__item-details a p {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.product-line-listing__item-details a svg {
    width: 16px;
    height: 16px;
}

.product-line-listing__item-details a svg path {
    fill: gold;
}

.product-line-listing [data-bv-show="rating_summary"] .bv_main_container {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

@media only screen and (min-width: 768px) {
    .product-line-listing .owl-stage {
        padding-left: 30px !important;
    }

    .product-line-listing__item a {
        font-size: 15px;
        line-height: 18px;
    }
}

/* not carousel */
@media only screen and (min-width: 992px) {
    .product-line-listing__item {
        flex: 0 0 25%;
        max-width: 25%;
        padding-top: 24px;
    }

    .product-line-listing__item-container {
        margin-left: -15px;
        padding-left: 0;
        padding-bottom: 1.5rem;
    }

    .product-line-listing__item-container p {
        margin-bottom: 1rem;
    }

    .product-line-listing__item img {
        /* height: auto !important; */
        white-space: unset !important;
    }

    .product-line-listing__item-details p {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .product-line-listing__wrapper h2 {
        font-size: 45px;
    }

    .product-line-listing__wrapper p {
        font-size: 18px;
        line-height: 24px;
    }
}
.product-line-listing__item-title a {
    font-size: unset;
    line-height: unset;
    color: unset;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
}
.product-line-compare span a {
    font-size: unset;
    line-height: unset;
    font-family: unset;
    color: unset;
    font-weight: unset;
}
.product-usage-wrapper{
    position: relative;
}

.product-usage__block{
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #0000001a;
}

div.product-usage__block p.empty-paragraph {
	display: none !important;
}

.product-usage h4{
    font-size: 1.5rem;
    line-height: 25px;
    letter-spacing: 0;
    font-weight: var(--behr-bold);
    padding-top: 5px;
}

.product-usage__icons{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.product-usage__icons li{
    padding: 24px 15px;
    display: flex;
    align-items: flex-start;
    flex:  0 0 50%;
    max-width: 50%;
}

.product-usage-wrapper .product-usage .product-usage__block:first-child:not(.productline-specs-wrapper .product-usage-wrapper .product-usage .product-usage__block:first-child) .block-list-container{
    max-height: none;
}

.product-usage p, .product-usage li, .product-usage label{
    color: var(--behr-black);
}

.product-usage_dry-time strong{
    margin-right: 4px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: #212529;
}
.prod-usage-lower-text b {
    text-transform: lowercase !important;
    font-size: 18px;
}
.product-usage_dry-time p b {
    font-size: 18px;
}
.prod-usage-transform-text-none b {
    text-transform: none !important;
  }
.product-usage__icons li img{
    margin-right: 16px;
}

.product-usage__block-where-to-use{
    padding: 24px 15px 24px 0;
}

.bold-copy--black{
    font-size: 15px;
    line-height: 20px;
    font-family: var(--behr-body-and-label-font);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    font-weight: var(--behr-bold);
}

.product-usage__block-list .bold-copy--black{
    margin-bottom: 16px;
}

.product-usage__block-list ul, 
.product-usage__block-where-to-use ul{
    padding-left: 40px;
    margin-bottom: 16px;
    list-style: disc;
}

.usage-subsection-heading{
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
}

.product-usage__block-list ul li,
.product-usage__block-where-to-use ul li {
    padding: 10px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    line-height: 20px;
}


.pls-product-usage__read-more:not(.product-line-spec--mobile__panel-group .pls-product-usage__read-more):not(.product-line-spec--dsktp .pls-product-usage__read-more){
    display: none;
}

.product-line-spec--dsktp .product-usage__block-list ul, 
.product-line-spec--dsktp .product-usage__block-where-to-use ul {
    list-style-type: disc;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    list-style-position: inside;
    margin-left: 0px;
    padding-left: 0 !important;
}

.product-line-spec--dsktp .product-usage__block-list ul li,
.product-line-spec--dsktp .product-usage__block-where-to-use ul li {
    padding: 10px;
    list-style: disc;
}

.product-usage__block-list{
    padding-right: 15px;
}

.product-line-spec--dsktp .block-list-container, .product-line-spec--dsktp .product-usage__block{
    padding-left: 24px;
    padding-right: 24px;
}

.product-usage__read-more, .pls-product-usage__read-more{
    display: block;
    padding-left: 10px;
    padding-top: 24px;
    text-decoration: none;
    color: #bd483c !important;
    font-family: var(--behr-body-and-label-font--bold);
    font-size: 12px;
    font-weight: var(--behr-bold);
    cursor: pointer;
}

.product-usage__read-more:hover, .pls-product-usage__read-more:hover{
    color: var(--behr-navy-primary) !important;text-decoration: underline;
}

.product-usage__read-more:hover::after, .pls-product-usage__read-more:hover::after{
    color: var(--behr-navy-primary) !important;
}

.product-usage__read-more::after, .pls-product-usage__read-more::after {
    border-style: solid;
    border-width: 2.5px 2.5px 0 0;
    content: '';
    display: inline-block;
    height: 6px;
    transform: rotate(135deg);
    width: 6px;
    margin-left: 24px;
    color: #bd483c;
    position: relative;
    bottom: 2px;
}


.block-list-container{
    max-height: 250px;
    overflow: hidden;
    /* overflow-x: visible !important; */
}

.auto-height{
    max-height: none !important;
}


@media (min-width: 768px){
    .product-usage__read-more, .pls-product-usage__read-more{
        font-size: .938rem;
    }

    .product-usage h4{
        font-size: 1.875rem;
    }

    .product-usage__icons{
        padding-left: 16px;
    }

    .product-usage__icons li{
        flex: 0 0 25%;
        max-width: 25%;
        padding-left: 0;
    }

    .block-list-container{
        max-height: none;
    }

    .product-usage__read-more{
        display: none;
    }
    
    .product-usage__block-list ul, 
    .product-usage__block-where-to-use ul {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }

    .product-usage__block-list ul li, 
    .product-usage__block-where-to-use ul li {
        break-inside: avoid-column !important;
    }
}

@media (min-width: 992px) and (max-width:1099px) {
    .product-usage{
        max-width: 100% !important;
        margin: 0 auto;
    }
    .product-usage__icons {
        margin-right: 0px;
    }
  }
  @media (min-width: 1100px){
      .product-usage{
          max-width: 83.3% !important;
          margin: 0 auto;
      }
  }

@media (min-width: 1200px){
    .product-usage__icons p, .product-usage__block-where-to-use p{
        font-size: 1.125rem;
    }
}
@media (max-width:375px) {
    .product-usage__mglft {
        margin-left: 40px;
    }
}
@media (min-width:1201px) and (max-width:1330px) {
    .product-usage__icons .product-usage_dry-time p {
        font-size: 0.9rem;
    }
    .product-usage__icons .product-usage_dry-time p b {
        font-size: 16px;
    }
}
@media (min-width:992px) and (max-width:1200px) {
    .product-usage__icons .product-usage_dry-time p {
        font-size: 0.9rem;
    }
    .product-usage__icons .product-usage_dry-time p b {
        font-size: 14px;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .product-usage__icons .product-usage_dry-time p {
        font-size: 0.9rem;
    }
    .product-usage__icons .product-usage_dry-time p b {
        font-size: 14px;
    }
}
@media (max-width:991px) {
    .product-usage__block-list ul:last-child {
        margin-bottom: -9px !important;
    }
}
.product-gallery__wrapper a {
	font-weight: var(--behr-bold) !important;
}
 
.product-slider-wrapper {
    margin: 30px 0;
}
 
.product-gallery .owl-theme .owl-dots .owl-dot.active span {
    background: #465058;
}
 
.product-gallery .owl-theme .owl-dots .owl-dot span {
	background: white;
	border: 1px solid #465058;
}
 
.product-gallery .owl-theme .owl-dots .owl-dot {
    height: 25px;
}
 
.product-gallery__wrapper h2 {
    font-size: 45px;
    line-height: 45px;
}
 
.product-gallery__item-title h3 {
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    color: #465058;
}
 
.product-can-image img {
	max-height: 337px;
}
 
.gallery-image img {
	min-height: 475px;
	max-height: 475px;
	max-width: unset !important;
}
 
.product-gallery-scrollable-content {
	min-height: 475px;
	max-height: 475px;
}
 
.product-gallery-scrollable-content {
	overflow: auto;
	overflow-y: hidden;
}
 
/* Hide scrollbar for Chrome, Safari and Opera */
.product-gallery-scrollable-content::-webkit-scrollbar {
	display: none;
}
 
/* Hide scrollbar for IE, Edge and Firefox */
.product-gallery-scrollable-content {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
@media (max-width: 991px) {
	.product-gallery__item-title h3 {
	    font-size: 22px;
	    line-height: 22px;
	}
 
	.product-can-image img {
		max-height: 195px;
	}
 
	.product-info-wrapper {
	    max-width: unset;
	}
 
	.product-gallery__wrapper h2 {
		font-size: 34px;
		line-height: 42px;
	}
	
	.product-slider-wrapper {
		border-top: 1px solid #ABABAB;
		border-bottom: 1px solid #ABABAB;
		background: #F6F5F0;
	}
	
	.gallery-image img {
		min-height: unset !important;
		max-height: unset !important;
		max-width: unset !important;
	}
}
.productline-specs-wrapper{
    position: relative;
}

/* mobile accordian css */
.mobile-panel-heading::after {
    content: "";
    box-sizing: border-box;
    position: relative;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid;
    border-right: 3px solid;
    transform: rotate(45deg);
    float: right;
}

.mobile-panel-heading{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    color: var(--behr-navy-primary);
    word-spacing: 3px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-panel-heading:focus{
    outline: none !important;
}

.rotate-caret-180::after{
    transform: rotate(225deg) !important;
}

.product-line-spec--mobile{
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.product-line-spec--mobile__panel-group .grey-hr{
    display: none;
}

.product-line-spec--mobile__panel-group > li{
    padding: 15px 0px;
    list-style: none;
}

.product-line-spec--mobile__panel-group > li:not(:last-child) {
    border-bottom: 2px solid #dee2e6;
}

.product-line-spec--mobile .product-usage > .product-usage__block{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-usage__block-where-to-use p{
    margin-bottom: 16px;
}

.product-line-spec--mobile__panel-group .product-usage__block-where-to-use{
    padding-top: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid #0000001a;
    margin-bottom: 30px;
}

.mobile-panel .container{
    padding: 0 !important;
    margin: 0 !important;
}

.product-line-spec--dsktp .behr-product-warranty > .container{
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/******** product usage mobile *********/
.mobile-panel .product-usage__block h4, 
.productline-specs-wrapper .product-line-spec--dsktp .product-usage__block > h4,
.product-line-spec--dsktp .behr-product-datasheet-panel > h4,
.product-line-spec--dsktp .block-list-container > h4,
.product-line-spec--dsktp .warranty-copy > h5{
    display: none;
}

.productline-specs-wrapper .behr-product-datasheet-panel{
    padding-bottom: 0;
}

.mobile-panel .product-usage__block{
    padding-top: 0;
}

.mobile-panel .product-usage .product-usage__block:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.product-line-spec--mobile__panel-group .product-usage__read-more{
    display: none !important;
}

.product-line-spec--mobile__panel-group .block-list-container{
    max-height: none;
    overflow: auto;
}

.product-line-spec--mobile .product-usage__block:last-of-type{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.max-height-400{
    max-height: 400px;
    overflow: hidden;
    /* overflow-x: visible; */
}
.product-line-spec--mobile .pls-product-usage__read-more{
    padding-left: 0;
}

.mobile-panel .product-usage__block{
    margin-bottom: 54px;
}

/* product datasheets mobile */
.mobile-panel .behr-product-datasheet-panel h4, 
.mobile-panel .behr-product-datasheet-panel hr, 
.mobile-panel .behr-product-datasheet-panel .data-sheet-btn--mobile, 
.mobile-panel .behr-product-datasheet-panel .data-sheet-btn--dsktp {
    display: none;
}

/******** product waranty mobile *********/
.product-line-spec--mobile .mobile-panel .warranty-copy{
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.product-line-spec--mobile .mobile-panel .warranty-copy h5{
    display: none;
}


/************ product line specs desktop tabs **********/
.product-line-spec--dsktp{
    display: none;
    padding-top: 24px;
    padding-bottom: 24px;
}

.productline-specs-wrapper .tab-content{
    display: none;
}

.product-line-spec__tab{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-bottom: 24px;
    border-bottom: 1px solid #dee2e6;
    max-width: 83.3%;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    /* padding: 0 34px; */
}

.product-line-spec--dsktp .product-usage .product-usage__block:first-child{
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product-line-spec--dsktp .product-usage .product-usage__block{
    border-bottom: none;
}

.product-line-spec__tab li{
    flex: 0 0 auto;
    color: var(--behr-navy-primary);
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    font-size: 1.5rem;
    line-height: 25px;
    text-transform: uppercase;
    letter-spacing: 0px;
    cursor: pointer;
    padding: 10px;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product-line-spec__tab li:focus {
    outline: none !important;
}

.product-line-spec__tab li:hover{
    text-decoration: underline;
}

.product-line-spec__tab li:not(:last-child) {
    margin-right: 45px;
}

.productline-specs-wrapper .tab-active{
    display: block !important;
}

.product-line-spec--dsktp .data-sheet-btn--dsktp.button, .product-line-spec--dsktp .grey-hr{
    display: none;
}

.product-line-spec--dsktp .pls-product-usage__read-more{
    display: block;
    padding-left: 0;
    padding-top: 10px;
}

.product-line-spec--dsktp .product-usage{
    max-height: 400px;
    overflow: hidden;
    /* overflow-x: visible; */
}

@media only screen and (min-width: 992px){
    .product-line-spec--mobile{
        display: none;
    }

    .product-line-spec--dsktp{
        display: block;
    }

    .product-line-spec--dsktp .product-usage{
        max-width: none !important;
        margin: 0 -48px;
    }

    .product-usage-wrapper{
        max-width: 83.3%;
        margin: 0 auto;
    }

    .product-line-spec--dsktp .product-usage-wrapper > .container{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (min-width: 1200px){
    .product-line-spec__tab li{
        font-size: 1.875rem;
    }
}
.productline-specs-wrapper .product-line-spec__tab .pls-tab {
    width: 33.33%;
    margin-right: unset !important;
    line-height: 35px;
}
li.pls-tab.active {
    text-decoration: underline;
    text-underline-offset: 5px;
}
.behr-product-warranty{
    padding-top: 40px;
    padding-bottom: 24px;
    position: relative;
}

.behr-product-warranty h5{
    font-size: 1.5rem;
}

.behr-product-warranty p{
    font-size: 1rem;
}

@media only screen and (min-width: 768px){
    .warranty-copy{
        width: 83.3%;
        max-width: 83.3%;
        margin-left: 8.3%;
    }
}

@media only screen and (min-width: 1200px){
    .behr-product-warranty h5{
        font-size: 1.875rem;
    }

    .behr-product-warranty p{
        font-size: 1.125rem;
    }
}
.search-results {
  position: relative; /* this is for Edit Content CMS button */
  padding-top: 40px;
}

.search-results h1 {
  font-size: 2.813rem;
  line-height: 2.5rem;
}

.search-results h2 {
  font-size: 1.5rem;
  line-height: 1.563rem;
  margin-bottom: 8px;
}

.search-results .d-flex {
  display: flex;
}

.search-results__input-wrapper input {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  font-size: 1rem;
  color: var(--behr-navy-primary);
  padding: 0px 12px;
}

.search-results a {
  text-decoration: none;
}

.search-results a#viewmore:hover {
  color: #bd483c;
}

.search-results a#showing {
  color: #bd483c;
  margin-left: -2px;
}

.search-results a#viewmore {
  color: #bd483c;
  font-weight: var(--behr-bold);
}

.search-results a#showing:hover {
  color: #bd483c;
}

.search-results a#viewmore:before {
  content: '|';
  margin-left: 8px;
  margin-right: 8px;
  color: var(--behr-navy-primary);
}

.search-results a.links-url {
  color: #465058;
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
  font-size: 1.5rem !important;
  line-height: 1.563rem;
}

.search-results ul#categorydesk {
  font-size: 15px;
}

.search-results .fl {
  text-align: left;
}

/* .search-results .search-result-list > li:not(.show) {
  display: none;
} */
/* ul.search-result-list .search_result_nonecolor {
  display: flex !important;
} */
.search-results .search-result-list > li {
  border-top: 1px solid #cccccc;
}

.search-results .search-result-list > li:last-child {
  border-bottom: 1px solid #cccccc;
}

.search-results .search-wrapper {
  width: 50%;
}

.search-results .search-wrapper #txt-search {
  padding-right: 50px;
}

.search-results .search-wrapper #btn-search {
  font: 0/0 a;
  background-image: url(/binaries/content/assets/behrdotcomrefresh/consumer/images/search-gray.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  background-color: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  margin-left: -50px;
  margin-right: 10px;
  z-index: 5;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 0;
}

.search-results .search-paging .page-link {
  border: 0;
  color: var(--behr-navy-primary);
}

.search-results .page-item.active .page-link {
  z-index: 1;
  color: #000000;
  background-color: #cacaca;
  border-color: #cacaca;
  border-radius: 50%;
}

.search-results .color-chip-wrapper {
  flex-flow: row wrap;
  gap: 20px;
}

.search-results .color-chip-wrapper > .outer {
width: 22%;
display: block;
overflow: hidden;
position: relative;
line-height: 1.2;
word-break: break-word;
}

.search-results .color-chip-wrapper > .outer.show {
  width: 22%;
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1.2;
  word-break: break-word;
}

.search-results .color-chip-wrapper > .outer:not(.show) {
  display: none !important;
}

.search-results .color-chip-wrapper .outer .inner {
  width: 200%;
  padding-bottom: 85%;
  position: relative;
  left: -50%;
  overflow: hidden;
  padding: 50%;
}

.search-results .color-chip-wrapper .outer .inner + div {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold) !important;
  font-size: 0.813rem;
  line-height: 1.125rem;
  color: var(--behr-navy-primary);
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
}

.search-results .search_result.outer .color-name {
  font-size: 0.938rem;
  color: var(--behr-black);
  text-align: center;
}

.search-results .color-chip-wrapper > a {
  margin-bottom: 6%;
  color: black;
}

.search-results .search-result-list .s-results > img {
  width: 150px;
}

.search-results .search-result-list .s-results.s-results-description h5 {
  font-weight: var(--behr-bold-600);
}

.search-results .search-result-list > li {
  border-top: 1px solid #cccccc;
  list-style: none;
  padding: 24px 0;
}

.search-results .search-result-list > li:last-child {
  border-bottom: 1px solid #cccccc;
}

.search-results .search-wrapper {
  width: 50%;
}

.search-results .with-image {
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.search-results .color-chip-wrapper > a {
  margin-bottom: 6%;
  color: black;
}

.search-results .child-color-wrap {
  display: block;
  margin: 1%;
  float: left;
  width: 23%;
  text-align: center;
}

.search-results .circle-color {
  cursor: pointer;
  height: 226px;
  width: 226px;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 50%;
}

#search_results h1 {
    padding-top: 20px;
}

.search-results .search-result-list .media > img {
  width: 100px !important;
}

.search-results .pagination {
  display: flex;
  justify-content: center;
  list-style-type: none;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  font-size: 0.938rem;
  padding: 40px 0 80px 0;
}

.search-results .pagination li {
  display: flex;
  justify-content: center;
  height: 24px;
  min-width: 24px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  align-items: center;
}

.search-results .pagination li:first-child {
  margin-right: 20px;
}

.search-results .pagination li:last-child {
  margin-left: 20px;
}

.search-results .page-item.disabled a,
.search-results .page-item.disabled a span {
  color: #FFFFFF;
}

.search-results .page-item.numpage.disabled a {
  background-color: var(--behr-navy-primary) !important;
}

.search-results .page-item.disabled a:nth-child(-n + 2),
.search-results .page-item.disabled a:nth-child(-n + 2) span {
  color: #D8D8D8;
}

/* .search-results .page-item.disabled a:nth-child(-n + 2):hover,
.search-results .page-item.disabled a:nth-child(-n + 2) span:hover {
  background-color: #FFFFFF !important;
  color: #D8D8D8;
} */

.search-results .page-item.disabled a:hover {
  color: #fff;
  background-color: var(--behr-navy-medium);
  border: none;
}

.search-results .page-item.numpage.disabled {
  background-color: var(--behr-navy-primary);
  text-align: center;
  border-radius: 3px;
}

.search-results .page-item.numpage a {
  width: 100%;
  justify-content: center;
}

.search-results .search-results__input-wrapper {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--behr-input-default-border);
  border-radius: 20px;
  height: 38px;
  padding: 7px 15px 7px 12px;
  margin-bottom: 40px;
}

.search-results .search-results__input-wrapper input {
  border: none;
}

.search-results .search-results__input-wrapper span {
  color: var(--behr-navy-primary);
  font-size: 1.25rem;
  font-weight: var(--behr-bold);
}

.search-results__result-count-wrapper {
  margin-top: 74px;
  margin-bottom: 24px;
}

.search-results__result-count-wrapper span {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  font-size: 0.938rem;
  color: var(--behr-navy-primary);
}

.search-results .search-results__category-select--trigger {
  height: 50px;
  font-size: 1.25rem;
}

.search-results .search-results__category-select--trigger,
.search-results .search-results__custom-option li {
  display: flex;
  align-items: center;
}

.search-results .search-results__category-select--mobile {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  display: flex;
  flex-direction: column;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  border: 1px solid var(--behr-input-default-border);
  border-radius: 20px;
  background-color: #FFFFFF;
  padding: 0 22px;
  z-index: 100;
}

.search-results .search-results__category-select--trigger {
  display: flex;
  justify-content: space-between !important;
  border: none;
  background-color: #FFFFFF;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  justify-content: flex-start;
  padding: 0;
  height: 40px;
}

.search-results .search-results__category-select--trigger span {
  color: var(--behr-black);
  font-size: 1rem;
}

.search-results .search-results__custom-option li {
  height: 50px;
  font-size: 1rem;
}

.search-results .search-results__custom-option {
  display: none;
}

.search-results__category-select--trigger span.material-icons-outlined {
  font-size: 1.5rem;
  color: var(--behr-navy-primary);
}

.search-results .search-results__category-select--mobile.options-open .search-results__category-select--trigger span.material-icons-outlined {
  transform: rotate(180deg);
}

.search-results .search-results__category-select--mobile.options-open .search-results__custom-option {
  top: 42px;
  display: block;
}

.search-results .search-results__input-wrapper button {
  font-size: 1.375rem;
}

.search-results .search-results__custom-option button {
  font-size: 1rem;
}

.search-results .search-results__input-wrapper button,
.search-results .search-results__custom-option button {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  /* font-size: 1.375rem; */
  color: var(--behr-black);
  display: block;
  border: none;
  background: none;
  text-align: left;
  padding: 0;
  margin-bottom: 0px;
  height: unset;
}

.search-results li[data-page="-1"],
.search-results li[data-page="-2"],
.search-results li[data-page="-3"],
.search-results li[data-page="-4"],
.search-results li[data-page="-1"] a,
.search-results li[data-page="-2"] a,
.search-results li[data-page="-3"] a,
.search-results li[data-page="-4"] a,
.search-results li[data-page="-1"] a span,
.search-results li[data-page="-2"] a span,
.search-results li[data-page="-3"] a span,
.search-results li[data-page="-4"] a span {
  background-color: transparent !important;
}

.search-results li[data-page="-1"]:hover,
.search-results li[data-page="-2"]:hover,
.search-results li[data-page="-3"]:hover,
.search-results li[data-page="-4"]:hover {
  background-color: transparent !important;
  color: #D8D8D8 !important;
}

.search-results li[data-page="-1"] a:hover,
.search-results li[data-page="-2"] a:hover,
.search-results li[data-page="-3"] a:hover,
.search-results li[data-page="-4"] a:hover {
  background-color: transparent !important;
  color: var(--behr-navy-medium) !important;
}


.search-results .page-link {
  padding: 0 !important;
  line-height: normal !important;
}

@media all and (max-width: 991px) {
  .search-results .search-results__category-select--desktop {
    display: none;
  }

  .search-results .search-results__wrapper-container {
    flex-direction: column;
  }

  .search-results__trigger-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .search-results .search-results__results-wrapper {
    width: 100%;
    margin-top: 24px;
  }

  .search-results .search-result-list .media > img {
    width: 100px !important;
  }

  .search-results .search-wrapper {
    width: 100%;
  }

  .search-results .search-result-list .media .media-body p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: var(--behr-navy-primary);
  }

  .search-results .search-result-list .s-results>img {
    width: 100px;
  }

  .search-results .search-wrapper {
    width: 100%;
  }

  .search-results .search-result-list .s-results.s-results-description h5 {
    font-size: 18px;
  }

  .search-results .search-result-list .s-results.s-results-description p {
    font-size: 14px;
  }

  #search_results {
    display: grid;
  }

  #search_results h1 {
    padding-top: 20px;
  }

  .search-results .main-search-item-found {
    width: 100%;
  }

  .search-results .main-search-item-found .child-color-wrap {
    width: 100%;
  }

  .search-results .search-result-list > li.with-image {
    display: block;
  }

  .search-results .search-result-list > li.with-image > img {
    width: 100%;
  }

}
@media all and (min-width: 992px) {
  /* .search-results .color-chip-wrapper > .outer {
    max-width: 140px;
  } */

  .search-results h1 {
    font-size: 4.875rem;
    line-height: 4.688rem;
  }

  .search-results .search-results__select-header--mobile,
  .search-results .search-results__category-select--mobile {
    display: none;
  }

  .search-results .search-results__flex-container {
    display: flex;
  }

  .search-results .search-results__input-wrapper {
    width: 590px;
  }

  .search-results__category-select--desktop-options-wrapper {
    padding: 24px 0 22px 0;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
  }

  .search-results .search-results__input-wrapper #results-search-term {
    width: 100%;
  }

  .search-results__category-select--desktop-options-wrapper span {
    font-family: var(--behr-heading-font);
    font-size: 0.938rem;
    font-weight: var(--behr-atf-500);
    color: var(--behr-navy-primary);
    text-transform: uppercase;
  }

  .search-results__desktop-options label {
    color: var(--behr-black) !important;
  }

  .search-results .search-results__category-select--desktop {
    display: flex;
    flex-direction: column;
  }

  .search-results .search-results__category-select--desktop button {
    display: block;
    border: none;
    background: none;
    text-align: left;
    padding: 0;
    margin-bottom: 10px;
    margin-left: 0 !important;
    height: unset;
  }

  .search-results .search-results__category-select--desktop label:hover {
    cursor: pointer;
  }

  .search-results .search-results__category-select--desktop label {
    font-size: 1.125rem;
    text-transform: unset !important;
    font-weight: var(--behr-normal) !important;
  }

  .search-results__filter-and-results-wrapper {
    display: flex;
  }

  .search-results .search-results__category-select--desktop {
    flex: 0 0 291px;
    margin-right: 32px;
  }

  .search-results .search-results__category-select--desktop-options {
    padding: 24px 0 22px 0;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
  }

  .search-results .search-results__category-select--desktop-options span {
    font-family: var(--behr-heading-font);
    font-size: 0.938rem;
    font-weight: var(--behr-atf-500);
    color: var(--behr-navy-primary);
    text-transform: uppercase;
  }

  .search-results__result-count-wrapper {
    margin-top: 0;
    margin-bottom: 26px;
  }

  .search-results .search-results__results {
    width: 100%;
  }

  .search-results .color-chip-wrapper {
    gap: 22px;
  }

  .search-results .showcolors {
    margin-top: 15px;
  }

  .search-results a.links-url {
    font-size: 1.875rem !important;
    line-height: 2.188rem;
  }
}

.search-results #showing.disabled {
  pointer-events: none;
  color: #212529;
}

.search-results #viewmore.disabled {
  pointer-events: none;
  color: #212529;
}

.search-results .showcolors {
  display: flex;
  align-items: center;
  width:100%;
  /* margin-left: 3%; */
  justify-content: center;
  margin-top: 18px;
}

.search-results .showcolors ul {
  display: flex;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

.search-results .showcolorchoice {
  list-style-type: none;
  margin-bottom: 4rem;
  padding: 0;
}

.search-results .page-item.numpage .page-link {
  z-index: 1;
  color: var(--behr-navy-primary);
  /* background-color: #cacaca;
  border-color: #cacaca; */
  border-radius: 5px;
}

/* .search-results .page-link:focus,.page-link:hover{
  text-decoration: none;
  background-color: white;
  border-color: white;
} */

/* .search-results .page-item.disabled a span:hover {
  background-color: none;
  color: #D8D8D8;
} */

.search-results #showing.disabled {
  pointer-events: none;
  color: #212529;
}

.search-results #viewmore.disabled {
    pointer-events: none;
    color: #212529;
}
.search-results .search-result-list .media .img-content-wrapper {
  width: 100px !important;
}
.search-results .search-result-list .media .img-content-wrapper > img {
  max-height: 150px !important;
}
.br-quote{
    background: var(--behr-beige);
    margin: 40px 0;
}

.br-quote-container{
    padding: 40px 20px;
}

.br-quote-container p{
    font-size: 1.5rem;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-navy-primary);
    line-height: 32px;
}

@media only screen and (min-width: 768px){
    .br-quote{
        background: none;
    }

    .br-quote-container{
        border-top: 1px solid var(--behr-red-primary);
        border-bottom: 1px solid var(--behr-red-primary);
    }

    .br-quote-container p{
        font-size: 1.875rem;
        font-family: var(--behr-body-and-label-font);
        font-weight: var(--behr-normal);
        font-style: italic;
        line-height: 40px;
    }
}
.sms-section label {
    font-weight: var(--behr-bold);
}

.sms-section input {
    width: 100% !important;
    border-radius: 0px !important;
}

.sms-section .sms-header {
    font-size: xx-large;
}

.sms-section .sms-description {
    white-space: normal;
    font-size: 18px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    text-transform: none;
}

.sms-section .sms-form fieldset legend, .sms-subscriber label {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    font-size: 15px;
    font-weight: var(--behr-normal);
    line-height: 20px;
}


.sms-section .sms-form .form-check {
    padding-left: 1.25rem;
}

.sms-section .sms-form label,
.sms-section .sms-form .form-check label {
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    text-transform: none;
}

#sms_optional_message:checked + label:before {
    content: '\2713' !important;
    font-size: 16px;
    color: #212529;
    opacity: 1 !important;
    transform: rotate(0deg) !important;
}
#sms_optional_message + label {
    background-color: white;
    border: 1px solid #212529;
    padding: 0px 5px;
    display: block;
    position: relative;
    margin-right: 7px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    margin-top: 3px;
}
#sms_optional_message {
	position: absolute;
    left: 37px;
    top: 6px;
    opacity: 0;
    height: 1px;
    width: 1px;
}

.sms-form .col-1 {
    flex: 0 0 3.3333333333%!important;
    max-width: 3.3333333333%!important;
}

.sms-form select {
	padding: 7px 12px;
    border: 1px solid var(--behr-input-default-border);
    border-radius: 0;
    width:100%!important;
}
.sms-form {
	padding-top:1rem;
}
.service-forms {
  position: relative;
  padding: 1.25rem 60px;
  background-color: #f6f5f0;
}

.service-forms h2 {
  font-size: 2.125rem;
  line-height: 1.875rem;
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
}

.service-forms p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0px;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  margin-bottom: 16px;
}

/* Style the as inside the Tabs/Navigation for Service Form*/
.service-forms__desktop {
  overflow: hidden;
  padding: 1.875rem 0px;
}

.service-forms__desktop a {
  color: #465058;
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
  border: none;
  outline: none;
  cursor: pointer;
  margin: 10px 50px 0px 0px;
  transition: 0.3s;
  font-size: 1.25rem;
  line-height: 1.375rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.service-forms__desktop a:hover {
  text-decoration: underline;
}

.service-forms__tabcontent {
  display: none;
  border-top: none;
  animation: fadeIn 1s;
}

.hidden {
  display: none !important;
}

.service-forms__tab-active {
  display: block !important;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

#service_forms__mobile {
  display: none;
}

@media (max-width:991px) {
  #service_forms__mobile {
    display: block;
    font-size: 1.25rem;
  }

  .service-forms__desktop {
    display: none;
  }

  .service-forms__select {
    padding-bottom: 48px;
  }

  .service-forms__tab-active {
    padding-top: 48px;
  }
}

/* End  Style the as inside the Tabs/Navigation for Service Form */

/* CSS FOR Mobile Select Option */
.custom-select__triggers {
  border: 1px solid var(--behr-input-default-border);
  font-size: 20px !important;
  display: inline-block;
  width: 100%;
  color: #495057;
  vertical-align: middle;
  background: #f6f5f0 url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #465058;
  border-radius: 30px;
}

.border-bottom-radius {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.border-bottom-radius-30 {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.custom-select__triggers p {
  font-size: 20px !important;
  margin: 0px;
  padding: 10px 20px;
}

.custom-options p {
  font-size: 20px !important;
  padding: 10px 20px;
  margin: 0px;
}

.custom-options {
  border: 1px solid #465058;
  display: none;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.custom-options p:hover,
.custom-options p.selected {
  background-color: #465058;
  color: #fff;
}

.service-forms__active {
  border-bottom: 1px solid black !important;
}

.isselect_a_topic {
  display: none !important;
}

/*End CSS For Mobile Select Option */
/* Start Style for Forms for Service Forms */
.service-forms form {
  width: 58%;
  margin-top: 1.25rem;
}

.service-forms__form h3 {
  font-size: 45px;
  line-height: 1.875rem;
  margin-bottom: 16px;
}

.service-forms__form p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0px;
  color: #212529;
  margin-bottom: 15px;
}

.service-forms__form a {
  color: #bd483c !important;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal); 
  text-decoration: none;
}

.service-forms__file-font {
  font-size: 16px !important;
  margin: 0 !important;
  font-family: var(--behr-body-and-label-font) !important;
  font-weight: var(--behr-normal);
}

#recaptcha_color_advice_hidden_recaptcha,
#recaptcha_product_questions_hidden_recaptcha,
#recaptcha_project_questions_hidden_recaptcha,
#recaptcha_website_questions_hidden_recaptcha {
  position: absolute;
  top: 44px;
  left: 80px;
  z-index: -1;
  width: 0;
}

.service-forms__form a:hover {
  text-decoration: underline;
}

.service-forms__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0px;
}

.service-forms__form-group {
  width: 50%;
  padding: 10px 15px 0px 0px;
}

.service-forms__label {
  font-size: 15px !important;
  line-height: 1.25rem !important;
  letter-spacing: 0px;
  font-family: var(--behr-body-and-label-font--bold) !important;
  font-weight: var(--behr-bold);
  text-transform: uppercase;
  margin-bottom: 8px !important;
}

.service-forms__form input[type='text'],
.service-forms__form select,
.service-forms__form textarea,
.service-forms__form input[type='number'],
.service-forms__form input[type='email'] {
  width: 100%;
  background-color: transparent;
  border-radius: 1.875rem;
  margin: 0px;
  height: auto;
  padding: 7px 12px;
  border: 1px solid var(--behr-input-default-border);
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  color: #495057;
}

.service-forms__form input[type='text']::placeholder,
.service-forms__form select::placeholder,
.service-forms__form textarea::placeholder,
.service-forms__form input[type='number']::placeholder,
.service-forms__form input[type='email']::placeholder {
  color: #495057;
}

.service-forms__form input[type='radio']+*::before {
  margin-top: -10px !important;
}

.service-forms__form input[type='checkbox']+label::after {
  top: 1.25rem !important;
  width: 4px;
  height: 10px;
}

.service-forms input[type='checkbox']+label::after {
  content: '';
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  left: 5px;
  opacity: 0;
  position: absolute;
  transform: rotate(45deg);
}

.service-forms__form input[type=checkbox] {
  display: none;
}

.service-forms__form input[type=checkbox]+label:before {
  content: "\2714";
  border: 1px solid #000;
  display: inline-block;
  width: 13px;
  height: 13px;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 10px;
  vertical-align: text-bottom;
  color: transparent;
  transition: .2s;
}

.service-forms__form input[type=checkbox]:checked+label:before {
  background-color: #007bff;
  border-color: black;
  color: transparent;
}

.custom-select-arrow {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: var(--behr-normal);
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}

#product_questions_selectMetric {
  width: 30%;
}

.service-forms__margin-left {
  margin-left: 10px !important;
}

.service-forms__margin-bottom {
  margin-bottom: 10px !important;
}

#recaptcha_color_advice,
#recaptcha_product_questions,
#recaptcha_project_questions,
#g-recaptcha-response-3 {
  margin-top: 15px;
}

.service-forms__choose-file {
  font-size: 15px;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  padding: 10px 40px !important;
  margin-bottom: 10px;
}

.service-forms__no-file {
  font-size: 1.125rem;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  margin-left: 15px;
}

.service-forms__wrapper input[type='submit'] {
  height: unset;
  padding: 15px 10px;
  margin: 1% 0px;
  width: 50%;
}

.service-forms__radio-wrapper {
  margin-bottom: 16px;
}

.service-forms__w-100 {
  width: 100%;
  margin: 5px 0px;
  display: flex;
  margin-top: 15px;
  align-items: center;
}

@media (max-width:991px) {
  .service-forms form {
    width: 100%;
  }

  .service-forms__wrapper {
    display: block;
  }

  .service-forms__form-group {
    width: 100%;
  }

  .service-forms__white-space {
    white-space: normal;
  }
}

.service-form__upload_file {
  margin-bottom: 16px;
}

.service-forms__white-space {
  white-space: pre-line;
}

@media (max-width:1200px) {
  .service-forms__form h3 {
    font-size: 2.125rem;
    line-height: 1.875rem;
  }

  .service-forms h2 {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}

.service-forms__radio-wrapper input[type='checkbox'],
.service-forms__radio-wrapper input[type='radio'] {
  top: auto;
  left: auto;
}

.service-forms__margin {
  margin: 10px 0px !important;
  width: 50% !important;
}

.service-forms__wrapper input[type='radio'] {
  top: auto !important;
}

.cs-errorMsg,
.cs-success {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0px;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  margin-top: 16px;
}

/* End Service Form Style */
.sheen-guide {
    position: relative;
    padding-bottom: 100px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    text-align: left;
}


/* Sheen Guide Hero Banner */
.sheen-guide__hero-section {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sheen-guide__hero-section_image {
    width: auto;
    object-fit: cover;
    height: 480px;
}

.sheen-guide div.sheen_guide__content-body-p-1 {
    margin-top: 0;
    margin-bottom: 8px;
}

.sheen-guide__container {
    flex-direction: column;
}

.sheen-guide__container a.button.black-primary {
    text-decoration: none;
    min-width: 250px;
    width: auto;
    margin: 16px auto;
}

.sheen-guide__container h1, .sheen-guide__container h2, .sheen-guide__container h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.sheen-guide__container a:hover {
    text-decoration: underline;
}

.sheen-guide__content {
    flex-basis: 100%;
    width: 100%;
    padding-bottom: 48px;
}

.sheen-guide__content-header-1 {
    font-size: 45px;
    line-height: 40px;
    padding-top: 3rem!important;
}

.sheen-guide__content-header-2 {
    font-size: 24px;
    line-height: 25px;
}

.sheen-guide__content-header-3 {
    font-size: 24px;
    line-height: 25px;
}

.sheen_guide__content-body-p-1 {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    color: var(--behr-black);
}

.sheen-guide__block {
    /* display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox; */
    display: block;
    /* -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
    margin: 32px 0 0 0;
}

/*  Sheen Guide Side Bar */
.sheen-guide__side-bar {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 32px;
    background: #f8f8f8;

    align-items: center;
    display: flex;
    flex-direction: column;
}

.sheen-guide__side-bar .sheen-guide__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: 0 0 48px;
    width: 100%;
    max-width: 400px;
}

.sheen-guide__side-bar .sheen-guide__custom-red {
    text-align: center;
}


.sheen-guide__block-media {
    width: 100%;
    margin: 0 auto 16px auto;
    max-width: 302px;
}

.sheen-guide__block-media img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    margin: auto;
}

.sheen-guide__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.sheen-guide__column-6 {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sheen-guide__column-6-content {
    margin-top: 1.5rem;
    flex: 0 0 100%;
    max-width: 100%;
}

.sheen-guide__block-list {
    margin: auto;
    margin-top: 16px;
    -webkit-flex-basis: -webkit-calc(100% - 200px - 16px);
    -ms-flex-preferred-size: calc(100% - 200px - 16px);
    flex-basis: calc(100% - 200px - 16px);
    padding-left: 16px;
}

.sheen-guide__block-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    margin-bottom: 8px;
}

.sheen-guide__block-list li span {
    text-align: left;
    display: block;
}

.sheen-guide__block-list li .sheen_guide__content-body-p-1 {
    display: block;
    padding-left: 0px
}

.sheen-guide__block-list li a {
    padding: 0.25rem 0px;
    display: block;
}

.sheen-guide__block-list .sheen-guide__list-label {
    padding-top: 0.25rem!important;
    color: var(--behr-navy-primary);
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 20px;
    line-height: 22px;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
}

.sheen-guide__block-hr {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    border: 1px solid #e1e4e5;
    margin: 0 0 48px 0;
}

.sheen-guide__custom-red {
    text-decoration: none;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
}

a.sheen-guide__custom-red {
    text-transform: capitalize;
    color: var(--behr-red-primary) !important;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    cursor: pointer;
}

.sheen-guide__image-content {
    position: relative;
}

.sheen-guide__image-fluid {
    max-width: 100%;
    height: auto;
}

.sheen-guide__image-content img.sheen-guide__d-none {
    display: none;
}


.sheen-guide__animate {
    display: block!important;
}

.sheen-guide__img-buttons-section {
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    right: 0;
    left: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    -webkit-box-shadow: 0px 0px 29px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 29px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 29px 0px rgb(0 0 0 / 75%);
}

.sheen-guide__pause-video {
    display: none;
}

/* Sheen Guide Table */
.sheen-guide__table {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
}

.sheen-guide__table table {
    width: 100%;
    border-spacing: 0;
}

.sheen-guide__table table {
    width: 100%;
    border-spacing: 0;
}

.sheen-guide__table td, .sheen-guide__table th {
    padding: 12px 16px;
}

.sheen-guide__table th {
    border-right: 1px solid #e1e4e5;

}

.sheen-guide__table td:last-child, .sheen-guide__table th:last-child {
    border-right: none;
}

.sheen-guide__table thead  th {
    width: 50%;
    font-weight: var(--behr-normal);
    font-family: var(--behr-body-and-label-font);
}

.sheen-guide__table thead th:not(:first-child) {
    text-align: center;
}

.sheen-guide__table thead th:not(.filter) {
    display: none;
}

.sheen-guide__table thead th.col {
    display: table-cell;
    width: 50%;
    max-width: 50%;
}

.sheen-guide__table thead  tr {
    background: #fff;
}

.sheen-guide__table thead th.filter {
    width: 50%;
    position: relative;
}

.sheen-guide__table .filter .filter__selected {
    position: relative;
    display: block;
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #597E9B;
    text-align: center;
    padding: 6px 60px 6px 16px;
    white-space: normal;
    border-radius: 19px;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    cursor: pointer;
    z-index: 10;
}

.sheen-guide__table .filter .filter__selected:after {
    content: '';
    background: url('../images/select-arrows.png') no-repeat;
    width: 8px;
    height: 16px;
    position: absolute;
    right: 16px;
    top: calc(50% - 8px);
    color: #597E9B;
    font-size: 16px;
}

.sheen-guide__table .filter .filter__list {
    display: none;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 1px 0 0 0;
    background: white;
    width: 80%;
    max-width: 200px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    list-style-type: none;
    padding: 16px 0;
    font-size: 14px;
    border: 1px solid #597E9B;
    margin: 0;
}
/* DFCT0024561 - STSK0019023 CA FR Compare exterior sheens - Columns font and name doesn't match Consumer site */
.sheen-guide__table .filter .filter__list li {
    text-align: left;
    line-height: 1.6;
    padding: 8px 16px;
    cursor: pointer;
    background: none;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.sheen-guide__table .filter  .filter__list li:hover {
    background: #597E9B;
    color: white; 
}

.sheen-guide__table tbody tr:nth-child(odd) {
    background: #efefef;
}

.sheen-guide__table tbody tr th {
    width: 50%;
    font-weight: var(--behr-normal);
    font-family: var(--behr-body-and-label-font);
}

.sheen-guide__table .is--visible {
    display: table-cell;
}

.sheen-guide__table .is--hidden {
    display: none;
}

.sheen-guide__table td {
    padding: 8px;
    vertical-align: top;
    min-height: 20px;
}

.sheen-guide__table .check {
    display: block;
    width: 20px;
    height: 16px;
    margin: auto;
    background: url('../images/check_mark.png') no-repeat;
    background-size: 100%;
    margin-top: 2px;
    fill: salmon;
}

.sheen-guide__table .sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.sheen-guide__table thead th:nth-last-of-type(2) {
    border: none;
}


@media all and (min-width: 650px) {

    .sheen-guide__table .filter .filter__list {
        border-top: 0;
    }


    .sheen-guide__block-list li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: row;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .sheen-guide__block-list li span {
        text-align: right;
        margin-right: 24px;
        display: block;
        width: -webkit-calc(30% - 24px);
        width: calc(30% - 24px);
        -webkit-flex-basis: -webkit-calc(30% - 24px);
        -ms-flex-preferred-size: calc(30% - 24px);
        flex-basis: calc(30% - 24px);
    }
    
    .sheen-guide__block-list li .sheen_guide__content-body-p-1 {
        display: block;
        width: 70%;
        -webkit-flex-basis: 70%;
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        padding-left: 20px;
    }
}

@media all and (min-width: 800px) { 
    .sheen-guide__block-media {
        max-width: 100%;
    }
}

@media all and (min-width: 992px) {


    .sheen-guide__table thead  th {
        width: inherit;
    }

    .sheen-guide__table thead  th.col {
        width: auto;
        max-width: auto;
        display: table-cell;
    }

    .sheen-guide__table thead th:not(.filter) {
        display: table-cell;
    }

    .sheen-guide__table thead th.filter {
        border: none;
        width: auto;
    }
    
    .sheen-guide__table thead th.filter {
        display: none;
    }

    .sheen-guide__table td {
        border-right: 1px solid #e1e4e5;
    }

    .sheen-guide__table .is--hidden {
        display: table-cell;
    }

    .sheen-guide__container {
        display: flex;
        padding-left: 15px;
        padding-right: 15px;
    }

    .sheen-guide__content {
        flex-basis: 80%;
        padding-right: 24px;
    }
    
    .sheen-guide__side-bar {
        -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-height: 2000px;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(4%, #f8f8f8), color-stop(17%, #f8f8f8), to(rgba(248, 248, 248, 0)));
        background: -o-linear-gradient(top, #f8f8f8 4%, #f8f8f8 17%, rgba(248, 248, 248, 0) 100%);
        background: linear-gradient(to bottom, #f8f8f8 4%, #f8f8f8 17%, rgba(248, 248, 248, 0) 100%);
        padding-top: 24px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 64px;
        margin: 0;
    }

    .sheen-guide__side-bar .sheen-guide__custom-red {
        text-align: left;
    }

    .sheen-guide__column-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .sheen-guide__column-6-content {
        margin-top: 0px;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .sheen-guide__block-list {
        -webkit-flex-basis: -webkit-calc(100% - 302px - 16px);
        -ms-flex-preferred-size: calc(100% - 302px - 16px);
        flex-basis: calc(100% - 302px - 16px);
        margin: 4px 0 0 0;
        padding-left: 16px;
    }

    .sheen-guide__block-list li a {
        padding: 0px 0px;
    }

    .sheen-guide__block-media {
        width: 100%;
        margin: 0 auto 16px auto;
        max-width: 100%;
    }
}

@media all and (min-width: 1000px) {
    .sheen-guide__container {
        flex-direction: row;
    }
}

@media all and (min-width: 1200px) {
    .sheen-guide__container {
        display: flex;
    }


    .sheen-guide__content-header-1 {
        font-size: 78px;
        line-height: 75px;
    }

    .sheen-guide__content-header-2 {
        font-size: 30px;
        line-height: 35px;
    }

    .sheen_guide__content-body-p-1 {
        font-size: 18px;
        line-height: 24px;
    }
}
.light-carousel .owl-stage {
	padding-left: 0px!important;
}

.dark-carousel  .owl-stage {
    padding-left: 0px!important;	
}

.similar-colors .inner{
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 1.2;
    width: 100%;
    position: relative;
    left: 0%;
    overflow: hidden;  
}

.similar-colors__light .inner,.similar-colors__dark .inner{
    padding-bottom: 100%;
}

.similar-colors{
    padding-top: 48px;
}

.similar-colors-wrapper{
    position: relative;
}

.similar-colors h2{
    font-size: 2.125rem;
    padding-bottom: 48px;
    line-height: 30px;
}

.similar-colors h5{
    font-size: 1.5rem;
    line-height: 25px;
    padding-bottom: 24px;
}

.similar-colors__light{
    margin-bottom: 48px;
}

@media only screen and (min-width: 768px){
    .similar-colors .owl-stage {
     padding-left: 0 !important;
    }
}

@media only screen and (min-width: 992px){
    .similar-colors__light .owl-stage, .similar-colors__dark .owl-stage{
        margin-left: 0px;
    }
}

@media only screen and (min-width: 1200px){
    .similar-colors h2{
        font-size: 2.813rem;
        padding-top: 24px;
    }
}
.social-media-banner{
    padding-top: 16px;
    padding-bottom: 140px;
}

.social-media-banner-wrapper{
    position: relative;
}

.social-media-banner__header h3{
    line-height: 30px;
    font-size: 2.125rem;
    padding-top: 24px;
    padding-bottom: 8px;
}

.social-media-banner__header p{
    font-size: .938rem;
    color: var(--behr-black-);
    padding-bottom: 24px;
}

.social-media-banner__cta--dsktp{
    display: none;
}

.social-media-banner .anchor-button{
    max-width: fit-content;
    text-decoration: none;
}

.social-media-banner.container .social-media-banner__board > span{
    max-width: 731px;
    min-width: 200px;
    width: 100%;
}

.social-media-banner__cta--mobile{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media-banner__cta--mobile .social-media-banner-logo{
    padding-top: 24px;
    flex: 0 0 100%;
    text-align: center;
}

.social-media-banner__cta--mobile .social-media-banner-logo img{
    margin: 0 auto;
}

.social-media-banner__cta--mobile .anchor-button{
    display: inline-flex;
    margin-top: 48px;
    font-size: 1rem;
}

.social-media-banner__breaker{
    display: none;
}

@media only screen and (min-width: 768px){
    .social-media-banner__header p{
        padding-bottom: 48px;
    }

    .social-media-banner__cta--dsktp .anchor-button{
        font-size: .813rem;
    }

    .social-media-banner{
        padding-bottom: 128px;
        padding-top: 48px;
    }

    .social-media-banner__header h3{
        font-size: 1.5rem;
        line-height: 25px;
    }

    .social-media-banner__breaker{
        display: block;
        border-bottom: 15px solid #f6f5f0;
        width: 100%;
        flex: 0 0 100%;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .social-media-banner__cta--mobile{
        display: none;
    }

    .social-media-banner__cta--dsktp{
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        align-items: stretch;
    }

    .social-media-banner__cta--dsktp .social-media-banner-logo{
        margin-top: auto;
    }

    .social-media-banner{
        display: flex;
        flex-wrap: wrap;
    }

    .social-media-banner__cta{
        flex: 0 0 33.3%;
        padding-right: 24px;
        display: flex;
        flex-direction: column;
    }

    .social-media-banner__board{
        flex: 0 0 66.67%;
    }
}

@media only screen and (min-width: 992px){
    .social-media-banner__cta--dsktp .anchor-button{
        font-size: 1rem;
    }
}

@media only screen and (min-width: 1200px){
    .social-media-banner__header h3{
        font-size: 1.875rem;
        line-height: 35px;
    }

    .social-media-banner__header p{
        font-size: 1.125rem;
    }
}
.service-phone-numbers {
    position: relative;
    padding: 1.5rem 0rem;
}
.service-phone-numbers h2 {
    font-size: 34px;
    line-height: 40px;
    text-transform: uppercase;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    margin-bottom: 8px;
}
.service-phone-numbers p {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
    margin-bottom: 16px;
}
.service-phone-numbers__wrapper {
    display: flex;
    flex-wrap: wrap;
}
.service-phone-numbers__item {
    width: 33.33%;
}
.service-phone-numbers__item h3 {
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    padding-bottom: 3px;
}
.service-phone-numbers__item h4 {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    margin-bottom: 8px;
    color: #212529;
    text-transform: uppercase;
}
.service-phone-numbers p {
    font-size: 18px;
    line-height: 20px;
}
@media (min-width:1200px) {
    .service-phone-numbers h2 {
        font-size: 2.813rem;
        line-height: 40px;
        text-transform: uppercase;
        font-family: var(--behr-heading-font);
        font-weight: var(--behr-atf-500);
    }
    .service-phone-numbers__item h3 {
        font-size: 34px;
        line-height: 30px;
    }
}
@media (max-width:991px) {
    .service-phone-numbers__item  {
        text-align: center;
    }
    .service-phone-numbers {
        padding: 28px 0px 55px 0px;
    }
    .service-phone-numbers h3 {
        font-size: 30px;
        line-height: 35px;
    }
}
@media (max-width:767px) {
    .service-phone-numbers__wrapper {
        display: block;
    }
    .service-phone-numbers__item {
        width: 100%;
        padding-top: 24px;
    }
    .service-phone-numbers h2 {
        font-size: 34px;
        line-height: 30px;
    }
    .service-phone-numbers p {
        font-size: 15px;
        line-height: 20px;
    }

}
.subscription-banner {
  position: relative; /* this is for CMS Edit Content button placement */
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.subscription-banner h2 {
  font-size: 2.125rem;
  line-height: 1.875rem;
  margin-bottom: 0;
}

.subscription-banner__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subscription-banner .subscription-banner .subscription-modal__content form {
  text-align: left;
}

.subscription-banner__form > p {
  font-size: 0.938rem;
  line-height: 1.25rem;
}

.subscription-banner__error-wrapper {
  display: none;
}

.subscription-email-valid {
  display: none;
}

.subscription-email-address {
  display: none;
}

.subscription-banner__error-wrapper.has-error {
  display: block;
}

.subscription-banner__error-wrapper.has-error strong {
  font-size: 1rem;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-red-primary);
}

.subscription-banner__form label{
  margin-bottom: 0;
}

.subscription-banner__form input {
  height: 38px;
  margin-bottom: 16px;
  text-align: center;
  align-self: center;
  border: 1px solid var(--behr-input-default-border);
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
  border-radius: 0.25rem;
  color: #495057;
}

.subscription-banner__form input:focus {
  border: 1px solid var(--behr-navy-primary);
}

.subscription-banner__form input::placeholder {
  color: #6C757D;
}

.subscription-banner__form button {
  width: 60%;
  align-self: center;
}

.subscription-banner__form > p a {
  font-size: 0.75rem;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-red-primary) !important;
  text-decoration: none !important;
}

/* subscription modal styles */
.subscription-banner .subscription-modal {
  position: relative;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.5);
}

@media only screen and (max-width: 575px) {
  .subscription-banner__form input {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) {
  .subscription-banner__form input {
    width: 350px;
  }

  .subscription-banner__form button {
    width: 210px;
  }
}

@media only screen and (min-width: 992px) {
  .subscription-banner h2 {
    font-size: 2.813rem;
    line-height: 2.5rem;
  }

  .subscription-banner__form > p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 16px;
  }

  .subscription-banner__form > p a {
    font-size: 0.938rem;
  }

  .subscription-banner__form > p a:hover {
    text-decoration: underline !important;
  }
}

@media only screen and (min-width: 1330px){
  .subscription-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
}
.black-primary.subscription-banner__sign-up-btn {
  border-radius: 25px;
}
.brand-detail-nav {
	display: none;
}

.brand-detail-nav .show{
    max-height: 1000px;
    overflow: auto;
    transition: max-height 0.3s ease-in;
    border-bottom: 1px solid #dee2e6!important;
}

.brand-list-collapse:not(.show) {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.brand-detail-nav {
    background: #f6f5f0;
    position: fixed !important;
    top:0;
    width: 100%;
    z-index: 2;
}

.brand-detail-nav > div:not(.pdp-sticky-nav__list),
.brand-detail-nav > div:not(.plp-sticky-nav__list){
    padding-top: 8px;
}

.brand-detail-nav > div > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brand-detail-nav .anchor-button{
    text-decoration: none;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.sticky-dropdown-toggle {
    background: no-repeat;
    border: none;
}

.pdp-sticky-nav__list ul,
.plp-sticky-nav__list ul {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    border-top: 1px solid #dee2e6!important;
}

.buy-button {
    border:1px solid var(--behr-navy-primary);
    border-radius: 20px;
    color:var(--behr-navy-primary);
    padding: 5px 10px;
    font-size: 15px;
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
	height: 38px;
}

.sticky-dropdown-toggle:focus {
    outline: none;

}

.sticky-dropdown-toggle > div{
    display: flex;
    font-size: 1.5rem;
    line-height: 25px;
    font-family: var(--behr-heading-font);
    color: var(--behr-navy-primary);
    text-transform: uppercase;
    font-weight: var(--behr-atf-500);
}

.sticky-dropdown-toggle > div > span {
    text-align: left;
}

.sticky-dropdown-toggle > div > span > i {
    display: inline;
}

#navbar-sticky-brand a {
    font-family: var(--behr-heading-font);
    font-size: 20px;
    text-decoration: none;
    color:var(--behr-navy-primary);
    text-transform: uppercase;
    font-weight: var(--behr-atf-500);
}

#navbar-sticky-brand li {
    padding-bottom: 5px;
    list-style: none;
}

.selected-section {
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    font-size: 15px;
    text-transform: uppercase;
    color:var(--behr-navy-primary);
}

.sticky-dropdown-toggle {
    position: relative;	
}

.gg-chevron {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
    top: -3px;
}

.gg-chevron::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid;
    border-right: 3px solid;
    border-radius: 14%;
    transform: rotate(45deg);
    left: 4px;
    top: 2px
}

.gg-chevron-up{
    top: 1px;
}

.gg-chevron-up::after {
    transform: rotate(-135deg);
}

.selected-section{
    font-size: .938rem;
    text-transform: uppercase;
    color: var(--behr-navy-primary);
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    width: 100%;
    display: inline-block;
    text-align: left;
}

.brand-detail-nav button {
	border-radius: unset;
    padding: 0;
    height: auto;
    display: block;
}

@media (min-width: 992px) {
    .header .site-navigation > ul:last-child {
        width: 50% !important;
        padding-left: 15px;
        padding-right:  15px;
    }

    .pdp-sticky-nav__list ul,
    .plp-sticky-nav__list ul {
        display: flex;
        flex-wrap: wrap;
    }

    .pdp-sticky-nav__list ul li,
    .plp-sticky-nav__list ul li {
        max-width: 30%;
        flex: 0 0 30%;
    }
}

@media (min-width: 1200px) {
    .sticky-dropdown-toggle > div{
        font-size: 1.875rem;
        line-height: 35px;
    }

    .gg-chevron{
        top: 0px;
    }

    .gg-chevron-up {
        top: 5px;
    }

    .gg-chevron::after{
        width: 14px;
        height: 14px;
        border-bottom: 5px solid;
        border-right: 5px solid;
    }
}

@media (max-width: 330px){
    .sticky-dropdown-toggle > div{
        font-size: 1.3rem;
    }
}

@media (max-width:430px) {
    .pdp-sticky-nav-wrapper .sticky-dropdown-toggle > div{
        display: block;
        text-align: left;
    }
    .gg-chevron {
        display: inline;
        margin-right: 15px;
    }
}
.plp-sticky-nav-wrapper .red-primary.anchor-button,
.pdp-sticky-nav-wrapper .red-primary.anchor-button {
    font-weight: var(--behr-bold);
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    font-size: 1rem;
    line-height: 1.5;
}
#subscription_smsOptionalMessage:checked + label:before {
    content: '\2713' !important;
    font-size: 16px;
    color: #212529;
    opacity: 1 !important;
    transform: rotate(0deg) !important;
}
#subscription_smsOptionalMessage + label {
    background-color: white;
    border: 1px solid #212529;
    padding: 0px 3px;
    display: block;
    position: relative;
    margin-right: 7px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    margin-top: 0px;
}
#subscription_smsOptionalMessage {
	position: absolute;
    left: 25px;
    top: 10px;
    opacity: 0;
    height: 1px;
    width: 1px;
}
.subscription-modal {
  position: relative; /* this is for the CMS Edit Content button */
  /* display: none; */
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

.subscription-modal__content--wrapper,
.subscription-banner .subscription-modal__content--wrapper,
.footer-subscription-form .subscription-modal__content--wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

/* .subscription-modal__content--wrapper,
.subscription-banner .subscription-modal__content--wrapper,
.footer-subscription-form .subscription-modal__content--wrapper {
  position: relative;
} */

.subscription-modal__content,
.subscription-banner .subscription-modal__content,
.footer-subscription-form .subscription-modal__content {
  position: relative;
  text-align: left;
  padding: 24px 24px 40px 24px;
  background-color: #FFFFFF;
  margin-top: 28px !important;
  border-radius: 6px;
}

.subscription-modal__content h1,
.subscription-banner .subscription-modal__content h1,
.footer-subscription-form .subscription-modal__content h1 {
  font-size: 2.125rem;
  line-height: 1.875rem;
  margin-top: 34px;
}

.subscription-modal__form > p:first-of-type,
.subscription-banner .subscription-modal__form > p:first-of-type,
.footer-subscription-form .subscription-modal__form > p:first-of-type {
  font-weight: var(--behr-bold-600);
}

.subscription-modal__content p,
.subscription-banner .subscription-modal__content p,
.footer-subscription-form .subscription-modal__content p {
  font-size: 1.125rem;
  line-height: 1.688rem;
  margin-bottom: 0 !important;
}

.subscription-modal__content p:nth-of-type(2),
.subscription-banner .subscription-modal__content p:nth-of-type(2),
.footer-subscription-form .subscription-modal__content p:nth-of-type(2) {
  margin-top: 4px;
  margin-bottom: 16px;
}

.subscription-modal__content form,
.subscription-banner .subscription-modal__content form,
.footer-subscription-form .subscription-modal__content form {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.subscription-modal__content form label,
.subscription-banner .subscription-modal__content form label,
.footer-subscription-form .subscription-modal__content form label {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  font-size: 1.125rem;
  line-height: 1.25rem;;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-subscription-form .subscription-modal__content form label[for=subscription_smsOptionalMessage] {
  text-transform: none;
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

.subscription-modal__content form input,
.subscription-banner .subscription-modal__content form input,
.footer-subscription-form .subscription-modal__content form input {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

.subscription-modal__content form input,
.subscription-banner .subscription-modal__content form input,
.footer-subscription-form.subscription-modal__content form input {
  padding: 6px 12px;
  align-self: flex-start;
}

.subscription-modal__content form input,
.subscription-modal__content form select,
.subscription-banner .subscription-modal__content form input,
.footer-subscription-form .subscription-modal__content form select {
  border-radius: 0;
  margin-bottom: 16px;
}

.subscription-modal__content form button,
.subscription-banner .subscription-modal__content form button,
.footer-subscription-form .subscription-modal__content form button {
  width: 25%;
  height: 50px;
  padding: 5px 10px;
  align-self: center;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 0.938rem;
}

.subscription-modal__form > p > a {
  color: var(--behr-red-primary);
}

.subscription-modal__form > p > a:hover {
  color: var(--behr-navy-primary);
  text-decoration: underline;
}

/* .subscription-modal__sign-up-btn.disabled,
.subscription-banner .subscription-modal__sign-up-btn.disabled,
.footer-subscription-form .subscription-modal__sign-up-btn.disabled {
  background: var(--behr-grey-light);
  border: 1px solid #FFFFFF;
} */

.subscription-modal__close-modal,
.subscription-banner .subscription-modal__close-modal,
.footer-subscription-form .subscription-modal__close-modal,
.subscription-modal__close-popup--icon,
.subscription-banner .subscription-modal__close-popup--icon,
.footer-subscription-form .subscription-modal__close-popup--icon {
  /*position: absolute;*/
  top: 16px;
  right: 24px;
  height: 10px;
  width: 10px;
  float: right;
}

.subscription-modal__error-wrapper p,
.subscription-banner .subscription-modal__error-wrapper p,
.footer-subscription-form .subscription-modal__error-wrapper p {
  font-size: 1rem;
  color: #FF0000;
  margin-bottom: 0 !important;
}

.subscription-modal__result-popup--message strong,
.subscription-banner .subscription-modal__result-popup--message strong,
.footer-subscription-form .subscription-modal__result-popup--message strong {
  display: inline-block;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .subscription-modal__content,
  .subscription-banner .subscription-modal__content,
  .footer-subscription-form .subscription-modal__content,
  .subscription-modal__content,
  .subscription-banner .subscription-modal__content,
  .footer-subscription-form .subscription-modal__content {
    max-width: 500px;
    min-height: calc(100% - 3.5rem);
    margin: auto;
  }

  .subscription-modal__content--wrapper,
  .subscription-banner .subscription-modal__content--wrapper,
  .footer-subscription-form .subscription-modal__content--wrapper {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
  }
}

@media only screen and (min-width: 992px) {
  .subscription-modal__content,
  .subscription-banner .subscription-modal__content,
  .footer-subscription-form .subscription-modal__content,
  .subscription-modal__content,
  .subscription-banner .subscription-modal__content,
  .footer-subscription-form .subscription-modal__content {
    width: 800px;
    margin: auto;
  }

  .subscription-modal__content h1,
  .subscription-banner .subscription-modal__content h1,
  .footer-subscription-form .subscription-modal__content h1 {
    font-size: 2.813rem;
    line-height: 2.5rem;
  }

  .subscription-modal__content form input,
  .subscription-modal__content form select,
  .subscription-banner .subscription-modal__content form input,
  .footer-subscription-form .subscription-modal__content form select {
    width: 75%;
  }

  .subscription-modal__state-zip-wrapper,
  .subscription-banner .subscription-modal__state-zip-wrapper,
  .footer-subscription-form .subscription-modal__state-zip-wrapper {
    display: flex;
    width: 75%;
    gap: 74px;
  }

  .subscription-modal__state-zip-wrapper > div,
  .subscription-banner .subscription-modal__state-zip-wrapper > div,
  .footer-subscription-form .subscription-modal__state-zip-wrapper > div {
    flex: 0 0 50%;
  }

  .subscription-modal__state-zip-wrapper > div select,
  .subscription-banner .subscription-modal__state-zip-wrapper > div select,
  .footer-subscription-form .subscription-modal__state-zip-wrapper > div select {
    width: 100%;
  }

  .subscription-modal__state-zip-wrapper > div input,
  .subscription-banner .subscription-modal__state-zip-wrapper > div input,
  .footer-subscription-form .subscription-modal__state-zip-wrapper > div input {
    width: 74%;
  }

  .subscription-modal__country-language-wrapper,
  .subscription-banner .subscription-modal__country-language-wrapper,
  .footer-subscription-form .subscription-modal__country-language-wrapper {
    display: flex;
    flex-direction: column;
  }

  .subscription-modal__content form button,
  .subscription-banner .subscription-modal__content form button,
  .footer-subscription-form .subscription-modal__content form button {
    width: 20%;
  }

}

@media only screen and (max-width: 575px) {
  .subscription-modal__wrapper {
    margin: .5rem;
    width: auto;
    height: auto;
  }

  .subscription-modal__content,
  .subscription-banner .subscription-modal__content,
  .footer-subscription-form .subscription-modal__content {
    margin-top: 0px !important;
  }

  .subscription-modal__content form input,
  .subscription-modal__content form select,
  .subscription-banner .subscription-modal__content form input,
  .footer-subscription-form .subscription-modal__content form select {
    max-width: 100%;
  }

  .subscription-modal__content form button,
  .subscription-banner .subscription-modal__content form button,
  .footer-subscription-form .subscription-modal__content form button {
    width: auto;
  }
}
.sustainability-fifty-fifty {
    background-color: #F4F1ED;
    margin-top: 70px;
}
.sustainability-title {
    font-size: 122px;
    line-height: 122px;
    font-style: normal;
    font-family: var(--behr-heading-font);
    font-weight: var(--behr-atf-500);
    color: #465058;
}
.sustainability-right-image img {
    padding-bottom: 25px;
}
@media (min-width:992px) {
    .sustainability-fifty-fifty {
        padding-bottom: 10%;
    }
    .sustainability-content-padding {
        padding-top: 10%;
        padding-right: 2rem;
    }
}
@media (max-width:991px) {
    .sustainability-right-content {
        margin-top: 20px;
    }
    .sustainability-right-content {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .sustainability-title {
        font-size: 84px;
        line-height: 84px;
    }
    .sustainability-image-text__logo-text-content {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }
    .sustainability-image-text__logo-text-content h2 {
        padding-top: 1rem;
        padding-bottom: 0.25rem;
    }
    .sustainability-image-center {
        display: flex;
        justify-content: center;
    }
}
.fourColLayout .owl-carousel .owl-stage,
.threeColLayout .owl-carousel .owl-stage {
  display: flex;
}

.fourColLayout .owl-item .prod-card,
.threeColLayout .owl-item .prod-card {
  height: 100% !important;
}

.threeColLayout,
.fourColLayout {
  position: relative;
}

.portrait-img--cropped .prod-card article .prod-card__cta>p {
  padding-bottom: 0;
  font-size: .938rem;
}

.portrait-img--cropped .prod-card article .prod-card__cta>p a {
  text-transform: uppercase;
}

.portrait-img--cropped .two-col--heading p,
.portrait-img--cropped .three-col--heading p,
.portrait-img--cropped .four-col--heading p {
  font-size: .938rem;
}

.three-col-wrapper,
.four-col-wrapper {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.three-col-wrapper .column-layout--flex .prod-card:nth-child(-n+2),
.fourColLayout .column-layout--flex .prod-card:nth-child(-n+3) {
  margin-bottom: 48px;
}

.threeColLayout .three-col-wrapper article .prod-card__cta .button {
  margin-top: 20px;
}

p.three-col__secondary-title,
p.fourCol__secondary-title {
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-black);
  text-transform: unset !important;
  margin-bottom: 16px;
  font-size: 0.938rem;
  line-height: 1.5rem;
}

.threeColLayout .prod-card strong,
.fourColLayout .prod-card strong {
  display: block;
  line-height: 20px;
  margin-bottom: 20px;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-black);
  text-transform: unset !important;
}

.portrait-img--cropped .prod-card__img img {
  display: block;
  max-height: 230px;
  min-height: 230px;
  object-fit: cover;
  object-position: 0% 0%;
}

.four-col-wrapper .column-layout--flex__item {
  flex: 0 1 25%;
  height: auto;
  margin-bottom: 0;
}

.four-col-wrapper article h3 {
  line-height: 35px;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.prod-card article {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.four-col-wrapper .prod-card article {
  padding: 0 8px;
}

.four-col-wrapper .column-layout--flex,
.four-col-wrapper .four-col-owl-carousel {
  margin-left: -8px;
  margin-right: -8px;
}

.three-col-wrapper .owl-item .prod-card .button,
.four-col-wrapper .owl-item .prod-card .button {
  margin-top: auto;
}

.three-col-wrapper .owl-carousel .owl-item {
  padding-left: 3px;
}

.three-col--heading h2,
.four-col--heading h2 {
  line-height: 42px;
  padding-bottom: 10px;
}

.three-col--heading p,
.four-col--heading p {
  line-height: 24px;
}

.threeColLayout h3 {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 10px;
}

.prod-card {
  display: flex;
  flex-direction: column;
}

.prod-card__img {
  margin-bottom: 20px;
}

.prod-card__img img {
  width: 100%;
}

.prod-card__cta {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prod-card article p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0px;
}

.fourColLayout .flex-left,
.threeColLayout .flex-left {
  align-items: flex-start;
}

.fourColLayout .flex-center,
.threeColLayout .flex-center {
  align-items: center;
  text-align: center;
}

.three-col--heading,
.four-col--heading {
  margin-bottom: 40px;
  max-width: 700px;
}

.four-col-wrapper .owl-stage {
  padding-left: 0 !important;
}

/* .fourColLayout .owl-carousel .owl-stage-outer, .threeColLayout .owl-carousel .owl-stage-outer{
  margin-bottom: 68px;
} */

.fourColLayout .owl-carousel .owl-dots .owl-dot.active span,
.threeColLayout .owl-carousel .owl-dots .owl-dot.active span {
  background: #000 !important;
}

.fourColLayout .owl-theme .owl-dots .owl-dot span,
.threeColLayout .owl-theme .owl-dots .owl-dot span {
  background: #fff !important;
  border: 1px solid #000;
  height: 11px;
  width: 11px;
}

.fourColLayout .owl-theme .owl-dots button.owl-dot,
.threeColLayout .owl-theme .owl-dots button.owl-dot {
  background: none;
  border: none;
}

.threeColLayout .owl-theme .owl-dots,
.fourColLayout .owl-theme .owl-dots {
  position: relative;
}

.threeColLayout .ft-pages-addl-dscrp {
  margin-top: 70px;
}

@media only screen and (max-width: 991px) {
  .threeColLayout .column-layout--flex .pd-05 p {
    padding-bottom: 0;
  }
}

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

  .three-col-wrapper .column-layout--flex .prod-card:nth-child(-n+2),
  .fourColLayout .column-layout--flex .prod-card:nth-child(-n+3) {
    margin-bottom: 0;
  }

  .three-col-wrapper .column-layout--flex .prod-card:nth-child(-n+2) {
    margin-bottom: 0px;
  }

  .threeColLayout .ft-pages-addl-dscrp {
    margin-top: 25px;
  }

  .column-layout--flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }

  .fourColLayout .column-layout--flex>*+* {
    margin-left: 20px;
  }

  .threeColLayout .column-layout--flex>*+* {
    margin-left: 20px;
  }

  .three-col-wrapper,
  .four-col-wrapper {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .three-col-wrapper .column-layout--flex__item {
    flex: 0 1 33%;
    height: auto;
  }

  /* .prod-card article .button{
    margin-top: auto;
  } */

  .fourColLayout .owl-stage,
  .threeColLayout .owl-stage {
    padding-left: 0 !important;
  }

}

@media only screen and (min-width: 992px) {
  .three-col-wrapper .owl-carousel .owl-item {
    padding-left: 0px;
  }

  .fourColLayout .column-layout--flex>*+* {
    margin-left: 10px;
  }
}

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

  .portrait-img--cropped .two-col--heading p,
  .portrait-img--cropped .three-col--heading p,
  .portrait-img--cropped .four-col--heading p {
    font-size: 1.125rem;
  }

  .four-col-wrapper article h3 {
    font-size: 1.875rem;
  }

  .prod-card article p {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.fourColLayout .four-col--heading h2 {
  padding-bottom: 1rem;
}

.sustainability-sticky-navbar {
    top: 0;
    width: 100%;
    position: fixed;
    background-color: #F4F1ED;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sticky-nav-title {
    font-family: var(--behr-heading-font);
	font-style: normal;
	font-weight: var(--behr-atf-500);
    font-size: 52px;
    line-height: 52px;
    text-transform: uppercase;
    color: #465058;
    margin-top: 10px;
}
.sustainability-arrow {
    display: flex;
    align-items: center;
}
.sustainability-arrow span {
    font-family: var(--behr-heading-font);
    font-style: normal;
    font-weight: var(--behr-atf-500);
    font-size: 30px;
    line-height: 24px;
    color: #465058;
}
.sustainability-arrow:hover {
    cursor: pointer;
}
.sustainability-more-options {
    top: 95px;
    width: 100%;
    position: fixed;
    background-color: #F4F1ED;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: none;
    padding-top: 5px;
}
.sustainability-more-options ul {
    list-style: none;
    display: flex;
    float: right;
    margin-bottom: 0px;
}
#message, .sustainability-more-options li a {
    font-family: var(--behr-heading-font);
	font-style: normal;
	font-weight: var(--behr-atf-500);
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
    color: #465058;
    align-items: center;
}
.sustainability-sticky-navbar .gg-chevron {
    top: -3px;
}
#iconImg {
    width: 35px;
}
@media (max-width: 767px) {
    .sticky-nav-title {
        font-size: 40px;
        line-height: 40px;
    }
    .sustainability-arrow span {
        font-size: 24px;
        align-items: center;
    }
    .sustainability-more-options li a {
        font-size: 24px;
        line-height: 36px;
    }
    .sustainability-more-options {
        top: 118px;
    }
}
.sustainability-more-options ul img {
    display: block !important;
}
#message {
    margin-top: 5px;
}
.sustainability-more-options li a img {
    margin-top: -5px;
}
.twoColLayout{
    position: relative;
}

.two-col-wrapper{
    padding-top: 80px;
    padding-bottom: 80px;
}

.two-col__block h3 {
    margin-bottom: 8px;
    line-height: 35px;
    font-size: 1.5rem;
}

.two-col__block p{
  font-size: .938rem;
  line-height: 24px;
}

.two-col p, 
.two-col strong{
    font-family: var(--behr-body-and-label-font);
    font-weight: var(--behr-normal);
}

.two-col--heading{
    margin-bottom: 24px;
    max-width: 700px;
}

.heading--full-width{
    max-width: none;
}

.portrait-img--cropped .two-col__img-container img{
    display: block;
    max-height: 230px;
    min-height: 230px;
    object-fit: cover;
    object-position: 0% 0%;
  }

p.two-col__secondary-title {
    font-family: var(--behr-body-and-label-font--bold);
    font-weight: var(--behr-bold);
    color: var(--behr-black);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 0.938rem;
    line-height: 1.5rem;
}

.two-col--heading h2{
    line-height: 42px;
}

.two-col__img-container{
    margin-bottom: 23px;
}

.two-col__img-container img{
    width: 100%;
}

.two-col__block .button{
    margin-top: 32px;
}

.two-col__block strong{
    display: block;
    text-transform: uppercase;
    line-height: 20px;
    color: var(--behr-black);
    margin-bottom: 20px;
}

.two-col .two-col__block:nth-child(2){
    margin-bottom: 48px;
}

.two-col .two-col__block--left{
    align-items: flex-start;
    text-align: left;
}

.two-col .two-col__block--center{
    align-items: center;
    text-align: center;
}
/*  */
.ft-pages-addl-dscrp{
    text-align: center;
}

.ft-pages-addl-dscrp__img{
    padding-bottom: 16px;
    max-width: 100%;
}

.ft-pages-addl-dscrp__img img{
    margin: 0 auto;
}

.ft-pages-addl-dscrp__text{
    font-size: .938rem;
    line-height: 20px;
}

.twoColLayout .ft-pages-addl-dscrp{
    margin-top: 90px;
    flex: 0 0 100%;
}

.fourColLayout .ft-pages-addl-dscrp{
    margin-top: 70px;
}

.pd-s--mbl{
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}
.pd-m--mbl{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.pd-l--mbl{
    padding-top:80px !important;
    padding-bottom:80px !important;
}
.pd-xl--mbl{
    padding-top:100px !important;
    padding-bottom:100px !important;
}

@media only screen and (min-width: 768px){
    .pd-0--dsktp{
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .pd-s--dsktp{
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
    .pd-m--dsktp{
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .pd-l--dsktp{
        padding-top:80px !important;
        padding-bottom:80px !important;
    }
    .pd-xl--dsktp{
        padding-top:100px !important;
        padding-bottom:100px !important;
    }
    
    .fourColLayout .ft-pages-addl-dscrp{
        margin-top: 25px;
    }

    .ft-pages-addl-dscrp{
        display: flex;
        align-items: center;
    }

    .ft-pages-addl-dscrp__img{
        flex: 0 0 8.3%;
        max-width: 8.3%;
        padding-right: 15px;
    }

    .ft-pages-addl-dscrp__text{
        flex: 0 0 75%;
        max-width: 75%;
        text-align: left;
    }

    .two-col{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .two-col__block p{
      font-size: 1.125rem;
    }

    .two-col--heading{
        flex: 0 0 100%;
    }

    .two-col__block{
        flex: 0 1 calc(50% - 15px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .two-col__block p{
        margin-bottom: 32px;
        margin-top: auto;
    }

    .two-col .two-col__block:nth-child(2){
        margin-bottom: 0;
    }

    .two-col__block .button{
        margin-top: auto;
    }
    
}

@media (min-width: 1200px){
    .ft-pages-addl-dscrp__text{
        font-size: 1.125rem;
    }
    .two-col__block h3 {
        font-size: 1.875rem;
    }
}
@media (max-width:1199px) {
    .two-col-with-sidebar__header h1 {
        font-size: 45px !important;
        line-height: 40px !important;
    }
}
.video-modal-col {
  /* background-color: var(--behr-beige); */
  position: relative;
}

.video-modal-col--dsktp-carousel .owl-carousel .owl-item img{
  object-fit: fill;
}

.video-modal-col--dsktp-carousel .video-modal-col-wrapper__column-card article figure, .video-modal-col--dsktp-carousel .video-modal-col-wrapper__column-card article > a{
  height: auto;
}

.video-modal-col__no-scroll {
  overflow: hidden;
}

.video-modal-col__bg-primary {
  background: var(--behr-beige);
}

.video-modal-col__heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.video-modal-col__header-title {
  font-size: 34px;
  line-height: 30px;
  padding-top: 24px;
  padding-bottom: 8px;
}

.video_modal-col__heading-button {
  padding-top: 44px;
  white-space: nowrap;
  text-align: right;
}

.video-modal-col__header-description {
  font-family: var(--behr-body-and-label-font);
  font-weight: var(--behr-normal);
}

.video-modal-col .owl-carousel .owl-dots{
  position: relative;
}

.video-modal-col__body-copy-1 {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
}

.video-modal-col__mobile {
  display: block;
  padding: 40px 0;
}

.video-modal-col__desktop {
  display: none;
}

.video-modal-col-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

.video-modal-col-wrapper figure,
.video-modal-col-wrapper__column-card > article > a {
  margin: 0 0 1rem;
}

.video-modal-col-wrapper__column-card__title {
  padding: 1.5rem 0rem 1.5rem 0rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.video-modal-col-wrapper__column-card__title a {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--behr-body-and-label-font--bold);
  font-weight: var(--behr-bold);
  color: var(--behr-navy-primary);
  text-decoration: none;
}

.video-modal-col-wrapper__column-card__title a:hover {
  text-decoration: underline;
}

.video-modal-col .owl-carousel .owl-dots .owl-dot.active span {
  background: #000 !important;
}

.video-modal-col .owl-theme .owl-dots .owl-dot span {
  background: #fff !important;
  border: 1px solid #000;
  height: 11px;
  width: 11px;
}

.video-modal-col .owl-theme .owl-dots button.owl-dot {
  background: none;
  border: none;
}

.video-modal-col .owl-dots:not(:last-child) {
  display: none;
}


.video-modal-col-wrapper .owl-carousel .owl-item{
  padding-left: 3px;
}

.video-modal-col--heading h2 {
  line-height: 42px;
}

.video-modal-col--heading p {
  line-height: 24px;
}

.video-modal-col--heading{
  margin-bottom: 20px;
  max-width: 700px;
}

.video-modal-col .owl-stage{
  padding-left: 0 !important;
}

.video-modal-col .owl-carousel .owl-stage-outer {
  margin-bottom: -30px;
}

.video-modal-col .owl-carousel .owl-dots .owl-dot.active span {
  background: #000 !important;
}

.video-modal-col .owl-theme .owl-dots .owl-dot span {
  background: #fff !important;
  border: 1px solid #000;
  height: 11px;
  width: 11px;
}

/* How To's */
.video-modal-col__modal {
  display: none;
}

.video-modal-col__modal-content.video-modal-col__how-to {
  background: black;
}

.video-modal-col__modal-header.video-modal-col__how-to {
  background: black;
  border-bottom: none;
}

.video-modal-col__modal-title.video-modal-col__how-to {
  background: black;
  color: white;
  font-family: var(--behr-heading-font);
  font-weight: var(--behr-atf-500);
}

.video-modal-col__behrfs-5  {
  font-size: 24px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 0px;
}


.video-modal-col__close {
  all: unset;
  color: #fff;
  font-family: var(--behr-heading-font);
  font-size: 25px;
  font-weight: var(--behr-atf-500);
  text-shadow: none;
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  opacity: .75;
}

.video-modal-col__close span {
  cursor: pointer;
}


/* .video-modal-col__how-to {
  background: var(--behr-beige);
} */

.video-modal-col__thumbnail {
  position: relative;
  cursor: pointer;
}

.video-modal-col__thumbnail::before {
  cursor: pointer;
  display: block;
  content: "";
  position: absolute;
  background-image: url(https://www.behr.com/binaries/content/gallery/behr-refresh-2021/how-to/play-button-2021.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25%;
  height: 25%;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: width .3s, height .3s;
  z-index: 1;
  padding: 0 !important;
}

.video-modal-col__thumbnail:before { transition: all .2s ease-in-out; }
.video-modal-col__thumbnail:hover:before { transform: scale(1.1); }

.video-modal-col__modal {
  position: relative;
  /* display: none; */
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.5);
}

.video-modal-col__fade:not(.show)  {
  top: 0;
  opacity: 0;
}

.video-modal-col__fade {
  transition: opacity .15s linear;
}

.video-modal-col__modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0.3rem;
  outline: 0;
}

.video-modal-col__modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: .25rem!important;
  padding-right: .25rem!important;
}

/* .video-modal-col__embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
} */

.video-modal-col__embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.video-modal-col__embed-responsive::before {
  display: block;
  content: "";
}

.video-modal-col__embed-responsive::before {
  padding-top: 75%;
}

iframe.video-modal-col__embed-responsive-item{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-col__modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.video-modal-col__modal-dialog {
  max-width: 500px;
  width: 100%;
  margin: 1.75rem auto;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-modal-col-wrapper__column-card article {
  display: block;
  width: 100%;
}

.video-modal-col-wrapper__column-card article a {
  display: block;
}

.video-modal-col--dsktp-carousel .dsktp-video-modal-col-owl-carousel{
  display: none;
}

@media only screen and (min-width: 768px){
  .video-modal-col__heading{
    flex-direction: row;
    padding-bottom: 46px;
  }

  .video_modal-col__heading-button{
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .video-modal-col--dsktp-carousel .dsktp-video-modal-col-owl-carousel{
    display: block;
  }

  .video-modal-col--dsktp-carousel .video-modal-col-wrapper__column-card{
    flex: none;
    max-width: none;
  }

  .video-modal-col__mobile {
    display: none;
  }

  .video-modal-col__desktop {
    display: flex;
    flex-wrap: wrap;
  }

  .video-modal-col-wrapper {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .video-modal-col-wrapper__column-card {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .video-modal-col-wrapper__column-card article figure,
  .video-modal-col-wrapper__column-card article > a {
    height: 288px;
    display: block;
  }

  .video-modal-col-wrapper__column-card article figure img,
  .video-modal-col-wrapper__column-card article a img {
    display: block;
    margin: auto;
    height: 100%;
    width: 88%;
    object-fit: cover;
  }

  .video-modal-col__body-copy-1 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }

  .video-modal-col__header-title {
    font-size: 45px;
    line-height: 40px;
  }

  .video-modal-col-wrapper__column-card {
    display: flex;
    justify-content: center;
    padding-left: 0.5rem!important;
    padding-right: 0.5rem!important;
  }
}
@media (max-width:574px) {
  .video-modal-col__mobile .owl-stage-outer .owl-stage {
    display: flex;
    justify-content: center;
    padding-right: 0px;
  }
}
.youtubeVideo-embed {
    padding: 80px 0px;
    position: relative;
}
.youtubeVideo-embed iframe {
    width: 100%;
    height: 100vh;
}
@media (max-width:767px) {
    .youtubeVideo-embed iframe {
        height: 50vh;
    }
}
@media (min-width:768px) and (max-width:1200px) {
    .youtubeVideo-embed iframe {
        height: 70vh;
    }
}
.youtubeVideo__wrapper {
    max-width: 1920px;
    margin: 0 auto;
}
.rte{
  position: relative;
}

.rte__wrapper h1,
.rte__wrapper h2,
.rte__wrapper h3,
.rte__wrapper h4,
.rte__wrapper h5,
.rte__wrapper h6{
    color: var(--behr-navy-primary);
    margin: 0;
}

.rte__wrapper i,
.rte__wrapper u,
.rte__wrapper s,
.rte__wrapper b{
  display: block;
}

.rte__wrapper p {
  display: inline-block;
  width: 100%;
}

.rte__wrapper p img {
  margin-bottom: 16px;
  width: 100%; /* give the appearance of stacking on mobile */
}

.rte__wrapper ul > li,
.rte__wrapper ol > li {
  list-style-position: inside;
}

.rte__wrapper tr td, .rte__wrapper th{
  padding-left: 8px;
  padding-right: 8px;
}

@media only screen and (min-width: 992px) {
  .rte__wrapper p img {
    margin-right: 18px;
    width: 30%;
  }

  .pro-paint-section .store-container .behr-img-content .img-fluid{
    width: auto !important;
  }

}
.legal-page .behr-legal__copy .rte__wrapper p b {
  display: inline !important;
}


