
.main-p-link{
	color:inherit;
	text-decoration:none;
}

.main-p-link:hover,.main-p-link:focus{
	color:inherit;
	text-decoration:none;
	outline:none;
}
.product-list-item{
	display:block;
	border: 1px solid rgb(230, 227, 227);
	transition:ease-in-out all 0.2s;
	-moz-transition:ease-in-out all 0.2s;
	-o-transition:ease-in-out all 0.2s;
	-webkit-transition:ease-in-out all 0.2s;
	text-align:center;
	position: relative;
	width: 100%;
	padding:5px;
}

.product-list-item:hover,
.product-list-item:focus{
	border: 1px solid rgb(202, 202, 202);
	background-color:rgba(230,230,230,0.4);
}
.product-list-item img{
	margin-bottom:5px;
}
.product-list-item p.product-title{
	color:rgba(0,0,0,0.8);
	font-size: 12px;
}

.product-list-item .product-price{
	font-weight:700;
}

.product-list-item .n-strike{
	color:rgba(0,0,0,0.7);
	font-weight: 100;
}
.n-discount{
	font-weight: 700;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 40px;
	width: 83px;
	background: #36cc47;
	border-top-right-radius: 2px;
	padding-top: 8px;
}

@media (max-width: 800px) {
	.n-discount{
		font-weight: 700;
		position: absolute;
		top: 0px;
		right: 0px;
		height: 40px;
		width: 32px;
		background: #36cc47;
		border-top-right-radius: 2px;
		padding-top: 3px;
		font-size: 11px;
	}
}

/*product card css*/


/*custom radio buttons*/
label.radio-custom {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	cursor: pointer;
	}

	.radio-custom input {
	height: 1px;
	width: 1px;
	opacity: 0;
	}

	.outside {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border: 2px solid red;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	background: none;
	}

	.inside {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	display: inline-block;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	background: red;
	left: 3px;
	top: 3px;
	-webkit-transform: scale(0, 0);
			transform: scale(0, 0);
	}
	.no-transforms .inside {
	left: auto;
	top: auto;
	width: 0;
	height: 0;
	}

	/*input {
		&:focus, &:active {
			+ .outside {
			border-color: $almost-black;
			}
		}
	}*/
	input:checked + .outside .inside {
	-webkit-animation: radio-select 0.1s linear;
			animation: radio-select 0.1s linear;
	-webkit-transform: scale(1, 1);
			transform: scale(1, 1);
	}
/*cutom radio buttons
<label class="radio-custom"><input type="radio" class="radio-inline" name="gender" value="1"><span class="outside"><span class="inside"></span></span>Male</label>
<label class="radio-custom"><input type="radio" class="radio-inline" name="gender" value="0" checked><span class="outside"><span class="inside"></span></span>Female</label>
*/

/*validation summary*/
div.vs{
	background-color:#eeeeee;
	padding:5px !important;
	display:none;
	border-radius:10px;
	width:95%;
	margin:5% auto;
	box-shadow:0px 0px 2px rgba(0,0,0,0.2);
}

div.vs h3{
	color:black;
	padding-left:5px;
}

div.vs p{
	color:#aa0000;
	font-family:'roboto',sans-serif;
	font-size:14px;
	margin:10px 0px 2px 10px;
}

div.vs-block{
	background-color:#eeeeee;
	padding:5px !important;
	display:inline-block;
	border-radius:3px;
	width:95%;
	margin:5% auto;
	box-shadow:0px 0px 2px rgba(0,0,0,0.2);
}

div.vs-block h3{
	color:black;
	padding-left:5px;
}

div.vs-block p{
	color:#aa0000;
	font-family:'roboto',sans-serif;
	font-size:14px;
	margin:10px 0px 2px 10px;
}



/*validation summary*/

.sidenav{
	background-color:#e9ecef;
	border-radius:5px;
	padding:10px;
	box-shadow:0 1px 0 #cfcfcf;
	-moz-box-shadow:0 1px 0 #cfcfcf;
	-o-box-shadow:0 1px 0 #cfcfcf;
	-webkit-box-shadow:0 0px 5px #cfcfcf;
	margin-bottom:10px;
}

/*address realted*/
div.address-tile {
	height: 280px;
	border-radius:5px;
	background-color:#fafafa;
	box-shadow:0px 1px 3px rgba(0,0,0,0.3);
}
div.address-tile ul{
	padding:10px 20px;
}
div.adr-drp-menu{
	position: absolute;
	top:0;
	right:2%;
}

div.address-tile span.default-mark{
	background-color: var(--info);
	padding:10px 10px 10px;
	position: relative;
	top: -4px;
	border-top-left-radius: 6px;
	color: white;
	display: block;
	border-top-right-radius: 6px;
	width:100%;
}
div.address-tile span.adr-span-empty-wrapper{
	background-color: var(--gray);
	padding:15px 10px 10px;
	position: relative;
	top: -4px;
	border-top-left-radius: 6px;
	color: white;
	display: block;
	border-top-right-radius: 6px;
	width:100%;
}
/*address realted*/

/*cart*/
.item-card{
	border-bottom:1px solid rgba(0,0,0,0.4);
	padding:10px;
	margin-bottom:10px;
	margin-top:5px;
	background-color:rgb(255, 255, 255);
}

.item-card div h2{
	margin:0;
}

.item-card [class*="col-"]:not(:first-child):not(:second-child){
	height:45px;
}

.item-card div.right{
	float:right;
}

.cart-item-image{
	height:90px;
	width:90px;
}

.green{
	color:#bada55;
}

.color-primary{
	color:var(--primary-color,black);
}

span.fa-1dot5x{
	font-size:1.6em;
}

span.cart-total-span{
	color:green;
	float: right;
	font-size:20px;
}
.black{
	color:black;
}

@media (max-width: 800px) {

	.cart-item-image{
		width:150px;
		height:150px;
	}
}
.checkout_items {
	display: block;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	top: -45px;
	right: -20px;
	font-weight:700;
	text-align: center;
	border-radius: 50%;
	background: white;
	font-size: 12px;
	color: #FFF;
	background-color: #36cc47;
	font-family:'Roboto',sans-serif;
}
/*cart*/
#mul{
	left:-75px;
}
#mul li a{
	color:black;
}
.mulcon{
	position: relative;
}

/*-----------------
------Checkout-----
------------------*/

select.address-spinner:not([size]):not([multiple]){
	text-align:center;
}

.item-card-ord:first-of-type{
	border-bottom:1px solid rgba(230,230,230,1);
	margin-top:10px;
	padding:10px;
}

.item-card-ord{
	border-bottom:1px solid rgba(230,230,230,1);
	padding:10px;
}
ul.ord-p-desc{
	height:80px;
	overflow-y:scroll;
}

.black{
	color:black;
}

* {
box-sizing: border-box;
}

::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 10px;
	background: #f1f3f5;
	border-left: 1px solid darken(#f1f3f5, 10%);
}

::-webkit-scrollbar-thumb {
	background: darken(#f1f3f5, 20%);
}
.btn-f-xs{
	display:none;
}

@media (max-width: 767.98px) {
	.btn-f-xs{
		display: block;
	}
	#p-grid{
		width:100%;
	}
	#lg-f{
		display:none;
	}
}

.ord-ch-status{
	border-radius:5px;
	padding:5px;
}

.tile
{
	box-shadow:0px 0px 1px rgb(40,40,40);
	border-radius:3px;
}
.ribbon {
	position: absolute;
	right: -5px; top: -5px;
	z-index: 1;
	overflow: hidden;
	width: 75px; height: 75px;
	text-align: right;
}
.ribbon span {
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	width: 100px;
	display: block;
	background: #79A70A;
	background: linear-gradient(#9BC90D 0%, #79A70A 100%);
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
	position: absolute;
	top: 19px; right: -21px;
}
.ribbon span::before {
	content: "";
	position: absolute; left: 0px; top: 100%;
	z-index: -1;
	border-left: 3px solid #79A70A;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #79A70A;
}
.ribbon span::after {
	content: "";
	position: absolute; right: 0px; top: 100%;
	z-index: -1;
	border-left: 3px solid transparent;
	border-right: 3px solid #79A70A;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #79A70A;
}


.sidebar{
	position: fixed;
	top:0;
	right:0;
	display:none;
	height:100%;
	z-index:9999;
	background-color:#FF8D1D;
	padding-top:10px;
	width:250px;
	font-size:1.2rem;
	overflow-y:scroll;
	box-shadow:0px 0px 5px #A0A0A0;
}

.sidebar ul{
	list-style:none;
	padding:0;
	margin:0;
	background-color: #FF8D1D;
}

.sidebar ul li a{
	display: block;
	padding:8px;
	color:black;
}

.sidebar ul li.dropdown-divider{
	height: 0;
	overflow: hidden;
}

.sidebar ul li{
	margin-bottom:1px;
}

.sidebar ul li ul{
	background-color:#FF8D1D;
	padding-left:10px;
}
.sidebar ul li ul li{
	font-size:1rem;
}
.sidebar ul li ul li a{
	color:black;
}
.sidebar.active{
	display: inline-block;
}

.sidenav-wrapper{
	display:none;
	position: fixed;
	top:0;
	left:0;
	height:100%;
	width:100%;
	background-color:rgb(10,10,10);
	opacity:0.4;
	z-index:9998;
}
