body {
    background-color: var(--background-lightest);
    font-family: "Ubuntu", sans-serif !important;
}

.container > .topbar > .right::after {
    background: none !important;
}

body .container {
    max-width: 100%;
    background-color: var(--background-lightest);
}

    body .container > .topbar {
        background: linear-gradient(90deg, var(--color-primary-purple-dark) 40%, var(--color-primary-purple) 100%);
    }

        body .container > .topbar > .left > .lc-tooltip .item.notifications,
        body .container > .topbar .center > .lc-tooltip .item.notifications,
        body .container > .topbar .right > .lc-tooltip .item.notifications {
            position: relative;
        }
        body .container > .topbar .right > .lc-tooltip .item.notifications.active {
            position: relative;
            padding: 0px;
            border-radius: 0px;
        }

            body .container > .topbar > .left > .lc-tooltip .item.notifications .badge,
            body .container > .topbar .center > .lc-tooltip .item.notifications .badge,
            body .container > .topbar .right > .lc-tooltip .item.notifications .badge {
                position: absolute;
                display: flex;
                align-items: center;
                justify-content: center;
                top: 3px;
                right: 3px;
                background-color: #fff;
                color: #000;
                font-size: 10px;
                padding: 2px;
                border-radius: 8px;
                min-width: 20px;
                color: #fff;
                background-color: #4ebaff;
            }

                body .container > .topbar > .left > .lc-tooltip .item.notifications .badge.success,
                body .container > .topbar .center > .lc-tooltip .item.notifications .badge.success,
                body .container > .topbar .right > .lc-tooltip .item.notifications .badge.success {
                    background-color: #a5bf3e;
                }

                body .container > .topbar > .left > .lc-tooltip .item.notifications .badge.warning,
                body .container > .topbar .center > .lc-tooltip .item.notifications .badge.warning,
                body .container > .topbar .right > .lc-tooltip .item.notifications .badge.warning {
                    background-color: var(--color-secondary-lime);
                    color: var(--text-default);
                }

                body .container > .topbar > .left > .lc-tooltip .item.notifications .badge.danger,
                body .container > .topbar .center > .lc-tooltip .item.notifications .badge.danger,
                body .container > .topbar .right > .lc-tooltip .item.notifications .badge.danger {
                    background-color: #e64646;
                }

        body .container > .topbar > .left .lc-tooltip > .item,
        body .container > .topbar .center > .lc-tooltip > .item,
        body .container > .topbar .right > .lc-tooltip > .item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            width: 44px;
            font-family: "Ubuntu", sans-serif;
            font-weight: 700;
            cursor: pointer;
            color: #fff;
        }

            body .container > .topbar > .left .lc-tooltip > .item > i,
            body .container > .topbar .center > .lc-tooltip > .item > i,
            body .container > .topbar .right > .lc-tooltip > .item > i {
                font-size: 24px;
            }



            body .container > .topbar > .left .lc-tooltip > .item > .avatar,
            body .container > .topbar .center > .lc-tooltip > .item > .avatar,
            body .container > .topbar .right > .lc-tooltip > .item > .avatar {
                width: 24px;
                height: 24px;
                border: 1px solid #fff;
                border-radius: 14px;
            }

        body .container > .topbar > .left > .items {
            display: flex;
            gap: 0px;
        }

            body .container > .topbar > .left > .items > .division {
                width: 3px;
                height: 22px;
                border-radius: 2px;
                background-color: #ccc;
                margin-left: 8px;
                margin-right: 16px;
                margin-top: 10px;
                margin-bottom: 10px;
            }

            body .container > .topbar > .left > .items > .group {
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 50px;
                width: fit-content;
                max-width: 150px;
                font-size: 0.8rem;
                padding-right: 10px;
            }

        body .container > .topbar > .left .items .lc-tooltip .item .title {
            margin-left: 0;
        }

        body .container > .topbar > .left .items .gtm {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 36px;
            min-width: 52px;
            margin-top: 8px;
            border-radius: 10px 10px 0 0;
            font-family: "Ubuntu", sans-serif;
            font-weight: 500;
            padding: 10px 20px;
            cursor: pointer;
            color: var(--text-dark);
            position: relative;
            background-color: var(--background-white);
            margin-left: 20px;
            margin-right: 20px;
        }

            body .container > .topbar > .left .items .gtm.secops {
                background-color: #f1f5fb;
            }

            body .container > .topbar > .left .items .gtm .title {
                font-size: 14px;
            }

            body .container > .topbar > .left .items .gtm::after,
            body .container > .topbar > .left .items .gtm::before {
                content: "";
                position: absolute;
                bottom: 0;
                width: 20px;
                height: 20px;
                background-color: var(--color-primary-purple-dark);
                border-radius: 50%;
            }

            body .container > .topbar > .left .items .gtm::after {
                left: -20px;
                box-shadow: 10px 10px #fff;
            }

            body .container > .topbar > .left .items .gtm::before {
                right: -20px;
                box-shadow: -10px 10px #fff;
            }

            body .container > .topbar > .left .items .gtm.secops::after {
                box-shadow: 10px 10px #f1f5fb;
            }

            body .container > .topbar > .left .items .gtm.secops::before {
                box-shadow: -10px 10px #f1f5fb;
            }


            body .container > .topbar > .left .items .gtm > i {
                font-size: 24px;
                text-align: center;
                font-weight: 100;
            }

        body .container > .topbar > .center {
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

            body .container > .topbar > .center > .logo {
                height: 20px;
                min-height: -webkit-fill-available !important;
                margin: 10px !important;
            }

        body .container > .topbar > .right .changearea {
            padding-left: 20px;
            margin-right: 15px;
            width: 250px;
            display: flex;
            justify-content: end;
            align-items: center;
        }

            body .container > .topbar > .right .changearea .lastupdate {
                display: flex;
                flex-direction: column;
                text-align: right;
                font-weight: 400;
                font-size: 11px;
                color: var(--text-dark);
                opacity: 0.5;
                gap: 2px;
            }

            body .container > .topbar > .right .changearea .notification {
                height: 50px;
                font-family: "Ubuntu", sans-serif;
                font-weight: 500;
                font-size: 10px;
                text-align: right;
                color: #ffffff;
                text-overflow: ellipsis;
                overflow: hidden;
                display: flex;
                align-items: center;
            }

                body .container > .topbar > .right .changearea .notification > span {
                    -webkit-line-clamp: 3;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    text-overflow: ellipsis;
                    overflow: hidden;
                }

    body .container > .toolbar {
        z-index: 10;
    }


        body .container > .toolbar > .right > *:not(:last-child)::after {
            content: " ";
            display: inline-flex;
            width: 1px;
            height: 20px;
            border-radius: 2px;
            background-color: var(--line-dark);
            margin: auto 12px;
        }

        body .container > .toolbar > .right * > .lc-dropdown * {
            white-space: nowrap;
        }

        body .container > .toolbar > .right > .gridfilter {
            display: flex;
            align-items: center;
            overflow: hidden;
            font-size: 12px;
        }

            body .container > .toolbar > .right > .gridfilter > .size {
                font-weight: 700;
            }

            body .container > .toolbar > .right > .gridfilter:hover {
                overflow: visible;
            }

        body .container > .toolbar > .right > .select-period {
            display: flex;
            align-items: center;
            font-size: 12px;
            cursor: pointer;
            -webkit-user-select: none;
            user-select: none;
        }

        body .container > .toolbar > .right > .functions {
            position: relative;
            display: flex;
            overflow: hidden;
        }

            body .container > .toolbar > .right > .functions:hover {
                overflow: visible;
            }

        body .container > .toolbar > .right > .row {
            display: flex;
            align-items: center;
            gap: 5px;
        }

            body .container > .toolbar > .right > .row > .lc-dropdown {
                font-size: 12px;
                font-weight: 500;
            }

                body .container > .toolbar > .right > .row > .lc-dropdown .ppi {
                    font-weight: bolder;
                }

            body .container > .toolbar > .right > .row select {
                font-family: "Ubuntu", sans-serif;
                font-size: 13px;
                font-weight: 500;
                padding: 4px 5px;
                border: 0;
                cursor: pointer;
            }

        body .container > .toolbar > .right > .clientgroup {
            display: flex;
            align-items: center;
        }

            body .container > .toolbar > .right > .clientgroup span {
                max-width: 100px;
                overflow: hidden;
                text-overflow: ellipsis;
                margin: 0 10px;
                white-space: nowrap;
                font-size: 12px;
                font-weight: 400;
            }

        body .container > .toolbar > .right > .last {
            display: flex;
            align-items: center;
            gap: 5px;
        }

    body .container > .page {
        margin: 0 auto;
        padding: 0.75rem;
    }

    body .container>.topbar>.left>.items>.logo {
            height: 20px;
        }

.pp-dropmenu > .items > .group-solution {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .25rem;
    padding: .0rem 0;
}

.pp-dropmenu > .items .group-solution-meu-lc {
    display: flex;
    grid-gap: 0.25rem;
    gap: 0.25rem;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: .25rem 1.5rem;
}

.pp-dropmenu > .items > .item .group-solution {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.pp-dropmenu > .items > .item .label,
.pp-dropmenu .label {
    margin-bottom: 0;
}


.pp-dropmenu .color-group {
    width: .5rem;
    height: .5rem;
    border: 1px solid #fff;
    background: blue;
    border-radius: 50%;
}


.pp-dropmenu > .items > .item,
.pp-dropmenu > .items .item {
    gap: 0.3125rem;
    flex-shrink: 0;
    align-self: stretch;
}


.pp-dropmenu > .items,
.pp-dropmenu .subitems {
    width: 280px !important;
}

    .pp-dropmenu .subitems > .group-solution .item {
        cursor: pointer;
        width: 100%;
        display: flex;
        padding: 0.3125rem 1.5rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.125rem;
        align-self: stretch;
    }


.pp-dropmenu .items > .group-solution .item {
    cursor: pointer;
    width: 100%;
    display: flex;
    padding: 0.3125rem 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.125rem;
}


.pp-dropmenu .subitems > .group-solution {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

    .pp-dropmenu .subitems > .group-solution .item .label.solution-name,
    .pp-dropmenu .items > .group-solution .item .label {
        color: var(--text-light);
        font-family: "Ubuntu", sans-serif;
        font-size: 0.75rem;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
    }


    .pp-dropmenu .subitems > .group-solution .item .label,
    .pp-dropmenu .items > .group-solution .item .label {
        margin-bottom: 0 !important;
    }

    .pp-dropmenu .subitems > .group-solution .item .solution {
        display: flex;
        align-items: flex-start;
        gap: .25rem;
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
    }


.pp-dropmenu .title-menu {
    color: var(--text-light);
    font-family: "Ubuntu", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    /* 1.4rem */
    letter-spacing: -0.035rem;
    display: flex;
    padding: .75rem 1.25rem;
    align-items: center;
    gap: 0.3125rem;
    align-self: stretch;
}

.pp-dropmenu .subitems > .group-solution .item i {
    font-size: 18px;
    font-weight: bolder;
}




.pp-dropmenu .subitems > .group-solution .item.selected,
.pp-dropmenu .items > .group-solution .item.selected {
    background-color: #eee;
}

.pp-dropmenu .subitems > .group-solution .item:hover,
.pp-dropmenu .subitems > .group-solution .item:hover .label,
.pp-dropmenu .items > .group-solution .item:hover,
.pp-dropmenu .items > .group-solution .item:hover .label {
    background-color: #f5f5f5;
    color: var(--text-default);
}

.pp-dropmenu .subitems > .group-solution .item > .label {
    display: flex;
    align-items: center;
    gap: 10px;
}


.pp-dropmenu .subitems > .group-solution .item .sufixo,
.pp-dropmenu .item .sufixo {
    font-size: 11px;
    color: var(--text-light);
    font-family: "Ubuntu", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 1rem */
}


.pp-dropmenu > .items hr,
.pp-dropmenu .items .group-solution hr {
    margin: 1rem auto;
    display: inline-block;
    width: calc(100% - 3rem);
    padding: 0 1.5rem;
    background-color: #d6d8e1;
    border: 0
}

.pp-dropmenu > .subitems > .group-solution .item i {
    font-size: 22px;
    font-weight: 300;
}


.pp-dropmenu .subitems .group-solution,
.pp-dropmenu .items .group-solution {
    margin: 0;
}

    .pp-dropmenu .subitems .group-solution .group-title {
        font-size: 0.75rem;
        color: var(--text-light);
        padding: 5px 24px;
        display: block;
        font-weight: 500;
    }


    .pp-dropmenu .items .group-solution .group-title {
        font-size: 10px;
        font-family: "Ubuntu", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 160%;
        /* 1rem */
        letter-spacing: -0.025rem;
        color: var(--text-light);
        display: block;
    }


/*.pp-dropmenu .group_0 .color-group {
    background-color: #5F5DAD;
}

.pp-dropmenu .group_1 .color-group {
    background-color: #0055A8;
}

.pp-dropmenu .group_2 .color-group {
    background-color: #16C2F3;
}

.pp-dropmenu .group_3 .color-group {
    background-color: #6E2D8E;
}

.pp-dropmenu .group_4 .color-group {
    background-color: #DC291E;
}

.pp-dropmenu .group_5 .color-group {
    background-color: #59BAC5;
}*/


/*.pp-dropmenu .subitems .group-solution.group_0 .group-title, .pp-dropmenu .items .group-solution.group_0 .group-title {
    color: #5F5DAD;
}

.pp-dropmenu .subitems .group-solution.group_1 .group-title, .pp-dropmenu .items .group-solution.group_1 .group-title {
    color: #0055A8;
}

.pp-dropmenu .subitems .group-solution.group_2 .group-title, .pp-dropmenu .items .group-solution.group_2 .group-title {
    color: #16C2F3;
}

.pp-dropmenu .subitems .group-solution.group_3 .group-title, .pp-dropmenu .items .group-solution.group_3 .group-title {
    color: #6E2D8E;
}

.pp-dropmenu .subitems .group-solution.group_4 .group-title, .pp-dropmenu .items .group-solution.group_4 .group-title {
    color: #DC291E;
}

.pp-dropmenu .subitems .group-solution.group_5 .group-title, .pp-dropmenu .items .group-solution.group_5 .group-title {
    color: #59BAC5;
}*/



.pp-dropmenu > .items {
    height: fit-content;
    overflow-y: auto;
}

    .pp-dropmenu > .items::-webkit-scrollbar {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 0.25rem;
        background-color: #eee;
        z-index: 99;
    }

    .pp-dropmenu > .items::-webkit-scrollbar-thumb {
        background: #cccccf;
        border-radius: 0.25rem;
    }

        .pp-dropmenu > .items::-webkit-scrollbar-thumb:hover {
            background: #ddd;
        }

    .pp-dropmenu > .items::-webkit-scrollbar-track {
        border-radius: 0.25rem;
    }



/* plataforma */

.container > .topbar {
    /*background-color: #173192 !important;*/
    place-content: space-between;
    display: flex;
    flex-direction: row;
    /* background-color: #173192 !important; */
    height: 44px !important;
    min-width: fit-content;
}

    .container > .topbar > .left {
        /*background-color: #173192 !important;*/
        place-content: space-between;
        display: flex;
        flex-direction: row;
        /* background-color: #173192 !important; */
        height: 44px !important;
        min-width: fit-content;
    }

    .container > .topbar > .center {
        /*background-color: #173192 !important;*/
        place-content: space-between;
        display: flex;
        flex-direction: row;
        /* background-color: #173192 !important; */
        height: 44px !important;
        min-width: fit-content;
    }

    .container > .topbar > .right {
        /*background-color: #173192 !important;*/
        place-content: space-between;
        display: flex;
        flex-direction: row;
        /* background-color: #173192 !important; */
        height: 44px !important;
        min-width: fit-content;
    }

    .container > .topbar > .left > .items {
        overflow: inherit !important;
    }




.pp-dropmenu {
    top: 44px !important;
}

.container > .toolbar {
    height: 36px !important;
    display: flex !important;
    justify-content: space-between;
    position: relative;
}

    .container > .toolbar > .left {
        display: flex !important;
        justify-content: space-between;
    }

        .container > .toolbar > .left > .items > span.item {
            white-space: nowrap;
            color: var(--text-light) !important;
            font-size: 12px !important;
            padding: 0 10px !important;
            height: 22px !important;
            font-weight: 400 !important;
        }


        .container > .toolbar > .left > .items {
            padding: 0 25px 0 12px;
            gap: 10px;
            flex: 1 1;
        }

            .container > .toolbar > .left > .items > span.item:hover {
                background-color: var(--background-light) !important;
                color: var(--text-default) !important;
            }

    .container > .toolbar > .right .element,
    .container > .toolbar > .right .clientgroup {
        color: var(--text-light) !important;
    }

    .container > .toolbar > .right {
        height: 36px !important;
        padding: 0 12px !important;
        display: flex !important;
    }


        .container > .toolbar > .right .input-toggle > .title {
            color: var(--text-light);
        }

.toolbar > .left > .btnscroll {
    border-radius: 10px;
    border: none;
    box-shadow: 0px -4px 8px 4px #ebebeb;
    padding: 4px 10px;
}

    .toolbar > .left > .btnscroll.left {
        box-shadow: 0px -4px 8px 4px #ebebeb;
        border-radius: 0px 10px 10px 0px;
        z-index: 1;
    }

.pp-dropmenu > .items > .item,
.pp-dropmenu .subitems > .item {
    font-size: 13px;
    font-weight: 400 !important;
    font-family: 'Ubuntu' !important;
}

.pp-dropmenu > .items,
.pp-dropmenu .subitems {
    background-color: var(--background-white) !important;
    color: var(--text-default) !important;
}

.pp-input>.title,
.pp-dropdown>.title,
.pp-input>.field>input,
.pp-dropdown>.field>.value {
    font-family: "Ubuntu" !important;
    color: var(--text-default) !important;
}


.MuiInputBase-input {
    font-family: 'Ubuntu' !important;
}

.pp-input>.field.required,
.pp-dropdown>.field.required {
    border-left: 3px solid var(--color-secondary-lime) !important;
}


div.pp-input > .field:focus,
div.pp-textarea > .field:focus,
div.pp-dropdown > .field:focus,
div.pp-multiselect > .field:focus {
    border: 1px solid var(--color-secondary-lime) !important;
    border-left: 3px solid var(--color-secondary-lime) !important;
}

.pp-modal > .body > .header > .title {
    font-family: "Ubuntu" !important;
    font-weight: 300 !important;
    font-size: 20px !important;
    color: var(--text-dark) !important;
}

.pp-modal > .body > .content {
    color: var(--text-default) !important;
}

spline-viewer {
    width: 100%;
    height: 100vh;
    display: block;
}


.homeflex .fix-card-content .card-frame-header-content {
    display: none !important;
}

.MuiBox-root.css-vxc1o {
    left: -30px;
}

.pp-tooltip>.body>.main>.content {

    background-color: var(--background-light) !important;
    box-shadow: 0px 0px 3px rgba(32, 47, 47, 0.36) !important;
    color: var(--text-default) !important;
}

.MuiGrid-root {
    font-family: 'Ubuntu' !important;
}




.lc-datatableinfinite.infinitetable-with-tooltip>.body>.row>.cells>.cell,
.lc-datatableinfinite.infinitetable-with-tooltip>.body>.lc-accordion.visible>.body>.row>.cells>.cell {
    overflow: visible !important;
    overflow: initial !important;
}

.pp-textarea>.field>textarea,
.MuiTypography-body1 {
    font-family: 'Ubuntu' !important;
    color: var(--text-default);
}

.MuiButtonBase-root {
    font-family: 'Ubuntu' !important;
    color: var(--text-default) !important;
}

.MuiSlider-valueLabel {
    color: var(--color-primary-purple-dark) !important;
}


.MuiSlider-track {
    height: 4px !important;
}

.MuiSlider-rail {
    height: 4px !important;
}

.MuiPopover-paper,
.css-3bmhjh-MuiPaper-root-MuiPopover-paper,
.MuiPaper-elevation8 {
    box-shadow: none !important;
    background: transparent !important;
}

.side-modal {
    position: absolute;
    top: 45px;
    right: 0;
    margin-left: auto;
    height: calc(100% - 45px);
    width: 0;
    z-index: 700;
    box-shadow: 0px 0px 18px rgba(58, 79, 135, 0.3);
    overflow-x: hidden;
    transition: width 0.1s;
}

.side-modal.blue {
    background-color: #e2e6f3;
}

.side-modal.white {
    background-color: #fafafa;
}

.side-modal.visible {
    width: 35rem;
    max-width: 100vw;
}

.side-modal.visible.expanded {
    width: 100% !important;
    max-width: 100vw;
    transition: width 0.2s ease;
}

.side-modal>.header {
    width: 100%;
    height: 80px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: var(--text-default);
}

.side-modal>.header span {
    font-weight: 300;
}

.side-modal>.body {
    width: 100%;
    height: calc(100vh - 152px);
    padding: 0 2rem 2rem 2rem;
}
.news-article {
    font-family: 'Ubuntu';
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;

    line-height: 1.6;
    border-radius: 4px;
}

.news-header,
.news-footer {
    text-align: center;
    margin-bottom: 20px;
}

.news-title {
    color: #333;
    margin-bottom: 5px;
}

.news-date {
    color: #888;
    font-size: 0.85em;
}
.news-introduction {
    color: #666;
}
.news-content {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.news-category {
    margin-bottom: 20px;
}

.news-category-title {
    color: #444;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.news-category-list {
    list-style: none;
    padding-left: 0;
}

.news-category-item {
    background-color: #f9f9f9;
    margin-bottom: 5px;
    padding: 10px;
    border-left: 3px solid #0078d4; /* A color that suits the theme */
    border-left: 3px solid #789; /* A color that suits the theme */
    border-radius: 2px;
}

.news-additional-info,
.news-objective,
.news-contact,
.news-thanks,
.news-sign-off {
    color: #666;
    margin-top: 20px;
    font-size: 0.95em;
}

.bannersMkt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    padding-right: 0 !important; /*sobrescrever o espa�o do scrollabe-v*/
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

    .bannersMkt.visible {
        opacity: 1;
        visibility: visible;
        z-index: 1001;
    }

    .bannersMkt.exiting {
        opacity: 0;
    }

@keyframes slide-down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.bannersMkt .banner {
    animation: slide-up 0.3s ease-out forwards;
    width: 100%;
    height: 45vh;
    background: linear-gradient(225deg, #173192 37.50%, #2E1956 100%);
    display: flex;
    padding: 2rem;
    align-items: center;
    align-content: center;
    column-gap: 70px;
    flex-direction: column;
    flex-shrink: 0;
}

    .bannersMkt .banner .arrow-more {
        width: 64px;
        height: 64px;
        position: relative;
        top: -32px;
    }

        .bannersMkt .banner .arrow-more img {
            width: 64px;
            height: 64px;
        }

@keyframes slide-up {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



.bannersMkt .spacer {
    height: 55vh;
    width: 100%;
}

.bannersMkt .publicidade {
    height: 45vh;
    width: 100%;
}


.bannersMkt .detalhes-solucao {
    position: relative;
    padding: 20px;
}


.bannersMkt .detalhes-solucao {
    width: 100%;
    background-color: #f1f5fb;
}

    .bannersMkt .detalhes-solucao .detalhes {
        max-width: 1920px;
        margin: 2rem auto 1rem auto;
        padding: 2rem;
        background-color: white;
        border-radius: 0.3125rem;
        box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.06);
        color: #2B304F;
        font-family: "Ubuntu", sans-serif;
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
    }

        .bannersMkt .detalhes-solucao .detalhes .box {
            padding: 2rem;
            margin: 2rem auto;
            border-radius: 0.3125rem;
            background: #F1F5FB;
            color: #173192;
            text-align: center;
            font-family: "Ubuntu", sans-serif;
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
        }

        .bannersMkt .detalhes-solucao .detalhes h2 {
            color: #2B304F;
            font-family: "Ubuntu", sans-serif;
            font-size: 1.25rem;
            font-style: normal;
            font-weight: 500;
            line-height: 160%;
            letter-spacing: -0.05rem;
            margin: 0;
        }

        .bannersMkt .detalhes-solucao .detalhes h3 {
            color: #00AEE1;
            font-family: "Ubuntu", sans-serif;
            font-size: 1rem;
            font-style: normal;
            font-weight: 500;
            line-height: 160%;
            letter-spacing: -0.04rem;
            margin: 2rem 0 1rem 0;
        }

        .bannersMkt .detalhes-solucao .detalhes ul li {
            margin-bottom: 0.7rem;
        }

.bannersMkt .banner .banner-content {
    display: flex;
    max-width: 1920px;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    flex: 1 0;
    margin: auto;
    gap: inherit;
}

    .bannersMkt .banner .banner-content .logotipo {
        display: flex;
        width: 14%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bannersMkt .banner .banner-content .textos {
        display: flex;
        width: 45%;
        align-items: flex-start;
        align-content: space-between;
        column-gap: 48px;
        flex-wrap: wrap;
    }

        .bannersMkt .banner .banner-content .textos h1 {
            color: #fff;
            margin: 0 0 0.8rem 0;
            font-family: "Ubuntu", sans-serif;
            font-size: 1.5rem;
            line-height: 160%;
            font-weight:300;
        }

        .bannersMkt .banner .banner-content .textos p {
            color: #FFF;
            font-family: "Ubuntu", sans-serif;
            font-size: 0.875rem;
            font-style: normal;
            line-height: 160%;
            margin: 0 0 1.5rem 0;
        }

    .bannersMkt .banner .banner-content .imagem-solucao {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .bannersMkt .banner .banner-content .imagem-solucao img {
            border-radius: 0.3125rem;
            width: 18.4375rem;
            height: 11.3125rem;
        }


    .bannersMkt .banner .banner-content .fechar {
        position: relative;
        top: -75px;
        color: #fff;
        font-size: 1.5rem;
        transition: opacity 0.3s ease-in-out;        
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .bannersMkt .banner .banner-content .fechar:hover {
            background: rgba(0,0,0,0.2);            
        }

    .bannersMkt .banner .banner-content .bg-light {
        background: #fff !important;
    }


.bannersMkt .detalhes-solucao .detalhes .pq-gtm {
    display: flex;
    align-items: center;
    align-content: flex-start;
    gap: 4rem 1rem;
}

    .bannersMkt .detalhes-solucao .detalhes .pq-gtm ul {
        flex: 1 1;
    }

    .bannersMkt .detalhes-solucao .detalhes .pq-gtm .tela {
        background-image: url(/static/media/frameTela.f31e90f8ae5975604adc.png);
        width: 540px;
        height: 304px;
        text-align: center;
        padding-top: 38px;
    }

        .bannersMkt .detalhes-solucao .detalhes .pq-gtm .tela img {
            width: 412px;
            height: 232px;
            border-radius: 4px 4px 0 0;
        }

.bannersMkt .detalhes-solucao .detalhes .btns-soluction-actions {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: space-between;
    grid-column-gap: 48px;
    column-gap: 48px;
    flex-wrap: wrap;
    margin-top: 2rem;
}


.bannersMkt .scroll-down {
    position: fixed;
    bottom: 52px;
    right: 48px;
    font-size: 1.1em;
    cursor: pointer;
    background: #b8ccea;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 5px;
    color: #173192;
    border: 1px solid transparent;
}

    .bannersMkt .scroll-down:hover {
        box-shadow: rgba(58, 79, 135, 0.06) 4px 4px 18px 0px;
        opacity: 0.5;
    }
/*cores dos banners das Solucoes*/
/*infraestrutura multinuvem*/
.bannersMkt.cloudmanagedservicescorporate .banner, .bannersMkt.cloudmanagedservicesenterprise .banner, .bannersMkt.cloudmanagedservicespremier .banner, .bannersMkt.finops .banner {
    background: linear-gradient(225deg, var(--color-secondary-purple-bright) 34.40%, var(--color-primary-blue) 100%);
}

/*prote��o de dados*/
.bannersMkt.backupbasic .banner, .bannersMkt.backuppremium .banner, .bannersMkt.retencao .banner, .bannersMkt.disasterrecovery .banner {
    background: linear-gradient(225deg, var(--color-primary-magenta) 34.40%, var(--color-primary-pink) 100%);
}


/*saas*/
.bannersMkt.saasbasic .banner, .bannersMkt.saaspremium .banner, .bannersMkt.saasbackup .banner, .bannersMkt.eaeas .banner, .bannersMkt.maxsoftware .banner {
    /*background: linear-gradient(225deg, #173192 37.50%, #2E1956 100%);*/
    background: linear-gradient(225deg, #30ABE2 0%, #173192 100%);
}

/*aplica��o de neg�cios*/
.bannersMkt.diime .banner {
    background: linear-gradient(225deg, #538C0D 42.01%, #426F0B 100%);
}

.bannersMkt.doone .banner {
    background: linear-gradient(225deg, #66F 0%, #4141DC 100%);
}

.bannersMkt.heyho .banner {
    background: linear-gradient(225deg, #30ABE2 0%, #173192 100%);
}

.bannersMkt.merito .banner {
    background: linear-gradient(225deg, #DD7839 0%, #C06125 100%);
}

.bannersMkt.receeba .banner {
    background: linear-gradient(225deg, #FFC000 0%, #DD7839 100%);
}

/*seguran�a*/
.bannersMkt.edr .banner, .bannersMkt.firewall .banner, .bannersMkt.identityaccess .banner, .bannersMkt.livewatch .banner, .bannersMkt.patchmanager .banner, .bannersMkt.secureendpoint .banner {
    background: linear-gradient(225deg, var(--color-primary-purple-dark)  34.40%, var(--color-primary-blue)  100%);
}

/*gest�o e governan�a*/
.bannersMkt.maxoutsource .banner {
    background: linear-gradient(225deg, var(--color-primary-blue) 0%, var(--color-primary-pink) 100%);
}

@keyframes append {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.container>.page>.notifications {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 44px;
  background-color: #fff;
  width: 600px;
  height: calc(100vh - 52px);
  right: 0;
  z-index: 1000;
  box-shadow: 0px 0px 18px rgba(58, 79, 135, 0.3);
  padding: 24px;
  animation: append 0.2s linear;
}

.container>.page>.notifications.visible {
  display: flex;
}

.container>.page>.notifications>.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container>.page>.notifications>.header>.title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 200;
  font-size: 22px;
  color: var(--text-default);
}

.container>.page>.notifications>.header>.functions {
  display: flex;
}

.container>.page>.notifications>.search {
  height: 0;
  overflow: hidden;
  transition: height 0.2s linear;
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 5px;
  padding: 0 5px;
  box-sizing: border-box;
  margin-top: 5px;
}

.container>.page>.notifications>.search input {
  border: 0;
  font-size: 16px;
  width: 100%;
  margin: 5px;
  background-color: transparent;
  font-family: "Ubuntu", sans-serif;
}

.container>.page>.notifications>.search input::placeholder {
  color: #ddd;
}

.container>.page>.notifications>.search i {
  font-size: 20px;
}

.container>.page>.notifications>.search.visible {
  height: 40px;
}

.container>.page>.notifications>.subheader {
  display: flex;
  flex-direction: row-reverse;
  margin: 16px 0;
}

.container>.page>.notifications>.body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  inline-size: 100%;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: -16px;
}

.container>.page>.notifications>.body::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

.container>.page>.notifications>.body::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 0.25rem;
}

.container>.page>.notifications>.body::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.container>.page>.notifications>.body::-webkit-scrollbar-track {
  border-radius: 0.25rem;
}

.container>.page>.notifications>.body>.message {
  padding: 16px;
  font-family: "Ubuntu", sans-serif;
  border: 2px solid #fff;
  border-radius: 8px;
  margin-right: 8px;
}

.container>.page>.notifications>.body>.message:hover {
  background-color: #f8f8f8;
}

.container>.page>.notifications>.body>.message.success {
  border: 2px solid #a5bf3e;
}

.container>.page>.notifications>.body>.message.warning {
  border: 2px solid #ffb800;
}

.container>.page>.notifications>.body>.message.danger {
  border: 2px solid #d35555;
}

.container>.page>.notifications>.body>.message.info {
  border: 2px solid #0580ce;
}

.container>.page>.notifications>.body>.message>.header {
  display: flex;
  justify-content: space-between;
}

.container>.page>.notifications>.body>.message>.header>.title {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-default);
  margin-bottom: 8px;
}

.container>.page>.notifications>.body>.message>.header>.title>.ppi {
  font-size: 16px;
  margin-right: 6px;
}

.container>.page>.notifications>.body>.message>.header>.functions>.ppi {
  cursor: pointer;
}

.container>.page>.notifications>.body>.message>.when {
  color: #8b90a3;
  font-weight: 400;
  font-size: 11px;
  margin-bottom: 16px;
}

.container>.page>.notifications>.body>.message>.content {
  color: var(--text-default);
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
}

.container>.page>.notifications>.body>.message>.content>a {
  text-decoration: none;
  color: #0580ce;
}

.container>.page>.notifications>.body>.message.read>.header>.title {
  color: #8b90a3;
}

.container>.page>.notifications>.body>.message.read>.content {
  color: #8b90a3;
}

.container>.page>.notifications>.body>.allread {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.container>.page>.notifications>.body>.allread>.ppi {
  font-size: 30px;
  color: #0580ce;
  margin-bottom: 10px;
}

.container>.page>.notifications>.body>.allread>span {
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-default);
}

.load-more-link {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
}

.load-more-link:hover {
  text-decoration: none;
  color: #0056b3;
}

.message .content {
  max-width: 100%;
  overflow: hidden;      /* evita scroll */
  white-space: normal;   /* permite quebra de linha */
}

.message .content table {
  width: 100%;           /* força ocupar só o container */
  max-width: 100%;
  table-layout: fixed;   /* colunas se ajustam ao espaço */
}

.message .content td,
.message .content th {
  word-break: break-word; /* quebra conteúdo longo dentro das células */
  white-space: normal;
}

.message .content img {
  max-width: 100%;       /* imagem nunca passa do container */
  height: auto;
  display: block;
}
.container .usermenu {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 44px;
  right: 0;
  font-family: "Ubuntu", sans-serif;
  z-index: 4990;
  color: var(--text-default);
}
.container .usermenu .primary {
  z-index: 5001;
}
.container .usermenu .secondary {
  z-index: 5000;
  margin-right: -1px;
}
.container .usermenu .secondary > .searchform {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.container .usermenu .secondary > .searchform > i {
  font-size: 22px;
}
.container .usermenu .secondary > .searchform > input {
  padding: 4px;
  border: none;
  background-color: #fff;
  flex-grow: 1;
  font-family: "Ubuntu", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.container .usermenu .primary,
.container .usermenu .secondary {
  width: 247px;
  border: 1px solid #cccccf;
  padding: 8px 0;
  background-color: #fff;
  box-shadow: -4px 4px 18px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  overflow-x: hidden;
  height: fit-content;
  max-height: calc(100vh - 52px);
}
.container .usermenu .primary > .name,
.container .usermenu .secondary > .name {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 24px;
}
.container .usermenu .primary > .company,
.container .usermenu .secondary > .company {
  font-size: 12px;
  padding: 8px 24px;
}
.container .usermenu .primary > .items,
.container .usermenu .secondary > .items {
  overflow-y: auto;
  max-height: 50vh;
  margin-right: 8px;
}
.container .usermenu .primary > .items::-webkit-scrollbar,
.container .usermenu .secondary > .items::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #eee;
}
.container .usermenu .primary > .items::-webkit-scrollbar-thumb,
.container .usermenu .secondary > .items::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 4px;
}
.container .usermenu .primary > .items::-webkit-scrollbar-thumb:hover,
.container .usermenu .secondary > .items::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
.container .usermenu .primary > .items::-webkit-scrollbar-track,
.container .usermenu .secondary > .items::-webkit-scrollbar-track {
  border-radius: 4px;
}
.container .usermenu .primary > .item,
.container .usermenu .primary .items .item,
.container .usermenu .secondary > .item,
.container .usermenu .secondary .items .item {
  font-size: 12px;
  height: 38px;
  width: 100%;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;  
  font-weight: 500;
}
.container .usermenu .primary > .item:hover,
.container .usermenu .primary .items .item:hover,
.container .usermenu .secondary > .item:hover,
.container .usermenu .secondary .items .item:hover {
  background-color: #f5f5f5;
}
.container .usermenu .primary > .item i,
.container .usermenu .primary .items .item i,
.container .usermenu .secondary > .item i,
.container .usermenu .secondary .items .item i {
  font-size: 12px;
  font-weight: bolder;
  color:var(--text-light);
  padding-right:4px;
}
.container .usermenu .primary > .item.version,
.container .usermenu .primary .items .item.version,
.container .usermenu .secondary > .item.version,
.container .usermenu .secondary .items .item.version {
  color: #0580ce;
}
.container .usermenu .primary > hr,
.container .usermenu .primary .items hr,
.container .usermenu .secondary > hr,
.container .usermenu .secondary .items hr {
  margin: 8px 24px;
}
.topbar > .left > .topbar-left {
    display: flex;
    align-items: center;
    gap:20px;
}
.topbar > .left > .topbar-left .gtm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    min-width: 52px;
    margin-top: 8px;
    border-radius: 10px 10px 0 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    color: var(--text-dark);
    position: relative;
    background-color: var(--background-white);
}


/* .topbar > .left .gtm .title {
    font-size: 14px;
} */

.topbar > .left .gtm-indicator::after,
.topbar > .left .gtm-indicator::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
}

.topbar > .left .gtm-indicator::after {
    left: -20px;
    box-shadow: 6px 7px #fff;
}

.topbar > .left .gtm-indicator::before {
    right: -20px;
    box-shadow: -13px 7px #fff;
}

.btnReturnMenu {
    margin-left: 10px;
}

.menu-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.menu-item {
    text-align: center;
    color: white;
    font-family: "Ubuntu", sans-serif;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    transition: color 0.3s;
    word-break: keep-all;
    
}

.menu-item.selected {
    color: #2c1050;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    min-width: 52px;
    margin-top: 8px;
    border-radius: 10px 10px 0 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
}

.gtm-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    margin-top: 8px;
    border-radius: 10px 10px 0 0;
    background-color: white;
    color: var(--text-dark);
    z-index: 0;
    transition: transform 0.3s ease, width 0.3s ease;
}

/* Estilos para HeaderAssetStatus no TopBar */
.topbar .right .header-asset-status {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: default;
}

.topbar .right .header-asset-status span {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.topbar .right .header-asset-status.ready span {
    color: #28a745;
    animation: none;
}

.topbar .right .header-asset-status.downloading span {
    color: #007bff;
    animation: pulse-blue 2s infinite;
}

.topbar .right .header-asset-status.partial span {
    color: #ffc107;
    animation: pulse-yellow 3s infinite;
}

@keyframes pulse-blue {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulse-yellow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@media screen and (max-width: 1060px) {
    .topbar > .left > .topbar-left > .menu-container {
        display: none;
    }
}

body .container > .toolbar > .left > .items > .item.active {
    background-color: var(--color-primary-purple-dark) !important;
    color: var(--text-white) !important;
    cursor: pointer;
}

body .container > .toolbar > .left > .items > .item.subline_active {
    border-bottom: 2px solid var(--button-disabled);
    border-radius: 0px !important;
}
.container>.toolbar>.left>.items.sublime>span.item:hover {
    border-bottom: 2px solid var(--button-disabled);
    background-color: #fff !important;
    border-radius: 0px !important;
    color: var(--text-light) !important;
}

.container > .toolbar > .left > .items > span.item.active:hover {
    color: #fff !important;
    background: var(--color-primary-purple-dark) !important;
}

.iconvaluecontent {
    min-width: 100%;
    display: flex;
    flex-direction: row;
}

.truncate-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow: hidden;
    max-width: 100%;
}

.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.iconvaluecontent .description {
    color: var(--text-light);
    text-align: right;
    font-family: "Ubuntu", sans-serif;
    font-size: 2vh;
    font-style: normal;
    font-weight: 400;    
}

    .iconvaluecontent .description.home {
        font-size: 1.7vh;
    }

.iconvaluecontent.grey {
    min-height: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.small-card .iconvaluecontent.grey {
    gap: 4px;
}

.iconvaluecontent.grey .data {
    color: var(--text-default);
}

.small-card .iconvaluecontent .icone {
    position: relative;
    top: -45%;
    width: 2.5vh;
    height: 2.5vh;
}

    .small-card .iconvaluecontent .icone i {
        font-size: 2.5vh !important;
    }

.small-card .iconvaluecontent .data div {
    font-size: 1.1vw !important;
}
.small-card .iconvaluecontent.bigNumber .data div {
    font-size: .8vw !important;
}

.iconvaluecontent .data {
    display: flex;
    justify-content: end;
}

    .iconvaluecontent .data .right {
        text-align: right;
    }

.iconvaluecontent.consumo .data div {
    color: var(--text-default) !important;
    font-family: "Ubuntu", sans-serif;
    font-size: 4.5vh !important;
    font-style: normal;
    font-weight: 400;
    text-align: left;
}

.iconvaluecontent.consumo .data {
    justify-content: start;
}


.iconvaluecontent.office-services {
    justify-content: space-evenly !important;
    gap:6px;
}

.iconvaluecontent.grey.office-services {
    justify-content: start !important;    
}

.small-description {
    font-size: 1.7vh;
    color: var(--text-light);
    text-align: right;
    font-family: "Ubuntu", sans-serif;    
    font-style: normal;
    font-weight: 400;    
}

.balonCard {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: #fff;
    rotate: 45deg; 
    left: 50%; 
    bottom: -5%;
    transform: translateX(-50%);
}
.balonCard.withHeaderButton{
    bottom: 3%;
}

.card-active:has(.balonCard) {
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, .25) !important;
}

@media (min-width: 1600px) {
    .balonCard{
        bottom: -3%;
    }
    .balonCard.withHeaderButton{
        bottom: 1%;
    }
    
}
/* PPMultiSelect Component Styles */

/* Individual tag styling */
.multiselect-wrapper .tag-item {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #2b304f;
  font-family: "Ubuntu", sans-serif;
  pointer-events: all;
  height: 18px;
  flex-shrink: 0;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #ddd;
  border-radius: 2px;
  padding: 6px;
  margin-bottom: 2px; /* Add small margin for better spacing when wrapping */
}

/* Tag remove button */
.multiselect-wrapper .tag-remove {
  cursor: pointer;
  color: #666;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  margin-left: 2px;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ddd;
}

.multiselect-wrapper .tag-remove:hover {
  color: #333;
  background-color: #ccc;
}

/* Special styling for "Selecionar tudo" tag */
.multiselect-wrapper .select-all-tag {
  font-weight: 500;
  color: #2b304f;
}

/* Custom multiselect container styles */
.multiselect-wrapper .custom-multiselect-container {
  position: relative;
  width: 100%;
}

.multiselect-wrapper .custom-multiselect-input {
  display: flex;
  align-items: flex-start;
  min-height: 28px;
  max-height: 120px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  font-family: "Ubuntu";
  font-weight: 400;
  font-size: 12px;
  color: #2b304f;
  position: relative;
  overflow: hidden;
  padding: 4px 40px 4px 12px;
  box-sizing: border-box;
}

.multiselect-wrapper .custom-multiselect-input .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: flex-start;
  align-content: flex-start;
  width: 95%;
  max-height: 80px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}

.multiselect-wrapper .custom-multiselect-input .placeholder-text {
  color: #aaa;
  font-size: 12px;
  font-family: "Ubuntu", sans-serif;
  line-height: 20px;
}

.multiselect-wrapper .custom-multiselect-input .dropdown-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 12px;
  color: #666;
  /* z-index: 10; */
  background: white;
  padding: 4px;
  pointer-events: all;
}

/* Clear input button (×) */
.multiselect-wrapper .clear-input-button {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #999;
  z-index: 10;
  background: white;
  padding: 2px 4px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  pointer-events: all;
}

.multiselect-wrapper .clear-input-button:hover {
  color: #666;
  background-color: #f0f0f0;
}

/* Custom scrollbar for tags container */
.multiselect-wrapper .custom-multiselect-input .tags-container::-webkit-scrollbar {
  width: 6px;
}

.multiselect-wrapper .custom-multiselect-input .tags-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.multiselect-wrapper .custom-multiselect-input .tags-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.multiselect-wrapper .custom-multiselect-input .tags-container::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

/* Firefox scrollbar */
.multiselect-wrapper .custom-multiselect-input .tags-container {
  scrollbar-width: thin;
  scrollbar-color: #ccc #f1f1f1;
}

/* Dropdown options styling */
.multiselect-wrapper .custom-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Dropdown opening upwards */
.multiselect-wrapper .custom-dropdown-options.open-upwards {
  top: auto;
  bottom: 100%;
  border-top: 1px solid #ccc;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

/* Search input container */
.multiselect-wrapper .dropdown-search-container {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #eee;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}

.multiselect-wrapper .dropdown-search-input {
  flex: 1 1;
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 12px;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  border: none;
  background: white;
}

/* No results message */
.multiselect-wrapper .dropdown-no-results {
  padding: 12px;
  text-align: center;
  color: #666;
  font-size: 12px;
  font-style: italic;
  border-bottom: 1px solid #f0f0f0;
}

.multiselect-wrapper .dropdown-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 12px;
  font-family: "Ubuntu", sans-serif;
  color: #2b304f;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease;
  -webkit-user-select: none;
          user-select: none; /* Prevent text selection when clicking */
}

.multiselect-wrapper .dropdown-option:hover {
  background-color: #f5f5f5;
}

.multiselect-wrapper .dropdown-option:active {
  background-color: #e8e8e8;
}

.multiselect-wrapper .dropdown-option.select-all-option {
  font-weight: 500;
  border-bottom: 2px solid #ddd;
  background-color: #f9f9f9;
}

.multiselect-wrapper .dropdown-option.select-all-option:hover {
  background-color: #f0f0f0;
}

.multiselect-wrapper .dropdown-option input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #007bff;
  accent-color: var(--color-primary-blue, #007bff);
  pointer-events: none; /* Disable direct checkbox clicks - handled by parent */
  cursor: pointer;
}

.multiselect-wrapper .dropdown-option span {
  flex: 1 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  pointer-events: none; /* Let parent handle the click */
}

/* Custom scrollbar for dropdown options */
.multiselect-wrapper .custom-dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.multiselect-wrapper .custom-dropdown-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.multiselect-wrapper .custom-dropdown-options::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.multiselect-wrapper .custom-dropdown-options::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

/* Disabled state */
.multiselect-wrapper.disabled .custom-multiselect-input {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.multiselect-wrapper.disabled .dropdown-option {
  cursor: not-allowed;
  opacity: 0.6;
}

.multiselect-wrapper.disabled .clear-input-button {
  cursor: not-allowed;
  opacity: 0.6;
}

.doughnut-chart {
  width: auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 0.6rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 16px 16px 16px rgba(58, 79, 135, 0.06);
}

.doughnut-chart.no-shadown {
  box-shadow: none !important;
  background-color: transparent !important;
}

.doughnut-chart > .title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #8b90a3;
  margin-bottom: 0.6rem;
}
.doughnut-chart > .chart {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.doughnut-chart > .chart > .spacing-canvas-small {
  width: calc(12.5% + 0.5rem) !important;
}
.doughnut-chart > .chart > .spacing-canvas-medium {
  width: calc(26.3157894737% + 3rem) !important;
}
.doughnut-chart > .chart > .spacing-canvas-large {
  width: calc(25% + 5rem) !important;
}
.doughnut-chart > .chart > .spacing-legend-small {
  width: calc(12.5% + 0.5rem) !important;
  padding-left: 14px;
}
.doughnut-chart > .chart > .spacing-legend-medium {
  width: calc(26.3157894737% + 3rem) !important;
  padding-left: 25px;
}
.doughnut-chart > .chart > .spacing-legend-large {
  width: calc(25% + 5rem) !important;
  padding-left: 90px;
}
.doughnut-chart > .chart > .canvas {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-width: 160px;
  position: relative;
}
.doughnut-chart > .chart > .canvas > .number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-default);
}
.doughnut-chart > .chart > .canvas > .body {
  width: 7rem;
  height: 7rem;
}
.doughnut-chart > .chart > .legend {
  width: calc(50% - 5px);
  min-width: 205px;
  display: flex;
  align-items: center;
}
.doughnut-chart > .chart > .legend > .body > .item {
  display: flex;
  align-items: center;
}
.doughnut-chart > .chart > .legend > .body > .item > .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  background: #5969cd;
  border-radius: 4px;
  margin: 0.1rem 0;
  width: 2.5rem;
  height: 1.1rem;
  text-align: center;
  color: #ffffff;
}
.doughnut-chart > .chart > .legend > .body > .item > .name {
  font-size: 0.75rem;
  line-height: 160%;
  color: var(--text-default);
  height: 1.3rem;
  padding: 0.25rem;
  display: inline-block;
  text-overflow: ellipsis;
  width: max-content;
}
.iconvaluecardrow {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.6rem;
  background-color: white;
  /* box-shadow: 16px 16px 16px rgba(58, 79, 135, 0.06); */
  border-radius: 1rem;
  justify-content: space-evenly;
}
.iconvaluecardrow.link:hover {
  background-color: #ddd;
}
.iconvaluecardrow > .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.iconvaluecardrow > .header > .title {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #8b90a3;
}
.iconvaluecardrow > .body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.iconvaluecardrow > .body > .icon {
  width: 55px;
  font-size: 50px;
}
.iconvaluecardrow > .body > .right {
  min-height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  width: 100%;
  text-align: right;
}
.iconvaluecardrow > .body > .right > .data {
  font-weight: 600;
  font-size: 30px;
}
.iconvaluecardrow > .body > .right > .data > .unity {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
}
.iconvaluecardrow > .body > .right > .data > .unity > .label {
  font-size: 1.5rem;
}
.iconvaluecardrow > .body > .right > .data > .unity > .lc-tooltip {
  margin-left: 4px;
  color: #0580ce;
}
.iconvaluecardrow > .body > .right > .description {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-default);
}
/* LCFlexItem.css */
.LCFlexItem__tooltip {
    background-color: #E2E6F3;
    color: #3E3F43;
    font-size: 11px;
}

.LCFlexItem__arrow {
    color: #E2E6F3;
}

.progress-bar-container {
    width: 100%;
    opacity: 0.9;
    padding: 0px 8px;
}
.progress-bar {
    height: 18px;
    background: linear-gradient(90deg, #E64646 0%, #F3C944 50%, #75f945 100%);
    text-align: end;
    padding-right: 5px;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    font-size: 12px;
    width: 100%;
    transition: width 0.3s ease-in-out;
    opacity: 0.9;
}

.slider-thumb {
    width: 10px;
    height: 30px;
    background: #6c63ff;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    margin-top: -33px;
    border: 1.5px solid #fff;
    background-color: #6200ea; 
}

.percentage {
    width: 35%;
    margin-top: 3px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: #6c63ff;
    position: relative;

}

.percentage.normal {
    font-size: 14px;
}
.percentage.small {
    font-size: 12px;
}

.percentage.noLabel {
    width: 10%;
}

.progress-bar:hover {
    opacity: 1;
}
.progress-bar-container:hover {
    opacity: 1;
}

.dividedInfo {
    min-height: 50% !important;
}

.securityIconValue{
    margin-top:  -30px;
}
.progress-bar-container {
    padding: 0px 10px;
}

.percentage > .percentLabel {
    width: 100%;
    font-size: 10px;
    text-align: center;
    color: #464a65;
}
.gauge-chart {
  min-height: 170px;
  width: auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 0.8rem;
  border-radius: 1rem;
  position: relative;
  /* box-shadow: 16px 16px 16px rgba(58, 79, 135, 0.06) */
}
.gauge-chart.link:hover {
  background-color: #ddd;
}
.gauge-chart > .header {
  display: flex;
  justify-content: space-between;
}
.gauge-chart > .header > .title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 0.9rem;
  color: #8b90a3;
}
.gauge-chart > .chart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  width: calc(100% - 20px);
  pointer-events: none;
}
.gauge-chart > .chart > .body {
  position: relative;
  display: flex;
  justify-content: center;
  width: 130px;
  height: 130px;
  align-self: center;
}
.gauge-chart > .chart > .body > .lci {
  position: absolute;
  top: 50px;
  font-size: 90px;
  color: #777;
  transition: all 0.5s;
}
.gauge-chart > .chart > .number {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-default);
  text-align: center;
  margin-top: -20px;
}
.gauge-chart > .chart > .label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-default);
  text-align: center;
}


/*@media screen and (min-width: 1400px) {
  .gaugeChart {
  max-height: 180px  !important;
}   
}

@media screen and (min-width: 1700px) {
  .gaugeChart {
  max-height: 280px !important;
}   
}
@media screen and (max-height: 950px) {
  .gaugeChart{
  max-height: 150px !important;
}   
  .gaugeChart.focused{
  max-height: 300px !important;
}   
}*/
.bigIcons {
  display: inline-flex;
  flex-wrap: wrap;
}

.bigIconContent {
  width: calc(25% - 1.5rem);
  height: 160px;
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  background: #ffffff;
  box-shadow: 4px 4px 18px rgba(58, 79, 135, 0.06);
  border-radius: 1rem;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.bigIconContent .title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 160%;
  color: #8b90a3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bigIconContent .tooltip {
  width: 15%;
  color: #0580ce;
  display: flex;
  -webkit-box-pack: end;
  flex-direction: row;
  justify-content: flex-end;
}

.bigIconContent .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
}
.bigIconContent .icon i {
  font-size: 7rem;
}
.sidebar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 11vh;
    padding:  0px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    background-color: #7033b6;
    flex: 1 1;

}

.sidebar-item:hover {
    background-color: #542688;
}

.sidebar-icon {
    width: 25%;
    height: 30%;
}

.sidebar-text {
    color: white;
    font-size: 10px;
    margin-top: .5rem;
    text-align: center;
}

.sidebar-text.notIcon {
    margin-top: 0;
}

.sidebar-item-clicked {
    background-color: #542688;
}
.iconvaluecardcol {
  height: 100%;
  width: auto;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: white;
  /* box-shadow: 4px 4px 18px rgba(58, 79, 135, 0.06); */
  border-radius: 1rem;
}
.iconvaluecardcol.link:hover {
  background-color: #ddd;
}
.iconvaluecardcol > .title {
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #8b90a3;
}
.iconvaluecardcol > .body {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.iconvaluecardcol > .body > .icon {
  font-size: 70px;
  cursor: default;
}
.iconvaluecardcol > .body > .value {
  font-weight: 600;
  font-size: 35px;
}
.iconvaluecardcol > .body > .value > .unity {
  font-weight: 600;
  font-size: 1.5rem;
}
.iconvaluecardcol > .body > .info > .label {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-default);
}
.iconvaluecardcol > .body > .info > .lc-tooltip {
  margin-left: 4px;
  color: #000;
}
