﻿
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
    --color-primary: #25719d;
    --color-primary-05: #e6f2f9;
    --color-primary-10: #cce5f3;
    --color-primary-15: #b3d7ed;
    --color-primary-20: #99cae7;
    --color-primary-30: #66b0db;
    --color-primary-40: #3395cf;
    --color-primary-50: #007bc3;
    --color-primary-60: #00629c;
    --color-primary-70: #004a75;
    --color-primary-80: #00314e;
    --color-primary-90: #001927;
    --color-primary-font: #00314e;
    /*--color-primary-font-dark: #112c22;
    --color-primary-bkg: rgba(59, 184, 216, 0.07);*/
    --color-primary-bkg2: #cce5f3;
    --color-secondary: #444444;
    --color-secondary-10: #f0f0f0;
    --color-secondary-20: #e6e6e6;
    --color-secondary-30: #dedede;
    --color-secondary-40: #d4d4d4;
    --color-secondary-50: #c9c9c9;
    --color-secondary-60: #b3b3b3;
    --color-secondary-70: #b8b8b8;
    --color-secondary-80: #9e9e9e;
    --color-secondary-90: #878787;
    --color-secondary-100: #757575;
    --color-secondary-110: #636363;
    /*--color-secondary-font: #42505c;*/
    /*--color-warning-10: #fffaeb;
    --color-warning-15: #fff7db;*/
    --color-warning-20: #fff3cd;
    /*
    --color-warning-30: #ffeeb8;
    --color-warning-40: #ffe89e;*/
    /*--color-warning-50: #FCE043;*/
    /*--color-warning-60: #cab336;
    --color-warning-70: #978628;
    --color-warning-80: #d6bb61;
    --color-warning-font: #523e02;
    --color-warning-font-dark: #b09336;*/
    --color-success: #46cd72;
    --color-success-10: #daf5e3;
    --color-success-15: #c8f0d5;
    --color-success-20: #b5ebc7;
    --color-success-30: #90e1aa;
    --color-success-40: #6bd78e;
    --color-success-50: #46cd72;
    --color-success-60: #38a45b;
    --color-success-70: #2a7b44;
    --color-success-80: #1c522e;
    --color-success-90: #0e2917;
    /*--color-success-font-light: #5b6f4e;*/
    --color-success-font: #2a7b44;
    --color-danger-10: #ffece6;
    --color-danger-20: #ffdacc;
    --color-danger-30: #ffb499;
    --color-danger-40: #ffa280;
    --color-danger-50: #FF7F50;
    --color-danger-60: #f46f3e;
    --color-danger-70: #d75628;
    --color-danger-80: #ac4520;
    --color-danger-90: #a13812;
    --color-danger-font-light: #db4914;
    --color-danger-font: #ad3a10;
    --color-light-font: #9e9e9c;
    --color-light-font-10: #e6e6e6;
    --color-light-font-20: #d6d6d6;
    --color-light-font-30: #c7c7c7;
    --color-light-font-50: #adadad;
    --color-light-font-70: #969696;
    --color-light-font-90: #7C7C7C;
    --color-light-bkg: #f6f9ff;
    --color-light-border: #d2dae4;
    --color-body-font: #444444;
    --color-body-font-dark: #1c1c1c;
    --color-black-light: #c7c7c7; /*#b3b3b3;*/
    --bs-body-bg: #e8e8e8; /*#ecf2f4;*/ /*#DFDFDF*/ /*#e6e6e6*/ /*#e8e8e8*/
    --bs-body-bg-light: #ecf2f4;
    --bs-body-bg-dark: #e0e0e0; /*#e2ebee*/ /*#d6d6d6*/ /*#DFDFDF*/ /*e0e0e0*/
    --font-awesome: "Font Awesome 6 Free";
}

html, body, #form1, #preview-frame {
    height: 100%;
}

body {
    font-family: "Open Sans", sans-serif;
    opacity: 1;
    color: var(--color-body-font);
}

body, .bg-body {
    background-color: var(--bs-body-bg) !important;
}

    body.bg-login .container-fluid {
        padding: 0;
    }

#preview-frame {
    /* sticky footer */
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1 0 auto;
    padding-top: 20px;
    padding-bottom: 10px;
}

.footer {
    /* Prevent these items shrink to smaller than their content's default minimum size. */
    flex-shrink: 0;
    padding: 8px 10px 5px 5px;
    color: #828282;
    border-top: 1px solid #dddddd;
    background-color: #f7f7f7;
}

    .footer .copyright {
        font-size: 0.6em;
    }

/*a:not(.link-none) {
    color: #4154f1;
}*/

a:hover {
    color: #717ff5;
    text-decoration: none;
}

.u-space-05 {
    text-underline-offset: 2px;
}

.u-space {
    text-underline-offset: 4px;
}

.u-space-2 {
    text-underline-offset: 6px;
}

a.link-none {
    color: inherit;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Containers
--------------------------------------------------------------*/

.content-data {
    padding: 15px 15px;
    background-color: white;
    border: 1px solid var(--color-light-border);
    border-radius: 10px;
}

.content-fade-end {
    white-space: nowrap;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 70%, rgba(0,0,0,0));
}

.content-cut-end {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 1px;
}

@media (max-width: 1199px) {
    .container-default {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

    .pagetitle h1 {
        font-size: 24px;
        margin-bottom: 0;
        font-weight: 600;
        color: #012970;
    }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #6776f4;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

    .dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
        text-align: center;
        font-size: 15px;
        padding: 10px 25px;
    }

        .dropdown-menu .dropdown-footer a {
            color: #444444;
            text-decoration: underline;
        }

            .dropdown-menu .dropdown-footer a:hover {
                text-decoration: none;
            }

    .dropdown-menu .dropdown-divider {
        color: #a5c5fe;
        margin: 0;
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .dropdown-menu .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .dropdown-menu .dropdown-item:hover {
            background-color: #f6f9ff;
        }

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}
/* Backgrounds */
.bg-body-light {
    background-color: var(--bs-body-bg-light) !important;
}

.bg-body-dark {
    background-color: var(--bs-body-bg-dark) !important;
}

.bg-login {
    background-color: var(--color-primary-15) !important;
    /*background-image: url('../img/640.png');
    background-repeat: no-repeat;
    background-size: cover;*/
    /*background: linear-gradient(to bottom, var(--color-primary-10) 0%,var(--color-primary-40) 100%);*/
    /*background: repeating-linear-gradient( to bottom, var(--color-primary-10) 0px, var(--color-primary-10) 1px, var(--color-primary-20) 1px, var(--color-primary-20) 2px );*/
}

.bg-login-bar {
    /*background-color: var(--color-primary-30) !important;*/
    background: repeating-linear-gradient( to bottom, var(--color-primary-30) 0px, var(--color-primary-30) 1px, var(--color-primary-40) 1px, var(--color-primary-40) 2px );
}

.bg-inherit {
    background-color: inherit !important;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

.bg-dark-90 {
    background-color: #4f5963;
    border-color: #4f5963;
}

/* Card */
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(1, 41, 112, 0.1);
    /*box-shadow: 2px 2px 2px rgba(33, 84, 66, 0.05);*/
}
/*.card-header {
    --bs-card-cap-bg: #f7f7f7;
}*/
.card-header, .card-footer {
    border-color: #ebeef4;
    color: var(--color-primary-font);
    padding: 15px 15px 0 15px;
}

    .card-header .card-icon {
        position: absolute;
        bottom: 0;
        margin-bottom: -18px;
        margin-left: -10px;
        /*estilo*/
        font-size: 1.6em;
        width: 1.6em;
        text-align: center;
        line-height: 1.6em;
        color: var(--color-primary-80);
        background: var(--color-primary-20);
        border-radius: 0.8em; /* or 50% width & line-height */
    }
        /*.card-header .card-icon:nth-child(2) {
            margin-left: 40px;
        }*/

        .card-header .card-icon * {
            font-size: 0.8em;
        }

        .card-header .card-icon.danger {
            color: var(--color-danger-80);
            background: var(--color-danger-20);
        }

        .card-header .card-icon.off {
            color: var(--color-light-font-90);
            background: var(--color-light-border);
        }

    .card-header.corner-cut .card-title {
        margin-left: 1.5rem; /*equivalente a ms-2*/
    }

    .card-header.corner-cut::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        /*border-top-left-radius: 5px;*/
        border-top: 45px solid var(--bs-body-bg-dark);
        border-right: 45px solid transparent; /*#f7f7f7;*/
        width: 0;
    }

    .card-header.corner-cut.corner-small::before {
        border-top-width: 30px;
        border-right-width: 30px;
    }

    .card-header.card-header-icon {
        position: relative;
        margin-bottom: 5px;
    }

        .card-header.card-header-icon .card-title {
            margin-left: 2.5rem; /*equivalente a ms-2*/
        }

    .card-header .border-primary {
        border-color: var(--color-primary-60) !important;
    }

    .card-header.card-primary {
        color: var(--color-primary-font-dark);
        background-color: var(--color-primary-40) !important;
    }

        .card-header.card-primary .border-primary {
            border-color: var(--color-primary-60) !important;
        }

.c /*ard-header.card-primary.corner-cut::before {
            border-right-color: transparent;
        }*/
.card-header.card-danger {
    background-color: var(--color-danger-10) !important;
}

.card-header.card-danger .card-title {
    color: var(--color-danger-font) !important;
}

.card-header.card-danger {
    background-color: var(--color-danger-40) !important;
}

    .card-header.card-danger .card-title {
        color: var(--color-danger-font) !important;
    }

.card-title {
    padding: 10px 0 0 0;
}

/*.card-title span {
        color: #899bbd;
        font-size: 14px;
        font-weight: 400;
    }*/

.card-sm .card-title {
    padding: 10px 0 5px 0;
    font-size: inherit;
}

.card-body {
    padding: 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

    .btn-close:focus {
        outline: 0;
        box-shadow: none;
    }

.border-primary {
    border-color: var(--color-primary-font);
}

    .border-primary.border-light {
        border-color: var(--color-primary-30) !important;
    }
/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: -2px;
        border: none;
        color: #2c384e;
    }

        .nav-tabs-bordered .nav-link:hover, .nav-tabs-bordered .nav-link:focus {
            color: #4154f1;
        }

        .nav-tabs-bordered .nav-link.active {
            background-color: #fff;
            color: #4154f1;
            border-bottom: 2px solid #4154f1;
        }
/*--------------------------------------------------------------
# link de topo - acessibilidade
--------------------------------------------------------------*/
.accessibility {
    position: absolute;
    left: -99999px;
    height: 10px;
    width: 10px;
}

#skip {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin-left: 0;
    text-align: center;
    list-style: outside none;
}

    #skip a {
        position: absolute;
        left: -99999px;
        top: 30px;
    }

        #skip a:focus, #skip a:active {
            position: relative;
            left: 0;
            z-index: 9999;
            width: 75%;
            height: auto;
            margin: 0 auto;
            padding: 20px 25px;
            text-align: center;
            text-decoration: none;
            outline: 0;
            letter-spacing: -2px !important;
            font: bold 30px Arial;
            background: #D9E3EA;
            color: var(--color-primary-font);
            border: 1px solid var(--color-primary);
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    position: relative;
    z-index: 1;
}

.logo-glass {
    position: absolute;
    content: '';
    width: 100%;
    /*height: 30%;
    margin-bottom: -15px;*/
    height: 130%;
    margin-bottom: -6px;
    /* glass effect */
    background: rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    /* rotation*/
    /*-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);*/
    /**/
    overflow: hidden;
    z-index: -1;
}

.logo-lider {
    width: auto;
    height: 65px;
}

.logo-iapmei {
    width: auto;
    height: 30px;
}

.logo-tp {
    width: auto;
    height: 30px;
}

.logo-bpfomento {
    width: auto;
    height: 22px;
}

/* SM */
@media (min-width: 768px) {
    .logo-glass {
        margin-bottom: -11px;
    }
}

@media (max-width: 768px) {
    .logo-lider {
        width: auto;
        height: 50px;
    }

    .logo-iapmei {
        height: 25px;
    }

    .logo-tp {
        height: 25px;
    }

    .logo-bpfomento {
        height: 18px;
    }
}

.profile-info {
    position: relative;
    box-shadow: 0px 2px 2px rgba(0, 74, 117, 0.3);
    /*    border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;*/
    /*background: rgb(119,202,170);
    background: linear-gradient(90deg, rgba(119,202,170,1) 0%, rgba(215,239,230,1) 75%);*/
    /*background: url("../img/bkg2.png") no-repeat;*/
    background-color: var(--color-primary-10);
    background-size: cover;
    /* ondulado giro - não apagar
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='24'%3E%3Cdefs%3E%3Cpattern id='bg' patternUnits='userSpaceOnUse' width='130' height='24'%3E%3Cpath fill='%23A5EF8B' d='M0,12c32.5,0,32.5,12,65,12s32.5-12,65-12V0C97.5,0,92.9,12,65,12C32.5,12,20.7,0,0,0'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%' height='100%' fill='url(%23bg)'/%3E%3C/svg%3E");
    background-size: 100% 24px;
    background-repeat: no-repeat;*/

    color: var(--color-primary-font);
    /*z-index: -2;*/
}

    .profile-info .user-icon {
        color: var(--color-primary-font);
    }

.header {
    transition: all 0.5s;
    z-index: 997;
}

/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/
.table-primary {
    --bs-table-bg: var(--color-primary-10);
    --bs-table-color: var(--color-primary-font);
}

table .fa-solid {
    margin-right: .25rem !important;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
    width: 220px;
    /* z-index: 996;*/
    color: var(--color-primary-font-dark);
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .sidebar-nav li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sidebar-nav .nav-item {
        margin-bottom: 5px;
    }

    .sidebar-nav .nav-link {
        display: flex;
        align-items: start;
        padding: 10px 0px 10px 12px;
        border-radius: 4px;
    }

        .sidebar-nav .nav-link:not(.secondary) {
            background: var(--color-primary-30);
        }

        /*.sidebar-nav .nav-link.nav-nohover {
            color: var(--color-body-font);*/
        /*background: var(--color-secondary-20);*/
        /*border: solid 1px var(--color-secondary-40);
        }*/

        .sidebar-nav .nav-link.active {
            position: relative;
            background: var(--color-primary-80);
            color: white;
            /*border-left: solid 4px var(--color-primary-60);*/
            /*border-bottom: solid 3px var(--color-primary-60);*/
        }

            .sidebar-nav .nav-link.active:after {
                content: '';
                position: absolute;
                width: 0;
                height: 0;
                border-top: 4px solid transparent;
                border-bottom: 4px solid transparent;
                border-left: 4px solid var(--color-primary-60);
                top: 40%;
                left: 0;
            }
        /*.sidebar-nav .nav-link.active::before {
                content: "\f219";
                margin-right: 4px;
                font-family: var(--font-awesome);
                font-weight: 900;*/ /* muda a font para fa-solid */
        /*font-size: 0.8em;
            }*/
        .nav-link:active {
            background: var(--color-primary-80);
            color: white;
        }
        /*.sidebar-nav .nav-link.active .title {
            text-decoration: underline;
            text-underline-offset: 5px;
        }*/
        /*.sidebar-nav .nav-link.active .title::before {
            content: "\f065";
            font-family: var(--font-awesome);
            font-weight: 900;
            font-size: 1.15em;
            margin-right: 5px;
            line-height: 1 !important;
        }*/
        .sidebar-nav .nav-link:not(.secondary):not(.nav-nohover):hover, .sidebar-nav .nav-content .nav-link:hover {
            background: var(--color-primary-60);
            color: white;
        }

        .sidebar-nav .nav-link.secondary {
            color: var(--color-danger-60);
        }

            .sidebar-nav .nav-link.secondary:hover {
                /*color: var(--color-danger-80);*/
                text-decoration: underline;
            }

        .sidebar-nav .nav-link .title {
            font-size: 1em;
        }
        /* .sidebar-nav .nav-link:not(.nav-nohover) .title {
            text-decoration: underline;
            text-underline-offset: 3px; 
        }*/

        .sidebar-nav .nav-link .icon {
            font-size: 1.15em;
            margin-right: 10px;
            line-height: 1 !important;
        }

        .sidebar-nav .nav-link .bi-chevron-down {
            margin-right: 0;
            transition: transform 0.2s ease-in-out;
        }

        .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
            transform: rotate(180deg);
        }

    .sidebar-nav .nav-content {
        padding: 5px 0 0 15px;
        list-style: none;
    }

        .sidebar-nav .nav-content .nav-link {
            background: var(--color-primary-20);
        }

            .sidebar-nav .nav-content .nav-link .title {
                font-size: 0.9em;
            }

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

    .iconslist .icon {
        background-color: #fff;
        border-radius: 0.25rem;
        text-align: center;
        color: #012970;
        padding: 15px 0;
    }

    .iconslist i {
        margin: 0.25rem;
        font-size: 2.5rem;
    }

    .iconslist .label {
        font-family: var(--bs-font-monospace);
        display: inline-block;
        width: 100%;
        overflow: hidden;
        padding: 0.25rem;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #666;
    }

.list-group-hover > div:hover {
    background-color: var(--color-light-bkg);
}

.list-group-hover > div > .badge {
    min-width: 35px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: #4154f1;
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

    .error-404 h1 {
        font-size: 180px;
        font-weight: 700;
        color: #4154f1;
        margin-bottom: 0;
        line-height: 150px;
    }

    .error-404 h2 {
        font-size: 24px;
        font-weight: 700;
        color: #012970;
        margin-bottom: 30px;
    }

    .error-404 .btn {
        background: #51678f;
        color: #fff;
        padding: 8px 30px;
    }

        .error-404 .btn:hover {
            background: #3e4f6f;
        }

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}


/**/
.dot {
    height: 0;
    border-radius: 50%;
    display: inline-block;
}

/*--------------------------------------------------------------
# Cursor
--------------------------------------------------------------*/
.c-pointer {
    cursor: pointer !important;
}

.c-help /*, [data-bs-toggle="tooltip"]:not(.c-pointer)*/ {
    cursor: help;
}
/*--------------------------------------------------------------
# Menu side bar
  https://webartdevelopers.com/blog/bootstrap-5-sidebar-menu-with-toggle-button-2/
--------------------------------------------------------------*/
/* Timeline
    https://bestjquery.com/tutorial/timeline/demo191/
    http://bestjquery.com/tutorial/timeline/demo163/
*/

/*  service box:
    http://bestjquery.com/tutorial/service-box/demo200/
*/


/*--------------------------------------------------------------
# progress bar
  https://bestjquery.com/tutorial/progress-bar/demo72/
  http://bestjquery.com/tutorial/progress-bar/demo65/
  http://bestjquery.com/tutorial/progress-bar/demo38/
  http://bestjquery.com/tutorial/progress-bar/demo32/

  https://codepen.io/megwayne/pen/gWqpdL
--------------------------------------------------------------*/

.progress-content {
    margin-bottom: 20px;
}

.progress-title {
    width: 140px;
}

.progress.progress-bubble {
    height: 8px;
    background: var(--color-black-light); /* cinzento escuro: #484B53 */
    border-radius: 15px;
    /*margin-bottom: 30px;*/
    /*margin-left: 60px;*/
    overflow: visible;
    position: relative;
}

    .progress.progress-bubble .progress-bar {
        box-shadow: none;
        overflow: visible;
        border: none;
        border-radius: 15px;
        position: relative;
        -webkit-animation: animate-positive 1s;
        animation: animate-positive 1s;
    }

    .progress.progress-bubble .progress-value {
        width: 60px;
        height: 25px;
        line-height: 22px;
        border-radius: 20px;
        background: #fff;
        font-size: 1.2em;
        font-weight: 600;
        /*position: absolute;*/
        top: -14px;
        right: 0;
        z-index: 2;
    }

    .progress.progress-bubble.green .progress-bar {
        background: var(--color-primary-60); /*era 60, tb gosto desta #629d86*/
        /*box-shadow: 0px 0px 10px var(--color-primary-30);*/
    }

    .progress.progress-bubble.green:before {
        border: 7px solid var(--color-primary-60);
    }

    .progress.progress-bubble.green .progress-value {
        border: 2px solid var(--color-primary-60);
        color: var(--color-primary-60);
    }

/*
    progress circle
*/
.progress-circle {
    display: flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--color-primary-60) var(--progress), var(--color-black-light) 0deg);
    font-size: 0;
}

    .progress-circle::after {
        content: attr(data-progress) '%';
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin: 10px;
        border-radius: 50%;
        background: var(--bs-body-bg);
        /*background: white;*/
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        color: var(--color-primary-60);
    }

/*
    event list
*/
.eventList {
    width: 100%;
    color: #494950;
    /*overflow-y: auto;
    max-height: 60vh;*/
}

.eventRow {
    display: flex;
    align-items: start;
    background-color: var(--color-secondary-10);
    padding: 15px;
    /*font-size: 1.4em;*/
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
}

.eventDate {
    flex-shrink: 0 !important;
    width: 65px;
    text-align: center;
    border-radius: 3px;
    border: solid 2px var(--color-primary-70);
    /*border: solid 2px var(--color-secondary-100);*/
    padding: 0 0 3px 0;
    margin-right: 10px;
    /*margin-top: 4px;*/
}
/*.eventDay, .eventMonth {
    color: var(--color-primary-70);
}*/
.eventDay {
    line-height: 1 !important;
    font-size: 1.4em;
    padding: 6px 0 0 0;
}

.eventMonth {
    line-height: 1 !important;
    font-size: 0.9em;
}

.eventYear {
    line-height: 1 !important;
    padding: 2px 0;
    font-size: 0.7em;
    color: white;
    background-color: var(--color-primary-70);
    /*background-color: var(--color-secondary-100);*/
}

.eventDetail {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    flex-grow: 1 !important;
    align-self: center;
}

    .eventDetail .abrirDetalhe {
        font-size: 1em;
        /*color: var(--color-primary-70);*/
        cursor: pointer;
    }

        .eventDetail .abrirDetalhe:not(.collapsed) {
            font-weight: bold;
            color: var(--color-primary-70);
        }

        .eventDetail .abrirDetalhe::before {
            font-family: var(--font-awesome) !important;
            font-weight: 900; /*sem isto não assume a font*/
            content: '\f077';
            font-size: 1.2em;
            color: var(--color-primary-70);
            margin-right: 6px;
        }

        .eventDetail .abrirDetalhe.collapsed::before {
            content: '\f078';
        }

    .eventDetail .eventAjuda {
        font-size: 0.9em;
    }

        .eventDetail .eventAjuda ul {
            padding-left: 1rem;
        }

.eventTitle {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--color-secondary-110);
}
/* size-sm */
.eventList-sm .eventRow {
    padding: 10px;
}

.eventList-sm .eventDate {
    width: 50px;
    padding-bottom: 1px;
}

.eventList-sm .eventDay {
    font-size: 1.1em;
    padding-top: 4px;
}

.eventList-sm .eventMonth {
    font-size: 0.7em;
}

.eventList-sm .eventYear {
    font-size: 0.6em;
}

.eventList-sm .eventTitle {
    font-size: 1em;
    margin-bottom: 0;
}
/*.eventList-sm .eventDetail {
    align-self: center;  
}*/
@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

/*  
    manual modal
*/
.baseModal {
    display: none;
}

.load_man-modal_div {
    position: fixed;
    top: 5%;
    left: 5%;
    right: 5%;
    width: 90%;
    overflow: auto;
    padding-top: 120px;
    background-color: white;
    padding: 7px;
    color: #595959;
    border: 1px solid #ddd;
    border-radius: 4px;
}

    .load_man-modal_div.dark {
        background-color: #DFDFDF;
    }

.load_modal_wrapper {
    float: left;
    position: relative;
    z-index: 9997;
}

.load_modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.4;
    filter: alpha(opacity=40);
    min-height: 100%;
    width: 100%;
}

.load_modal_div {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -7px;
    margin-left: -85px;
    background-color: white;
    padding: 7px;
}

.lineSelected td {
    background-color: #C8C8C8;
    color: Black;
    font-weight: bold;
}

/* MD - ecrãs médios */
@media (min-width: 992px) {
    .load_man-modal_div[sz="full"] {
        min-height: 10%;
        max-height: 90%;
        margin-top: auto;
        margin-bottom: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .load_man-modal_div[sz="inherit"] {
        width: inherit;
        min-width: 50%;
        max-width: 95%;
        height: inherit;
        max-height: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .load_man-modal_div[sz="w-50"] {
        width: 50%;
        height: inherit;
        max-height: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Loading animation
    https://loading.io/css/ */
.lds-ripple {
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 64px;
    top: 25%;
    left: calc(50% - 32px);
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

#dvProgress {
    z-index: 9999;
}

    #dvProgress .load_modal_div {
        border-radius: 45px;
        padding: 10px 50px;
    }

/* loading image css*/
.loader_wrapper {
    min-height: 70px;
    position: relative;
    text-align: center;
}

    .loader_wrapper::after {
        font-weight: bold;
        content: 'Aguarde um momento...';
    }

/* 
*    card v2 
*/
.cardv2 > .card-header {
    border: none;
    padding-top: 5px;
}

.cardv2 > .card-body {
    border-top: solid 2px var(--color-primary-60);
}

.card-sm.cardv2 .card-body:not(.noPadding) {
    padding: 0;
}

.load_man-modal_div .cardv2 > .card-footer {
    background-color: transparent;
}

/* 
*    valid 
*/
.lstbullet_err_tit {
    color: White;
    margin-top: 5px;
    padding: 5px;
    display: inline-block;
    width: 100%;
}

.lstbullet_err_lst {
    padding: 0px 0px 0px 19px;
    text-align: left;
    font-size: 0.9em;
}

    .lstbullet_err_lst li {
        padding: 6px;
    }

        .lstbullet_err_lst li:hover {
            background-color: var(--color-danger-10);
        }

        .lstbullet_err_lst li:not(:last-child) {
            border-bottom: solid 1px var(--color-light-font-10);
        }

.lstbullet_err, .lstbullet_err_lst {
    color: var(--color-danger-font);
}

.lstbullet_err_tit {
    background-color: var(--color-danger-font);
}

/*
*  edit iban
*/
ol.iban-edit {
    margin-left: 0; /* Remove the default left margin */
    padding: 0; /* Remove the default left padding */
}

    ol.iban-edit:not(.inconclusivo) {
        list-style-type: none;
    }

        ol.iban-edit:not(.inconclusivo) .detail-inconclusivo {
            display: none;
        }

    ol.iban-edit.inconclusivo {
        padding-left: 15px;
    }

        ol.iban-edit.inconclusivo li::marker {
            font-size: 1.0em;
            font-weight: bold;
            /*color: var(--color-primary-font);*/
        }

/*menu header */
.navbar-menubar {
    font-size: 0.9em;
}

    .navbar-menubar .nav-link {
        padding-bottom: 2px;
        text-decoration: underline;
        color: var(--color-primary-80) !important;
        text-decoration: none;
    }

        .navbar-menubar .nav-link:not(:last-child) {
            margin-right: 10px;
        }

        .navbar-menubar .nav-link.active {
            font-weight: bold;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .navbar-menubar .nav-link:hover {
            color: var(--color-primary-font-dark) !important;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

/* table pagination */
.tbl_pager * {
    font-size: 1em;
}

    .tbl_pager *:not(select):not(a) {
        line-height: 1.5;
    }

.tbl_pager select {
    line-height: 0.9;
}

.tbl_pager a {
    line-height: 1.1;
}

/*.tbl_pager select {
    height: 30px;
    padding: 0 8px;
}*/

.tbl_pager span, .tbl_pager a {
    margin: 0 4px;
}

.tbl_pager a {
    display: inline-block;
    padding: 3px 8px;
    height: 22px;
    color: #B1B1B1;
    border: 1px solid #B1B1B1;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    align-self: center;
    vertical-align: middle;
    text-decoration: none;
    border-radius: 0.3em;
}

    .tbl_pager a:hover {
        background-color: #B1B1B1;
        color: white;
    }

/* file */
.file-primary::file-selector-button {
    font-weight: bold;
    color: var(--color-primary);
    border: solid 1px var(--color-primary);
    padding: 0.4em 0.5em;
    background-color: #ffffff;
}

.file-primary:hover::file-selector-button {
    background-color: var(--color-primary-10) !important;
}



a, a:hover {
    color: var(--color-primary-font);
}

.infolink {
    color: var(--color-secondary-90);
}

.text-yellow {
    color: #cc9a06;
}

/*.file-primary::-webkit-file-upload-button {
    visibility: hidden;
}
.file-primary::before {
    content: 'Select some files';
    display: inline-block;
    background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}*/
