/******** Find and Replace **********

Main Color ------ #ccc
Hover ----------- #ccc
Hover light ----- #ccc
Hover nav ------- rgba(204, 204, 204, .75)
Hover banners --- rgba(204, 204, 204, .5)
Owl Dots -------- rgba(204, 204, 204, .5)
Scroll to Top --- rgba(204, 204, 204, .75)
ItemInfo #055293;

*************************************/


/***********************************************************************************
 * HEADER, HOMEPAGE, FOOTER STYLES
 **********************************************************************************/


/*** GLOBAL **********************************************************/

.hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.fixed {
    position: fixed !important;
    top: 0 !important;
/*    background-color: rgba(254, 254, 254, .95) !important;*/
    background-color: rgba(255, 255, 255, .95) !important;

}

#divworkspacearea {
    max-width: 1420px;
    margin: 0 auto;
    background-color: #fff;
    padding: 0 10px 20px 10px;
}

.grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding-left: 10px;
    padding-right: 10px;
}

.HomePageForm #divworkspacearea {
    max-width: 100%;
    padding: 0;
    /*background-color: #efefef;*/
    background-color: #fff;
}

.ItemBrowserPageContainer,
.ItemInformationContainer {
    padding: 0 10px;
}

.LoginPageContainer {
    margin: 5vh auto;
}

header,
nav,
footer {
    -webkit-transition: all .3s ease .15s;
    -moz-transition: all .3s ease .15s;
    -o-transition: all .3s ease .15s;
    -ms-transition: all .3s ease .15s;
    transition: all .3s ease .15s;
}

*:focus {
    outline: none;
}

img {
    border: 0;
}

h1,
h2,
p,
ul {
    margin: 0;
    padding: 0;
}

body,
input {
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    color: #222;
}

/*** END GLOBAL *******************************************************/

/*** HEADER ***********************************************************/

header a {
    text-decoration: none;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -o-transition: color .3s ease;
    -ms-transition: color .3s ease;
    transition: color .3s ease;
}

#top-header,
#sticky-header {
    /* position: absolute; */ /* disable to keep homepage slideshow from being covered by header */
    width: 100%;
    /*background-color: rgba(254, 254, 254, .8);*/
    background-color: rgba(255, 255, 255, .8) !important;
    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    -ms-transition: background-color .3s ease;
    transition: background-color .3s ease;
}

.header-container {
    position: relative;
    z-index: 200;
}

.header-left,
.header-right {
    padding: 15px 10px;
}

.header-left li,
.header-right li,
nav>ul>li {
    list-style: none;
    display: inline-block;
}

.header-left a,
.header-right li a {
    padding: 15px 2px;
    color: #000;
}

.header-left a:hover,
.header-right li a:hover {
    text-decoration: underline;
    color: #ccc;
}

#logo {
    text-align: center;
    padding: 15px 0;
}

#logo a {
    display: block;
}

#logo img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

#logo a:hover img {
    opacity: .5;
}

.header-right {
    text-align: right;
}

.header-right>ul>li {
    position: relative;
    padding: 0 4px;
}

.header-right a {
    padding: 0 12px;
    white-space: nowrap;
}

.header-right li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 32px;
    right: 0;
    text-align: right;
    padding: 5px 0;
    background-color: #fff;
    z-index: 1;
    -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;
}

.header-right 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;
}

.header-right li ul li {
    display: block;
}

.header-right li ul a {
    display: block;
    padding: 0 15px;
    font-size: .9em;
    line-height: 1.75em;
}

#sticky-header {
    display: none;
    text-align: center;
}

nav ul li,
nav li ul,
#sticky-header.fixed nav li ul {
    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    -ms-transition: background-color .3s ease;
    transition: background-color .3s ease;
}

nav ul li a {
    font-size: .9em;
}

nav>ul>li,
nav>ul>li>ul>li {
    position: relative;
}

nav>ul>li:hover,
nav>ul>li>ul>li:hover {
    background-color: rgba(204, 204, 204, .75);
}

nav>ul>li>a {
    display: block;
    padding: 16px 2.5vw;
    color: #000;
    /*font-weight: 300;*/
    text-transform: uppercase;
}

nav li ul,
#sticky-header.fixed nav li ul {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    list-style: none;
    text-align: left;
    -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;
}

nav li ul {
    background-color: rgba(254, 254, 254, .75);
}

#sticky-header.fixed nav li ul {
    background-color: rgba(254, 254, 254, .95);
}

nav li:hover>ul,
#sticky-header.fixed nav 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;
}

nav>ul>li>ul {
    width: 220px;
}

nav>ul>li>ul>li:last-child {
    padding-bottom: 5px;
}

nav li ul a {
    display: block;
}

nav>ul>li>ul>li>a {
    padding: 15px 20px;
    color: #000;
}

nav li li i {
    position: absolute;
    right: 20px;
    font-size: 1.35em !important;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

nav li li:hover i {
    opacity: 1;
}

nav li li ul {
    top: 0;
    left: 220px;
    width: 200px;
}

nav li#clearance-menu li ul {
    left: -200px;
}

nav li li li {
    background-color: rgba(204, 204, 204, .75);
}

nav li li li:first-child {
    padding-top: 10px;
}

nav li li li:last-child {
    padding-bottom: 10px;
}

nav li li li a {
    padding: 3px 10px;
    color: #333;
}

nav li li li a:hover {
    text-decoration: underline;
    color: #333;
}

.slideout-menu {
    display: none;
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    padding-bottom: 100%;
    background-color: #2e2e2e;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: box-shadow .5s ease;
    -moz-transition: box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    -ms-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
}

.slideout-menu.open {
    box-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

.slideout-menu div,
.slideout-menu ul li a,
.slideout-menu .spacer {
    border-bottom: 1px solid #363636;
}

.slideout-menu p {
    display: inline-block;
    position: relative;
    padding: 12px;
    color: #fff;
    font-size: 1.2em;
}

.slideout-menu p a {
    padding: 6px;
    color: #fff;
}

.slideout-menu p a:hover {
    color: #ccc;
}

.slideout-menu .slideout-menu-toggle {
    position: absolute;
    top: 12px;
    right: 10px;
    display: inline-block;
    padding: 3px 9px 6px;
    border-radius: 3px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
    background-color: #222;
    color: #fff;
    cursor: pointer;
}

.slideout-menu .slideout-menu-toggle:hover {
    color: #ccc;
    background-color: #171717;
}

.slideout-menu ul {
    list-style: none;
    font-weight: 300;
}

.slideout-menu>ul {
    position: relative;
}

.slideout-menu ul li a {
    position: relative;
    font-weight: 400;
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
}

.slideout-menu ul ul li a {
    padding-left: 30px;
}

.slideout-menu ul li a:hover {
    background-color: #1C1C1C;
    color: #bbb;
}

.slideout-menu ul li a i,
.slideout-menu ul li a .menu-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: .5;
    line-height: 1.4;
}

.slideout-menu ul li a .menu-indicator {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.25;
}

.slideout-menu .slide-in ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #2e2e2e;
    border-left: 1px solid #363636;
    z-index: 1;
}

#search-bar {
    position: absolute;
    right: 0;
    width: 30%;
    background-color: rgba(254, 254, 254, .8);
    padding: 10px 0 10px 10px;
    display: none;
    z-index: 1;
}

#search-left {
    width: 70%;
    float: left;
}

#search-left input {
    width: 97%;
    height: 28px;
    line-height: 28px;
    background-color: #ebebeb;
    font-size: 16px;
    color: #222;
    padding: 5px;
    border: 2px solid #ccc;
}

#search-left input::-webkit-input-placeholder,
#search-left input::-moz-placeholder,
#search-left input:-ms-input-placeholder,
#search-left input:-moz-placeholder {
    color: #606060;
}

#search-right {
    width: 20%;
    float: left;
}

#search-right input {
    width: 100%;
    height: 42px;
    line-height: 42px;
    background-color: #ccc;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

#search-right input:hover {
    background-color: #ccc;
    border: 1px solid #ccc;
}

#search-close a {
    padding: 5px;
    font-size: 1.65em;
    line-height: 1.5;
    color: #fff;
}

#search-close a:hover {
    color: #ccc;
}

/*** END HEADER *******************************************************/

/*** HOMEPAGE *********************************************************/

#home-slides {
    position: relative;
}

#scroll-down {
    display: none; /* disabled for header =/= absolute above */
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
}

#scroll-down a {
    display: inline-block;
    padding: 25px;
    font-size: 6vw;
    color: #fff;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -o-transition: color .3s ease;
    -ms-transition: color .3s ease;
    transition: color .3s ease;
    ;
}

#scroll-down a:hover {
    color: #ccc;
}

.HomePageForm .owl-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -26px;
}

.HomePageForm .owl-dots {
    position: absolute;
    right: 15px;
    bottom: 10px;
}

#home-slides .owl-theme .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, .35);
}

#home-slides .owl-theme .owl-dots .owl-dot.active span,
#home-slides .owl-theme .owl-dots .owl-dot:hover span {
    background-color: rgba(204, 204, 204, .5);
}

.home-title {
    text-align: center;
    margin: 85px 0 30px;
    border-bottom: solid 2px #222;
}

.home-title h1 {
    display: inline-block;
    font-family: 'Song Myung', Times, serif;
    font-size: 2.75em;
    font-weight: normal;
    text-transform: uppercase;
    color: #222;
    /*background-color: #EFEFEF;*/
    background-color: #ffffff;
    margin: auto;
    padding: 0 10px;
    transform: translateY(50%);
}

.banner-content {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.banner-content a {
    text-decoration: none;
}

.banner-content>p {
    padding: 30px 0 8px;
    font-size: 1.5em;
    font-family: 'Song Myung', Times, serif;
    text-transform: lowercase;
    color: #2a2a2a;
}

.banner-heading {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    text-align: center;
    /*background-color: rgba(254, 254, 254, .75);*/
    background-color: rgba(255, 255, 255, .75);
}

.banner-heading>h2 {
    padding: 10px;
    font-size: 1.35em;
    font-weight: normal;
    text-transform: uppercase;
    color: #000;
}

.banner-img {
    position: relative;
}

.banner-img img {
    width: 100%;
    height: auto;
}

.banner-img::after {
    display: block;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
    opacity: 1;
    bottom: 4px;
    top: 0;
    width: 100%;
    content: '';
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.banner-img-hov {
    position: relative;
}

.banner-img-hov::after {
    display: block;
    position: absolute;
    background-color: rgba(204, 204, 204, .5);
    opacity: 0;
    bottom: 4px;
    top: 0;
    width: 100%;
    content: '';
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.banner-content a:hover .banner-img::after {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
    opacity: 0;
}

.banner-content a:hover .banner-img-hov::after {
    background-color: rgba(204, 204, 204, .5);
    opacity: 1;
}

.banner-btn {
    opacity: 0;
    display: block;
    position: absolute;
    bottom: 15%;
    width: 100%;
    cursor: pointer;
    -moz-transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

.banner-btn span {
    font-weight: 600;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 40px;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transition: background-color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.banner-btn span i {
    font-size: 1.5em;
    transform: translateY(8%);
}

.banner-content a:hover .banner-btn {
    opacity: 1;
}

.banner-btn span:hover {
    background-color: rgba(0, 0, 0, .8);
}

#about-us {
    margin-top: 30px;
}

.video {
    position: relative;
    padding: 6% 0 50% 0;
    height: 0;
    margin-bottom: 32px;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.home-copy {
    margin-top: 10px;
}

#newsletterbox {
    text-align: center;
    padding: 65px 10px 50px;
}

.email-title p {
    font-size: 1.15em;
    margin-bottom: 15px;
}

.email-title span {
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.email-field input {
    width: 320px;
    height: 40px;
    padding: 0 5px;
    border: 2px solid #222;
    border-right: none;
    font-size: 1.15em;
}

.email-field .submit-button {
    width: 180px;
    height: 44px;
    margin-left: -5px;
    border: 0;
    background-color: #222;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    -moz-transition: background-color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

.email-field .submit-button:hover {
    background-color: #005f6e;
}

/*** END HOMEPAGE ****************************************************/

/*** FOOTER **********************************************************/

footer {
    background-color: #111;
}

footer ul {
    list-style: none;
}

footer a {
    text-decoration: none;
    -moz-transition: color .2s ease-in-out;
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

footer a:hover {
    text-decoration: underline;
}

.footer-social {
    padding: 20px 0;
    text-align: center;
    /*background-color: #efefef;*/
    background-color: #ffffff;;
}

.footer-social li {
    display: inline-block;
    padding: 0 5px;
}

.footer-social li a {
    font-size: 2.5em;
    color: #ccc;
}

.footer-social li a:hover {
    color: #ccc;
}

.footer-column {
    padding: 20px 0 10px 10px;
}

.footer-column p:first-child>span {
    font-size: 1.1em;
    line-height: 2.5;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-column li a {
    display: inline-block;
}

.footer-column li a,
.footer-column p {
    padding: 3px 0;
    font-size: .85em;
    color: #aaa;
}

.footer-column li a:hover {
    color: #fff;
}

.footer-column p a {
    color: #ccc;
}

.footer-column p a:hover {
    color: #ccc;
}

.footer-copyright {
    margin: 20px;
    text-align: center;
}

.footer-copyright p {
    font-size: .85em;
    line-height: 20px;
}

.footer-copyright p,
.footer-copyright a {
    color: #fff;
}

#scrolldiv {
    display: block;
}

#scrolldiv a {
    font-size: 14px;
    font-weight: normal;
}

.scrolltotop {
    width: 30px;
    height: 30px;
    padding: 10px;
    text-align: center;
    color: rgba(187, 187, 187, .7);
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 500;
    display: none;
}

.scrolltotop:hover {
    color: rgba(204, 204, 204, .75);
    text-decoration: none;
}

.grecaptcha-badge {
    z-index: 1;
}

/*** END FOOTER ******************************************************/

/*** CLEAR FIX ***/

@media screen and (min-width: 1025px) {

    .desktop-clear {
        clear: both;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .tablet-clear {
        clear: both;
    }
}

@media screen and (max-width: 767px) {

    .mobile-clear {
        clear: both;
    }
}

/*** END CLEAR FIX ***/

@media print {

    .no-print,
    .no-print * {
        display: none !important;
    }
}

@media screen and (min-width: 1921px) {

    nav>ul>li>a {
        padding: 16px 48px;
    }

    #scroll-down a {
        font-size: 120px;
    }
}

@media screen and (max-width: 1024px) {

    .header-left a,
    .header-right a {
        font-size: .85em;
    }

    #search-bar {
        width: 40%;
    }

    nav>ul>li>a {
        padding: 12px 2.5vw;
    }

    nav>ul>li:last-child>ul {
        left: unset;
        right: 0;
    }

    nav>ul>li:last-child>ul>li {
        text-align: right;
    }

    #scroll-down {
        display: none;
    }

    .home-title {
        margin-top: 55px;
    }

    .banner-btn {
        opacity: 1;
    }

    .banner-btn span {
        /*background-color: rgba(254, 254, 254, .65);*/
        background-color: rgba(255, 255, 255, .65);
    }

    #scrolldiv {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    #divworkspacearea {
        padding-top: 25px;
    }

    #top-header {
        position: static;
        background-color: #fff;
    }

    .header-left {
        padding: 15px 0;
    }

    .header-left a {
        padding: 15px 12px;
    }

    .header-left a,
    .header-right a {
        font-size: 1.125em;
    }

    #search-bar {
        left: 0;
        width: unset;
    }

    .home-title {
        margin: 35px 0 10px;
    }

    .home-title h1 {
        font-size: 2em;
    }

    .banner-content>p {
        padding-top: 25px;
    }

    .banner-btn {
        display: inline;
        position: static;
    }

    .banner-btn span {
        display: inline-block;
        margin: 15px 0 5px;
        padding: 6px 30px 10px;
        background-color: #247B87;
    }

    .email-field input {
        width: 60%;
        font-size: 1em;
    }

    .email-field .submit-button {
        width: 30%;
    }

    footer {
        text-align: center;
    }
}

@media screen and (max-width: 400px) {

    .header-left a,
    .header-right a {
        font-size: 1em;
    }

    body {
        font-size: .8em;
    }

    .home-title {
        margin: 30px 0 10px;
    }

    .home-title h1 {
        font-size: 1.75em;
    }

    .banner-content>p {
        padding-top: 20px;
    }

    #newsletterbox {
        padding: 45px 10px 25px;
    }
}

/*Epiphany 4 BravoV2 item information color changes*/
#item-info-container #item-info-pagination a {
    color: #000;
}

#consist-of-container .product-group-item .product-group-info p {
    color: #000;
}

#item-info-container #basic-function-icons li a .fa {
    color: #333;
}

#item-info-pricing .price {
    color: #055293;
}

#item-info-pricing .add-to-cart a {
    background-color: #055293;
    border: 1px solid #055293;
}

#item-info-pricing .add-to-cart a:hover {
    background-color: #fff;
    color: #055293;
    border: 1px solid #055293;
}

#email-friend a {
    color: #fff;
}

#request-information,
#email-friend {
    background-color: #055293;
}

#request-information:hover a,
#email-friend:hover a {
    color: #055293;
}

#request-information a:hover,
#email-friend a:hover {
    color: #055293;
    text-decoration: none;
}

.RequestInfoPageButtonSend {
    border: 1px solid #055293;
    background: #055293;
}

.RequestInfoPageButtonSend:hover {
    border: 1px solid #055293;
}

.filter-show-button {
    background: #055293;
}

.filter-show-button:hover {
    color: #055293;
    background: #fff;
}

#item-info-product-info .product-tab-heading.tab-active {
    border-bottom: 3px solid #055293;
}

#item-info-product-info .product-tab-heading.tab-active {
    border-bottom: 3px solid #055293;
}

#item-info-draping .customize-choice-tabs::-webkit-scrollbar-track {
    background: #055293;
}

#item-info-product-info .product-tab-heading {
    color: #055293;
}

#item-info-short-description .view-collection {
    color: #055293;
}

#item-info-draping .draping-pagination a {
    color: #055293;
}

#item-info-draping .customize-choice-tabs li.selected a span {
    background: #055293;
}

#snap-shot a {
    color: #055293;
}

#item-info-rotators .heading:after {
    background: #055293;
}

#item-info-draping .customize-choice-tabs li.selected a span {
    background: #055293;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #055293 !important;
}

.noUi-handle {
    background-color: #055293;
}

/* Home Page Video */
#home-video-container {
    position: relative;
    text-align: center;
}

.youtube {
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.youtube i {
    color: red;
}

/* Home Page Mattress Brand */
.mattress-brand-container {
    width: 90%;
    margin: 70px auto 0 auto;
    /* border: 1px solid #d2d2d2; */
    background-color: #fff;
    padding: 20px 20px 5px;
}
#mattress-brands li {
    list-style: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    padding: 0 5px;
}

#mattress-brands span {
    display: none;
}

.mattress-brand-container .owl-nav.disabled {
	display: block;
}

.mattress-brand-container .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:0;
}

.mattress-brand-container .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right:0;
}

.mattress-brand-container ul {
	padding:0;
	margin:0;
	list-style-type: none;
	text-align: center;
}

.mattress-brand-container ul li img {
	width: 120px;
	height: 90px;
	margin:0 auto;
    display: inline-block;
}

.mattress-brand-container ul li a {
	color: #000;
	text-decoration: none;
}

.mattress-brand-container ul li a:hover {
	text-decoration: underline;
}

/*.mattress-brand-container .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}*/

.mattress-brand-container .owl-theme .owl-nav .owl-prev {
	position: absolute;
	left:0;
    top: 50%;
    transform: translateY(-50%);
    background:transparent;
    color:#333;
    background: #fff;
    margin: 0;
    width:50px;
}

.mattress-brand-container .owl-theme .owl-nav .owl-next {
	position: absolute;
	right:0;
    top: 50%;
    transform: translateY(-50%);
    background:transparent;
    color:#333;
    background: #fff;
    margin: 0;
    width:50px;
}

.mattress-brand-container .owl-theme .owl-nav .owl-prev:hover {
	color:#0d2657;
	opacity: 1;
}

.mattress-brand-container .owl-theme .owl-nav .owl-next:hover {
	color:#0d2657;
	opacity: 1;
}

/* Trending Wall */
#trending-wall p {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

#trending-wall ul li {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 33%;
    background: #fff;
    border: 1px solid #ccc;
    padding-bottom: 50px;
}

#trending-wall ul li a {
    color: #868686;
    text-decoration: none;
    position: relative;
    display: block;
    padding: 10px;
}

#trending-wall .product-info {
    display: block;
    position: absolute;
    font-size: smaller;
    left: 0;
    right: 0;
    padding: 5px;
    text-align: center;
}

#trending-wall ul li a img {
    width: 100%;
    object-fit: contain;
    height: 200px;
}

#trending-wall ul li .icon {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

#trending-wall ul li .icon .red span {
    font-size: 10px;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #055293;
    background: linear-gradient(#055293 0%, #055293 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    left: -21px;
}

#trending-wall ul li .icon .red span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #055293;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #055293;
}

#trending-wall ul li .icon .red span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #055293;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #055293;
}

#trending-wall ul li span {
    display: block;
    margin: 0 0 5px 0;
}

@media screen and (max-width:1024px) {
    #trending-wall ul li {
        width: 50%;
    }
}

@media screen and (max-width:560px) {
    #trending-wall ul li {
        width: 100%;
    }
}

/* Desinger Pages */
.designer-container {
    margin: 0 auto;
    background: #f5f5f5;
    padding: 50px 0 50px 0;
}

.designer-search {
    margin: 0 auto;
}

.designer-search-bottom {
    background: rgba(0, 0, 0, 0.75);
    line-height: 26px;
    padding: 20px;
}

.designer-search-top {
    background-color: #000;
    line-height: 26px;
    margin: 0 0 2px 0;
}

.designer-search-top h1 {
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: bold !important;
    color: #FFF !important;
    padding-left: 10px !important;
}

.designer-search-content {
    margin: 0 auto;
}

.designer-search-content p {
    font-family: Arial, sans-serif;
    font-size: 14px !important;
    line-height: 18px;
    color: #FFF;
}

/* List Results Page */

.designer-list-block {
    margin: 0 0 25px 0;
    padding: 0 0 25px 0;
    border-bottom: 1px solid #cccccc;
}

.designer-list-block:last-of-type {
    border-bottom: none;
}

.designer-list-heading {
    margin: 25px 0 25px 0;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #f2f2f2;
    font-size: 25px;
    color: #2a2a2a;
    font-weight: normal;
    padding-left: 15px;
}

.designer-list-image {
    width: 15%;
    text-align: left;
    float: left;

}

.designer-list-image img {
    width: 100%;
    height: auto;
    display: block;
}

.designer-list-description {
    float: left;
    width: 83%;
    padding: 0 0 0 1.5%;
}

.designer-list-description h2 {
    margin: 0 0 10px;
}

.designer-list-description h2 a {
    font-family: Times, sans-serif;
    font-size: 22px;
    color: #242424;
    font-weight: normal;
    text-decoration: none;
}

.designer-list-description a {
    text-decoration: none;
}

.designer-list-description a:hover {
    text-decoration: underline;
}

.designer-list-info {
    margin: 25px 0 10px 0;
}

.designer-list-info p {
    margin: 0 0 15px 0;
}

.designer-list-info p a {
    color: #000000;
}

.designer-list-info a img {
    display: none !important;
}

.designer-list-description:after {
    clear: both;
}

.designer-location::after {
    content: " | ";
}

.designer-phone::after {
    content: " | ";
}

#email a {
    color: #000000;
    text-decoration: underline;
}

#email a:hover {
    text-decoration: none;
}

.designer-email a {
    text-decoration: underline;
}

.designer-email a:hover {
    text-decoration: none;
}

/* End List Results Page */

/* Indivdual Designer Page */

.designer-right .designer-information {
    padding: 15px;
    border: 1px solid #e4e4e4;
    margin-top: 15px;
}

.designers-container {
    max-width: 1264px;
    padding: 10px;
    margin: 0 auto;
}

.designers-container img {
    width: 100%;
    height: auto;
}

.designer-heading {
    margin: 25px 0 25px 0;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #f2f2f2;
    font-size: 25px;
    color: #2a2a2a;
    font-weight: normal;
    padding-left: 15px;
}

.designer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.designer-contact-information h3 {
    margin: 10px 0 0 0;
}

.designer-contact-information ul li {
    display: inline-block;
    list-style-type: none;
    margin: 5px 3px 25px 0;
}

.designer-contact-information i {
    color: #000;
    font-size: 2em;
}

.designer-contact-information i:hover {
    color: #284D72;
}

.consultation-form-container input {
    border: white;
    border-radius: 5px;
    width: 100%;
    color: #000;
    height: 40px;
    margin-bottom: 30px;
    text-indent: 8px;
    font-size: 16px;
    line-height: 19px;
    font-family: "Helvetica-Light", Arial, sans-serif !important;
    font-style: italic;
}

.consultation-form-container input:focus::-webkit-input-placeholder {
    color: transparent;
}

.consultation-form-container input:focus:-moz-placeholder {
    color: transparent;
}

/* FF 4-18 */
.consultation-form-container input:focus::-moz-placeholder {
    color: transparent;
}

/* FF 19+ */
.consultation-form-container input:focus:-ms-input-placeholder {
    color: transparent;
}

/* IE 10+ */

.consultation-form-container {
    background: #E4E0D7;
    padding: 25px;
    box-sizing: border-box;
}

.consultation-form-container h3 {
    margin: 0;
}

.schedule-form-container p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* End Indivdual Designer Page */

/* designers.inc */
#designers-page ul {
    text-align: center;
}

#designers-page ul li {
    list-style: none;
    display: inline-block;
    padding: 10px;
}

#designers-page ul li a {
    text-decoration: none;
}

#designers-page ul li a:hover {
    text-decoration: underline;
}

#designers-page .designers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

#designers-page .designers div {
    align-self: center;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    width: 20%;
}

#designers-page .designers div a {
    text-decoration: none;
}

#designers-page .designers div a:hover {
    text-decoration: underline;

}

#designers-page .designers div p {
    position: relative;
    z-index: 1;
    left: 0;
    right: 0;
    top: -45px;
    text-align: center;
    background-color: rgba(254, 254, 254, .75);
    padding: 10px;
    font-size: 1em;
    font-weight: normal;
    text-transform: uppercase;
    color: #000;
}

#designers-page .button {
    margin: 25px auto !important;
}

@media screen and (max-width: 768px) {
    #designers-page .designers div {
        width: 50%;
    }
}

/* Finance Landing Page */

#finance-page * {
    box-sizing: border-box;
}

#finance-page .hero {
    width: 100%;
    margin-bottom: 30px;
}

#finance-page .hero img {
    width: 100%;
    height: auto;
    display: block;
}

#finance-page .ribbon-banner {
    width: 100%;
    margin-bottom: 80px;
}

#finance-page .ribbon-banner img {
    width: 100%;
    height: auto;
    display: block;
}

#finance-page .finance-banner {
    width: 100%;
    margin-bottom: 80px;
}

#finance-page .finance-banner img {
    width: 100%;
    height: auto;
    display: block;
}

#finance-page .finance-benefits-container {
    position: relative;
}

#finance-page .financing-benefits {
    display: flex;
}

#finance-page .financing-benefits h2 {
    font-size: 2em;
    line-height: 1.3em;
    font-weight: 200;
    margin: 0;
    max-width: 300px;
}

#finance-page .financing-benefits h2 .blue-bold {
    color: #006282;
    font-weight: 700;
}

#finance-page .financing-benefits > div {
    flex: 1 0 33%;
    padding: 0 10px;
}

#finance-page .financing-benefits-card {
    width: 100%;
}

#finance-page .financing-benefits-card img {
    width: 100%;
    height: auto;
    display: block;
}

#finance-page .finance-terms {
    margin-top: 40px;
    font-size: 12px;
}

#finance-page .manage-account {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #006282;
    color: #FFF;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

#finance-page .manage-account > div {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#finance-page .manage-account h2 {
    font-size: 1.5em;
    line-height: 1em;
    font-weight: 200;
    margin-bottom: 10px;
    color: #FFF;
}

#finance-page .manage-account h2 .yellow-bold {
    color: #fac40b;
    font-weight: 700;
}

#finance-page .manage-account p {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.6em;
}

#finance-page .manage-account a {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    border: 1px solid #FFF;
    padding: 20px 40px;
    font-size: 1.5em;
    line-height: 1.3em;
    font-weight: 700;
    text-align: center;
}

#finance-page .manage-account a:hover {
    text-decoration: none;
}

#finance-page .finance-info {
    width: 100%;
    background-color: #deedef;
    border-radius: 5px;
    padding: 40px;
    margin-bottom: 10px;
}

#finance-page .finance-info h2 {
    font-size: 1.5em;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #006282;
}

#finance-page .finance-info p {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.6em;
}

#finance-page .finance-info p .small {
    font-size: 12px;
}

#finance-page .finance-info li {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.6em;
}

#finance-page .finance-info .finance-info-columns {
    display: flex;
}

#finance-page .finance-info .finance-info-columns > ul {
    padding-left: 50px;
    margin: 0;
}

#finance-page .finance-info .finance-info-columns-full {
    display: flex;
}

#finance-page .finance-info .finance-info-columns-full > div {
    flex: 1 0 46%;
}

#finance-page .finance-info .finance-info-columns-full > div:last-of-type {
    padding-left: 4%;
}

@media screen and (max-width: 768px) {
    #finance-page .hero {
        width: 100%;
        margin-bottom: 15px;
    }

    #finance-page .ribbon-banner {
        margin-bottom: 40px;
    }
    
    #finance-page .finance-banner {
        margin-bottom: 40px;
    }

    #finance-page .financing-benefits {
        flex-direction: column;
    }
    
    #finance-page .financing-benefits > div {
        flex: 1 0 100%;
        padding: 0;
    }

    #finance-page .financing-benefits > div:last-of-type ul {
        margin-top: 0;
    }

    #finance-page .manage-account {
        flex-direction: column;
        padding: 20px 20px;
    }
    
    #finance-page .manage-account > div {
        padding: 0;
    }

    #finance-page .manage-account a {
        margin-top: 30px;
    }

    #finance-page .finance-info .finance-info-columns {
        flex-direction: column;
    }
    
    #finance-page .finance-info .finance-info-columns > ul {
        padding-left: 20px;
    }

    #finance-page .finance-info .finance-info-columns-full {
        flex-direction: column;
    }
    
    #finance-page .finance-info .finance-info-columns-full > div {
        flex: 1 0 100%;
    }
    
    #finance-page .finance-info .finance-info-columns-full > div:last-of-type {
        padding-left: 0;
    }
}

/* End Finance Landing Page */

#community-support h2 {
    margin: 20px 0!important;
}

#community-support .community {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

#community-support .community div {
    align-self: center;
    width: 50%;
    box-sizing: border-box;
    padding: 10px;
    margin: 30px 0;
    text-align: center;
}

/* community-support.inc  */
#community-support .community .text-1,
#community-support .community .text-2,
#community-support .community .text-3,
#community-support .community .text-4 {
    text-align: left;
}

@media screen and (max-width: 768px) {
    #community-support .community div {
        width: 100%;
        margin: 0;
    }

    #community-support .community div:last-of-type {
        margin-bottom: 30px;
    }

    #community-support .community .image-1 {
        order: 1 !important;
    }

    #community-support .community .text-1 {
        order: 2 !important;
    }

    #community-support .community .image-3 {
        order: 5 !important;
    }

    #community-support .community .text-3 {
        order: 6 !important;
    }
}

/*  design-services.inc */
#design-services .services {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

#design-services .services div {
    align-self: center;
    text-align: center;
    margin: 70px 0;
}

#design-services .services div.text-1,
#design-services .services div.text-2,
#design-services .services div.text-3 {
    width: 60%;
    padding: 0 80px;
    box-sizing: border-box;
    line-height: 2;
    text-align: left;
}

#design-services .services div.image-1,
#design-services .services div.image-2,
#design-services .services div.image-3 {
    width: 40%;
}

#design-services a {
    margin: 25px auto !important;
    width: 336px !important;
}

@media screen and (max-width: 768px) {

    #design-services .services div.text-1,
    #design-services .services div.text-3 {
        width: 100%;
    }

    #design-services .services div.image-1,
    #design-services .services div.image-3 {
        width: 100%;
    }

    #design-services .services div.text-2 {
        width: 100%;
        order: 2;
    }

    #design-services .services div.image-2 {
        width: 100%;
        order: 1;
    }
}

/* design-style.aspx */
#design-style .complimentary-design {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

#design-style .complimentary-design div {
    align-self: center;
}

/* window-treatments.inc */
#window-treatment h2 {
    text-align: center;
    margin: 20px 0!important;
}

#window-treatment .drapery,
#window-treatment .window-treatment,
#window-treatment .shading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 50px 0;
}

#window-treatment .drapery .image,
#window-treatment .window-treatment .image,
#window-treatment .shading .image {
    text-align: center;
}

#window-treatment .drapery {
    padding: 20px;
    box-sizing: border-box;
}

#window-treatment .drapery div,
#window-treatment .window-treatment div,
#window-treatment .shading div {
    align-self: center;
    width: 50%;
    box-sizing: border-box;
    padding: 0 10px;
}

#window-treatment .drapery div .button,
#window-treatment .shading div .button {
    width: 100%;
    max-width: 270px;
    position: relative;
    margin: 20px auto;
}

#window-treatment .drapery sup {
    line-height: 1;
}

.design-carousel {
    width: 90%;
    margin: 0 auto;
    border: 1px solid #d2d2d2;
    padding: 20px;
    margin-bottom: 30px;
}

#design-slider {
    margin: 0px;
    padding: 0px !important;
}

#design-slider li {
    list-style: none;
}

#design-slider .owl-carouselLabel {
    display: none;
}

#design-slider .owl-carousel {
    margin-top: 35px;
}

#design-slider .owl-nav.disabled {
    display: block;
}

#design-slider .owl-prev,
#design-slider .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

#design-slider .owl-prev:hover,
#design-slider .owl-next:hover {
    color: #db2c2c;
}

#design-slider .owl-prev {
    left: -8%;
}

#design-slider .owl-next {
    right: -8%;
}

@media screen and (max-width: 768px) {

    #window-treatment .drapery div,
    #window-treatment .window-treatment div,
    #window-treatment .shading div {
        width: 100% !important;
    }

    #window-treatment .shading div:first-of-type {
        order: 2;
    }

    #window-treatment .shading div:last-of-type {
        order: 1;
    }
}

/* locations.inc */
.location-page .review a {
    text-decoration: none !important;
    color: red !important;
}

.location-page .review a:hover {
    text-decoration: underline !important;
}

/*  CSS CHANGES  */
#UpdatePanel4 {
    margin-top: 160px;
}

@media screen and (max-width:767px) {
    #UpdatePanel4 {
        margin-top: 0px;
    }
}

.home-copy a,
#about-us-page a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.home-copy a:hover,
#about-us-page a:hover {
    text-decoration: underline;
}

#about-us-page img {
    margin-bottom: 20px;
}

.static-page h3 {
    font-size: 16px;
}

#content-theme-3.brands-page ul li a img {
    width: 120px;
    height: 90px;
}

/* ZD#70275 JC */

#mattress-zzz {
    display: flex; 
    align-items: center;
}

@media screen and (max-width: 600px) {
    #mattress-zzz {
        flex-direction: column;
        position: relative;
        top: -54px;
    }
}

/* 79328 */
.design-tiles {
    margin: 100px auto;
}
.design-tiles ul {
    text-align: center;
}
.design-tiles li {
    list-style: none;
    display: inline-block;
}
.design-tiles img {
    max-width: 100%;
    height: auto;
}

@font-face {
    font-family: "Sacramento";
    src: url(/css/20055/fonts/Sacramento-Regular.ttf) format("truetype");
}
    .design-tiles-text {
        max-width: 285px;
        background-color: #d6d2c7;
        color: #64686b;
        text-align: center;
        box-sizing: border-box;
        padding: 20px;
    }

    .design-tiles-text h2 {
        font-family: 'Zen Old Mincho', serif;
        letter-spacing: 3px;
        font-weight: 100;
    }

    .design-tiles-text hr {
        height: 2px;
        background-color: #64686b;
        border: none;
        width: 60%;
    }

    .design-tiles-text h3 {
        font-family: "Sacramento";
        font-size: 2em;
        font-weight: 100;
    }

    .design-tiles-text p {
        font-size: 14px;
    }

    .design-tiles-text a {
        background-color: #fff;
        color: #c05153;
        padding: 5px;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
    }

    /* zd 85056 */
   #current-sale-video-page {
        justify-items: center;
        text-align: center;
    }
   /*#current-sale-video-page h1 {
        text-align: center;
    }*/

    .financing-banner {
        text-align: center;
        margin-top: 50px;
    }

    .financing-banner img {
        width: 50%;
        height: auto;
    }

    .price3, .ProductThumbnailParagraphPrice3Value {
        color: #055293;
        font-weight: bold;
        /* font-size: 24px; */
    }
    .price3 {
        font-size: 28px;
    }
    .ProductThumbnailParagraph.ProductThumbnailParagraphPrice3 {
        font-weight: bolder;
        font-size: 18px;
    }



    
/* Home Page Brand  slider*/
.brand-container {
    width: 90%;
    margin: 10px auto 0;
    /* border: 1px solid #d2d2d2; */
    background-color: #fff;
    padding: 20px 20px 5px;
}
#brand-slider li {
    list-style: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    padding: 0 5px;
}

#brand-slider span {
    display: none;
}

.brand-container .owl-nav.disabled {
	display: block;
}

.brand-container .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:0;
}

.brand-container .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right:0;
}

.brand-container ul {
	padding:0;
	margin:0;
	list-style-type: none;
	text-align: center;
}

.brand-container ul li img {
	width: 120px;
	height: 90px;
	margin:0 auto;
    display: inline-block;
}

.brand-container ul li a {
	color: #000;
	text-decoration: none;
}

.brand-container ul li a:hover {
	text-decoration: underline;
}

/*.brand-container .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}*/

.brand-container .owl-theme .owl-nav .owl-prev {
	position: absolute;
	left:0;
    top: 50%;
    transform: translateY(-50%);
    background:transparent;
    color:#333;
    background: #fff;
    margin: 0;
    width:50px;
}

.brand-container .owl-theme .owl-nav .owl-next {
	position: absolute;
	right:0;
    top: 50%;
    transform: translateY(-50%);
    background:transparent;
    color:#333;
    background: #fff;
    margin: 0;
    width:50px;
}

.brand-container .owl-theme .owl-nav .owl-prev:hover {
	color:#0d2657;
	opacity: 1;
}

.brand-container .owl-theme .owl-nav .owl-next:hover {
	color:#0d2657;
	opacity: 1;
}


.brand-container .brand-title {
    text-align: center;
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    margin: 5px auto;
}

.tp-div {
    margin-top: 70px;
    left: -70px;
    position: relative;
}


@media screen and (max-width: 1280px) {
    
    .tp-div {
        margin-top: 40px;
        left: 0;
    }

}
@media screen and (max-width: 767px) {
    .tp-div {
        left: 0;
        margin-top: 40px;
    }
}

/* Location Landing Pages */

#location-store-pic img {
    width: 100%;
    height: auto;
    display: block;
}

/* End Location Landing Pages */


div.YoutubeFlyer {
    margin: 10px 0;
    position: relative;
    padding: 6% 0 50%;
    height: 0;
}


div.YoutubeFlyer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


div#award-logo img {
    width: 25%;
    height: auto;
}

@media screen and (max-width: 767px) {
    div#award-logo img {
        width: 100%;
    }
}