﻿@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('/Includes/duDatepicker/duDatepicker.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Roboto;
    font-size: 1rem;
    line-height: 1.5;
    height: 100%;
}

.form-header {
    padding-top: 0.5rem;
}

.form-group {
    padding-top: 0.91rem;
}

.flex {
    display: flex !important;
}

.flex-even {
    flex: 1;
}

.border-box {
    padding: 8px 16px;
    border-radius: 13px !important;
    border: 1px solid #BFC9C2;
    background: #FFF;
}

.searchResults {
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}


.pb-1 {
    padding-left: 0.25rem !important;
}

.instructions {
    /* Make the span a block container to better control layout and hiding */
    display: block;
    /*
    Aggressively hide the original text content of the span.
    The !important flags are crucial here to override conflicting styles
    (e.g., from 'regular-m-text16' or other stylesheets)
    that might be keeping the original text visible.
  */
    font-size: 0 !important;
    line-height: 0 !important; /* Collapses the space taken by the original text */
    color: transparent !important; /* Ensures text is not seen even if it has minuscule size */
    overflow: hidden; /* Clips any residual content that might somehow remain */
    /* Remove any padding the original span might have that could show background or affect layout */
    padding: 0 !important;
    border: none !important; /* If there was any border making it visible */
}

    .instructions::before {
        /* The text content with \A representing a newline character.
     Ensure this text exactly matches what you want to display. */
        content: "1: Make sure that all team members complete The Bridge Personality;\A 2: Download the Bridge Personality plus Colour report for all team members;\A 3: Search and select all team members from the search screen above;\A 4: Download the team report in the selected language";
        /*
    Restore all necessary font and text styling for the pseudo-element.
    Since the parent's styles are suppressed, you need to redefine them here.
    You should try to match the styles originally provided by 'regular-m-text16'.
  */
        font-size: 14px; /* Assuming 'regular-m-text16' means 16px. Adjust if needed. */
        line-height: normal; /* Or a specific value like 1.4, matching original style */
        color: #000; /* Set your desired text color, e.g., black or a specific hex code.
                             'initial' might be too generic. Check what 'regular-m-text16' used. */
        font-weight: normal; /* Or whatever 'regular-m-text16' specifies */
        /* Add any other text properties like text-align, font-style, etc., if they were
     part of 'regular-m-text16' and are needed. */
        /* This property tells the browser to respect the \A as a newline character */
        white-space: pre-line;
        /* Make the pseudo-element display as a block to handle multi-line content cleanly */
        display: block;
        padding: 0; /* Reset padding for the pseudo-element unless specifically needed */
    }

/* --- CSS to Position Validator Marker ('!') Beside Input --- */

.input-validator-wrapper {
    display: flex !important; /* Use flexbox for layout */
    align-items: center !important; /* Align items vertically (try 'baseline' too) */
    gap: 5px !important; /* Space between input and marker */
    position: relative; /* Needed if MaterialTextBox renders complex structure */
}

/* Target the Validator Span */
.input-validator-wrapper > span.RequiredFieldValidator {
    flex-grow: 0; /* Prevent growing */
    flex-shrink: 0; /* Prevent shrinking */
    order: 2; /* Ensure it appears after the input field */
    color: red; /* Make the marker red */
    font-size: 25px;
    font-weight: bold;
    /* Adjust vertical position if needed (depends on MaterialTextBox height/padding) */
    /* margin-top: 10px; */
    /* position: relative; top: -5px; */
}

.RequiredFieldValidatorDatePicker {
    color: red; /* Make the marker red */
    font-size: 25px;
    font-weight: bold;
}
/* Target the Input Control's Container */
/* ====> IMPORTANT: You MUST inspect the rendered HTML for mc:MaterialTextBox <==== */
/* Use browser dev tools (F12) to find the main container div it renders. */
/* Replace 'div.md3-text-field-container' with the ACTUAL class/element */
.input-validator-wrapper > div.md3-text-field-container /* <--- ADJUST THIS SELECTOR */ {
    flex-grow: 1; /* Allow input control to take up space */
    order: 1; /* Ensure it appears before the marker */
}

/* Specific rule for RadioButtonList wrapper if needed */
.input-validator-wrapper > mwtc\:LanguageRadiobuttonList /* <--- ADJUST THIS SELECTOR */ {
    flex-grow: 1;
    order: 1;
}


input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #404944;
    border-radius: 2px !important;
    cursor: pointer;
}

    input[type="checkbox"]:checked {
        background-color: #1A6B51;
        border-color: #1A6B51;
        position: relative;
    }

        input[type="checkbox"]:checked::after {
            content: "";
            mask: url(/Images/MaterialGraphics/check-icon.svg);
            background-color: white;
            position: absolute;
            width: 18px;
            height: 18px;
            left: -2px;
            top: -2px;
            transform: translate(-3px, -3px);
        }

.regular-text {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.regular-r-text14-green {
    color: #1A6B51!important;
    font-family: Roboto;
    text-decoration: unset !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.1px;
}

.regular-r-text16 {
    color:  #171D1A;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
}

.regular-b700-text14 {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.regular-b700-text16 {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.regular-m-text16 {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.title20 {
    color: #24755F;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.title24 {
    color: #24755F;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.repeater-header {
    height: 40px;
    border-top: 1px solid rgba(112, 121, 116, 0.20);
    border-bottom: 1px solid rgba(112, 121, 116, 0.20);
    padding-left: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}
.repeater-header.no-border {
    border-top: 0 !important;
}
.repeater-item, .repeater-item-alt {
    height: 52px;
    border-bottom: 1px solid rgba(112, 121, 116, 0.20);
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding-left: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.repeater-item-candidate {
    min-height: 52px;
    height: auto;
}

.repeater-item, .repeater-item-alt {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

    .text-decoration-none:nth-of-type(even) .repeater-item, .repeater-item:nth-of-type(even) {
        background-color: #ffffff !important;
    }

.repeater-item {
    background-color: #F9F9F9 !important;
}
    .repeater-item .md3-button {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-right: 18px !important;
    }
        .repeater-item .md3-button:first-child {
            margin-left: 18px !important;
        }
        .repeater-item .md3-button.md3-button-primary-no-padding {
            margin: 0 !important;
        }

        .repeater-item:hover, .repeater-item-alt:hover {
            background-color: #E8F9E8 !important;
        }

.repeater-click {
    cursor: pointer !important;
}

.sortable-header {
    cursor: pointer;
}

.sortable-header:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sort-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    font-size: 10px;
}

.email {
    color: #1A6B51;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}

.repeater-item-border {
    border-right: 1px solid rgba(112, 121, 116, 0.20);
}
    .repeater-item-border:last-child,
    .repeater-item-border.repeater-item-border-end {
        border-right: 0;
    }

.email-preview-header {
    background: #BFC9C2;
    padding: 6px 12px 6px 8px;
    border-radius: 8px !important;
    position: absolute;
    top: -12px;
}

.email-invitiation-icon {
    background: #1A6B51;
    border-radius: 100% !important;
    padding: 9px;
}

.invitation-automatically-content {
    background: #EFF5F0;
    padding: 16px;
    opacity: 1;
    transition: opacity 300ms ease;
}

.invitation-automatically-content tbody {
    background: transparent!important;
}


.template-automatically-content tbody {
    background: transparent !important;
}

.assignedTests .repeater-item {
    height: unset !important;
    cursor: unset !important;
}

.assignedTests .repeater-item-alt {
    height: unset!important;
    cursor: unset!important
}

.assignedTests .repeater-item tbody {
    background: transparent !important;
}

.assignedTests .repeater-item-alt tbody {
    background: transparent!important;
}

.assignedTests .repeater-item table {
    line-height: 1.5rem;
}

.assignedTests .repeater-item-alt table {
    line-height: 1.5rem;
}

.candidate-start-button {
    font-weight: bold !important;
    border-radius: 100px !important;
    font-family: var(--Label-Large-Font, Roboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 20px;
    letter-spacing: 0.1px;
    display: inline;
    border: 0;
    color: #1A6B51;
    text-align: left;
    text-decoration: none;
    display: flex;
    padding: 0;
    justify-content: left;
    align-items: center;
    gap: 8px;
}

.candidate-table-secondary {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    line-height: 16px; /* 114.286% */
    padding-top: 0.5rem;
}

.textarea .md3-text-field-container {
    height: 100%!important;
}

.textarea .md3-text-field-container textarea {
    height: 100%!important;
}



.border-preview {
    border: 9px solid #BFC9C2;
    background: #FFF;
    padding: 34px 30px;
    height: 100%;
    max-height: 750px;
    overflow: hidden;
    overflow-y: auto;
}

.login-body {
    background-color: #3AA686;
}

.form-wrapper {
    height: 100%;
}

.ModalPopupBG {
    background-color: #000000;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.modalContentWrapper {
    background: #F3F3F4;
}

.ModelPopupAlertContent {
    background-color: #E7E7E8;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
}

/*Inner page*/
    .inner-content {
    background: linear-gradient(0deg, #E4EAE4 0%, #E4EAE4 100%), #FFF;
}

.inner-logo {
    position: relative;
    padding: 18px 0;
}

    .inner-logo span {
        position: absolute;
        right: 0;
        bottom: 6px;
        font-size: 8px;
        color: #808285;
    }

.wrapper {
    min-height: 100%;
    position: relative;
    z-index: 2;
}

.wrapper-content {
    min-height: 100%;
    height: 100% !important;
    position: relative;
    background: linear-gradient(0deg, #E4EAE4 0%, #E4EAE4 100%), #FFF;
}

.container:not(.footer-container) {
    position: relative;
    z-index: 2;
}
.container.menu-container {
    z-index: 3 !important;
}

.alert {
    border-radius: 4px !important;
}

.container.alert-container {
    position: relative;
    top: 15px;
}

.login-logo-container {
    padding: 100px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

    .login-logo-container:before {
        background-color: #24755B;
        width: 150vw;
        height: 375px;
        margin: 0 -75vw;
        display: inline-block;
        top: -100px;
        position: absolute;
        border-bottom-left-radius: 100%;
        border-bottom-right-radius: 100%;
        z-index: -1;
        content: '';
    }

    .login-logo-container .container {
        text-align: center;
    }
        .login-logo-container .container .row {
           display: inline-flex;
        }
        .login-logo-container .container .row .logo {
            width: fit-content;
            max-width: fit-content;
            padding: 0;
        }

    .footer {
        width: 100%;
        height: 60px;
        background: transparent;
        position: relative;
        z-index: 1;
    }
.loginfooter {
    background: inherit;
    color: white;
    position: fixed;
    bottom: 0;
}

.corner-decoration {
    position: fixed;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 20vw;
    height: 40vw;
    min-width: 100px;
    min-height: 152px;
    max-width: 400px;
    max-height: 800px;
    pointer-events: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjg3IiBoZWlnaHQ9IjQzNyIgdmlld0JveD0iMCAwIDI4NyA0MzciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0zNC41IDQzN0gwQzI0LjQgNDE3LjQgODEgMzMyLjY2NyAxMDQuNSAyOTdMMTI2IDM0MC41Qzk2LjQgMzgwLjEgNTAuNjY2NyA0MjQgMzQuNSA0MzdaIiBmaWxsPSIjMjQ3NTVGIi8+CjxwYXRoIGQ9Ik0yMDguNSA0MzFDMTg5LjcgNDYzIDEzMS4zMzMgMzU1IDEwNC41IDI5N0wxNjQuNSAyODVDMTgwLjEgMzI1IDIxMy4zMzMgMzc4LjE2NyAyMjcuNSAzOTlDMjIwLjcgNDE1LjQgMjExLjY2NyA0MjYuNjY3IDIwOC41IDQzMVoiIGZpbGw9IiMyQTg4NkQiLz4KPHBhdGggZD0iTTI4Ni41IDM4Mi41QzI2NS43IDQxOC4xIDIxOS41IDQzMy42NjcgMTk5IDQzN0MyODUuOCAzNjcuNCAyMjcuODMzIDEyNCAxODggMTFMMjg2LjUgMFYzODIuNVoiIGZpbGw9IiMyNDc1NUYiLz4KPC9zdmc+");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.login-content {
    margin: 0 auto;
    padding: 0 28px;
}
    .login-content .row {
        max-width: 460px;
        margin: 0 auto;
    }

.policy {
    padding-top: 10px;
}

    .policy ul {
        padding: 0;
    }

        .policy ul li {
            display: inline;
            margin: 0;
            padding: 1rem;
        }

            .policy ul li:first-child:before {
                content: " ";
            }

            .policy ul li a {
                font-size: 12px;
                font-family: Montserrat;
                font-size: 12px;
                font-style: normal;
                font-weight: 600;
                line-height: normal;
                text-decoration: none;
                color: #1A6B51 !important;
            }

.policy-candidate ul li a {
    color: white !important;
}

.policy-login ul li a {
    color: white !important;
}

.nav-container {
    width: 100%;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    height: 89px;
    border-radius: 0px 0px 13px 13px !important;
    background: white;
    position: relative;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: auto;
}

.logo {
    color: #002116;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 89px;
    background: white;
    gap: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    height: 89px;
    border-bottom: 0;
    white-space: nowrap;
    border-left: solid 1px transparent;
    border-right: solid 1px transparent;
}
    .nav-item > a {
        color: #002116;
        text-decoration: none;
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 89px;
        padding: 0 15px;
        position: relative;
    }
        .nav-item.active > a {
            color: #1A6B51;
            font-weight: bold;
        }
        .nav-item > a::before {
            height: 6px;
            background-color: transparent;
            border-radius: 3px;
            display: block;
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            width: calc(100% - 30px);
        }
    .nav-item.active > a::before {
        background-color: #24755F;
    }
    .nav-item:hover {
        background-color: #F5FBF5;
        border-color: #DBE5DE;
    }
        .nav-item:hover > a::before {
            background-color: transparent;
        }

    .nav-item.has-children > a {
        position: relative;
    }
        .nav-item.has-children > a::after {
            content: '';
            display: inline-block;
            vertical-align: middle;
            width: 17px;
            height: 16px;
            mask: url(/Images/MaterialGraphics/expand_more.svg) no-repeat 50% 50%;
            background-color: #002116;
        }
        .nav-item.has-children.active > a::after {
            background-color: #1A6B51;
        }

.form-checkbox {
    display: flex;
    align-self: center;
}

.md3-date-container {
}

    .md3-date-container .dcalendarpicker {
        position: absolute;
        top: 80px;
        left: 0;
        bottom: auto;
        right: auto;
    }

        .md3-date-container .dcalendarpicker .dudp__wrapper {
            transform: none;
            top: 0;
            left: 0;
            position: relative;
        }
.dcalendarpicker.dp__open {
    background-color: transparent !important;
}
.dcalendarpicker .dudp__wrapper {
    background-color: #E4EAE4;
    border: solid 1px #BFC9C2;
    border-radius: 16px !important;
    box-shadow: none !important;
}
.dcalendarpicker .dudp__wrapper .dudp__calendar-header {
    background-color: transparent;
    display: none;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-month-year {
    margin-bottom: 8px;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__dates-holder {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.dcalendarpicker .dudp__cal-container {
    margin-top: 8px;
    background-color: transparent;
}

    .dcalendarpicker .dudp__cal-container .dudp__btn-cal-next, .dcalendarpicker .dudp__cal-container .dudp__btn-cal-prev {
        border-radius: 50% !important;
    }


.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-from,
.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-to {
    background-color: transparent !important;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.in-range {
    background-color: #A6F2D2 !important;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-from::after {
    left: 50%;
    right: 0;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-to::after {
    left: 0;
    right: 50%;
}

.dcalendarpicker .dudp__wrapper .dudp__calendar .dudp__cal-week .dudp__date.current {
    color: #1A6B51 !important;
}

    .dcalendarpicker .dudp__wrapper .dudp__calendar .dudp__cal-week .dudp__date.current::before {
        border: solid 1px #1A6B51;
        background-color: transparent !important;
        border-radius: 50%;
        z-index: 1;
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.selected::before,
.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-from::before,
.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-to::before {
    background-color: #1A6B51 !important;
    z-index: 2;
    content: attr(data-date) !important;
    color: white;
    transition: none !important;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-from::after,
.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-to::after {
    background-color: #A6F2D2 !important;
    z-index: 1;
    content: "";
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
}

.dcalendarpicker .dudp__cal-container .dudp__calendar .dudp__cal-week .dudp__date.range-from.range-to::after {
    display: none;
}

.dcalendarpicker .dudp__cal-container .dudp__months-view {

}
.dcalendarpicker .dudp__cal-container .dudp__years-view {
    background-color: transparent;
    scrollbar-color: #aaa transparent;
}
.dcalendarpicker .dudp__wrapper .dudp__months-view .dudp__month {
    border-radius: 50% !important;
}
.dcalendarpicker .dudp__wrapper .dudp__months-view .dudp__month.selected,
.dcalendarpicker .dudp__wrapper .dudp__years-view .dudp__year.selected {
    color: #1A6B51 !important;
}

.dcalendarpicker .dudp__cal-container .dudp__buttons {
}
    .dcalendarpicker .dudp__cal-container .dudp__buttons .dudp__button,
    .dcalendarpicker .dudp__cal-container .dudp__buttons .dudp__button.clear {
        color: #1A6B51 !important;
    }
    .dcalendarpicker .dudp__cal-container .dudp__buttons .dudp__button:hover {
        background-color: transparent !important
    }

.dropdown {
    position: absolute;
    top: 89px;
    left: 0;
    background-color: #F5FBF5;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
    border-radius: 4px !important;
    margin: 0;
    padding: 0;
    box-shadow: rgba(0,0,0,.3) 0 0 2px 0, rgba(0,0,0,.15) 0 2px 6px 2px;
}

    .dropdown .nav-item {
        display: block;
        height: auto;
        margin: 0;
        padding: 0;
        border: 0;
    }

        .dropdown .nav-item > a {
            color: #002116;
            text-decoration: none;
            padding: 15px;
            line-height: normal;
            font-weight: 500;
            display: block;
        }

        .dropdown .nav-item > a::before {
            display: none;
        }

        .dropdown .nav-item > a:hover {
            background-color: rgba(23, 29, 26, 0.08);
            transition: background 0.3s ease;
        }
        .dropdown .nav-item.active > a {
            background-color: #A6F2D2;
        }
        .dropdown .nav-item .sub-dropdown .nav-item.active a {
            background-color: rgba(23, 29, 26, 0.08);
            color: #1A6B51;
            font-weight: bold;
        }
        .dropdown > .nav-item:first-child,
        .dropdown > .nav-item:first-child > a {
            border-radius: 4px 4px 0 0 !important;
        }
        .dropdown > .nav-item:last-child,
        .dropdown > .nav-item:last-child > a {
            border-radius: 0 0 4px 4px !important;
        }
    .dropdown .sub-dropdown {
        padding: 0 0 0 24px;
        margin: 0;
    }



    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.language-select {
    display: flex;
    gap: 0px;
    padding-right: 1rem;
}

    .language-select a {
        color: #002116;
        text-decoration: none;
        font-weight: 500;
        padding:0.5rem;
    }

    .language-select .active {
        text-decoration-line: underline !important;
        text-decoration-style: solid !important;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

.logout-btn {
    text-decoration: none;
    padding: 8px;
    height: 40px;
    width: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 20px !important;
    border: 1px solid #1A6B51;
    line-height: 24px;
    letter-spacing: 0;
}
    .logout-btn::after {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 24px;
        height: 25px;
        mask: url(/Images/MaterialGraphics/logout-icon.svg) no-repeat 50% 50%;
        background-color: #1A6B51;
        position: relative;
        top: -1px;
    }

    .logout-btn:hover {
        background-color: #1A6B51;
    }

        .logout-btn:hover::after {
            background-color: #fff;
        }

.hamburger {
    display: none;
    cursor: pointer;
    padding: 15px;
    position: absolute;
    right: 20px;
    z-index: 101;
}

.hamburger-input {
    display: none;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #002116;
    margin: 5px 0;
    transition: 0.3s;
    display: block;
}


.logo {
    max-width: 150px;
}


.candidate-secondary-background {
    background-color: #36A786;
    position: fixed;
    z-index: -2;
    height: 100%;
    width: 100%;
}

.accountholder-index-background,
.candidate-index-background {
    padding-bottom: 100px;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    top: -89px;
    z-index: -1;
    min-height: fit-content;
    max-height: 100%;
    height: 100%;
}
    .candidate-index-background:before,
    .accountholder-index-background:before {
        width: 150vw;
        height: inherit;
        margin: 0 -75vw;
        display: inline-block;
        position: absolute;
        border-bottom-left-radius: 100%;
        border-bottom-right-radius: 100%;
        z-index: -1;
        content: '';
    }
    .candidate-index-background:before {
        background-color: #E4EAE4;
    }
    .accountholder-index-background:before {
        background-color: #36A786;
    }
    .candidate-index-background > .container,
    .accountholder-index-background > .container {
        padding-top: 89px;
    }

    .accountholder-welcome-message,
    .candidate-welcome-message {
        font-family: Roboto;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 40px; /* 125% */
    }
    .accountholder-welcome-message {
        color: #FFF;
    }
    .candidate-welcome-message {
        color: #1A6B51;
    }

    .form-wrapper {
        height: 100%;
    }

input[type="radio"] {
    margin: 0 4px;
    accent-color: #1A6B51;
    -ms-transform: scale(1.3); /* IE 9 */
    -webkit-transform: scale(1.3); /* Chrome, Safari, Opera */
    transform: scale(1.3);
}

.form-radio tr {
    display: flex;
    margin: 0.2rem;
    gap: 1.5rem;
}
    .form-radio tr td {
        display: flex;
        gap: 0.5rem;
    }

input[type="file"]::file-selector-button {
    height: 40px;
    padding: 0 24px 0 44px; /* increased left padding for icon */
    background-color: white;
    background-image: url('/Images/MaterialGraphics/upload-icon.svg');
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 18px 18px;
    border: 1px solid #1A6B51;
    border-radius: 100px;
    color: #1A6B51;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

input[type="file"]::file-selector-button:hover {
    background-color: rgba(112, 121, 116, 0.08);
}

/* Optional: Style the text that appears after the button */
input[type="file"] {
    color: #000;
    font-family: Roboto;
}


/* candidate view profile */
.pb {
    background-color: #fff;
    padding: 1.2rem;
    border-radius: 13px !important;
    position: static;
    z-index: 100;
    min-height: 600px;
}

    .pb h1 {
        color: #171D1A;
        font-family: Roboto;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 40px;
    }

    .pb h2 {
        color: #24755F;
        margin-bottom: 0.1rem;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

.pb-modal {
    background-color: #fff;
    border-radius: 13px !important;
    position: static;
    z-index: 100;
    max-height: 80vh;
}

.ModelPopupContent {
    width: 850px;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.pb-modal-header {
    color: #404944;
    background: #F1F5F0;
    border-top-left-radius: 13px !important;
    border-top-right-radius: 13px !important;
    font-family: 'Roboto';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 127.273% */
}

.pb-modal .btn-close,
.modal .btn-close {
    height: 16px;
    width: 16px;
    padding: 8px;
    background-size: 16px;
    cursor: pointer;
}

.no-margin {
    margin: 0 !important;
}
.no-padding {
    padding: 0 !important;
}
.no-min-height {
    min-height: auto !important;
}

.btn-margin-outside {
    margin: -4px 0 !important;
    position: relative !important;
}

.a-link {
    color: #1A6B51;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}
.a-link .icon {
    display: inline-block;
    vertical-align: middle;
    float: left;
    margin-right: 8px;
}

.secondary-card {
    margin-top: 16px;
    background-color: #E9EFEA;
    padding: 16px;
    border-radius: 8px !important;
}

button.secondary-card {
    border: 0;
    color: #1A6B51;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.modal {
}
    .modal .modal-dialog {}
        .modal .modal-dialog .modal-content {
            border-radius: 13px !important;
            position: relative;
        }
            .modal .modal-dialog .modal-content .ModelPopupContent {
                width: 100% !important;
                max-height: none !important;
            }
            .modal .modal-dialog .modal-content .pure-material-progress-circular {
                top: 50%;
            }
            .modal .modal-dialog .modal-content .modal-header {
                color: #404944;
                background: #F1F5F0;
                border-radius: 13px 13px 0 0 !important;
                font-family: 'Roboto';
                font-size: 22px;
                font-style: normal;
                font-weight: 400;
                line-height: 28px;
                border-bottom: 0;
            }
            .modal .modal-dialog .modal-content .modal-body {
                max-height: 70vh;
                overflow-y: auto;
                overflow-x: hidden;
            }

            .modal .modal-dialog .modal-content .modal-footer {
                border-radius: 0 0 13px 13px !important;
                border-top: 0;
            }

#ctl00_cphMainWindow_uwtCandidateView_tbl {
    width: auto !important;
}

.tooltip {
    opacity: 1 !important;
}
    .tooltip .tooltip-inner {
        background-color: #1A6B51 !important;
        border-radius: 4px !important;
        padding: 4px 8px !important;
        max-width: 300px !important;
        width: auto !important;
    }
    .tooltip .tooltip-arrow {
        display: none !important;
    }
        .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
        .bs-tooltip-top .tooltip-arrow::before {
            border-top-color: #1A6B51 !important;
        }
        .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
        .bs-tooltip-bottom .tooltip-arrow::before {
            border-bottom-color: #1A6B51 !important;
        }
        .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
        .bs-tooltip-left .tooltip-arrow::before {
            border-left-color: #1A6B51 !important;
        }
        .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
        .bs-tooltip-right .tooltip-arrow::before {
            border-right-color: #1A6B51 !important;
        }

.bold {
    font-size: 12px;
    font-weight: 600;
}

.text13 {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bold13 {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.bold14 {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.bolder14 {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.form-name-header {
    color: #171D1A;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.form-name-subheader {
    color: #171D1A;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.form-content-wrapper .form-content {

}
.form-content,
.table-content {
    padding: 12px 0 0 0;
}

    .form-content h1 {
        color: #171D1A;
        font-family: Roboto;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 40px;
    }

    .form-content h2 {
        color: #24755F;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

/* tabs */
.igtab_MaterialDesignControl_Outer {
    position: relative;
    background: none !important;
}

.igtab_MaterialDesignControl_Outer > tbody > tr:first-child > td {
    border-bottom: solid 1px #ccc;
}

.igtab_MaterialDesignControl {
    background: #fff;
    overflow: hidden;
}
.igtab_MaterialDesignDefaultTab_Top {
    background: #F5FBF5;
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #404944;
    height: 48px;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
    border-bottom: solid 4px #F5FBF5;
}

.igtab_MaterialDesignSelectedTab_Top {
    border-bottom: solid 4px #1A6B51;
    color: #171D1A;
}
    .igtab_MaterialDesignSelectedTab_Top:hover {
        background-color: #E4E9E5 !important;
    }

.igtab_MaterialDesignSeparator_Top {
    display: none;
}
/*tab*/
.igtab_MaterialDesignTHHolderNoScroll {
    display: flex;
    background: #F5FBF5;
    width: 100% !important;
    border-bottom: solid 1px #ccc;
}

.igtab_MaterialDesignTHTab {
    background: #F5FBF5;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}
.igtab_MaterialDesignHoverTab_Top {
    border-bottom: solid 4px #E4E9E5;
}
.igtab_MaterialDesignHoverTab_Top,
.igtab_MaterialDesignTHTabHov .igtab_MaterialDesignTHText {
    background-color: #E4E9E5 !important;
}

.igtab_MaterialDesignTHTail {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.igtab_MaterialDesignTHCenter {
    margin-top: auto;
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.igtab_MaterialDesignTHText {
    width: 100%;
    background: #F5FBF5;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #404944;
    min-height: 48px;
    text-align: center;
    /* M3/title/small */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.1px;
    border-bottom: solid 4px transparent;
}

.igtab_MaterialDesignTHTextSel {
    border-bottom: solid 4px #24755F;
    border-radius: 2px;
    color: #171D1A;
}

.igtab_MaterialDesignTHContentHolder {
    background: none;
    overflow: visible;
}

.igtab_MaterialDesignTHContent {
    overflow: unset !important;
}

/*ultrawebgrig*/
.igtbl_MaterialDesignControl {
    background: #ffffff;
    margin-bottom: 20px;
}

.igtbl_MaterialDesignItem {
    border-bottom: 2px solid #e7e7e8;
    border-right: 2px solid #e7e7e8;
    color: #414042;
    font-size: 12px;
    line-height: 1.5;
    padding: 0.5rem;
}

.igg_MaterialDesignHeaderCaption {
    padding-top:1rem;
}

.ig_MaterialDesignHeader {
    background: #fff!important;
    color: #24755F;
    height: 48px;
    text-align: left;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.igg_NewDesignHeaderCaption {
    background: #fff !important;
    color: #24755F;
    height: 48px;
    text-align: left;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.my-downloads .ig_MaterialDesignAlt {
    background: #F9F9F9;
}

.my-downloads .GridRowItemClass tr {
    height: 52px;
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;

    border-top: 1px solid rgba(112, 121, 116, 0.20);
}

.my-downloads .igg_MaterialDesignHeader {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border-top: 1px solid rgba(112, 121, 116, 0.20);
    border-bottom: 1px solid rgba(112, 121, 116, 0.20);
    background: #FFF;
}

.my-downloads .igg_MaterialDesignHeaderCaption {
    padding-top: 0rem;
}

.candidate-manage .ig_MaterialDesignAlt {
    background: #F9F9F9;
}

.candidate-manage .GridRowItemClass tr {
    height: 52px;
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    border-top: 1px solid rgba(112, 121, 116, 0.20);
}

.candidate-manage .igg_MaterialDesignHeader {
    color: #1A1A1A;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border-top: 1px solid rgba(112, 121, 116, 0.20);
    border-bottom: 1px solid rgba(112, 121, 116, 0.20);
    background: #FFF;
}

.candidate-manage .igg_MaterialDesignHeaderCaption {
    padding-top: 0rem;
}

div[mkr="container"] {
    background: white;
}

div[mkr="columnHeaderRow"] {
    background:white;
}

.ig_MaterialDesignControl {
    padding: 0 !important;
    border: 0 !important;
    overflow: unset !important;
}

.ig_MaterialDesignControl tbody {
    background-color: #fff;
}

.igtbl_MaterialDesignItem:last-child {
    border-right: none;
}

.ig_MaterialDesignSelected {
    background-color: #E8F9E8;
}

.igtbl_EditControl {
    background: #C0E2CD !important;
    text-align: center;
}

    .igtbl_EditControl.ig_MaterialDesignHeader {
        background: #c7c8ca !important;
        color: #414042;
    }

    .igtbl_EditControl a, .igtbl_EditControl a:hover {
        color: #60C08F;
        cursor: pointer;
    }

.ui-accordion {}
    .ui-accordion .ui-accordion-header {
        color: #24755F;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 1rem;
    }

.desktop {
    display: block !important;
}
.desktop-h-300px {
    height: 300px;
}
.row.desktop,
.d-flex.desktop {
    display: flex !important;
}
.mobile {
    display: none !important;
}
.display-none {
    display: none !important;
}
.hide {
    visibility: hidden !important;
}
.pb {
    position: relative;
}

.inner-content.modal-open {
    overflow: hidden;
}

.modal-open .menu-container {
    z-index: 2 !important;
}

.pure-material-progress-wrapper {
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
    .pure-material-progress-wrapper .pure-material-progress-circular {
        position: absolute;
        left: 50%;
        top: 250px;
        margin: -1.75em;
    }
.pure-material-progress-circular {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    border: none;
    border-radius: 50%;
    padding: 0.25em;
    width: 3em;
    height: 3em;
    color: rgb(var(--pure-material-primary-rgb, 26, 107, 81));
    background-color: transparent;
    font-size: 16px;
    overflow: hidden;
}
.pure-material-progress-circular::-webkit-progress-bar {
    background-color: transparent;
}

    /* Indeterminate */
    .pure-material-progress-circular:indeterminate {
        -webkit-mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
        mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
        animation: pure-material-progress-circular 6s infinite cubic-bezier(0.3, 0.6, 1, 1);
    }

    :-ms-lang(x), .pure-material-progress-circular:indeterminate {
        animation: none;
    }

        .pure-material-progress-circular:indeterminate::before,
        .pure-material-progress-circular:indeterminate::-webkit-progress-value {
            content: "";
            display: block;
            box-sizing: border-box;
            margin-bottom: 0.25em;
            border: solid 0.25em transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            width: 100% !important;
            height: 100%;
            background-color: transparent;
            animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
        }

        .pure-material-progress-circular:indeterminate::-moz-progress-bar {
            box-sizing: border-box;
            border: solid 0.25em transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            background-color: transparent;
            animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate;
        }

        .pure-material-progress-circular:indeterminate::-ms-fill {
            animation-name: -ms-ring;
        }

@keyframes pure-material-progress-circular {
    0% {
        transform: rotate(0deg);
    }

    12.5% {
        transform: rotate(180deg);
        animation-timing-function: linear;
    }

    25% {
        transform: rotate(630deg);
    }

    37.5% {
        transform: rotate(810deg);
        animation-timing-function: linear;
    }

    50% {
        transform: rotate(1260deg);
    }

    62.5% {
        transform: rotate(1440deg);
        animation-timing-function: linear;
    }

    75% {
        transform: rotate(1890deg);
    }

    87.5% {
        transform: rotate(2070deg);
        animation-timing-function: linear;
    }

    100% {
        transform: rotate(2520deg);
    }
}

@keyframes pure-material-progress-circular-pseudo {
    0% {
        transform: rotate(-30deg);
    }

    29.4% {
        border-left-color: transparent;
    }

    29.41% {
        border-left-color: currentColor;
    }

    64.7% {
        border-bottom-color: transparent;
    }

    64.71% {
        border-bottom-color: currentColor;
    }

    100% {
        border-left-color: currentColor;
        border-bottom-color: currentColor;
        transform: rotate(225deg);
    }
}

@media (max-width: 991.999999px) {
    .nav-wrapper {
        height: 80px;
    }
    .desktop,
    .row.desktop,
    .d-flex.desktop,
    .hide {
        display: none !important;
    }

    .desktop-h-300px {
        height: 100%;
    }

    .pb-modal {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0 !important
    }

    .pb h1 {
        font-size: 24px;
    }

    .ModelPopupContent {
        width: auto;
        max-height: fit-content;
        height: calc(100% - 8.5rem);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    #ctl00_cphMainWindow_pnlOrganisationCompetency,
    #ctl00_cphMainWindow_pnlCustomCompetency,
    #ctl00_cphMainWindow_pnlWorkAbility {
        top: 0 !important;
        left: 0 !important;
        height: 100vh !important;
        width: 100%;
    }

    .igtab_MaterialDesignTHHolder {
        display: block;
        overflow-x: auto;
        overflow-y: visible;
        width: 100%;
    }
    .igtab_MaterialDesignTHHolderNoScroll {
        min-width: 100% !important;
    }
    .igtab_MaterialDesignTHHolderNoScroll,
    .igtab_MaterialDesignTHTab {
        width: fit-content !important;
    }
    .igtab_MaterialDesignControl_Outer {
        table-layout: fixed;
        overflow: hidden;
    }

    .igtab_MaterialDesignTHText {
        white-space: nowrap;
    }
    .igtab_MaterialDesignDefaultTab_Top {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        text-wrap: auto;
        vertical-align: middle;
    }
        .igtab_MaterialDesignDefaultTab_Top .clsImgTabSpacer {
            display: none;
        }
        .igtab_MaterialDesignDefaultTab_Top {
            border-bottom-width: 3px;
        }
        .igtab_MaterialDesignSelectedTab_Top {
            border-bottom-width: 3px;
        }

    .modal .modal-dialog {
        max-width: 100vw !important;
        margin: 0;
        max-height: 100vh;
        height: 100%;
    }

    .form-content,
    .table-content {
        padding: 0;
    }

    .form-content-wrapper .form-content {
        padding-top: 12px;
    }

    #ctl00_cphMainWindow_uwtRatee_tmpl1_UCAddReviewRater1_pnlEmailEdit {
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
    }

    .modal .modal-dialog .modal-content {
        border-radius: 0 !important;
        height: 100%;
    }
                .modal .modal-dialog .modal-content .ModelPopupContent {
                    height: auto !important;
                }

                .modal .modal-dialog .modal-content .modal-header {
                    border-radius: 0 !important;
                }

                .modal .modal-dialog .modal-content .modal-body {
                    max-height: unset !important;
                }

                .modal .modal-dialog .modal-content .modal-footer {
                    border-radius: 0 !important;
                }

    .container-footer-logo {
        padding: 20px 32px 0 32px;
    }

    .accountholder-welcome-message, .candidate-welcome-message {
        font-size: 28px;
        line-height: 36px;
    }
    .accountholder-index-background, .candidate-index-background {
        top: 0;
        margin-top: -80px;
        padding-bottom: 50px;
    }
        .candidate-index-background:before,
        .accountholder-index-background:before {
            width: 200vw;
            margin: 0 -100vw;
        }

    .mobile {
        display: block !important;
    }

    .row.mobile,
    .d-flex.mobile {
        display: flex !important;
    }

    .flex-column-mobile {
        flex-direction: column;
        width: 100%;
    }

    .row.flex-column-mobile {
        width: auto;
    }

    .flex-column-mobile-reverse {
        flex-direction: column-reverse;
    }

    .flex-column-mobile > * {
        flex: 1;
        width: 100% !important;
    }

    .flex-column-mobile > .col > *:not(.w-auto) {
        width: 100% !important;
    }

        .flex-column-mobile > .col > * .md3-text-field {
            width: 100% !important;
        }

    .md3-button.has-icon:not(.keep-fullsize) {
        padding: 8px 12px !important;
        margin: 0 !important
        width: 40px;
    }

        .md3-button.has-icon:not(.keep-fullsize) .md3-button-text {
            display: none;
        }

    .mobile-actions {
        background-color: #F9F9F9;
        border-bottom: solid 1px #DEDFDE;
        padding: 15px;
        margin-bottom: 30px;
    }

    .border-box {
        padding: 0;
        border-radius: unset !important;
        border: none;
        background: none;
    }

    .hide-mobile {
        display: none !important;
    }

    .mobile-reports-progress {
        min-height: 3.5em;
    }

    .repeater-header {
        border-bottom: 0;
    }

    .repeater-item, .repeater-item-alt {
        height: auto !important;
        padding: 10px 15px !important;
        gap: 10px;
    }

    .repeater-header + .search-results .repeater-item,
    .repeater-header + .repeater-item {
        border-top: 1px solid rgba(112, 121, 116, 0.20);
    }

    .repeater-header .repeater-item-border,
    .repeater-item .repeater-item-border {
        border-right: 0 !important;
        padding-left: 0 !important;
    }

    .repeater-header .repeater-item-with-checkbox {
        padding-left: 16px !important;
    }

    .repeater-item .md3-button.has-icon {
        padding: 0 !important;
        margin: 0 !important;
        width: fit-content;
        min-height: auto;
    }

    .repeater-item .text-right-mobile {
        text-align: right;
    }

    .repeater-item.repeater-item-with-checkbox {
        padding-left: 44px !important;
        position: relative;
    }

        .repeater-item.repeater-item-with-checkbox .col-checkbox {
            position: absolute;
            left: 16px;
            top: 10px;
            height: auto !important;
        }

    .nav-menu {
        display: none;
    }

    .hamburger-input:checked ~ .nav-menu {
        display: flex;
        margin-left: 0;
    }

    .pb {
        min-height: 0;
    }

    .repeater, .reports {
        height: auto !important;
    }

    .hamburger {
        display: block;
    }

    .right-section .logout-btn {
        display: none;
    }

    .nav-menu .logout-btn {
        display: inline-block;
        margin: 15px 15px 0 15px;
        padding: 8px 12px 8px 16px;
        width: auto;
        color: #1A6B51;
    }

        .nav-menu .logout-btn:hover {
            color: #fff;
        }

    .menu-container .nav-container {
        box-shadow: rgba(0,0,0,.15) 0 0 6px 2px;
        border-radius: 0px 0px 13px 13px !important;
    }

    .nav-menu {
        position: absolute;
        top: 65px;
        background: white;
        width: 100%;
        height: fit-content;
        padding: 15px 0 24px 0;
        transition: 0.3s;
        box-shadow: rgba(0,0,0,.3) 0 2px 2px 0, rgba(0,0,0,.15) 0 6px 6px 0;
        left: 0;
        transform: none;
        border-radius: 0px 0px 13px 13px !important;
    }

    .hamburger-input:checked ~ .nav-menu {
        display: flex;
        flex-direction: column;
    }

        .nav-menu .nav-item {
            width: 100%;
            height: auto;
            flex-direction: column;
            align-items: flex-start;
            border: 0;
        }

        .nav-menu .nav-item:not(.has-children) > a {
            display: block;
            width: 100%;
        }

        .nav-menu .nav-item:hover {
            background-color: transparent;
        }

            .nav-menu .nav-item:hover:not(.has-children) > a {
                background-color: rgba(23, 29, 26, 0.08);
                transition: background 0.3s ease;
            }

        .nav-menu .nav-item > a {
            padding: 15px;
            line-height: normal;
        }

            .nav-menu .nav-item > a::before {
                display: none;
            }

    .dropdown {
        top: 0;
        position: relative;
        opacity: 1 !important;
        visibility: visible;
        background: white;
        width: 100%;
        padding-left: 20px;
        transform: none;
        box-shadow: none;
    }

        .dropdown .nav-item:first-child,
        .dropdown .nav-item:first-child > a,
        .dropdown .nav-item:last-child,
        .dropdown .nav-item:last-child > a {
            border-radius: 0 !important;
        }
        .dropdown .nav-item > a {
            padding: 7px 15px;
        }

        .nav-item:hover .dropdown {
            transform: none;
        }

    .gap-md-1 {
        gap: .5rem !important;
    }

    .gap-0 {
        gap: 0 !important;
    }

    .dropdown a:hover {
        background: none;
        color: #24755F;
    }

    .nav-wrapper {
        padding: 0 15px;
        justify-content: space-between;
    }

    .logo {
        margin: 0;
        flex: 1;
        text-align: center;
    }

    .right-section {
        margin-right: 60px;
    }

    .language-select {
        margin-left: 15px;
    }

    .md3-date-container .dcalendarpicker {
        width: 100% !important;
        position: fixed !important;
        top: 0 !important;
        height: 100% !important;
    }

    .md3-date-container .dcalendarpicker .dudp__wrapper {
        height: 100%;
        bottom: 0;
    }
    .md3-date-container .dcalendarpicker .dudp__wrapper .dudp__cal-container {
        margin: 80px auto;
    }

    .md3-button-icon {
        display: inline-block !important;
    }
    .md3-button.keep-fullsize .md3-button-icon + .md3-button-text {
        display: inline-block !important;
        margin-left: 0.5rem !important;
    }

    .mobile-hide-nav .menu-container {
        display: none !important;
    }

    .hamburger {
        right: 10px;
    }

        .hamburger .hamburger-line {
            width: 20px;
            margin: 4px;
            height: 2px;
        }


    .hamburger-input:checked ~ .hamburger .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }

    .hamburger-input:checked ~ .hamburger .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-input:checked ~ .hamburger .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .container, .container-sm {
        max-width: 766px;
    }

    .ui-accordion {}
        .ui-accordion .ui-accordion-header {
            position: relative;
            border-bottom: solid 1px #ccc;
            padding: 0.5rem 0;
        }
            .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
                display: block;
                position: absolute;
                top: 50%;
                right: 0;
                width: 0;
                height: 0;
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-top: 5px solid #24755F;
            }
            .ui-accordion .ui-accordion-header-active {}
                .ui-accordion .ui-accordion-header-active .ui-accordion-header-icon {
                    border-top: 0;
                    border-bottom: 5px solid #24755F;
                }
        .ui-accordion .ui-accordion-content {}
        .ui-accordion .ui-accordion-content-active {
            display: block !important;
            height: auto !important;
        }

        .flex-column {
            min-height: 100%;
            height: fit-content !important;
        }
    .accountholder-index-background,
    .candidate-index-background {
        height: 100% !important;
    }

    .footer {
        position: relative;
        height: auto;
    }

    .loginfooter {
        position: fixed;
    }

    .footer .policy ul li {
        width: 100%;
        display: inline-block;
        padding: 0.5rem 40px;
    }

    .corner-decoration {
        position: absolute;
    }

    .login-logo-container {
        padding-bottom: 75px;
    }

        .login-logo-container:before {
            width: 170vw;
            height: 320px;
            margin: 0 -85vw;
        }

        .login-logo-container .container .row .logo {
            width: fit-content;
            max-width: fit-content;
        }

            .login-logo-container .container .row .logo img {
                width: 203px;
            }

    .login-content {
        margin: 0 auto;
        padding: 0 28px;
    }

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: calc(935px + 24px);
    }
}
@media (min-width: 992px) and (max-width: 1199.999999px) {
    .ui-accordion .ui-accordion-content {
        display: block !important;
        height: auto !important;
    }

    .form-content,
    .table-content {
        padding: 0;
    }
    .nav-wrapper {
        height: 126px;
        padding-bottom: 50px;
        position: relative;
    }

    .nav-menu {
        left: 20px;
        bottom: 0;
        position: absolute;
        height: 50px;
        transform: none;
    }

        .nav-menu > .nav-item {
            height: 50px;
        }

            .nav-menu > .nav-item > a {
                height: 50px;
                line-height: 50px;
                padding: 0 10px;
            }

                .nav-menu > .nav-item > a::before {
                    width: calc(100% - 20px) !important;
                    left: 10px;
                }

        .nav-menu .dropdown {
            top: 50px;
        }


    .md3-button.has-icon:not(.keep-fullsize) {
        padding: 8px 12px !important;
        margin: 0 !important;
        width: 40px;
    }

        .md3-button.has-icon:not(.keep-fullsize) .md3-button-text {
            display: none;
        }

        .accountholder-index-background,
        .candidate-index-background {
                top: -126px;
            }
            .candidate-index-background > .container,
            .accountholder-index-background > .container {
                padding-top: 126px;
            }

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: calc(1175px + 24px);
    }
}

@media (min-width: 1200px) {
    .ui-accordion .ui-accordion-content {
        display: block !important;
        height: auto !important;
    }
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: calc(1368px + 24px);
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: calc(1368px + 24px);
    }
}