.wcspc-container {
	position: relative;
	width: 100%;
	max-width: 1024px;
	padding-right: 15px;
	padding-left: 15px;
	margin:0 auto;
}

.wcspc-category-wrapper {
	margin-bottom: 50px;
	margin-top: 50px;
}

.wcspc-category-title {
	font-weight: bold;
	font-size: 120%;
	margin-bottom: 15px;
}

.wcspc-category-product {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	padding: 15px;
	border-bottom: solid 1px #c1c1c1;
	cursor: pointer;
}

.wcspc-category-product:hover {
	background-color: #f7f7f7;
}

.wcspc-category-image {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.wcspc-category-image img {
	max-height: 150px;
	width: auto;
}

.wcspc-info {
	width: 100%;
	padding: 0 15px;
}

.wcspc-info p{
	padding-bottom: 15px;
}

.wcspc-product-name {
	font-weight: bold;
	color: #000;
	font-size: 20px;
}

.wcspc-product-description {
	font-size: 18px;
}

p.wcspc-product-price {
	font-size: 18px;
	color:#000;
	padding-bottom: 15px;
}

/*Cart*/
#wcspc_mobile_qty {
	display: none;
}

.wcspc_mobile_block_screen {
	background-color: #000;
	opacity: 0.5;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10000;
}

.wcspc_mobile_qty_wrapper {
	position: fixed;
	top: 50%;
    transform: translateY(-50%);
	left: 15px;
	right: 15px;
	padding: 15px 15px 75px 15px;
	/*height: 350px;*/
	max-height: 600px;
	background-color: #fff;
	border-radius: 5px;
	min-width: 280px;
	z-index: 11000;
}

.wcspc_mobile_qty_wrapper .wcspc-select-title {
	font-size: 18px;
	margin-bottom: 5px;
}

.wcspc_mobile_qty_title {
	font-weight: bold;
	text-align: center;
	font-size: 25px;
	line-height: 25px;
}

.wcspc_mobile_qty_price {
	text-align: center;
	font-size: 21px;
	margin-bottom: 10px;
}

.wcspc_mobile_qty_description {
	text-align: center;
	max-height: 40%;
	overflow-y: auto;
	margin-bottom: 15px;
}

.wcspc_qty_controls {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}

.wcspc_qty_control {
	font-size: 30px;
	width: 50px;
	display: block;
	padding: 5px;
	text-align: center;
	cursor: pointer;
	height: 65px;
	line-height: 55px;
}
.wcspc_qty_control.disabled {
	opacity: 0.5;
}
#wcspc_qty {
	width: 75px;
	border: none;
	font-size: 25px;
	text-align: center;
	height: 70px;
	padding: 0;
}

.wcspc_qty_controls input:focus, .wcspc_qty_controls input:hover {
	border: none;
	background-color: transparent;
}

.wcspc_add_to_cart {
	cursor: pointer;
	position: absolute;
	bottom: 0;
	display: block;
	left: 15px;
	right: 15px;
	bottom: 15px;
	padding: 10px 15px;
	text-decoration: none;
	color: var(--wcspc_font_color);
	background-color: var(--wcspc_primary_color);
	text-transform: uppercase;
	font-size: 18px;
}

.wcspc_add_to_cart.wcspc_disabled {
	opacity: 0.4;
	cursor: default;
}

.wcspc_add_to_cart span {
	position: relative;
	float: right;
}

#wscpc-cart-error {
	text-align: center;
	font-size: 18px;
	line-height: 18px;
	color: #fb5050;
	display: none;
}

#wcspc_cart_footer {
	margin: 0;
	position: fixed;
	max-height: 600px;
	background-color: #fff;
	min-width: 280px;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	height: 50vh;
	border-top: solid 1px #c1c1c1;
	border-bottom: 0;
	transform: translateY(100%);
	transition: all 0.4s ease-in-out;
	z-index: 1000;
	width: 100%;
	max-width: 100%;
}

#wcspc_cart_footer.open {
	transform: translateY(0);
}

#wcspc_cart_footer > p {
	font-size: 25px;
	padding: 10px 0;
	line-height: 25px;
	margin: 0;
}

#wcspc_cart_btn {
	background-color: var(--wcspc_bk_color);
    color: #fff;
    height: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    position: absolute;
    left: 0;
    top: -50px;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
}

#wcspc_cart_btn p {
	padding: 0;
	position: relative;
	width: 33%;
	text-align:left;
	line-height: 25px;
	margin-top: 5px;
	height: 25px;
	font-size: 18px;
	margin-bottom: 0;
}

#wcspc_items_count {
    position: absolute;
    font-size: 14px;
    text-align: center;
    background: var(--wcspc_primary_color);
    color: var(--wcspc_font_color);
    border-radius: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    bottom: -5px;
    left: 50%;
}

#wcspc_cart_wrapper {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 15px;
	top: 65px;
	overflow-y: auto;
}

.wcspc_cart_item {
	position: relative;
	padding: 5px;
	border-bottom: 1px #c1c1c1 solid;
}

.wcspc_cart_item p {
	font-size: 18px;
	line-height: 20px;
	padding-right: 10px;
}

.wcspc_cart_item i {
	position: absolute;
	right: 0;
	cursor: pointer;
	font-size: 16px;
	top: 50%;
	margin-top: -8px;
}

.wcspc_cart_summary span {
	font-weight: bold;
}

#wcspc_cart_btn a {
    display: block;
    float: right;
    padding: 0px 15px;
    background-color: var(--wcspc_primary_color);
    color: var(--wcspc_font_color);
    text-decoration: none;
    line-height: 30px;
	margin-top: -5px;
	border-radius: 5px;
}

.cart-btn-direction {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -2px;
}

.wcspc_text_center {
	text-align: center !important;
}

#wcspc_variation .select2 {
	display: block;
	margin: 5px 0px 10px;
	font-size: 16px;
}

#wcspc_variation .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-top: 0;
	font-size: 16px;
}

.select2-container {
	z-index: 99999;
}

.select2-results__option {
	margin-left: 0;
	font-size: 16px;
}

#wcspc_cart_footer .zmdi-chevron-down { display: none; }
#wcspc_cart_footer .zmdi-chevron-up { display: block; }

#wcspc_cart_footer.open .zmdi-chevron-down { display: block; }
#wcspc_cart_footer.open .zmdi-chevron-up { display: none; }


@media(max-width: 767px){
	.wcspc-product-description{
		font-size: 13px;
		line-height: 17px;
		margin-bottom: 10px;
	}
	#wcspc_cart_total_text {
		display: none;
	}
	.wcspc-info {
		text-align: center;
	}
}

@media(min-width:768px) {

	.wcspc-category-product {
		flex-direction: row;
	}

	.wcspc-category-image {
		width: 20%;
	}

	.wcspc-info {
		width: 80%;
	}

	#wcspc_cart_footer {
		width: 450px;
		right: 0 !important;
		left: initial !important;
		-webkit-box-shadow: -3px -55px 18px 2px rgba(176,176,176,0.30);
		   -moz-box-shadow: -3px -55px 18px 2px rgba(176,176,176,0.30);
			 	box-shadow: -3px -55px 18px 2px rgba(176,176,176,0.30);
	}

	#wcspc_cart_btn {
    	border-top-left-radius: 5px;
	}

	.wcspc_mobile_qty_wrapper {
		width: 600px;
	    left: 50%;
	    transform: translateX(-50%) translateY(-50%);
	}
}

#wcspc_out_of_stock_msg {
	font-size: 20px;
	text-align: center;
	color: #df3333;
	line-height: 20px;
	margin: 10px 0;
}