/*
    Autor     : José Carlos de Freitas
    Criado em : 13/06/2018, 12:04:02
    Documento : custom
*/

/* 
    =============================================================================================
                    ESTILOS PRINCIPAIS: DEVEM SER UTILIZADOS EM TODOS OS PROJETOS
    =============================================================================================
*/

/*Variáveis*/
:root{
    --border-gray-color: #dee2e6;
    --blue: #2b90d9;
    --green: #4caf50;
}

/*navbar fixa no topo*/
.header.fixed-top .navbar {
    height: 70px;
}
.header.fixed-top + .page-content {
    padding-top: 65px;
}
@media(min-width: 576px) {
    .header.fixed-top .navbar {
        height: 70px;
    }
    .header.fixed-top + .page-content {
        padding-top: 70px;
    }
}
/*Fim navbar fixa no topo*/

/*Tamanho dos icones da barra lateral unificado*/
nav.side-navbar:not(.shrinked) a i {
    width: 1.3em;
    text-align: center;
}

/*Ellipse no menu lateral*/
nav.shrinked a {
    overflow: hidden;
    text-overflow: ellipsis;
}

/*Nome do principal alterado de h1 para h2*/
nav.side-navbar .title h2 {
    color: var(--dark);
}

/*Mensagem sem margin*/
.mensagem {
    margin-bottom: 0;
}
.mensagem a {
    color: inherit !important;
    text-decoration: underline;
}

/*Título dos cards*/
.card .card-header h1, .card .card-header h2, .card .card-header h3, .card .card-header h4 {
    font-size: 1.1rem;
}

/*Selects*/
select {
    margin: 0;
}
select option:not(:first-child), optgroup option {
    color: inherit;
}

/*FieldSet*/
fieldset legend, fieldset .legend {
    display: block;
    font-size: 1.2rem;
    font-weight: 100;
    border-bottom: 1px solid var(--border-gray-color);
}
fieldset:not(:first-child) {
    margin-top: 1em;
}

/*Card buttons footer*/
.card .card-footer-buttons, .buttons {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;

    padding: .88rem 20px;
}
.card .card-footer-buttons > button, .card .card-footer-buttons > a, .card .card-footer-buttons > form {
    margin: .12rem;

    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media(max-width: 576px) {
    .card .card-footer-buttons button, .card .card-footer-buttons a, .card .card-footer-buttons form {
        width: 100%;
    }
}
.buttons {
    margin: -.25rem;
}
.buttons > form, .buttons > button, .buttons > a {
    margin: .25rem;
}

/*Cor dos links com formato de botao*/
a.btn-default {
    color: inherit;
}
a.btn {
    font-weight: 300;
}

/*Mensagem fixa no topo*/
.mensagem-container {
    transition: box-shadow .3s;
}
.mensagem-fixed-top.shrinked {
    width: calc(100% - 90px);
}
.mensagem-fixed-top {
    position: fixed;
    top: 70px;
    z-index: 999999999999;
    width: 100%;

    max-height: 90vh;
    overflow: auto;

    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
}
@media(min-width: 1200px) {
    .mensagem-fixed-top {
        width: calc(100% - 250px);
    }
}

/*Último card das sections não tem margin bottom*/
section .card:last-child:not(:first-child) {
    margin-bottom: 0;
}

/*Apenas a ultima section tem padding-bottom"*/
section:not(:last-child) {
    padding-bottom: 0;
}

/*Último parágrafo não tem margin-bottom*/
p:last-child, address:last-child, dl:last-child, dd:last-child {
    margin-bottom: 0;
}

/*Botão escrito Browse do file do bootstrap alterado*/
.custom-file-label::after {
    content: "Procurar";
}

/* Radio-button com ícone*/
@media(max-width: 575px) {
    .btn-group-toggle {
        flex-direction: column;
        width: 100%;
    }
    .btn-group>.btn-group>.btn:first-child, .btn-group>.btn:first-child:not(.dropdown-toggle) {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
    }
    .btn-group>.btn-group>.btn:last-child, .btn-group>.btn:last-child:not(.dropdown-toggle) {
        border-bottom-left-radius: .25rem;
        border-bottom-right-radius: .25rem;
    }
    .btn-group>.btn-group>.btn, .btn-group>.btn:not(.dropdown-toggle) {
        border-radius: 0;
    }
    .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group, .btn-group-vertical .btn+.btn, .btn-group-vertical .btn+.btn-group, .btn-group-vertical .btn-group+.btn, .btn-group-vertical .btn-group+.btn-group {
        margin-left: 0;
        margin-top: -1px;
    }
}
@media(min-width: 576px) {
    .btn-group-toggle .btn::before {
        content: '\f111';
        margin: .25em;
        display: inline-block;
        font-family: "Font Awesome 5 Free";
        /*fas*/
    }

    .btn-group-toggle .btn.active::before {
        content: '\f192';
    }
}

nav.navbar .dropdown-toggle::after {
    border: none !important;
    content: "\f107";
    font-weight: 900;
    vertical-align: baseline;
    font-family: "Font Awesome 5 Free";
    margin-left: .3rem;
}

nav.navbar {
    padding-top: 0;
    padding-bottom: 0;
    height: 70px;
}

ul.row {
    padding: 0;
}

/*No side navbar*/
.no-side-navbar .content-inner {
    width: 100%;
}
.no-side-navbar #toggle-btn {
    display: none;
}
/*FIM No side navbar*/

footer.main-footer {
    padding-left: 0;
    padding-right: 0;
}

label {
    font-size: .9rem;
    font-weight: 300;
}

.link-unstyled, .link-unstyled:link, .link-unstyled:hover {
    color: inherit;
    text-decoration: inherit;
}

/* 
    ================================================================================
                                    ESTILOS AUXILIARES
    ================================================================================
*/

.always-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.negrito{
    font-weight: bold !important;
}

.full-container{
    width: 100%;
}

/* 
    ================================================================================
                        ESTILOS PERSONALIZADOS PARA ESSE PROJETO
    ================================================================================
*/

.card > .mensagem .alert {
    border-radius: 0;
}

.form-check {
    padding-left: 1.75rem;
}
.form-check-input {
    position: absolute;
    margin-top: 0;
    margin-left: -1.75rem;
    width: 1.5rem;
    height: 1.5rem;
}

.label-info {
    display: flex !important;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav.navbar-branca {
    background: #fff;
    color: inherit;
}

dt {
    font-weight: 400;
    display: inline;
}
dd {
    font-weight: lighter;
    display: inline-block;
    margin-bottom: .5rem;
}
dt::before {
    content: '';
    display: block;
}

/*Foto de perfil na legenda de fieldset*/
fieldset legend .foto-perfil {
    width: 4em;
    max-height: 4em;
    border-radius: 50%;
    margin-bottom: .5em;
}
/*FIM Foto de perfl na legenda de fieldset*/

/* Página de login */
.login-page::before {
    background-image: url("../img/bg-login.jpg");
}
.login-page a {
    color: var(--white);
}
.login-page .mensagem {
    margin-bottom: 20px;
}
.login-page .form-holder .info {
    background-color: #2f333e;
}
.login-page .form-holder .info .content {
    min-width: 180px;
    max-width: 100%;
}
.login-page .logo h1 {
    background-image: url('/resources/img/logo-branco.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 250px;
    height: 60px;
    max-width: 100%;
}
.login-page .form-holder .form small.invalid-feedback {
    color: #dc3545;
}
/* FIM Página de login */

/* Header */
.brand-text-desk img {
    height: 50px;
}
.brand-text-mobile img {
    width: 40px;
}
/* Fim Header */

/*Página /anonimo/contato*/
.form-contato-anonimo .form-group {
    margin-bottom: 1em !important;
}
/*FIM Página /anonimo/contato*/

/*Card de anúncio*/
.card-anuncio {
    border-radius: .25rem;
    margin-bottom: 1rem;
}

.card-anuncio-blue .card-anuncio-body {
    background-color: var(--blue);
}

.card-anuncio-purple .card-anuncio-body {
    background-color: var(--purple);
}

.card-anuncio-green .card-anuncio-body {
    background-color: var(--green);
}

.card-anuncio-orange .card-anuncio-body {
    background-color: var(--orange);
}

.card-anuncio-cyan .card-anuncio-body {
    background-color: var(--cyan);
}

.card-anuncio-red .card-anuncio-body {
    background-color: var(--red);
}

.card-anuncio-header {
    border-radius: .25rem;
}
.card-anuncio-body {
    background-color: var(--green);
    border-radius: .25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 7rem;
}
.card-anuncio-body i {
    color: var(--white);
    font-size: 5rem;
    min-width: 10rem;

    display: flex;
    align-items: center;

    border-radius: .25rem;

    padding: 1rem;
}
.card-anuncio-body i::before {
    margin: auto;
}
.card-anuncio-body .list-group {
    flex-grow: 1;

    background: white;
}
.card-anuncio span, .card-anuncio .list-inline {
    font-weight: 300;
}

.card-anuncio .list-group-item:first-child{
    border-top-left-radius: 0;
}

.card-anuncio .list-group-item:last-child{
    border-bottom-left-radius: 0;
}

.anuncio-descricao, .anuncio-titulo {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.anuncio-endereco {
    margin-bottom: 1rem !important;
}
.anuncio .map {
    max-height: inherit;
}
.anuncio-inline i {
    width: 100%;
}

.anuncio-estatisticas .card-anuncio i {
    width: 100%;
}
.card-anuncio .list-inline li {
    margin-right: 1ch;
}
.card-anuncio .list-inline li::after {
    content: ';';
}

.descricao-geral {
    white-space: pre-line;
    line-height: initial;
}

/*Fim Card de anúncio*/

/*  step-by-step bullets */

.step-by-step {
    display: flex;
    flex-direction: column;
}

.step-by-step-bullets {
    margin: auto 0 2rem;

    display: flex;
    justify-content: center;
    padding: 0;
}
.step-by-step-bullet {
    margin: 0 .5rem;
}
.step-by-step-bullets li {
    list-style: none;
}

.step-by-step-bullet a {
    border: 2px solid var(--gray);
    box-sizing: border-box;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;

    background-color: #eef5f9;
    z-index: 999;

    display: flex;
    justify-content: center;

    margin-top: 0;
    margin-right: 1rem;
    margin-left: 1rem;

    position: relative;
}

.step-by-step-bullet a span {
    position: absolute;
    top: 100%;
    left: inherit;
    padding: 0;
    transform: none;

    padding-top: .25rem;
    color: var(--gray);
    font-weight: 100;
}

.step-by-step-bullet a i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: none;
}
.step-by-step-bullet a:focus i, .step-by-step-bullet a:hover i {
    transform: translateY(-50%) scale(1.1);
}
.step-by-step-bullet:not(:first-child) a::before, .step-by-step-bullet:not(:last-child) a::after {
    content: '';
    width: 3.15rem;
    height: 2px;

    background-color: var(--gray);
}
.step-by-step-bullet a::before{
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.step-by-step-bullet a::after {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

@media(min-width: 500px) {
    .step-by-step-bullet a {
        width: 3rem;
        height: 3rem;
    }

    .step-by-step-bullet a {
        margin-right: 2rem;
        margin-left: 2rem;
    }
}


.step-by-step-bullet a.skipped {
    border-color: var(--blue);
}
.step-by-step-bullet a.skipped i {
    color: var(--blue);
}
.step-by-step-bullet a.active {
    border-color: var(--blue);
}
.step-by-step-bullet a.active i {
    color: var(--blue);
}
.step-by-step-bullet a.finished {
    border-color: var(--blue);
    background-color: var(--blue);
}
.step-by-step-bullet a.finished i {
    color: var(--white);
}

.step-by-step-bullet .active{
    box-shadow: 0 0 0 #2b90d9;
    animation: pulse 2s infinite;
}

.step-by-step-bullet .active span{
    color: var(--blue);
    font-weight: bold;
}

.step-by-step-bullet a.active::before, .step-by-step-bullet a.skipped::before, .step-by-step-bullet a.skipped::after {
    background-color: var(--blue);
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(43,144,217, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(43,144,217, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(43,144,217, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(43,144,217, 0.4);
        box-shadow: 0 0 0 0 rgba(43,144,217, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(43,144,217, 0);
        box-shadow: 0 0 0 10px rgba(43,144,217, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(43,144,217, 0);
        box-shadow: 0 0 0 0 rgba(43,144,217, 0);
    }
}

/*  FIM step-by-step bullets */

/* Galeria de fotos dos anúncios */

.galeria-fotos-anuncios figure {
    position: relative;
}
.galeria-fotos-anuncios img {
    border-radius: 4px;
    width: 100%;
}
.galeria-fotos-anuncios a{
    display: block;
}

.galeria-fotos-anuncios figcaption, .galeria-fotos-anuncios form {
    position: absolute;
    border-radius: 0 0 4px 4px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.galeria-fotos-anuncios figcaption {
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: .1rem .3rem;
    font-weight: 100;
    font-size: .8rem;
}
.galeria-fotos-anuncios form {
    top: 0;
    text-align: right;
}

/* FIM Galeria de fotos dos anúncios */

/* Galeria de fotos dos anúncios */

.galeria-fotos-anuncios-carousel figure {
    position: relative;
    margin: 0 10px 10px 10px;
}
.galeria-fotos-anuncios-carousel img {
    height: 50vh;
    width: 100%;
    object-fit: cover;
}
.galeria-fotos-anuncios-carousel a{
    display: block;
}

.galeria-fotos-anuncios-carousel figcaption {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: .1rem .3rem;
    font-weight: 100;
    font-size: .8rem;

    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.galeria-fotos-anuncios-carousel .slick-prev, .galeria-fotos-anuncios-carousel .slick-next{
    z-index: 99; 
    width: 40px;
    height: 40px;
}

.galeria-fotos-anuncios-carousel .slick-prev{
    left: 0px;  
}

.galeria-fotos-anuncios-carousel .slick-next{
    right: 0px;
}

/*Index da área administrativa*/

.index-menu {
    margin-bottom: -15px;
}
.index-menu li {
    margin-bottom: 15px;
}
.index-menu li i {
    width: 1.3em;
    font-size: 3rem;
    margin-right: 1rem;
}
.index-menu li a {
    text-decoration: none;

    display: flex;
    align-items: center;

    overflow: hidden;
    text-overflow: ellipsis;
}
.index-menu li a:focus {
    color: #fff;
}
.index-titulo {
    margin-bottom: 1.5rem;
}
.card-header .link-icon {
    float: right;
}

.chart-anuncios {
    text-align: center;
    margin-bottom: 1rem;
}
.chart-anuncios .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.progress-anuncio {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.progress-anuncio .progress-main {
    flex-grow: 1;
}
.progress-anuncio .item-icon {
    text-align: center;
}
.progress-anuncio .item-icon i {
    margin: 0 .5rem;
    width: 1.3em;
    font-size: 3rem;
}
.progress-anuncio .item-count {
    margin: 0 .5em;
    font-size: 1.5rem;
    font-weight: 100;
    min-width: 3ch;
    text-align: center;
}
.progress-anuncio .item-title {
    font-weight: 100;
}
.progress-anuncio-total {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-gray-color);
}

.progress-anuncio-cyan .progress-bar {
    background-color: var(--cyan);
}
.progress-anuncio-cyan .item-icon i {
    color: var(--cyan);
}
.progress-anuncio-green .progress-bar {
    background-color: var(--green);
}
.progress-anuncio-green .item-icon i {
    color: var(--green);
}
.progress-anuncio-orange .progress-bar {
    background-color: var(--orange);
}
.progress-anuncio-orange .item-icon i {
    color: var(--orange);
}
.progress-anuncio-orange {

}
.progress-anuncio-red .progress-bar {
    background-color: var(--red);
}
.progress-anuncio-red .item-icon i {
    color: var(--red);
}
.progress-anuncio-yellow .progress-bar {
    background-color: var(--yellow);
}
.progress-anuncio-yellow .item-icon i {
    color: var(--yellow);
}
.progress-anuncio-teal .progress-bar {
    background-color: var(--teal);
}
.progress-anuncio-teal .item-icon i {
    color: var(--teal);
}

@media(max-width: 575px) {
    .index-menu li i, .progress-anuncio .item-icon i {
        font-size: 2rem;
    }
    .progress-anuncio .item-count {
        font-size: 1rem;
    }
}

/*FIM Index da área administrativa*/


/* FIM Galeria de fotos dos anúncios */

/* 
    ================================================================================
                                ÁREA LIVRE DO SISTEMA
    ================================================================================
*/

/*INDEX*/
.index-header {
    background-image: url("../img/bg-index.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.index-header-titulo {
    text-align: center;
}
.index-header-titulo h1 {
    font-size: 2rem;
    color: var(--green);
}
.index-header-titulo strong {
    font-weight: normal;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 2rem;
}

.index-main-form {
    background-color: rgba(0,0,0,.6);
    color: #fff;

    border-radius: .25rem;
    padding: 1rem 15px;

    margin: 1rem 15px;
}
.index-main-form .form-group {
    margin: 0;
}
.index-main-form select {
    border-radius: .25rem;
}
.index-main-form .btn-group {
    border-radius: .25rem;
    background-color: #fff;
}
.index-main-form .form-group {
    margin: 10px 15px;
    padding: 0;
    display: inline-block;

    border: none;
}

.index-main-form-footer {
    padding-top: 15px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.collapsed .fa-chevron-up::before {
    content: '\f078' ;
}

@media(min-width: 576px) {
    .index-main-form-mais-detalhes .form-group:not(:first-child) {
        margin-left: 2px;
    }
    .index-main-form-mais-detalhes .form-group:not(:last-child) {
        margin-right: 2px;
    }
    .index-main-form-mais-detalhes input {
        max-width: 137px;
    }
    .index-main-form {
        margin-right: 30px;
        margin-left: 30px;
    }
    .index-main-form select {
        height: 46px !important;
    }
}
@media(max-width: 575px) {
    .index-main-form-footer {
        flex-direction: column;
    }

    .index-main-form fieldset {
        width: 100%;
    }

    .index-main-form legend {
        font-size: 1rem;
    }

    .index-main-form .form-group {
        width: 100%;
    }
}
/*FIM INDEX*/

/* Pesquisar */

.no-maps-info {
    background-color: #eee;
}

.pesquisar-page .no-maps-info {
    height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.pesquisar-page .no-maps-info span {
    z-index: 1;
}
.pesquisar-page .no-maps-info i {
    position: absolute;
    font-size: 300px;
    color: #ddd;
}

.pesquisar-page .form-group {
    margin-bottom: .5rem;
}
.pesquisar-page section {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
}
@media(min-width: 576px) {
    .secao-mapa {
        padding-left: 0;
    }
}
.pesquisar-page .secao-descritiva {
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: calc(100vh - 71px);
    overflow: auto;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
    z-index: 1;
}
.pesquisar-page .secao-descritiva section:not(:first-child) {
    margin-top: 2rem;
}
.card-link-anuncio {
    margin-bottom: 1rem !important;
}
.pesquisar-page .content-inner {
    padding-bottom: 0 !important;
}
.pesquisar-page footer {
    display: none;
}

.card-link-anuncio li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pesquisar-page .card-link-anuncio .card-body {
    margin: 0;
}
.pesquisar-page .card-link-anuncio img {
    object-fit: cover;
}

.pesquisar-page .map {
    min-height: calc(100vh - 70px);
}
.pesquisar-page .cabecalho-foto-anuncio, .ultimos-cadastrados .cabecalho-foto-anuncio  {
    position: relative;
    margin-bottom: 0;
}

.pesquisar-page .cabecalho-foto-anuncio figcaption, .ultimos-cadastrados .cabecalho-foto-anuncio figcaption {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 0 0 4px 4px;
    font-weight: 20;
    font-size: 1.4rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 20px;
}

.controle-mobile {
    display: none;
}

.pesquisar-page .secao-mapa {
    overflow: hidden;
    max-height: calc(100vh - 70px);
}

.previsualizar-anuncio-mapa .secao-mapa {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);

    background-color: #000;
}

.secao-mapa figure {
    display: none;
    max-width: 500px;
    margin: auto;
}
.previsualizar-anuncio-mapa .secao-mapa #link-previsualizar-anuncio {
    margin: auto;
}
.previsualizar-anuncio-mapa .secao-mapa figure {
    display: block;
}

.previsualizar-anuncio-mapa .map {
    min-height: inherit;
    height: inherit;
    flex-grow: 1;

    min-height: 100px;
}

@media(max-width: 575px) {
    .pesquisar-page .secao-descritiva,
    .pesquisar-page .controle-mobile-mapa,
    .pesquisar-page.mobile-secao-descritiva .map,
    .pesquisar-page .no-maps-info,
    .pesquisar-page.mobile-secao-descritiva .controle-mobile-lista {
        display: none;
    }
    .pesquisar-page.mobile-secao-descritiva .secao-descritiva,
    .pesquisar-page.mobile-secao-descritiva .controle-mobile-mapa {
        display: block;
    }

    .pesquisar-page ::-webkit-scrollbar { 
        display: none; 
    }

    .controle-mobile {
        display: block;

        position: fixed;
        bottom: 15px;
        z-index: 1000;
    }

    .controle-mobile-left {
        left: 15px;
    }

    .controle-mobile-right {
        right: 15px;
    }

    .pesquisar-page .floating-wpp {
        display: none;
    }

    .previsualizar-anuncio-mapa .secao-mapa figcaption {
        text-align: center;
        padding-left: 0;
    }
}

/* FIM Pesquisar */


/* NAVEGAÇÃO ÁREA LIVRE */

.layout-area-livre .breadcrumb-holder {
    background: #fff;
}

.layout-area-livre .breadcrumb {
    background: transparent;
    position: relative;
    z-index: 7;
    border-radius: 0;
    padding: 15px 0;
    margin-bottom: 0;
}

.layout-area-livre .breadcrumb li.breadcrumb-item {
    color: #aaa;
    font-weight: 300;
}

.favoritar {
    font-size: 1.2rem;
    border: none;
    background: inherit;
    padding: 0;
}
.favoritado .fa-heart {
    font-weight: 900;
    color: var(--red);
}

.anuncios-favoritados {
    position: fixed;
    z-index: 10000;
    background-color: #fff;
    padding: 1.5rem 1rem 5rem;
    height: 100%;
    width: 80vw;
    max-width: 300px;
    transform: translateX(300px);
    overflow: auto; 
    transition: transform .3s;
    right: 0;
    top: 70px;
}
.show-anuncios-favoritados {
    transform: translateX(0) !important;
    box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
}
.anuncios-favoritados figure, .anuncios-favoritados ul {
    margin-bottom: 0;
}
.card-favorito {
    margin: .5rem 0;
    padding: .5rem 0;
    border-bottom: 1px solid #efefef;
}

/*SIM OU NÃO*/
.fa-check-circle::before, .fa-times-circle::before {
    margin: .25em;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    /*fas*/
    font-weight: 900;
}
.fa-check-circle::before {
    color: #28a745;
}
.fa-times-circle::before {
    color: #dc3545;
}

/* 
================================================================================
ESTILOS PERSONALIZADOS PARA O GOOGLE MAPS
================================================================================
*/

.map {
    height: 500px;
    max-height: 70vh;
}

/* 
================================================================================
ESTILOS PERSONALIZADOS PARA O FILE INPUT
================================================================================
*/

.file-preview .fileinput-remove {
    top: 7px !important;
    right: 7px !important;
}

.icon-visible {
    top: -3px;
}

.btn-kv {
    color: #333 !important;
}
.file-drag-handle, .btn-kv {
    font-size: 1.5rem;
}

.fotos .krajee-default.file-preview-frame:first-child {
    box-shadow: 1px 1px 5px 0 green;
}

.fotos .krajee-default.file-preview-frame:first-child .kv-file-content::after {
    content: 'CAPA';
    font-weight: bold;
    color: green;
}

/* 
================================================================================
ESTILOS PERSONALIZADOS PARA A GALERIA
================================================================================
*/
.blueimp-gallery > .prev:hover, .blueimp-gallery > .next:hover, .blueimp-gallery > .close:hover {
    color: white !important;
    opacity: 1;
}

.blueimp-gallery > .prev, .blueimp-gallery > .next, .blueimp-gallery > .close  {
    color: white !important;
    opacity: 0.8;
}

.blueimp-gallery .title{
    width: 100%;
    padding-right: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 
================================================================================
BOTÃO WHATSAPP
================================================================================
*/
.floating-wpp-button{
    border-radius: 10px !important;
    width: 60px !important;
    height: 60px !important;
    animation: pulse 2s infinite;
}

@media(max-width: 576px) {
    .floating-wpp-button{
        width: 40px !important;
        height: 40px !important;
    }
}

/* 
================================================================================
DATATABLE
================================================================================
*/
.datatable-img {
    width: 100px;
}