/* Regular Title */
.regular-title {
	font-size: 22px;
	font-weight: 500;
	margin-top: 20px;
	margin-bottom: 35px;
	color: $black;
}
.woocommerce-checkout h3,
#order_review_heading,
.woocommerce-Address-title h3,
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content legend {
	@extend .regular-title;
	@extend .cf;
}
/* Lightbox */
.pswp__bg {
	background: rgba(0,0,0,0.6);
}
/* Breadcrumbs */
.woocommerce-breadcrumb {
	font-size: 11px;
	color: #9f9fa0;
	text-transform: uppercase;
	font-weight: 500;

	a {
		color: $black;
	}
	i {
		font-style: normal;
		display: inline-flex;
		margin: 0 3px;
		color: $black;
	}
}
/* Badges */
.badge {
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	z-index: 2;
	font-size: 10px;
	color: #fff;
	font-weight: 700;
	height: 20px;
	line-height: 20px;
	padding: 0 6px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: normal;

	&.onsale {
		background: $color2;

		&.perc {
			font-weight: 400;
			font-size: 11px;
		}
	}
	&.out-of-stock {
		background: #c1c1c1;
	}
	&.new {
		background: #cf8497;
	}
}

.stock.out-of-stock {
	font-weight: 600;
	color: #e24f3d;
}
.price {
	display: block;
	font-weight: 400;
	font-size: 14px;
	color: rgba($black, 0.7);
	&>span {
		display: inline-flex;
		vertical-align: middle;
	}
	del {

		& + ins {
			margin-left: 10px;
		}
	}
	ins,
	&>.amount {
		color: $black;
		text-decoration: none;
	}
}
.stock {
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
}


/* Demo Store */
.demo_store {
	display: block;
	background: $color2;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	font-weight: 400;
	margin: 0;
	line-height: 30px;
	z-index: 999;
}

div.quantity {
	display: inline-flex;
	position: relative;
	padding-right: 22px;
	vertical-align: middle;
	.screen-reader-text {
		display: none;
	}
	&.hidden {
		display: none;
	}

	.qty {
		display: inline-flex;
		padding: 0;
		width: 44px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		border: 1px solid $black;
		justify-content: center;
		background: transparent;
		font-size: 16px;
		font-weight: 400;
		color: $black;
		margin: 0;
		outline: 0;
		border-radius: 3px 0 0 3px;
		@include appearance(textfield);
		&::-webkit-inner-spin-button,
		&::-webkit-outer-spin-button {
			margin: 0;
			@include appearance(none);
		}
	}
	span:hover {
		cursor: pointer;
	}
	.plus,
	.minus {
		display: flex;
		padding: 0;
		margin: 0;
		outline: 0;
		border: 1px solid $black;
		position: absolute;
		justify-content: center;
		align-items: center;
		width: 23px;
		height: 20px;
		font-size: 14px;
		text-decoration: none;
		overflow: visible;
		text-decoration: none;
		font-weight: 400;
		cursor: pointer;
		text-shadow: none;
		background: transparent;
		color: $black;
		border-radius: 0;
		@include user-select(none);
	}

	.plus {
		top: 0;
		right: 0;
		height: 21px;
		line-height: 19px;
		border-radius: 0 3px 0 0;
	}

	.minus {
		bottom: 0;
		right: 0;
		border-radius: 0 0 3px 0;
	}
}
.required {
	opacity: 0.4;
	border: 0;
}
.related,
.up-sells,
.cross-sells {
	width: 100%;
	margin: 40px 0 0;

	&:last-child {
		margin-bottom: 80px;
	}
	h2 {
		font-size: 20px;
		display: block;
		text-align: center;
		margin-bottom: 50px;
		font-weight: 500;
	}
}

/* Rows */
.woocommerce form,
.woocommerce-page {
	.form-row {
		width: 100%;
		display: block;
		float: left;
		&.form-row-first,
		&.form-row-last {
			@include min-break($break-small) {
				width: 50%;
			}
		}
		&.form-row-first {
			@include min-break($break-small) {
				padding-right: 30px;
			}
		}
		&.create-account {
			margin-bottom: 0;
		}
		input,
		.select2-container {
			margin: 0;
		}
	}
}
