@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

	


    
    .top{
        position: fixed;
        float: left;
        clear: none;
        z-index: 100000;
        width: 85%;
        height: auto;
        margin-left: 7.5%;
    }
    
    
    .logo{
        width: 16vw;
        height: 15vh;
        display: inline;
        float: left;
        clear: none;
        background-position: top left;
        background-repeat: no-repeat;
        background-image: url("../img/ByRaeLogo.svg");
        background-size: contain;
        margin-top: 5vh;
    }
    
    .pagename{
        display: inline;
        float: left;
        clear: none;
        margin-top: 5vh;
        color: #634E42;
        font-weight: 500;
        margin-left: .5em;
    }
    
    
    
    .top .nav-shop{
        float:left;
        clear: none;
        display: block;
        position: fixed;
        z-index: 1000000;
        top: 5%;
        bottom: auto;
        height: auto;
        width: auto;
        right: 15%;
        
    } 
    
    
    
    .navbtton{
        position: fixed;
        right: 0;
        top: 0em;
        width: 3em;
        background-color: #8A7A6B;
        cursor: pointer;
        text-align: center;
        padding: 0em auto;
        border-radius: 0;
    }
    
    
    .navbtton i{
        font-size: 1.5em;
        clear: both;
        float: none;
        color: #fff;
        text-align: center;
        margin: 1em auto;
        padding: 0;
    }
    
    
    .navbtton span{
        transform: rotate(-90deg);
        display: block;
        clear: both;
        font-size: 1em;
        margin: 3em auto .5em;
        text-align: center;
        letter-spacing: 2px;
    }
    
    
    
    
    
    
    
    
    
    
    
    .cartbutton{
        background-color: white;
        cursor: pointer;
        padding: 1em 0em;
        color:  #8A7A6B;
        position: fixed;
        right: 0;
        top: 8.5em;
        border-radius: 0;
        transition: all .3s;
        width: 3em;
    }
    
    .cartbutton i{
        font-size: 1.5em;
    }
    
    
    .cartcount{
        position: absolute;
        left: -.5em;
        top: -.5em;
        color: #000;
        font-family: 'Nunito', sans-serif;
        font-size: 1em;
        font-weight: 700;
        width: 1.4em;
        height: 1.4em;
        background-color: white;
        border-radius: 1em;
         /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    
    
    
    
    
    
    .navlist{
        background-color: #8A7A6B;
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .navlist ul{
        width: auto;
        height: auto;
        display: block;
        float: left;
        position: relative;
        margin: 25vh 7.5vw;
        list-style: none;
        color: #fff;
        padding: 0;
        transition: all .3s;
    }
    
    
    
    .navlist li{
        cursor: pointer;
        opacity: 1;
        transition: all .3s;
        font-family: 'Marcellus SC', serif;
        color: #fff;
        font-size: 2.2em;
        margin-left: 0;
        padding-left: 0;
        transition: all .3s;
        }
    
    
    .navlist li:hover{
        opacity: .4;
    }
    
    
    
    
    .cart{
        background-color: #fff;
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: right;
        clear: none;
        right: 0;
        transition: all .3s;
    }
    
    
    
    .cart-inner{
        width: 80%;
        height: 85%;
        margin: 15% 5%;
        background-color: #F7F7F7;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .closecart{
        float: right;
    
        cursor: pointer;
        transition: all .3s;
        position: absolute;
        z-index: 1000;
        right: 1em;
        top: auto;
        bottom: 1em;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .footer{
        width: calc(100% - 0em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        background-color: #6B6B6B;
        margin: 10vh auto 0;
        padding: 2em 0;
        position: relative;
        z-index: 20;
    }
    
    
    
    .footer-inner{
                       display: grid; 
  grid-auto-flow: row dense; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr; 
  grid-template-rows: 1fr 1fr 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    "."
    "."
    "."; 
        width: 85%;
        margin: auto 7.5%;
        height: auto;
        clear: both;
        color: #fff;
        width: 85%;
        margin: auto 7.5%;
        height: auto;
        clear: both;
        color: #fff;
    }
    
    
    .footer img{
        float: left;
        clear: both;
        display: block;
        margin-bottom: 2em;
    }
    
    
    .footer p{
        clear: both;
    }
    
    
    
    .footer i{
        font-size: 1.4em;
        float: left;
        clear: none;
        margin-right: .7em;
        cursor: pointer;
    }
    
    
    .footer button i{
        float: right;
    }
    

    
    
    
    
    












/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
	
	
	
	
	
    
    
    
    
    
    
    
    
    
	

	
	
	
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

    
    
    
    
    .top{
        position: fixed;
        float: left;
        clear: none;
        z-index: 100000;
        width: 85%;
        height: auto;
        margin-left: 7.5%;
    }
    
    
    .logo{
        width: 8vw;
        height: 12vh;
        display: inline;
        float: left;
        clear: none;
        background-position: center left;
        background-repeat: no-repeat;
        background-image: url("../img/ByRaeLogo.svg");
        background-size: contain;
        margin-top: 5vh;
    }
    
    .pagename{
        display: inline;
        float: left;
        clear: none;
        margin-top: 5vh;
        color: #634E42;
        font-weight: 500;
        margin-left: .5em;
    }
    
    
    
    .top .nav-shop{
        float: right;
        clear: none;
        display: block;
        margin: 5vh auto;
        position: relative;
        z-index: 100;
        top: auto;
        bottom: auto;
        right: auto;
    } 
    
    
    
    .navbtton{
        position: fixed;
        right: 0;
        top: 0em;
        width: 4em;
        background-color: #8A7A6B;
        cursor: pointer;
        text-align: center;
        padding: 2em auto;
        border-radius: 0;
    }
    
    
    .navbtton i{
        font-size: 2em;
        clear: both;
        float: none;
        color: #fff;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    
    .navbtton span{
        transform: rotate(-90deg);
        display: block;
        clear: both;
        font-size: 1em;
        margin: 3em auto 2em;
        text-align: center;
        letter-spacing: 2px;
    }
    
    
    
    
    
    
    
    
    
    
    
    .cartbutton{
        background-color: white;
        cursor: pointer;
        padding: 2em 1.5em;
        color:  #8A7A6B;
        position: fixed;
        right: 0;
        top: 10em;
        border-radius: 0;
        transition: all .3s;
        width: auto;
    }
    
    .cartbutton i{
        font-size: 2em;
    }
    
    
    .cartcount{
        position: absolute;
        left: -.5em;
        top: -.5em;
        color: #000;
        font-family: 'Nunito', sans-serif;
        font-size: 1.3em;
        font-weight: 700;
        width: 2em;
        height: 2em;
        background-color: white;
        border-radius: 1em;
         /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    
    
    
    
    
    
    .navlist{
        background-color: #8A7A6B;
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .navlist ul{
        width: auto;
        height: auto;
        display: block;
        float: left;
        position: relative;
        margin: 25vh 7.5vw;
        list-style: none;
        color: #fff;
        padding: 0;
        transition: all .3s;
    }
    
    
    
    .navlist li{
        cursor: pointer;
        opacity: 1;
        transition: all .3s;
        font-family: 'Marcellus SC', serif;
        color: #fff;
        font-size: 5em;
        margin-left: 0;
        padding-left: 0;
        transition: all .3s;
        }
    
    
    .navlist li:hover{
        opacity: .4;
    }
    
    
    
    
    .cart{
        background-color: #fff;
        width: 40vw;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: right;
        clear: none;
        right: 0;
        transition: all .3s;
    }
    
    
    
    .cart-inner{
        width: 80%;
        height: 85%;
        margin: 15% 5%;
        background-color: #F7F7F7;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .closecart{
        float: right;
        margin: 1em 7em; 
        cursor: pointer;
        z-index: 100;
        transition: all .3s;
        right: 1em;
        top: 2em;
        bottom: auto;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .footer{
        width: calc(100% - 0em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        background-color: #6B6B6B;
        margin: 10vh auto 0;
        padding: 5em 0;
        position: relative;
        z-index: 20;
    }
    
    
    
    .footer-inner{
           display: grid; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."; 
        width: 85%;
        margin: auto 7.5%;
        height: auto;
        clear: both;
        color: #fff;
    }
    
    
    .footer img{
        float: left;
        clear: both;
        display: block;
    }
    
    
    .footer p{
        clear: both;
    }
    
    
    
    .footer i{
        font-size: 1.4em;
        float: left;
        clear: none;
        margin-right: .7em;
        cursor: pointer;
    }
    
    
    .footer button i{
        float: right;
    }
    

    
    
    
    
    
    
    
    
    
    
  
    
    
}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    
    
    .top{
        position: fixed;
        float: left;
        clear: none;
        z-index: 100000;
        width: 85%;
        height: auto;
        margin-left: 7.5%;
    }
    
    
    .logo{
        width: 7vw;
        height: 12vh;
        display: inline;
        float: left;
        clear: none;
        background-position: center left;
        background-repeat: no-repeat;
        background-image: url("../img/ByRaeLogo.svg");
        background-size: contain;
        margin-top: 5vh;
    }
    
    .pagename{
        display: inline;
        float: left;
        clear: none;
        margin-top: 5vh;
        color: #634E42;
        font-weight: 500;
        margin-left: .5em;
    }
    
    
    
    .top .nav-shop{
        float: right;
        clear: none;
        display: block;
        margin: 5vh auto;
    } 
    
    
    
    .navbtton{
        position: fixed;
        right: 0;
        top: 0em;
        width: 3em;
        background-color: #8A7A6B;
        cursor: pointer;
        text-align: center;
        padding: 1em auto;
        border-radius: 0;
    }
    
    
    .navbtton i{
        font-size: 1.5em;
        clear: both;
        float: none;
        color: #fff;
        text-align: center;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    
    .navbtton span{
        transform: rotate(-90deg);
        display: block;
        clear: both;
        font-size: 1em;
        margin: 3em auto 1em;
        text-align: center;
        letter-spacing: 2px;
    }
    
    
    
    
    
    
    
    
    
    
    
    .cartbutton{
        background-color: white;
        cursor: pointer;
        padding: 1em .75em;
        color:  #8A7A6B;
        position: fixed;
        right: 0;
        top: 8.5em;
        border-radius: 0;
        transition: all .3s;
    }
    
    .cartbutton i{
        font-size: 1.5em;
    }
    
    
    .cartcount{
        position: absolute;
        left: -.5em;
        top: -.5em;
        color: #000;
        font-family: 'Nunito', sans-serif;
        font-size: .8em;
        font-weight: 700;
        width: 2em;
        height: 2em;
        background-color: white;
        border-radius: 1em;
         /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    
    
    
    
    
    
    .navlist{
        background-color: #8A7A6B;
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .navlist ul{
        width: auto;
        height: auto;
        display: block;
        float: left;
        position: relative;
        margin: 25vh 7.5vw;
        list-style: none;
        color: #fff;
        padding: 0;
        transition: all .3s;
    }
    
    
    
    .navlist li{
        cursor: pointer;
        opacity: 1;
        transition: all .3s;
        font-family: 'Marcellus SC', serif;
        color: #fff;
        font-size: 3em;
        margin-left: 0;
        padding-left: 0;
        transition: all .3s;
        }
    
    
    .navlist li:hover{
        opacity: .4;
    }
    
    
    
    
    .cart{
        background-color: #fff;
        width: 40vw;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: right;
        clear: none;
        right: 0;
        transition: all .3s;
    }
    
    
    
    .cart-inner{
        width: 80%;
        height: 85%;
        margin: 15% 5%;
        background-color: #F7F7F7;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .closecart{
        float: right;
        margin: 1em 4em; 
        cursor: pointer;
        z-index: 100;
        transition: all .3s;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .footer{
        width: calc(100% - 0em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        background-color: #6B6B6B;
        margin: 10vh auto 0;
        padding: 2em 0;
        position: relative;
        z-index: 20;
    }
    
    
    
    .footer-inner{
           display: grid; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 2em 2em; 
  grid-template-areas: 
    ". . ."; 
        width: 85%;
        margin: auto 7.5%;
        height: auto;
        clear: both;
        color: #fff;
    }
    
    
    .footer img{
        float: left;
        clear: both;
        display: block;
    }
    
    
    .footer p{
        clear: both;
    }
    
    
    
    .footer i{
        font-size: 1.4em;
        float: left;
        clear: none;
        margin-right: .7em;
        cursor: pointer;
    }
    
    
    .footer button i{
        float: right;
    }
    

    
    
    
    
    
    
    
}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {

    
    
    
    .top{
        position: fixed;
        float: left;
        clear: none;
        z-index: 100000;
        width: 85%;
        height: auto;
        margin-left: 7.5%;
    }
    
    
    .logo{
        width: 5vw;
        height: 12vh;
        display: inline;
        float: left;
        clear: none;
        background-position: center left;
        background-repeat: no-repeat;
        background-image: url("../img/ByRaeLogo.svg");
        background-size: contain;
        margin-top: 5vh;
    }
    
    .pagename{
        display: inline;
        float: left;
        clear: none;
        margin-top: 5vh;
        color: #634E42;
        font-weight: 500;
        margin-left: .5em;
    }
    
    
    
    .top .nav-shop{
        float: right;
        clear: none;
        display: block;
        margin: 5vh auto;
    } 
    
    
    
    .navbtton{
        position: fixed;
        right: 0;
        top: 0em;
        width: 5em;
        background-color: #8A7A6B;
        cursor: pointer;
        text-align: center;
        padding: 2em auto;
        border-radius: 0;
    }
    
    
    .navbtton i{
        font-size: 2em;
        clear: both;
        float: none;
        color: #fff;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    
    .navbtton span{
        transform: rotate(-90deg);
        display: block;
        clear: both;
        font-size: 1em;
        margin: 3em auto 2em;
        text-align: center;
        letter-spacing: 2px;
    }
    
    
    
    
    
    
    
    
    
    
    
    .cartbutton{
        background-color: white;
        cursor: pointer;
        padding: 2em 1.5em;
        color:  #8A7A6B;
        position: fixed;
        right: 0;
        top: 10em;
        border-radius: 0;
        transition: all .3s;
    }
    
    .cartbutton i{
        font-size: 2em;
    }
    
    
    .cartcount{
        position: absolute;
        left: -.5em;
        top: -.5em;
        color: #000;
        font-family: 'Nunito', sans-serif;
        font-size: 1.3em;
        font-weight: 700;
        width: 2em;
        height: 2em;
        background-color: white;
        border-radius: 1em;
         /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    
    
    
    
    
    
    
    .navlist{
        background-color: #8A7A6B;
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .navlist ul{
        width: auto;
        height: auto;
        display: block;
        float: left;
        position: relative;
        margin: 25vh 7.5vw;
        list-style: none;
        color: #fff;
        padding: 0;
        transition: all .3s;
    }
    
    
    
    .navlist li{
        cursor: pointer;
        opacity: 1;
        transition: all .3s;
        font-family: 'Marcellus SC', serif;
        color: #fff;
        font-size: 5em;
        margin-left: 0;
        padding-left: 0;
        transition: all .3s;
        }
    
    
    .navlist li:hover{
        opacity: .4;
    }
    
    
    
    
    .cart{
        background-color: #fff;
        width: 40vw;
        height: 100vh;
        position: fixed;
        z-index: 10000;
        display: none;
        float: right;
        clear: none;
        right: 0;
        transition: all .3s;
    }
    
    
    
    .cart-inner{
        width: 80%;
        height: 85%;
        margin: 15% 5%;
        background-color: #F7F7F7;
        display: none;
        float: left;
        clear: none;
        transition: all .3s;
    }
    
    
    .closecart{
        float: right;
        margin: 1em 7em; 
        cursor: pointer;
        z-index: 100;
        transition: all .3s;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .footer{
        width: calc(100% - 0em);
        height: auto;
        display: block;
        float: left;
        clear: none;
        background-color: #6B6B6B;
        margin: 10vh auto 0;
        padding: 5em 0;
        position: relative;
        z-index: 20;
    }
    
    
    
    .footer-inner{
           display: grid; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  grid-template-rows: 1fr; 
  gap: 4em 4em; 
  grid-template-areas: 
    ". . ."; 
        width: 85%;
        margin: auto 7.5%;
        height: auto;
        clear: both;
        color: #fff;
    }
    
    
    .footer img{
        float: left;
        clear: both;
        display: block;
    }
    
    
    .footer p{
        clear: both;
    }
    
    
    
    .footer i{
        font-size: 1.4em;
        float: left;
        clear: none;
        margin-right: .7em;
        cursor: pointer;
    }
    
    
    .footer button i{
        float: right;
    }
    

    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
	

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}