/* Remove cart icon from checkout button*/
svg.bi.bi-cart2 {
    display: none;
}

/* Hide time from selector*/
.div_service_information_box.hidden-phone {
   display: none;
}

/* Hide service time from time selector */
.service_information_box {
    display: none;
}
.div_service_information_box_phone {
    display: none;
}

/* Enhance fontsize in chart */
#cartdiv .tdcart {
	font-size: 1rem;
}

/* Hide popup div, at booking, when user adds a time to cart.
Perhaps we should change the php code instead. This only kicks in after
the pop up, so it still annoys the user, specialy on a mobile */
#msgDiv {
	display: none;
    visibility: hidden;
}
/* Hide the [+] in the cart */
[id^="href_"] {
    display: none;
}

/* Hide employe from the cart info */
.cart_extra_info {
	display: none;
}

/* Hide the remove button, from ordre confirmation site */
#listServicesTable tr td:first-child {
    display: none;
}
/* Add some margin above the submit button */
#confirmSubmit {
	margin-top: 20px;
}

/* Hide go to booking button at last checkout, before the confirm page.
On the confirmpage we show the button again, allowing the user to return and change data.
Though there perhaps we also should edit the source, so the user data returns with the user? */
body:has(ol.vbo-stepbar[data-vbosteps="3"]) #cartCheckoutBtn {
  display: none;
}
/*Hide the view toggle bar at booking frontpage*/
.view-toggle {
	display: none;
}

/*Add 10px to the top of the services*/
#services, #employees, #categories, #venues {
	margin-top: 10px;
}
/* Increase fontsize for services items */
.service-item h3 {
	font-size: 1.7rem;
}

/* Set background color, and border to service content title */
.service-content {
	background-color: #212121;
	border-color: #0000d0;
	border-style: dashed;
	text-align: center;
}
/* Fix the ugly white background crap Dam uses at checkout */
.order-details-container {
	background: #212121;
}
.booking-complete-container {
	background: #212121;
/* Hide redunden info from booking info page */
.service-group {
	display: none;
}
.booking-actions {
	display: none;
}