* {
    box-sizing: border-box;
}

:root {
    --primary: #000;
    --secondary: #F0F0F0;
    --secondary-dark: #ECECEC;
    --accent: #5a43cb;
    --accent-active: #3f2d94;
}

.hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

ul, li, p, h1, h2, h3 {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

body, input, textarea, button {
    font-family: 'Nunito Sans', sans-serif;
}

body {
    padding: 0;
    margin: 0;
}

img[data-sizes="auto"] {
    display: block;
}

#divworkspacearea {
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 10px 10px 0;
}

.HomePageForm #divworkspacearea {
    padding: 0;
}

#item-info-container {
    max-width: 1600px;
}

#content-theme-3.static-page h1 {
    margin: 0 0 25px 0;
}

@media screen and (max-width: 767px) {
    #content-theme-3.static-page h1 {
        margin: 0;
    }
}

/* MANHATTAN HEADER */

header {  
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 10px 0;
}

#header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    flex-shrink: 0;
    padding-right: 20px;
}

#logo img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

#search-box {
    width: 50%;
    height: 38px;
    position: relative;
}

#search-box input {
    width: 100%;
    height: 38px;
    padding: 0 20px;
    border: 0;
    background-color: var(--secondary);
    border-radius: 17px;
}

#search-box input::placeholder {
    color: #A6A6A6;
}

#search-box input,button:focus {
    outline: 0;
}

#search-box button {
    height: 38px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 300;
    background-color: var(--accent);
    border-radius: 20px;
    color: #FFF;
    text-transform: uppercase;
    border: 0;
    transition: .1s;
}

#search-box button:hover {
    background-color: var(--accent-active);
    cursor: pointer;
}

#account > ul {
    display: flex;
}

#account>ul>li {
    position: relative;
}

#account a {
    white-space: nowrap;
    text-decoration: none;
}

#account ul {
    margin-left: 5px;
}

#account ul li a {
    color: var(--primary);
    padding: 10px 0 10px 10px;
}

#account ul ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 25px;
    right: -10px;
    text-align: right;
    padding: 5px 0;
    background-color: var(--primary);
    z-index: 1000;
    -webkit-transition: opacity .3s ease, visibility 0s ease .3s;
    -moz-transition: opacity .3s ease, visibility 0s ease .3s;
    -o-transition: opacity .3s ease, visibility 0s ease .3s;
    -ms-transition: opacity .3s ease, visibility 0s ease .3s;
    transition: opacity .3s ease, visibility 0s ease .3s;
}

#account li:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

#account li ul li {
    display: block;
}

#account li ul a {
    display: block;
    padding: 0 15px;
    font-size: .9em;
    line-height: 1.75em;
    color: #fff;
    text-decoration: none;
}

#account li ul a:hover {
    text-decoration: underline;
}

.mobile-nav {
    display: none;
}

#main-nav a {
    text-decoration: none;
    color: var(--primary);
}

#main-nav > ul {
    display: flex;
}

#main-nav > ul > li {
    position: relative;
}

#main-nav > ul > li > a {
    text-transform: uppercase;
    font-size: 1.1em;
    padding: 10px 0;
}

#main-nav > ul > li > a:hover {
    color: var(--accent);
}

#main-nav > ul > li:hover > a {
    color: var(--accent);
}

#main-nav > ul > li:not(:last-child) {
    margin-right: 20px;
}

#main-nav ul > li > ul {
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, .95);
    top: 34px;
    left: -10px;
    z-index: 100;
    min-width: 220px;
}

#main-nav > ul > li:hover > ul {
    display: block;
}

#main-nav ul > li > ul > li > a {
    display: block;
    padding: 10px 20px;
    font-size: 18px;
}

#main-nav ul > li > ul > li:first-child > a {
    padding-top: 20px;
}

#main-nav ul > li > ul > li:last-child > a {
    padding-bottom: 20px;
}

#main-nav ul > li > ul > li > a:hover {
    color: var(--accent);
    text-decoration: underline;
}


#main-nav ul > li > ul >li > ul{
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, .95);
    top: -22px;
    left: 60px;
    z-index: 100;
    min-width: 220px;
}
#main-nav ul > li > ul > li:hover > ul{
    position: relative;
    display: block;

}


#sticky-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px;
    background-color: #FFF;
	/*position: sticky;*/
    position: relative;
	top: 0;
    z-index: 500;
}

#sticky-nav > ul {
    display: flex;
    color: var(--primary);
}

#sticky-nav > ul li:not(:first-child) {
    padding-left: 20px;
}

#sticky-nav > ul li a {
    text-decoration: none;
    color: var(--primary);
    font-size: 18px;
}

#sticky-nav > ul li a.accent {
    color: #4c3ab7;
    text-decoration: underline;
}

#sticky-nav > ul li a.accent:hover {
    color: #2a1d77;
}

@media screen and (max-width: 1200px) {
    #main-nav ul > li > ul {
        top: 31px;
    }

    #main-nav > ul > li > a {
        font-size: 1em;
    }

   
}
@media screen and (max-width: 991px) {
   
    
    #main-nav > ul > li:not(:last-child) {
        margin-right: 15px;
    }
    #main-nav > ul > li > a {
        font-size: 14px;
    }
#footer-bottom > div:first-child img {
        max-width: 100%;
       height: auto;
    }
     #main-nav ul {
        display: none;
    }
    .mobile-nav {
      display: block;
    }


    #main-nav > ul.nav-active {
        display: block;
    }

    #main-nav ul {
        display: none;
    }

    #main-nav > ul {
        position: absolute;
        background-color: #fff;
        width: 100%;
        max-width: 300px;
        top: 42px;
        left: 0;
        z-index: 100;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    }

    #main-nav > ul > li:first-of-type {
        padding-top: 10px;
    }

    #main-nav > ul > li:not(:first-child) > a {
        border-top: 1px solid #ccc;
    }

    #main-nav > ul > li:not(:last-child) {
        margin-right: 0;
    }

    #main-nav > ul > li:hover > ul {
        display: none;
    }

    #main-nav > Ul > li > a {
        display: block;
        width: 100%;
        padding-left: 20px;
    }

    #main-nav ul > li > ul {
        position: static;
        display: none;
        background: rgba(255, 255, 255, .9);
        min-width: auto;
    }

    #main-nav > ul > li > ul.nav-active {
        display: block;
    }

    #main-nav ul > li > ul > li:first-child > a {
        padding-top: 0;
    }

    #main-nav ul > li > ul > li > a {
        padding: 5px 0 5px 20px;
        line-height: 28px;
    font-size: 16px;
    }


    #main-nav>ul>li:not(:last-child) {
        margin-right: 15px;
    }
    #main-nav>ul>li>a {
        font-size: 14px;
    }

}

@media screen and (max-width: 767px) {
    header {
        padding: 10px 10px;
    }

    #logo img {
        width: 100%;
        max-width: 260px;
        height: auto;
    }

    #search-box button {
        padding: 0px 12px;
    }

    .mobile-nav {
        display: block;
    }

    #sticky-nav > ul li:not(:first-child) {
        padding-left: 10px;
    }

    #main-nav > ul.nav-active {
        display: block;
    }

    #main-nav ul {
        display: none;
    }

    #main-nav > ul {
        position: absolute;
        background-color: #fff;
        width: 100%;
        max-width: 300px;
        top: 42px;
        left: 0;
        z-index: 100;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    }

    #main-nav > ul > li:first-of-type {
        padding-top: 10px;
    }

    #main-nav > ul > li:not(:first-child) > a {
        border-top: 1px solid #ccc;
    }

    #main-nav > ul > li:not(:last-child) {
        margin-right: 0;
    }

    #main-nav > ul > li:hover > ul {
        display: none;
    }

    #main-nav > Ul > li > a {
        display: block;
        width: 100%;
        padding-left: 20px;
    }

    #main-nav ul > li > ul {
        position: static;
        display: none;
        background: rgba(255, 255, 255, .9);
        min-width: auto;
    }

    #main-nav > ul > li > ul.nav-active {
        display: block;
    }

    #main-nav ul > li > ul > li:first-child > a {
        padding-top: 0;
    }

    #main-nav ul > li > ul > li > a {
        padding: 5px 0 5px 20px;
        line-height: 38px;
    }


    #main-nav>ul>li:not(:last-child) {
        margin-right: 15px;
    }
    #main-nav>ul>li>a {
        font-size: 14px;
    }
}

@media screen and (max-width: 580px) {
    #logo img {
        width: 100%;
        max-width: 180px;
        height: auto;
    }
    #footer-bottom > div:first-child img {
         max-width: 100%;
         height: auto;
    }
}

@media screen and (max-width: 420px) {
    #logo img {
        width: 100%;
        max-width: 160px;
        height: auto;
    }
    
}

/* END MANHATTAN HEADER */

/* MANHATTAN HOME PAGE */

main {
    max-width: 1600px;
    margin: 0 auto;
}

#home-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.home-title {
    margin: 40px 20px;
    text-align: center;
}

.home-title h2 {
    font-size: 2em;
    font-weight: 400;
    color: var(--primary);
}

.home-title p {
    font-weight: 300;
    text-transform: uppercase;
    color: var(--primary);
}

.shop-by-dept {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
}

.shop-by-dept.grid > div {
    flex: 1 0 33%;
    padding: 10px;
}

.shop-by-dept.single > div {
    flex: 1 0 100%;
    padding: 10px;
}

.shop-by-dept > div > a {
    display: block;
    position: relative;
    color: var(--primary);
    transition: .10s;
    text-decoration: none;
}

.shop-by-dept > div > a:hover {
    transform: translateY(-3px);
}

.shop-by-dept > div > a img {
    width: 100%;
    height: auto;
    display: block;
}

.shop-by-dept > div > a > div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(255, 255, 255, .8);
    padding: 30px 0;
}


.shop-by-dept > div > a > div p {
    padding: 0 10px;
    font-size: 1.1em;
    text-transform: uppercase;
}

.shop-by-dept > div > a > div > p span {
    font-weight: bold;
}

.shop-by-dept > div > a:hover span {
    color: var(--accent);
}


.shop-by-dept.single {
    position: relative;
}
.shop-by-dept.single > div {
    flex: 1 0 100%;
    padding: 10px;

}

.shop-by-dept.single > div > div {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(255, 255, 255, .8);
    padding: 30px 0;
}
.shop-by-dept.single > div > div h2 {
    font-size: 2em;
    font-weight: 400;
    color: var(--primary);
}
.shop-by-dept.single > div > img {
    width: 100%;
    height: auto;
    display: block;
}


.shop-by-dept-mattress.single {
    position: relative;
    top: 10px;
}
.shop-by-dept-mattress > div > a > div{
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(255, 255, 255, .8);
    padding: 30px 0;
}

.shop-by-dept-mattress > div > a > div p {
    padding: 0 10px;
    font-size: 1.1em;
    text-transform: uppercase;
}
.shop-by-dept-mattress > div > a {
    display: block;
    position: relative;
    color: var(--primary);
    transition: .10s;
    text-decoration: none;
}
.shop-by-dept-mattress > div > a img {
    width: 100%;
    height: auto;
    display: block;
}




.design-idea {
    display: flex;
    flex-wrap: wrap;
}

.design-idea > div {
    flex: 1 0 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.design-idea > div > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.design-idea > div > div {
    
    flex-direction: column;
    min-height: calc(50% - 20px);
    justify-content: center;
    align-items: center;
}
.design-idea > div > div > div{
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(255,255,255,.8);
    padding: 30px 0;
}
.design-idea > div > div > div h2{
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    line-height: 32px;
}

.design-idea .design-studio-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(255,255,255,.8);
    padding: 30px 0;
    min-height: auto;
}
.design-idea .design-studio-overlay h2{
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    line-height: 32px;
}

.design-idea > div > div img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.design-idea h2 a {
    color: var(--primary);
    transition: .10s;
    text-decoration: none;
}
.design-idea h2 a:hover {
    color: var(--accent);

}


.design-idea-intro {
    background-color: var(--secondary);
    text-align: center;
}

.design-idea-intro p {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 300;
    margin: 0 20px;
}

.design-idea-intro h2 {
    font-size: 2em;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--primary);
    margin: 0 20px 30px;
}

.design-idea-intro a {
    padding: 10px 30px;
    font-size: 17px;
    font-weight: 300;
    background-color: var(--accent);
    border-radius: 20px;
    color: #FFF;
    text-transform: uppercase;
    text-decoration: none;
    transition: .1s ease-out;
}

.design-idea-intro a:hover {
    background-color: var(--accent-active);
    transform: translateY(-2px);
}

#our-company {
    display: flex;
}

#our-company > div {
    flex: 1 0 50%;
    padding: 10px;
}

#our-company > div > div {
    position: relative;
}

#our-company > div > div a {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    padding: 10px 40px;
    font-size: 2em;
    background-color: var(--accent);
    color: #fff;
    border-radius: 20px;
    transition: .1s ease-out;
}

#our-company > div > div a:hover {
    background-color: var(--accent-active);
    transform: translate(-50%, -53%); 
}

#our-company > div img {
    width: 100%;
    height: auto;
    display: block;
}

#our-company > div h2 {
    font-weight: 400;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary);
}

#our-company > div p {
    line-height: 1.5em;
    color: var(--primary);
    font-size: 18px;
}

#newsletterbox {
    width: calc(100% - 20px);
    background-color: var(--secondary);
    padding: 50px 20px;
    margin: 0 auto;
}

#newsletter-form {
    width: 50%;
    height: 38px;
    position: relative;
    margin: 0 auto;
}

#newsletter-form input {
    width: 100%;
    height: 38px;
    padding: 0 20px;
    border: 0;
    background-color: #fff;;
    border-radius: 17px;
}

#newsletter-form input::placeholder {
    color: #A6A6A6;
}

#newsletter-form input,button:focus {
    outline: 0;
}

#newsletter-form button {
    height: 38px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 30px;
    font-size: 17px;
    font-weight: 300;
    background-color: var(--accent);
    border-radius: 20px;
    color: #FFF;
    text-transform: uppercase;
    border: 0;
    transition: .1s;
}

#newsletter-form button:hover {
    background-color: var(--accent-active);
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .shop-by-dept.grid > div {
        flex: 1 0 50%;
    }
    
    .design-idea-intro h2 {
        font-size: 1.6em;
        margin: 0 20px 15px;
    }
    
    .design-idea-intro a {
        padding: 8px 25px;
        font-size: 1em;
    }

    #our-company > div > div a {
        padding: 10px 30px;
        font-size: 1.5em;
        border-radius: 15px;
    }

    #newsletter-form {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .home-title {
        margin: 20px 20px;
    }

    .home-title h2 {
        font-size: 1.7em;
    }

    .shop-by-dept > div > a > div {
        position: static;
        padding: 10px 0;
    }

    .shop-by-dept > div > a > div p {
        font-size: 1em;
        text-transform: uppercase;
    }

    .design-idea > div {
        flex: 1 0 100%;
    }

    .design-idea-intro {
        margin-bottom: 20px;
        padding: 30px 0;
    }

    .design-idea.bottom > div:first-child {
        order: 2;
    }

    .design-idea.bottom > div:last-child {
        order: 1;
    }

    #our-company {
        flex-direction: column;
    }

    #our-company > div {
        flex: 1 0 100%;
    }

    #newsletter-form {
        width: 100%;
    }

    #newsletter-form button {
        padding: 0 20px;
    }
    #home-slide .owl-dots {
        display: none;
    }

}

/* END MANHATTAN HOME PAGE */

/* MANHATTAN FOOTER */

footer {
    max-width: 1600px;
    margin: 50px auto 0 auto;
}

footer h2 {
    font-size: 1.5em;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 10px;
}

footer p {
    color: var(--primary);
    font-size: 18px;
}

footer p > a {
    font-size: 1em;
}

footer a {
    text-decoration: none;
    color: var(--primary);
    font-size: 18px;
    line-height: 26px;
}

footer a:hover {
    text-decoration: underline;
}

#footer-top {
    width: calc(100% - 20px);
    display: flex;
    padding: 30px 10px;
    /*border-top: 1px solid var(--secondary-dark);*/
    margin: 0 auto;
}

#footer-top > div {
    flex: 1 0 33%;
    display: flex;
}
#footer-top > div img{
    width:100%;
    height: auto;
}

#footer-top .fa {
    font-size: 3em;
    color: var(--secondary-dark);
}

#footer-top iframe {
    width: 100%;
}

#footer-top > div > div:first-child {
    padding-right: 20px;
    flex-grow: 0;
}

#footer-top > div > div:last-child {
    flex-grow: 1;
}

.footer-button {
    display: inline-block;
    padding: 6px 20px;
    font-weight: 300;
    background-color: var(--accent);
    border-radius: 20px;
    color: #FFF;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 5px;
    transition: .1s ease-out;
}

.footer-button:hover {
    text-decoration: none;
    background-color: var(--accent-active);
    transform: translateY(-2px);
}

#footer-bottom {
    width: calc(100% - 20px);
    display: flex;
    padding: 30px 10px;
    /*border-top: 1px solid var(--secondary-dark);*/
    margin: 0 auto;
}

#footer-bottom > div {
    flex: 1 0 20%;
    text-align:center;
}

#footer-bottom > div:first-child img {
        max-width: 100%;
    height: auto;
}
#footer-bottom > div:last-child img {
    max-width: 100%;
    height: auto;
}

#footer-social {
    margin-top: 20px;
}

#footer-social ul {
    display: flex;
    justify-content:center;
}

#footer-social li:not(:last-child) {
    padding-right: 12px;
}

#footer-social .fa {
    font-size: 2em;
}

#footer-social a {
    color: var(--primary);
}

#footer-social a:hover {
    color: var(--accent-active);
}

#copyright {
    width: calc(100% - 20px);
    padding: 20px 10px;
    border-top: 1px solid var(--secondary-dark);
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    #footer-top > div:nth-child(1) {
        flex: 1 0 35%;
    }

    #footer-top > div:nth-child(2) {
        flex: 1 0 25%;
    }

    #footer-top > div:nth-child(3) {
        flex: 1 0 40%;
    }

   /* #footer-bottom > div:first-child {
        display: none;
    }*/
}

@media screen and (max-width: 900px) {
    #footer-top {
        flex-direction: column;
    }

    #footer-top > div:nth-child(2) {
        margin: 30px 0;
    }

    #footer-top > div:nth-child(1),#footer-top > div:nth-child(2),#footer-top > div:nth-child(3) {
        flex: 1 0 100%;
    }
}

@media screen and (max-width: 800px) {
    footer ul li {
        line-height: 28px;
    }

    #footer-bottom {
        /*flex-direction: column;*/
        text-align: center;
        flex-wrap: wrap;
    }

    #footer-bottom > div {
        flex: 1 0 100%;
    }

    #footer-bottom > div:nth-child(3) {
        flex: 1 0 50%;
    }
    
    #footer-bottom > div:nth-child(4) {
        flex: 1 0 50%;
    }

    #footer-bottom > div  {
        margin-bottom: 30px;
    }

    #footer-social {
        margin: 10px auto 0 auto;
        display: inline-block;
    }
}

/* END MANHATTAN FOOTER */

.LoginPageContainer {
    width: 280px;
}
.seo-text {
    margin: 25px 0;
    font-size: 18px;
    line-height: 28px;
}

#SpecialityRepeat img {
    max-width: 75%;
    height: auto;
    margin-bottom: 25px;
}
.store-locations-info {
    border: 1px dashed #c7c7c7;
    padding: 20px;
    margin-bottom: 15px;
}

.store-locations-button {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    background-color: #000;
    padding: 7px 17px;
}
.fortwayne-location-map {
   width: 3.5%;
    height: 3.5%;
    position: absolute;
    right: 10.8%;
    top: 3%;
    
}
.lafayette-location-map {
    width: 3.5%;
    height: 3.5%;
    position: absolute;
    left: 14.5%;
    top: 8%;
   
}
.fishers-location-map {
    width: 3.5%;
    height: 3.5%;
    position: absolute;
        right: 31.5%;
    top: 38.5%;
   
}
.castleton-location-map {
       width: 3.5%;
    height: 3.5%;
    position: absolute;
    left: 57.5%;
    top: 38%;
   
}
.avon-location-map {
   width: 3.5%;
    height: 3.5%;
    position: absolute;
    left: 34.2%;
    top: 64.8%;
}
.greenwood-location-map {
   width: 3.5%;
    height: 3.5%;
    position: absolute;
    left: 55%;
    top: 61.2%;
}
.bloomington-location-map {
   width: 3.5%;
    height: 3.5%;
    position: absolute;
        left: 34.5%;
    bottom: 6.8%;
}

#store-locations-map iframe {
    width: 100%;
}
#store-locations-copy {
    margin-top: 30px;
}

#store-locations-copy h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

#store-locations-copy p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px;
}

.store-locations-pic-border {
    border-bottom: 1px dashed #c7c7c7;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.store-locations-pic {
    width: 25%;
    float: left;
}

.store-locations-pic img {
    width: 100%;
    height: auto;
    display: block;
}

.store-locations-pic-copy {
    width: 75%;
    float: left;
}

.store-locations-pic-copy h2 {
    padding-left: 20px;
}

.store-locations-pic-copy p {
    padding-left: 20px;
}

@media screen and (max-width: 767px) {

    .store-locations-pic {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    .store-locations-pic img {
        width: auto;
        max-width: 100%;
        display: inline;
    }

    .store-locations-pic-copy {
        width: 100%;
        float: none;
    }

    .store-locations-pic-copy h2 {
        padding-left: 0;
    }

    .store-locations-pic-copy p {
        padding-left: 0;
    }

}

/* End Store Locations (New) */

/*stickley banner*/

.stickleybanner img {
    width: 100%;
    height: auto;
}

/* Custom */

.outlet-left {
    border-right: 1px solid #ccc;
}

.outlet-left h2 {
    font-size: 16px;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.outlet-left h3 {
    font-size: 18px;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.meet-designers {
    padding: 15px;
    color: #ffffff;
    background: #000;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
}
.meet-designers a{
   padding: 8px;
    color: #fff;
    background: #000;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 24px;
}

.our-brands {
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
}

.relax-page {
    padding: 15px 10px;
    background: #2a375d;
    color: #ffffff;
}

.relax-page h2 {
    font-weight: normal;
    margin: 0 0 5px 0;
    text-align: center;
}

.view-catalog {
    text-align: center;
    border: 2px solid #c4a546;
    padding: 10px;
    border-radius: 10px;
    font-size: 19px;
    line-height: 100%;
    font-weight: normal;
}

.view-catalog a {
    text-decoration: none;
    color: inherit;
}

.family-block {
    text-align: center;
}

.family-block li {
    list-style-type: none;
    display: inline-block;
    width: 17%;
    margin-right: 2%;
    box-sizing: border-box;
    vertical-align: middle;
}

.family-block li img {
    max-width: 100%;
    height: auto;
    display: block;
}

#SpecialityRepeat img {
    max-width: 75%;
    height: auto;
    margin-bottom: 25px;
}

.mattress-brands {
    margin: 40px 0;
}

.mattress-brands .owl-item {
    display: inline-block;
    width: 240px !important;
    margin: 10px;
}

.mattress-brands .owl-item img {
    max-width: 100%;
    height: auto;
}

.mattressbrandlogosslideshow {
    display: none !important;

}

/* End Custom */

/* Rug Gallery */

#ruggallerycontainer {
    font-family: 'Nunito Sans', sans-serif;
}

#ruggallerycontainer h2 {
    font-weight: 400;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary);
    /*text-transform: uppercase;*/
}

#ruggalleryheading {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

#ruggalleryheading h1 {
    font-size: 2em;
    font-weight: 400;
    color: var(--primary);
}

#ruggalleryheading p {
    font-size: 30px;
    text-transform: uppercase;
}

#ruggallerycopy {

    margin-top: 30px;
}

#ruggallerycopy h2 {
    margin: 0 auto;
}

#ruggallerycopy p {
    font-size: 18px;
    line-height: 28px;
}

#ruggallerycopy img {
    max-width: 100%;
    height: auto;
}

.ruggallerypic {
    text-align: center;
    margin-top: 30px;
}

/*.ruggallerypic img {
    max-width: 100%;
    height: auto;
}*/
.ruggallerypic img {
    width: 100%;
    height: auto;
    display: block;
}

#ruggallerysubcopy {

    margin-top: 40px;
    margin-bottom: 50px;
}

#ruggallerysubcopy ul {
    margin-left: 30px;
    list-style: disc;
}

#ruggallerysubcopy li {
    font-size: 18px;
    line-height: 28px;
    text-align: left !important;
}

#ruggallerysubcopy p {
    font-size: 20px;
    line-height: 33px;
}


#ruggallerysubcopy-center {

    margin-top: 40px;
    margin-bottom: 50px;
}


#ruggallerysubcopy-center p {
    font-size: 18px;
    line-height: 28px;
}
/* End Rug Gallery */

.staticpagenavcopy h3 {
    font-size: 22px !important;
}

.staticpagenavcopy a {
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    color: #2a2a2a;
    padding-bottom: 10px;
    text-decoration: none;
}

.staticpagenavcopy a:hover {
    text-decoration: underline;
}

.pageheadingcopy h3 {
    font-size: 22px;
    font-weight: normal;
    text-transform: uppercase;
    color: #2a2a2a;
    background-color: #FFF;
    padding-right: 15px !important;
    display: inline-block;
}

/******** Additional Styling for Reviews Page ********/
.text-center {
    text-align: center;
}

.reviews-list-locations h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.75em;
    text-transform: uppercase;
}

.review-logos {
    margin-bottom: 50px;
}

.review-logos a:hover {
    opacity: .65;
}

.review-logos a {
    margin: 18px 24px 24px;
}

.button-blk {
    color: #fff;
    background-color: #000;
    padding: 10px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
}

.button-blk:hover {
    color: #ababab;
}

@media screen and (max-width: 400px) {

    .button-blk {
        font-size: 11px;
    }
}

#video {
    margin: 10px 0;
    position: relative;
    padding: 6% 0 50%;
    height: 0;
}

#video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video {
    position: relative;
    padding: 6% 0 50%;
    height: 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.CustomizeOptionsAreaListContainer {
    display: none;
}

/***repair-service.inc***/
#repair-service {
    text-align: center;
    margin-bottom: 20px;
}

#repair-service h2 {
    color: #004781;
    font-size: 30px;
    line-height: 32px;
}

#repair-service p {
    font-size: 20px;
    line-height: 25px;
}

#repair-service p span {
    font-size: 12px;
}

#repair-service h3 {
    color: #808080;
    font-size: 28px;
    line-height: 32px;
    font-weight: 200;
}

#repair-service h3 span {
    color: #202020;
    padding: 0px 0px;
}

#repair-service h4 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
    border-bottom: 2px solid #004781;
    line-height: 1.8em;
    display: inline-block;
}

/*#repair-service h4::after {
    background: none repeat scroll 0 0 #004781;
    bottom: -5px;
    content: "";
    display: block;
    height: 2px;
    position: relative;
    width: 300px;
    margin-left: 27%;
}*/

#repair-service .contact-info a {
    font-size: 25px;
}

#repair-service .find-us img {
    margin: 0px;
}

#repair-service a {
    text-decoration: none;
    color: #000;
}

#repair-service a :hover {
    text-decoration: underline;
}

#repair-service img {
    margin: 20px 0px;
}

@media screen and (max-width: 1360px) {
    #repair-service h3 {
        padding: 0px 0px;
    }
}

.ProductThumbnailIconOnDisplay {
    display: none;
}

/****contactus.inc****/
#contactus li {
    list-style: none;
    margin-bottom: 10px;
}

#contactus a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

#contactus a:hover {
    text-decoration: underline;
}

/*52621 8/7/2019 JD*/
.ItemQuantity {
    display: none;
}

/*#59104 3/16/20 JD*/
#ItemSummary1_additionallinks_linkrepeater_ctl01_linkrepeater_additionallink_nolink {
    text-align: center;
    color: red;
    font-weight: bold;
}

/* Zendesk #60697 - SG */
#divShowSalesReps {
    display: none;
}

/* 64155 9/2/20 JD */
/* Promo Popup */
.mfp-container {
    width: 65%;
    height: auto;
    top: 10%;
    right: 0;
    margin: 0 auto;
}

.mfp-content {
    width: 760px;
    left: 50% !important;
    transform: translate(-50%, 0%) !important;
}
.mfp-close-btn-in .mfp-close {
    right: 0%;
}

#promo-spree {
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    background-color: #fff;
}

#promo-spree img {
    width: 100%;
    height: auto;
    display: block;
}

#promo-spree h1,
#promo-spree h2 {
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;
    margin: 5px 0px;
}

#promo-spree p {
    color: brown;
    font-size: 22px;
    margin: 5px 0px;
}

#promo-spree input {
    border: 1px solid #202020;
    color: #000;
    width: 45%;
    height: 30px;
    margin-bottom: 30px;
    text-indent: 8px;
    font-size: 16px;
    line-height: 19px;
    font-style: italic;
}

#promo-spree button {
    background-color: brown;
    color: #fff;
    padding: 8px 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .mfp-close-btn-in .mfp-close {
        right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .mfp-container {
        width: 100% !important;
        height: auto;
        top: 10px;
    }

    .mfp-content {
        margin-top: 20px;
    }

    #promo-spree h1 {
        font-size: 30px;
    }

    #promo-spree h2 {
        font-size: 17px;
    }

    #promo-spree p {
        font-size: 15px;
    }

    #promo-spree button {
        font-size: 12px;
    }

    #promo-spree input {
        width: 50%;
        height: 26px;
        font-size: 11px;
    }
}

/* Kittles Outlet LP */

#outlet-lp * {
    box-sizing: border-box;
}

#outlet-hero {
    margin-bottom: 30px;
}

#outlet-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.outlet-logo {
    text-align: center;
}

#staticpagecontent .outlet-logo.one img {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

#staticpagecontent .outlet-logo.two img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.outlet-logo-copy {
    font-size: 2em;
    font-weight: bold;
    padding-left: 20px;
    line-height: 38px;
    padding-top: 30px;
    text-align: center;
}

.outlet-copy {
    text-align: center;
    margin: 20px 0 30px;
}

.outlet-images {
    display: flex;
    margin-bottom: 30px;
}

#staticpagecontent .outlet-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outlet-images .outlet-image {
    margin-top: 20px;
}

.outlet-images.top {
    height: 349px;
}

.outlet-images .top-left {
    flex: 1 0 25%;
    padding-right: 12px;
}

.outlet-images .top-middle {
    flex: 1 0 25%;
    padding-left: 6px;
    padding-right: 6px;
}

.outlet-images .top-right {
    flex: 1 0 50%;
    padding-left: 12px;
}

.outlet-images.bottom {
    height: 300px;
}

.outlet-images .bottom-left {
    flex: 1 0 25%;
    padding-right: 12px;
}

.outlet-images .bottom-middle {
    flex: 1 0 50%;
    padding-left: 6px;
    padding-right: 6px;
}

.outlet-images .bottom-right {
    flex: 1 0 25%;
    padding-left: 12px;
}

@media screen and (max-width: 1000px) {
    .outlet-logo-copy {
        font-size: 1.5em;
        line-height: 30px;
        padding-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .outlet-logo img {
        max-width: 350px;
    }

    .outlet-logo-copy {
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
    }

    .outlet-images {
        flex-direction: column;
    }

    .outlet-images.top {
        height: auto;
        margin-top: 0;
    }

    .outlet-images .top-left {
        flex: 1 0 100%;
        padding-right: 0;
    }
    
    .outlet-images .top-middle {
        flex: 1 0 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .outlet-images .top-right {
        flex: 1 0 100%;
        padding-left: 0;
    }

    .outlet-images.bottom {
        height: auto;
    }
    
    .outlet-images .bottom-left {
        flex: 1 0 100%;
        padding-right: 0;
    }

    .outlet-images .bottom-middle {
        flex: 1 0 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .outlet-images .bottom-right {
        flex: 1 0 100%;
        padding-left: 0;
    }
}

/* End Kittles Outlet LP */

/* Outdoor Living LP */

#outdoor-lp * {
    box-sizing: border-box;
}

#outdoor-lp-hero img {
    width: 100%;
    height: auto;
    display: block;
}

#outdoor-lp-footer img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

#outdoor-lp-brands-header {
    width: 90%;
    border: 3px solid #5368a0;
    padding: 30px 30px 80px;
    text-align: center;
    margin: 30px auto 30px auto;
}

#outdoor-lp-brands-header h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 60px;
    font-weight: normal;
}

#outdoor-lp-brands ul {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 100;
    top: -75px;
}

#outdoor-lp-brands li {
    list-style: none;
    flex: 0 0 25%;
    padding: 20px;
}

#outdoor-lp-brands img {
    max-width: 100%;
    height: auto;
}

#outdoor-lp-brands-footer {
    width: 90%;
    border: 3px solid #5368a0;
    padding: 45px;
    margin: 0 auto;
    position: relative;
    top: -89px;
}

@media screen and (max-width: 1100px) {
    #outdoor-lp-brands-header h2 {
        font-size: 50px;
    }

    #outdoor-lp-brands li {
        flex: 0 0 33%;
    }
}

@media screen and (max-width: 767px) {
    #outdoor-lp-brands-header h2 {
        font-size: 30px;
    }

    #outdoor-lp-brands li {
        flex: 0 0 50%;
    }
}

/* End Outdoor Living LP */

#item-info-left {
    width: 65%;

}
#item-info-right {
    width: 35%;
  
}

@media screen and (max-width: 768px) {
   #item-info-left, #item-info-right {
      width: 100%;
      position: relative;
      padding: 0;
      margin-bottom: 15px;
   }
   #item-info-left, #item-info-right {
      width: 100%;
      position: relative;
      padding: 0;
      margin-bottom: 15px;
   }
}
#item-info-product-info .tab-content.tab-inactive {
    display: block !important;
}
#item-info-product-info .product-tabs-navigation{
    display: none !important;
}
#snap-shot {
    display: none;
}
/*#item-info-draping {
    display: none;
}*/
#pricingDisplayControl_divLimitedQuantityAvailable {
    display: none;
}
#item-info-status .item-quantity {
    display: none;
}
#item-info-pricing .add-to-cart a {
    color: #000;
}


#staticpagecontent h1 {
  line-height: 32px;

}

.pad-left-30 {
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .pad-left-30 {
    padding-left: 0px;
  }

  #ruggalleryheading h1 {
    font-size: 1.7em;
   
}

}


#categorynav li {
    list-style: none;
    font-size: 18px;
    line-height: 30px;
}

#item-info-container #basic-function-icons {
    font-size: 18px;
}
#item-info-pricing .has-sale {
    font-size: 18px;
}
#item-info-container {
    font-size: 18px;
}
#item-info-status:not(:empty) {
    font-size: 18px;
}
#item-info-right #item-info-actions p {
    font-size: 18px;
}
#item-info-product-info {
    line-height: 28px;
    font-size: 18px;
}
#reportbug_expand {
    font-size: 18px;
}
#text-disclaimers {
    font-size: 18px;
}
.ProductThumbnailParagraph {
    font-size: 18px !important;
    line-height: 28px;
}
#staticpagenav li {
    font-size: 18px;
}
#roomplannerpage p {
    font-size: 18px;
    line-height: 28px;

}
#roomplannerpage li {
    font-size: 18px;
    line-height: 28px;

}
#staticpagecontent {
    font-size: 18px;
    line-height: 28px;
}

#staticpagecontent h2{
    font-size: 24px;
    line-height: 36px;
}
#imageDisclaimerContainer p{
    font-size: 18px !important;
    line-height: 28px !important;
}
#item-info-right h2 {
    font-size: 18px;
    line-height: 28px !important;
}
.grid-container {
   max-width: 1600px !important;
   padding-left: 0px !important;
   padding-right: 0px !important;
}
#stresslesscopy p {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 18px !important;
    line-height: 28px !important;
}

#itemBrowserControl_itemRepeater_ctl00_itemPrice3Tag span {
    font-weight: bold;
    color: darkgreen;
    font-size: 18px;
    line-height: 18px;
}

#item-info-pricing .sale-price-container span {
    color: #cc0101;
}
#item-info-pricing .has-sale {
    text-decoration: line-through;
}
span.ProductThumbnailParagraphSalePriceLabel {
    color: #cc0101;
    font-weight: bold;
}
.SEOHeading {
    text-align: left;
    float: left;
    width: 100%;
}
.SEOHeading p{
    font-size: 18px !important;
    text-align: left;
    margin: 0;
    padding: 10px 0;
}
.ProductThumbnailIconOnSale:not(:empty) {
    top: 10px;
}

.ItemBrowserPageContainer h1 {
    font-weight: 800;
}

#item-info-product-info p {
    margin-bottom: 0.5em;
}
#item-info-status .availability {
    display: block;
}
#item-info-status:not(:empty) {
    color: #000;
}


.mattress-finder img {
    max-width: 100%;
    height: auto;
    display: block;
}
.mattress-finder-heading {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.mattress-finder-heading h2 a{
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 42px;
    text-align: center;
    line-height: 60px;
    letter-spacing: 4px;
    padding: 30px 0;
}

#mattress-finder h3{
    font-size: 36px;
    font-weight: 500;
    color: var(--primary);
    line-height: 40px;
    text-align: left;
    text-transform: uppercase;
    margin: 25px 0 10px 20px;
}
.mattress-finder-text {
    margin: 0px 0 40px 80px;
}

.mattress-finder-text ul{
    margin-bottom: 35px;
    list-style-type: disc;
}
.mattress-finder-text ul li{
    font-size: 22px;
    font-weight: normal;
    color: #0e3b63;
    line-height: 28px;
    text-align: left;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.mattress-finder-text p a{
    font-size: 22px;
    font-weight: normal;
    color: #0e3b63;
    line-height: 28px;
    text-align: left;
    text-decoration: underline;
}
.sleep-benefits h1 {
    text-transform: uppercase;
    font-size: 42px;
    text-align: center;
    line-height: 60px;
    letter-spacing: 4px;
    padding: 30px 0;
}

@media screen and (max-width: 800px) {
  
  .mattress-finder-text {
    margin: 20px 0 40px 20px;
 }
 .mattress-finder-text ul li{
    font-size: 16px; 
        line-height: 18px;  
 }
 .mattress-finder-text p a{
    font-size: 16px;  
 }
.mattress-finder-text ul {
    margin-bottom: 10px;
}
#mattress-finder h3 {
    font-size: 30px;
}
.sleep-benefits h1 {
    font-size: 28px;
    text-align: center;
    line-height: 40px;

}
.mattress-finder-heading h2 a {
    font-size: 28px;
    text-align: center;
    line-height: 40px;
}
}



/* Kittels Furniture Outlet */

.outletfurniture-main-container {
   padding: 0px;
  /*background: url("images/Outlet_LandingPage-bg2.png");
  background-repeat: no-repeat;
background-position: center top;*/


}
#outletfurniturecontainer{
    font-family: 'Nunito Sans', sans-serif;

}
.pad-80 {
    padding: 0 80px;
}

#outletfurnitureheading {
    text-align: center;
    margin-top: 30px;

}
#outletfurnitureheading img {
    max-width: 100%;
    height: auto;
}
.outletfurniturebtn {
    background-color: #231f20;
    padding: 50px 55px;
    border: 4px solid #c95756;
    text-align: center;
    margin-top: 20px;
}
.outletfurniturebtn span{
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    
}
.outletfurniturebtn span a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
text-decoration: none;
    
}
.outletfurniturebtn span a:hover{
    color: #fff;
    text-decoration: underline;
    
}
.outletfurnituretextlist {
    margin-top: 20px;
}
.outletfurnituretextlist ul{
    list-style-type: disc;
    margin: 0px;
    text-align: initial;
    text-align: center;
    list-style-position: inside;
}
.outletfurnituretextlist ul li{
    font-size:32px;
    font-weight: bold;
    color:#6d6e71;
    text-transform: uppercase;
    padding: 5px 0;
}
.outletfurnituretext .h3text {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    padding: 80px 10px 20px 10px;
  }

  .outletfurnituretext .h2text {
    font-size: 56px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    padding: 30px 50px;
    line-height: 66px;
    letter-spacing: -1px;
  }
.outletfurnituretext .h4text {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px;
    margin: 0;
  }
#outlet-furniture-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
#outlet-furniture-banner div {
    align-self: flex-start;
    flex: 50%;
  }
  
  #outlet-furniture-banner div img {
    width: 100%;
    object-fit: cover;
  }
  



#outletfurniturecopy {
    margin-top: 30px;
}

#outletfurniturecopy h2 {
    margin: 0 auto;
}

#outletfurniturecopy p {
    font-size: 18px;
    line-height: 28px;
}

#outletfurniturecopy img {
    max-width: 100%;
    height: auto;
}

.outletfurniturepic {
    text-align: center;
    margin-top: 20px;
}


.outletfurniturepic img {
    max-width: 100%;
    height: auto;
 
}

#outletfurnituresubcopy {

    margin-top: 40px;
    margin-bottom: 50px;
}

@media screen and (max-width: 550px) {
  

.outletfurniturebtn span {
    color: #fff;
    font-size: 20px !important;
}
.outletfurniturebtn span a{
    color: #fff;
    font-size: 20px !important;
    text-decoration: none;
    
}
.outletfurnituretextlist ul li {
    font-size: 20px !important;
}

}

@media screen and (max-width: 800px) {
  
.pad-80 {
    padding: 0 0px !important;
}
.outletfurniturebtn span {
    color: #fff;
    font-size: 24px !important;
}
.outletfurniturebtn span a{
    color: #fff;
    font-size: 24px !important;
    text-decoration: none;
    
}
.outletfurniturebtn {
    background-color: #231f20;
    padding: 20px !important;
}
.outletfurnituretextlist ul li {
    font-size: 24px !important;
}
.outletfurnituretext .h3text {
    font-size: 24px !important;
    padding: 20px !important;
}
.outletfurnituretext .h2text {
    font-size: 30px !important;
    line-height: 28px !important;
    margin: 0 !important;
    padding: 20px 40px !important;
}
}

@media screen and (max-width: 1150px) {
  
.pad-80 {
    padding: 0 0px !important;
}
.outletfurniturebtn span {
    color: #fff;
    font-size: 28px !important;
}
.outletfurniturebtn span a{
    color: #fff;
    font-size: 28px !important;
    text-decoration: none;
    
}
.outletfurniturebtn {
    background-color: #231f20;
    padding: 35px 20px !important;
}
.outletfurnituretextlist ul li {
    font-size: 24px !important;
}
.outletfurnituretext .h3text {
    font-size: 24px !important;
    padding: 50px 20px 20px 20px !important;
}
.outletfurnituretext .h2text {
    font-size: 36px !important;
    line-height: 43px !important;
    margin: 0 !important;
        padding: 20px 40px !important;
}
.outletfurniture-main-container {
   padding: 0px !important;
  background: none !important;
}

}

@media only screen and (max-width: 1500px) and (min-width: 1151px)  {
    .outletfurnituretext .h2text {
      font-size: 40px !important;
      padding: 20px 20px !important;
      line-height: 48px !important;
      letter-spacing: -1px;
  }
.outletfurnituretext .h3text {
    font-size: 28px !important;
    
}
}

/* End outlet furniture */





/* Kittels Clearance Center*/
#outletclearancecontainer{
    font-family: 'Nunito Sans', sans-serif;
}
.pad-80 {
    padding: 0 80px;
}
#outletclearanceheading {
    text-align: center;
    margin-top: 30px;
}
#outletclearanceheading img {
    max-width: 100%;
    height: auto;
}
.outletclearancetext .h1text {
    font-size: 52px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    padding: 30px 0px;
    line-height: 62px;
    letter-spacing: -1px;
    color: #97c23d;
  }
  .outletclearancetext .h2text {
    font-size: 60px;
    font-weight: bold;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    color: #00818e;
  }
  .outletclearancetext .h2text span{
    font-size: 94px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    color: #00818e;
  }
.outletclearancetext .h3text {
    font-size: 54px;
    font-weight: 500;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;

  }

  
.outletclearancetext .h4text {
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;

  }
  .outletclearancetext .h4text span{
    font-size: 48px;
    font-weight: 500;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    color: #00818e;

  }
  #outlet-clearance-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
#outlet-clearance-banner div {
    align-self: flex-start;
    flex: 50%;
  }
  
  #outlet-clearance-banner div img {
    width: 100%;
    object-fit: cover;
  }
  .outletclearancepic img {
    max-width: 100%;
    height: auto;
    
  }
  
@media only screen and (max-width: 1450px) and (min-width: 1151px)  {
    .outletclearancetext .h1text {
        font-size: 42px;
        line-height: 56px;
      }
      .outletclearancetext .h4text {
        font-size: 32px;
    
      }
      .outletclearancetext .h4text span{
        font-size: 36px;
        line-height: 48px;
    
      }
}

@media only screen and (max-width: 1150px) and (min-width: 991px)  {
    .outletclearancetext .h1text {
        font-size: 36px;
        line-height: 48px;
      }
      .outletclearancetext .h4text {
        font-size: 28px;
    
      }
      .outletclearancetext .h4text span{
        font-size: 30px;
        line-height: 48px;
    
      }
      .outletclearancetext .h3text {
        font-size: 40px;
        font-weight: 500;
        text-align: left;
        font-family: 'Nunito Sans', sans-serif;
    }
    .outletclearancetext .h2text {
        font-size: 44px;
        font-weight: bold;
        text-align: left;
        font-family: 'Nunito Sans', sans-serif;
        color: #00818e;
    }
}

@media only screen and (max-width: 990px) and (min-width: 768px)  {
    .outletclearancetext .h1text {
        font-size: 36px;
        line-height: 48px;
      }
      .outletclearancetext .h4text {
        font-size: 28px;
    
      }
      .outletclearancetext .h4text span{
        font-size: 30px;
        line-height: 48px;
    
      }
      .outletclearancetext .h2text {
        font-size: 36px;
    }
    .outletclearancetext h2text span {
        font-size: 72px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 350px)  {
    .outletclearancetext .h1text {
        font-size: 32px;
        line-height: 42px;
      }
      .outletclearancetext .h4text {
        font-size: 24px;
      }
      .outletclearancetext .h4text span{
        font-size: 28px;
        line-height: 40px;
      }
      .outletclearancetext .h2text {
        font-size: 36px;
    }
    .outletclearancetext .h2text span {
        font-size: 60px;
    }
    .outletclearancetext .h3text {
        font-size: 36px;
    }
}
@media only screen and (max-width: 767px) and (min-width: 350px)  {
    
}

/* End clearance furniture */
.footer-text {
  margin:50px 0 30px 0;
  text-align: center;
}
.footer-text a{
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  text-align: center;
  font-family: 'Nunito Sans', sans-serif;
  color: #000;
  text-decoration: none;
}
.footer-text a:hover{
  text-decoration: underline;
}

.avon-store-bg1 {
  background-color: rgba(0, 0, 0, 0.4);
   margin: 0 30px 30px 30px;
    padding: 30px 0;
    
}
.avon-store-bg1 h1{
  color:#fff; 
  text-align: center;
  line-height: 50px !important;

}

.avon-store-bg-last {
  background-color:#454445; 
  margin:30px; 
  color:#fff; 
  text-align: center;
  padding: 30px 0;
}
.avon-store-bg-last span {
  border-bottom: 2px solid #fff;
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
}
.avon-store-bg-last span a {
    text-decoration: none;
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
    color: #fff;
}
.avon-store-bg {
  background-color:#454445; 
  padding:30px; 
  color:#fff; 
  text-align: center;
}



.location-btn-bg {
  display: flex; 
  flex-wrap: wrap; 
  max-width: 800px; 
  margin: 20px auto; 
  justify-content :center;
}
.location-btn-bg p{
  font-size: 32px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}
.location-btn-bg p a{
  text-decoration: underline;
  color:#fff;

}
.location-btn-bg p a:hover{
  text-decoration: none;
  color:#fff;

}


@media (max-width: 1200px) {
  .avon-store-bg1 h1 {
    color: #fff;
    text-align: center;
    line-height: 30px !important;
    font-size: 24px;
  }
  .avon-store-bg {
    background-color: #454445;
    padding: 10px;
   }
  .location-btn-bg p {
    font-size: 24px;
    line-height: 35px;
    color: #fff;

  }
  .avon-store-bg-last {
     padding: 20px 10px;
  }
  .avon-store-bg-last span {
    border-bottom: 2px solid #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 35px;
  }
.avon-store-bg-last span a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    line-height: 35px;
    color: #fff;
}
}
@media (max-width: 768px) {
  .avon-store-bg-last {
    margin: 10px;
    padding: 20px 0;
}
.avon-store-bg1 {
    background-color: rgba(0, 0, 0, 0.4);
    margin: 0 10px;
    padding: 30px 0;
}
  .avon-store-bg1 h1 {
    line-height: 30px !important;
    font-size: 20px;
    padding: 10px;
}
  .avon-store-bg-last span {
    font-size: 20px;
    line-height: 30px;
}
.avon-store-bg-last span a {
    text-decoration: none;
    font-size: 20px;
    line-height: 30px;
color: #fff;
}

.location-btn-bg p {
    font-size: 20px;
    line-height: 30px;
  margin-bottom: 5px;
    
}
}

@media (max-width: 600px) {
  .avon-store-bg1 h1 {
    line-height: 22px !important;
    font-size: 16px;
    padding: 10px;
}

.avon-store-bg-last span {
    font-size: 16px;
    line-height: 20px;
}
.avon-store-bg-last span a {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
 color: #fff;
}

.location-btn-bg p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}
.avon-store-bg-last h2 {
    font-size: 14px !important;
    line-height: 24px !important;
}
.avon-store-bg1 {
  margin:0px;
padding: 10px;
}
.avon-store-bg-last {
  margin:0px;
}
.location-btn-bg {
    margin: 10px auto;
}
}

@media (max-width: 400px) {
  .avon-store-bg1 h1 {
    line-height: 20px !important;
    font-size: 14px;
    padding: 10px;
}

.avon-store-bg-last span {
    font-size: 14px;
    line-height: 20px;
}
.avon-store-bg-last span a {
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
 color: #fff;
}

.location-btn-bg p {
    font-size: 12px;
    line-height: 16px;
}
.avon-store-bg-last h2 {
    font-size: 14px !important;
    line-height: 20px !important;
}
.avon-store-bg1 {
  margin:0px;
padding: 2px;
}
.avon-store-bg-last {
  margin:0px;
padding: 10px;
}
.location-btn-bg {
    margin: 10px auto;
}
}

/*------------------Design Studio New------------*/
.design-studio-heading {
        border: 4px solid #5468a0; 
        padding:0 20px 20px 20px; 
        border-top:0;
    }
    .design-studio-heading-2{
        margin: 20px;
    }
    .design-studio-heading-2 h2{
        font-size: 40px !important; 
        text-transform: uppercase; 
        font-weight: 600; 
        line-height:52px !important; 
        padding: 0 40px; 
        text-align: center; 
        font-family: nunito sans,sans-serif;
        color:#58585a;
    }

    .find-designer-text-container {
        margin: 30px 0; 
        padding: 20px; 
        border:4px solid #5468a0;
        position: relative;
    }
    .find-designer-text-container h1{
        font-size: 65px; 
        text-transform: uppercase; 
        font-weight: 600; 
        line-height:48px !important;  
        padding: 0 40px; 
        text-align: center; 
        font-family: nunito sans,sans-serif;
    }
    .find-designer-text-container h1 a {
        text-decoration: none; color:#58585a;
    }
    .border-hidden {
        width:30%;height:6px;position:absolute; left:35%;top:-5px;background-color:#fff; z-index:99999
    }
    .border-hidden-btm {
       width: 30%;
        height: 6px;
        position: absolute;
        left: 35%;
        bottom: -4px;
        background-color: #fff;
        z-index: 99999;
    }
    @media screen and (max-width: 992px) {
        .find-designer-text-container h1{
            font-size: 36px; 
            text-transform: uppercase; 
            font-weight: 600; 
            line-height:32px !important;
            padding: 0 20px; 
            text-align: center; 
            font-family: nunito sans,sans-serif;
        }
        .design-studio-heading-2 h2{
            font-size: 24px !important; 
            text-transform: uppercase; 
            font-weight: 600; 
            line-height:36px !important; 
            padding: 0 20px; 
            text-align: center; 
            font-family: nunito sans,sans-serif;
        }

        .help-text h3 {
            font-size: 24px !important; 
            text-transform: uppercase; 
            font-weight: 200; 
            line-height:30px !important; 
            padding: 0 20px; 
            color:#58585a;
     
        }
        .help-text h4 {
            font-size: 20px; 
            font-weight: 600; 
            line-height:32px; 
            padding: 0 20px; 
            text-align: center; 
            font-family: nunito sans,sans-serif;
        }
        .brands-container h4{
            font-size: 28px !important;
            text-transform: uppercase;
            font-weight: 500;
            line-height: 38px !important;
            padding: 0 20px;
            text-align: center;
            font-family: nunito sans,sans-serif;
            letter-spacing: 6px;
        }
     }
     .mb-10 {
        margin-bottom:10px;
     }
     .help-text h3 {
        font-size: 38px; 
        text-transform: uppercase; 
        font-weight: 200; 
        line-height:48px; 
        padding: 0 40px; 
        text-align: center; 
        font-family: nunito sans,sans-serif;
     }
     .help-text h4 {
        font-size: 24px; 
        font-weight: 600; 
        line-height:32px; 
        padding: 0 40px; 
        text-align: center; 
        font-family: nunito sans,sans-serif;
     }
     .brand-we-serve {
        border: 4px solid #5468a0; 
        padding: 10px 30px; 
        position: relative;
    
     }

     .border-hidden-right {
        width:6px;
        height:40%;
        position:absolute; 
        right:-5px; top:30%;
        background-color:#fff; 
; 
        z-index:99999
     }
     .border-hidden-left {
        width:6px;
        height:40%;
        position:absolute; 
        left:-5px; top:30%;
        background-color:#fff; 
        z-index:99999
     }
     .brand-we-serve img{
        max-width: 100%;
        height: auto;
    
     }
     .brands-container h4{
        font-size: 38px;
        text-transform: uppercase;
        font-weight: 500;
        line-height: 48px ;
        padding: 0 40px;
        text-align: center;
        font-family: nunito sans,sans-serif;
        letter-spacing: 6px;
        margin: 10px;
     }

     .brand-logos-bottom{
        width:100%; 
        margin:10px; 
        display: flex; 
        justify-content: space-between;
        
     }
     .brand-logos-bottom a{
        padding: 5px;
     }


#brandspage p {
    
    line-height: 1.5em !important;
    color: var(--primary)!important;
    font-size: 18px !important;
}
#dcbyo p {
    line-height: 1.5em !important;
    color: var(--primary)!important;
    font-size: 18px !important;
}
.dcpage p {
    line-height: 1.5em !important;
    color: var(--primary)!important;
    font-size: 18px !important;
}
#dcroomplanner p {
    line-height: 1.5em !important;
    color: var(--primary)!important;
    font-size: 18px !important;
}
#dcfeatures p {
    line-height: 1.5em !important;
    color: var(--primary)!important;
    font-size: 18px !important;
}



/* Kittles furniture Services */


 #kittles-services-container{
     font-family: 'Nunito Sans', sans-serif;
    width: 90%;
    margin: 0 auto;
 }
 .services-contact-details {
   position: absolute;
    bottom: 31%;
    left: 34%;
    color: #8d9197;
}
 .kittlesservicespic {
    text-align: center;
    margin-top: 20px;
    position: relative;
}
.kittlesservicespic i{
   color: #5a43cb;
}


.kittlesservicespic img {
    width: 100%;
    height: auto;
 
}
.kittlesservicespic p {
   text-align: left;

}
.kittlesservicespic p a{
   color:#8d9197;
   text-decoration: none;
   font-size: 18px;
   line-height: 28px;
}
.kittlesservicespic p a:hover{
    color:#5a43cb;
    
 }
.medium-large-text {
  text-align: right;
    width: 280px;
    float: right;
    display: block;
    padding: 20px 20px;
    color: #76787a;
    text-decoration: none;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
}
 #kittlesservicescopy p {
     font-size: 18px;
     line-height: 28px;
 }
 
 #kittlesservicescopy img {
     max-width: 100%;
     height: auto;
 }
 .kittlesservicestextcontainer {
  background-color: #e6e6ee;
    padding: 50px;
    border-radius: 30% 0 30% 0;
    margin-top: 30px; 
    position: relative;
}
.kittlesservicestextcontainer img{
  
    position: absolute;
    left: 46px;
    bottom: 1%;
    max-width: 100%;
    height: auto;
}

.kittlesservicestextcontainer2 {
  background-color: #e6e6ee;
    padding: 50px;
    border-radius: 30% 0 30% 0;
    margin-top: 0px; 
    position: relative;
}
.kittlesservicestextcontainer2 img{
  
    position: absolute;
    left: 46px;
    bottom: 1%;
    max-width: 100%;
    height: auto;
}

.kittlesservicestextcontainer2 ul{
    list-style-type: disc;
    margin-top: 30px;
    text-align: initial;
    text-align: left;
    padding:0 40px;
    
}
.kittlesservicestextcontainer2 ul li{
  
    color: #76787a;
    text-decoration: none;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
}
.kittlesservicestextcontainer2 .small-text {
   text-align: left;
    width: 270px;
    float: left;
    color: #76787a;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    padding: 0 20px 0px 20px;
}
.kittlesservicestextcontainer2 .large-text {
    font-size: 38px;
    color: #53465a;
    line-height: 45px;
    text-align: right;
    padding:0 20px;
}


.kittlesservicestextcontainer3 {
  background-color: #e6e6ee;
    padding: 50px 50px 90px 50px;
    border-radius: 0 30%  0 30% ;
    margin-top: 20px; 
    position: relative;
}
.kittlesservicestextcontainer3 img{
  
    position: absolute;
    left: 46px;
    bottom: 1%;
    max-width: 100%;
    height: auto;
}

.kittlesservicestextcontainer3 ul{
    list-style-type: disc;
    margin-top: 30px;
    text-align: initial;
    text-align: left;
    padding:0 40px;
    
}
.kittlesservicestextcontainer3 ul li{
  
    color: #76787a;
    text-decoration: none;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
}
.kittlesservicestextcontainer3 .small-text {
   text-align: left;
    width: 270px;
    float: left;
    color: #76787a;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    padding: 0 20px 0px 20px;
}
.kittlesservicestextcontainer3 .large-text {
    font-size: 38px;
    color: #53465a;
    line-height: 45px;
    text-align: left;
    padding:0 20px;
}


.kittlesservicestextcontainer3 .medium-large-text {
  text-align: left;
    float: left;
    display: block;
    padding: 20px 20px;
    color: #76787a;
    text-decoration: none;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
width: 75%;
}



.kittlesservicestextcontainer4 {
  
    padding: 50px 150px 50px 50px;
    border-radius: 0 30%  0 30% ; 
    position: relative;
}
.kittlesservicestextcontainer4 img{
  
    position: absolute;
    right: -50px;
    bottom: 15%;
    max-width: 100%;
    height: auto;
}


.kittlesservicestextcontainer4 .small-text {
   text-align: right;
    width: 270px;
    float: right;
    color: #76787a;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    padding: 0 20px 0px 20px;
}
.kittlesservicestextcontainer4 .large-text {
    font-size: 38px;
    color: #53465a;
    line-height: 45px;
    text-align: right;
    padding:0 20px;
}


.kittlesservicestextcontainer4 .medium-large-text {
  text-align: right;
    float: right;
    display: block;
    padding: 20px 20px;
    color: #76787a;
    text-decoration: none;
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
width: 75%;
}

.large-text {
   font-size: 38px;
    color: #53465a;
    line-height: 45px;
}
.small-text {
   text-align: right;
    width: 270px;
    float: right;
    color: #76787a;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    padding: 0 20px 80px 20px;
}
 @media (max-width: 768px) {
 .kittlesservicestextcontainer {
    padding: 20px;
    border-radius: 50px 0 50px 0;
}
.kittlesservicestextcontainer2 {
   padding: 20px;
    border-radius: 50px 0 50px 0;
}
.kittlesservicestextcontainer3 {
   padding: 20px;
    border-radius: 50px 0 50px 0;
}
.kittlesservicestextcontainer4 {
  
    padding: 20px;
    
}
.kittlesservicestextcontainer4 img{
  
    position: static;
    left: 0px;
    bottom: 2%;
    max-width: 100%;
    height: auto;
}
.services-contact-details {
    position: absolute;
    bottom: 32% !important;
    left: 34%;
    color: #8d9197;

}
}

 @media (max-width: 1050px) {
 .kittlesservicestextcontainer {
    padding: 20px;
    border-radius: 100px 0 100px 0;
}
.kittlesservicestextcontainer2 {
   padding: 20px;
    border-radius: 100px 0 100px 0;
}
.kittlesservicestextcontainer3 {
   padding: 20px;
    border-radius: 100px 0 100px 0;
}
.kittlesservicestextcontainer4 {
   padding: 20px;
   
}
.kittlesservicestextcontainer img {
    position: relative;
    left: 0px;
    bottom: 0;

}
.kittlesservicestextcontainer4 img{
  
    position: static;
    left: 0px;
    bottom: 2%;
    max-width: 100%;
    height: auto;
}
#kittles-services-container {
    font-family: 'Nunito Sans', sans-serif;
    width: 100% !important;
    margin: 0 auto;
}
.services-contact-details {
    position: absolute;
    bottom: 27%;
    left: 34%;
    color: #8d9197;
    font-size: 15px;
}
}


@media (max-width:500px) {
   .kittlesservicespic p a {
     font-size: 14px !important;
     line-height: 20px !important;
   }
.services-contact-details {

    bottom: 27% !important;
    left: 34% !important;

}
#kittles-services-container {
    font-family: 'Nunito Sans', sans-serif;
    width: 100%;
    margin: 0 auto;
}
.kittlesservicestextcontainer2 {
    padding: 20px !important;
    border-radius: 50px 0 50px 0 !important;
}
.kittlesservicestextcontainer4 .large-text {
    font-size: 26px !important;
    color: #53465a;
    line-height: 32px !important;
    text-align: right !important;
    padding: 0px !important;
}
.kittlesservicestextcontainer4 .medium-large-text {
 
    padding: 10px 0px !important;
    font-size: 20px !important;
    line-height: 34px !important;
    font-weight: 600;
    width: 100%;
}
.kittlesservicestextcontainer {
    padding: 20px !important;
    border-radius: 50px 0 50px 0 !important;
}
.large-text {
    font-size: 26px !important;
    color: #53465a;
    line-height: 32px !important;
}
.kittlesservicestextcontainer3 {
    padding: 20px !important;
    border-radius: 50px 0 50px 0 !important;
}
.kittlesservicestextcontainer3 .large-text {
    font-size: 26px !important;
    line-height: 32px !important;
}
.kittlesservicestextcontainer3 ul {
    list-style-type: disc;
    margin-top: 30px !important;
    padding: 0 20px !important;
}
.kittlesservicestextcontainer3 ul li {
    font-size: 18px !important;
    line-height: 30px !important;
    font-weight: 500 !important;
}
.kittlesservicespic i {
    color: #5a43cb;
    font-size: 13px !important;
}
.kittlesservicestextcontainer2 ul {
    padding: 0 20px !important;
}
.kittlesservicestextcontainer2 ul li {
   
    font-size: 18px !important;
    line-height: 28px !important;
}
.kittlesservicestextcontainer3 .medium-large-text {
    
    width: 100%;
}
.medium-large-text {
  
    width: 100%;
    font-size: 18px;
    line-height: 29px;
    font-weight: 600;
}
}

@media (max-width:400px) {
  .services-contact-details {
    bottom: 25% !important;
    left: 34% !important;
    font-size: 11px !important;
}
}
@media (max-width:330px) {
  .services-contact-details {
    bottom: 17% !important;
    font-size: 11px !important;
}
.mob-pad-0 {
 padding:0 !important;
}
}
 /* End Kittles furniture Services*/

 /* 2/11/2025 DR*/
 .AttributeFilterDiv h3, .AttributeFilterHeadingDimensionFilter {
    font-size: 18px !important;
}
.AttributeFilter a {
    font-size: 18px;
}
.BreadCrumbTrailUL:before {
    font-size: 18px;
}
div.ul-drop-convert p {
    
    font-size: 18px !important;
}
#search-box input {
    font-size: 18px !important;
}
.ItemBrowserPageContainer a, .ItemInformationContainer a, .BreadCrumbTrail a {
    font-size: 18px;
}
.TotalItemCount p {
    font-size: 18px !important;
}