/* Shop styles */

body.noscroll {
	overflow : hidden!important;
}

.loader {
	display : none;
	position : absolute;
	top : 0;
	left : 0;
	right : 0;
	bottom : 0;
	z-index : 99999;
	background-color : rgba(0,0,0,0.8);
	color : #fff;
	text-align : center;
	padding : 40vh 1rem 1rem 1rem;
}

.loader.visible {
	display : inline-block;
}


.loader i {font-size : 5rem;}
.loader p {padding : 1rem 0;}
#cartPanel .loader a {
    display: inline-block;
    border: 1px solid #fff;
    padding: .5rem 2rem;
    text-decoration: none;
    color: #fff;
	opacity : 0.0;
	transition : opacity .5s ease;
}

#cartPanel .loader a.visible {
	opacity : 1;
}


.optionsPanel {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
	top : 0;
    transition: left .5s ease;
    background-color: rgba(0,0,0,.95);
    padding: 20% 1rem;
    padding: 3rem;
    text-align: left;
    color: #fff;
	z-index : 3;
}

.optionsPanel.visible {
	left : 0;
}

.optgrpCaption {
    text-align: left;
    display: block;
    font-size: 1.5rem;
    margin: 1rem 0 1rem 0;
    padding: 0;
}

.optgrpCaption:after {
    /* display: block; */
    width: 10%;
    height: .2rem;
    background-color: #fff;
    margin: 1rem auto 0 auto;
    content: '';
}

.optionItem {
    display: block;
    padding: 1rem;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    cursor: pointer;
    /* border: 1px solid transparent; */
    transition: border .5s ease;
    border-left: .5rem solid #a10000;
	position : relative;
}

.optionItem+.optionItem { border-left: .5rem solid #6d2401;}
.optionItem+.optionItem+.optionItem { border-left: .5rem solid #3e0800;}

.optionItem:before {
	width: .5rem;
	padding : 0;
	margin : 0;
	box-sizing : border-box;
	display : inline-block;
	position : absolute;
	left : 0;
    height: .5rem;
    content: '';
	border-top : .5rem solid transparent;
	border-right : .5rem solid transparent;
	border-bottom : .5rem solid transparent;
	border-left : .5rem solid #a10000;
	opacity : 0.0;
	transition : opacity .5s ease;
}

.optionItem+.optionItem:before { border-left: .5rem solid #6d2401;}
.optionItem+.optionItem+.optionItem:before  { border-left: .5rem solid #3e0800;}

.optionItem:hover:before {
	opacity : 1.0;
}

.optionItem.checked {
	background-color : #ff5200;
	/* border : 1px solid #ff5200; */
	color : #000;
}

.optionName {
	
}



/* SHOPPING CART */

#cartWidget {
	display: inline-block;
    position: fixed;
	top : 0;
	right : 0;
    background-color: #FF5200;
    color: #fff;
    cursor: pointer;
    /* float: right; */
    box-shadow: 0 0 0.5rem #000;
	z-index : 999;
	transition: background-color .5s ease;
}

#cartWidget:hover {
	background-color: #942f00;
}

#cartWidget.visible {
	
}

#emptyCart {
    text-align: center;
    color: #693402;
}

#cartWidget a {
	text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    padding: 0em .5em;
}

#cartWidget a i {
	display: inline-block;
    font-size: 2rem;
    text-align: center;
    padding: .3em;
}

#totalContainer {
	font-size: 1.3rem;
    border-top: 1px solid #aaa;
    margin-top: .5rem;
    padding-top: .5rem;
}

#deliveryWait {
	display: inline-flex;
    position: absolute;
    text-align: center;
    color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    margin: 0;
    padding: 2rem;
	justify-content : center;
	align-items : center;
	flex-direction : column;
}

#cartWidget>p {
	/*
	top : 70%;
	left : -5%;
	display : inline-block;
	position : absolute;
	width : 1.3em;
	height : 1.3em;
	font-size : 1.3em;
	text-align : center;
	vertical-align : middle;
	background-color : rgba(255,0,0,1);
	border : 2px solid #fff;
	border-radius : 50%;
	box-shadow : 1px 1px 3px #000;
	color : #fff;
	font-weight : bold;
	cursor : pointer;
	*/
	
	/* top: 70%; */
    /* left: -15%; */
    /* display: inline-block; */
    /* position: absolute; */
    /* width: 1em; */
    /* height: 1em; */
    /* font-size: 1.5em; */
    /* text-align: center; */
    /* vertical-align: middle; */
    /* background-color: #fff; */
    /* border-radius: 50%; */
    /* color: #000; */
    /* font-weight: bold; */
    /* cursor: pointer; */
	
	top: 70%;
    left: -15%;
    display: inline-block;
    position: absolute;
    width: 1em;
    line-height: 1;
    /* height: 1em; */
    font-size: 1.5rem;
    text-align: center;
    vertical-align: top;
    background-color: #fff;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    /* box-shadow: 1px 1px 3px #000; */
    color: #000;
    font-weight: bold;
    padding: 0;
    cursor: pointer;
}

#cartWidget p i {
	font-size: .9rem;
}

#cartCounter.ani {
	animation:pulse .5s;
} 

@keyframes pulse{
0%{transform: scale(1.0)}
50%{transform: scale(1.5)}
100%{transform: scale(1.0)}
}



#cartPanel {
    display: inline-block;
    position: fixed;
    z-index: 9999;
    top: 0em;
    bottom : 0;
	right: -100%;
    max-height: 100%;
    /* overflow-y: auto; */
    width: 40%;
    border-left: 2px solid #3C3C3C;
    min-width: 30rem;
    padding: 0em;
    background-color: #0A0A0A;
    box-shadow: 0 0 1em #000;
    transition: right .5s ease, filter .5s ease;
    /* background-image: url('../images/cartBack.jpg'); */
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

#shopCart {
	overflow-y : auto;
	flex-grow : 0;
	/* flex-shrink : 0; */
}

#cartPanel>h1 {
	display : block;
	margin : 0em 0em .5em 0em;
	color : #b7671d;
	font-weight : normal;
	text-transform : uppercase;
	padding	: 1em .5em 1em .5em;
	text-align : center;
	font-size : 1.5em;
	text-align : center;
	
	background-image : url('../images/cartSplit.png');
	background-position : center bottom;
	background-repeat : no-repeat;
	/* background-size : 80% auto; */
	
}

#shopCart>a {
	display : inline-block;
	width : 100%;
	padding : .5em 1em;
	color : #65055D;
	/*text-shadow : 1px 1px 1px #000;*/
	text-decoration : none;
	font-size : 1em;
	/*text-transform : uppercase;*/
	background-color : #fff;
	background-color : rgba(255,255,255,1.0);
	border-radius : 0em 0em 0em 1em;
	text-align : right;
	box-shadow : 0px 0px 5px #000;
}

#cartPanel #shopCart ul {
	padding : 0em 0em 0em 0em;
	list-style : none;
}

#cartPanel #shopCart li {
	padding: 1rem;
    border-bottom: 1px dotted #ccc;
    position: relative;
    display: flex;
    width: 100%;
	justify-content: space-between;
    align-items: flex-start;
}

#cartPanel #shopCart li:last-of-type {
	border-bottom : 0;
}

#shopCart ul li img {
	display: inline-block;
    /* display: table-cell; */
    width: 15%;
    /* height: 5em; */
    padding: .1em;
    vertical-align: middle;
}

#shopCart .details {
	vertical-align: top;
    display: inline-block;
	flex-grow : 1;
    /* width: 80%; */
    padding: 0em .5rem 0em .5rem;
	color : #9A9A9A;
}

#cartPanel li a {
	color: #D19655;
    text-decoration: none;
    font-size: 1.1em;
    text-transform: uppercase;
}

#cartPanel li a:hover {
	color : #b7671d;
	text-decoration : underline;
}

#cartPanel li p {
	font-size: .8em;
}

#cartPanel .cartDelete {
	/*position: absolute; */
    /* top: .5em; */
    /* right: .5em; */
    /* height: 100%; */
    /* vertical-align: middle; */
    display: inline-block;
    opacity: 0.0;
    cursor: pointer;
    text-decoration: none;
    font-size: .9rem;
    text-transform: none;
    border-radius: .5rem;
    background-color: #ff5301;
    padding: .2rem .5rem;
    color: #fff;
    flex-grow: 0;
    text-decoration: none;
    transition: background-color .5s ease;
}

#cartPanel .cartDelete:hover {
	background-color: #942f00;
	color : #fff;
	text-decoration: none;
}

#cartPanel #shopCartSummary {
    background-color: #000;
    padding: 1em;
    color: #B7671D;
    font-size: 1.2em;
    text-align: center;
    border-top: 1px solid #b7671d;
    border-bottom: 1px solid #b7671d;
	background-image: url('../images/coalBack.jpg');
	background-position : center center;
	background-repeat : no-repeat;
	background-size : cover;
	box-shadow : 0 0 .5rem #000 inset;
}

#cartPanel #shopCartSummary p {
	font-size: 1.2em;
	padding : .5em;
}


#cartPanel #shopCartSummary a {
	/*background-color : #b7671d;*/
	color : #fff;
	display : block;
	/*display : none;*/
	width : 70%;
	margin : 0em auto .5em auto;
	padding : .3em 1em;
	text-transform : uppercase;
	text-decoration : none;
	font : inherit;
	border: 1px solid #2F2F2F;
	transition : background-color .5s ease;
}

#cartPanel #shopCartSummary a:hover {
	background-color : #A94F16;
}

#cartPanel li:hover .cartDelete {
	opacity : 1.0;
}
#cartPanel:hover>a {
	border-radius : 0em;
}

#cartPanel:hover #summary {
	display : block;
}








#cartShadow {
	display : inline-block;
	position : fixed;
	top : 0em;
	left : 100%;
	width : 100%;
	height : 100%;
	background-color : #000;
	background-color : rgba(0,0,0,0.8);
	z-index : 999;
	opacity : 0.0;
	transition : opacity .5s .5s ease;
}

#cartShadow.visible {
	opacity : 1.0;
	left : 0em;
	transition : opacity .5s .5s ease;
}

#recomendationPanel {
	display: inline-block;
    position: fixed;
    z-index: 9999;
    top: 0em;
    right: -100%;
    height: 100%;
    /* overflow-y: auto; */
    width: 40%;
    border-right: 2px solid #3C3C3C;
    min-width: 30rem;
    padding: 0em;
    background-color: #0A0A0A;
    box-shadow: -2rem 0 2rem #000;
    transition: right .6s ease;
}

#recomendationPanel.visible {
	right : 0;
	transition: right .4s ease;
}

div .panelHeader {
	/* position: fixed; */
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
    background-image: url(../images/cartSplit.png);
    background-position: center bottom;
    /* background-position: -100% bottom; */
    background-repeat: no-repeat;
    background-size: auto auto;
	flex-shrink: 0;
	
}

div .panelHeader a {
	display: inline-block;
    /* opacity: 0.0; */
    font-size: 1em;
    padding: .2rem .5rem;
    text-align: center;
    /* position: absolute; */
    color: #fff;
    text-decoration: none;
    /* top: .5em; */
    /* right: .5em; */
    border-radius: .5rem;
    background-color: #ff5301;
    cursor: pointer;
    transition: background-color .5s ease;
}

div .panelHeader a:hover {
	background-color: #942f00;
}

div .panelHeader h2 {
    display: block;
    margin: 0;
    color: #b7671d;
    font-weight: normal;
    text-transform: uppercase;
    padding: 1rem 0;
    text-align: left;
    font-size: 1.2em;
}

#recomendationPanel.visible {
	right : 0;
	transition: right .4s ease;
}

#recList {
	padding: 0 .5rem;
    font-size: .9rem;
    overflow-y: auto;
    height: 90vh;
}

#recList .relItemDescription {
	padding: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1rem;
}

#recList ul {
    padding: 0em 0em 2rem 0em;
    list-style: none;
}

#recList li {
    padding: 1rem 0;
    border-bottom: 1px solid #3a3a3a;
    position: relative;
    display: block;
    width: 100%;
}

#recList li:last-of-type {
	border-bottom : 0;
}

#recList ul li img {
    display: inline-block;
    /* display: table-cell; */
    width: 15%;
    /* height: 5em; */
    padding: .1em;
    vertical-align: middle;
}

#recList .details {
    vertical-align: middle;
    display: inline-block;
    width: 80%;
    padding: 0em .1em 0em .2em;
    color: #9A9A9A;
}

#recList li a {
    color: #D19655;
    text-decoration: none;
    font-size: 1.1em;
    text-transform: uppercase;
}

#recList li p {
    font-size: .8em;
}

#recList .addBlock {
	display : flex;
	padding-top : .5rem;
	align-items : center;
	justify-content : space-between;
}

#recList .addCount {
	font-size : 1.3rem;
	display : inline-block;
}

#recList .addCount a i {
	transition : color .5s ease;
}

#recList .addCount a:hover i {
	color : #ff2401;
}

#recList .addCount>* {
	padding : 0rem 0;
	display : inline-block;
	vertical-align : middle;
}

#recList .addCount p {
	padding : 0 .5rem;
	width : 2rem;
	text-align : center;
}

#recList .recAddToCart {
    display: inline-block;
    padding: .2rem 1rem;
    color: #fff;
    text-transform: none;
    font-size: 1rem;
    border-radius: .2rem;
    background-color: #ff5301;
	transition : background-color .5s ease;
}

#recList .recAddToCart:hover {
	background-color: #ff2401;
}

#cartPanel.visible {
	right : 0%;
}

#cartPanel.shifted {
	right : 30%;
	filter: grayscale(0.5);
}


/*
#cartPanel a {
	color : #A94F16;
	cursor : pointer;
}

#cartPanel a:hover {
	text-decoration : none;
}

#cartPanel #cartClose {
	display : inline-block;
	opacity : 0.0;
	font-size : 1.5em;
	width : 1em;
	height : 1em;
	text-align : center;
	position : absolute;
	color : #fff;
	text-decoration : none;
	top : .1em;
	right : .1em;
}

#cartPanel:hover #cartClose {
	opacity : 1.0;
}

#cartPanel #cartClose:hover {
	color : #eee;
}

#cartPanel h1 {
	font-weight : normal;
	text-align : center;
	border-bottom : 1px solid #CFBDA3;
	text-transform : uppercase;
	color : #CFBDA3;
	margin : 0em;
	padding : 1em 0 0 0;
	
}
*/


#blockCheckout {
    display: inline-block;
    position: fixed;
    top: 0;
	bottom : 0;
    right: -100%;
    width: 40%;
    background-color: #fff;
    max-height: 100%;
    box-shadow: 0 0 0.5em #000;
    padding: 0em;
    overflow-y: auto;
    transition: right .3s ease;
	color : #ea8223!important;
	background-color : #0A0A0A;
	z-index : 9999;
	/* background-image : url('../images/coalBack.jpg'); */
	/* font-family : 'Pangolin', cursive; */
	/* color : #fff; */
	/* background-size : cover; */
}

.err {
	font-size: .8rem;
    color: #fff;
    background-color: #a00;
    padding: .2rem .5rem;
    margin-bottom: .5rem;
    display : none;
}

.error .err {
	display: inline-block;
}

#blockCheckout.visible {
	right : 0em;
}

#blockCheckout h1 {

    display: block;
    margin: 0em 0em .5em 0em;
    color: #b7671d;
    font-weight: normal;
    text-transform: uppercase;
    padding: 1em .5em 1em .5em;
    text-align: center;
    font-size: 1.5em;
    text-align: center;
    background-image: url(../images/cartSplit.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    /* background-size: 80% auto; */

}

#blockCheckout h1 a {
	color: #fff;
    padding: .1em .3em;
    background-color: #aaa;
	cursor : pointer;
	transition : background-color .5s ease;
}

#blockCheckout h1 a:hover {
	background-color : #A94F16;
}

#orderSummary {
	padding : 1em;
	
}

#orderInfo {
	padding: 1em;
	display: flex;
    flex-direction: column;
	/* border-top : 1px solid #ccc; */
}

#orderInfo input, #orderInfo textarea {
	outline: none;
	display: inline-block;
    width: 100%;
    padding: .5em;
    border: 1px solid #ccc;
    font-size: 1em;
    font-weight: normal;
	font-family : inherit;
	margin : .2rem 0em 0 0;
}

#orderInfo .notice {
	font-size : .8em;
	color : #777;
	text-align : center;
	padding : .2em 0 1.5em 0;
	margin : 0;
}

.check {
	display : inline-flex;
	width : 1.2rem;
	height : 1.2rem;
	position : relative;
	border : 1px solid;
	justify-content : center;
	align-items : center;
	overflow : hidden;
	/* border-radius : .2rem; */
	color : #ea8223;
}

#orderInfo .check input {
	position : absolute;
	top : 0;
	left : 0;
	width : 100%;
	height  :100%;
	margin : 0;
	opacity : 0;
	z-index : 2;
}

.check input~i {
	visibility : hidden;
	color : #ea8223;
}

.check input:checked~i {
	visibility : visible;
}

.delType {
	padding : 1rem 0 0 0;
}

.delParam {
	display : flex;
	padding : .5rem 0;
}

.doCheckout {
	display : flex;
	padding : 0 1rem;
	align-items : center;
}

.doCheckout #doCheckout {
    display: inline-block;
    border: 1px solid #000000;
    color: #fff;
    background-color: #5a2000;
    padding: 1rem 2rem;
    text-align: center;
    width: 30%;
    flex-grow: 1;
    flex-shrink: 0;
	border-radius : .2rem;
	background-image : url('../images/buttonBack.jpg');
	background-size : cover;
	box-shadow: 0 0 1rem #ff5e00 inset;
	transition : box-shadow .5s ease;
}

.doCheckout #doCheckout:hover {
	background-color : #c34500;
	box-shadow: 0 0 1.5rem #ff5e00 inset;
}

.doCheckout #doCheckout.disabled {
	opacity : .5;
	background-color : #5a2000;
	cursor : default;
	box-shadow : none!important;
}

.doCheckout .notice {
    padding-left: 1rem;
    font-size: .8rem;
    color: #aaa;
    flex-grow: 0;
    flex-shrink: 1;
}

#orderInfo .delParam input {
	width : 70%;
	
	flex-shrink : 1;
}

#orderInfo .delParam input+input {
	width : 30%;
	margin-left : 1rem;
}

#blockCheckout .delParam {
	display : none;
}

#blockCheckout.needdel .delParam {
	display : flex;
}

#blockCheckout .needDelivery {
	display : none;
}


#blockCheckout.needdel .needDelivery {
	display : block;
}
	
.required {
	border-left: 5px solid #aa0000!important;
}

#orderInfo a {
	display: block;
    width: 50%;
    margin: 0em auto;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
    text-transform: uppercase;
    background-image: url('../images/footer.png');
    background-color: #A94D13;
    border: 1px solid #fff;
    box-shadow: 0 0 .2em #000;
    padding: .5em 1em;
    color: #fff;
    transition: background-color .5s ease;
	cursor : pointer;
}

#orderInfo a:hover {
	background-color: #461d04;
}

#orderInfo a.disabled {
	box-shadow : none;
	background-color : #D0D0D0;
	cursor : default;
}

#terms {
	font-size: .8rem!important;
    color: #ea8223!important;
}

#terms a {
	background-color: transparent!important;
    color: #fff!important;
    display: block!important;
    /* display: none; */
    width: 100%!important;
    margin: .5em auto .5em auto!important;
    padding: 0!important;
    text-transform: none!important;
    font: inherit!important;
    border: 0!important;
    transition: background-color .5s ease!important;
}



#floatWindow {
	display: inline-block;
    width: 40em;
    max-width: 80%;
    position: fixed;
    z-index: 9;
    background-color: #fff;
    padding: 5rem 3rem 3rem 3rem;
    text-align: center;
    left: 50%;
    margin-left: -20em;
	box-shadow : 0 0 .5em #000;
	top : -100%;
	transition : top .5s ease;
}

#floatWindow.visible {
	top : 0em;
}

#floatWindow  h2 {
	padding-bottom : 1em;
}

#floatWindow:hover #floatClose {
    opacity: 1.0;
}

#floatWindow #floatClose {
    display: inline-block;
    opacity: 0.0;
    font-size: 1.5em;
    width: 1em;
    height: 1em;
    text-align: center;
    position: absolute;
    color: #ccc;
    text-decoration: none;
    top: .1em;
    right: .1em;
	cursor : pointer;
}

#floatWindow #floatClose:hover {
	color : #000;
}

#floatWindow #floatOk {
    display: block;
    width: 40%;
    padding: .3em 1em;
    border: 1px solid #000;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    margin: 1em auto 0em auto;
	background-color : #fff;
	transition : background-color .3s ease;
}

#floatWindow #floatOk:hover {
	background-color: #F2D2B8;
}

#mobileMsg {
	text-align: center;
    padding: .5rem;
    margin: 0;
    display: block;
    background: #a00;
    color: #fff;
    margin: .5rem 0;
}

#cartPanel li a.cartRecomendations {
	display: block;
	/* display: none; */
    font-size: .8rem;
    text-transform: none;
    padding: .5rem 0;
    /* background-color: #F2D2B8; */
    color: #ec7c00;
    text-align: left;
}

#shopCart .addCount {
	display : flex;
	align-items : center;
	padding : .5rem 0;
}

#shopCart .addCount a {
	opacity : 1;
	visibility : visible;
	transition : opacity .5s ease;
}

#shopCart .addCount a.disabled {
	visibility : hidden;
	opacity : 0;
}

#shopCart .addCount .addCountText {
	font-size: 1rem;
    width: 4rem;
    padding: .2rem;
    text-align: center;
    background-color: #ab3d00;
    color: #fff;
    border-radius: .5rem;
}

@media (max-width: 1024px) {
	.optionsPanel {
		padding : 1rem;
	}
	
	.doCheckout {
		flex-direction : column;
	}
	
	.doCheckout #doCheckout {
		width : 100%;
	}
	
	.notice {
		text-align : center;
		padding : 1rem 0;
	}
	
	#floatWindow {
		display: inline-block;
		width: 100%;
		max-height : 100%;
		position: fixed;
		z-index: 999;
		background-color: #fff;
		padding: 1em;
		text-align: center;
		left: 0%;
		max-width : 100%;
		margin : 0em;
		box-shadow : 0 0 .5em #000;
		top : -300%;
		overflow-y : auto;
		transition : top .5s ease;
		}
		
	#cartPanel {
		min-width : 100%;
	}
		
	#cartPanel .cartDelete {
		opacity : 1.0;
		/* font-size : 1.5rem; */
	}
	
	#shopCart .details {
		padding-right : 2rem;
	}
	
	#orderInfo a {
		background-color: #A94D13;
	}
	
	#orderInfo a.disabled {
		background-color: #afafaf;
	}
}

@media (max-width: 767px) {
	#cartPanel {
		max-width : 100%;
		width : 100%;
		/* transition : none; */
	}
	
	#cartShadow {
		display : none!important;
	}
	
	#cartPanel.visible {
		right: 0%;
	}
	
	#recomendationPanel {
		min-width : auto;
		width : 80%;
	}
	
	#cartPanel #cartClose {
		opacity : 1.0!important;
		padding: .5em!important;
		height : auto!important;
		width  :auto!important;
	}
	
	#blockCheckout {
		width  :100%;
	}
	
	.optionItem {
		display: inline-block;
		padding: .5rem;
		width: 33%;
	}
}

.hidden {
	display : none!important;
}