:root {
    --blue: #1cc88a;
    --primary: #1cc88a;
}

a {
    color: #1cc88a;
}

a:hover {
    color: #17a673;
    text-decoration: none;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

.notificacao {
    position: relative;
    width: 100%;
}

.flex-grow-1 {
    flex-grow: 1;
    min-width: 0;
}

.resolver-container {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.btn-primary {
    color: #fff;
    background-color: #1cc88a;
    border-color: #1cc88a;
}
.btn-primary:hover {
    color: #fff;
    background-color: #2e59d9;
    border-color: #11a570;
}
.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #2e59d9;
    border-color: #11a570;
    box-shadow: 0 0 0 0.2rem rgba(105, 136, 228, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #1cc88a;
    border-color: #1cc88a;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #11a570;
    border-color: #244ec9;
}

.btn-outline-primary {
    color: #1cc88a;
    border-color: #1cc88a;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #1cc88a;
    border-color: #1cc88a;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #1cc88a;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.btn-link {
    font-weight: 400;
    color: #1cc88a;
    text-decoration: none;
}
.btn-link:hover {
    color: #169b6b;
    text-decoration: underline;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #2e2f37;
    text-decoration: none;
    background-color: #f8f9fc;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #1cc88a;
}
.dropdown-item.disabled, .dropdown-item:disabled {
    color: #858796;
    pointer-events: none;
    background-color: transparent;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #1cc88a;
    background-color: #1cc88a;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #1cc88a;
    background-color: #1cc88a;
}

.custom-file-input {
    overflow: visible; /*valor padrao*/
}

.custom-file-label {
    overflow: visible; /*valor padrao*/
}

.custom-range:focus {
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    background-color: #1cc88a;
}

.custom-range::-moz-range-thumb {
    background-color: #1cc88a;
}

.custom-range::-ms-thumb {
    background-color: #1cc88a;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    color: white;
    background-color: #1cc88a;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #1cc88a;
}

.navbar-toggler-icon {
    background: no-repeat center center;
    background-size: 100% 100%;
}

.breadcrumb-item {
    display: flex;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
}

.page-link {
    color: #1cc88a;
}

.page-link:hover {
    color: #17a773;
}

.page-item.active .page-link {
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.badge-primary {
    background-color: #1cc88a;
}

a.badge-primary:hover, a.badge-primary:focus {
    background-color: #11a570;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

.list-group-item.active {
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: no-repeat 50% / 100% 100%;
}

.spinner-border {
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.bg-primary {
    background-color: #1cc88a !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #11a570 !important;
}

.border-primary {
    border-color: #1cc88a !important;
}

.text-primary {
    color: #1cc88a !important;
}
a.text-primary:hover, a.text-primary:focus {
    color: #17a773 !important;
}

.bg-gradient-primary {
    background-color: #1cc88a;
    background-image: linear-gradient(180deg, #1cc88a 10%, #17a773 100%);
}

.border-left-primary {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-bottom-primary {
    border-bottom: 0.25rem solid #1cc88a !important;
}

.topbar .dropdown-list .dropdown-header {
    background-color: #1cc88a;
    border: 1px solid #1cc88a;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
    color: #1cc88a;
}

.sidebar .sidebar-brand {
    height: auto;
}

.bg-login-image {
    background-image: url("/assets/img/logo-colorido.png");
    height: 80%;
    margin-top: 2rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-password-image {
    background-image: url("/assets/img/logo-colorido.png");
    background-size: 70% 70%;
    background-repeat: no-repeat;
}

@-webkit-keyframes noise-anim {
    0% {
        clip: rect(10px, 9999px, 83px, 0);
    }
    5% {
        clip: rect(2px, 9999px, 65px, 0);
    }
    10% {
        clip: rect(8px, 9999px, 54px, 0);
    }
    15% {
        clip: rect(24px, 9999px, 22px, 0);
    }
    20% {
        clip: rect(19px, 9999px, 84px, 0);
    }
    25% {
        clip: rect(19px, 9999px, 10px, 0);
    }
    30% {
        clip: rect(27px, 9999px, 77px, 0);
    }
    35% {
        clip: rect(74px, 9999px, 34px, 0);
    }
    40% {
        clip: rect(34px, 9999px, 64px, 0);
    }
    45% {
        clip: rect(83px, 9999px, 47px, 0);
    }
    50% {
        clip: rect(23px, 9999px, 70px, 0);
    }
    55% {
        clip: rect(55px, 9999px, 49px, 0);
    }
    60% {
        clip: rect(90px, 9999px, 21px, 0);
    }
    65% {
        clip: rect(58px, 9999px, 63px, 0);
    }
    70% {
        clip: rect(77px, 9999px, 11px, 0);
    }
    75% {
        clip: rect(6px, 9999px, 72px, 0);
    }
    80% {
        clip: rect(27px, 9999px, 57px, 0);
    }
    85% {
        clip: rect(89px, 9999px, 54px, 0);
    }
    90% {
        clip: rect(55px, 9999px, 4px, 0);
    }
    95% {
        clip: rect(36px, 9999px, 91px, 0);
    }
    100% {
        clip: rect(19px, 9999px, 71px, 0);
    }
}
@keyframes noise-anim {
    0% {
        clip: rect(10px, 9999px, 83px, 0);
    }
    5% {
        clip: rect(2px, 9999px, 65px, 0);
    }
    10% {
        clip: rect(8px, 9999px, 54px, 0);
    }
    15% {
        clip: rect(24px, 9999px, 22px, 0);
    }
    20% {
        clip: rect(19px, 9999px, 84px, 0);
    }
    25% {
        clip: rect(19px, 9999px, 10px, 0);
    }
    30% {
        clip: rect(27px, 9999px, 77px, 0);
    }
    35% {
        clip: rect(74px, 9999px, 34px, 0);
    }
    40% {
        clip: rect(34px, 9999px, 64px, 0);
    }
    45% {
        clip: rect(83px, 9999px, 47px, 0);
    }
    50% {
        clip: rect(23px, 9999px, 70px, 0);
    }
    55% {
        clip: rect(55px, 9999px, 49px, 0);
    }
    60% {
        clip: rect(90px, 9999px, 21px, 0);
    }
    65% {
        clip: rect(58px, 9999px, 63px, 0);
    }
    70% {
        clip: rect(77px, 9999px, 11px, 0);
    }
    75% {
        clip: rect(6px, 9999px, 72px, 0);
    }
    80% {
        clip: rect(27px, 9999px, 57px, 0);
    }
    85% {
        clip: rect(89px, 9999px, 54px, 0);
    }
    90% {
        clip: rect(55px, 9999px, 4px, 0);
    }
    95% {
        clip: rect(36px, 9999px, 91px, 0);
    }
    100% {
        clip: rect(19px, 9999px, 71px, 0);
    }
}
@-webkit-keyframes noise-anim-2 {
    0% {
        clip: rect(37px, 9999px, 52px, 0);
    }
    5% {
        clip: rect(77px, 9999px, 64px, 0);
    }
    10% {
        clip: rect(22px, 9999px, 93px, 0);
    }
    15% {
        clip: rect(38px, 9999px, 90px, 0);
    }
    20% {
        clip: rect(17px, 9999px, 20px, 0);
    }
    25% {
        clip: rect(20px, 9999px, 39px, 0);
    }
    30% {
        clip: rect(55px, 9999px, 43px, 0);
    }
    35% {
        clip: rect(72px, 9999px, 8px, 0);
    }
    40% {
        clip: rect(17px, 9999px, 94px, 0);
    }
    45% {
        clip: rect(87px, 9999px, 64px, 0);
    }
    50% {
        clip: rect(54px, 9999px, 26px, 0);
    }
    55% {
        clip: rect(89px, 9999px, 22px, 0);
    }
    60% {
        clip: rect(3px, 9999px, 3px, 0);
    }
    65% {
        clip: rect(60px, 9999px, 57px, 0);
    }
    70% {
        clip: rect(68px, 9999px, 88px, 0);
    }
    75% {
        clip: rect(39px, 9999px, 4px, 0);
    }
    80% {
        clip: rect(40px, 9999px, 89px, 0);
    }
    85% {
        clip: rect(1px, 9999px, 91px, 0);
    }
    90% {
        clip: rect(31px, 9999px, 43px, 0);
    }
    95% {
        clip: rect(51px, 9999px, 93px, 0);
    }
    100% {
        clip: rect(21px, 9999px, 67px, 0);
    }
}
@keyframes noise-anim-2 {
    0% {
        clip: rect(37px, 9999px, 52px, 0);
    }
    5% {
        clip: rect(77px, 9999px, 64px, 0);
    }
    10% {
        clip: rect(22px, 9999px, 93px, 0);
    }
    15% {
        clip: rect(38px, 9999px, 90px, 0);
    }
    20% {
        clip: rect(17px, 9999px, 20px, 0);
    }
    25% {
        clip: rect(20px, 9999px, 39px, 0);
    }
    30% {
        clip: rect(55px, 9999px, 43px, 0);
    }
    35% {
        clip: rect(72px, 9999px, 8px, 0);
    }
    40% {
        clip: rect(17px, 9999px, 94px, 0);
    }
    45% {
        clip: rect(87px, 9999px, 64px, 0);
    }
    50% {
        clip: rect(54px, 9999px, 26px, 0);
    }
    55% {
        clip: rect(89px, 9999px, 22px, 0);
    }
    60% {
        clip: rect(3px, 9999px, 3px, 0);
    }
    65% {
        clip: rect(60px, 9999px, 57px, 0);
    }
    70% {
        clip: rect(68px, 9999px, 88px, 0);
    }
    75% {
        clip: rect(39px, 9999px, 4px, 0);
    }
    80% {
        clip: rect(40px, 9999px, 89px, 0);
    }
    85% {
        clip: rect(1px, 9999px, 91px, 0);
    }
    90% {
        clip: rect(31px, 9999px, 43px, 0);
    }
    95% {
        clip: rect(51px, 9999px, 93px, 0);
    }
    100% {
        clip: rect(21px, 9999px, 67px, 0);
    }
}

.error:before {
    text-shadow: 1px 0 #1cc88a;
}

/*fim das adaptacoes do sbadmin*/

.sidebar .sidebar-condominio {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.nav-pills .nav-link {
    background-color: #d1d3e2;
}

.img-classificado{
    width: 60%;
    height: 60%;
}

thead tr:hover {
    background: none !important;
}

td a {
    display: block;
    color: #858796 !important;
}

img.modal-img {
    cursor: pointer;
    transition: 0.3s;
}

img.modal-img:hover {
    opacity: 0.7;
}

.img-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.img-modal img {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700%;
}

.img-modal div {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.img-modal img, .img-modal div {
    animation: zoom 0.6s;
}

.img-modal span {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .img-modal img {
        width: 100%;
    }
}

@keyframes zoom {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@font-face {
    font-family: 'Fonte-Bancos-Brasileiros';
    src:  url('../font/Fonte-Bancos-Brasileiros.eot?zfl0wc');
    src:  url('../font/Fonte-Bancos-Brasileiros.eot?zfl0wc#iefix') format('embedded-opentype'),
    url('../font/Fonte-Bancos-Brasileiros.ttf?zfl0wc') format('truetype'),
    url('../font/Fonte-Bancos-Brasileiros.woff?zfl0wc') format('woff'),
    url('../font/Fonte-Bancos-Brasileiros.svg?zfl0wc#Fonte-Bancos-Brasileiros') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="ibb-"], [class*=" ibb-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'Fonte-Bancos-Brasileiros' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icone {
    width: 200px;
    min-height: 150px;
    margin: 5px;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    border: 2px solid transparent;
    color: rgb(33, 37, 41);
}

.icone a {
    color: rgb(33, 37, 41);
}

.icone a small {
    color: #1cc88a;
}

.btn-custom-color {
    background-color: #17a773 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

.btn-custom-color:hover {
    opacity: 0.8 !important;
}