/* stylelint-disable */
/**************************************************************

	THE USE OF NEW COLOURS ARE NOT PERMITED. ONLY THE COLOURS LISTED IN THE BRAND IDENTITY ARE ALLOWED TO BE USED. 
    REFER BRAND IDENTITY POLICY. 
    /**************************************************************

	COLOUR STYLESHEET INDEXING
	|
	|
	|___ Backgrounds
	|___ Hyperlinks
    |___ Gold hyperlinks when used on smaller font
	|___ Table borders, Table headers
	    |___Grey
        |___Gold
        |___Copper
        |___Teal
	|___ Error Message Colours

**************************************************************/
/* ALLOWED TO BE USED ONLY AS BACKGROUND COLOURS */
/* USE THIS ONLY FOR HYPERLINKS */
/* GOLD HYPERLINKS HYPERLINKS - WHEN USED ON SMALLER FONT TO PASS AA */
/* USE THIS ONLY TO HIGHLIGHT'S IN TABLE */
/* USE THIS FOR TABLE BORDERS, TABLE HEADERS */
/* GREY */
/* GOLD */
/* COPPER */
/* TEAL */
/* COLOURS ALOOWED FOR ERROR MESSAGES ON FORMS */
/* Badge color */
/* Focus color */
/* GRID LAYOUT BREAKPOINTS */
/* ANCHOR mixins */
/* ANCHOR Customisation */
.timeblock {
  float: left;
  clear: left;
  text-align: center;
  line-height: 1.5em;
  margin: 0 10px 6px 0;
  padding-right: 5px;
}

.timeblock-line {
  float: left;
  clear: left;
  text-align: center;
  line-height: 1.5em;
  margin: 0 10px 6px 0;
  padding-right: 5px;
  border-right: #000 1px solid;
}

.datetext {
  padding-left: 45px;
}
.datetext p {
  margin: 0;
}

.timetext {
  padding-left: 105px;
}

/* ANCHOR DATEBLOCK */
.dateblock {
  color: #000;
  float: left;
  clear: left;
  text-align: center;
  line-height: 1.5em;
  margin: 3px 10px 0 0;
  padding-right: 5px;
}
.dateblock.bg-black {
  color: #fff;
}

.dateblock-line {
  float: left;
  clear: left;
  text-align: center;
  line-height: 1.5em;
  margin: 3px 10px 0 0;
  padding-right: 5px;
  border-right: #000 1px solid;
}

.dateblock .time,
.dateblock-line .time {
  font-size: 10px;
  letter-spacing: 0.1em;
  position: relative;
  top: 0;
}
.dateblock .day,
.dateblock-line .day {
  font-size: 22px;
  position: relative;
  top: 0;
}
.dateblock .month,
.dateblock-line .month {
  font-size: 10px;
  letter-spacing: 0.1em;
  position: relative;
  top: 0;
}
.dateblock .year,
.dateblock-line .year {
  font-size: 10px;
  letter-spacing: 0.1em;
  position: relative;
  top: 0;
  line-height: 1em;
}

.top-label {
  color: #000;
  font-size: 10px;
  letter-spacing: 0.1em;
  position: relative;
  top: 0;
}

.middle-label {
  color: #000;
  font-size: 22px;
  position: relative;
  top: 0;
}

.bottom-label {
  color: #000;
  font-size: 10px;
  letter-spacing: 0.1em;
  position: relative;
  top: 0;
}

/* ANCHOR Text based Time Slots that has a vertical line as separtor between each slot */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.time-slots span {
  position: relative;
  padding-right: 10px;
}
.time-slots span:not(:last-child)::after {
  content: "|";
  color: #be830e;
  position: absolute;
  right: 0;
}

.anu-timeline {
  display: flex;
  align-items: start;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}
.anu-timeline .anu-timeline-item {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.anu-timeline .anu-timeline-item .anu-timeline-separator {
  width: 80px;
  height: 3px;
  background: repeating-linear-gradient(to right, #be830e, #be830e 5px, transparent 6px, transparent 10px);
}
@media (max-width: 768px) {
  .anu-timeline {
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    padding-left: 24px;
    gap: 12px;
  }
  .anu-timeline .anu-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .anu-timeline .anu-timeline-item .anu-timeline-separator {
    display: none;
  }
  .anu-timeline .anu-timeline-item::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #be830e;
    border-radius: 50%;
    left: -24px;
    top: 7px;
  }
  .anu-timeline .anu-timeline-item::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 32px;
    bottom: -16px;
    width: 3px;
    background: repeating-linear-gradient(to bottom, #be830e, #be830e 5px, transparent 6px, transparent 10px);
  }
  .anu-timeline .anu-timeline-item:last-child::after {
    display: none;
  }
}

/*# sourceMappingURL=dateblock.css.map */
