.checkout-checkout .checkout-progress {
	margin: 20px 0;
	text-align: center;
}

.checkout-checkout .progress-steps {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.checkout-checkout .progress-step {
	position: relative;
	flex: 1;
	padding: 10px 20px;
	text-align: center;
	background: #f0f0f0;
	color: #555;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0 10px;
}

.checkout-checkout .progress-step:last-child {
	margin-right: 0px;
}

.checkout-checkout .progress-step:first-child {
	margin-left: 0;
}

/* flèche sortante */
.checkout-checkout .progress-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: -20px;
	width: 0;
	height: 0;
	border-top: 23px solid transparent;
	border-bottom: 23px solid transparent;
	border-left: 20px solid #f0f0f0; /* couleur de fond */
	z-index: 2;
}

/* découpe flèche entrante */
.checkout-checkout .progress-step:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 23px solid transparent;
	border-bottom: 23px solid transparent;
	border-left: 20px solid white; /* couleur du fond global de la page */
	z-index: 3;
}

/* étape active */
.checkout-checkout .progress-step.active {
	background: #007bff;
	color: #fff;
}
.checkout-checkout .progress-step.active::after {
	border-left-color: #007bff;
}

.checkout-checkout .progress-step.done {
    color: #fff;
    background: #28a745;
}

.checkout-checkout .progress-step.done::after {
	border-left-color: #28a745;
}

.checkout-checkout .ariane {
	display: none;
}



.checkout-checkout .checkout_logo {
	max-height: 80px;
	margin: 15px 0;
}

.checkout-checkout .checkout_back_cart {
	float: right;
}

.checkout-checkout .parallax-breadcrumb {
	display: none;
}

.checkout-checkout p.powered {
	background-color: white;
	float:none;
}

.checkout-checkout .header-checkout-container {
	box-shadow: 0 0 8px rgba(0,0,0,0.12);
}

.checkout-checkout .header-checkout-container .row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.checkout-checkout .header-checkout-container .row #secure_payment_label {
	text-align: right;
	font-size: 23px;
	text-transform: uppercase;
}

.checkout-checkout .header-checkout-container .row #secure_payment_label span {
	padding-right: 10px;
	border-right: 1px solid #808080;
}

.checkout-checkout .header-checkout-container .row #secure_payment_label img {
	width: 28px;
	vertical-align: -4px;
}

.checkout-checkout .only-mobile {
	display:none;
}

#checkout-checkout .panel-group input[name="shipping_method"] {
	margin-top: 6px;
}

#checkout-checkout .panel-group .xshippingpro-desc {
	font-size: 14px;
	margin-left: 22px;
	margin-top: -18px;
}

#checkout-checkout .panel-group .panel-heading .accordion-toggle {
	font-size: 16px;
}

#payment-new,
#shipping-new {
	display: flex;
	flex-wrap: wrap;
	width: 800px;
	margin: 0 auto;
}

#payment-new .form-group,
#shipping-new .form-group {
	width: 50%;
	padding: 0 15px;
}

#payment-new .col-sm-2, #payment-new .col-sm-10,
#shipping-new .col-sm-2, #shipping-new .col-sm-10 {
	width: 100%;
}

#payment-new .form-section-title,
#shipping-new .form-section-title {
	border-bottom: 1px solid #e5e5e5;
	width: 100%;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
	margin-top: 20px;
	text-transform: uppercase;
}


@media screen and (max-width: 768px) {
	.checkout-checkout .only-mobile {
		display:block;
	}
	
	.checkout-checkout .only-desktop {
		display: none;
	}
	
	.checkout-checkout .checkout_logo {
		max-height: 48px;
	}
	
	
	
	.checkout-checkout .header-checkout-container .row #secure_payment_label  {
		display: none;
	}
	
	.checkout-checkout .header-checkout-container .checkout_back_cart {
		float: right;
		font-size:11px;
	}
	
	.checkout-checkout .progress-step::before, .checkout-checkout .progress-step {
		margin: 0;
	}
	
	.checkout-checkout .progress-step::before, .checkout-checkout .progress-step i {
		font-size: 18px;
	}
	
	.checkout-checkout .progress-step::before, .checkout-checkout .progress-step::after {
		display: none;
	}
}