.saved_carts form {
	margin-bottom: 0px;
}

.saved-cart:last-child {
	margin-bottom: 30px!important;
}

.saved-cart {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.offer-name-input, .save-offer-name {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
	display: inline-block;
}

.offer-name-input {
    width: calc(100% - 160px)!important;
    margin-right: 10px;
	margin-bottom: 0px;
}

.save-offer-name, .load-cart, .remove-cart, .update-offer-with-cart {
    background-color: #fff;
    border: 1px solid black;
    color: black;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    cursor: pointer;
    border-radius: 0px;
}

.load-cart {
    background-color: #b20000;
	border-color: #b20000;
	color: #fff;
}

.remove-cart {
    background-color: #000;
	color: #fff;
}

.update-offer-with-cart {
    background-color: #000;
	color: #fff;
}

.offer-name-section {
  position: relative;
		margin-bottom: 10px;
}

.save-offer-name {
margin-bottom: 0px;
	margin-right: 0px;
}

.cart-info-container {
	display: flex;
	align-items: center;
}

.cart-actions {
	width: 50%;
}

.cart-actions button {
	margin-bottom: 0px;
}
.cart-info {
	width: 50%;
	text-align: right;
}




@media screen and (max-width: 549px) {
	
	.cart-info-container {
    flex-direction: column;
}
	
	.cart-actions {
	width: 100%;
}
	.cart-info {
	width: 100%;
	text-align: left;
}
	
	.cart-actions .load-cart, .cart-actions .update-offer-with-cart, .cart-actions .remove-cart {
		width: 29%!important;
	}
	
	.saved_carts button {
		margin-right: 0px;
		width: 49%;
	}
	
}