html
{
	height:100%;
	width:100%;
    background-color:#777;
}
body
{
	height:100%;
	width:100%;
    margin:0;
    font-size:19px;
    font-family:Courier, Verdana, sans-serif;
	line-height:1.6;
    word-spacing:-.2em;
}
p
{
    margin:0;
}
img
{
	display:block;
}




.logIn > .overlay
{
	z-index:999;
    position:fixed;
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.5);
    opacity:0;
}
.logIn.hiden > .overlay
{
    animation:fadeOut ease .8s;
    -webkit-animation:fadeOut ease .8s;
    -moz-animation:fadeOut ease .8s;
    -o-animation:fadeOut ease .8s;
    -ms-animation:fadeOut ease .8s;
}
.logIn.visible > .overlay
{
    opacity:1;
    animation:fadeIn ease .8s;
    -webkit-animation:fadeIn ease .8s;
    -moz-animation:fadeIn ease .8s;
    -o-animation:fadeIn ease .8s;
    -ms-animation:fadeIn ease .8s;
}
/*#64c9fc #9e6943 #AFAF cornflowerblue firebrick*/
.logIn > .overlay > .content
{
    position:absolute;
    left:50%;
    top:50%;
    width:380px;
    height:400px;
    transform:translateY(-50%) translateX(-50%);
    background-color:rgba(158, 105, 67, .94);;
    border-radius:4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

.logIn form > h1
{
    display:block;
    width:270px;
    margin:0 auto 25px;
    color:rgb(248 195 157);
    text-shadow:1px 1px 2px #000;
	transition:color .1s;
}

.logIn form > input
{
    box-sizing:border-box;
	display:block;
	width:300px;
	margin:0 auto 10px auto;
	padding:10px 15px;
	background-color:#2a353c;
	border:2px solid #2a353c;
	border-radius:3px;
	outline:0;
	text-align:center;
	font-size:18px;
	font-weight:300;
	color:rgb(248 195 157);
}
.logIn form > input:hover
{
	border:2px solid #fafafa;
}
.logIn form > input:focus
{
	border:2px solid rgb(248 195 157);
}
.logIn form > input::placeholder
{
  color:#cfcfcf;
  opacity:1;
}
.logIn form > input:-ms-input-placeholder,
.logIn form > input::-ms-input-placeholder
{
  color: #cfcfcf;
}
.logIn form > input:-webkit-autofill:hover
.logIn form > input:-webkit-autofill:focus,
.logIn form > input:-webkit-autofill:active,
.logIn form > input:-webkit-autofill
{
	box-shadow: 0 0 0px 1000px #2a353c inset !important;
	-webkit-box-shadow: 0 0 0px 1000px #2a353c inset !important;
	-webkit-text-fill-color: rgb(248 195 157) !important;
}

.logIn form > .submit 
{
    box-sizing:border-box;
	display:block;
    position:absolute;
    bottom:26px;
	width:300px;
	margin:auto;
	padding:10px 15px;
	background-color:rgb(248 195 157);
	border:2px solid rgb(248 195 157);
	border-radius:3px;
	outline:0;
	color:#2a353c;
	font-size:18px;
	cursor:pointer;
	-webkit-transition-duration:0.25s;
	transition-duration:0.25s;
}
.logIn form > .submit:hover 
{
	border:2px solid #fafafa;
}
.logIn form > .submit:active 
{
	background-color:#fafafa;
	border:2px solid #fafafa;
}

.logIn form > .submit:active ~ input,
.logIn form > .submit:active ~ h1
{
	color:#fafafa;
}
.logIn form > .submit:active ~ input:-webkit-autofill:active,
.logIn form > .submit:active ~ input:-webkit-autofill
{
	-webkit-text-fill-color: #fafafa !important;
}
.logIn form > .submit:active ~ input:placeholder-shown::placeholder
{
	color:red;
}
.logIn form > .submit:active ~ .resetPassword
{
    opacity:0;
}

.logIn form > .resetPassword
{
    display:block;
    opacity:1;
	margin:61px auto 0;
	background-color: transparent;
	border:0;
    font-size:.8em;
	color:#2a353c;
	cursor:pointer;
	outline:0;
    transition:opacity .4s;
}
.logIn form > .resetPassword:hover
{
	color:#fafafa;
}
.logIn form > .resetPassword:active
{
	color:rgb(248 195 157);
}



.page
{
    z-index:1;
	overflow:auto;
	position:relative;
	width:100%;
	min-width:400px;
    max-width:1800px;
    min-height:100%;
    margin:0 auto;
	background-color:#F8F8F8;
    box-shadow:0 0 8px 4px rgba(0,0,0,0.3);
}

.page > .headerBackground,
.page > .headerOverlay,
.page > .header
{
    z-index:900;
    position:fixed;
    width:100%;
    min-width:400px;
    max-width:1800px;
    height:80px;
    pointer-events:none;
}
.page > .headerBackground
{
    background-color:rgba(248,248,248,0.88);
}

.page > .headerOverlay
{
    background-color:rgba(248,248,248,0.0);
    transition:background-color 200ms linear, box-shadow 200ms linear;
    -webkit-transition:background-color 200ms linear, box-shadow 200ms linear;
    -ms-transition:background-color 200ms linear, box-shadow 200ms linear;
}

.page > .header > .container
{
	width:100%;
    height:100%;
    pointer-events:auto;
}
.page > .header:hover ~ .headerOverlay
{
    background-color:rgba(248,248,248,1);
    box-shadow:0 2px 20px 0 rgba(0, 0, 0, 0.5);
}

.page > .header > .container > .menu
{
    display:table;
    height:100%;
    padding-left:40px;
}
.page > .header > .container > .menu > .item
{
    display:table-cell;
    vertical-align:middle;
    height:80px;
    padding:0 10px;
    font-weight:600;
    color:#000;
    text-decoration:none;
    cursor:pointer;
}
.page > .header > .container > .menu > .item:hover
{
    color:#b37a50;
}
.page > .header > .container > .menu > .item.current
{
    font-weight:600;
    color:#d18f5f;
    text-shadow:1px 1px 2px #000;
    cursor:default;
}

.customer
{
    float:right;
    height:100%;
    padding-right:40px;
    pointer-events:auto;
}
.customer > .container
{
    position:relative;
    display:inline-block;
    vertical-align:middle;
    top:50%;
    transform:translateY(-50%);
}
.customer > .container > .container
{
    position:absolute;
    bottom:50%;
    left:0;
    margin-left:-20px;
    transform:translateY(50%) translateX(-50%);
}
.customer > .container .name
{
    margin-right: 48px;
    white-space: nowrap;
    font-size:.8em;
    font-weight:600;
    color:#000;
    cursor:pointer;
    transition: font-size .1s;
}
.customer > .container .no.name:hover,
.customer > .container .name:not(.no)
{
	font-size:1em;
	font-weight: 600;
	color: #d18f5f;
	text-shadow: .5px .5px 1.5px #000;
}
.customer > .container > .icon
{
	display:table-cell;
	vertical-align:middle;
	width:0;
	height:37px;
}

.customer > .container > .menu
{
    position:absolute;
    top:34px;
    right:0;
    height:0px;
    width:40px;
    overflow:hidden;
    transition:height .6s .4s, width .4s;
    filter: drop-shadow(0 0 2px #333);
}
.customer > .container > .menu.show
{
/*    height:114px;*/
    height:49px;
    width:140px;
    transition:height .4s, width .6s .4s;
}
.customer > .container > .menu > .point
{
    float:right;
    top:0;
    margin-right:8px;
    border-bottom:11px solid #45525a;
    border-left:11px solid transparent;
    border-right:11px solid transparent;
}
.customer > .container > .menu > .options
{
    height:38px;
    margin:11px 0 0 0;
    padding:0;
    background-color:#45525a;
    overflow:hidden;
}

.customer > .container > .menu > .options > .option
{
	display:block;
	white-space:nowrap;
	font-size:0;
	padding:0 0 5px 0;
}
.customer > .container > .menu > .options > .option:first-child
{
	padding-top:5px;
}

.customer > .container > .menu > .options > .option > a
{
	box-sizing:border-box;
	display:inline-block;
	vertical-align:middle;
	width:100%;
	padding:5px 12px;
	text-align:left;
	text-decoration:none;
	font:14px Open Sans Condensed,Arial,Helvetica,sans-serif;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	/*
	-moz-transition:all 0.3s;
	-webkit-transition:all 0.3s;
	-o-transition:all 0.3s;
*/
}
.customer > .container > .menu > .options > .option:hover > a
{
	background-color:var(--secondaryColor);
}
.customer > .container > .menu > .options > .option img
{
	border:none;
	vertical-align:middle;
	height:18px;
	padding-right:10px;
}


.cartButton
{
    overflow:hidden;
    position:relative;
    display:inline-block;
    vertical-align:middle;
    top:50%;
    width:32px;
    height:32px;
    cursor:pointer;
    transform:translateY(calc(-50% - 5px));
}
.cartButton > img
{
    position:absolute;
    height:100%;
}
.cartButton.full > img
{
    left:-64px;
}
.cartButton:active > img
{
    margin-left:-32px;
}


.cart
{
    z-index:901;
	overflow:hidden;
	position:fixed;
	width:100%;
	min-width:400px;
    max-width:1800px;
    height:100%;
    margin:0 auto;
    pointer-events:none;
}
.cart > .container
{
    position:absolute;
    right:-300px;
    width:300px;
    height:100%;
    background-color:#F8F8F8;
    pointer-events:auto;
    transition:right 300ms linear, box-shadow 300ms linear;
    -webkit-transition:right 300ms linear, box-shadow 300ms linear;
    -ms-transition:right 200ms linear, box-shadow 300ms linear;
}
.cart.show > .container
{
    right:0;
    box-shadow:-2px 0 20px 0 rgba(0, 0, 0, 0.5);
}
.cart > .container > .content
{
    height:100%;
    overflow:hidden;
}
.cart > .container > .content > .header
{
    padding-top:90px;
    background-color:rgb(248,248,248);
/*    box-shadow:0 2px 20px 0 rgba(0, 0, 0, 0.5);*/
    text-align:center;
}
.cart .header > .head
{
	font-size:1.4em;
    font-weight:600;
}
.cart .header > .quantity
{
	margin-top:-10px;
	padding-bottom:10px;
	font-size:.8em;
    color:#af7449;
}


.cart button.checkout
{
    box-sizing:border-box;
	display:block;
    position:absolute;
    bottom:20px;
    left:50%;
	width:260px;
	padding:10px 15px;
    background-color:#9e6943;
    border:2px solid #9e6943;
	border-radius:3px;
	outline:0;
	text-align:center;
	font-size:18px;
	font-weight:300;
	color:#fff;
	-webkit-transition-duration:0.25s;
	transition-duration:0.25s;
    transform:translateX(-50%);
}
.cart button.checkout:hover
{
    background-color:#d18f5f;
    border:2px solid #d18f5f;
    color:#fff;
}
.cart button.checkout:disabled
{
    background-color:rgba(158, 105, 67, .2);
    border:2px solid rgba(158, 105, 67, .2);
    color:rgba(158, 105, 67, .2);
}


.banner
{
    z-index:-1;
    overflow:hidden;
    position:fixed;
    width:100%;
    min-width:400px;
    max-width:1800px;
    height:460px;
    margin:0 auto;
}
.banner .logo
{
    position:absolute;
    top:110px;
    left:80px;
    width:180px;
}


.page > .container
{
    background-color:rgba(248,248,248,1);
/*     background-color: #EFEFEF; */
}

.page > .container > .content
{
    z-index:2;
    margin-top:460px;
    margin-right:0;
    padding-bottom:100px;
    transition:bmargin-right 300ms linear;
    -webkit-transition:margin-right 300ms linear;
    -ms-transition:rmargin-right 300ms linear;
}
.page > .container > .content > .sidebar
{
    display:inline-block;
    vertical-align:top;
    width:300px;
}


footer
{
    position:absolute;
    bottom:0;
    width:100%;
    height:100px;
/*    background-color:#EFEFEF;*/
}

@keyframes fadeIn
{
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes fadeIn
{
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes fadeIn
{
0% {opacity:0;}
100% {opacity:1;}
}
@-o-keyframes fadeIn
{
0% {opacity:0;}
100% {opacity:1;}
}
@-ms-keyframes fadeIn
{
0% {opacity:0;}
100% {opacity:1;}
}


@keyframes fadeOut
{
0% {opacity:1;}
100% {opacity:0;}
}
@-moz-keyframes fadeOut
{
0% {opacity:1;}
100% {opacity:0;}
}
@-webkit-keyframes fadeOut
{
0% {opacity:1;}
100% {opacity:0;}
}
@-o-keyframes fadeOut
{
0% {opacity:1;}
100% {opacity:0;}
}
@-ms-keyframes fadeOut
{
0% {opacity:1;}
100% {opacity:0;}
}