﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --color-main: rgb(19, 33, 51);
    --color-main-rgb: 19, 33, 51;
    --color-main-active: rgb(10, 18, 28);
    --cor-principal-texto: #fff;
}

.bg-main {
    background: rgb(var(--color-main-rgb));
}
.bg-main-light {
    background: rgba(var(--color-main-rgb), 0.1);
}

.animation-pulsation-main {
    box-shadow: 0 0 0 0 rgba(var(--color-main-rgb), 1);
    background: rgb(var(--color-main-rgb));
    animation: pulse-online 2s infinite;
}

body{
    font-family:'Inter', sans-serif;
}

.rounded-offcanvas{
    border-top-left-radius:1rem;
    border-bottom-left-radius:1rem;
    border:0 !important;
}

.custom-input-group {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    column-gap: 0rem;
    padding: 0 0.75rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    color: rgba(0,0,0,0.5);
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

    .custom-input-group:hover {
        border-color: rgba(0,0,0,0.35);
        color: rgba(0,0,0,0.75);
    }

    .custom-input-group:focus-within {
        border-color: var(--color--main);
        color: var(--color--main);
    }

    .custom-input-group:has(.aspNetDisabled) {
        background: rgba(0,0,0,0.025);
        cursor: default;
        pointer-events: none;
        border: 2px solid rgba(0,0,0,0.1);
    }

    .custom-input-group .form-floating {
        width: 100%;
        margin: 0;
    }

    .custom-input-group .form-control, .custom-input-group .form-select {
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        background: transparent !important;
        color: inherit !important;
        margin: 0 !important;
    }

    .custom-input-group .input-group-icon {
        font-size: 1.35rem;
        margin: 0 !important;
        padding: 0 !important;
    }

        .custom-input-group .input-group-icon i {
            margin: 0 !important;
            padding: 0 !important;
            color: inherit !important;
            -webkit-transition: all 150ms linear;
            -moz-transition: all 150ms linear;
            -o-transition: all 150ms linear;
            transition: all 150ms linear;
        }

    .custom-input-group.error {
        border-color: #dc2626 !important;
        color: #dc2626;
    }

        .custom-input-group.error .input-group-icon i {
            color: #dc2626;
        }

    .custom-input-group .pt-textarea {
        padding-top: 0.75rem !important;
    }

    .custom-input-group .btn{
        padding:0.35rem 0.5rem;
        outline:none !important;
        border:none !important;
        box-shadow:none !important;
    }
    .custom-input-group .btn i{
        font-size:1.25rem;
    }
    .custom-input-group .btn:hover{
        background:rgba(0,0,0,0.05);
    }
        .custom-input-group .btn:active {
            background: rgba(0,0,0,0.1);
        }
    .custom-input-group .choices {
        margin-bottom: 0 !important;
    }

    .custom-input-group .choices__inner {
        border: none !important;
        height: 100% !important;
        margin: 0 !important;
        padding-top: 1.3rem;
        padding-bottom: 0.625rem;
    }

    .custom-input-group .form-floating > .choice-floating-label {
        transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
    }

    .custom-input-group .choices__list--single .choices__item {
        margin-bottom: 0.325rem;
        padding: 0;
        margin-left: -0.1rem;
        font-size: 1rem;
    }

    .custom-checkbox-group {
        position: relative;
    }

    .custom-checkbox-group input[type="checkbox"] {
        display: none;
    }

        .custom-checkbox-group input[type="checkbox"] + label {
            position: relative;
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            column-gap: 0.75rem;
            margin: 0;
            padding: 0;
            cursor: pointer;
        }

            .custom-checkbox-group input[type="checkbox"] + label:before {
                content: '\F633';
                font-family: 'Bootstrap-icons';
                display: flex;
                align-items: center;
                justify-content: center;
                width: 1.5rem;
                height: 1.5rem;
                border: 2px solid rgba(0,0,0,0.35);
                border-radius: 0.25rem;
                font-size: 0;
                background: transparent;
                -webkit-transition: all 100ms linear;
                -moz-transition: all 100ms linear;
                -o-transition: all 100ms linear;
                transition: all 100ms linear;
            }

            .custom-checkbox-group input[type="checkbox"] + label:hover:before {
                border-color: rgba(0,0,0,0.5);
                font-size: 0.9rem;
                background: rgba(0,0,0,0.05);
            }

        .custom-checkbox-group input[type="checkbox"]:checked + label:before {
            border-color: var(--color-main);
            background-color: var(--color-main);
            color: #fff;
            font-size: 1rem;
        }

        .custom-checkbox-group input[type="checkbox"] + label.is-invalid {
            color: #dc2626;
        }

            .custom-checkbox-group input[type="checkbox"] + label.is-invalid:before {
                border-color: #dc2626;
            }

input[readonly="readonly"]{
    pointer-events:none;
    position:relative;
}

.btn-loading {
    position: relative;
    pointer-events: none !important;
}

    .btn-loading span,
    .btn-loading i,
    .btn-loading svg {
        opacity: 0;
    }

.btn:not(.btn-loading) span.spinner-border {
    opacity: 0;
}

.btn-loading span.spinner-border {
    opacity: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.btn .spinner-border-sm {
    border-width: 1px;
}

.btn {
    padding: 0.75rem 1rem;
}

.btn.btn-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap:0.5rem;
}

.btn-primary.btn-loading {
    background: var(--color-main-active);
    border-color: var(--color-main-active);
}

.btn-primary.aspNetDisabled{
    background: var(--color-main-disabled) !important;
    border-color: var(--color-main-disabled) !important;
    color:rgba(255,255,255,0.5) !important;
    pointer-events:none !important;
}

.card-shadow {
    border-radius: 1rem;
    border: 1px solid #f2f4ff;
    box-shadow: 0px 0px 13px 0px rgb(0,0,0, 0.05);
}

.modal.fade .modal-dialog {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-transition: transform 150ms linear, opacity 150ms linear;
    -moz-transition: transform 150ms linear, opacity 150ms linear;
    -o-transition: transform 150ms linear, opacity 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear;
}

.modal.fade.show .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: transform 150ms linear, opacity 150ms linear;
    -moz-transition: transform 150ms linear, opacity 150ms linear;
    -o-transition: transform 150ms linear, opacity 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear;
}

.modal-content{
    border-radius:0.5rem;
    border:0;
}



@media screen and (min-width:762px) {
    .mobile-bottom-nav {
        display: none;
        pointer-events: none;
        visibility: hidden;
    }
}

@media screen and (max-width:761px){

    .mobile-bottom-nav {
        bottom: 0;
        position: fixed;
        display: block;
        height: auto;
        width: 100%;
        background: rgb(19, 33, 51);
        padding: 0.75rem;
        z-index: 100;
    }

    .mobile-bottom-nav-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        column-gap: 0.35rem;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        height: 100%;
    }

    .mobile-bottom-nav .d-flex {
        background: rgb(19,33,51);
    }

    .mobile-bottom-nav .mobile-bottom-nav-btn {
        position: relative;
        font-size: 1.35rem;
        color: #fff;
        background: rgba(255,255,255,0.025);
        padding: 0.35rem;
        margin: 0;
        border-radius: 50rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        border: 0;
        -webkit-transition: all 150ms linear;
        -moz-transition: all 150ms linear;
        -o-transition: all 150ms linear;
        transition: all 150ms linear;
    }


        .mobile-bottom-nav .mobile-bottom-nav-btn span {
            font-size: 0.635rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .mobile-bottom-nav .mobile-bottom-nav-btn:hover {
            background: rgba(255,255,255,0.05);
        }

        .mobile-bottom-nav .mobile-bottom-nav-btn:active,
        .mobile-bottom-nav .mobile-bottom-nav:focus {
            color: rgba(255,255,255, 1);
            background: rgba(255,255,255,0.1);
        }
}



/*#region PESQUISA*/
#container_pesquisa {    
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    #container_pesquisa.expanded {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        margin: 0;
        z-index: 9995;
    }

@media screen and (max-width:761px) {
    #container_pesquisa:not(.expanded) {
        display: none;
    }

    #container_pesquisa.expanded {
        background: #fff;
    }
}

#container_pesquisa .container-pesquisa-content {
    width: 100%;
    /*max-width: 991px !important;*/
    position: relative;
    z-index: 9999;
}

#container_pesquisa .backdrop-pesquisa {
    -webkit-transition: background 150ms ease-in-out;
    -moz-transition: background 150ms ease-in-out;
    -o-transition: background 150ms ease-in-out;
    transition: background 150ms ease-in-out;
    background: rgba(0,0,0,0);
}

#container_pesquisa.expanded .backdrop-pesquisa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.75);
}

@media screen and (min-width:762px) {

    #container_pesquisa.expanded {
        position: fixed;
        z-index: 9999 !important;
        top: 0;
        left: 0;
    }

    #container_pesquisa:not(.expanded) .collapse-filtros {
        height: 0;
        overflow: hidden;
        pointer-events: none;
        opacity: 0;
    }

    #container_pesquisa.expanded .collapse-filtros {
        height: 100%;
        overflow: visible;
        pointer-events: all;
        opacity: 1;
    }
}


@media screen and (max-width:761px) {
    #container_pesquisa .collapse-filtros,
    #container_pesquisa.expanded .collapse-filtros {
        display: block;
    }

    #container_pesquisa.expanded .backdrop-pesquisa {
        display: none;
    }

    #container_pesquisa .container-pesquisa-content {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        position: relative;
        z-index: 9999;
        padding: 1rem 0;
        margin: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    #container_pesquisa .collapse-filtros,
    #container_pesquisa.expanded .collapse-filtros {
        height: auto;
        overflow: auto;
        pointer-events: all;
        opacity: 1;
    }

    #container_pesquisa .opcoes-pesquisa {
        display: none;
    }

    .floating-menu {
        z-index: 9990 !important;
    }
}


.card-pesquisa {
    width: 100%;
    /*padding: 0.75rem !important;*/
    border-radius: 0.75rem !important;
    border: 1px solid #f2f4ff !important;
    /*box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 10%) !important;*/
    box-shadow: rgba(149, 157, 165, 0.1) 0px 4px 12px !important;
    /*-webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    transition: all 150ms linear;*/
}

.card.card-pesquisa:hover {
    box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 15%) !important;
}

    .card-pesquisa .opcoes-pesquisa,
    .card-pesquisa .searchbar-button,
    .card-pesquisa .search-input,
    .card-pesquisa .bootstrap-select > .dropdown-toggle {
        height: 3rem;
    }

    .card-pesquisa .bootstrap-select .dropdown-toggle .filter-option {
        margin-top: auto;
        margin-bottom: auto;
        top: 0;
        bottom: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .card-pesquisa .search-input {
        width: 100%;
        border-radius: 0.5rem;
        /*border: 2px solid rgba(0,0,0,0.25);*/
        /*background: transparent;*/
        border: unset;
        background: #f4f4f5;
        outline: none !important;
        box-shadow: none !important;
        font-size: 1rem;
        padding-left: 0.5rem;
    }

        .card-pesquisa .search-input:hover {
            border-color: rgba(0,0,0,0.35);
        }

        .card-pesquisa .search-input::placeholder {
            font-size: 1rem;
        }

        .card-pesquisa .search-input:focus {
            /*border-color: var(--color-main);*/
            background: #d9d9d9;
        }

    .card-pesquisa .opcoes-pesquisa,
    .card-pesquisa .searchbar-button,
    .card-pesquisa .bootstrap-select > .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 0.5rem;
        border: 0;
        outline: none;
        box-shadow: none;
        -webkit-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -o-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in-out;
    }

    .card-pesquisa .opcoes-pesquisa,
    .card-pesquisa .searchbar-button {
        font-size: 1.1rem;
        border: 0;
    }

        .card-pesquisa .opcoes-pesquisa.active {
            background: rgba(var(--color-main-rgb), 0.1);
            color: var(--color-main);
        }

    .card-pesquisa .searchbar-button {
        background: var(--color-main);
        color: #fff;
    }

    .card-pesquisa .opcoes-pesquisa,
    .card-pesquisa .bootstrap-select > .dropdown-toggle {
        background: transparent;
        color: rgba(0,0,0,0.5);
    }

        .card-pesquisa .opcoes-pesquisa:hover,
        .card-pesquisa .opcoes-pesquisa[aria-expanded=true],
        .card-pesquisa .bootstrap-select > .dropdown-toggle:hover,
        .card-pesquisa .bootstrap-select > .dropdown-toggle.show {
            background: rgba(0,0,0,0.05);
            color: #000;
        }

        .card-pesquisa .opcoes-pesquisa.active:hover,
        .expanded .card-pesquisa .opcoes-pesquisa.active {
            background: rgba(var(--color-main-rgb), 0.2);
            color: var(--color-main);
        }

    .card-pesquisa .bootstrap-select > .dropdown-toggle {
        outline: none !important;
        box-shadow: none !important;
        font-size: 0.9rem;
        text-transform: capitalize;
        border: 1px solid #fafafa;
        background: #fafafa;
        font-weight: 600;
    }

        .card-pesquisa .bootstrap-select > .dropdown-toggle:hover {
            border-color: #f5f5f5;
            background: #f5f5f5;
        }

        .card-pesquisa .bootstrap-select > .dropdown-toggle::after {
            content: '\F282';
            font-family: 'bootstrap-icons';
            border: none !important;
            display: flex;
            margin-left: 0.5rem;
        }


.card-pesquisa .bootstrap-select > .dropdown-menu {
    position:fixed;
    width: 100%;
    min-width: 250px;
    padding: 0.25rem;
    border-radius: 0.5rem;
    border-color: rgba(0,0,0,0.05) !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px !important;
    z-index:9999 !important;
}

    .card-pesquisa .bootstrap-select > .dropdown-menu .form-control{
        margin-top:0 !important;
    }
    .card-pesquisa .bs-searchbox {
        padding: 0;
        margin-bottom:0.35rem;
    }
.card-pesquisa .bs-searchbox .form-control {
    border-radius: calc(0.5rem - 0.25rem);
    border:1px solid rgba(0,0,0,0.05);
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

    .card-pesquisa .bs-searchbox .form-control:hover {
        border-color: rgba(0,0,0,0.15);
        background: rgba(0,0,0,0.025) !important;
    }
    .card-pesquisa .bs-searchbox .form-control:focus {
        border-color: rgba(0,0,0,0.15);
        background: rgba(0,0,0,0.025) !important;
    }

.card-pesquisa .bootstrap-select .dropdown-item{
    white-space:nowrap;
    overflow-x:hidden;
    border-radius:0.25rem;
    font-weight:500;
    color:rgba(0,0,0,0.5);
    letter-spacing:-0.05rem;
}
.card-pesquisa .bootstrap-select .dropdown-item:hover {
    background: rgba(var(--color-main-rgb), 0.1);
    color: var(--color--main);
}

.card-pesquisa .bootstrap-select .dropdown-item.active{
    background: rgba(var(--color-main-rgb), 1); 
    color: #fff;
}

.card-pesquisa .bs-actionsbox .btn-group button{
    padding:0.35rem 0.75rem;
    background:rgba(var(--color-main-rgb), 0.05);
    color:var(--color-main) !important;
    border:none !important;
}
    .card-pesquisa .bs-actionsbox .btn-group button:hover {
        background: rgba(var(--color-main-rgb), 0.15);
    }
.card-pesquisa .bs-actionsbox .btn-group button:first-child{
    border-top-left-radius:0.5rem;
    border-bottom-left-radius:0.5rem;
}
.card-pesquisa .bs-actionsbox .btn-group button:last-child{
    border-top-right-radius:0.5rem;
    border-bottom-right-radius:0.5rem;
}




.card-pesquisa .input-group {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0 0.5rem;
}

    .card-pesquisa .input-group .form-control {
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        width: 100%;
    }

    .card-pesquisa .input-group .form-control,
    .card-pesquisa .input-group label {
        font-size: 0.8rem;
    }

    .card-pesquisa .input-group label {
        font-weight: 600;
        text-transform: uppercase;
    }

        .card-pesquisa .input-group label i {
            font-size: 0.9rem;
        }

.filtro-subtitle {
    font-weight: 600;
    font-size: 0.735rem;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
}

.card-pesquisa hr {
    opacity: 0.15;
}

.custom-checkbox-filter {
    position: relative;
    padding: 0;
}

    .custom-checkbox-filter input {
        display: none !important;
    }

        .custom-checkbox-filter input + label {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: start;
            column-gap: 0.35rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 0.5rem;
            background: #fafafa;
            -webkit-transition: all 150ms linear;
            -moz-transition: all 150ms linear;
            -o-transition: all 150ms linear;
            transition: all 150ms linear;
        }

            .custom-checkbox-filter input + label:hover {
                background: #f5f5f5;
            }

            .custom-checkbox-filter input + label:after {
                content: '\F272';
                font-family: "bootstrap-icons";
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 1.5rem;
                height: 1.5rem;
                margin-left: auto;
                background: transparent;
                border: 2px solid rgba(0,0,0,0.15);
                border-radius: 0.35rem;
                font-size: 0.5rem;
                color: transparent;
                -webkit-transition: all 150ms linear;
                -moz-transition: all 150ms linear;
                -o-transition: all 150ms linear;
                transition: all 150ms linear;
            }

            .custom-checkbox-filter input + label:hover:after {
                font-size: 1rem;
                color: #000;
            }

        .custom-checkbox-filter input:checked + label {
            background: rgba(var(--color-main-rgb), 0.1);
            color: var(--color--main);
        }

            .custom-checkbox-filter input:checked + label:after {
                font-size: 1rem;
                color: #fff !important;
                border-color: var(--color--main);
                background: var(--color--main);
            }



@media screen and (max-width:761px) {
    .card-pesquisa {
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    .card.card-pesquisa:hover{
        box-shadow:none !important;
    }
}

.ui-widget.ui-widget-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-y: auto;
    max-height: 300px;
    overflow-x: hidden;
    color: #000;
    background: #fff;
    border-color: #eaeaea;
    font-family: inherit !important;
    max-width: 991px !important;
    z-index:10;
}
/*#endregion*/