/* Catalogue display page */

/* To hide the dollar figure, time limit (self-paced if no time is set) */
.learn-more > div
{
display: none;
}

/* Remove Free flag on from the left top corner */
.jqFlag
{ 
display: none; 
}

/* Course display page */

/* Hide Time limit/Self-paced */
.col-md-6 > p > strong
{
display: none;
}

/* Change the text for the enrol button */
/* 1. Empty the content of the  button link*/
.hero-action > a
{ 
font-size: 0; 
}
/* 2. Change the content and re-size it*/
.hero-action > a::after
{
content: 'Access the course';
font-size: 18px;
}

/* Hide the first footer */
footer[class='callout-region'] {
display: none;
}

/* Paid course enrolment page */

/* Change 'Proceed to Payment' button to 'Enrol me now' */
/* 1. Empty the content of the button */
.form-group > button
{ 
font-size: 0;
}
/* 2. Change the content and re-size it*/
.form-group > button::after
{ 
content: 'Enrol me now';
font-size: 16px;
}

/* Customise wording for the 'Promotion Code' to 'MyUni Access Code' */
/* 1. Empty the content of the span */
span.PromotionCode__InputContainer  > div.ember-view > div.form-group > label[class="control-label"]
{
font-size: 0;
}
/* 2. Change the content and re-size it*/
span.PromotionCode__InputContainer  > div.ember-view > div.form-group > label[class="control-label"]::after
{ 
content: 'MyUni Access Code';
font-size: 14px;
}

/* Hide the total dollar figure and the text 'You saved $X' after the correct promotion code is applied */
div.PromotionCode__Total-Cost > p {
display: none;
}