/* Progress bar background, or incomplete area */
.progressbar_progressBar {
    background-color: #D5D8DD;    /* Color of incomplete area */
    height: 12px;                  /* Height of the bar */
}

/* Container for the page logo and language selectors */
.layout_mainHeader {
    padding: 24px 0;      /* Padding top and bottom: 24px each */
    min-height: 36px;     /* Entire header height is at least 84px (24+24+36) */
}

/* Center the logo on the page */
 .layout_mainHeaderLeft { 
  margin-left: auto; 
  margin-right: auto; 
  }

.layout_mainHeaderLeft {
    width: 100%;
    overflow: hidden;
}

/* If logo is too large */  
.layout_logo {
    max-width: 20%;
}

/* Hide the language selector */
.layout_mainHeaderRight {
  display: none;
}

/* Calendar icon- Opens the calendar picker */
.calendar_calendarIcon, .calendarDatePickerButton .calendar_calendarIcon {
    color: #00573F;                  /* Gray */
}

/* Calendar icon - Calendar picker is open */
.calendar_calendarIconContainer_isActive .calendar_calendarIcon {
    color: #fff;                     /* White */
}

/* Calendar icon background - Calendar picker is open */
.calendar_calendarIconContainer_isActive {
    background: #00573F;             /* M&S Heritage Green */
    border: 1px solid #00573F;       /* M&S Heritage Green, 1px border */
}

/* Calendar icon border - hover and focus
                     */
.calendar_calendarIconContainer:focus, .calendar_calendarIconContainer:hover {
    box-shadow: 0 0 0 3px #00573F;    /* M&S Heritage Green, 3px border */
}

/* Calendar picker day box border - hover and focus */
.day_day:focus, .day_day:hover {
    box-shadow: 0 0 0 3px #00573F;    /* M&S Heritage Green, 3px border */
}

/* Calendar picker, selected date - circle background color */
.indicatorCircle_circle_isSelected {
    background-color: #00573F;        /* M&S Heritage Green */
}

/* Calendar picker, selected date - numeral color */
.calendar_calendarIconContainer_isActive {
    color: #fff;                     /* White */
}

/* Star scale colour - when selected */
.indicatorStar_star_isSelected {
    background: #00573F; /* M&S Heritage Green */
}