/** COLORS **/
/** THEME COLORS **/
/** COMPONENTS COLORS **/
/* BOOTSTRAP CONFIGS */
@media (min-width: 0) {
  .imovel-lista .imoveis .banner {
    height: 200px;
    background-color: #999;
  }

  .imovel-lista .opcoes-busca {
    border-bottom: 0px;
    font-size: 12px;
  }

  .imovel-lista .opcoes-busca .opcoes-busca-item {
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    height: 100%;
    padding: 8px;
    cursor: pointer;
  }

  .imovel-lista .opcoes-busca .transacao {
    display: flex;
    align-items: flex-start;
  }

  .imovel-lista .opcoes-busca .transacao .transacao-item {
    margin: 0 8px;
  }

  .imovel-lista .opcoes-busca .transacao .transacao-item span {
    top: 0;
    position: relative;
  }

  .imovel-lista .opcoes-busca .transacao .transacao-item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #642D8F;
    transition: width 0.1s ease-in-out;
  }

  .imovel-lista .opcoes-busca .transacao .transacao-item.active {
    font-weight: 600;
  }

  .imovel-lista .opcoes-busca .transacao .transacao-item.active::after {
    width: 100%;
  }

  .imovel-lista .opcoes-busca .transacao .transacao-item:hover:not(.active) span {
    top: 2px;
  }

  .imovel-lista .opcoes-busca .transacao .mostrar-filtros-container.fixed {
    width: 100%;
    position: fixed;
    top: 12px;
    z-index: 999;
  }

  .imovel-lista .opcoes-busca .transacao .mostrar-filtros-container .mostrar-filtros {
    display: block;
    margin: 0 auto;
    box-shadow: 4px 1px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease-in-out;
  }

  .imovel-lista .opcoes-busca .modo-exibicao {
    display: none;
    color: #999;
  }

  .imovel-lista .opcoes-busca .modo-exibicao.active {
    color: #642D8F;
  }

  .panels .panelCard {
    cursor: pointer;
  }

  .panels .panelCard .card {
    height: 330px;
  }

  .panels .panelCard .card .card-title {
    margin: 1rem 2rem;
  }

  .panels .panelCard .card .panel-body {
    height: 217px;
  }

  .panels .panelCard .card .panel-body img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .panels .panelCard .card .panel-body .inline-YTPlayer {
    height: 100% !important;
    width: 100% !important;
    max-width: none !important;
    max-height: none !important;
  }

  .panels .panelCard .card .panel-body .inline-YTPlayer .mb_YTPlayer {
    height: 100% !important;
    padding-bottom: 0 !important;
  }

  .panels .panelCard .card .panel-body .panel-player {
    height: 100%;
  }

  .panels .panelCard .card .panel-footer {
    border-radius: 0 0 0.25rem 0.25rem;
    border: 0;
    padding: 0.43rem 0.75rem;
    height: 20%;
    align-items: center;
  }
}

/* MD */
@media (min-width: 768px) {
  .opcoes-busca {
    font-size: 14px;
  }

  .opcoes-busca .modo-exibicao {
    display: block;
  }

  .panels a .card {
    min-width: 50%;
  }
}

/* LG */
/* XL */
@media (min-width: 1200px) {
  .container-fluid {
    max-width: 1900px;
  }
}

/* Bricklayer calcula o tamanho da tela para exibição das colunas do CARD */
@media screen and (min-width: 300px) {
  .bricklayer-column-sizer {
    /* If page is greater than 300px, columns will be 20% wide. */
    width: 20%;
  }
}

@media screen and (min-width: 400px) {
  .bricklayer-column-sizer {
    /* If page is greater than 400px, columns will be 10% wide, which are more narrow. */
    width: 10%;
  }
}

@media screen and (min-width: 700px) {
  .bricklayer-column-sizer {
    /* If page is greater than 700px, columns will be 5% wide. That means there will be lots of columns */
    width: 33.3%;
  }
}

@media screen and (min-width:1200px) {
  .bricklayer-column-sizer {
    width: 33.33% !important
  }
}

.box {
  margin: 10px 0;
}