@media (min-width: 768px) {
	.text-lg-right {
		text-align: right;
	}
}

.nav-cart {
    position: relative;
}

.nav-cart a > i {
    font-size: 20px;
}

.nav-cart a > .badge {
    position: absolute;
    top: 4px;
    right: -11px;
    font-size: 9px;
    color: #000;
    background-color: rgb(255, 200, 35);
}

.cart-container {
	width: 100%;
    /*display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;*/
}

.cartContainer {
	width: 100%;
}

.cart {
    /*display: flex;
    background-color: #FFFFFF;
    flex-direction: column;
    width: 80%;
    padding: 20px;*/
}

.cart-header {
    margin-bottom: 10px;
}

.cart-alert {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
}

.cart-invalid {
    color: #721c24;
}

.cart-alert div {
    margin-top: 0!important;
}

.cart-item {
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
    align-items: center;
    border-bottom: solid 1px #eceff1;
    margin: 0;
    padding: 10px 0;
}

.quota-reached {
	padding: 10px 10px 10px 0;
	background-color: #FFCCCB;
	opacity: 75%;
}

.item-quota-message {
	color: red;
	font-weight: bold;
}

.quota-reached .price {
	text-decoration: line-through;
}



.cart-item-icon {
    text-align: center;
    margin-right: 10px;
	width: 52px;
}

.cart-item-edit {
    flex-direction: column;
	padding: 0 10px;
	min-width: 160px;
}
 .cart-item-edit a {
	 display: block;
 }

.cart-item-edition {
    width: 150px;
    margin-bottom: 5px;
    background-color: rgb(255, 200, 35);
    border-radius: 20px;
    padding: 3px 8px;
    font-size: 12px;
    color: #000;
	white-space: nowrap;
}

.cart-item-infos,
.cart-item-infos-equipe {
    /*width: 100%;*/
    display: flex;
    flex-direction: row;
	flex-grow: 1;
	padding-left: 15px;
}

.cart-item-infos div {
    margin-right: 20px;
}

.cart-item-infos span > strong {
    color: #78909c;
}


.cart-item-options li > span {
    margin-left: 10px;
    float: right;
}

.cart-item-prix {
    min-width: 50px;
    text-align: right;
}

.cart-item-prix > .stroke-price {
	display: inline-block;
	text-decoration: line-through;
}

.cart-item-prix > .discount-price {
	color: red;
}

.cart-item-prix > .price, .cart-item-prix .quantity {
	display: block;
}

.cart-item-prix .quantity select {
	margin-right: 5px;
}

.cart-item-prix button {
    border: none;
    background-color: transparent;
    color: #ff3d00;
}

.cart-equipe-container {
}

.cart-item-equipe-add {
	display: inline-block;
	vertical-align: top;
}

.cart-item-equipe {
    //flex-direction: column;
	display: inline-block;
    width: 150px;
    height: 80px;
    border: 1px solid #bbdefb;
    background-color: #eceff1;
    margin-right: 15px;
    box-shadow: 2px 2px 2px #eceff1;
    position: relative;
    box-sizing: border-box;
    padding-top: 10px;
	vertical-align: top;
}

.cart-item-equipe > div {
    margin: 0 10px;
}

.cart-item-equipe.active {
    background-color: #FFF;
    height: inherit;
}

.cart-item-error {
	padding: 10px 15px;
	margin-top: 15px;
	width: 100%;
}

.edit-button {
    background-color: rgb(255, 200, 35);
    width: 150px;
    display: flex;
    padding: 2px 5px;
    box-shadow: inset 0 7px 6px -7px rgb(0 0 0 / 20%);
    color: #000;
    align-items: center;
}

.edit-button i {
    margin-right: 10px;
}


a.remove-equipier {
    color: #ff3d00;
	cursor: pointer;
}

.cart-item-remove:hover {
    cursor: pointer;
}

.cart-total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cart-discount {
	color: red;
}


.cart-total > div:nth-child(1) > div {
    background-color: #4fc3f7;
    color: #FFF;
    width: fit-content;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 800;
}

.cart-paiement .btn {
	margin-top: 15px;
}

.cart-top-message {
	border: 1px solid #ccc;
	background-color: rgb(241, 241, 241);
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 3px;
}
.cart-top-message p:last-child {
	margin-bottom: 0;
}

.cart-top-warning {
	border: 1px solid #ff3d00;
	background-color: rgb(255, 200, 35);
	font-weight: bold;
}
