:root {
    --max-width: 1400px;
    --blur-radius: 30px;
    --standard-padding: 113px;
    --standard-margin: 10px;

    --accent: 51, 175, 175;
    --dark-accent: 37, 154, 156;

    --bg: 255, 255, 255;
    --bg-sec: 241, 249, 249;
    --fg: 0, 0, 0;
    --fg-sec: 70, 52, 104;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background-color: rgb(var(--bg));
}
html,
body {
    font-family: "Inter", Arial, sans-serif;
}
.margin-left {
    margin-left: var(--standard-margin);
}
.margin-right {
    margin-right: var(--standard-margin);
}
.padding-bottom {
    padding-bottom: var(--standard-padding);
}
.flex-fill {
    flex: 1 1 auto;
}
.flex-line {
    display: flex;
}
.aligned-center {
    align-items: center;
}
.header {
    width: 100%;
    padding: var(--standard-padding) 0;
    padding-top: 200px;
    background-color: rgb(var(--bg-sec));
    margin-bottom: 1.5em;
}
.inline-padding {
    padding-bottom: 30px;
}
.hor-padding {
    padding-top: var(--standard-padding) !important;
}
.grid {
    display: grid;
    gap: var(--standard-margin);
}
.question-groups-side {
    list-style-type: none;
    padding-left: 0;
}
.question-groups-side li a {
    font-size: 18px;
    line-height: 30px;
    color: rgb(var(--fg));
    text-decoration: none;
    background-color: rgb(var(--bg-sec));
    border-radius: 5px;
    padding: 5px 10px;
    padding-bottom: 15px;
    margin-bottom: 5px;
    display: flex;
    transition: all 0.3s ease;
}
.question {
    position: relative;
}
.question::before {
    content: "";
    top: 10px;
    left: -20px;
    width: 10px;
    height: 10px;
    transform-origin: center center;
    transform: scale(0);
    border-radius: 50%;
    background-color: #e62c2c;
    position: absolute;
    transition: all 0.3s ease;
}
.question.unanswered::before {
    transform: scale(1);
}
.question.unanswered:hover::before {
    transform: scale(1.2);
}
.add-file {
    opacity: 0;
    transition: all 0.3s ease;
}
.add-file.showing-file {
    opacity: 1;
}
.response .can-hide {
    transition: all 3s ease;
    width: 100%;
    user-select: auto;
    pointer-events: auto;
    max-height: 5000px;
}
.no-select {
    pointer-events: none;
    user-select: none;
}
.response .hidden {
    max-height: 0 !important;
    overflow: hidden !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-radius: 20px;
    user-select: none;
    pointer-events: none;
}
.question-groups-side li a span {
    flex: 1 1 auto;
    display: inline-block;
    text-align: right;
    color: var(--color);
}
.question-groups-side li {
    position: relative;
}
.question-groups-side li .barChart {
    height: 10px;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: auto !important;
    overflow: hidden !important;
}
.question-groups-side li:first-child a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.question-groups-side li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 0;
}
.question-groups-side li:last-child .barChart {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.question-groups-side li a:hover {
    background-color: rgba(var(--accent), 0.2);
}
.question-groups-side li.completed a {
    border-left: 10px solid rgb(var(--dark-accent));
    color: rgb(var(--dark-accent));
}
.question-groups-side li.completed .barChart {
    left: 10px !important;
    border-bottom-left-radius: 0 !important;
}
.question-groups-side li.completed .barChart .bar {
    border-top-left-radius: 0 !important;
}
.question-groups-side li.completed .barChart .bar.first-bar {
    border-bottom-left-radius: 0 !important;
}
.question-groups-side li.completed .barChart .bar.final-bar {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.question-groups-side li.selected a {
    color: rgb(var(--fg));
    background-color: rgb(var(--accent));
}
#action-plan-filters {
    display: flex;
    padding-bottom: 1.5em;
    align-items: center;
}
.barChart {
    display: flex;
    height: 20px;
    width: 50%;
    border-radius: 5px;
    background-color: rgb(var(--bg-sec));
}
#dont-upload-personal-evidence {
    padding-top: 2rem;
}

.barChart .bar {
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 0 0 rgb(var(--bg-sec));
}
.barChart .bar:hover {
    transform: scale(1.1);
    border-radius: 5px;
}

.barChart.full {
    width: 100%;
}

.padding-bottom {
    padding-bottom: var(--standard-padding);
}

.barChart .bar.final-bar {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.barChart .bar.first-bar {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.barChart .bar:hover {
    transform: scale(1.1);
    border-radius: 5px;
    z-index: 1;
    box-shadow: 0 4px 10px -1px rgb(var(--bg-sec));
}
.action-plan-question {
    display: none;
}
.action-plan-question.showing {
    display: block;
}

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

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

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

.question-group-ap-title {
    display: flex;
    align-items: center;
}

.ap-title-prog {
    width: 25%;
    padding-left: 1em;
    padding-bottom: 10px;
}

.ap-title-prog p {
    font-size: 14px;
    padding-bottom: 0.5em;
    line-height: 1;
}

.toggleButton {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 99px;
    margin-right: 5px;
    border: 2px solid var(--color);
    background-color: var(--color);
    color: var(--fg);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
}
.toggleButton::before {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    border-radius: 99px;
    content: "";
    background-color: rgb(var(--bg));
    display: inline-block;
}
.toggleButton.showing {
    border-color: rgb(var(--fg));
}
.toggleButton.showing::before {
    background-color: rgb(var(--fg));
}
.sticky {
    position: sticky;
}
.sideline {
    border-left: 1px solid rgba(var(--fg-sec), 0.15);
    padding-left: var(--standard-padding);
}
.sticky.sideline {
    top: calc(160px + var(--standard-margin));
    transition: top 0.3s ease;
}
.sticky.sideline.quiz-sidebar {
    padding: 30px;
    border: none;
}
.sticky.sideline.moving-down {
    top: calc(120px + var(--standard-margin));
}
.responsive-double-column {
    grid-template-columns: 1fr 1fr;
}
.responsive-triple-column {
    grid-template-columns: 1fr 1fr 1fr;
}
.responsive-double-column-wide-first {
    grid-template-columns: 3fr 2fr;
}
.main-dash-tiles {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5em var(--standard-margin);
}
.main-dash-tiles .dashboard-tile.dark-dash {
    grid-column: span 5;
}
.grid.thick-gap {
    gap: calc(var(--standard-padding) / 2) var(--standard-padding);
}
.margin-top {
    margin-top: var(--standard-margin);
}
.thick-margin-top {
    margin-top: calc(var(--standard-padding) / 2);
}
.progress-bar {
    background-color: rgb(var(--bg-sec));
    position: relative;
    height: 20px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.progress-bar.transparent {
    background-color: transparent;
}
.progress-bar.rounded-bar {
    height: 15px;
    border-radius: 99px;
}
.action-plan-evidence p {
    padding-bottom: 0;
}
.action-plan-side-tab {
    position: relative;
    margin-bottom: 15px;
}
.action-plan-side-tab::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 0;
    height: calc(100% - 5px);
    width: 25px;
    background-color: var(--color);
    border-radius: 5px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    display: flex;
    justify-content: center;
    font-weight: 700;
    padding-top: 5px;
}
.tooltip-bubble {
    position: absolute;
    background: rgb(var(--accent));
    color: rgb(var(--fg));
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
    text-align: center;
    border-radius: 10px;
    padding: 10px 15px;
    border: rgb(var(--bg-sec)) solid 2px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
*:hover > .tooltip-bubble {
    opacity: 1;
}
.tooltip-bubble:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-color: rgb(var(--accent)) transparent;
    border-width: 0 15px 15px;
    top: -15px;
    left: 50%;
    margin-left: -15px;
}
.tooltip-bubble:before {
    content: "";
    position: absolute;
    width: 0;
    z-index: 0;
    border-style: solid;
    border-color: rgb(var(--bg-sec)) transparent;
    border-width: 0 17px 17px;
    top: -18px;
    left: 50%;
    margin-left: -17px;
    display: block;
}
.action-plan-evidence.action-plan-side-tab::before {
    content: "E";
}
.action-plan-actions.action-plan-side-tab::before {
    content: "A";
}
.progress-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 5px;
    width: calc(var(--p) * 1%);
    background-color: rgb(var(--dark-accent));
}
.progress-bar.rounded-bar::before {
    border-radius: 99px;
}
.progress-bar.with-text::after {
    position: absolute;
    left: calc(var(--p) * 1%);
    top: 50%;
    transform: translate(calc(-100% - 5px), -50%);
    color: rgb(var(--accent));
    font-size: 11px;
    font-weight: 700;
}
.progress-bar.with-text:not(.with-custom-text)::after {
    counter-reset: text var(--p);
    content: "" counter(text) "%";
}
.progress-bar.with-text.with-custom-text::after {
    content: var(--bar-text);
}
.dashboard-tile {
    background-color: rgb(var(--bg-sec));
    border-radius: 5px;
    box-shadow: 0 0 0 0 rgb(var(--bg-sec));
    padding: calc(var(--standard-padding) / 2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: rgb(var(--fg));
}
.dashboard-tile.thin-tile {
    padding: 20px;
}
.dashboard-tile.thin-tile h2 {
    text-align: center;
    font-size: 30px;
}
#quiz-form {
    padding: 30px;
    background-color: rgba(var(--bg), 1);
    border-radius: 20px;
}
.quiz-container {
    border: 1px solid rgba(var(--fg-sec), 0.15);
    background-color: rgba(var(--bg-sec), 0.4);
    border-radius: 20px;
    gap: 0 0 !important;
}
.quiz-group-description {
    padding-bottom: 1.5em;
    font-size: 1.3rem;
    line-height: 32px;
    margin: 0;
    color: rgb(var(--fg-sec));
}
.evidence-cats {
    padding-bottom: 3em;
}
.evidence-cats a {
    color: rgb(var(--fg));
}
.dashboard-tile.thin-tile p {
    color: rgb(var(--dark-accent));
    padding-top: 0.5rem;
    font-size: 15px;
}
.dashboard-tile.dark-dash {
    background-color: rgb(var(--dark-accent));
}
.dashboard-tile.disabled {
    box-shadow: none;
    cursor: auto;
    background-color: #f5f5f5;
}
.dashboard-tile.dark-dash p,
.dashboard-tile.dark-dash h2 {
    color: #fff;
}
.dashboard-tile:not(.disabled):hover {
    box-shadow: 0 10px 10px -5px rgb(var(--bg-sec));
    /* transform: translateY(-5px); */
}
.dashboard-tile h2,
.dashboard-tile h3 {
    margin: 0;
}
.dashboard-tile .grid p {
    padding: 0;
    color: rgb(var(--dark-accent));
    text-align: right;
}
.dashboard-tile > p {
    padding-bottom: 0;
    padding-top: 1.5em;
}
.header .header-inner h1 {
    color: rgb(var(--dark-accent));
    margin: 0;
    font-size: 60px;
    margin-top:0.5rem !important;
    margin-bottom: 30px;
}
.header.image-header {
    min-height: 50vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.header.image-header .header-inner h1 {
    color: #fff;
}
.header.image-header .header-inner p {
    color: #fff;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    overflow: hidden;
    padding: 30px 0;
    z-index: 999;
    background-color: rgba(var(--bg), 0);
    backdrop-filter: blur(0);
    display: flex;
    transition: backdrop-filter 0.3s ease, background-color 0.3s ease,
        transform 0.3s ease;
    box-shadow: 0 1px 0 0 rgba(var(--fg-sec), 0.15);
    transform: translateY(40px);
}

.invalid-feedback strong{
    color: red;
}

.text-button {
    text-decoration: none;
    display: inline-flex;
    position: relative;
    padding: 2px 0;
    padding-top: 4px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: rgb(var(--fg));
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: border 0.2s ease, background-color 0.2s ease;
}

.text-button svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    stroke: rgb(var(--dark-accent));
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-width: 2px;
}

.text-button:hover {
    color: rgb(var(--accent));
    border-color: rgb(var(--dark-accent));
}

.text-button:active {
    background-color: rgb(var(--dark-accent));
    color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.text-button:active svg {
    stroke: #fff;
}

.large-price {
    margin: 0;
    font-size: 35px;
}

.std-button {
    appearance: none;
    background-color: rgb(var(--bg-sec));
    border: 1px solid rgba(var(--fg-sec), 0.15);
    border-radius: 6px;
    box-shadow: rgba(var(--fg-sec), 0.04) 0 1px 0,
        rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-family: "Inter", Arial, sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 6px 16px;
    position: relative;
    transition: filter 0.2s cubic-bezier(0.3, 0, 0.5, 1), box-shadow 0.2s ease,
        transform 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
}

.std-button.circle-butt {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    justify-content: center;
    padding: 0;
}

.std-button.large {
    padding: 14px 24px;
}

.std-button.full-width {
    width: 100%;
}

.question_action_response {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding-bottom: 5px;
    background-color: rgb(var(--bg-sec));
    padding: 10px;
    border-radius: 5px;
    position: relative;
    border: 1px solid rgba(var(--fg-sec), 0.15);
    box-shadow: rgba(var(--fg-sec), 0.04) 0 1px 0,
        rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    overflow: hidden;
    padding-top: 60px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.beta-tag {
    background-color: rgb(var(--accent));
    padding: 6px 12px;
    border-radius: 99px;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.question_action_response .questions-textbox {
    background-color: rgb(var(--bg));
}

.question_action_response.removing {
    opacity: 0.5;
    pointer-events: none;
}

.navbar-inner .std-button {
    padding: 11px 16px;
}

.std-button.primary {
    background-color: rgb(var(--accent));
}

.accent-text {
    color: rgb(var(--accent));
}
.dark-accent-text {
    color: rgb(var(--dark-accent));
}

.circle-button:hover,
.std-button:hover {
    filter: contrast(115%);
    box-shadow: rgba(var(--fg-sec), 0.07) 0 2px 0,
        rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    text-decoration: none;
    transform: translateY(-2px);
    transition-duration: 0.1s;
}

.std-button:disabled {
    border-color: rgba(var(--fg-sec), 0.15);
    color: #959da5;
    cursor: default;
}

.std-button:active {
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
}

.side-head {
    padding-bottom: 1rem;
    margin: 0;
}

.std-button:focus {
    outline: 1px transparent;
}

.std-button:before {
    display: none;
}

.std-button:-webkit-details-marker {
    display: none;
}
.navbar.nav-down {
    background-color: rgba(var(--bg), 0.9);
    backdrop-filter: blur(var(--blur-radius));
    box-shadow: 0 1px 0 0 rgba(var(--fg-sec), 0.15);
}
.top-nav {
    transition: transform 0.3s ease;
    height: 40px;
    background-color: rgb(var(--dark-accent));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(0);
}
.top-nav.moving-down {
    transform: translateY(-40px);
}
.navbar.moving-down {
    transform: translateY(0);
}
.top-nav a {
    height: 40px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 0.3s ease;
    color: #fff;
}
.top-nav a:first-of-type {
    margin-left: -15px;
}
.top-nav a:last-of-type {
    margin-right: -15px;
}
.top-nav a:hover {
    background-color: rgb(var(--accent));
}
.navbar.navbar-inner {
    height: 50px;
}
.top-nav.navbar-inner {
    height: 30px;
}
.navbar-inner {
    display: flex;
    align-items: center;
}
.nav-logo {
    height: 100%;
}
.nav-logo img {
    height: 100%;
    width: auto;
}
.nav-logo .sticky-logo {
    display: none;
}
.navbar.nav-down .nav-logo .sticky-logo {
    display: block;
}
.navbar.nav-down .nav-logo .main-logo {
    display: none;
}

.maxed-width {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--standard-padding);
}
.header .header-inner p {
    font-size: 25px;
    max-width: 650px;
}
h2 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
}
p {
    padding-bottom: 1.5em;
    font-size: 18px;
    line-height: 32px;
    margin: 0;
    color: rgb(var(--fg-sec));
}
.bold {
    font-weight: 600;
}
.form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    width: 50%;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1.3rem;
    color: rgb(var(--fg));
    padding: 7px 0;
    margin-bottom: 1rem;
    background: transparent;
    transition: border-color 0.2s;
}
.form__field::placeholder {
    color: transparent;
}
.form__field:placeholder-shown ~ .form__label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #9b9b9b;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-color: rgb(var(--accent));
}
.form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: rgb(var(--accent));
    font-weight: 700;
}

.form__field:required,
.form__field:invalid {
    box-shadow: none;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--form-background);
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: CanvasText;
}

.form-buttons {
    display: flex;
    align-items: center;
}

.form-check {
    padding-top: 1.5em;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:disabled {
    --form-control-color: var(--form-control-disabled);

    color: var(--form-control-disabled);
    cursor: not-allowed;
}

.form-radio {
    font-size: 1rem;
    line-height: 1.1;
    display: inline-grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--bg);
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: CanvasText;
}

#saving-dialog {
    position: fixed;
    bottom: 20px;
    padding: 20px;
    width: var(--w);
    background-color: rgb(var(--bg));
    z-index: 100;
    border-radius: 10px;
    border: 1px solid rgba(var(--fg-sec), 0.15);
    box-shadow: rgba(var(--fg-sec), 0.04) 0 1px 0,
        rgba(var(--fg-sec), 0.15) 0 4px 12px -3px,
        rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.saving-indicator {
    color: var(--fg);
    display: inline-flex;
    align-items: center;
}
.saving-indicator svg {
    fill: currentColor;
    margin-right: 2px;
}
.saving-indicator span {
    color: rgb(var(--fg-sec));
}

#floating-save-indicator {
    position: fixed;
    bottom: 20px;
    z-index: 99;
    backdrop-filter: blur(var(--blur-radius));
    border-radius: 10px;
    padding: 10px;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#floating-save-indicator.showing {
    transform: translateY(0);
}

#save-indicator {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#save-indicator.showing {
    opacity: 1;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}

.file {
    position: relative;
    display: inline-block;
    cursor: pointer;
    height: 2.5rem;
    overflow: hidden;
}

.file.full {
    width: 100%;
}

.file.full .file-custom,
.file.full .file-custom:before {
    background-color: rgb(var(--bg-sec));
}

.file input {
    min-width: 14rem;
    margin: 0;
    filter: alpha(opacity=0);
    opacity: 0;
}

.file-custom {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: #555;
    background-color: rgb(var(--bg));
    border: 1px solid rgb(var(--dark-accent));
    border-radius: 0.25rem;
    box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.file-custom:before {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 6;
    display: block;
    content: "Browse";
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: rgb(var(--fg));
    background-color: rgb(var(--bg));
    border: 1px solid rgb(var(--dark-accent));
    border-radius: 0 0.25rem 0.25rem 0;
}

.file-custom:after {
    content: var(--upload-text);
}

.question {
    padding-bottom: 5rem;
    opacity: 0;
    animation: bulletListItem 0.2s cubic-bezier(0.52, 0, 0.6, 1.09)
        calc(var(--i) * 0.05s) 1 normal forwards;
}

.question_action_responses
    .question_action_response:first-child
    .top-line
    .remove-box {
    display: none;
}

.question p {
    padding-bottom: 0.2em;
    padding-top: 1.5em;
}

.question p.question-title {
    padding-bottom: 1.5em;
    padding-top: 0;
    font-size: 1.3rem;
}

.question:last-of-type {
    padding-bottom: 2rem;
}

.question-title span {
    font-weight: 700;
}

#autocomplete-dropdown {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    border: 1px solid rgb(var(--fg-sec));
    max-height: 150px;
    overflow-y: auto;
    margin-top: 5px;
    border-radius: 5px;
    background-color: rgb(var(--bg));
}

#autocomplete-dropdown.showing {
    opacity: 1;
    pointer-events: auto;
}

#autocomplete-dropdown div {
    padding: 15px 24px;
    cursor: pointer;
    transition: backgrounc-color 0.2s ease;
}

#autocomplete-dropdown div:hover,
#autocomplete-dropdown div.highlighted {
    background-color: rgb(var(--bg-sec));
}

.question-top-row {
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -1em;
    flex-wrap: wrap;
}

.question-top-row > * {
    margin: 0 1em;
    margin-bottom: 1em;
}

.question-top-row.question-second-row {
    padding-bottom: 0;
}

.questions-textbox {
    resize: none;
    background-color: rgb(var(--bg-sec));
    border: 1px solid rgb(var(--dark-accent));
    border-radius: 5px;
    padding: 15px 24px;
    color: rgb(var(--fg));
    text-align: center;
    font-family: "Inter", Arial, sans-serif;
    width: 100%;
}
.question_action_response:not(.opened) {
    max-height: 52px;
    padding: 0 10px;
}
.question_action_response.opened {
    max-height: 800px;
    overflow-y: auto;
}
.main-dash-tiles .dashboard-tile:not(.dark-dash) span,
.main-dash-tiles .dashboard-tile:not(.dark-dash) p {
    text-align: center;
}
.hints-and-tips {
    display: flex;
    padding: 10px 0 !important;
    margin-bottom: 1rem;
    border-radius: 5px;
    transition: max-height 0.3s ease, background-color 0.3s ease,
        padding 0.3s ease;
    max-height: auto;
    overflow: hidden;
}
.hints-and-tips > span {
    transform: translateY(-4px);
}

.expanding {
    min-height: 1.5em;
    overflow-y: auto;
    resize: vertical;
}

.hints-and-tips > span > span:first-child {
    font-weight: 700;
    user-select: none;
    width: 100%;
    padding-bottom: 5px;
    padding-top: 5px;
    transition: border 0.3s ease;
    user-select: none;
    display: block;
}
.hints-and-tips.opened {
    background-color: rgba(var(--accent), 0.1);
    padding: 10px !important;
    padding-right: 20px !important;
    overflow-y: auto;
}
.hints-and-tips svg {
    color: rgb(var(--accent));
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 24px;
    fill: none;
    height: 24px;
    min-width: 24px;
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.hints-and-tips.opened svg {
    transform: rotate(90deg);
}
.hints-and-tips:not(.opened) {
    max-height: 44px;
}
.hints-and-tips .tips-content {
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-top: 10px;
}
.hints-and-tips.opened .tips-content {
    opacity: 1;
}
.tips-content p {
    padding: 0;
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
}

.tips-content h2, .tips-content h3 {
    padding: 0;
    margin: 16px 0;
    font-size: 28px;
    line-height: 1.2;
    color: rgb(var(--fg-sec));
}
.hints-and-tips .tips-content br {
    display: none;
}
.question_action_response .accordionOpener {
    transition: transform 0.3s ease;
}
.question_action_response.opened .accordionOpener {
    transform: rotate(45deg);
}
.question_action_response > *:not(.top-line) {
    transition: opacity 0.3s ease;
}
.question_action_response:not(.opened) > *:not(.top-line) {
    opacity: 0;
    pointer-events: none;
}

.questions-textbox.left-aligned {
    text-align: left;
}

.bullet-list {
    padding-top: calc(var(--standard-padding) / 2);
    position: relative;
}

.bullet-list::after {
    background-color: rgb(var(--bg-sec));
    top: 0;
    bottom: 0;
    width: 2px;
    left: 14px;
    content: "";
    position: absolute;
    transform-origin: top center;
    transform: scaleY(0);
    animation: bulletListLine 3s ease 0.5s 1 normal forwards;
}

.bullet-list-item {
    position: relative;
    padding-bottom: calc(var(--standard-padding) / 2);
    padding-left: 60px;
    font-size: 18px;
    line-height: 32px;
    animation: bulletListItem 0.5s ease calc(0.4s * var(--i)) 1 normal forwards;
    opacity: 0;
    z-index: 2;
}

.bullet-list-icon {
    line-height: 30px;
    font-size: 16px;
    width: 30px;
    height: 30px;
    z-index: 2;

    border-radius: 100px;
    background-color: rgb(var(--bg-sec));
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(var(--dark-accent));
    z-index: 10;
    animation: bulletListIcon 0.5s ease calc(0.4s * var(--i)) 1 normal forwards;
}

.title-header {
    padding-bottom: 2em;
    margin: 0;
}

#footer {
    width: 100%;
    padding: calc(var(--standard-padding) / 2) 0;
}
#footer .line-break {
    margin-bottom: calc(var(--standard-padding) / 2);
}
.line-break {
    background-color: rgb(var(--bg-sec));
    height: 2px;
    width: 100%;
}
#footer img {
    max-height: 100px;
}

#section-total-score {
    padding-bottom: 20px;
}

#section-total-score h2 {
    font-size: 50px;
    line-height: 55px;
    text-align: right;
    margin: 0;
    color: var(--color);
}

#section-total-score h3 {
    font-size: 20px;
    text-align: right;
    font-weight: 500;
    margin: 0;
}

.inadequate {
    --color: #e62c2c;
}
.needs-improvement {
    --color: #e68c2c;
}
.good {
    --color: #23d95f;
}
.half-margin-bottom {
    margin-bottom: calc(var(--standard-padding) / 2);
}
.score-rank {
    padding-left: 70px;
    position: relative;
    padding-bottom: 4em;
    padding-right: 0.5em;
}
.score-rank::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color);
    border-radius: 9999px;
    content: "";
}
.score-rank p {
    padding-bottom: 0;
}
.score-rank h4 {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 1em;
}

.group-score-box {
    text-decoration: none;
    padding: 10px 0px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.group-score-box:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 12px -2px rgb(var(--bg-sec));
}

.group-score-box p {
    padding: 0;
    display: flex;
}

.group-score-box p span {
    flex: 1 1 auto;
    display: inline-block;
    text-align: right;
    color: var(--color);
}

.dash-tile-badge {
    background-color: rgb(var(--accent));
    padding: 10px 18px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.action-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5em;
}
.action-plan-q-buttons {
    border-radius: 999px;
    background-color: rgb(var(--bg-sec));
}
.action-plan-q-buttons .circle-button:first-child {
    margin-left: 0;
}
.action-plan-top p {
    padding-right: 1em;
    padding-bottom: 0;
}
.action-plan-top .circle-button {
    margin-left: 5px;
}
.circle-button {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 999px;
    background-color: rgb(var(--accent));
    border: 1px solid rgba(var(--fg-sec), 0.15);
    box-shadow: rgba(var(--fg-sec), 0.04) 0 1px 0,
        rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    transition: filter 0.2s cubic-bezier(0.3, 0, 0.5, 1), box-shadow 0.2s ease,
        transform 0.2s ease;
}
.circle-button svg {
    width: 18px;
    height: 18px;
    stroke: rgb(var(--fg));
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-width: 2px;
}
.action-plan-question {
    padding-bottom: 2em;
    margin-bottom: 2em;
    border-bottom: 2px solid rgb(var(--bg-sec));
    opacity: 0;
    animation: bulletListItem 0.2s cubic-bezier(0.52, 0, 0.6, 1.09)
        calc(var(--i) * 0.05s) 1 normal forwards;
}
.action-plan-question:last-of-type {
    border: none;
}

.tile-group {
    counter-reset: section;
}

.section-detail-tile {
    counter-increment: section;
    position: relative;
    color: rgb(var(--fg));
    background-color: rgb(var(--bg));
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    padding-left: 60px;
    margin-bottom: 10px;
    border: 1px solid rgb(var(--fg-sec));
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.section-detail-tile.disabled {
    opacity: 0.5;
    pointer-events: none;
    background-color: rgb(var(--bg-sec));
}
.group-tile-vertical {
    margin-bottom: 10px;
    border-radius: 5px;
}
.group-tile-vertical.top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.group-tile-vertical.bottom {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.section-detail-tile:hover {
    background-color: rgb(var(--bg-sec));
}

.section-detail-tile h2,
.section-detail-tile p {
    margin: 0;
    padding: 0;
}

.section-detail-tile::before {
    content: counter(section);
    position: absolute;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 99px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--bg-sec));
    transition: all 0.3s ease;
}
.section-detail-tile .rag-tag {
    border-radius: 4px;
    width: 100px;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
    height: 100%;
    background-image: linear-gradient(to right, transparent, var(--color));
}

.section-detail-tile.disabled .rag-tag {
    opacity: 0;
}

.section-detail-tile:hover::before {
    background-color: rgb(var(--accent));
}

.question_action_response .top-line {
    background-color: rgb(var(--accent));
    display: flex;
    padding: 10px;
    grid-column: span 2;
    color: rgb(var(--fg));
    position: absolute;
    left: 0;
    width: 100%;
    align-items: center;
    top: 0;
    z-index: 2;
    user-select: none;
}
.question_action_response .top-line p {
    margin: 0;
    padding: 0;
    color: inherit;
}
.question_action_response .top-line svg {
    background-color: rgb(var(--accent));
    filter: contrast(120%);
    color: inherit;
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    border-radius: 99px;
    fill: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.question_action_response .top-line svg:first-of-type {
    margin-right: 10px;
}

.filter-categories {
    position: relative;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.filter-categories ul {
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    padding: 0 2px;
    white-space: nowrap;
    scroll-behavior: smooth;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overflow-x: auto;
    overflow-y: hidden;
}

.filter-categories ul::-webkit-scrollbar {
    display: none;
}

.filter-categories .category button {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    height: 36px;
    padding: 0 16px;
    border: none;
    border-radius: 9999999px;
    color: rgb(var(--dark-accent));
    background: rgb(var(--bg-sec));
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-categories .category button:hover {
    filter: contrast(115%) brightness(115%);
}
.filter-categories .category.active > button {
    background: rgb(var(--dark-accent));
    color: white;
}
.filter-categories .scroll button {
    position: absolute;
    background: none;
    z-index: 1;
    width: 40px;
    border: none;
    height: 36px;
    padding: 10px 0;
    color: rgb(var(--fg));
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-categories .scroll button:hover {
    transform: scale(1.1);
}
.filter-categories .scroll.hidden button {
    pointer-events: none;
    opacity: 0;
}
.filter-categories .scroll-backward button {
    left: 0;
    background-image: -webkit-gradient(
        linear,
        right top,
        left top,
        from(rgba(var(--bg-sec), 0)),
        color-stop(50%, rgba(var(--bg-sec), 1))
    );
    background-image: linear-gradient(
        to left,
        rgba(var(--bg-sec), 0) 0%,
        rgba(var(--bg-sec), 1) 50%
    );
}
.filter-categories .scroll-forward button {
    right: 0;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(var(--bg-sec), 0)),
        color-stop(50%, rgba(var(--bg-sec), 1))
    );
    background-image: linear-gradient(
        to right,
        rgba(var(--bg-sec), 0) 0%,
        rgba(var(--bg-sec), 1) 50%
    );
}

.filter-categories .scroll button svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.filter-categories .scroll-backward button svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.filter-categories .scroll-forward button svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.filter-categories .category {
    display: inline-block;
}

#dashboard-content {
    transition: all 0.3s ease;
}
#dashboard-content.loading {
    pointer-events: none;
    opacity: 0.2;
    filter: blur(10px);
}

.data-card {
    background: none;
    border: 1px solid rgb(var(--fg-sec));
    border-radius: 10px;
    padding: 32px;
}

.data-card h2 {
    font-weight: 900;
    font-size: 48px;
    color: rgb(var(--dark-accent));
    margin: 0;
    padding-bottom: 1rem;
}
.data-card p {
    padding-bottom: 0;
}
.data-card .barChart {
    margin-bottom: 1rem;
    width: 100%;
}

.table-container {
    overflow: scroll;
    width: 100%;
    margin-bottom: 2.5rem;

}
table {
    border-collapse: collapse;
    width: 100%;
    position: relative;
}

table.statement-tips {
    border: 1px solid rgb(var(--fg-sec));
    border-bottom: 1px solid rgb(var(--fg-sec));
}

table.statement-tips th {
    background-color: rgb(var(--bg-sec));
    color: rgb(var(--fg));
    font-weight: 700;
    text-align: center;
    padding: 0.5rem 1rem;
}

table.statement-tips td {
    border: 1px solid rgb(var(--fg-sec)) !important;
    white-space: pre-line;
    line-height: 1.2rem;
}

table.statement-tips td a {
    width: max-content;
    color: rgb(var(--accent));
    text-decoration: underline;
    border-bottom: none;
    border-bottom-width: 0px;
}

table.statement-tips td a:hover{
    border-bottom: none;
    border-bottom-width: 0px;
}

table.statement-tips tr:hover {
    background-color: white;
}

table.statement-tips tr {
    border-bottom: 1px solid rgb(var(--fg-sec));
}

thead tr {
    border-bottom: 1px solid rgb(var(--fg-sec));
    border-top: 1px solid rgb(var(--fg-sec));
    height: 1px;
}
th {
    padding: 0.3rem 1rem;
    font-weight: bold;
    height: inherit;
}
th:not(:first-of-type) {
    border-left: 1px solid rgb(var(--fg-sec));
}
td:not(:first-of-type) {
    border-left: 1px solid #ddd;
}
th,
td {
    white-space: nowrap;
}
th button {
    background-color: rgb(var(--fg-sec));
    border: none;
    cursor: pointer;
    display: block;
    font: inherit;
    height: 100%;
    margin: 0;
    min-width: max-content;
    padding: 0.5rem 1rem;
    position: relative;
    text-align: left;
    width: 100%;
}
tbody tr {
    border-bottom: 1px solid #ddd;
}
td {
    padding: 0.5rem 1rem;
    text-align: left;
}
td > div {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
tr:hover > td > div {
    opacity: 1;
    pointer-events: auto;
}

tr:hover {
    background-color: rgb(var(--bg-sec));
}

tr > td > div > button {
    background: none;
    border: none;
    cursor: pointer;
}

th button::after {
    position: absolute;
    right: 0.5rem;
}
th button[data-dir="asc"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpolygon points='0, 0 8,0 4,8 8' fill='%23818688'/%3E%3C/svg%3E");
}
th button[data-dir="desc"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpolygon points='4 0,8 8,0 8' fill='%23818688'/%3E%3C/svg%3E");
}

.overlay-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
    padding: calc(var(--standard-padding) / 2);
}

.overlay-container.showing {
    opacity: 1;
    pointer-events: auto;
}

.overlay-container .overlay-inner {
    background-color: rgb(var(--bg));
    border-radius: 15px;
    box-shadow: 0 10px 10px -5px rgb(var(--bg-sec));
    padding: 0;
    text-decoration: none;
    color: rgb(var(--fg));
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10vh;
}

.overlay-container .overlay-inner h3 {
    margin-top: 0;
    padding: calc(var(--standard-padding) / 2);
    padding-bottom: calc(var(--standard-padding) / 2)/2;
    background: linear-gradient(to bottom, rgb(var(--bg-sec)), rgb(var(--bg)));
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.overlay-container .overlay-inner .overlay-inner-content {
    padding: calc(var(--standard-padding) / 2);
    padding-top: 20px;
}

.overlay-container .overlay-inner .overlay-inner-content > * {
    margin-bottom: 10px;
}

.overlay-container .overlay-inner .overlay-inner-content > *:last-child {
    margin-bottom: 0;
}

.link-1 {
    text-decoration: none;
    color: rgb(var(--accent));
    font-weight: 900;
}

.link-1:hover {
    color: rgb(var(--dark-accent));
    text-decoration: underline;
}

@keyframes bulletListItem {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes bulletListIcon {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes bulletListLine {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@media only screen and (max-width: 1200px) {
    :root {
        --standard-padding: 90px;
    }
    .main-dash-tiles {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .main-dash-tiles .dashboard-tile.dark-dash {
        grid-column: span 3;
    }
    .sideline {
        padding-left: calc(var(--standard-padding) / 2);
    }
    .grid.thick-gap {
        gap: calc(var(--standard-padding) / 2) calc(var(--standard-padding) / 2);
    }
}
@media only screen and (max-width: 1000px) {
    .responsive-double-column-wide-first {
        grid-template-columns: 5fr 4fr;
    }
}

@media only screen and (max-width: 900px) {
    :root {
        --standard-padding: 70px;
    }
    .header .header-inner h1 {
        font-size: 40px;
    }
    .responsive-double-column,
    .responsive-triple-column,
    .responsive-double-column-wide-first {
        grid-template-columns: 1fr;
    }
    .main-dash-tiles {
        grid-template-columns: 1fr 1fr;
    }
    .main-dash-tiles .dashboard-tile.dark-dash {
        grid-column: span 2;
    }
    .sideline {
        padding-left: 0;
        border: none;
    }
    #section-total-score h2 {
        font-size: 40px;
        line-height: 45px;
        text-align: center;
    }

    #section-total-score h3 {
        text-align: center;
    }
}
@media only screen and (max-width: 600px) {
    :root {
        --standard-padding: 40px;
    }
    .header .header-inner h1 {
        font-size: 30px;
    }
    .navbar {
        padding: 25px 0;
        height: 90px;
    }
    .navbar .navbar-inner {
        height: 40px;
    }
    .main-dash-tiles {
        grid-template-columns: 1fr;
    }
    .main-dash-tiles .dashboard-tile.dark-dash {
        grid-column: span 1;
    }
}
