/*-------------------------------------------*\ 
THE MRL GROUP
BASE CSS OVERRIDE

CUSTOM STYLES

INDEX 
- VARIABLES **CUSTOMIZE COLORS HERE**
- MAIN BODY
- TOP HEADER
- MENU BAR
- HOMEPAGE
- CATEGORY PAGE
- PRODUCT LANDING PAGE
- FOOTER
- MEDIA QUERIES
\*-------------------------------------------*/

/*-------------------------------------------*\ 
// VARIABLES **CUSTOMIZE COLORS HERE**
\*-------------------------------------------*/
:root {

/* Colors for Main Header */
  --color1: #fff;
  --color1-text: #000;

/* Colors for Body */
  --color2: #fff;
  --color2-text: #000;

/* Colors for  First Footer */
  --color3: #fff;
  --color3-text: #555;

/* Colors for Top Header, Bottom Footer, Buttons */
  --color4: #7393B3;
  --color4-text: #fff;
}

/*-------------------------------------------*\ 
// MAIN BODY
\*-------------------------------------------*/
body {
    background-color: var(--color2);
}
.container#bodyContainer {
    background-color: var(--color2);
}

/*-------------------------------------------*\ 
// TOP HEADER
\*-------------------------------------------*/
.top-header {
    background-color: var(--color4);
    color: var(--color4-text);
    text-align: right;
    padding: 10px;
    font-size: smaller;
}
.header-wrapper {
    border-bottom: none !important;
    background-color: var(--color1);
}
header.header--site a {
    color: var(--color1-text) !important;
}
.menu-bar {
    border-top: 1px solid var(--color1-text);
    border-bottom: 1px solid var(--color1-text);
    width: 70%;
    margin: auto;
}
.menu-bar li {
    display: inline-block;
}
ol, ul {
    list-style: none !important;
}
ul#top-links a {
    color: var(--color4-text);
}
ul#top-links {
    width: 70%;
    margin: auto;
}
#top-links li {
    display: inline-block;
    text-align: center;
    border-right: 1px solid var(--color4-text);
    padding: 0 25px;
}
header.header--site {
    padding-top: 0px;
    margin-bottom: -35px;
}
header.header--site .logo-space img {
    max-width: 400px;
}

/*-------------------------------------------*\ 
// MENU BAR
\*-------------------------------------------*/
.nav--site {
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.nav--site a {
    float: left;
    padding-bottom: 10px;
    text-decoration: none;
    font-size: 17px;
    text-align: center; 
    color: var(--color1-text);
}
.menu-bar li {
    display: inline-block;
    /* width: 25px; */
    padding: 0 5%;
    margin-top: 5px !important;
    margin-bottom: -10px;
}
.menu-bar-container {
    background-color: var(--color1);
}
header.header--site .search-box {
    justify-content: flex-end;
    grid-area: user-nav;
    padding-right: 20%;
}
header.header--site .nav--user .nav-list.horizontal li {
    text-align: right;
}
header.header--site .nav--user {
    padding-top: 35px;
}
#top-links li:last-child {
    border: none;
}
@media screen and (max-width: 500px) {
    .nav--site a {
        float: none;
        display: block;
        width: 100%;
        text-align: left; 
      }
}

/*-------------------------------------------*\ 
// HOMEPAGE CONTENT
\*-------------------------------------------*/
.homepage__callouts {
    margin-top: -30px;
}
.slide img {
    border: none;
}
.homepage__callouts .callout {
    box-shadow: none;
}

/*-------------------------------------------*\ 
// CATEGORY PAGE
\*-------------------------------------------*/
.products.products--grid {
    grid-gap: 136px;
}
.product__cta {
    display: none !important;
}

/*-------------------------------------------*\ 
// PRODUCT LANDING PAGE
\*-------------------------------------------*/
.products.products--grid .product__info * {
    font-size: medium;
    text-align: center;
}
figure.product {
    border-bottom: 1px solid #000;
}

.product-landing .product__images .img-wrap {
    position: relative;
    width: 508px;
}
.product-landing .product__images img {
    border: 1px solid #000;
    border-radius: 10px;
}
.page__title h1 {
    text-align: left;
    font-weight: bolder;
    color: var(--color4);
    font-size: revert;
}
.product__pricing,
.product__ordering.form,
.product__details {
    border: 1px solid black;
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
}
button.button.button--theme--primary {
    background-color: var(--color4);
    border-color: var(--color4);
}
.gallery {
    width: 75%;
}
p.product__description {
    font-style: normal !important;
    font-size: small !important;
    font-weight: 500 !important;
}
.product-landing {
    grid-gap: 50px;
}
table thead th {
    background: none;
    color: #000;
    font-weight: 600;
}
.product-landing .product__info {
    flex-flow: column-reverse;
}

/*-------------------------------------------*\ 
// FOOTER
\*-------------------------------------------*/
div#bodyContainer {
    border-bottom: 1px solid #555;
padding-bottom: 30px;
}
.footer-wrapper {
    background-color: var(--color3);
    border:none;
    padding-top: 30px;
}
footer.footer--site {
    display: inline-block;
padding-bottom: 50px;
}
.footer-right {
    width: 41%;
    float: right;
}
.footer-left {
    width: 39%;
    float: left;
}
.footer-bottom {
    clear: left;
    background-color: var(--color4);
    text-align: center;
    color: var(--color4-text);
    margin-bottom: -16px;
    padding: 0 30px 15px 30px;
}
.footer-contact {
    display: inline-flex;
}
p.footer-h2 {
    font-weight: 600;
    color: var(--color3-text);
}
p.footer-h1 {
    font-weight: 600;
    font-size: x-large;
    color: var(--color3-text);
}
p.footer-txt {
    font-size: smaller;
    color: var(--color3-text);
}
p.footer-h3 {
    color: var(--color3-text);
    font-size: smaller;
    font-weight: bold;
}
.footer-email {
    padding-left: 30px;
}
button.footer-btn {
    background-color: var(--color4);
    border-radius: 4px;
    color: var(--color4-text);
    display: inline-block;font-size: 14px;
    line-height: 20px;
    padding: 6px 16px;
    text-align: center;
    font-size: smaller;
}
p.footer-disclaimer {
    color: #fff;
    font-size: x-small;
    margin-top: 5px;
}
p.footer-disclaimer-h {
    font-size: larger;
    color: #fff;
    padding-top: 10px;
}

/*-------------------------------------------*\ 
// MEDIA QUERIES
\*-------------------------------------------*/
@media screen and (max-width: 780px) {
    header.header--site .search-box {
        justify-content: center;    
        grid-area: initial;
        padding-right: 0px;
    }
    header.header--site .nav--user {
        padding-top: 0px;
        grid-area: initial;
        justify-self: center;
        margin-top: -20px;
    }
    header.header--site .nav--user .nav-list.horizontal {
        DISPLAY: INLINE-BLOCK;
    }
    .custom-quote {
        DISPLAY: INLINE-BLOCK;
        padding-left: 30px;
    }
    footer.footer--site {
        display: grid;
        padding-bottom: 0px;
    }
    .footer-right {
        width: 80%;
    }
    .footer-left {
        width: 80%;
    }
}

@media screen and (max-width: 1080px) {
    .footer-contact {
        display: block;
    }
    .footer-email {
        padding-left: 0px;
        padding-top: 30px;
    }
}