/*
	Custom CSS
	Please make sure your CSS rules are 
	more particular / have higher priority
	then other page styles
*/

/* Changes the colour of the time displayed under the time text once a time has been selected - CF */
#sb-timeline .steps-nav li a {
     color: #ffffff !important;
}

/* Stops a long title from going out of the container - CF*/ 
.title--h4{
    overflow-wrap: break-word;
}

/*Removes book now button from banner on booking page - CF*/
#main-buttons > div > div {
    display: none;
    visibility: hidden;
}

/*Removes book again button - CF*/
.sb_book_again{
    display: none;
    visibility: hidden;
}

/*Removes book again button - CF*/
.btn--book-again {
    display: none;
    visibility: hidden;
}

/*Removes cancel button - CF*/
.sb_cancel_btn{
    display: none;
    visibility: hidden;
}

/*Change selected date background colour to SHEilds blue and text colour to white on booking availability page - CF*/

.date.selected{
background-color: #2d2e88 !important;
}

.date.selected a {
color: #FFFFFF !important;
}

