:root {
  --bs-blue: #0d6efd;
  /* blue link color */
  --bs-primary: #0664B1;
  /* primary theme color */
  --bs-primary-dark: #07599c;
  /* primary theme color dark */
  --bs-primary-rgb: 106, 0, 255;
  /* primary theme color rgb */
  --bs-primary-rgba: 106, 0, 255, 0.5;
  /* primary theme color rgba */
  --bs-primary-hsl: 265, 100%, 50%;
  --bs-primary-color-h: 265;
  --bs-primary-color-s: 100%;
  --bs-primary-color-l: 50%;
  --bs-primary-hsl: var(--bs-primary-color-h), var(--bs-primary-color-s), var(--bs-primary-color-l);
  --bs-primary-color-light: hsl(var(--bs-primary-color-h), var(--bs-primary-color-s), calc(var(--bs-primary-color-l) / .9));
  --bs-primary-color-dark: hsl(var(--bs-primary-color-h), var(--bs-primary-color-s), calc(var(--bs-primary-color-l) * .9));
  --bs-theme-orange: #ff6100;
  /* theme secondary color */
  --link-color: #0664B1;
  /* link color */
  --link-color-dark: #07599c;
  /* link color dark */
  --btn-color: #0664B1;
  /* button color */
  --btn-color-dark: #07599c;
  /* button color dark */
  --btn-color-rgba: 106, 0, 255, 0.5;
  /* button color rgba */
  --bs-red: #dc3545;
  /* error text */
  --btntext-color: #ffffff;
  /* button text */
  --btntext-color-hover: #ffffff;
  /* button text hover */
  --btn-border: #0664B1;
  /* button border */
  --btn-border-hover: #0664B1;
    /* button border hover */
}

:focus,
input:focus,
select:focus,
textarea:focus,
button:focus,
:focus-visible,
a:focus {
  outline-color: var(--bs-gray-600);
  outline-offset: 2px;
  /* outline: none; */
}
a:not([class]):focus {
  background-color: transparent;
  box-shadow: none;
}
button:focus {
  box-shadow: none !important;
}
.clear {
  clear: both;
}

a, span, div, button, input {
  text-shadow: none !important;
}

input.form-submit, .fp-upload-btn, .moodle-dialogue-bd form button, input[type="button"], input[type="submit"], input[type="reset"], input#id_submitbutton, input#id_submitbutton2, 
button.dt-button,
div.dt-button,
a.dt-button,
.ui-dialog .ui-dialog-buttonpane button 
{
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--btntext-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 1rem;
  margin: 0;
  border-radius: 3px;
  text-transform: inherit;
  box-shadow: none;
  text-shadow: none;
}

.btn-primary, .fp-upload-btn, .fp-upload-btn:focus, .moodle-dialogue-bd form button, .moodle-dialogue-bd form button:focus,
input.form-submit, input[type="button"], input[type="submit"], input#id_submitbutton, input#id_submitbutton2, button:focus, 
input.form-submit:focus, input[type="button"]:focus, input[type="submit"]:focus, input#id_submitbutton:focus, 
input#id_submitbutton2:focus,
.moodle-dialogue-base button,
button.dt-button,
div.dt-button,
a.dt-button,
.ui-dialog .ui-dialog-buttonpane button,
button.dt-button:focus,
div.dt-button:focus,
a.dt-button:focus,
.ui-dialog .ui-dialog-buttonpane button:focus 
{
  background-color: var(--btn-color);
  border-color: var(--btn-border);
  background-image: none;
  box-shadow: none;
  outline: 0;
  outline-offset: 0;
  color: var(--btntext-color);
  border-radius: 100px !important;
  box-shadow: 5px 8px 24px rgba(6, 100, 177, 0.5);
  text-transform: inherit;
}
.moodle-dialogue-base button {
  border-radius: 3px;
}
.btn-primary:hover, .fp-upload-btn:hover, .moodle-dialogue-bd form button:hover,
button:hover, input.form-submit:hover, input[type="button"]:hover, input[type="submit"]:hover, input#id_submitbutton:hover, input#id_submitbutton2:hover,
button.dt-button:hover,
div.dt-button:hover,
a.dt-button:hover,
.ui-dialog .ui-dialog-buttonpane button:hover
 {
  background-color: var(--btn-color-dark);
  border-color: var(--btn-border-hover);
  color: var(--btntext-color-hover);
  box-shadow: 5px 8px 24px rgba(6, 100, 177, 0.5);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  background-color: var(--btn-color-dark);
  border-color: var(--btn-border-hover);
  box-shadow: none;
  color: var(--btntext-color-hover);
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
  background-color: var(--btn-color-dark);
  border-color: var(--btn-color-dark);
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--btn-color);
  border-color: var(--btn-border);
}

button.disabled, input.form-submit.disabled, input[type="button"].disabled, input[type="submit"].disabled, input[type="reset"].disabled, button[disabled], input.form-submit[disabled], input[type="button"][disabled], input[type="submit"][disabled], input[type="reset"][disabled], button[type="reset"][disabled] {
  opacity: 0.65;
}

input[type="button"].disabled, input[type="submit"].disabled, input[type="button"][disabled], input[type="submit"][disabled],
input[type="button"].disabled:hover, input[type="submit"].disabled:hover, input[type="button"][disabled]:hover, input[type="submit"][disabled]:hover {
  background-color: var(--bs-gray-400);
  color: var(--bs-gray-600);
  border-color: var(--bs-gray-500);
  box-shadow: none !important;
}

input[type="reset"],
input[value="Reset"],
input[value="reset"],
input[name="reset"],
button[type="reset"],
input[name="cancel"],
input[value="Back"],
input[type="reset"][disabled],
input[value="Reset"][disabled],
input[value="reset"][disabled],
input[name="reset"][disabled],
button[type="reset"][disabled],
input[name="cancel"][disabled],
input[value="Back"][disabled],
button.btn-cancel,
input.btn-cancel,
.btn-secondary {
  background-color: transparent;
  border-color: transparent;
  color: var(--link-color);
  background-image: none;
  text-transform: inherit;
  box-shadow: none !important;
}
.btn-secondary {
  background-color: transparent !important;
  color: var(--link-color) !important;
  border-color: transparent !important;
}
input[type="reset"]:focus,
input[value="Reset"]:focus,
input[value="reset"]:focus,
input[name="reset"]:focus,
input[name="cancel"]:focus,
button[type="reset"]:focus,
input[value="Back"]:focus,
input[type="reset"]:hover,
input[value="Reset"]:hover,
input[value="reset"]:hover,
input[name="reset"]:hover,
input[name="cancel"]:hover,
button[type="reset"]:hover,
input[name="cancel"]:active,
input[name="reset"]:active,
input[value="Back"]:active,
input[value="Reset"]:active,
input[value="Back"]:hover,
button.btn-cancel:focus,
input.btn-cancel:focus,
button.btn-cancel:active,
input.btn-cancel:active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: var(--bs-gray-900) !important;
  outline: 0;
}

.btn {
  text-transform: inherit;
  border-radius: 3px;
}

.btn, input {
  background-image: none;
}

.btn:focus {
  box-shadow: none;
}

textarea:focus, select:focus, .form-select:focus, .form-control:focus, input:focus {
  box-shadow: none;
  border-color: var(--bs-gray-600);
}

.btn.active,
.btn:active,
input {
  box-shadow: inset 0 0 0 0;
}

.btn-link {
  text-decoration: none !important;
}

h6,
.h6,
.form-control,
.form-select,
.input-group-text,
.btn,
.dropdown-menu,
.accordion-button,
.toast,
.popover-header,
.fs-6,
.custom-select {
  font-size: 0.875rem;
}

.form-check .form-check-input+label {
  margin-left: 1px;
}

.form-check-input,
input[type="radio"],
input[type="checkbox"] {
  width: 14px;
  height: 14px;
  padding: 0;
}

input[type="radio"],
input[type="checkbox"] {
  margin-top: 0;
  margin-right: 0;
}

.radio-checkbox-align input[type="radio"],
.radio-checkbox-align input[type="checkbox"] {
  margin-top: -4px;
}

input.form-check-input {
  margin-top: 0.2rem;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
input[type="button"].btn-link:focus,
input.btn-link,
input.btn-link:hover,
button.btn-link,
button.btn-link:hover {
    background-color: transparent;
    border-color: transparent;
}

.btn-link,
input.btn-link,
button.btn-link {
    color: var(--bs-gray-600);
}

.btn-link:hover,
input.btn-link:hover,
button.btn-link:hover,
.btn-link:focus,
input[type="button"].btn-link:focus {
    color: var(--bs-gray-700);
}

.btn-link:disabled, .btn-link.disabled {
  color: var(--bs-gray-400);
}

.btn-link:focus {
  box-shadow: none !important;
}

::-moz-selection {
  background: var(--bs-primary);
  color: var(--bs-white);
}

::selection {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.dropdown-item:active {
  background-color: var(--bs-primary);
}

.form-label {
  color: var(--bs-gray-600);
}

.card,
.card-footer,
.card-header {
  border-color: var(--bs-gray-200);
}

select, .form-select {
  background-position: right 0.4rem center;
}

.form-input-line,
.form-control-line input[type="text"],
.form-control-line input[type="email"],
.form-control-line input[type="password"],
.form-control-line input[type="number"],
.form-control-line select,
.form-control-line textarea,
.mform input[type="text"],
.mform input[type="email"],
.mform input[type="password"],
.mform input[type="number"],
.mform select,
.mform textarea,
select {
  display: block;
  width: 100%;
  padding: 0.375rem 0 !important;
  min-height: 34px;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  background-position: right 0 center;
  border: solid var(--bs-gray-400);
  border-width: 0 0 1px 0;
  border-radius: 0;
  box-shadow: none;
}

.form-input-line:focus,
.form-control-line input[type="text"]:focus,
.form-control-line input[type="email"]:focus,
.form-control-line input[type="password"]:focus,
.form-control-line input[type="number"]:focus,
.form-control-line select:focus,
.form-control-line textarea:focus,
.mform input[type="text"]:focus,
.mform input[type="email"]:focus,
.mform input[type="password"]:focus,
.mform input[type="number"]:focus,
.mform select:focus,
.mform textarea:focus,
select:focus {
  border-color: var(--bs-gray-600);
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
}

.form-input-line:focus-visible,
.form-control-line input[type="text"]:focus-visible,
.form-control-line input[type="email"]:focus-visible,
.form-control-line input[type="password"]:focus-visible,
.form-control-line input[type="number"]:focus-visible,
.form-control-line select:focus-visible,
.form-control-line textarea:focus-visible,
.mform input[type="text"]:focus-visible,
.mform input[type="email"]:focus-visible,
.mform input[type="password"]:focus-visible,
.mform input[type="number"]:focus-visible,
select:focus-visible,
.mform select:focus-visible,
.mform textarea:focus-visible,
select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 0;
}

textarea, select, .form-select, .form-control, input[type="text"], input[type="file"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  border-color: var(--bs-gray-400);
  margin-bottom: 0;
  height: auto;
  box-shadow: none;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: var(--bs-gray-900);
  border-width: 1px;
}

textarea:focus, select:focus, .form-select:focus, .form-control:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
  box-shadow: none;
  outline: 0;
  outline-offset: 0;
  border-color: var(--bs-gray-600);
}

.form-input-line:disabled,
.form-control-line input[type="text"]:disabled,
.form-control-line input[type="email"]:disabled,
.form-control-line input[type="password"]:disabled,
.form-control-line input[type="number"]:disabled,
.form-control-line select:disabled,
.form-control-line textarea:disabled,
.mform input[type="text"]:disabled,
.mform input[type="email"]:disabled,
.mform input[type="password"]:disabled,
.mform input[type="number"]:disabled,
.mform select:disabled,
.mform textarea:disabled,
textarea:disabled,
select:disabled,
.form-select:disabled,
.form-control:disabled,
input[type="text"]:disabled,
input[type="file"]:disabled,
input[type="password"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled,
input[type="date"]:disabled,
input[type="month"]:disabled,
input[type="time"]:disabled,
input[type="week"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
input[type="url"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="color"]:disabled {
  background-color: transparent;
  opacity: 0.45;
}

.text-gray-100 {
  color: var(--bs-gray-100) !important;
}

.text-gray-200 {
  color: var(--bs-gray-200) !important;
}

.text-gray-300 {
  color: var(--bs-gray-300) !important;
}

.text-gray-400 {
  color: var(--bs-gray-400) !important;
}

.text-gray-500 {
  color: var(--bs-gray-500) !important;
}

.text-gray-600 {
  color: var(--bs-gray-600) !important;
}

.text-gray-700 {
  color: var(--bs-gray-700) !important;
}

.text-gray-800 {
  color: var(--bs-gray-800) !important;
}

.text-gray-900 {
  color: var(--bs-gray-900) !important;
}

.f-8 {
  font-size: 8px;
}

.f-9 {
  font-size: 9px;
}

.f-10 {
  font-size: 10px;
}

.f-11 {
  font-size: 11px;
}

.f-12 {
  font-size: 12px;
}

.f-13 {
  font-size: 13px;
}

.f-14 {
  font-size: 14px;
}

.f-15 {
  font-size: 15px;
}

.f-16 {
  font-size: 16px;
}

.f-17 {
  font-size: 17px;
}

.f-18 {
  font-size: 18px;
}

.f-20 {
  font-size: 20px;
}

.f-22 {
  font-size: 22px;
}
.cke_button__specialchar_icon {background: url(../pix/happy.png) no-repeat !important; width: 16px !important; height: 16px !important; background-size: 100% !important; }

/********Journey 1 start **********/

.detailed-timeline-container {
	padding-left: 25px;
    position: relative;
    top: -20px;
}
.detailed-weeks-button {
	display: none;
}
.program_details_tabs .nav-timetabs .nav-link.detailed-tablink.active + .detailed-weeks-button {
	display: block;
}
.detailed-weeks-button .weeks-button-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.detailed-weeks-button .weeks-button-row .week-button {
	width: auto;
	min-width: 86px;
	height: 34px;
	background-color: var(--bs-white);
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--bs-gray-900);
	padding: 0 10px;
	margin: 0 5px 10px 5px;
	border: 1px solid rgba(233, 236, 239, 0.5);
}
.detailed-weeks-button .weeks-button-row .week-button:hover {
	box-shadow: 0 0 6px rgba(0, 0, 0, .1);
}
.timeline-day-fieldset {	
	position: relative;
}
.timeline-day-fieldset .timeline-day-fieldset-inside {
	position: relative;
	padding-top: 15px;
	padding-bottom: 60px;	
	padding-left: 30px;
}
.timeline-day-fieldset::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 100%;
	border-radius: 0 0 8px 8px;
	background-color: var(--bs-theme-bg);
}
.timeline-day-fieldset::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 90px;
    left: 7px;
    width: 1px;
    height: calc(100% - 120px);
    border-left: 2px dashed rgba(255,255,255,0.35);
}
.timeline-day-fieldset.week_1 + .timeline-day-fieldset.week_1::after,
.timeline-day-fieldset.week_2 + .timeline-day-fieldset.week_2::after,
.timeline-day-fieldset.week_3 + .timeline-day-fieldset.week_3::after,
.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4::after,
.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5::after,
.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6::after {
	top: 30px;
	height: calc(100% - 60px);
}
.timeline-day-fieldset .timeline-day-fieldset-inside::before,
.timeline-day-fieldset .timeline-day-fieldset-inside::after {
	content: '';
	display: inline-block;
	position: absolute;	
    left: 5px;
	width: 6px;
	height: 6px;
	border-radius: 10px;
	background: rgba(255,255,255,0.35);
}
.timeline-day-fieldset .timeline-day-fieldset-inside::before {
	top: 24px;
}
.timeline-day-fieldset .timeline-day-fieldset-inside::after {
	bottom: 24px;
}
.week_day {
  position: absolute;
  left: -30px;
  right: auto;
  top: -100px;
  width: 71px;
  height: 86px;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.2));
}
.week_day .week_name {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  padding: 0;
  color: #fff;
  width: 50px;
  height: 50px;
  text-transform: uppercase;
}
.week_day .week_name .week_num {
  display: block;
}

.timeline-day-fieldset .week_day {
	top: -86px;
	left: -28px;
	z-index: 11;
	width: 71px;
    height: 78px;
}
.timeline-day-fieldset .week_day .week_name {
	top: 20px;
}
.timeline-day-fieldset .week_day::before,
.timeline-day-fieldset .week_day::after {
	display: none;
}
.timeline-day-fieldset.week_1 + .timeline-day-fieldset.week_1 .week_day,
.timeline-day-fieldset.week_2 + .timeline-day-fieldset.week_2 .week_day,
.timeline-day-fieldset.week_3 + .timeline-day-fieldset.week_3 .week_day,
.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4 .week_day,
.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5 .week_day,
.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6 .week_day {	
	display: none;
}
.timeline-day-fieldset.week_1,
.timeline-day-fieldset.week_2,
.timeline-day-fieldset.week_3,
.timeline-day-fieldset.week_4,
.timeline-day-fieldset.week_5,
.timeline-day-fieldset.week_6 {	
	padding-top: 60px;
}
.timeline-day-fieldset.week_1 + .timeline-day-fieldset.week_1,
.timeline-day-fieldset.week_2 + .timeline-day-fieldset.week_2,
.timeline-day-fieldset.week_3 + .timeline-day-fieldset.week_3,
.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4,
.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5,
.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6 {	
	padding-top: 0;
}
.timeline-day-fieldset.week_1:not(.timeline-day-fieldset.week_1 + .timeline-day-fieldset.week_1) .day-box-indicator, .timeline-day-fieldset.week_2:not(.timeline-day-fieldset.week_2 + .timeline-day-fieldset.week_2) .day-box-indicator, .timeline-day-fieldset.week_3:not(.timeline-day-fieldset.week_3 + .timeline-day-fieldset.week_3) .day-box-indicator, .timeline-day-fieldset.week_4:not(.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4) .day-box-indicator, .timeline-day-fieldset.week_5:not(.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5) .day-box-indicator, .timeline-day-fieldset.week_6:not(.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6) .day-box-indicator {
  left: -12px;
  width: 30px;
  border-radius: 50px;
  border: 5px solid var(--bs-theme-bg);
  box-sizing: content-box;
  text-align: center;
}
.timeline-day-fieldset .day-box-indicator {
	position: absolute;
    top: -20px;
    bottom: auto;
    left: -2px;
    right: auto;
    margin: 0;
    width: 20px;
    height: 30px;
    background-color: var(--bs-theme-bg);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 1;
	cursor: pointer;
}
.timeline-day-fieldset .day-box-indicator::before, 
.timeline-day-fieldset .day-box-indicator::after {
    content: "";
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid transparent;
    position: absolute;
}
.timeline-day-fieldset .day-box-indicator::after {
  border-top-color: var(--bs-theme-bg);
  bottom: -7px;
}
.day-box-indicator .day-box-circle {
	margin-top: 3px;
}
/* .week-after-collapse {
	display: none;
} */
.timeline-box.week_1 + .timeline-box.week_1 .week_day, 
.timeline-box.week_2 + .timeline-box.week_2 .week_day, 
.timeline-box.week_3 + .timeline-box.week_3 .week_day, 
.timeline-box.week_4 + .timeline-box.week_4 .week_day, 
.timeline-box.week_5 + .timeline-box.week_5 .week_day, 
.timeline-box.week_6 + .timeline-box.week_6 .week_day, 
.timeline-box.week_7 + .timeline-box.week_7 .week_day, 
.timeline-box.week_8 + .timeline-box.week_8 .week_day, 
.timeline-box.week_9 + .timeline-box.week_9 .week_day, 
.timeline-box.week_10 + .timeline-box.week_10 .week_day
.week-after-collapse .day-box-indicator::before,
.week-after-collapse .day-box-indicator::after {
	display: none;
}
.timeline-day-fieldset.week_1 + .timeline-day-fieldset.week_1 .week-after-collapse,
.timeline-day-fieldset.week_2 + .timeline-day-fieldset.week_2 .week-after-collapse,
.timeline-day-fieldset.week_3 + .timeline-day-fieldset.week_3 .week-after-collapse,
.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4 .week-after-collapse,
.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5 .week-after-collapse,
.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6 .week-after-collapse {
	display: none !important;
}
.collapse-week {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	position: absolute;
	top: -10px;
	left: 35px;
}
.collapse-week span i {
	margin-right: 10px;
}
/* week_1 */
.timeline-day-fieldset.week_1::before {
	background-color: var(--week1);
}
.timeline-day-fieldset.week_1 .day-box-indicator {
	color: var(--week1);
}
.timeline-day-fieldset.week_1 .day-box-indicator::before {
    border-top-color: var(--week1);
	top: 0;
}
.timeline-day-fieldset.week_1 .week_day svg path.fillcolor {
	fill: var(--week1);
}
.timeline-day-fieldset.week_1:not(.timeline-day-fieldset.week_1 + .timeline-day-fieldset.week_1) .day-box-indicator {
	background-color: var(--week1);
}
.timeline-day-fieldset.week_1 .collapse-week {
	color: var(--week1);
}
/* week_2 */
.timeline-day-fieldset.week_2::before {
	background-color: var(--week2);
}
.timeline-day-fieldset.week_2 .day-box-indicator {
	color: var(--week2);
}
.timeline-day-fieldset.week_2 .day-box-indicator::before {
    border-top-color: var(--week2);
	top: 0;
}
.timeline-day-fieldset.week_2 .week_day svg path.fillcolor {
	fill: var(--week2);
}
.timeline-day-fieldset.week_2:not(.timeline-day-fieldset.week_2 + .timeline-day-fieldset.week_2) .day-box-indicator {
	background-color: var(--week2);
}
.timeline-day-fieldset.week_2 .collapse-week {
	color: var(--week2);
}
/* week_3 */
.timeline-day-fieldset.week_3::before {
	background-color: var(--week3);
}
.timeline-day-fieldset.week_3 .day-box-indicator {
	color: var(--week3);
}
.timeline-day-fieldset.week_3 .day-box-indicator::before {
    border-top-color: var(--week3);
	top: 0;
}
.timeline-day-fieldset.week_3 .week_day svg path.fillcolor {
	fill: var(--week3);
}
.timeline-day-fieldset.week_3:not(.timeline-day-fieldset.week_3 + .timeline-day-fieldset.week_3) .day-box-indicator {
	background-color: var(--week3);
}
.timeline-day-fieldset.week_3 .collapse-week {
	color: var(--week3);
}
/* week_4 */
.timeline-day-fieldset.week_4::before {
	background-color: var(--week4);
}
.timeline-day-fieldset.week_4 .day-box-indicator {
	color: var(--week4);
}
.timeline-day-fieldset.week_4 .day-box-indicator::before {
    border-top-color: var(--week4);
	top: 0;
}
.timeline-day-fieldset.week_4 .week_day svg path.fillcolor {
	fill: var(--week4);
}
.timeline-day-fieldset.week_4:not(.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4) .day-box-indicator {
	background-color: var(--week4);
}
.timeline-day-fieldset.week_4 .collapse-week {
	color: var(--week4);
}
.timeline-day-fieldset.week_4 .day-box-indicator::after {
	bottom: -10px;
}
.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4 .day-box-indicator::after {
	bottom: -7px;
}
/* week_end */
/* week_5 */
.timeline-day-fieldset.week_5::before {
	background-color: var(--user-event);
}
.timeline-day-fieldset.week_5 .day-box-indicator {
	color: var(--user-event);
}
.timeline-day-fieldset.week_5 .day-box-indicator::before {
    border-top-color: var(--user-event);
	top: 0;
}
.timeline-day-fieldset.week_5 .week_day svg path.fillcolor {
	fill: var(--user-event);
}
.timeline-day-fieldset.week_5:not(.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5) .day-box-indicator {
	background-color: var(--user-event);
}
.timeline-day-fieldset.week_5 .collapse-week {
	color: var(--user-event);
}
.timeline-day-fieldset.week_5 .day-box-indicator::after {
	bottom: -10px;
}
.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5 .day-box-indicator::after {
	bottom: -7px;
}
/* week_end */
/* week_6 */
.timeline-day-fieldset.week_6::before {
	background-color: var(--yellogreen);
}
.timeline-day-fieldset.week_6 .day-box-indicator {
	color: var(--yellogreen);
}
.timeline-day-fieldset.week_6 .day-box-indicator::before {
    border-top-color: var(--yellogreen);
	top: 0;
}
.timeline-day-fieldset.week_6 .week_day svg path.fillcolor {
	fill: var(--yellogreen);
}
.timeline-day-fieldset.week_6:not(.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6) .day-box-indicator {
	background-color: var(--yellogreen);
}
.timeline-day-fieldset.week_6 .collapse-week {
	color: var(--yellogreen);
}
.timeline-day-fieldset.week_6 .day-box-indicator::after {
	bottom: -10px;
}
.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6 .day-box-indicator::after {
	bottom: -7px;
}
.timeline-day-fieldset.week_1:not(.timeline-day-fieldset.week_1 + .timeline-day-fieldset.week_1) .day-box-indicator .day-box-circle i::before, .timeline-day-fieldset.week_2:not(.timeline-day-fieldset.week_2 + .timeline-day-fieldset.week_2) .day-box-indicator .day-box-circle i::before, .timeline-day-fieldset.week_3:not(.timeline-day-fieldset.week_3 + .timeline-day-fieldset.week_3) .day-box-indicator .day-box-circle i::before, .timeline-day-fieldset.week_4:not(.timeline-day-fieldset.week_4 + .timeline-day-fieldset.week_4) .day-box-indicator .day-box-circle i::before, .timeline-day-fieldset.week_5:not(.timeline-day-fieldset.week_5 + .timeline-day-fieldset.week_5) .day-box-indicator .day-box-circle i::before, .timeline-day-fieldset.week_6:not(.timeline-day-fieldset.week_6 + .timeline-day-fieldset.week_6) .day-box-indicator .day-box-circle i::before {
  content: '\f272';
  font-weight: 300 !important;
  color: var(--bs-theme-bg);
}
.timeline-lebeltext {
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
}
.timeline-lebeltext.active::before {
  content: '\f078';
}
.timeline-lebeltext::before {
  content: '\f054';
  font-family: var(--fa);
  font-weight: 900;
  display: inline-block;
  font-size: 14px;
  position: absolute;
  left: -6px;
  transition: all .3s ease-in-out;
  width: 20px;
  height: 20px;
  text-align: center;
}
.timeline-lebeltext.active .cheveron_expand {
  display: none;
}
.timeline-lebeltext .cheveron_expand {
  display: inline-block;
}
.cheveron_tooltip_span {
  height: 20px;
  position: absolute;
  left: -8px;
  text-indent: -999px;
  width: 20px;
  margin: 0 !important;
}
.timeline-lebeltext.active .cheveron_collapse {
  display: inline-block;
}
timeline-lebeltext .cheveron_collapse {
  display: none;
}
.day_identifier {
  font-size: 14px;
  padding-right: 6px;
  text-transform: uppercase;
  font-weight: bold;
}
.timeline-lebeltext .statusbox {
  top: -2px;
}
#detailed .statusbox {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--bs-white);
  font-size: 10px;
  line-height: 22px;
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.timeline-day-toggle {
  width: 100%;
  padding: 20px 0 0 20px;
  display: none;
  transition: all .3s ease-in-out;
}
.section-box {
  display: flex;
  flex-direction: column;
}

.new-course-box.section-box {
  flex-direction: row;
  background: var(--bs-gray-200);
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  align-items: center;
}
.timeline-day-toggle .new-course-box.section-box {
  display: block;
  padding: 0;
  background: none;
}
.new-course-box .new-course-inner-box {
  width: calc(100% - 200px);
  flex-basis: calc(100% - 200px);
  max-width: calc(100% - 200px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.timeline-day-toggle .new-course-box .assest_wrapper .asset_wrapper_right, .timeline-day-toggle .new-course-box .new-course-inner-box {
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
}
.new-course-box .new-course-col {
  width: calc(33.333333% - 15px);
  flex: none;
  margin: 7px 15px 7px 0;
  height: auto;
  min-height: 140px;
  position: relative;
}
.timeline-day-toggle .new-course-box .new-course-col {
  width: calc(25% - 15px);
}
.new-course-box .new-course-col.Completed .assest_wrapper {
  background-color: rgba(51, 255, 144, 0.2);
}
.new-course-box .new-course-col .assest_wrapper {
  border-radius: 10px;
  margin: 0;
}
.new-course-box .new-course-col .assest_left_container{ display: none;}

/* week_end */


/********Journey 1 End **********/