/*========================================
            CHECKOUT PAGE STYLE
=========================================*/
.chekout-coupon {
	width: 600px;
	margin: 25px auto 5px;
	text-align: center;
}

.chekout-coupon h2 {
	font-size:var(--h4size);line-height:var(--h4height)
}

.checkout-charge {
	width: 600px;
	margin: 0 auto;
}

.checkout-charge ul {
	border-top: 3px solid var(--primary);
}

.checkout-charge ul li {
	padding: 15px 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid var(--border);
}

.checkout-charge ul li:last-child {
	border-bottom: none;
}

.checkout-charge ul li:last-child span {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary);
}

.checkout-charge ul li span {
	font-weight: 500;
	color: var(--heading);
	text-transform: capitalize;
}

.checkout-charge ul li span small {
	font-size: 14px;
	font-weight: 400;
	margin-left: 3px;
}

.checkout-check {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 25px;
	margin-top: 50px;
}

.checkout-check input {
	width: 15px;
	height: 15px;
	margin-right: 10px;
	margin-top: 4px;
	cursor: pointer;
}

.checkout-check label {
	line-height: 22px;
}

.checkout-check label a {
	color: var(--primary);
}

.checkout-check label a:hover {
	text-decoration: underline;
}

.checkout-proced .btn {
	width: 100%;
}

.table-action .view i,
.table-action .trash i {
	background: var(--chalk);
}

#progress-bar {
	display: table;
	width: 100%;
	margin: 0;
	padding: 15px 15px 0;
	table-layout: fixed;
	width: 100%;
	counter-reset: step;
}
#progress-bar li {
	list-style-type: none;
	display: table-cell;
	width: 20%;
	float: left;
	font-size: 16px;
	position: relative;
	text-align: center;
}
#progress-bar li:before {
	width: 50px;
	height: 50px;
	color: #212121;
	content: counter(step);
	counter-increment: step;
	line-height: 50px;
	font-size: 18px;
	border: 1px solid #efefef;
	display: block;
	text-align: center;
	margin: 0 auto 10px;
	border-radius: 50%;
	background-color: #fff;
}
#progress-bar li:after {
	width: 100%;
	height: 10px;
	content: "";
	position: absolute;
	background-color: #fff;
	top: 25px;
	left: -50%;
	z-index: -1;
}
#progress-bar li:first-child:after {
	content: none;
}
#progress-bar li.step-done {
	color: var(--primary);
}
#progress-bar li.step-done:before {
	border-color: var(--primary);
	background-color: var(--primary);
	color: #fff;
	content: "\eed7";
	font-family: IcoFont;
}
#progress-bar li.step-done + li:after {
	background-color: var(--primary);
}
#progress-bar li.step-active {
	color: var(--primary);
}
#progress-bar li.step-active:before {
	border-color: var(--primary);
	color: var(--primary);
	font-weight: 700;
}
/*#progress-bar li:hover{color:var(--primary)}*/
#progress-bar li:hover:before {
	/*border-color:var(--primary);color:var(--primary);*/
	cursor: pointer;
}

.checkout_input_radio {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

@media (max-width: 767px) {
	.chekout-coupon,
	.checkout-charge {
		width: 100%;
	}
	.checkout-check {
		margin-top: 15px;
	}
}
@media (max-width: 480px) {
	#progress-bar li {
		font-size: 13px;
	}
	#progress-bar li::after {
		top: 16px;
	}
	#progress-bar li::before {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
}
