/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.625em;
    line-height: 1.5em;
    color: #2a2a2a;
    height: 100%;
    width: 100%;
    min-height: 100vh;

    --breakpoint-mobile: 375px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1280px;

    --font-bold: 700;
    --font-regular: 400;
    --font-light: 300;

    --font-size-small: 0.75rem;
    --font-size-regular: 0.875rem;

    --colour-white: #fff;
    --colour-black: #000;
    --Green-Highlights-02: #C4CDBF;
    --Green-Highlights-01: #E3EEDE;
    --Blue-Light-Blue: #DBE1E9;

    --dark-text: #2A2A2A;
    --green-text: #348B48;
}

body > form {
    display: flex;
    min-height: 100vh;

    flex-direction: column;
}

.alignCentre {
    width: 1200px;
    margin: 0 auto;
}

p, li {
    font-size: 1.2em;
}

table {
    border-collapse: collapse;
    border: 0;
    border-spacing: 0;
}

td {
    vertical-align: top;

    /* Direct child input with type="image" */
    > input[type="image"] {
        border-radius: 20px;
    }

}

input, select, textarea {
    font-size: 1em;
    font-family: 'Nunito Sans', sans-serif;
}

img {
    border: 0;
}

input[type="image"] {
    border-radius: 20px;
    height: 21px;
}

a {
    color: #2c954a;
    text-decoration: none;
    height: 21px;

    >img {
        border-radius: 20px;
        &:not(.bubbleBtn) {
            height: 21px;
        }
    }
}

    a:hover {
        text-decoration: underline;
    }

.hidden {
    display: none;
}

.header {
    flex: 0 0 auto;

    background: linear-gradient(45deg,#182940 0,#44782f 100%);
    background-position: center center;
    background-repeat: no-repeat;
}

    .header__inner {
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }

    .header__inner-public {
        max-width: 896px;
    }

    .header__upper {
        padding: 37px 0 35px;
    }

            .header__upper .header__inner {
                display: flex;

                align-items: center;
                justify-content: space-between;
            }

            .header .logo {
                margin: -10px 7px -10px 0;
                padding-left: 20px;

                @media (min-width: 768px) {
                    padding-left: 0px;
                }
            }

                .header .logo img {
                    display: block;
                }

            .header .userLog {
                color: #fff;
                font-size: 1.2em;
                line-height: 1.25;
            }

                .header .userLog span {
                    color: #84b173;
                }

                .header .userLog a,
                .header .userLog a:hover {
                    color: #fff;
                    text-decoration: underline;
                    font-weight: var(--font-bold);
                }

                .header .userLog #TIMEOUT {
                    font-weight: var(--font-bold);
                    color: var(--colour-white);
                }

    .header__lower {
        padding: 14px 0 15px;

        background-color: #26371e;

        box-shadow: 0 -4px 6px 0 rgba(0, 0, 0, 0.2);
    }

        .header__lower .header__inner {
            display: flex;

            align-items: center;
            justify-content: space-between;
        }

        .header .timeStamp {
            color: #fff;
        }

        .header .pupLink {
            color: #fff;
            font-size: 1.2em;
        }

            .header .pupLink a,
            .header .pupLink a:hover {
                color: #e7aa3e;
            }

.loginContainer {
    width: 345px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

    .loginContainer .errorBox {
        width: 312px;
        border: 1px solid red;
        padding: 10px;
        font-weight: bold;
        text-align: center;
        font-size: 11px;
        margin: 15px 0;
    }

    .loginContainer h2 {
        font-size: 1.5em
    }

    .loginContainer table {
        border-collapse: collapse;
        width: 345px;
        margin: 15px 0 0 0;
        font-size: 1.2em;
    }

        .loginContainer table td {
            padding: 0 7px 8px 0px;
        }

            .loginContainer table td.pt {
                padding-top: 3px
            }

            .loginContainer table td.pb {
                padding-bottom: 15px
            }

    .loginContainer .greenBox {
        width: 312px;
    }

.loginText {
    width: 264px;
    padding: 3px 0 0 2px;
    border: 1px solid #a4a4a4;
    height: 24px;
    font-size: 11px;
   font-family: 'Nunito Sans', sans-serif;
    color: #000000;
}

.loginBtn {
    float: right;
    padding-top: 3px;
    padding-right: 4px;
}

.mainContainer {
    display: flex;
    flex: 1 1 auto;

    position: relative;
}

.mainContainer .alignCentre {
    display: flex;
}

.mainContainer .errorBox {
    display: block;
    width: 413px;
    border: 1px solid red;
    background-color: #ffdcdc;
    padding: 10px;
    text-align: left;
    font-size: 12px;
    margin: 15px 0;
    border-radius: 10px;
}

.mainContainer .successBox {
    display: block;
    width: 413px;
    border: 1px solid green;
    background-color: #e0fed0;
    padding: 10px;
    text-align: left;
    font-size: 12px;
    margin: 15px 0;
    border-radius: 10px;
}

.Long {
    width: 630px !important
}

.mainContainer .errorBox ul li {
    list-style-type: none;
    font-size: 11px;
    padding: 2px 0 0 0;
    font-weight: bold;
}

.errorText {
    color: #ff0033;
}

.breadcrumbs {
    display: flex;
    padding: 10px 120px;
    align-items: center;

    font-size: 12px;

    background: rgba(0, 0, 0, 0.20);
}

.leftContainer {
    flex: 0 0 20%;
    padding: 0px 0 0px 0px;
    margin: 0;
    background-size: 100% 200px;
    background-color: var(--colour-white);
    background-repeat: no-repeat;

    border-right: 1px solid var(--Green-Highlights-02, #C4CDBF);
}

    .leftContainer ul {
        list-style-type: none;
    }

        .leftContainer ul li {
            font-size: 0.875rem;
            padding: 15px 20px 15px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: space-between;

            border-bottom: 1px solid var(--Green-Highlights-02, #C4CDBF);

            a {
                line-height: 1.6!important;
            }

            /* The first item should not have any top padding    */
            &:first-child {
                padding-top: 25px;
            }

            margin: 0;

            &.active {
                background-color: var(--Green-Highlights-01);
            }

            &.active a {
                color: var(--green-text);
                font-weight: var(--font-bold);
            }
        }

            .leftContainer ul li a {
                display: block;

                line-height: 1.28;
            }

            .leftContainer ul li a,
            .leftContainer ul li a:hover {
                color: var(--dark-text);

            }

.rightContainer {
    flex: 1 1 auto;
    position: relative;
    padding: 20px 0 80px 25px;
    margin: 0;
}

.terms-text {
    width: 855px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    font-size: 11px;
    padding: 2px 0 0 0;
}

    .terms-text h1 {
        margin-bottom:20px;
    }

    .terms-text p{
        margin-bottom:15px;
    }

    .terms-text ol {
        padding-left: 30px;
        padding-top: 15px;
    }

    .terms-text li {
        padding-bottom: 15px;
    }

.crumbTrail {
    font-size: 1.1em;
    /* margin: 0 0 15px 0; */
    color: #fff;
    position: relative;
}

    .crumbTrail a {
        padding: 0 16px 0 0;
        margin-right: 3px;
        font-weight: var(--font-bold);
        position: relative;   

        color: #fff;
    }

    .crumbTrail a::after {
        content: '';
        display: block;
        background: url(../images/chevron.svg) top right no-repeat;
        width: 7px;
        height: 11px;
        position: absolute;
        right: 2px;
        top: 54%;
        transform: translateY(-50%);
    }

.rightContainer h3 {
    margin-right: auto;
    font-size: 1.5em;
}

.titleRow {
    display: flex;
    position: relative;
    padding: 0 0 15px 0px;

    align-items: flex-start;
}

.titleRow2 {
    position: relative;
    float: left;
    width: 653px;
    padding: 15px 0px 0px 0px;
}

.titleRow h3 {
    font-size: 1.8em;
    line-height: 1.22222;
    padding-top: 2px;
}

.c-already-example {
    height: 21px;
}

.titleRow img,
.titleRow input,
.titleRow div {
    display: inline;
    margin-left: 5px;
    text-align: right;
}

.titleRow > input:first-child,
.titleRow > a:first-child {
    margin-left: auto;
}

.createNewGoalTableWrapper {
    max-width: 560px;
    width: 560px;
}

.createNewGoal {
    tbody tr td:first-child {
        /* min-width: 176px; */
    }

    .familyDomainBubbles {
        flex-wrap: wrap;
    }

    .bubbleEncap {
        margin-left: 12px;
    }


    tbody tr td {
        padding: 10px 0px;

        &.t {
            padding: 10px 0px;
            padding-right: 12px;
            vertical-align: middle;

            &.top {
                vertical-align: top;
            }
        }
    }

    tbody tr td input[type="text"] {
        display: flex;
        width: 291px;
        padding: 3px 8px;
        align-items: flex-start;
        gap: 6px;
        border-radius: 20px;
        border: 1px solid var(--Greys-Grey-Mid, #999);
        background: #FFF;

        &.calendar {
            width: 100px;
        }
    }

    tbody tr td textarea {
        display: flex;
        width: 291px;
        padding: 3px 4px;
        align-items: flex-start;
        gap: 6px;
        border-radius: 4px;
        border: 1px solid var(--Greys-Grey-Mid, #999);
        background: #FFF;
    }

    .textarea {
        max-width: 291px;
    }

}

.searchText {
    color: #000;
    padding: 3px 4px;


    font-size: var(--font-size-small);
    font-weight: 400;
    line-height: 1.25; 

    border: 1px solid var(--Greys-Grey-Mid, #999);

}

.btnSearch {
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: var(--font-bold);
    color: #fff;
    background-color: #447A38;
    border: none;
    cursor: pointer;

    &:hover {
        background-color: #1a4a10;
        text-decoration: none;
    }
}

.filterDomain {
    margin-top: 15px;
    padding-top: 30px;
    display: grid;
    grid-template-columns: 80% 20%;
    grid-template-rows: auto auto;
    row-gap: 20px;

    border-top: 2px solid var(--Blue-Light-Blue, #DBE1E9);
}

.filterDomain.filterDomainSearch {
    border-top: none;
    border-bottom: 2px solid var(--Blue-Light-Blue, #DBE1E9);
    padding-top: 0px;

}

.familyDomainBubbles {
    display: flex;
    gap: 5px;

    span {
        display: flex;
        padding: 4px 8px 4px 8px;
        border-radius: 20px;
        gap: 4px;
        white-space: nowrap;
        align-items: center;

        &::before {
            content: "";
            display: block;
            width: 12px;
            height: 12px;
            margin-left: 2px;
        }

        &.pink {
            background: rgba(220, 147, 192, 0.10);
                &::before {
                    background: url(../images/ellipse/ellipse_pink.svg) no-repeat;
                }
            }
        
        &.brown {
                background: rgba(191, 129, 81, 0.10);
                &::before {
                    background: url(../images/ellipse/ellipse_brown.svg) no-repeat;
                }
            }

        &.gray {
            background: rgba(112, 111, 111, 0.10);
            &::before {
                background: url(../images/ellipse/ellipse_grey.svg) no-repeat;
            }
        }

        &.yellow {
            background: rgba(241, 209, 38, 0.10);
            &::before {
                background: url(../images/ellipse/ellipse_yellow.svg) no-repeat;
            }
        }

        &.blue {
            background: rgba(0, 152, 210, 0.10);
            &::before {
                background: url(../images/ellipse/ellipse_blue.svg) no-repeat;
            }
        }

        &.white {
            background: rgba(0, 0, 0, 0.10);
            &::before {
                background: url(../images/ellipse/ellipse_white_outline.svg) no-repeat;
            }
        }
    }
}
    
.required::after {
  content: '*';
  color: #2C954A;
  font-size: 12px;
}

.subtext {
    color: #999;
}

.editDiv {
    max-width: 481px;
}

.editButtons {
    display: flex;
    justify-content: space-between;
}

.cancelSave {
    border-top: 1px solid var(--Text-Blue-text, #3A5879);
    margin-top: 20px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    margin-right: 35px;
}

.filterItems {
    h4 {
        color: var(--Text-Dark-text, #2A2A2A);
        font-size: 12px;
        font-weight: var(--font-bold);
        line-height: 1.25; 
        margin-bottom: 10px;
    }

    .filterSelectEdit {
        tbody {
            display: flex;
            align-items: center;
            flex-wrap: wrap;

            gap: 4px;

            tr td {
                padding: 0;
                margin: 0;
            }
        }
    }

    .filterSelect {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        gap: 5px;

        input {
            display: none;
        }

        input.checked {
            +label {
                &::before {
                    width: 12px;
                    height: 8px;
                    align-items: center;
                }

                &::hover {
                    height: 12px!important;
                }
            }
        }

        input[value=""] {
            +label {
                background: #DBE1E9;
                padding-left: 8px;
                &::before {
                    display: none!important;
                }
            }
        }

        label {
            display: flex;
            padding: 4px 8px 4px 4px;
            justify-content: center;
            align-items: center;
            gap: 4px;
            border-radius: 20px;
            text-wrap: nowrap;

            font-size: 12px;
            font-weight: var(--font-regular);
            line-height: 1; 

            &:hover {
                cursor: pointer;
            }

            &::before {
                content: "";
                display: block;
                width: 12px;
                height: 12px;
                margin-left: 2px;
            }
        }

        input[value=""].checked {
            +label {
                color: #fff;
                background: var(--Text-Blue-text, #3A5879);
                padding-left: 8px;
                &::before {
                    display: none!important;
                }
            }
        }

        input[value="1"] {
            &.checked + label {
                background: #F1DD26;
            }

            &.checked + label::before {
                height: 8px;
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }

            + label {
                background: rgba(241, 209, 38, 0.10);
                &::before {
                    height: 12px;
                    background: url(../images/ellipse/ellipse_yellow.svg) no-repeat;
                }
            }

            &.checked:hover + label,
            &:hover + label {
                outline: 1px solid #F1DD26;
                background: rgba(241, 209, 38, 0.10);
            }
        }

        input[value="2"]:hover {
            &.checked + label::before {
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }
        }

        input[value="2"] {
            &.checked + label {
                background: #0098D2;
                color: #fff;
            }

            &.checked + label::before {
                height: 8px;
                background: url(../images/ellipse/ellipse_white_checked.svg) no-repeat;
            }

            + label {
                background: rgba(0, 152, 210, 0.10);
                &::before {
                    background: url(../images/ellipse/ellipse_blue.svg) no-repeat;
                }
            }

            &.checked:hover + label,
            &:hover + label {
                color: #000;
                outline: 1px solid var(--Domains-Domain-3-shade, #0098D2);
                background: rgba(0, 152, 210, 0.10);

            }
        }
        
        input[value="3"]:hover {
            &.checked + label::before {
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }
        }

        input[value="3"] {
            &.checked + label {
                background: #DC93C0;
            }

            &.checked + label::before {
                height: 8px;
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }

            + label {
                background: rgba(220, 147, 192, 0.10);
                &::before {
                    background: url(../images/ellipse/ellipse_pink.svg) no-repeat;
                }
            }

            &.checked:hover + label,
            &:hover + label {
                color: #000;
                outline: 1px solid var(--Domains-Domain-4, #DC93C0);
                background: rgba(220, 147, 192, 0.10);
            }
        }

        input[value="4"]:hover {
            &.checked + label::before {
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }
        }
        
        input[value="4"] {
            &.checked + label {
                background: #BF8151;
                color: #fff;
            }

            &.checked + label::before {
                height: 8px;
                background: url(../images/ellipse/ellipse_white_checked.svg) no-repeat;
            }

            + label {
                background: rgba(191, 129, 81, 0.10);
                &::before {
                    background: url(../images/ellipse/ellipse_brown.svg) no-repeat;
                }
            }

            &.checked:hover + label,
            &:hover + label {
                color: #000;
                outline: 1px solid var(--Domains-Domain-5-Shade, #BF8151);
                background: rgba(191, 129, 81, 0.10);
            }
        }

        input[value="5"]:hover {
            &.checked + label::before {
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }
        }

        input[value="5"] {
            &.checked + label {
                background: #706F6F;
                color: #fff;
            }

            &.checked + label::before {
                height: 8px;
                background: url(../images/ellipse/ellipse_white_checked.svg) no-repeat;
            }
            
            + label {
                background: rgba(112, 111, 111, 0.10);
                &::before {
                    background: url(../images/ellipse/ellipse_grey.svg) no-repeat;
                }
            }

            &.checked:hover + label,
            &:hover + label {
                color: #000;
                outline: 1px solid var(--Domains-Domain-6, #706F6F);
                background: rgba(112, 111, 111, 0.10);
            }
        }

        input[value="6"]:hover {
            &.checked + label::before {
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }
        }

        input[value="6"] {
            &.checked + label {
                background: #fff;
                color: #000;
                outline: 1px solid #000;
            }

            &.checked + label::before {
                height: 8px;
                background: url(../images/ellipse/ellipse_checked.svg) no-repeat;
            }
            
            + label {
                background: rgba(112, 111, 111, 0.10);
                &::before {
                    background: url(../images/ellipse/ellipse_white.svg) no-repeat;
                }
            }

            &.checked:hover + label,
            &:hover + label {
                color: #000;
                outline: 1px solid var(--Domains-Domain-6, #706F6F);
                background: rgba(112, 111, 111, 0.10);
            }
        }
    }
}

.divFeatured {
    margin-top: 8px;
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    width: 935px;
    padding: 10px;
    align-items: flex-start;
    gap: 5px;
    background: var(--Blue-Light-Blue, #DBE1E9);

    div {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    span {
        font-weight: 700;
        font-size: 14px;
        line-height: 1.25;
    }

    p {
        font-size: 14px;
        line-height: 1.25; 
        margin-left: 20px;
    }
}

.goalTable {
    font-size: var(--font-size-small)!important;
    margin-bottom: 25px!important;

    tbody tr:not(:first-child):not(:last-child) {
        border-bottom: 1px solid var(--Blue-Light-Blue, #DBE1E9);
    }

    tbody tr th {
        a {
            font-weight: var(--font-bold);
        }
        text-wrap: nowrap;
        &:not(:first-child) {
            padding-left: 10px!important;
        }

        &:not(last-child) {
            padding-right: 10px!important;
        }
    }

    tbody tr td {
        padding: 10px 0px 10px 0px!important;
        vertical-align: middle;
        p {
            font-size: 12px!important;
        }

        &:not(:first-child) {
            padding-left: 10px!important;
        }

        &:not(last-child) {
            padding-right: 10px!important;
        }
    }

    tbody tr th.col1 {
        width: 65px;
    }

    tbody tr th.col2 {
        width: 200px;
    }

    tbody tr th.col3 {
        width: 218px;
    }

    tbody tr th.col4 {
        width: 382px;
    }

    tbody tr th.empty2 {
        min-width: 102px;
    }
}

.familyDomains {
    div {
        display: flex;
        align-items: center;

        span:not(:first-child) {
            margin-left: -2px;
        }

        span {
            outline: 2px solid #fff;
            border-radius: 100%;
            background-size: 20px;
        }
    }

    span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 18px;
        height: 18px;
        overflow: visible;

    }

    .brown {
        background: url("../Images/ellipse/ellipse_brown.svg") no-repeat;
        background-size: 20px;
    }

    .pink {
        background: url("../Images/ellipse/ellipse_pink.svg") no-repeat;
        background-size: 20px;
    }

    .blue {
        background: url("../Images/ellipse/ellipse_blue.svg") no-repeat;
        background-size: 20px;
    }

    .yellow {
        background: url("../Images/ellipse/ellipse_yellow.svg") no-repeat;
        background-size: 20px;
    }

    .gray {
        background: url("../Images/ellipse/ellipse_grey.svg") no-repeat;
        background-size: 20px;
    }

    .white {
        background: url(../images/ellipse/ellipse_white_outline.svg) no-repeat;
        background-size: 18px;
    }
}

table tr td.nowrap {
    white-space: nowrap;
}

table tr td.concat {
    p {
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 272px;
    }
}

table tr td.feature {
    display: flex;
    padding-top: 15px!important;
    justify-content: space-between;

    span {
        display: flex;
        padding-left: 20px;
        align-items: flex-end;
        gap: 5px;
        line-height: 1.25;
    }
}

.filterSearch {
    justify-self: flex-end;
    div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    h4 {
        color: var(--Text-Dark-text, #2A2A2A);
        font-size: 12px;
        font-weight: var(--font-bold);
        line-height: 1.25; 
        margin-bottom: 10px;
    }
}

.lineDivide {
    display: block;
    width: 100%;
    z-index: 5;
    height: 1px;
    border-bottom: 1px solid var(--Green-Highlights-02, #C4CDBF);
    padding: 0;
    margin: 15px 0 20px 0px;
}

.lineDivideSolid {
    border-bottom: 1px solid #3A5879;
}

.reviewStatus {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25; 
    margin-bottom: 5px;

    p {
        font-size: 12px;
        line-height: 1.25; 
    }

    span {
        width: 19px;
        height: 10px;
    }

    .complete +.reviewStatusDate {
        color: #348B48;
        font-size: 12px;
        font-weight: var(--font-bold);
    }

}

.progressKey {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
    margin-top: 20px;

    >p {
        color: var(--bw-black, #000);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.25; 
    }

    div {
        display: flex;
        align-items: center;
        gap: 5px;

        color: var(--bw-black, #000);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.25; 
    }
}

.reviewIcon {
    display: block;
    width: 19px;
    height: 10px;
}

.empty-progress {
    background: url("../Images/progress/Status-00-EmptyProgress.svg") no-repeat;
}

.no-progress {
    background: url("../Images/progress/Status-01-NoProgress.svg") no-repeat;
}

.less-expected {
    background: url("../Images/progress/Status-02-LessThan.svg") no-repeat;
}

.as-expected {
    background: url("../Images/progress/Status-03-AsExpected.svg") no-repeat;
}

.more-expected {
    background: url("../Images/progress/Status-04-MoreThan.svg") no-repeat;
}

.complete {
    background: url("../Images/progress/Status-05-Acheived.svg") no-repeat;
}

.reviewStatusEdit {
    background: url("../Images/edit_text.svg") no-repeat;
    border: none;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.goalInProgress {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 21px;
    padding: 10px;
    align-items: center;

    border-bottom: 1px solid var(--Text-Blue-text, #3A5879);

    &.abandoned {
        background: rgba(201, 26, 26, 0.10);
    }

    &.complete {
        background: var(--Text-Green-text, #348B48);
        color: #fff;
        padding: 10px;

        .goalButton {
            display: flex;
            align-items: center;
            &::before {
                content: "";
                display: block;
                background: url(../images/undo_arrow.svg) no-repeat;
                width: 11px;
                height: 11px;
                margin-right: 0;
            }
            .btnSearch {
                background-color: #348B48;
                text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.20);
                font-size: 12px;
                font-style: normal;
                font-weight: 700;
                line-height: 0.91667;
                margin-left: 0;
            }
        }
    }

    .goalTitle {
        display: flex;
        align-items: center;
        gap: 7px;

        span {
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.33333; 
        }

    }
}

.titleRow.tasks {
    margin-top: 20px;
}

.noTasks {
    display: flex;
    padding: 5px 10px;
    align-items: center;
    gap: 15px;
    align-self: stretch;

    background: var(--Blue-Light-Blue, #DBE1E9);
    
    color: var(--Text-Blue-text, #3A5879);

    font-size: 12px;
    font-style: normal;
    font-weight: var(--font-bold);
    line-height: 1.25; 
}

table.details {
    font-size: 0.875rem;
    line-height: 1.28571;
    font-weight: var(--font-regular);
    border-collapse: collapse;
    margin: 0;
}

    table.details td {
        padding: 0 10px 15px 0;
    }

        table.details td.title {
            width: 250px !important;
        }

        table.details td.data {
            /*  width:300px;*/
        }

        table.details td.last {
            padding-right: 0;
        }

table.list {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
    margin: 0;
}

    table.list th {
        font-weight: bold;
        color: #348b48;
        text-align: left;
        padding: 0 5px 3px 0;
    }

        table.list th.col1 {
            width: 120px;
        }

        table.list th.colDesc {
            width: 399px;
        }

        table.list th.colTask {
            width: 160px;
        }

        table.list th.col1a {
            width: 55px;
        }

        table.list th.col2 {
            width: 150px
        }

        table.list th.col2a {
            width: 80px
        }

        table.list th.col2b {
            width: 235px
        }

        table.list th.col2c {
            width: 233px
        }

        table.list th.col2b_date {
            width: 175px
        }

        table.list th.col2b_action {
            width: 295px
        }

        table.list th.col3 {
            width: 95px;
        }

        table.list th.col3a {
            width: 100px;
        }

        table.list th.col4 {
            width: 65px;
        }

        table.list th.col5 {
            width: 45px;
            text-align: center
        }


        table.list th.col5a {
            width: 45px;
        }

        table.list th.col6 {
            width: 45px;
            text-align: center
        }

        table.list th.empty1 {
            width: 268px
        }

        table.list th.empty2 {
            width: 143px
        }

        table.list th.empty3 {
            width: 168px;
        }

        /* Training & supervision */
        table.list th.col1_5 {
            width: 91px;
        }

        table.list th.col2_5 {
            width: 76px;
        }

        table.list th.col3_5 {
            width: 148px;
        }

        table.list th.col4_5 {
            width: 163px;
        }

        table.list th.col5_5 {
            width: 155px;
            padding-right: 0;
        }

        /* Active Clients */
        table.list th.col1_3 {
            width: 85px;
        }

        table.list th.col2_3 {
            width: 136px;
        }

        table.list th.col3_3 {
            width: 118px;
        }

        table.list th.col4_3 {
            width: 76px;
        }

        table.list th.col5_3 {
            width: 58px;
            text-align: center;
        }

        table.list th.empty2_3 {
            width: 155px;
            padding-right: 0;
        }

        table.list th.col1_4 {
            width: 110px;
        }

        table.list th.col2_4 {
            width: 95px;
        }

        table.list th.col3_4 {
            width: 110px;
        }

        table.list th.col4_4 {
            width: 318px;
        }

    table.list tr td {
        padding: 5px 5px 5px 0;
    }

    table.list tr.noBg td {
        background: none !important;
    }

    table.list td.t {
        padding-top: 7px;
    }

    table.list td.last {
        padding-right: 0;
        text-align: right;
    }

    table.list .btnView,
    table.list .btnEdit {
        display: inline-block;
    }

    table.list .btnDelete {
        display: inline-block;
    }

table.edit {
    border-collapse: collapse;
    width: 481px;
    font-size: 1.2em;
    margin: 10px 0 0 0;
}

.padding-left {
    padding-left: 10px!important;
}

.makeFeatured {
    margin-top: 3px;
    tbody {
        display: flex;
    }

    tr td {
        vertical-align: middle;
        padding: 0 12px 0 0!important;
        display: flex;
        align-items: center;
    }

    tr td input {
        display: none;

    }

    tr td label {
        display: inline-block;
        position: relative;
        padding-left: 25px; 
        cursor: pointer;

        &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            border: 1px solid #000;
            border-radius: 50%;
            width: 16px; 
            height: 16px;
            box-sizing: border-box;
        }
    }

    tr td input:checked + label::before {
        background-color: transparent;
        border: 1px solid #000;
    }

    tr td input:checked + label::after {
        content: "";
        position: absolute;
        left: 3px; 
        top: 50%;
        transform: translateY(-50%);
        background-color: #000;
        border-radius: 50%;
        width: 10px; 
        height: 10px;
    }
}

.restrict-width {
    width: 481px;
}

table.withSpeechBub {
    width: 465px;
}

table.edit td,
table.editScore td {
    padding: 0 5px 15px 0;
}

    table.edit td.last {
        padding-right: 0 !important
    }

    table.edit td.t {
        width: 33.3333%;
        padding-top: 3px
    }

    table.editScore td.t {
        width: 140px;
        padding-top: 3px
    }

    table.edit td.title {
        width: 200px;
        padding-bottom: 10px
    }

    table.edit td.data {
        width: 300px
    }

    table.editScore td.title {
        width: 140px;
        padding-bottom: 10px
    }

table.edit .btnOptions {
    margin-top: 4px;
    margin-left: 5px
}

table.edit .dateBetweenText {
    display: block;
    float: left;
    text-align: center;
    padding: 5px 8px 0px 8px;
}

td.respondents input {
    margin-right: 5px;
}

    td.respondents input.editFullTxt {
        width: 150px;
    }

table.editScore {
    border-collapse: collapse;
    float: left;
    width: 540px;
    font-size: 1.2em;
    margin: 10px 0 0 0;
}

table.filters {
    width: 100%;
}

    table.filters td:last-child {
        padding-right: 0;
    }

.searchResultText {
    float: left;
    width: 563px;
    font-size: 1.2em;
    line-height: 1.9em;
    margin: 10px 0 20px 0;

    span {
        color: var(--Text-Dark-text, #2A2A2A);
        font-size: 12px;
        font-weight: 400;
        line-height: 1.25; 
    }
}

.pagination {
    display: flex;
    font-size: 1.1em;
    margin-top: -5px;
    position: relative;
    z-index: 5;
    padding: 0 0 20px 0;

    align-items: flex-start;
}

.absoluteFirst {
    width: 50px;
    font-size: 12px;
}

    .absoluteFirst a {
        background: url(../images/absolutefirst.gif) top left no-repeat;
        padding-left: 11px;
    }

.previous {
    width: 75px;
    text-align: right;
    font-size: 12px;
}

    .previous a {
        background: url(../images/previous.gif) top left no-repeat;
        padding-left: 8px;
    }

.pageIndex {
    flex: 1 1 auto;
    text-align: center;
    color: #000000;
    font-weight: bold;
    word-spacing: 0.6em;
    font-size: 12px;
}

    .pageIndex a:hover,
    .pageIndex a {
        font-weight: normal
    }

.next {
    width: 75px;
    height: 10px;
    font-size: 12px;
}

    .next a {
        background: url(../images/next.gif) top right no-repeat;
        padding-right: 8px;
    }

.absoluteLast {
    width: 50px;
    text-align: right;
    font-size: 12px;
}

    .absoluteLast a {
        background: url(../images/absolutelast.gif) top right no-repeat;
        padding-right: 11px;
    }

.alternativeOption {
    display: flex;
    position: relative;
    justify-content: space-evenly;
}

.goToPage {
    display: flex;
    flex: 1 1 auto;

    align-items: center;
    justify-content: center;
}

    .goToPage .text {
        font-size: 12px;
        padding: 0 5px 0 0;
    }

.exportCsv {
    position: relative;
}

.greenBox {
    display: block;
    position: relative;
    z-index: 6;
    width: 633px;
    font-size: 1.2em;
    background-color: #bbdba9;
    border: 1px solid #86b190;
    padding: 8px 10px 8px 10px;
    margin: -10px 0 20px 0;
}

.addNewFormContainer {
    float: left;
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px 0 0 0;
    font-size: 0.875rem;
    line-height: 1.14286;

    .text {
        font-weight: var(--font-bold);
        margin-right: 0;
        padding-right: 0!important;
        margin-bottom: 2px;
    }

    input {
        border-radius: 20px;
    }
}

    .addNewFormContainer .text {
        float: left;
        font-weight: bold;
        padding: 2px 6px 0 0;
    }

    .addNewFormContainer .newFormDdl {
        float: left;
        width: 210px;
        margin: 4px 8px 4px 6px;
        height: 26px;
        font-size: 1.0em;
        border-radius: 20px;
        border: 1px solid var(--Greys-Grey-Mid, #999);
        background: #FFF;
        padding-left: 0.5rem;

        font-family: 'Nunito Sans', sans-serif;
    }

.printForm {
    float: left;
    line-height: 1.14286;
    width: 50%;
    padding: 14px 0 0 38px;
}

    .printForm p {
        font-size: var(--font-size-regular);
        font-weight: var(--font-bold);
    }

    .printForm ul {
        display: flex;
        margin-top: 3px;

        flex-wrap: wrap;
    }

        .printForm ul li {
            flex: 0 1 50%;
            width: 90px;
            list-style-type: none;
            font-size: 14px;
            padding: 0 0 8px 0px;
            display: flex;
            gap: 6px;
            align-items: center;
            font-weight: var(--font-regular);
        }

.goalButtonRow {
    width: 90px;
}

.goalTextCol {
    width: 240px;
}

.goalRowDate {
    text-wrap: nowrap;
}

.goalStatus {
    text-wrap: nowrap;
}
        
table.goals {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.875rem;

    .col5 {
        text-wrap: nowrap;
    }

    .greenD & {
        tr:not(:first-child):not(:last-child) {
            border-bottom: 1px solid var(--Green-Highlights-02, #C4CDBF);
        }

        tr td.t {
            vertical-align: middle;
        }
    }

    .goalC & {
        width: 100%!important;

        tbody tr:first-child {
            background: var(--Text-Blue-text, #3A5879);
            
            th {
                color: #fff;
                vertical-align: middle;
                padding: 5px 0 5px 0;
            }
        }
    }

    &.tasksInGoal {
        width: 100%!important;

        td {
            vertical-align: middle;
            border-bottom: 1px solid var(--Blue-Light-Blue, #DBE1E9);
        }

        tbody tr:first-child {
            background: var(--Text-Blue-text, #3A5879);
            
            th {
                color: #fff;
                vertical-align: middle;
                padding: 5px 0 5px 0;
            }

            th.empty1 {
                width: 40px;
            }
        }
    }
}

    table.goals th {
        font-weight: bold;
        color: #348b48;
        text-align: left;
        padding: 0 5px 3px 0px;
    }

        table.goals th.col1 {
            width: 100px
        }

        table.goals th.col2 {
            width: 80px
        }

        table.goals th.col3 {
            width: 55px;
        }

        table.goals th.col4 {
            width: 100px
        }

        table.goals th.col5 {
            width: 70px
        }

        table.goals th.col6 {
            width: 75px
        }

        table.goals th.empty1 {
            width: 138px
        }

    table.goals tr td {
        padding: 5px 5px 3px 0;
    }

    table.goals tr.noBg td {
        background: none !important;
    }

    table.goals td.t {
        padding-top: 8px
    }

    table.goals td.last {
        padding-right: 0;
    }

.goToPageTxt {
    float: left;
    width: 40px;
   font-family: 'Nunito Sans', sans-serif;
    border: 1px solid #a4a4a4;
    padding: 2px 0 0 0;
    height: 21px;
    text-align: center;
    font-size: 1.1em;
}

.btnGo {
    float: left;
    padding-left: 6px;
}

/* START - DAILY ASSESSMENT  - 5 panel */

table.DailyAssessment {
    width: 650px;
    margin-bottom: 50px;
    font-size: 1.1em;
    background: url(../images/5color_header.jpg) top right no-repeat;
    border-collapse: collapse;
}

    table.DailyAssessment * {
        box-sizing: content-box;
    }

    table.DailyAssessment td.fullHeader {
        padding: 9px 0 8px 160px;
    }

    table.DailyAssessment td.lastHeader {
        width: 325px;
        padding: 9px 0 18px 160px;
    }

    table.DailyAssessment td.question {
        width: 455px;
        padding: 5px 10px 8px 0px;
    }

        table.DailyAssessment td.question p {
            padding-top: 8px;
            font-weight: bold;
            font-size: 1.1em;
        }

        table.DailyAssessment td.question h3 {
            font-size: 1.3em;
            padding: 25px 0 7px 0
        }

    table.DailyAssessment td.section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        font-weight: bold;
    }

    table.DailyAssessment td.num {
        width: 20px;
        font-weight: bold;
        padding: 5px 0 8px 0px;
    }

    table.DailyAssessment .border td {
        padding-bottom: 4px !important
    }

    table.DailyAssessment td.one,
    table.DailyAssessment td.two,
    table.DailyAssessment td.three,
    table.DailyAssessment td.four,
    table.DailyAssessment td.five {
        padding-top: 15px;
    }

    table.DailyAssessment .border td.one,
    table.DailyAssessment .border td.two,
    table.DailyAssessment .border td.three,
    table.DailyAssessment .border td.four,
    table.DailyAssessment .border td.five {
        padding-top: 7px;
    }

    table.DailyAssessment td.one {
        width: 22px;
        padding-left: 11px !important
    }

    table.DailyAssessment td.two {
        width: 22px;
        padding-left: 11px !important
    }

    table.DailyAssessment td.three {
        width: 22px;
        padding-left: 11px !important
    }

    table.DailyAssessment td.four {
        width: 22px;
        padding-left: 11px !important
    }

    table.DailyAssessment td.five {
        width: 22px;
        padding-left: 11px !important
    }

    table.DailyAssessment td.one,
    table.DailyAssessment td.two,
    table.DailyAssessment td.three,
    table.DailyAssessment td.four,
    table.DailyAssessment td.five {
        padding-left: 3px;
    }

    table.DailyAssessment tr.border td {
        font-size: 1.1em;
        background: url(../images/questionborder.gif) bottom left repeat-x;
    }

.dailyQuestion {
   font-family: 'Nunito Sans', sans-serif;
    border: 1px solid #a4a4a4;
    padding: 0px 0 0 2px;
    height: 17px;
    font-size: 1.0em;
    width: 430px;
    margin: 0px 0 2px 0;
}

/* END - DAILY ASSESSMENT  - 5 panel */

/* START - DAILY ASSESSMENT -  3 panel */

table.DailyAssessment2 {
    width: 650px;
    font-size: 1.1em;
    background: url(../images/3color_header.jpg) top right no-repeat;
    border-collapse: collapse;
}

table.DailyAssessment2 * {
    box-sizing: content-box;
}

.longerBg {
    background: url(../images/3color_header2.jpg) top right no-repeat !important;
}

table.DailyAssessment2 td.fullHeader {
    padding: 9px 0 8px 160px;
}

table.DailyAssessment2 td.lastHeader {
    width: 391px;
    padding: 9px 0 18px 160px;
}

table.DailyAssessment2 td.question {
    width: 521px;
    padding: 5px 10px 8px 0px;
}

    table.DailyAssessment2 td.question p {
        padding-top: 8px;
        font-weight: bold;
        font-size: 1.1em;
    }

    table.DailyAssessment2 td.question h3 {
        font-size: 1.3em;
        padding: 25px 0 7px 0
    }

table.DailyAssessment2 td.section {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-weight: bold;
}

table.DailyAssessment2 td.num {
    width: 20px;
    font-weight: bold;
    padding: 5px 0 8px 0px;
}

table.DailyAssessment2 .border td {
    padding-bottom: 4px !important
}

table.DailyAssessment2 td.one,
table.DailyAssessment2 td.two,
table.DailyAssessment2 td.three,
table.DailyAssessment2 td.four {
    padding-top: 15px;
}

table.DailyAssessment2 .border td.one,
table.DailyAssessment2 .border td.two,
table.DailyAssessment2 .border td.three,
table.DailyAssessment2 .border td.four {
    padding-top: 7px;
    padding-left: 11px !important
}

table.DailyAssessment2 td.one {
    width: 22px;
    padding-left: 11px !important
}

table.DailyAssessment2 td.two {
    width: 22px;
    padding-left: 11px !important
}

table.DailyAssessment2 td.three {
    width: 22px;
    padding-left: 11px !important
}

table.DailyAssessment2 td.four {
    width: 22px;
}

table.DailyAssessment2 td.one,
table.DailyAssessment2 td.two,
table.DailyAssessment2 td.three,
table.DailyAssessment2 td.four {
    padding-left: 3px;
}

table.DailyAssessment2 tr.border td {
    font-size: 1.1em;
    background: url(../images/questionborder.gif) bottom left repeat-x;
}

.dailyQuestion {
   font-family: 'Nunito Sans', sans-serif;
    border: 1px solid #a4a4a4;
    padding: 0px 0 0 2px;
    height: 17px;
    font-size: 1.0em;
    width: 430px;
    margin: 0px 0 2px 0;
}

/* END - DAILY ASSESSMENT - 3 Panel */

td.padTop {
    padding-top: 15px
}

    td.padTop img,
    td.padTop input {
        margin-left: 5px
    }

/* START - DASS ASSESSMENT */

.DASSContainer {
    width: 650px;
}

table.DASSAssessment {
    /* width:650px; */
    font-size: 1.1em;
    background: url(../images/4color_header.jpg) top right no-repeat;
    border-collapse: collapse;
}

    table.DASSAssessment * {
        box-sizing: content-box;
    }

    table.DASSAssessment td.fullHeader {
        padding: 9px 0 8px 160px;
    }

    table.DASSAssessment td.lastHeader {
        width: 354px;
        padding: 9px 0 18px 160px;
    }

    table.DASSAssessment td.num {
        width: 30px;
        font-weight: bold;
        padding: 5px 0 8px 0px;
    }

    table.DASSAssessment td.question {
        padding: 5px 0 8px 0px;
    }

        table.DASSAssessment td.question p {
            padding-top: 8px;
            font-weight: bold;
            font-size: 1.1em;
        }

        table.DASSAssessment td.question h3 {
            font-size: 1.3em;
            padding: 25px 0 7px 0
        }

    table.DASSAssessment .border td {
        padding-bottom: 4px !important
    }

    table.DASSAssessment td.one,
    table.DASSAssessment td.two,
    table.DASSAssessment td.three,
    table.DASSAssessment td.four {
        padding-top: 13px;
        padding-left: 13px;
    }

    table.DASSAssessment td.one {
        padding-left: 15px;
    }

    table.DASSAssessment .border td.one,
    table.DASSAssessment .border td.two,
    table.DASSAssessment .border td.three,
    table.DASSAssessment .border td.four {
        padding-top: 7px;
    }

    table.DASSAssessment .border td.one {
        width: 20px;
        padding-left: 14px !important
    }

    table.DASSAssessment .border td.two {
        width: 21px;
        padding-left: 13px !important
    }

    table.DASSAssessment .border td.three {
        width: 23px;
        padding-left: 11px !important
    }

    table.DASSAssessment .border td.four {
        width: 23px;
        padding-left: 11px !important
    }

    table.DASSAssessment .border span {
        float: left;
        display: block;
        font-weight: bold;
        width: 20px;
        padding-right: 14px;
    }

    table.DASSAssessment tr.border td {
        font-size: 1.1em;
        background: url(../images/questionborder.gif) bottom left repeat-x;
    }

/* END - DASS ASSESSMENT */

/* START - SUPPORT ASSESSMENT */

.SupportContainer {
    position: relative;
    width: 650px;
    background: url(../images/7color_header.jpg) top right no-repeat;
}

.margBottom50 {
    margin-bottom: 50px !important;
    background: url(../images/7color_header2.jpg) top right no-repeat !important;
}

table.SupportAssessment {
    position: relative; 
    width: 650px;
    font-size: 1.1em;
    border-collapse: collapse;
}

    table.SupportAssessment * {
        box-sizing: content-box;
    }

    table.SupportAssessment td.fullHeader {
        padding: 9px 0 9px 160px;
    }

    table.SupportAssessment td.lastHeader {
        width: 252px;
        padding: 9px 0px 18px 160px;
    }

    table.SupportAssessment td.num {
        width: 25px;
        padding: 5px 0 8px 0px;
        font-weight: bold;
    }

    table.SupportAssessment td.question {
        padding: 5px 0px 8px 0px;
    }

        table.SupportAssessment td.question p {
            padding-top: 8px;
            font-weight: bold;
            font-size: 1.1em;
        }

        table.SupportAssessment td.question h3 {
            font-size: 1.3em;
            padding: 25px 0 7px 0
        }

    table.SupportAssessment td.one,
    table.SupportAssessment td.two,
    table.SupportAssessment td.three,
    table.SupportAssessment td.four,
    table.SupportAssessment td.five,
    table.SupportAssessment td.six,
    table.SupportAssessment td.seven {
        padding-top: 13px;
    }

    table.SupportAssessment .border td {
        padding-bottom: 4px !important;
        padding-top: 7px !important;
    }

    table.SupportAssessment td.one {
        width: 23px;
        padding-left: 10px !important;
    }

    table.SupportAssessment td.two {
        width: 23px;
        padding-left: 10px !important;
    }

    table.SupportAssessment td.three {
        width: 23px;
        padding-left: 10px !important;
    }

    table.SupportAssessment td.four {
        width: 23px;
        padding-left: 10px !important;
    }

    table.SupportAssessment td.five {
        width: 23px;
        padding-left: 10px !important;
    }

    table.SupportAssessment td.six {
        width: 23px;
        padding-left: 10px !important;
    }

    table.SupportAssessment td.seven {
        width: 23px;
        padding-left: 10px !important;
    }

    table.SupportAssessment tr.border td {
        font-size: 1.1em;
        background: url(../images/questionborder.gif) bottom left repeat-x;
    }

/* END - SUPPORT ASSESSMENT */

/* START - BITSEA ASSESSMENT */

/*.chkList {margin-bottom:5px;}*/
.rbList td {
    padding-right: 10px;
    font-size: 11px;
}

.rbList input {
    margin-right: 3px;
}

.BITSEATop div {
    clear: both;
    padding-bottom: 5px;
    width: 100%;
}

.BITSEATop .supportField {
    width: auto;
    padding-bottom: 0;
    display: none;
}

.BITSEATop input, .BITSEATop textarea, .BITSEATop .calendar {
    margin-top: 3px;
}

.BITSEATop span {
    font-size: 11px;
    float: left;
    margin-top: 8px;
    font-style: italic;
}

.BITSEAContainer {
    width: 650px;
}

    .BITSEAContainer table td.fullHeader {
        padding-left: 350px;
    }

    .BITSEAContainer table td.lastHeader {
        padding-left: 350px;
        width: 199px;
    }

table.BITSEAExtraColumn {
    background-position: 332px 0;
}

.BITSEAContainer table td.question {
    width: auto;
}

/* END - BITSEA ASSESSMENT */


/* START - ALCOHOL USE ASSESSMENT */

#ttlAlcoholUsePupProgram {
    display: none;
}

#alcoholUseContainer {
    clear: both;
}

    #alcoholUseContainer h4 {
        font-size: 1.2em;
        font-weight: normal;
        margin-bottom: 10px;
    }

    #alcoholUseContainer table {
        margin: 4px 0 15px;
    }

        #alcoholUseContainer table td {
            font-size: 1.2em;
        }

/* END - ALCOHOL USE ASSESSMENT */

.radioBtn {
    float: left;
    display: block;
    padding: 0 5px 0 0;
}

.radioTxt {
    float: left;
    display: block;
    padding: 0 10px 0 0;
    font-size: 0.9em;
}

td.adPadText {
    padding-top: 8px !important;
    padding-bottom: 15px !important;
}

td.adPad {
    padding-top: 10px !important;
    padding-bottom: 15px !important;
}

.editFullTxt,
.editHalfTxt,
.calendarTxtForm {
    font-family: 'Nunito Sans', sans-serif;
    padding: 0 4px;
    height: 25px;
    font-size: 1.0em;

    border-radius: 20px;
    border: 1px solid var(--Greys-Grey-Mid, #999);
    background: #FFF;
}

.calendarTxtFormHidden {
    visibility: hidden;
}

.editFullListbox {
    width: 287px;
   font-family: 'Nunito Sans', sans-serif;
    font-size: 1.0em;
}

.editFullTxt {
    width: 100%;
}

.editHalfTxt {
    width: 50%;
}

.calendarTxtForm {
    float: left;
    margin-right: 3px;
    width: 100px;
}

.editFullDdl {
   font-family: 'Nunito Sans', sans-serif;
    width: 100%;
    border: 1px solid #a4a4a4;
    height: 25px;
    font-size: 1.0em;
    border-radius: 20px;
}

.editHalfDdl {
   font-family: 'Nunito Sans', sans-serif;
    width: 150px;
    border: 1px solid #a4a4a4;
    height: 25px;
    font-size: 1.0em;
}

.editFullTextArea {
   font-family: 'Nunito Sans', sans-serif;
    width: 100%;
    height: 80px;
    font-size: 1.0em;
    padding: 4px;

    border-radius: 4px;
    border: 1px solid var(--Greys-Grey-Mid, #999);
    background: #FFF;
}

.editFullTextArea2 {
   font-family: 'Nunito Sans', sans-serif;
    width: 394px;
    border: 1px solid #a4a4a4;
    height: 80px;
    font-size: 1.0em;
    padding: 3px;
}

.date-range {
    display: flex;

    align-items: center;
}

    .date-range__field {
        border: 1px solid #a4a4a4;
        padding: 2px 0 0 2px;
        height: 25px;
        font-size: 1.0em;
        flex: 1 1 auto;
        border-radius: 20px;
    }

    .date-range__field ~ button.calendar {
        margin-top: 0;
        margin-left: 3px;
    }

    .date-range__text {
        padding: 0 8px;
    }

.questionTxtBox {
    float: left;
   font-family: 'Nunito Sans', sans-serif;
    border: 1px solid #a4a4a4;
    padding: 1px 0 0 2px;
    height: 25px;
    font-size: 1.0em;
    width: 150px;
    margin: 0px 0 2px 0;
}

.floatLeft {
    float: left !important;
    margin-left: 0px !important
}

.floatRight {
    float: right !important;
}

.floatBtn {
    display: flex;
    width: 650px;
    padding-top: 15px;

    justify-content: flex-end;
}

    .floatBtn input {
        margin-left: 5px;
    }

/*  start of new styles for text bubble */

.bubbleBtn {
    cursor: help;
}

.bubbleEncap a {
    cursor: help;
    width: 15px;
    height: 15px;
}

img.bubbleBtn {
    width: 15px;
    margin-top: 2px;
    float: right;
}

.sbubble {
    display: inline;
    position: absolute;
    text-align: left;
    z-index: 5;
    width: 279px;
    padding: 14px 10px 20px 15px;
    background: url(../images/bubble/resourcehelp.png) bottom left no-repeat;
    border-top: 1px solid #bebebe;
    box-sizing: content-box;
}

.sbubbleLrg {
    background: url(../images/bubble/resourcehelp_lrg.png) bottom left no-repeat;
}

.bubbleEncap .sbubble {
    left: -227px;
    top: -100px;
}

/* firefox alignment */
.bubbleAbs .sbubble,
.titleFloatLeft .sbubble {
    /*  left:-232px */
}

.sbubble img {
    float: left;
    padding: 0;
    margin: 0;
}

.sbubble p {
    float: left;
    width: 100%;
    text-align: left;
    clear: both;
    line-height: 1.3em;
    padding: 5px 0 5px 0;
    font-size: 11px;
    color: #666666;
}

td.bubbleTd {
    width: 20px;
    align: right;
}

.bubbleEncap {
    width: 15px;
    position: relative;
}

.bubbleAbs {
    position: absolute;
    right: 0;
    margin-right: -23px;
}

.titleFloatLeft {
    float: left !important;
    width: 155px !important;
    padding: 0;
    margin: 0 !important;
    position: relative;
    z-index: 1000;
}

.relativeIndex {
    position: relative;
    z-index: 5000;
}

/* end of new styles for text bubble */

/* Case Studies */

table.list th.col1_6 {
    width: 85px;
}

table.list th.col2_6 {
    width: 94px;
}

table.list th.col3_6 {
    width: 115px;
}

table.list th.col4_6 {
    width: 76px;
}

table.list th.col5_6 {
    width: 112px;
}

table.list th.col6_6 {
    width: 94px;
}

table.list th.col7_6 {
    width: 47px;
    padding-right: 0;
}

table.caseStudy input.file {
    font-size: 1.0em;
}

table.list select.ddlClients {
    width: 80px;
    font-size: 0.99em;
}

table.list select.ddlStatus {
    width: 90px;
    font-size: 0.99em;
}

table.list .btnSave {
    display: inline;
    float: right;
    margin-left: 0px;
}

#overlay {
    background-color: #AAAAAA;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    display: none;
}

.overlayContainerInner {
    margin: 0 auto;
    position: relative;
    width: 370px;
}

.overlayContainerContent {
    width: 380px;
    float: left;
    padding: 10px 20px;
    background-color: #FFFFFF;
}

    .overlayContainerContent div {
        display: none;
    }

#overlayContainer {
    position: absolute;
    width: 100%;
    display: none;
    z-index: 1000;
}

    #overlayContainer a {
        margin: 1px 0 0 10px;
        float: left;
    }

    #overlayContainer input {
        float: left;
    }

    #overlayContainer p {
        font-size: 1.1em;
        padding-bottom: 8px;
    }

    #overlayContainer h3 {
        font-size: 1.5em;
        padding-bottom: 5px;
    }

/* Forgotten password */
.fpLink {
    float: left;
    padding: 5px 0px 0px 65px;
    font-weight: bold;
    font-size: 11px;
    outline: 0;
}

.dialog {
    padding: 18px;

    position: absolute;

    border: 1px solid #DBDBDB;
    border-radius: 1px;
    background-color: #f5f5f5;
    
    box-shadow: 0 0 4px rgba(0,0,0,0.28);
}

    .dialog::before {
        content: '';

        width: 0;
        height: 0;
        margin-left: 12px;

        position: absolute;
        top: 0;
        left: 50%;
    
        border: 6px solid black;
        border-color: transparent transparent #f5f5f5 #f5f5f5;
    
        box-shadow: -2px 2px 3px 0 rgba(0, 0, 0, 0.2);
    
        transform-origin: 0 0;
        transform: rotate(135deg);
    }

    .dialog .close {
        float: none;
        position: absolute;
        top: 7px;
        right: 5px;
        display: block;
        margin: 0;
    }

#forgottenPassword {
    width: 375px;
    margin-top: -5px;
    margin-left: 50px;
}

    #forgottenPassword::before,
    #forgottenPassword::after {
        left: 25px;
    }

    #forgottenPassword p {
        clear: left;
        font-size: 1.1em;
        padding: 0px 0px 10px 0px;
    }

.close {
    float: right;
    margin: -10px 0px 0px 0px;
}

#forgottenPassword .form {
    display: flex;
}

#forgottenPassword .txtEmail {
    flex: 1 1 auto;
    margin-right: 10px;
}

/* Daily Assessment3 - 11/2010 */

.lineDivide2 {
    z-index: 5;
    float: left;
    width: 683px;
    height: 1px;
    background: url(../images/linedivide.gif) top left no-repeat;
    padding: 0;
    margin: 20px 0
}

.DailyAssessment3 {
    width: 650px;
    font-size: 1.1em;
    border-collapse: collapse;
}

    table.DailyAssessment3 * {
        box-sizing: content-box;
    }

    .DailyAssessment3 .num {
        font-weight: bold;
        margin-right: 12px;
    }

    .DailyAssessment3 tr.question td {
        font-size: 1.1em;
        padding-bottom: 3px
    }

    .DailyAssessment3 .answer {
        display: block;
    }

        .DailyAssessment3 .answer td {
            color: #fff;
            padding: 4px 4px 3px;
            vertical-align: middle;
            overflow: hidden;
        }

            .DailyAssessment3 .answer td.text {
                width: 128px
            }

            .DailyAssessment3 .answer td input {
                margin-left: 5px;
                position: relative;
                top: 1px
            }

    .DailyAssessment3 .one {
        background-color: #689350
    }

    .DailyAssessment3 .two {
        background-color: #567e61
    }

    .DailyAssessment3 .three {
        background-color: #426669
    }

    .DailyAssessment3 .four {
        background-color: #2d4e53
    }

    .DailyAssessment3 .divider td {
        background: url(../images/questionborder.gif) center left repeat-x;
        height: 20px;
    }

.clientTreatmentRecord {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;

    .titleRow {
        h3 {
            font-weight: 600;
        }
    }
}
/* June 2011 updates */
h4.clientHeadings {
    font-size: 2.2em;
    width: 623px;
    line-height: 1.18182;
    font-weight: var(--font-bold);
}

.orangeHeading {
    color: #c96b1a;
}

.blueHeading {
    color: #3a5879;
}

.shortHeading {
    float: left;
    width: 335px !important;
}

.orangeLine {
    background-image: linear-gradient(to right, #de9833, transparent);
    padding: 0;
    margin: 0;
}

.blueLine {
    background-image: linear-gradient(to right, #3a5879, transparent);
    padding: 0;
    margin: 0;
}

.lineMarBot {
    margin-bottom: 15px;
}

.gradC {
    margin: 30px 0 30px 0px;
    padding: 20px;
}

.greenD {
    background: rgba(227, 238, 222, 0.50);
    z-index: 10;
    margin-left: -20px; 
    margin-right: -20px; 
    padding: 20px 20px 0 20px;

    .titleRow {
        padding-left: 35px!important;
        margin-bottom: 15px;
    }

    table.goals {
        margin: 10px 20px 10px 35px!important;    
        width: calc(100% - 55px)!important;

        td {
            vertical-align: middle;
        }
    }
}

.advise {
    margin-top: 15px;

    p {
    color: var(--Text-Dark-text, #2A2A2A);
    font-size: 0.875rem;
    font-weight: var(--font-regular);
    line-height: 1.14286; 
    }
}

.greenC {
    background: var(--Green-Highlights-01, #E3EEDE);
    border-radius: 10px;
    padding: 20px;

    tr.border:not(:last-child) {
        border-bottom: 1px solid var(--Green-Highlights-02, #C4CDBF);
    }

    .list.clientTreatment {
        .col1, .col2, col3 {
            width: 200px!important;
        }
    }

    .col1, .col2, col3 {
        width: 160px!important;

    }

    tr.border:last-of-type {
        border-bottom: none;
    }

    tr th {
        font-size: 0.875rem;
        line-height: 1.14286;
        font-weight: var(--font-bold);
    }

    tr td.t {
        color: var(--Text-Dark-text, #2A2A2A);
        font-size: 0.875rem;
        line-height: 1.14286; 
        padding-top: 10px;
        padding-bottom: 10px;
        text-wrap: nowrap;
    }

    table.list td.last {
        padding-top: 10px;
    }

    table.list, table.goals {
        margin: 0px 0 10px 0px!important;
        width: 100%!important;
    }

    .titleRow {
        padding-left: 0px!important;
    }

    .extraMargin {
        margin-bottom: 15px;
    }
}

.greenLine {
    border-bottom: 1px solid var(--Green-Highlights-02, #C4CDBF);
    padding: 0;
    margin: 0;
}

.orangeC {
    background-image: linear-gradient(to right, #f7eae0, transparent);
    margin-top: 20px;
}

.blueC {
    background-image: linear-gradient(to right, #dbe1e9, transparent);
}

.goalC {
    background: var(--Blue-Light-Blue, #DBE1E9);
    border-radius: 10px;
}

.goalCWrapper {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;

  .goals {
    margin: 0!important;

    .noBg {
        background: #fff;
        padding: 10px;

        td {
            padding-top: 10px!important;
            padding-bottom: 10px!important;
        }

        td:first-child {
            padding-left: 10px!important;
        }

        td:last-child {
            padding-right: 10px!important;
        }
    }
  }
}

.goalCWrapper table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 15px;
}

.gradC .titleRow {
    padding: 0 0 0 15px;
}

.gradC .shortTitleRow {
    padding: 15px 0;
    margin-left: 3px;

    .goalC & {
        padding: 0;
        align-items: center;
        justify-content: end;
    }
}

.gradC table.list, .gradC table.goals {
    width: calc(100% - 15px);
    margin: 10px 0 10px 15px;
}

.details-container {
    display: flex;
}

.graphC {
    flex: 0 0 auto;
    width: 360px;
    height: 270px;
    margin-left: 15px;
}

.clear {
    clear: both;
}

.task-status {
    display: flex;

    span {
        width: 19px;
        height: 10px;
    }
}

.addGoalProg {
    position: relative;
    z-index: 2;
    margin-top: 15px;
    text-align: right;
}

.addGoal {
    display: none;
    width: 455px;
    padding: 22px 0px 0px 0px;
    
    position: absolute;
    top: 14px !important;
    right: 0;
    z-index: 100000;
    
    text-align: left;

    background: url(../images/bubble/addgoal.png) no-repeat top left;
}

    .addGoal .addGoalC {
        padding: 0 10px;
        border-left: 1px solid #bebebe;
        border-right: 1px solid #bebebe;
        border-bottom: 1px solid #bebebe;
        background: #eeefed;
    }

.addGoalC .close {
    background: url(../images/bubble/btn_close.png) no-repeat top left;
    width: 43px;
    height: 12px;
    float: right;
    text-indent: -9999px;
    margin-top: 3px;
}

    .addGoalC .close:hover {
        border: 0;
        text-decoration: none;
    }

.addGoalC h3 {
    font-size: 0.875rem;
}

.addGoalC fieldset {
    margin: 15px 0 0 0;
    border: 0;
    font-size: 1.2em;
    padding: 0;
}

.addGoalC .buttons {
    float: right;
    margin-top: 2px;
}

.addGoalC .lined {
    height: 1px;
    margin: 0;
    padding: 0;
}

.addGoalC .lineMarBot {
    margin-bottom: 10px;
}

.addGoalC .scores {
    width: 400px;
}

.addGoalC .scoresOrange {
    background-image: linear-gradient(to right, #f7eae0, transparent);
}

.addGoalC .scoresBlue {
    background-image: linear-gradient(to right, #dbe1e9, transparent);
}

.addGoalC .scores td {
    padding: 10px 0 5px 10px;
}

    .addGoalC .scores td.bubbleTd {
        padding: 0;
        float: right;
        margin-top: 20px;
    }

.addGoalC .calendarTxtFormHidden {
    display: none;
}

.addGoalC .calendarTxtForm {
    margin-bottom: 13px;
}

.helpHelp {
}

    .helpHelp .hHelp {
        display: flex;
        padding: 30px 15px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;

        color: var(--dark-text);
        font-size: 0.875rem;
        line-height: 1.42857;

        /* Target the first span in the help tooltip */
        span:first-child {
            display: flex;
            align-items: center;
            font-weight: var(--font-bold);
            
            line-height: 1.8;
        }
    }

        .helpHelp .hHelp__icon {
            flex: 0 0 auto;
            margin-right: 5px;
        }


.measures-report-form {
    font-size: 1.2em;
    border-collapse: collapse;
    margin: 0 0 0 auto;
}

    .measures-report-form td {
        padding: 0 5px;
    }

    .measures-report-form input[type="text"] {
        height: 21px;
    }

    .measures-report-form input[type="image"] {
        display: block;
    }

    .measures-report-form tr td:first-child {
        font-weight: bold;
        line-height: 21px;
    }

    .measures-report-form tr td:last-child {
        text-align: right;
        padding-right: 0;
    }

    .table-number {
        font-size: 17px;
        font-weight: bold;
        text-shadow: 2px 1px #555;
        color: #dfdfdf;
    }

.agent-list{
    list-style:none;
    padding-left:30px;
}

.agent-terms-heading{
    padding-bottom:20px;
}

/* Footer */
.c-footer {
    margin-top: auto;
    padding-left: 40px;
    padding-right: 40px;

    background: linear-gradient(45deg, #182940 0%, #44782F 100%);
    color: var(--colour-white);

    padding: 20px 0 30px;

    @media (min-width: 768px) {
        padding: 20px;
    }
}

    .f-inner {
        width: 100%;
        max-width: 1400px;
        margin-right: auto;
        margin-left: auto;

        padding-left: 20px;

        @media (min-width: 768px) {
            display: flex;
            justify-content: space-between;
            padding-left: 0px;
        }
    }

            .f-main__items {
                list-style: none;
	            margin: 0;
	            padding: 0;

                display: flex;
                flex-wrap: wrap;
                width: 100%;
            }

                .f-main__item {
                    position: relative;
                    font-size: 1.6em;
                    line-height: 1.7;
                    margin-right: 20px;

                    &::after {
                        content: '';
	                    position: absolute;
	                    display: block;

                        content: "|";
                        top: 0;
                        right: -11px;
                        font-weight: 400;
                    }   
                    
                    &:last-child {
                        &::after {
                            display: none;
                        }
                    }
                }

                    .f-link {
                        color: inherit;
                        text-decoration: none;

                        font-weight: var(--font-bold);
                        white-space: nowrap;

                        &:hover,
                        &:focus {
                            text-decoration: underline;
                        }
                    }

        .f-side {
            margin-top: 20px;
            font-size: 1.6em;
            line-height: 1.7;
            white-space: nowrap;

            @media (min-width: 768px) {
                margin-top: 0;
                margin-left: 50px;
            }
        }

.reviewBtn {
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    
    font-weight: bold;
    display: flex;
    align-items: center;
    font-weight: var(--font-bold);
    color: var(--Text-Blue-text, #3A5879);

    background: url("../Images/plus_symbol.svg") no-repeat left center;
    background-size: 10px 10px;
    padding-left: 15px;

    &:hover {
        cursor: pointer;
        text-decoration: underline; 
    }
}

.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 30px;
  border: 1px solid #888;
  width: 80%;
  max-width: 350px;
  box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.40);
  position: relative;
}

.taskReview {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    .heading {
        color: var(--Text-Blue-text, #3A5879);
        h2 {
            font-size: 18px;
            font-weight: 700;
            line-height: 0.833333;
            margin-bottom: 10px;
        }
        p {
            color: #000;
        }
    }
}

.modal-share {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-close {
    background: url("../Images/Close.svg");
    background-color: transparent;
    border: none;
    position: absolute;
    top: -25px;
    right: 0;
    width: 20px;
    height: 20px;
     cursor: pointer;
}

.modal-title {
    color: var(--Text-Blue-text, #3A5879);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.83333; 
}

.modal-description {
    color: var(--Text-Dark-text, #2A2A2A);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25; 
}

.copy-this-link {
    h6 {
        color: var(--Text-Dark-text, #2A2A2A);
        font-weight: 700;
        line-height: 1.25; 
        font-size: 12px;
    }
}

.copy-this-link-input {
    display: flex;
    gap: 6px;
    margin-top: 5px;

    input {
        flex: 1;
        border: 1px solid var(--Greys-Grey-Mid, #999);
        background: #FFF;
        height: 21px;
        padding: 3px 4px;
        font-size: 12px;
    }
}

.share-btn-span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 20px;
}

.share-btn {
    color: var(--Text-Blue-text, #3A5879);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.91667;
    cursor: pointer;

    background: none;
    border: none;

}

.taskReviewDate {
    display: flex;
    flex-direction: column;
    row-gap: 12px;

    span {
        color: var(--Text-Dark-text, #2A2A2A);
        font-size: 12px;
        font-weight: 700;
        line-height: 1.25; 
    }

    .lineDivide {
        border-bottom: 1px solid var(--Blue-Light-Blue, #DBE1E9);
        margin: 8px 0;
    }
}

.taskReviewDate span[data-val-controltovalidate] {
    color: #C91A1A;
}

.statusSelect {
    margin-bottom: 8px;
    p {
        margin-top: 4px;
        color: var(--Text-Dark-text, #2A2A2A);
        font-weight: 400;
        line-height: 1.25; 
        margin-bottom: 12px;
    }
}

.statusSelectOptions {
    display: flex;
    flex-direction: column;

    margin-bottom: 15px;
}

.statusSelect span[data-value-controltovalidate] {
    margin-top: 15px;
}

.statusSelectOptions label {
    display: flex;
    cursor: pointer;
    position: relative;

    color: var(--bw-black, #000);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.33333; 
}

.status-option label::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 22px; 
    bottom: -1px;
}

.btnDelete {
    color: #C91717;
    font-size: 12px;
    line-height: 1.25; 
    cursor: pointer;
    background: url("../Images/Bin.svg") no-repeat left center;
    background-size: 13px 14px;
    border: none;
    padding-left: 20px;
    text-align: left;
    padding-top: 1px;

}

.status-option[data-status="0"] label::after {
    background-image: url("../Images/progress/Status-01-NoProgress.svg");
}

.status-option[data-status="1"] label::after {
    background-image: url("../Images/progress/Status-02-LessThan.svg");
}

.status-option[data-status="2"] label::after {
    background-image: url("../Images/progress/Status-03-AsExpected.svg");
}

.status-option[data-status="3"] label::after {
    background-image: url("../Images/progress/Status-04-MoreThan.svg");
}

.status-option[data-status="4"] label::after {
    background-image: url("../Images/progress/Status-05-Acheived.svg");
}

.status-option[data-status="4"] {
    color: #348B48;
    font-weight: var(--font-bold);
}

.statusSelectOptions input[type="radio"] {
    display: none;
}

.statusSelectOptions label::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #000;
    border-radius: 50%;
    margin-right: 36px; 
    line-height: 1.33333;
    flex-shrink: 0;
}

.statusSelectOptions input[type="radio"]:checked + label::before {
    background-color: #000;
    border-color: #000;
    border-width: 2px;
    clip-path: circle(50% at 50% 50%);
}

.featuredGoalsWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(211.75px, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 15px;
}

.featuredGoalsWrapper.featuredGoalsWrapperTemplates {
    margin-top: 0px;
}

.featuredGoalsCard {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    height: 100%;
    text-decoration: none!important;

    border-radius: 4px;
    border: 1px solid var(--Text-Blue-text, #3A5879);
    background: var(--bw-white, #FFF);

    &:hover {
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
        outline: 1px solid var(--Text-Blue-text, #3A5879);
        cursor: pointer;
    }

    h5 {
        overflow: hidden;
        color: var(--Text-Blue-text, #3A5879);
        text-overflow: ellipsis;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.28571; 
        margin-bottom: 4px;
    }

    p {
        overflow: hidden;
        color: var(--Text-Dark-text, #2A2A2A);
        text-overflow: ellipsis;
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.45455; 
        flex-grow: 1;

        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        align-self: stretch;

        margin-bottom: 12px;
    }

    a {
        display: flex;
        justify-content: space-between;
    }

    &.allGoals {
        background: #CBD3DC;
        border: none;
    }
}

.featuredGoalsCardFooter {
    display: flex;
    margin-top: auto;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    text-wrap: nowrap;
    height: 20px;


    &.allGoals {
        justify-content: end;
    }

    span {
        color: var(--Text-Blue-text, #3A5879);
        font-size: 10px;
        display: flex;
        gap: 5px;
        font-style: normal;
        font-weight: 700;
        line-height: 1; 
        align-items: center;
        flex-wrap: nowrap;
    }
}

.goalLibrarySubHeading {
    color: var(--Text-Blue-text, #3A5879);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; 
    margin: 20px 0;
}

.loadMoreBtn {
    margin: 0 auto;
    margin-top: 20px;
    display: block;
}

.summaryBtn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;

    color: var(--Text-Blue-text, #3A5879);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 1; 

    transition: transform 0.3s ease-in-out;

    &.expanded {
        &::after {
            transform: rotateX(180deg);
        }
    }

    &::after {
        content: "";
        display: block;
        background: url(../Images/chevron_down.svg) no-repeat left center;
        padding-left: 15px;
        height: 15.75px;
        width: 15.75px;

        transition: all 0.3s ease-in-out;
    }

     &:hover {
        cursor: pointer;

        &::after {
            background: url("../Images/chevron_down_filled.svg") no-repeat left center;
        }
    }
}

.goal-row {
    border-bottom: 1px solid var(--Blue-Light-Blue, #DBE1E9);
    td.last {
        display: flex;
        justify-content: end;
        gap: 5px;
    }

    td {
        vertical-align: middle;
    }

    &.expanded {
        background: var(--Blue-Light-Blue, #DBE1E9)!important;
    }

    td.Completed {
        color: #348B48;
        font-weight: var(--font-bold);
    }
}

.goalStatusHeader {
    width: 42px;
}

.tasks-row {
    position: relative;
    z-index: 1;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(219, 225, 233, 0.5) !important;
        z-index: -1; 
    }

    td {
        .goals & {
            .goalCWrapper & {
                .goalC & {
                    padding: 10px 20px!important;
                    padding-left: 0px!important;
                }
            }
        }
    }

    .task {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--Blue-Light-Blue, #DBE1E9);

        &:last-child {
            border-bottom: none;
        }

        .task-id {
            color: var(--bw-black, #000);
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 1.25; 
            text-wrap: nowrap;
        }

        .task-description {
            color: var(--bw-black, #000);
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.25; 
        }
    }
}

/* Client Goals pages */
.c-client-goals {
    margin: 0 auto;
    margin-bottom: 60px;
}

.c-client-goals__header {
    padding: 30px 0 0 0;
    background: var(--Background-Background-light, #ECF1EB);
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;

    @media (min-width: 768px) {
        padding: 40px 0 0 0;
    }

}

.c-client-goals__content {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    gap: 15px;
    max-width: 916px;
    margin-bottom: 40px;
    padding: 0 20px;

    h1 {
        color: var(--Primary-Primary-01, #182940);
        font-size: 36px;
        font-style: normal;
        font-weight: 800;
        line-height: 1.16667; 
    }

    p {
        color: var(--Primary-Primary-01, #182940);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5; 
    }
}

.c-client-goals__mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #fff;
}

.c-client-goals__mask-overlay__container {
    position: relative;
    margin: 0 auto;
    max-width: 916px;
    padding: 0 20px;
}

.c-overlay-content {
    position: absolute;
    display: flex;
    top: -60px;
    align-items: center;
    padding: 7px 20px 7px 7px;
    gap: 10px;

    color: var(--Primary-Primary-01, #182940);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.57143; 

    border-radius: 40px;
    background: var(--bw-white, #FFF);
    box-shadow: 0px 2px 10px 0px rgba(24, 41, 64, 0.20);

    span {
        font-weight: 700;
    }

    >div {
        height: 26px;
    }
}

.c-overlay-content__in-progress {
    color: #C96B1A;
}

.c-overlay-content__abandoned {
    color: #C91A1A;
}

.c-client-goals__header-back {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 35px!important;
    max-width: 916px;
    margin: auto;

    color: var(--Primary-Primary-01, #182940);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1; 

    @media (min-width: 1350px) {
        position: absolute;
        left: 40px;
        top: 50px;
        padding-left: 0;
        margin-bottom: 0px;
    }

    @media (min-width: 768px) {
        padding-left: 20px;
    }
}

.c-client-goals__goals {
    max-width: 916px;
    margin: 0 auto;
    padding: 0 20px;

    @media (min-width: 768px) {
        min-height: 100vh;
    }
}

.c-client-goals__goals-wrapper {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 0.5fr;
    column-gap: 30px;
    row-gap: 10px;
    width: 100%;
    margin: 0 auto;

    .c-row__name {
        .name {
            display: flex;
            align-items: center;
            gap: 5px;
            svg {
                fill: #fff;
                margin-top: 1px;
                display: block;

                @media (min-width: 768px) {
                    display: none;
                }
            }
        }
    }

    .c-row__name.Active {
        .name {
            svg {
                fill: #000;
            }
        }
    }

    
}

.c-client-goals__goals-wrapper-goal {
    grid-template-columns: 0.5fr 4fr 1fr 1fr 0.5fr;

    .c-row {
        align-content: baseline;
    }

    .c-row--2, .c-row--3, .c-row--4 {
        align-items: center!important;
        line-height: 1.5!important;

        @media (min-width: 768px) {
            align-items: baseline!important;
            line-height: 1.5!important;
        }

        .c-client-goal__status {
            line-height: 1.5;
        }
    }

    .row {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.25; 
    }

    .c-row__name {
        font-weight: 400!important;

        .name {
            color: #fff;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 1.375; 

        }
    }

    .c-row--4 {
        justify-content: flex-start!important;
    }
}

.c-mobile-show {
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.28571; 

    @media (min-width: 768px) {
        display: none;
    }
}

.rowSaving {
    img {
        max-height: 21px;
    }
}

.c-client-goals__goals-wrapper {
    .c-row {
        display: grid;
        grid-template-columns: max-content;
        grid-column: 1 / -1;
        background-color: #fff;
        padding: 10px;
        border-radius: 4px;
        box-shadow: 0px 2px 10px 0px rgba(24, 41, 64, 0.20);
        min-height: 69px;
        position: relative;

        .c-client-goal & {
            padding: 20px;
            row-gap: 10px;
            grid-template-columns: auto;

            .c-row--2, .c-row--3, .c-row--4 {
                justify-content: flex-start;

                >:first-child {
                    width: 75px;
                }
            }

            .c-row__name {
                padding-bottom: 10px;
            }

            @media (min-width: 768px) {
                row-gap: 0;
                grid-template-columns: subgrid;

                .c-row__name {
                    padding-bottom: 0px;
                }
            }
        }

        @media (min-width: 768px) {
            grid-template-columns: subgrid;
        }
    }

    @media (min-width: 768px) {
        min-height: 54px;
    }

    .c-row > *:nth-child(4n+2),
    .c-row > *:nth-child(4n+3) {
        display: none;
    }

    .c-row > *:nth-child(4n+4) {
        @media (max-width: 767px) {
            opacity: 0;
            width: 100%;
            height: 100%;
            position: absolute;

            a {
                width: 100%;
                height: 100%;
            }
        }
    }

    @media (min-width: 768px) {
        .c-row > *:nth-child(4n+2),
        .c-row > *:nth-child(4n+3),
        .c-row > *:nth-child(4n+4) {
            display: flex;
        }
    }

    .c-client-goal & {
        .c-row > *:nth-child(4n+2),
        .c-row > *:nth-child(4n+3),
        .c-row > *:nth-child(4n+4) {
            display: flex;

            row-gap: 20px;
        }
    }

    .c-row--completed {
        background: var(--Primary-Primary-02, #447A38);
        box-shadow: none;
    }

    .c-row--1 {
        display: flex;
        align-items: center;
    }

    .c-row--id {
        display: flex;
        align-items: start;
        color: #C96B1A;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.28571; 

        .c-row--completed & {
            color: #fff;
        }

        span {
            line-height: 1.375;
            margin-top: 3px;
        }
    }

    .c-row--2 {
        display: flex;
        align-items: center;

        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1; 

        .c-row--completed & {
            color: #fff;
        }
    }

    .c-row--3 {
        display: flex;
        align-items: center;

        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1; 

        .c-row--completed & {
            color: #fff;
        }
    }

    .c-row--4 {
        display: flex;
        align-items: center;
        justify-content: end;
        text-wrap: nowrap;

        a {
            display: flex;
            align-items: center;
            color: #182940;
            flex-wrap: nowrap;
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
            line-height: 1; 

            gap: 5px;
        }

        .c-row--completed & {
            color: #fff;

            a {
                color: #fff;
            }

            svg {
                fill: none;

                circle {
                    fill: #000;
                    fill-opacity: 0.1;
                }
                path {
                    fill: #fff;
                }
            }

        }
    }
    
    .c-row__icon {
        margin-right: 10px;
        height: 34px;
    }

    .c-row__name {
        display: flex;
        flex-direction: column;

        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.375; 

        .subtext {
            color: #fff;
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 1; 
        }

        .c-row--completed & {
            color: #fff;
        }

        .c-client-goal & {
            line-height: 1.5;
        }
    }

    .c-row__name.Active {
        .subtext {
            color: #C96B1A;
        }
    }

    .c-row__name.Abandoned {
        .subtext {
            color: #C91A1A;
        }
    }

    .c-row__name.Suspended {
        .subtext {
            color: #C91A1A;
        }
    }
}


.c-client-goals__goals__header {
    display: contents;

    .c-main-heading {
        color: var(--Primary-Primary-01, #182940);
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.27273; 
        text-wrap: nowrap;

        margin-bottom: 10px;

        @media (min-width: 768px) {
            margin-bottom: 0;
        }
    }

    .c-sub-heading {
        color: var(--Primary-Primary-01, #182940);
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 1; 
        align-self: center;
    }

    .c-sub-heading {
        display: none;
    }

    @media (min-width: 768px) {
        .c-sub-heading {
            display: flex;
        }
    }
}

.c-client-goal__status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.c-client-goal__subheading {
    display: flex;
    align-items: center;
    gap: 5px;

    color: var(--Primary-Primary-01, #182940);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; 
    margin-bottom: 10px;
}

.c-client-goal__subheading-label {
    font-weight: 700;
}