@charset 'UTF-8';._calendarDay_1xzva_1 {
    min-width: 3em;
    min-height: 3em;
    width: 14.2857%; /* 1/7 */
    
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    aspect-ratio: 1;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 5px;
    cursor: pointer;
    background-color: var(--bg-2);
    /* background-color: transparent; */
    border: 2px solid transparent;
    padding: 5pt;
    box-sizing: border-box;
    
}

._calendarDay_1xzva_1._currentMonth_1xzva_22 {
    background-color: var(--bg-3);
}

._calendarDay_1xzva_1:not(._currentMonth_1xzva_22) {
    border-color: var(--bg-3);
}

._calendarDay_1xzva_1._today_1xzva_30:not(._selected_1xzva_30) {
    border-color: var(--site_primary_colour);
}

._calendarDay_1xzva_1._unavailable_1xzva_34 {
    background-color: var(--bg-1);
    background-image: var(--unavailable-bg-img);
    background-size: 100%;
    background-repeat: no-repeat;
}

._calendarDay_1xzva_1._selected_1xzva_30 {
    border-color: var(--site_secondary_colour) !important;
}

._calendarDay_1xzva_1:hover {
    border-color: var(--hover-border);
}

._row_1xzva_49 {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

._weeksContainer_1xzva_57 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 5px;
}

._dayLabelRow_1xzva_65 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 5px;
    font-size: large;
}

._icon_1xzva_75 {
    width: 1.5em;
    height: 1.5em;
}

/* mobile only */
@media (max-width: 600px) {
    ._row_1xzva_49, ._weeksContainer_1xzva_57 {
        gap: 3px;
    }

    ._calendarDay_1xzva_1 {
        font-size: x-small;
    }

    ._dayLabelRow_1xzva_65 {
        font-size: small;
    }
    ._icon_1xzva_75 {
        width: 1.25em;
        height: 1.25em;
    }

    ._calendarDay_1xzva_1 {
        padding: 2px;
    }
}.exercise {
}

.open-toggle {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.open-toggle.open {
    transform: rotate(180deg);
}

.set-input {
    border: 1px solid var(--highlight);
    background-color: var(--bg-3);
    width: 20pt;
    border-radius: 3px;
}

.opacity-0 {
    opacity: 0;
}

.set-height {
    height: var(--set-height);
}._row_1o19s_1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 10pt;
    /* padding: 5pt; */
    box-sizing: border-box;

    ._button-wrapper_1o19s_12 {
        width: 10rem;
    }


    ._fieldWrapper_1o19s_17 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 5pt;
        text-wrap: nowrap;
        height: 1.75rem;

        input {
            background: var(--bg3);
            border: 1px solid var(--highlight);
            border-radius: 5px;
            padding: 5px;
            box-sizing: border-box;
            width: 2rem;
        }

    }

    ._typeButton_1o19s_37 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--site_secondary_colour);
        opacity: 0.5;
        cursor: pointer;
        user-select: none;
        border: 1px solid var(--highlight);
        border-radius: 5px;
    }

    ._typeButton_1o19s_37:active {
        opacity: 1;
    }

    /* desktop only */
    @media (min-width: 600px) {
        ._typeButton_1o19s_37:hover {
            opacity: 1;
        }
    }
}




._completed_1o19s_65 {
    background-color: rgba(0,255,0,0.05);
    border-left: 2px solid rgba(0,255,0,0.3);
}

._trash_1o19s_70 {
    height: 20pt;
    width: 20pt;
    box-sizing: border-box;
    padding: 3pt;
    border-radius: 50%;

    &:hover {
        background-color: var(--highlight);
    }
}

._targetTypeDropdown_1o19s_82 {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background: var(--bg-3);
    border: 1px solid var(--highlight);
    border-radius: 4px;
    z-index: 10;
    min-width: 3rem;
    overflow: hidden;
}
._targetTypeDropdown_1o19s_82._show_1o19s_95 {
    display: flex;
}

._typeOption_1o19s_99 {
    padding: 4px 8px;
    cursor: pointer;
    white-space: nowrap;
    font-size: smaller;
}
._typeOption_1o19s_99:hover {
    background: var(--highlight);
}
._typeOption_1o19s_99._active_1o19s_108 {
    font-weight: bold;
    color: var(--site_secondary_colour);
}._dropdown_7jla7_1 {
    position: fixed;
    z-index: 1000;
    background: var(--bg-2);
    border: 1px solid var(--bg-3);
    border-radius: 4px;
}
._dropzone_peucq_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8pt;
    width: 100%;
    min-height: 8em;
    border: 2px dashed var(--highlight);
    border-radius: 8px;
    background-color: var(--bg-2);
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
    box-sizing: border-box;
    padding: 16pt;
    text-align: center;
}

._dropzone_peucq_1:hover,
._dropzone_peucq_1._dragover_peucq_21 {
    border-color: var(--site_secondary_colour);
    background-color: var(--bg-3);
    color: var(--text);
}

._fileName_peucq_27 {
    font-size: 0.85em;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

._fileBar_peucq_37 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8pt;
    width: 100%;
    padding: 6pt 10pt;
    border-radius: 6px;
    border: 1px solid var(--highlight);
    background-color: var(--bg-2);
    box-sizing: border-box;
}
._exerciseOption_fcz1q_1 {
    padding-right: 5pt;
    box-sizing: border-box;
}._loginContainer_owy5h_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

div._loginCard_owy5h_8 {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: min(90%, 300px);
    animation: _slideUp_owy5h_1 0.4s ease-out;
    gap: 20pt;
    padding: 30pt 10pt;
}

@keyframes _slideUp_owy5h_1 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

._loginForm_owy5h_29 {
    display: flex;
    flex-direction: column;
    gap: 20pt;
}

._loginForm_owy5h_29 input {
    font-size: small;
    padding: 14px 16px;
    height: auto;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

._loginForm_owy5h_29 input:focus {
    outline: none;
    border-color: var(--highlight);
    border-radius: 5px;
    /* box-shadow: 0 0 0 3px rgba(175, 0, 0, 0.1); */
}

._loginForm_owy5h_29 input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}


._loginFooter_owy5h_56 {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: x-small;
}

._loginFooter_owy5h_56 a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

._loginFooter_owy5h_56 a:hover {
    color: var(--site_primary_colour);
}

._loginFooter_owy5h_56 a:first-child {
    color: var(--site_secondary_colour);
    font-weight: 500;
}

._loginFooter_owy5h_56 a:first-child:hover {
    color: var(--site_tertiary_colour);
}

@media (max-width: 480px) {
    ._loginCard_owy5h_8 {
        padding: 32px 24px;
    }

    ._loginHeader_owy5h_89 h1 {
        font-size: 28px;
    }

    ._loginForm_owy5h_29 {
        gap: 16px;
    }
}
._card_b8p7f_1 {
    background: linear-gradient(0deg, var(--bg-2) 85%, var(--bg-3));
    border-radius: 5px;
    border: 1px solid var(--border);
    box-sizing: border-box;
    padding: 10pt;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5pt;
    box-shadow: var(--shadow);
}._root_1diaa_1 {
    position: relative;

    ._icon_1diaa_4 {
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        height: 50%;
    }

    ._icon_1diaa_4:hover {
        opacity: 0.7;
    }
}site-modal {
  display: none;
}

html {
  height: 100%;
}

.glow {
  box-shadow: 0 0 5px rgb(255, 255, 152);
  transition: box-shadow 0.1s;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}


b {
  color: var(--text);
}

:root {
  --bg: hsl(0, 0%, 2%);
  --bg-2: hsl(0,0%,5%);
  --bg-3: hsl(0, 0%, 10%);

  --text: hsl(0, 0%, 95%);
  --text-muted: hsl(0, 0%, 60%);

  --highlight: hsl(0, 0%, 30%);

  --shadow: 0px 2px 2px hsla(0, 0%, 0%, 0.07), 0px 4px 4px hsla(0,0%,0%,0.15);

  

  
  
  --site_surface: rgb(20,20,20);

  --site_surface_2: #1E1E1E;
  --site_surface_2: rgb(33,33,33);

  --site_surface_3: rgb(54,54,54);

  --text_background: #ACACAC;
  --text_surface: #DDDDDD;

  --warning: rgb(218, 135, 11);

  
  --blue_1: rgb(38, 38, 207);
  --success: rgb(0, 150, 0);


  --grey15: rgb(15,15,15);
  --grey20: rgb(20,20,20);
  --grey30: rgb(30,30,30);
  --grey60: rgb(60,60,60);
  --grey90: rgb(90,90,90);

  --site_primary_colour: rgb(175,0,0);
  --site_primary_colour_dimmed: rgb(125,0,0);
  --site_secondary_colour: rgb(38, 136, 207);
  --site_tertiary_colour: rgb(18, 184, 184);
  --border: hsl(0,0%,15%);

  --red: rgb(200,0,0);
}

:root[data-theme='light'] {
  --bg: hsl(0, 0%, 93%);
  --bg-2: hsl(0, 0%, 96%);
  --bg-3: hsl(0, 0%, 99%);
  --highlight: hsl(0, 0%, 70%);

  --text: hsl(0, 0%, 5%);
  --text-muted: hsl(0, 0%, 40%);
  --border: hsl(0,0%,70%);

  --site_surface: #aaaaaa;
}

* {
  /* transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out, border 0.3s ease-in-out; */
}

.bg {
  background-color: var(--bg);
}

.bg-2 {
  background-color: var(--bg-2);
}

.bg-3 {
  background-color: var(--bg-3);
}

.text-normal {
  color: var(--text);
}
.text-muted {
  color: var(--text-muted);
}

.side-nav-category {
  background-color: var(--site_surface);
  width: 100%;
  overflow: hidden;
}
input[type=color]::-webkit-color-swatch {
  border: none;
  border-radius: 50%;
  padding: 0;
}

#root, #react-root {
  height: 100dvh;
  width: 100dvw;
}
.grey30 {
  background-color: var(--grey30);
}

input[type=color]::-webkit-color-swatch-wrapper {
  border: none;
  border-radius: 50%;
  padding: 0;
}


a {
  text-decoration: none;
}

.scroll_into_view__ {
  opacity: 0;
  transform: translateY(20px);
}

.scroll_into_view__.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.primary-stroke {
  stroke: var(--site_primary_colour);
}
.secondary-stroke {
  stroke: var(--site_secondary_colour);
}
.tertiary-stroke {
  stroke: var(--site_tertiary_colour);
}

.svg_primary_fill {
  fill: var(--site_primary_colour);
  stroke: var(--site_primary_colour);
}

.svg_secondary_fill {
  fill: var(--site_secondary_colour);
  stroke: var(--site_secondary_colour);
}

.svg_tertiary_fill {
  fill: var(--site_tertiary_colour);
  stroke: var(--site_tertiary_colour);
}

.primary-text {
  color: var(--site_primary_colour);
}

.secondary-text {
  color: var(--site_secondary_colour);
}

.tertiary-text {
  color: var(--site_tertiary_colour);
}

.modal, .modal-new {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(90,90,90,.3);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px); /* Adds the blur effect */
  -webkit-backdrop-filter: blur(4px); /* Safari support */
}

.modal-new {
  transition: opacity 0.2s linear;
}

.modal-new:not(.modal-open) {
  opacity: 0;
  pointer-events: none;
}
.modal-new.modal-open {
  opacity: 1;
  pointer-events: auto;
}

.modal_window {
  width: 100%;
  max-width: 35em;
  display: flex;
  justify-content: center;
  align-items:center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 5pt;
  box-sizing: border-box;
  background-color: var(--bg-2);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: scale(0.95);
  opacity: 0;
  color: var(--text-muted);
  max-height: 90vh;
}


.lrpad {
  padding-left: 10pt;
  padding-right: 10pt;
}

.lrpad-5 {
  padding-left: 5pt;
  padding-right: 5pt;
}











.program_builder_session {
  scroll-snap-align: center;
  justify-content: flex-start;
  background: black;
  border-radius: 5px;
  padding: 5pt;
  min-width: 14em;
  max-width: 16em;
  height: min-content;
  overflow: hidden;
  border: 1px solid var(--grey30);
}
.pricing-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10pt;
  min-height: 19em;
  width: 15em;
  min-width: 15em;
  border: 1px solid var(--site_surface_2);
  border-radius: 10px;
  padding: 10pt;
  font-size: small;
  scroll-snap-align: center;
}

.gradient-purple {
  background: linear-gradient(to bottom right, rgb(50,50,200) 10%, rgb(0,0,0) 90%);
}

.gradient-red {
  background: linear-gradient(to top left, rgb(100, 0,0 ) 10%, rgb(0,0,0) 90%);
}

.gradient-bronze {
  background: linear-gradient(to bottom right, rgb(155,70,20) 10%, rgb(0,0,0) 90%);
  background: linear-gradient(to top left, rgb(100,45,14) 10%, rgb(0,0,0) 90%);
}

.gradient-black {
  background: linear-gradient(to bottom right, rgb(0,0,0) 10%, rgb(35,35,35) 90%);
}

.gradient-gold {
  background: linear-gradient(to bottom right, rgb(175,112,25) 10%, rgb(10,10,10) 90%);
  background: linear-gradient(to top left, rgb(100,70,14) 10%, rgb(10,10,10) 90%);
}

.gradient-grey {
  background: linear-gradient(to bottom right, rgb(100,100,100) 10%, rgb(0,0,0) 90%);
}

.gradient-titanium {
  background: linear-gradient(to bottom right, rgb(90,110,130) 10%, rgb(0,0,0) 90%);
  background: linear-gradient(to top left, rgb(60,73,87) 10%, rgb(0,0,0) 90%);
}

.gradient-gunmetal {
  background: linear-gradient(to top left, rgb(44,53,57) 10%, rgb(0,0,0) 90%);
  background: linear-gradient(to top left, rgb(65,20,20) 10%, rgb(0,0,0) 90%);
}

.gradient-teal {
  background: linear-gradient(to top left, rgb(20,60,60) 10%, rgb(0,0,0) 90%);
}

.hidden-scrollbars::-webkit-scrollbar, .tabs-container::-webkit-scrollbar {
  display: none;
}

.rows-100 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cols-100 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.card-border {
  border: 1px solid var(--border);
  background-color: var(--bg-2);
  border-radius: 5px;
}

.rounded-corners {
  border-radius: 5pt;
}
.padding-5pt{
  padding: 5pt;
  box-sizing: border-box;
}
.padding-10pt{
  padding: 10pt;
  box-sizing: border-box;
}

.gap-2 {
  gap: 2pt;
}
.gap-5 {
  gap: 5pt;
}
.gap-10 {
  gap: 10pt;
}

.gap-20 {
  gap: 20pt;
}

.gap-50 {
  gap: 50pt;
}
.bg {
  background-color: var(--bg);
}

.surface {
  background-color: var(--site_surface);
}

.surface2 {
  background-color: var(--site_surface_2);
}

.surface3 {
  background-color: var(--site_surface_3);
}

.card {
  /* background: var(--bg-2); */
  background: linear-gradient(0deg, var(--bg-2) 85%, var(--bg-3));
  border-radius: 5px;
  border: 1px solid var(--border);
  box-sizing: border-box;
  padding: 10pt;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5pt;
  box-shadow: var(--shadow);
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--grey90);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(70, 70, 70);
}

.select-styling {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Hide the default checkbox */
input[type="checkbox"] {
  accent-color: var(--site_primary_colour);
  color: black;
}

.blur {
  filter: blur(5px);
}

html {
  height: 100%;
}

input, textarea, button, select {
  font-family: 'Geist Sans', sans-serif;
  color: var(--text);
}

.text-1 {
  color: #aaaaaa;
}

.info-box {
  border: 2px solid var(--site_secondary_colour);
  border-radius: 5px;
  padding: 10pt;
  box-sizing: border-box;
  background-color: var(--bg-3);
}

.body-new {
  color: var(--text);
  margin: 0;
  padding: 0;
  max-width: 100dvw;
  min-width: 100dvw;
  min-height: 100dvh;
  max-height: 100dvh;
  background-color: var(--bg);
  /* background: linear-gradient(to bottom right, var(--bg), var(--bg-2)); */
  background-size: 100dvw 120dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: 'Geist Sans', sans-serif;
  color: var(--text);
}

.body-v3 {
  position: fixed;
  color: var(--text);
  margin: 0;
  padding: 0;
  max-width: 100dvw;
  min-width: 100dvw;
  height: 100vh;
  background-color: var(--bg);
  /* background: linear-gradient(to bottom right, var(--bg), var(--bg-2)); */
  background-size: 100dvw 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
  font-family: 'Geist Sans', sans-serif;
  color: var(--text);
  font-size: small;
}

/* Workaround for Apple bullshit*/
@supports (-webkit-touch-callout: none) {
    .body-new {
      overflow-y: auto;    /* Allow vertical scrolling */
    }
}

.hidden_scrollbars::-webkit-scrollbar {
  display: none;
}

.hidden_scrollbars {
  overflow-y: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.body {
  font-family: 'Geist Sans', sans-serif;
  background-image: -webkit-linear-gradient(102deg,rgb(0, 0, 0) 0%, var(--site_primary_colour_dimmed) 50%,rgb(0, 0, 0) 100%);
  background-repeat: no-repeat;
  color: var(--text);
  background-size: 100dvw 100dvh;
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  background-attachment: fixed;
}

.weekInput::-webkit-calendar-picker-indicator {
  filter: invert(50%);
}

.modal-heading-row {
  display: flex;
  gap: 10pt;
  justify-content: space-between;
  align-items: center;
  font-size: large;
  border-bottom: 1px solid var(--site_primary_colour);
  width: 100%;
  align-items: center;
  padding: 0 10pt 5pt 10pt;
  box-sizing: border-box;
  color: var(--text);
  font-size: small;
}

.native_datepicker {
  background: rgb(30,30,30);
  border: 0px solid rgb(0,0,0);
  border-radius: 5px;
  color: rgb(120, 120, 120);
}

.context-menu {
  position: fixed;
  z-index: 10000;
  width: 150px;
  background: rgb(10, 10, 10);
  color: rgb(225,225,225);
  border-radius: 5px;
  display: none;
  overflow: hidden;
}
.rightclick-item {
  padding: 8px 10px;
  font-size: 10pt;
  cursor: pointer;
  border-radius: inherit;
}
.rightclick-item:hover {
  background: rgb(45, 45, 45);
}

.rightclick-item-btn {
  padding: 8px 10px;
  font-size: 10pt;
  cursor: pointer;
  border: 0;
  background-color: rgb(10,10,10);
  width: 100%;
  text-align: left;
}
.rightclick-item-btn:hover:not(:disabled) {
  background: rgb(45, 45, 45);
}

.rightclick-item-btn:disabled {
  color: grey;
  background-color: rgb(5,5,5);

  cursor: not-allowed;
}

.main_container {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.progress_bar{
  width: 100%;
  border-radius: 5px;
  border: 0 solid white;
  background-image: repeating-linear-gradient(to right, green, green 50%, black 50%, black 100%);
  color: rgba(255,255,255,1);
}

.surroundPadding {
  padding: 10px 10px 10px 10px;
}
.rowPadding {
  padding: 2px 10px 2px 10px;
}
.hMargin {
  margin: 3px 0px 3px 0px;
}

.tooltip-top,
.tooltip-bottom,
.tooltip-left,
.tooltip-right,
.tooltip-br {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted gray;
}
.tooltip-top .tooltiptext,
.tooltip-bottom .tooltiptext,
.tooltip-left .tooltiptext,
.tooltip-right .tooltiptext,
.tooltip-br .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: rgb(60, 60, 60);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}


.tooltip{
  position: absolute;
  z-index: 1000;
  background-color: rgb(0,0,0);
  color: white;
  padding: 5pt;
  border-radius: 5px;
  font-size: small;
  pointer-events: none;
}


.tooltip-top:hover .tooltiptext,
.tooltip-bottom:hover .tooltiptext,
.tooltip-left:hover .tooltiptext,
.tooltip-right:hover .tooltiptext,
.tooltip-br:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip-bottom .tooltiptext {
  top: 125%;
  left: 50%;
  margin-left: -60px;
}

.tooltip-br .tooltiptext {
  top: 125%;
  left: 50%;
  margin-left: -165px;
}

.tooltip-bottom .tooltiptext::before,
.tooltip-br .tooltiptext::before {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px; /* Adjusted to center the arrow horizontally */
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgb(60, 60, 60) transparent; /* Adjusted border-color */
}

.tooltip-br .tooltiptext::before {
  left: calc(100% - 25px);
}

.tooltip-right .tooltiptext {
  top: 50%;
  left: 125%;
  margin-top: -15px;
}

.tooltip-right .tooltiptext::before {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px; /* Adjusted to center the arrow horizontally */
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgb(60, 60, 60) transparent transparent;
}

.tooltip-top .tooltiptext {
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
}

.dot-red {
    min-width: 6pt; max-width: 6pt; min-height: 6pt; max-height: 6pt; background-color: rgb(225,0,0); border-radius: 50%;
} 
.dot-green {
    min-width: 6pt; max-width: 6pt; min-height: 6pt; max-height: 6pt; background-color: rgb(0,200,0); border-radius: 50%;
}

.gradient-hr {
    border-image: linear-gradient(to right,rgba(0,0,0,0),var(--site_primary_colour), rgba(0,0,0,0)) 1;
}

.primary-ul-gradient {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right,rgba(0,0,0,0),var(--site_primary_colour), rgba(0,0,0,0)) 1;
}

.secondary-ul-gradient {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right,rgba(0,0,0,0),var(--site_secondary_colour), rgba(0,0,0,0)) 1;
}


.primary-ul-gradient-right {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right,var(--site_primary_colour), rgba(0,0,0,0)) 1;
}

.secondary-ul-gradient-right {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right,var(--site_secondary_colour), rgba(0,0,0,0)) 1;
}



.menu-icon {
  cursor: pointer;
  border-radius: 5em;
  padding: 3pt;
  transition: 100ms;
}

.menu-icon:hover {
  background-color: gray;
}


.tooltip-top .tooltiptext::before {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px; /* Adjusted to center the arrow horizontally */
  border-width: 5px;
  border-style: solid;
  border-color: rgb(60, 60, 60) transparent transparent transparent; /* Adjusted border-color */
}



.modern-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 2em;
  width: 10em;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  padding-left: 10pt;
  padding-right: 10pt;
  box-sizing: border-box;
  height: 2.5em;
}

.outline-button {
  color: var(--text);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #666666;
  border-radius: 5px;
  white-space: nowrap;
  padding: 6pt 10pt 5pt 10pt;
  background: transparent;
  transition: all 200ms;
  padding: 6pt 10pt 5pt 10pt;
  height: 2.5em;
  box-sizing: border-box;
}

.outline-button:active {
  color: var(--text);
  border: 1px solid var(--site_secondary_colour);
  background: var(--site_secondary_colour);
}

.rounded-button {
  color: var(--text);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
  padding: 6pt 10pt 5pt 10pt;
  background-color: transparent;
  transition: opacity 0.1s ease-in-out;
  opacity: 1;
  height: 2.5em;
  box-sizing: border-box;
}

.rounded-button.grey {
  background: rgb(15,15,15);
}

.rounded-button.grey:hover {
  transition: 200ms;
  background: var(--site_primary_colour);
  opacity: 1;
}

.rounded-button:hover {
  opacity: 0.7;
}

.rounded-button:disabled {
  background: rgb(30,30,30);
  color: grey;
}

.rounded-button:disabled:hover{
  cursor: not-allowed;
  box-shadow: none;
}

.wrapper-centered-rows, .rows{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.wrapper-centered-cols, .cols{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* For session.html */
.sessionApp {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 70%;
  height: 30em;
}

.heading-box {
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}



.mob-nav {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.mob-nav-open {
  animation: expand 0.3s forwards;
}

.mob-nav-close {
  animation: contract 0.3s forwards;
}

.rotate {
  animation: rotate180 .3s both;
}

.unrotate {
  animation: unrotate180 .3s both;
}


@keyframes rotate180 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes unrotate180 {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}





.floating-shadow::after {
  content: '';
  position: absolute;
  bottom: -10px; /* Adjust the distance of the shadow from the element */
  left: 50%;
  transform: translateX(-50%);
  width: 80%; /* Adjust the width of the shadow */
  height: 20%; /* Adjust the height of the shadow */
  background: rgba(0, 0, 0, 0.3); /* Adjust the shadow color and opacity */
  border-radius: 50%;
  z-index: 1;
}

.progressBarTop {
  height: 5px;
  width: 100%;
  background: var(--site_primary_colour);
  transition: width 0.5s ease;
  --mask: linear-gradient(to right, rgba(0,0,0, 1) 0, rgba(0,0,0, 1) 8%, rgba(0,0,0, 1) calc(100% - 10px), rgba(0,0,0, 0) 100%
  ) 100% 50% / 100% 100% repeat-x;
  
  -webkit-mask: var(--mask); 
  mask: var(--mask);
  
}

.fade-sides {
  --mask: linear-gradient(to right, rgba(0,0,0, 0) 0, rgba(0,0,0, 1) 8%, rgba(0,0,0, 1) 92%, rgba(0,0,0, 0) 100%
  ) 100% 50% / 100% 100% repeat-x;
  
  -webkit-mask: var(--mask); 
  mask: var(--mask);
  
}

.fade-right {
  --mask: linear-gradient(to right, rgba(0,0,0, 1) 0, rgba(0,0,0, 1) 8%, rgba(0,0,0, 1) 92%, rgba(0,0,0, 0) 100%
  ) 100% 50% / 100% 100% repeat-x;
  
  -webkit-mask: var(--mask); 
  mask: var(--mask);
  
}


.fade-bottom {
  --mask: linear-gradient(to bottom, rgba(0,0,0, 1) 0, rgba(0,0,0, 1) 8%, rgba(0,0,0, 1) 50%, rgba(0,0,0, 0) 90%);
  
  -webkit-mask: var(--mask); 
  mask: var(--mask);
}

.fade-top {
  --mask: linear-gradient(to top, rgba(0,0,0, 1) 0, rgba(0,0,0, 1) 8%, rgba(0,0,0, 1) 50%, rgba(0,0,0, 0) 90%);
  
  -webkit-mask: var(--mask); 
  mask: var(--mask);
}

.addButton {
    border: none;
    border-radius: 5em;
    height: 2.5em;
    background-color: var(--site_secondary_colour);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5pt;
    padding-left: 10pt;
    padding-right: 10pt;
    cursor: pointer;
}
.addButton:hover {
    opacity: 0.8;
}

@keyframes expand {
  0% {
    width: 0px;
    height: 0px;
  }
  100% {
    width: 50%;
    height: 290pt;
  }
}

@keyframes contract {
  0% {
    width: 50%;
    height: 240pt;
  }
  100% {
    width: 0px;
    height: 0px;
  }
}
.pane_title {
  padding-left: 20pt;
}
.mob-nav-btn {
  background-color: rgba(0,0,0,0.8);
  border: 0;
  text-align: right;
  cursor: pointer;
}
.mob-nav-btn:hover {
  background-color: rgba(30,30,30,0.8);
  border: 0;
  text-align: right;
}

.side-nav-btn {
  background-color: rgba(0,0,0,1);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 10pt;
  /*
  font-weight: bold;
  font-size: medium;
  */
  padding-top: 10pt;
  padding-bottom: 10pt;
  text-indent: 10pt;
  width: 100%;
  box-sizing: border-box;
}



.basic_button {
  border-radius: .25em;
  background-color: #383838;
  min-height: 2em;
  max-height: 2em;
}

.basic_button:hover {
  background-color: #6d6d6d;
  transition: 200ms;
}

.basic_button_highlighted {
  background-color: var(--site_primary_colour);
  color: black;
}

.top-nav {
  position: fixed;
  z-index: 9000;
  background-color: rgba(0,0,0,1);
  top: 0px;
  height: 40pt;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.side-nav-child {
  background-color: rgba(0,0,0,0);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-right: 5px solid transparent;
  text-align: left;
  cursor: pointer;
  font-size: 10pt;
  font-style: italic;
  font-weight: normal;
  padding-top: 5pt;
  padding-bottom: 5pt;
  text-indent: 20pt;
  height: 15pt;
  width: 100%;
  color: var(--text-muted);
}

.side-nav-child.selected {
  border-right-color: var(--site_primary_colour);
}

.side-nav-btn:hover {
  background-color: rgba(50,50,50,1);
}

.side-nav-child:hover {
  background-color: rgba(50,50,50,1);
}

.space-between{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.whiteBorder{
  border: 3px solid white;
}

.app-panel {
  background-color: rgba(0,0,0,1);
  width: 100%;
  border-radius: 5pt;
  border: 0px solid rgb(0,0,0);
}
.shadow {
  box-shadow: 3px 5px 5px 0 rgba(0,0,0,.5);
}
.black_input {
  background: rgba(0, 0, 0, 1);
  border: 0;
  border-radius: 5px;
  color: rgb(200, 200, 200);
}
.planning_table_header_cell {
  width: 10pt;
  height: 10pt;
  min-width: 10pt;
  font-size: x-small;
  overflow: visible;
  text-wrap: nowrap;
}

.planning_table_cell {
  width: 10pt;
  height: 10pt;
  min-width: 10pt;
  font-size: x-small;
  overflow: visible;
  text-wrap: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.planning_table_cell {
  background: var(--grey60);
  border-radius: 3px;
}

.background_primary {
  background: var(--site_primary_colour);
}

.background_secondary {
  background: var(--site_secondary_colour);
}

.background_tertiary {
  background: var(--site_tertiary_colour);
}

.planning_table_header {
  width: min-content;
  min-width: 8em;
  max-width: 8em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-style: italic;
  border-right: 1px solid black;
}



.analyze_program_table td {
  color: rgb(150,150,150);
}

.slim_table tr,th {
  height: 2em !important;
}

.simple_table {
  width: 100%;
  font-size: small;
  border-collapse: collapse;
}
.simple_table tr {
  height: 3em;
}


.simple_table td, th {
  padding-left: 10pt;
  padding-right: 10pt;
}
.simple_table th {
  text-align: left;
}
.simple_table thead tr:first-child, .simple_table_header_row {
  background-color: rgb(20, 20, 20);
  font-weight: bold;
  border-bottom: solid 1px rgb(45,45,45);
}

.simple_table tr:not(:last-child) {
  border-bottom: solid 1px rgb(45,45,45);
}
.simple_table tr:hover {
  background-color: #383838;
}

/*
.simple_table tbody tr:nth-child(even) {
  background-color: rgb(12,12,12);
}
*/

/*Corner Rounding*/
.simple_table thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}
.simple_table thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}
.simple_table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}
.simple_table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.hmap_table {
  width: 100%;
  font-size: small;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}

.hmap_table tr td {
  width: auto;
}

.zebra_table {
  width: 100%;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.zebra_table tr {
  font-size: small;
  border: none;
}
.zebra_table th {
  text-align: left;
}
.zebra_table tr:nth-child(even) {
  background-color: var(--site_surface_2);
}
.zebra_table tr:nth-child(odd) {
  background-color: var(--site_surface_3);
}
.zebra_table tr:not(:first-child):hover {
  background-color: #121212;
  cursor: pointer;
}
.sub-app{
  width: 85%;
  display: flex;
  justify-content:center;
  align-items:center;
  border: 0;
  border-radius: 8px;
}

.popout-hover {
  cursor: pointer;
  transition: transform 0.3s
}

.popout-hover:hover {
  transform: scale(1.02);
}

.text-hover {
  transition: color 0.3s;
  color: var(--highlight);
}
.text-hover:hover {
  color: var(--site-text);
}
.signup-button, .multicolor-button {
    color: white;
    padding: 10pt;
    border-radius: 5px;
    font-size: normal;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    border: 1px solid var(--site_secondary_colour);
    background: transparent;
    transition: all 0.3s ease;
}

.signup-button:hover, .multicolor-button:hover {
    background: linear-gradient(to top right, var(--site_secondary_colour), var(--site_tertiary_colour));
    box-shadow: 0 0 10px var(--site_tertiary_colour);
    transform: scale(1.05);
}
  
.multicolor-button {
  background: linear-gradient(90deg, var(--site_secondary_colour), var(--site_primary_colour)) !important;
  font-weight: bold;
  font-size: large;
}

.multicolor-button-bg {
  background: linear-gradient(90deg, var(--site_secondary_colour), var(--site_primary_colour));
  /* background: radial-gradient(
    circle at 80% -30%,
    var(--site_secondary_colour),
    var(--site_primary_colour)); */
  font-weight: bold;
  font-size: large;
  border-radius: 5px;
  padding: 2px;
  box-sizing: border-box;
  min-width: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 2em;
}

.multicolor-button-bg:hover {
  transform: translateY(2px);
  opacity: 0.8;
}

.pad-5 {
  padding: 5pt;
}
.pad-10 {
  padding: 10pt;
}
.pad-20 {
  padding: 20pt;
}

.tooltip-provider {
  /* position: 'relative' */
}
.basic-tooltip {
  position: relative;
}
.basic-tooltip::after {
  content: attr(data-tooltip-text);
  /* content: 'tooltip'; */
  position: absolute;
  color: var(--text);
  background-color: var(--highlight);
  padding: 5pt;
  border-radius: 5px;
  font-size: small;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  transition: opacity 200ms;
  z-index: 1000;
  /* top: 50%; */
  left: calc(100% + 5pt + 1pt); /* 5pt gap + 1pt for arrow border */
}
.basic-tooltip::before {
  content: '';
  position: absolute;
  /* Center vertically and align with the tooltip's top/bottom */
  top: 50%; 
  transform: translateY(-50%);

  /* Align the arrow tip to the left edge of the ::after (tooltip) box */
  left: calc(100% + 5pt - 5pt - 3pt); /* (100% + 5pt) is the start of ::after, subtract 5pt for the arrow size */
  
  /* Create the triangle shape using borders */
  width: 0;
  height: 0;
  border-width: 5pt; /* Determines the size of the arrow */
  border-style: solid;
  /* Only the right border is colored (the same as the tooltip background).
     The other borders are transparent. This creates a triangle.
  */
  border-color: transparent var(--highlight) transparent transparent;
  z-index: 1001; /* Must be on top of the tooltip */
}

.multicolor-button-bg > button {
  color: var(--text);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  padding-left: 10pt;
  padding-right: 10pt;
  padding-top: 2pt;
  box-sizing: border-box;
  margin: 0;
}

.border-box {
  box-sizing: border-box;
}
.border-bottom-grey {
  border-bottom: solid 1px var(--grey30);
}

.breadcrumb-link {
  color: var(--text-muted) !important;
  text-decoration: none;
  color: '#666666';
  transition: all 200ms;
}
.breadcrumb-link:hover {
  text-decoration: underline;
  cursor: pointer;
  color: var(--text) !important;
}

.text-slim {
  font-weight: lighter;
}

.text-slim-xs {
  font-size: x-small;
  font-weight: lighter;
}

.text-slim-sm {
  font-size: small;
  font-weight: lighter;
}
.text-slim-med {
  font-size: medium;
  font-weight: lighter;
}
.text-slim-lg {
  font-size: large;
  font-weight: lighter;
}
.text-slim-xl {
  font-size: x-large;
  font-weight: lighter;
}
.text-slim-xxl {
  font-size: xx-large;
  font-weight: lighter;
}

.text-xs {
  font-size: x-small;
}

.text-sm {
  font-size: small;
}
.text-med {
  font-size: medium;
}
.text-lg {
  font-size: large;
}
.text-xl {
  font-size: x-large;
}
.text-xxl {
  font-size: xx-large;
}

.app_select {
  color: var(--text);
  background-color: rgb(15,15,15);
  border: solid 1px rgb(55,55,55);
  border-radius: .5em;
  /* font-weight: bold; */
  height: 2em;
  padding-left: .5em;
  padding-right: .5em;
  box-sizing: border-box;
}

.newModal {
  max-width: 45em;
  width: 100%;
  border: 0px solid white;
  border-radius: 5px;
  background-color: var(--bg);
  font-size: small;
  overflow: hidden;
}



.app-button {
  font-size: small;
  font-weight: bold;
  height: 40px;
  min-height: 40px;
}

.ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.pointer {
  cursor: pointer;
}

.bottomBorderRed {
  border-bottom: solid 2px var(--site_primary_colour);
  transition: border-bottom 600ms;
}



.lightgrey-selected {
  background-color: var(--site_surface_3);
}


.flexyBoi {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.left_align {
  display: flex;
  text-align: left;
}

.calendarLabel {
  background-color: rgba(83, 83, 83, 0);
  height: 20px;
  width: 13.8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 5px;
  border-width: 1px;
  padding: 0px 0px 28px 0px;
}
.smallSquareButton {
  height: 80%;
  aspect-ratio: 1;
  border: 0px;
}
.stackedRows {
  display: flex;
  flex-direction: row;
  width: 90%;
  height: 25%;
  margin-top: 5%;
  align-items: center;
  justify-content: space-between;
}


.btn-shadow{
  box-shadow: 0 0 5px rgb(255, 255, 255);
}
.fade-edges {
  /*-webkit-mask-image: linear-gradient(to right,rgba(0,0,0,0),rgba(0,0,0,1),3%, rgba(0,0,0,1) 97%, rgba(0,0,0,0))*/
  -webkit-mask-image: linear-gradient(to right,rgba(0,0,0,1) rgba(0,0,0,1) 97%, rgba(0,0,0,0))
}

.calendar-day-label {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.greyedDay {
  opacity: 0.3;
}

.calendarDay {
  background-color: rgb(5,5,5);
  border: 1px solid rgb(30,30,30);
  padding-top: 7pt;
  box-sizing: border-box;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 5px;
  border-width: 1px;
  transition: all 0.05s ease-in;
  overflow: hidden;
  position: relative;
}
.calendarDay:hover {
  /*background-color: rgba(255, 83, 83, 0.2);*/
  box-shadow: inset 0 0 10px var(--site_secondary_colour);
}


.h-no-margin {
  margin-top: 0;
  margin-bottom: 0;
}
.calendarDay.hasNote::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(10px,15%);
  height: min(10px,15%);
  background: linear-gradient(45deg, transparent 50%, var(--site_tertiary_colour) 50%);
}

.calendarDay.unavailable {
  background-color: rgb(18,18,18);
  background-image: url('/img/unavailable-x.png');
  background-size: 100%;
  background-repeat: no-repeat;
}

.ul-dotted {
  text-decoration: dotted underline;
}

.util_button {
    background-color: rgb(30,30,30);
    width: 100%;
    display: flex;
    flex-direction: row;
    text-align: center;
    border-radius: 5px;
    padding: 3pt;
    box-sizing: border-box;
    align-items: baseline;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.util_button:hover {
    background-color: rgb(50,50,50);
}

.util_button.selected {
    background-color: var(--site_secondary_colour);
}

.utility-button-sq {
  background-color: transparent;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  flex-direction: row;
  text-align: center;
  border-radius: 5px;
  padding: 5pt;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background-color 200ms;
}
.utility-button-sq:hover {
  background-color: var(--bg-3);
}

.hover-grey-bg {
  transition: background-color 100ms;
}
.hover-grey-bg:hover {
  background-color: rgb(50,50,50);
}

.rounded {
  border-radius: 5px;
}

.modern-input, .modern-select, .modern-textarea, .transparent-input {
  background-color: var(--bg-3);
  border: none;
  border-radius: 5px;
  color: var(--text);
  padding: 5pt;
  box-sizing: border-box;
  height: 2.5em;
  width: 100%;
  max-width: 100%;
}


.dashboard-session-pane {
  background-color: var(--bg-2);
  border-radius: 5px;
  min-width: 8em;
  border: 1px solid rgb(30,30,30);
  gap: 3pt;
}

.dashboard-session-pane > .toprow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 3pt;
  overflow-y: hidden;
  max-height: 15pt;
  height: 15pt;
  width: 100%;
  background: rgb(30,30,30);
  border-bottom: 1px solid rgb(30,30,30);
}

.dashboard-session-pane > .detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  transition: max-height 0.3s ease-in-out;
  font-size: small;
  width: 90%;
}
.day-selected {
  box-shadow: inset 0 0 10px var(--site_primary_colour);
}

.animated-underline-button-underline {
  width: 0%;
  height: 2px;
  background-color: var(--site_primary_colour);
  transition: width 200ms ease-in-out;
}

.setInputField {
  width: 50px;
  background-color: rgb(60, 60, 60);
  border-radius: 5px;
  border: 0px solid white;
  color: cornsilk;
  font-weight: bold;
  text-align: center;
  width: 25pt;
}


.target_field{
  text-align: center;
  width: 35px;
  background-color: rgba(0,0,0,0);
  border: 0 black;
  border-bottom: 2px solid rgb(60,60,60);
}
.noArrows {
  appearance: textfield;
  -moz-appearance: textfield;
}

.noArrows::-webkit-outer-spin-button,
.noArrows::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}




/*
.coaching_client {
  justify-content: space-between;
  align-items: center;
  padding: 3pt 10pt 3pt 10pt;
  border-top: 1px solid gradient(rgba(90,90,90,0),rgb(90,90,90,1), rgb(90,90,90,0));
}
  */

.coaching_client {
  justify-content: space-between;
  align-items: center;
  padding: 5pt 10pt 5pt 10pt;
  box-sizing: border-box;

  /* Define the border thickness */
  border-top-width: 1px;
  border-top-style: solid; /* This is necessary for border-image to work */

  /* Apply the gradient as a border image */
  border-image: linear-gradient(to right,rgba(60,60,60,0),rgba(60,60,60,1), rgba(60,60,60,0)) 1;
  /* The '1' after the gradient means the border-image-slice value,
     which tells the browser to slice the image into 1 part, effectively
     using the entire gradient for the border. */

  /* Alternative for vertical gradients if needed for other borders */
  /* border-image: linear-gradient(to bottom, rgb(0,0,0), rgb(30,30,30)) 1; */
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.redBorder {
  border: solid 3px;
  border-radius: 10px;
  border-color: rgba(200, 0, 0);
}
.grey_input_text {
  width: 75%;
  max-width: 250px;
  height: 16pt;
  font-size: 12pt;
  font-style: italic;
  background-color: rgba(51, 51, 51, 0.5);
  border-radius: 5px;
  border-width: 0px;
  border-style: solid;
  font-weight: bold;
  text-align: center;
}

.AppBtn {
  border-radius: 5px;
  border: 0px;
  background-color: rgb(18, 46, 168);
  height: 75%;
  width: 22%;
  font-weight: bold;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  border: black ;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  width: 20%;
  height: min-content;
  text-align: center;
}


@media (hover: hover) {
  AppBtn:hover {
    transition: 100ms;
    opacity: 50%;
  }
}

.banner {
  background-color: rgba(0, 0, 0, 0);
  top: 0px;
  text-align: right;
  margin: 0;
  height: 50px;
  display: flex;
  flex-direction: row;
}
.bannerButton {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  height: 100%;
  width: 24%;
}

.bannerButton:hover {
  transition: 100ms;
  background-color: rgb(117, 117, 117, 0.2);
  color: rgb(200, 0, 0);
}

.set {
  margin-bottom: 5px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
hr {
  border: 1px solid var(--site_primary_colour);
  width: 100%;
}
.inputFieldBlk {
  background: rgba(0, 0, 0, 0);
  border: 0;
  font-weight: bold;
  color: rgb(200, 200, 200);
  font-size: 150%;
  font-style: italic;
  width: 50%;
}
.inputFieldProtocol {
  background: rgba(0, 0, 0, 0);
  border: 0;
  color: rgb(200, 200, 200);
  font-size: 100%;
  font-style: italic;
  width: 50%;
}


.input-outline {
  border: 1px solid var(--highlight);
  border-radius: 5px;
  background-color: var(--bg-3);
  color: rgb(200,200,200);
  padding: 5pt;
  box-sizing: border-box;
}


.program-builder-day{
  width: 10em;
  height: 15em;
  background-color: rgb(30,30,30);
  border-radius: 5px;
  overflow: hidden;
  margin-right: 1%;
}
.program-builder-exercise{
  width: 10em;
  min-width: 10em;
  height: min-content;
  min-height: 5em;
  background-color: rgb(30,30,30);
  border-radius: 5px;
  overflow: hidden;
  margin-right: 1%;
}
.inputGrey {
  border-radius: 5px;
  border: 0px solid rgb(120,120,120);
  background: rgb(60,60,60);
}
.no-text-spacing{
  line-height: 0;
}

table.expanding-columns td, th {
  transition: width 0.3s;
}

.pillButton {
  display: flex;
  flex-direction: row;
  gap: 5pt;
  box-sizing: border-box;
  padding: 10pt;
  height: 1.5em;
  border-radius: 100em;
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.pillButton:hover {
  transition: opacity 0.3s;
  opacity: 0.8;
}

.coach-dash-window{
  width: 100%;
  align-items: flex-start;
  padding: 0 10pt 0 10pt;
  gap: 5pt;
  padding-top: 10pt;
}

.selectBlack {
  border: solid 0px;
  border-radius: 5px;
  background: black;
  color: rgb(200,200,200);
  font-weight: bold;
  width: 15em;
}


.hr {
  width: 100%;
  border-bottom: 1px solid var(--site_primary_colour);
}
.generic_input_field {
  background-color: rgb(0,0,0);
  border-radius: 5px;
  border-width: 0px;
  text-align: right;
  font-weight: bold;
}

.modal_input_field1, .modal_input_field {
  background-color: rgb(30,30,30);
  border: solid 1px rgb(55,55,55);
  border-radius: 2px;
  text-align: right;
  font-size: normal;
  color: #DDDDDD;
}

.modal_input_field {
  min-width: 10em;
}

.dropdownBlack{
  background: rgba(0,0,0,0);
  border: 0;
  text-align: center;
  font-weight: bold;
  font-size: medium;
}


.center-text{
  text-align: center;
}
.pt8{
  font-size: 8pt;
}
.popup {
  width: 40%;
  height: 25%;
  background-color: rgb(22, 22, 22);
  margin: 5% auto 50% auto;
  border: 3px solid white;
  border-radius: 10px;
}
.addex_popup {
  width: 70%;
  height: 70%;
  background-color: rgb(22, 22, 22);
  border: 3px solid white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2% 2% 2% 2%;
}
.hflip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.centerify {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.centeredRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  width: 60%;
}


.unselectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* Disable touch callout (iOS) */
  -webkit-touch-callout: none;

  /* Prevent tap highlight color on iOS */
  -webkit-tap-highlight-color: transparent;
}

.sessionButton {
  width: 95%;
  height: min-content;
  background-color: var(--site_primary_colour);
  border: 0px;
  border-radius: 5px;
  color: black;
  cursor: pointer;
  margin-top: 1px;
  margin-bottom: 1px;
}
.topRow {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}
.inlineImgButton {
  height: 90%;
}
.inlineImgButton:hover {
  transition: 100ms;
  opacity: 50%;
}
.inlineButton {
  height: 90%;
}
.inlineButton:hover {
  transition: 100ms;
  opacity: 50%;
}
.menu-button {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 15%;
  white-space: wrap;
  cursor: pointer;
}



.grey-gradient-button {
  background: linear-gradient(to bottom right, rgb(125,125,125) 25%, rgb(50,50,50) 75%);
}
.blue-gradient-button {
  background: linear-gradient(to bottom right, rgb(12,35,130) 0%, var(--blue_1) 25%, rgb(8,25,100) 75%);
}

.red-gradient-button {
  background: linear-gradient(to bottom right, rgb(175,0,0) 25%, rgb(75,0,0) 75%);
}

.green-gradient-button {
  background: linear-gradient(to bottom right, rgb(0,175,0) 25%, rgb(0,75,0) 75%);
}

.gold-gradient-button {
  background: linear-gradient(to bottom right, rgb(175,175,0) 25%, rgb(75,75,0) 75%);
}


.primary-gradient {
  background: linear-gradient(to bottom right, var(--site_primary_colour) 25%, rgb(0,0,0) 150%);
}

.secondary-gradient {
  background: linear-gradient(to bottom right, var(--site_secondary_colour) 25%, rgb(0,0,0) 150%);
}

.tertiary-gradient {
  background: linear-gradient(to bottom right, var(--site_tertiary_colour) 25%, rgb(0,0,0) 150%);
}

.width_collapse {
  transition: width 0.5s ease;
}

.height_collapse {
  transition: height 0.5s ease;
}

.animated-bg {
  background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #91eae4);
  background: linear-gradient(200deg, var(--bg) 25%, var(--site_primary_colour) 50%, var(--bg) 75%);
  background-size: 800% 800%; /* make it bigger than the element */
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



.spinner {
  border: 4px solid rgb(0,0,0,0.5);
  aspect-ratio: 1;
  border-top: 4px solid var(--site_primary_colour);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.toggleButton-selected{
  height: 25px;
  border-radius: 5px;
  border: 0px;
  background-color: rgb(150, 0, 0);
  color: cornsilk;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}
.toggleButton-selected:hover {
  transition: 100ms;
  opacity: 50%;
}
.toggleButton-selected:disabled {
  background-color: rgb(145, 65, 65);
  transition: 100ms;
  opacity: 50%;
  cursor: default;
}

.toggleButton-unselected{
  height: 25px;
  border-radius: 5px;
  border: 0px;
  background-color: rgb(0, 0, 0);
  color: cornsilk;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}
.toggleButton-unselected:hover {
  transition: 100ms;
  opacity: 50%;
}
.toggleButton-unselected:disabled {
  background-color: rgb(0, 0, 0);
  transition: 100ms;
  opacity: 50%;
  cursor: default;
}



.wrapper1 {
  display: flex;
  flex-direction: row;
  justify-content: baseline;
}

.wrap {
  flex-wrap: wrap;
}




.circular-progress {
  --size: 250px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 20px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * pi * 2);
  --dash: calc((var(--progress) * var(--circumference)) / 150);
  animation: progress-animation 1s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-progress circle.bg {
  stroke: rgba(0,0,0,0);
}

.circular-progress circle.fg {
  transform: rotate(calc(90deg + 60deg));
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  transition: stroke-dasharray 0.3s linear forwards;
  stroke: var(--progress-color);
}

.circular-progress {
  --progress-color: 
  hsl(calc((var(--progress) / 100) * 120), 100%, 50%);
}
.circular-progress {
  --progress-color: 
  hsl(calc(0.01*pow(100,(var(--progress) / 100)) * 120), 100%, 50%);
}

@property --progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --end-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 100;
}

@keyframes progress-animation {
  from {
    --progress: 0;
  }
  to {
    --progress: var(--end-progress);
  }
}

.grow {
  flex-grow: 1;
}
.surface-padding {
  padding: 10pt;
  box-sizing: border-box;
  border-radius: 5px;
}

.slideshow_pane {
  width: 80%;
  max-width: 25em;
  justify-content: flex-start;
  align-items: center;
  gap: 20pt;
  display: none;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100dvh;
  padding: 40pt 10pt 0 10pt;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: small;
  gap: 10pt;
  max-width: 100dvw;
}

.page-content-mob-friendly {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100dvh;
  padding: 40pt 10pt 0 10pt;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: small;
  gap: 10pt;
  max-width: 100dvw;
}

.page-content-mob-friendly > *:not(.tabs-container) {
  padding-left: 10pt;
  padding-right: 10pt;
}

.page-content-mob-friendly > *:first-child:not(.tabs-container):not(header) {
  margin-top: 10pt;
}


.nav-padding {
  padding-top: 40pt;
}
.hover-action, .hover-bg-3 {
  transition: background-color 300ms;
}

.hover-transparent {
  transition: opacity 300ms;
}
/* Styles specific for desktop */
@media only screen and (min-width: 768px) {

  .mob_expand_hz {
    width: 45%;
  }

  .modal_window_open {
    display: flex;
    opacity: 1;
    transform: scale(1);
  }

  .lightgrey-hover:hover {
    background-color: rgba(60, 60, 60,0.9);
    transition: background-color 100ms;
  }

  .hover-action:hover {
    background-color: var(--site_secondary_colour);
  }

  .hover-bg-3:hover {
    background-color: var(--bg-3);
  }

  .hover-transparent:hover {
    opacity: 0.7;
  }
  .lighter-hover:hover {
    background-color: var(--site_surface_3);
    transition: 100ms;
  }

  .even-lighter-hover:hover {
    background-color: rgba(90, 90, 90,1);
    transition: background-color 100ms;
  }
  
  .outline-button:hover {
    color: var(--text);
    border: 1px solid var(--site_secondary_colour);
    background: var(--site_secondary_colour);
  }

}

.landing-background-old {
  background-image: url("/img/red_data10.jpg");
  background-size: 100dvw;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@keyframes ldg_bg_anim {
  0% { background-position: 20% 60%; }
  20% { background-position: 40% 30%; }
  40% { background-position: 95% 30%; }
  60% { background-position: 50% 50%; }
  80% { background-position: 10% 80%; }
  100% { background-position: 50% 50%; }
}

.landing-background {
  background: radial-gradient(ellipse 70% 60% at center,
  var(--bg) 0%,
  var(--bg) 90%,
  rgb(10,10,10) 100%
  );
  background-size: 100% 100%; /* make it bigger than the element */
  animation: ldg_bg_anim 20s ease infinite;
  animation-direction: alternate;
}






.cols_mob_rows_desktop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10pt;
}

.nav-vertical-spacer {
  height: calc(100% - 40pt);
}

.hide {
  display: none !important;
}

.fade-out {
  opacity: 1;
  animation: fade-out 2s forwards;
}

@keyframes fade-out {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.__notes__ {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10pt;
    box-sizing: border-box;
    background-color: rgb(15,15,15);
    border: 1px solid rgb(30,30,30);
    border-radius: 5px;
    font-size: small;
    gap: 10pt;
}

.__notes__ > #notes_content {
    white-space: nowrap;        /* one line */
    overflow: hidden;           /* hide overflow */
    text-overflow: ellipsis;    /* show ... */
    cursor: pointer;            /* indicate clickable */
}
.__notes__.expanded > #notes_content {
    white-space: normal;        /* allow multiline */
    overflow: visible;
    text-overflow: unset;
}

.show-only-mob {
  display: none;
}









.notif {
    position: relative;
    width: 1.2em;
    height: 1.2em;
    max-width: 1.2em;
    max-height: 1.2em;
    cursor: pointer;
    user-select: none;
}

.notif.unread::after {
    content: '';
    position: absolute;
    min-width: 0.3em;
    min-height: 0.3em;
    background-color: red;
    border-radius: 50%;
    top: 10%;
    right: 10%;
    user-select: none;
}

.unread-notifications::after {
    /* content: attr(data-notifs); */
    content: '';
    font-size: x-small;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 7pt;
    padding: 1pt;
    box-sizing: border-box;
    font-weight: bold;
    border-radius: 50%;
    /* padding: 1pt 1.2pt; */
    background-color: rgb(220,0,0);
    border: 1px solid var(--bg);
    box-sizing: border-box;
    top: -10%;
    right: 5%;
    user-select: none;
    min-width: 10px;
    min-height: 10px;
}


.notifications_content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5pt;
    padding: 10pt;
    border-radius: 5pt;
    box-sizing: border-box;
    background-color: var(--bg-2);
    width: 20em;
    height: 20em;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.15s ease-in-out;
    white-space: nowrap;
    border: 1px solid rgb(30,30,30);
    opacity: 1;
}
.notifications_content.hidden {
    overflow-y: hidden;
    overflow-x: hidden;
    height: 0;
    width: 0;
    padding: 0;
    opacity: 0;
}
.notification {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 5pt;
    background-color: var(--bg-3);
    padding: 1em;
    box-sizing: border-box;
    font-size: x-small;
    border: 1px solid rgb(30,30,30);
}

.notification:hover {
    background-color: rgb(40,40,40);
}

.notification.unread {
    border: 1px solid var(--site_secondary_colour);
    /* background-color: rgba(var(--secondary), 0.7); */

}

.notification .delete_notification {
    cursor: pointer;
    min-width: 10pt;
    border-radius: 3px;
}

.notification .delete_notification:hover {
    background-color: rgb(30,30,30);
}


footer {
  font-size: small;
}

.modal-open {
  opacity: 1;
}
/* Styles specific for mobile */
@media only screen and (max-width: 768px) {
  footer {
    font-size: xx-small;
  }
  .show-only-mob {
    display: flex;
  }
  .show-only-desktop {
    display: none;
  }
  .hidden-scrollbars-mob::-webkit-scrollbar {
    display: none;
  }
  .cols_mob_rows_desktop {
    flex-direction: column;
    justify-content: flex-start;
  }

  .top-nav {
    height: 30pt;
  }

  .nav-vertical-spacer {
    height: calc(100% - 30pt);
  }


  .nav-padding {
    padding-top: 30pt;
  }
  .landing-background-old {
    background-image: url("/img/landing-0.jpg");
  }



  #top_nav_title {
    font-size: 15pt;
  }
  .page-content-mob-friendly {
    padding-top: 30pt;
    max-width: 100dvw;
  }
  .mob_expand_hz {
    width: 100%;
  }


  .analyze_program_table {
    font-size: x-small;
  }
  /* .modal_window {
    position: fixed;
    transition: bottom ease-in-out .2s;
    bottom: calc(-100% + 10pt);
    
    border-radius: 10px 10px 0 0;
    transform: scale(1);
    max-height: 90vh;
  }
  .modal_window_open {
    display: flex;
    opacity: 1;
    bottom: -5pt;
  } */

  .modal_window {
    transform: scale(0.8);
  }
  .modal_window_open {
    display: flex;
    opacity: 1;
    transform: scale(0.9);
  }
  .pillButton {
    font-size: 10pt;
    height: 1.5em;
  }

  .mob-rows {
    flex-direction: row;
  }

  .mob-cols {
    flex-direction: column;
  }

  .side-nav {
    width: calc(1em + 25pt);
    gap: 5pt;
    padding: 5pt;
    margin: 0;
    font-size: small;
    position: relative;
    transition: all 300ms ease;
    left: 0pt
  }

  .side-nav:not(.open) {
    border: 0px;
    width: 0;
    left: -5pt;
    padding-left: 0pt;
    padding-right: 0pt;
  }

  .side-nav.open {
    width: 20em;
  }

  .side-nav .child {
    /* padding-left: calc(1em + 15pt); */
  }

  .side-nav svg {
    width: 1.5em;
    height: 1.5em;
  }

  .side-nav .category {
    padding-left: 3.5pt;
    padding-right: 3.5pt;
    padding-top: 0pt;
    padding-bottom: 0pt;
  }

  .hover-bg-3:active {
    background-color: var(--bg-3);
  }
  .lightgrey-hover:active {
    background-color: rgba(60, 60, 60,0.9);
    transition: background-color 100ms;
  }
  .hover-action:active {
    background-color: var(--site_secondary_colour);
  }
  .hover-transparent:active {
    opacity: 0.7;
  }

  .lighter-hover:active {
    background-color: var(--site_surface_3);
    transition: 100ms;
  }

  .even-lighter-hover:active {
    background-color: rgba(90, 90, 90,1);
    transition: background-color 100ms;
  }

  .unread-notifications::after {
    top: -10%;
    font-size: 6pt;
  }
}




.menu-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100dvw;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(30,30,30);
    gap: 10pt;
    font-size: medium;
    overflow-x: auto;
    white-space: nowrap;
    background-color: rgb(8,8,8);
}


.tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 90em;
}
.header-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8pt;
    box-sizing: border-box;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
    gap: 10pt;
}

.header-item:hover {
    font-weight: bold;
}

.header-item.active {
    border-bottom: 2px solid var(--site_primary_colour);
    font-weight: bold;
}

.hover-grow {
  scale: 1;
  transition: scale 0.2s ease-in-out;
}

.hover-grow:hover {
  scale: 1.03;
}



.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100dvw;
  gap: 10pt;
  padding: 10pt;
  box-sizing: border-box;
}

header {
  height: 3em;
  background-color: rgb(0,0,0,1);
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  color: white;
  font-size: large;
  z-index: 10000;
  max-width: 100%;
  display: flex;
  gap: 10pt;
  flex-direction: row;
}

.h-100 {
  height: 100%;
}
.h-50 {
  height: 50%;
}

.w-100 {
  width: 100%;
}
.w-90 {
  width: 90%;
}
.w-80 {
  width: 80%;
}
.w-50 {
  width: 50%;
}
.w-40 {
  width: 40%;
}
.w-60 {
  width: 60%;
}
.w-33 {
  width: 33.33%;
}
.w-25 {
  width: 25%;
}
.w-75 {
  width: 75%;
}
.w-20 {
  width: 20%;
}
.mw-100 {
  max-width: 100%;
}
.mw-90 {
  max-width: 90%;
}
.mw-80 {
  max-width: 80%;
}
.mw-75 {
  max-width: 75%;
}
.mw-50 {
  max-width: 50%;
}

.mw-10em {
  max-width: 10em;
}
.mw-20em {
  max-width: 20em;
}
.mw-30em {
  max-width: 30em;
}
.mw-40em {
  max-width: 40em;
}
.mw-50em {
  max-width: 50em;
}

.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}

.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}

.nowrap {
  white-space: nowrap;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

/* mobile only */
@media (max-width: 600px) {
  .menu-header {
      /* hide scrollbars */
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* Internet Explorer 10+ */
      font-size: small;
  }

  .header-item:not(.active) > div {
    display: none;
  }

  .body-v3 {
    font-size: small;
  }
}


footer, footer a {
    color: var(--text-muted);
}

footer a:hover {
    color: var(--text);
}


.custom-picker-day {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--text);
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid transparent;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  padding: 5px;
}

.custom-picker-day:hover {
  border-color: var(--site_primary_colour);
}

.custom-picker-day.selected {
  background-color: var(--site_primary_colour);
}

.custom-picker-in-range {
  background-color: var(--bg-3);
}

.custom-picker-cell {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  width: 2.5em;
  height: 2.5em;
}

.custom-picker-calendar {
  border: 1px solid var(--text-muted);
  padding: 0;
  user-select: none;
  border-radius: 5px;
  overflow: hidden;
}

.custom-picker-range-start {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.custom-picker-range-end {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.custom-picker-header {
  border-bottom: 1px solid var(--text-muted);
  padding: 5px;
  box-sizing: border-box;
  background-color: var(--bg-3);
}

.switcher {
  display: flex;
  cursor: pointer;
  user-select: none;
  align-items: center;
}

.switcher-wrapper {
  position: relative;
  width: 56px;
  height: 32px;
}

.switcher-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switcher-track {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid var(--text-muted);
  background: var(--bg-3);
  transition: background 0.2s ease;
}

.switcher-track.active {
  background: var(--site_primary_colour);
}

.switcher-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.switcher-thumb.active {
  transform: translateX(24px);
}





.primary-bg {
  background: var(--site_primary_colour);
}
.secondary-bg {
  background: var(--site_secondary_colour);
}
.tertiary-bg {
  background: var(--site_tertiary_colour);
}

.gray-bg {
  background: var(--highlight);
}

.border-bottom {
  border-bottom: 1px solid var(--highlight);
}

.border-right {
  border-right: 1px solid var(--highlight);
}

.border-left {
  border-left: 1px solid var(--highlight);
}

.transition-bg {
  transition: background-color 0.3s ease;
}

.transition-w {
  transition: width 0.3s ease;
}

.transition-mw {
  transition: max-width 0.3s ease;
}

.transition-mh {
  transition: max-height 0.3s ease;
}

.ghost-button {
  color: var(--text-muted);
  transition: color 0.2s ease;
  cursor: pointer;
}
.ghost-button:hover {
  color: var(--text);
}/*
 * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
 * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
 * make sure you copy the url from the website since the url may change between versions.
 * */
.toast-title {
    font-weight: 700;
}
.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.toast-message a,
.toast-message label {
    color: #fff;
}
.toast-message a:hover {
    color: #ccc;
    text-decoration: none;
}
.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.1em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    line-height: 1;
}
.toast-close-button:focus,
.toast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}
.rtl .toast-close-button {
    left: -0.3em;
    float: left;
    right: 0.3em;
}
button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}
.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}
.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}
.toast-top-left {
    top: 12px;
    left: 12px;
}
.toast-top-right {
    top: 12px;
    right: 12px;
}
.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}
.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}
#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}
#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#toast-container > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    /* -moz-box-shadow: 0 0 12px #999; */
    /* -webkit-box-shadow: 0 0 12px #999; */
    /* box-shadow: 0 0 12px #999; */
    color: #fff;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    
    
    border-radius: 5px;
    background-color: var(--site_surface);
    background-color: rgb(45,45,45);
    opacity: 1;
    border: 1px solid rgb(60,60,60);

}
#toast-container > div.rtl {
    direction: rtl;
    padding: 15px 50px 15px 15px;
    background-position: right 15px center;
}
#toast-container > div:hover {
    -moz-box-shadow: 0 0 12px #000;
    -webkit-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer;
}
#toast-container > .toast-info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
}
#toast-container > .toast-error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
}
#toast-container > .toast-success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
}
#toast-container > .toast-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
}
#toast-container.toast-bottom-center > div,
#toast-container.toast-top-center > div {
    margin-left: auto;
    margin-right: auto;
}
#toast-container.toast-bottom-full-width > div,
#toast-container.toast-top-full-width > div {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
.toast {
    background-color: #030303;
}
.toast-success {
    background-color: #51a351;
    border-color: #51a351 !important;
    -moz-box-shadow: 0 0 12px #51a351;
    -webkit-box-shadow: 0 0 12px #51a351;
    box-shadow: 0 0 12px #51a351;
}
.toast-error {
    background-color: #c91a11;
    border-color: #c91a11 !important;
    -moz-box-shadow: 0 0 12px #c91a11;
    -webkit-box-shadow: 0 0 12px #c91a11;
    box-shadow: 0 0 12px #c91a11;
}
.toast-info {
    background-color: #2f96b4;
    border-color: #2f96b4 !important;
    -moz-box-shadow: 0 0 12px #2f96b4;
    -webkit-box-shadow: 0 0 12px #2f96b4;
    box-shadow: 0 0 12px #2f96b4;
}
.toast-warning {
    background-color: #f89406;
    border-color: #f89406 !important;
    -moz-box-shadow: 0 0 12px #f89406;
    -webkit-box-shadow: 0 0 12px #f89406;
    box-shadow: 0 0 12px #f89406;
}
.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}
@media all and (max-width: 240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }
    #toast-container > div.rtl {
        padding: 8px 50px 8px 8px;
    }
    #toast-container .toast-close-button {
        right: 0.2em;
        top: -0.1em;
    }
    #toast-container .rtl .toast-close-button {
        left: -0.2em;
        right: 0.2em;
    }
}
@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }
    #toast-container > div.rtl {
        padding: 8px 50px 8px 8px;
    }
    #toast-container .toast-close-button {
        right: 0.2em;
        top: -0.1em;
    }
    #toast-container .rtl .toast-close-button {
        left: -0.2em;
        right: 0.2em;
    }
}
@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
    #toast-container > div.rtl {
        padding: 15px 50px 15px 15px;
    }
}
._root_13nkv_1 {
    --color: var(--site_primary_colour);
    --height: 1px;
    width: 100%;
    border-width: var(--height);
    border-image: linear-gradient(to right,rgba(0,0,0,0),var(--color), rgba(0,0,0,0)) 1;
}._sideNav_xo7b5_1 {
  /* This is the v2 nav */
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: calc(1.5em + 25pt);
  border-right: 2px solid var(--highlight);
  gap: 5pt;
  padding: 5pt;
  box-sizing: border-box;
  transition: width 300ms ease-in-out;
  font-size: small;
  z-index: 1000;
}

._sideNav_xo7b5_1 ._selected_xo7b5_18 {
  background: var(--site_secondary_colour);
  color: var(--text);
  /* background: var(--bg-3); */
  font-weight: bold;
}


._sideNav_xo7b5_1._open_xo7b5_26 {
  width: 15em;
}

._sideNav_xo7b5_1 ._child_xo7b5_30 {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* padding-left: calc(1.5em + 25pt); */
  padding-left: 2em;
  box-sizing: border-box;
  justify-content: flex-start;
}

._sideNav_xo7b5_1 ._category_xo7b5_41 {
  padding-left: 5pt;
  padding-right: 5pt;
}

._sideNav_xo7b5_1 svg {
  width: 2em;
  height: 2em;
}

._mobile_xo7b5_51 {
  position: absolute;
  left: -2rem;
  height: 100dvh;
  width: 0em;
  transition: all 300ms ease-in-out;
}

._mobile_xo7b5_51._open_xo7b5_26 {
  left: 0rem;
}

._accountPlaceholder_xo7b5_63 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid var(--site_tertiary_colour);
  background-color: var(--site_tertiary_colour);
  white-space: nowrap;
  width: 2.2em;
  height: 2.2em;
  padding: 5pt;
  padding-top: 6pt;
  box-sizing: border-box;
}._overlay_1erdx_1 {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

._overlay_1erdx_1._fadeOut_1erdx_13 {
    animation: _fadeOut_1erdx_13 0.1s ease-out forwards;
}

@keyframes _fadeOut_1erdx_13 {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

._shimmer_1erdx_26 {
    width: 300px;
    height: 300px;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    background-size: 300% 300%;
    animation: _shimmer_1erdx_26 1s ease-in-out alternate-reverse infinite;
    /* background-position: 20% 20%; */
    pointer-events: none;
}

@keyframes _shimmer_1erdx_26 {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}
._toastContainer_11uiy_1 {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
    
    --success-border: hsl(120, 60%, 40%);
    --error-border: hsl(0, 70%, 50%);
    --warning-border: hsl(43, 50%, 50%);
    --info-border: hsl(207, 50%, 50%);
}

._toast_11uiy_1 {
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    animation: _slideIn_11uiy_1 0.3s ease-out;
    pointer-events: all;
    color: white;
    font-size: 14px;
    border: 1px solid var(--highlight);
    background: var(--bg-3);
}

._toast_11uiy_1._success_11uiy_36 {
    border-color: var(--success-border);
    box-shadow: 0 0 10px var(--success-border);
}

._toast_11uiy_1._error_11uiy_41 {
    border-color: var(--error-border);
    box-shadow: 0 0 10px var(--error-border);
}

._toast_11uiy_1._warning_11uiy_46 {
    border-color: var(--warning-border);
    box-shadow: 0 0 10px var(--warning-border);
}

._toast_11uiy_1._info_11uiy_51 {
    border-color: var(--info-border);
    box-shadow: 0 0 10px var(--info-border);
}

._message_11uiy_56 {
    flex: 1;
}

._closeButton_11uiy_60 {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    border-radius: 4px;
}

._closeButton_11uiy_60:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes _slideIn_11uiy_1 {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes _slideOut_11uiy_1 {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

._toast_11uiy_1._exiting_11uiy_101 {
    animation: _slideOut_11uiy_1 0.3s ease-in forwards;
}

@media (max-width: 640px) {
    ._toastContainer_11uiy_1 {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
    }

    ._toast_11uiy_1 {
        min-width: unset;
        max-width: unset;
    }
}
._dropzone_rjqf5_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8pt;
    width: 100%;
    min-height: 8em;
    border: 2px dashed var(--highlight);
    border-radius: 8px;
    background-color: var(--bg-2);
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
    box-sizing: border-box;
    padding: 16pt;
    text-align: center;
}

._dropzone_rjqf5_1:hover,
._dropzone_rjqf5_1._dragover_rjqf5_21 {
    border-color: var(--site_secondary_colour);
    background-color: var(--bg-3);
    color: var(--text);
}

._dropzone_rjqf5_1 input {
    display: none;
}

._fileName_rjqf5_31 {
    font-size: 0.85em;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

._fileBar_rjqf5_41 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8pt;
    width: 100%;
    padding: 6pt 10pt;
    border-radius: 6px;
    border: 1px solid var(--highlight);
    background-color: var(--bg-2);
    box-sizing: border-box;
}

._clearBtn_rjqf5_54 {
    display: flex;
    align-items: center;
    gap: 5pt;
    padding: 4pt 10pt;
    border-radius: 6px;
    border: 1px solid var(--highlight);
    background-color: var(--bg-2);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85em;
    transition: background-color 0.15s, color 0.15s;
}

._clearBtn_rjqf5_54:hover {
    background-color: var(--bg-3);
    color: var(--error, #e05);
}

._videoContainer_rjqf5_73 {
    max-height: 20em;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

._videoContainer_rjqf5_73 .plyr,
._videoContainer_rjqf5_73 .plyr__video-wrapper,
._videoContainer_rjqf5_73 video {
    max-height: 20em;
    width: auto !important;
    max-width: 100%;
}
.react-calendar-timeline *{box-sizing:border-box}.react-calendar-timeline .rct-outer{display:block;overflow:hidden;white-space:nowrap}.react-calendar-timeline .rct-scroll{display:inline-block;white-space:normal;vertical-align:top;overflow-x:scroll;overflow-y:hidden;-ms-touch-action:none;touch-action:none}.react-calendar-timeline .rct-item:hover{z-index:88}.react-calendar-timeline .rct-item .rct-item-content{position:sticky;position:-webkit-sticky;left:0;overflow:hidden;display:inline-block;border-radius:2px;padding:0 6px;height:100%}.react-calendar-timeline .rct-sidebar{overflow:hidden;white-space:normal;display:inline-block;vertical-align:top;position:relative;box-sizing:border-box;border-right:1px solid #bbb}.react-calendar-timeline .rct-sidebar.rct-sidebar-right{border-right:0;border-left:1px solid #bbb}.react-calendar-timeline .rct-sidebar .rct-sidebar-row{padding:0 4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;margin:0;border-bottom:1px solid #bbb}.react-calendar-timeline .rct-sidebar .rct-sidebar-row.rct-sidebar-row-odd{background:#0000000d}.react-calendar-timeline .rct-sidebar .rct-sidebar-row.rct-sidebar-row-even{background:transparent}.react-calendar-timeline .rct-vertical-lines .rct-vl{position:absolute;border-left:1px solid #bbb;z-index:30}.react-calendar-timeline .rct-vertical-lines .rct-vl.rct-vl-first{border-left-width:2px}.react-calendar-timeline .rct-vertical-lines .rct-vl.rct-day-6,.react-calendar-timeline .rct-vertical-lines .rct-vl.rct-day-0{background:#faf6e180}.react-calendar-timeline .rct-horizontal-lines{-webkit-user-select:none;-moz-user-select:-moz-none;-ms-user-select:none;user-select:none}.react-calendar-timeline .rct-horizontal-lines .rct-hl-even,.react-calendar-timeline .rct-horizontal-lines .rct-hl-odd{border-bottom:1px solid #bbb;box-sizing:border-box;z-index:40}.react-calendar-timeline .rct-horizontal-lines .rct-hl-odd{background:#0000000d}.react-calendar-timeline .rct-horizontal-lines .rct-hl-even{background:transparent}.react-calendar-timeline .rct-cursor-line{position:absolute;width:2px;background:#2196f3;z-index:51}.react-calendar-timeline .rct-dateHeader{display:flex;align-items:center;justify-content:center;height:100%;border-bottom:1px solid #bbb;cursor:pointer;font-size:14px;background-color:#f0f0f0;border-left:2px solid #bbb}.react-calendar-timeline .rct-dateHeader-primary{background-color:initial;border-left:1px solid #bbb;border-right:1px solid #bbb;color:#fff}.react-calendar-timeline .rct-header-root{background:#c52020;border-bottom:1px solid #bbb}.react-calendar-timeline .rct-calendar-header{border:1px solid #bbb}

.rct-header-root {
    background: transparent !important;
}

.rct-calendar-header > div:not(:first-child) > .rct-dateHeader, .rct-dateHeader {
    background-color: var(--site_secondary_colour) !important;
}

.react-calendar-timeline * {
    border-color: var(--highlight) !important;
}

.rct-sidebar {
    /* border-width: 2px !important; */
    /* border-right-color: var(--site_secondary_colour) !important; */
    background: var(--bg-3) !important;
}

.rct-outer {
    border: 0px solid !important;
    overflow: hidden !important;
}

.timeline-item-unavailable {
    background-color: var(--highlight) !important;
    background-image: repeating-linear-gradient(
        -45deg,          /* angle of stripes */
        rgb(200, 0, 0) 0,
        rgb(200, 0, 0) 2px,
        transparent 2px,
        transparent 6px
    ) !important;

}

.timeline-item-event {
    background-color: var(--site_tertiary_colour) !important;
    max-height: 10px;
    min-height: 10px;
    min-width: 10px;
    max-width: 10px;
    margin-top: 4px;
    border-radius: 50%;
}

.timeline-item-review {
    border: none !important;
    border-radius: 2px;
}

.timeline-item-program {
    border: none !important;
    border-radius: 2px;
}

.react-calendar-timeline {
    border-radius: 5pt !important;
    border: 1px solid var(--highlight) !important;
    overflow: hidden !important;
}

.rct-sidebar-row:last-child {
    border-bottom: 1px solid var(--highlight) !important;
}._session_yd1qr_1 {
    background-color: var(--bg-3);
    border: 1px solid var(--highlight);
    border-radius: 5px;
    width: 100%;
    max-width: 22rem;
    box-sizing: border-box;
    transition: transform 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    transform: scale(0.99);
}

._session_yd1qr_1:hover {
    transform: scale(1);
}

._set_yd1qr_18 {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.85rem;
    background: var(--bg-2);
    color: var(--text);
}



._chartPlaceholder_yd1qr_28 {
    width: 100%;
    min-height: 15rem;
    border-radius: 1rem;
    background: var(--bg-2);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}


._prTrackerContainer_yd1qr_41 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
._prTracker_yd1qr_41{
    padding: 5pt 0;
    box-sizing: border-box;
    gap: 5pt;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid var(--highlight);


    ._bottom_yd1qr_57 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        gap: 5pt;
        width: 100%;

        ._table_yd1qr_65 {
            display: grid;
            width: 100%;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
            margin-top: 0.5rem;

            text-align: center;
            ._header_yd1qr_73 {

            }
            ._cell_yd1qr_76 {

            }
        }
    }
} 

._exercise_yd1qr_83 {
    padding: 5pt 10pt;
    box-sizing: border-box;
}

._exercise_yd1qr_83:not(:last-child) {
    border-bottom: 1px solid var(--highlight);
}

._sessionHeader_yd1qr_92 {
    padding: 5pt 10pt;
    box-sizing: border-box;
    border-bottom: 1px solid var(--site_primary_colour);
}

._sliderItemWrapper_yd1qr_98 {
    padding: 0 5pt;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-grow: 1;
}


._fatigueBar_yd1qr_109 {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.75rem;
    background-image: linear-gradient(to right, rgb(0,200,0),rgb(200,0,0));
    
    /* border: 1px solid; */
    /* border-image: linear-gradient(to right, rgb(0,200,0),rgb(200,0,0));; */
    border: 0;
}

._fatigueBar_yd1qr_109._empty_yd1qr_120 {
    background-image: none;
    background-color: var(--bg-2);
    border: 1px solid var(--highlight);
}

/* .fatigueMarker {
    --size: 12pt;
    --half-size: calc(var(--size) / 2);
    min-width: var(--size);
    min-height: var(--size);
    max-width: var(--size);
    max-height: var(--size);
    position: relative;
    left: calc(50% - var(--size));
    top: calc(100% + var(--half-size));
    transform: translate(50%, -50%);
} */

._fatigueMarker_yd1qr_126 {
    --size: 12pt;
    --half-size: calc(var(--size) / 2);
    --quarter-size: calc(var(--size) / 4);
    --double-size: calc(var(--size) * 2);
    width: var(--quarter-size);
    height: var(--size);
    position: relative;
    left: calc(var(--percent) - var(--half-size));
    top: calc(0% + var(--quarter-size));
    transform: translate(50%, -50%);
    background-color: var(--text);
    border-radius: var(--quarter-size);
    border: 1px solid var(--bg);
}._tooltip_c4jfc_1 {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  background: var(--bg);
  color: var(--text-color);
  padding: 6px 10px;
  border-radius: 5px;
  max-width: calc(100vw - 16px);
  white-space: nowrap; /* or allow wrap if you prefer */
  border: 1px solid var(--highlight);
}/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/assets/ajax-loader-BcnMEykj.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('data:application/vnd.ms-fontobject;base64,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');
    src: url('data:application/vnd.ms-fontobject;base64,AAgAAGQHAAABAAIAAAAAAAIABQkAAAAAAAABAJABAAAAAExQAQAAgCAAAAAAAAAAAAAAAAEAAAAAAAAATxDE8AAAAAAAAAAAAAAAAAAAAAAAAAoAcwBsAGkAYwBrAAAADgBSAGUAZwB1AGwAYQByAAAAFgBWAGUAcgBzAGkAbwBuACAAMQAuADAAAAAKAHMAbABpAGMAawAAAAAAAAEAAAANAIAAAwBQRkZUTW3RyK8AAAdIAAAAHEdERUYANAAGAAAHKAAAACBPUy8yT/b9sgAAAVgAAABWY21hcCIPRb0AAAHIAAABYmdhc3D//wADAAAHIAAAAAhnbHlmP5u2YAAAAzwAAAIsaGVhZAABMfsAAADcAAAANmhoZWED5QIFAAABFAAAACRobXR4BkoASgAAAbAAAAAWbG9jYQD2AaIAAAMsAAAAEG1heHAASwBHAAABOAAAACBuYW1lBSeBwgAABWgAAAFucG9zdC+zMgMAAAbYAAAARQABAAAAAQAA8MQQT18PPPUACwIAAAAAAM9xeH8AAAAAz3F4fwAlACUB2wHbAAAACAACAAAAAAAAAAEAAAHbAAAALgIAAAAAAAHbAAEAAAAAAAAAAAAAAAAAAAAEAAEAAAAHAEQAAgAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQkAAAAAAACAAAABAAAAIAAAAAAAAAAAUGZFZABAAGEhkgHg/+AALgHb/9sAAAABAAAAAAAAAgAAAAAAAAACAAAAAgAAJQAlACUAJQAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAEAAAAYSAiIZAhkv//AAAAAABhICIhkCGS//8AAP+l3+PedN5xAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGAIwAsAEWAAIAJQAlAdsB2wAYACwAAD8BNjQvASYjIg8BBhUUHwEHBhUUHwEWMzI2FAcGBwYiJyYnJjQ3Njc2MhcWF/GCBgaCBQcIBR0GBldXBgYdBQgH7x0eMjB8MDIeHR0eMjB8MDIecYIGDgaCBQUeBQcJBFhYBAkHBR4F0nwwMh4dHR4yMHwwMh4dHR4yAAAAAgAlACUB2wHbABgALAAAJTc2NTQvATc2NTQvASYjIg8BBhQfARYzMjYUBwYHBiInJicmNDc2NzYyFxYXASgdBgZXVwYGHQUIBwWCBgaCBQcIuB0eMjB8MDIeHR0eMjB8MDIecR4FBwkEWFgECQcFHgUFggYOBoIF0nwwMh4dHR4yMHwwMh4dHR4yAAABACUAJQHbAdsAEwAAABQHBgcGIicmJyY0NzY3NjIXFhcB2x0eMjB8MDIeHR0eMjB8MDIeAT58MDIeHR0eMjB8MDIeHR0eMgABACUAJQHbAdsAQwAAARUUBisBIicmPwEmIyIHBgcGBwYUFxYXFhcWMzI3Njc2MzIfARYVFAcGBwYjIicmJyYnJjQ3Njc2NzYzMhcWFzc2FxYB2woIgAsGBQkoKjodHBwSFAwLCwwUEhwcHSIeIBMGAQQDJwMCISspNC8mLBobFBERFBsaLCYvKicpHSUIDAsBt4AICgsLCScnCwwUEhwcOhwcEhQMCw8OHAMDJwMDAgQnFBQRFBsaLCZeJiwaGxQRDxEcJQgEBgAAAAAAAAwAlgABAAAAAAABAAUADAABAAAAAAACAAcAIgABAAAAAAADACEAbgABAAAAAAAEAAUAnAABAAAAAAAFAAsAugABAAAAAAAGAAUA0gADAAEECQABAAoAAAADAAEECQACAA4AEgADAAEECQADAEIAKgADAAEECQAEAAoAkAADAAEECQAFABYAogADAAEECQAGAAoAxgBzAGwAaQBjAGsAAHNsaWNrAABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABGAG8AbgB0AEYAbwByAGcAZQAgADIALgAwACAAOgAgAHMAbABpAGMAawAgADoAIAAxADQALQA0AC0AMgAwADEANAAARm9udEZvcmdlIDIuMCA6IHNsaWNrIDogMTQtNC0yMDE0AABzAGwAaQBjAGsAAHNsaWNrAABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABzAGwAaQBjAGsAAHNsaWNrAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAEAAgECAQMAhwBECmFycm93cmlnaHQJYXJyb3dsZWZ0AAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAGAAEABAAAAAIAAAAAAAEAAAAAzu7XsAAAAADPcXh/AAAAAM9xeH8=') format('embedded-opentype'), url('data:font/woff;base64,d09GRk9UVE8AAAVkAAsAAAAAB1wAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAi4AAAKbH/pWDkZGVE0AAAM4AAAAGgAAABxt0civR0RFRgAAA1QAAAAcAAAAIAAyAARPUy8yAAADcAAAAFIAAABgUBj/rmNtYXAAAAPEAAAAUAAAAWIiC0SwaGVhZAAABBQAAAAuAAAANgABMftoaGVhAAAERAAAABwAAAAkA+UCA2htdHgAAARgAAAADgAAAA4ESgBKbWF4cAAABHAAAAAGAAAABgAFUABuYW1lAAAEeAAAANwAAAFuBSeBwnBvc3QAAAVUAAAAEAAAACAAAwABeJw9ks9vEkEUx2cpWyeUoFYgNkHi2Wt7N3rVm3cTs3UVLC4LxIWEQvi1P3i7O1tYLJDAmlgKGEhQrsajf0j7J3jYTXrQWUrMJG+++b55n5e8NwwKBhHDMLv5kxT3ATEBxKBn3qOAl9zxHgb1MAPhHQgHkyF08Gr/L8B/Eb6zWnmCJ7AJVLubQOheArXvJ1A4EXi6j4I+Zg9F0QFKvsnlBCmXeve+sFEnb/nCptdtQ4QYhVFRAT1HrF8UQK/RL/SbmUbclsvGVFXRZKDHUE38cc4qpkbAAsuwiImvro+ufcfaOIQ6szlrmjRJDaKZKnbjN3GWKIbiIzRFUfCffuxxKOL+3LDlDVvx2TdxN84qZEsnhNBa6pgm2dAsnzbLsETdsmRFxUeHV4e+I2/ptN8TyqV8T3Dt29t7EYOuajVIw2y1Wy3M86w0zg/Fz2IvawmQAUHOVrPVfLkoScVynsqsTG0MGUs4z55nh3mnOJa+li+rl9WpPIcFfDubDeaDC+fLBdYN3QADzLauGfj4B6sZmq6CCpqmtSvF0qlUl2qf5AJIUCSlTqlb7lUG+LRfGzZGzZEyBgccMu6MuqPecNDvD4Y9Kjtj4gD+DsvKVMTcMdtqtZtmkzQstQvYje7Syep0PDSAhSOeHYXYWThEF//A/0YvYV1fSQtpKU5STtrhbQ444OtpKSWJIg3pOg8cBs7maTY1EZf07aq+hjWs7IWzdCYTGhb2CtZ47x+Uhx28AAB4nGNgYGBkAIJz765vANHnCyvqYTQAWnkHswAAeJxjYGRgYOADYgkGEGBiYARCFjAG8RgABHYAN3icY2BmYmCcwMDKwMHow5jGwMDgDqW/MkgytDAwMDGwcjKAQQMDAyOQUmCAgoA01xQGB4ZExUmMD/4/YNBjvP3/NgNEDQPjbbBKBQZGADfLDgsAAHicY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQzMCQqKClOUJz0/z9YHRLv/+L7D+8V3cuHmgAHjGwM6ELUByxUMIOZCmbgAAA5LQ8XeJxjYGRgYABiO68w73h+m68M3EwMIHC+sKIeTqsyqDLeZrwN5HIwgKUB/aYJUgAAeJxjYGRgYLzNwMCgx8QAAkA2IwMqYAIAMGIB7QIAAAACAAAlACUAJQAlAAAAAFAAAAUAAHicbY49asNAEIU/2ZJDfkiRIvXapUFCEqpcptABUrg3ZhEiQoKVfY9UqVLlGDlADpAT5e16IUWysMz3hjfzBrjjjQT/EjKpCy+4YhN5yZoxcirPe+SMWz4jr6S+5UzSa3VuwpTnBfc8RF7yxDZyKs9r5IxHPiKv1P9iZqDnyAvMQ39UecbScVb/gJO03Xk4CFom3XYK1clhMdQUlKo7/d9NF13RkIdfy+MV7TSe2sl11tRFaXYmJKpWTd7kdVnJ8veevZKc+n3I93t9Jnvr5n4aTVWU/0z9AI2qMkV4nGNgZkAGjAxoAAAAjgAF') format('woff'), url('data:font/ttf;base64,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') format('truetype'), url('/assets/slick-BlzDm7g2.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
._container_hs7hh_1 {
	position: relative;
	width: 100%;
}

._trigger_hs7hh_6 {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--highlight);
	background: var(--bg-3);
	border-radius: 8px;
	padding: 8px;
	text-align: left;
	cursor: pointer;
}

._trigger_hs7hh_6:disabled {
	background: var(--bg-3);
	cursor: not-allowed;
}

._placeholder_hs7hh_22 {
	color: #667085;
}

._badgeList_hs7hh_26 {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

._badge_hs7hh_26 {
	display: flex;
    flex-direction: row;
	align-items: center;
	gap: 5pt;
	background: var(--bg);
    border: 1px solid var(--highlight);
	color: var(--site_secondary_colour);
	border-radius: 999px;
	padding: 4px 8px;
    box-sizing: border-box;
	font-size: 12px;
}

._removeBadge_hs7hh_46 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	border-radius: 999px;
}

._removeBadge_hs7hh_46:hover {
	opacity: 0.75;
}

._dropdown_hs7hh_58 {
	position: absolute;
	z-index: 10;
	width: 100%;
	margin-top: 6px;
	border: 1px solid var(--highlight);
	background: var(--bg-3);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
	overflow: hidden;
}

._dropUp_hs7hh_70 {
	bottom: 100%;
	top: auto;
	margin-top: 0;
	margin-bottom: 6px;
}

._searchInput_hs7hh_77 {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--highlight);
	padding: 10px 12px;
	outline: none;
}

._list_hs7hh_85 {
	list-style: none;
	margin: 0;
	padding: 6px;
	max-height: 220px;
	overflow: auto;
}

._option_hs7hh_93 {
	width: 100%;
	border: none;
	background: transparent;
	text-align: left;
	border-radius: 6px;
	padding: 8px;
	cursor: pointer;
}

._option_hs7hh_93:hover {
	background: var(--highlight);

}

._optionSelected_hs7hh_108 {
    display: none;
	background: var(--highlight);
	color: var(--site_secondary_colour);
}

._empty_hs7hh_114 {
	color: #667085;
	font-size: 13px;
	padding: 10px 8px;
}
._input_1m80w_1 {
    position: absolute;
    z-index: 100;
    left: 100%;
    transform: translateX(-100%);
    border: 1px solid var(--highlight);
    border-radius: 8px;
}

._colorSquare_1m80w_10 {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 5px;
    border: 1px solid var(--highlight);
    cursor: pointer;
}