:root {
    /*  Padrão  */
  --template1: #0084ff;
   /* Painel lateral */
  --template2: #008cff;
    /* cor hover */
  --template3: #0279e8; 
}
.field-icon {
  float: right;
  margin-left: -25px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
  margin-right: 8px;
  cursor: pointer;
}
#mensagem-recuperar{
  color: var(--template1) !important;
  font-size: 13px;

}

.select2-selection__rendered {
    font-weight: 500;
    line-height: 36px !important;
    border-radius: 7px !important;
    border: 1px solid #c9c7c7;
}
.select2-container .select2-selection--single {
    height: 39px !important;
}
.select2-selection__arrow {
    height: 38px !important;
}


hr.separador {
  border: 1px dotted #666;
  border-radius: 5px;
}

.select2-selection__rendered {
    line-height: 35px !important;
}
.select2-container .select2-selection--single {
    height: 39px !important;
}
.select2-selection__arrow {
    height: 38px !important;
}
hr.separador {
  border: 1px dotted #666;
  border-radius: 5px;
}
.text-verde{
  color:#0e9e29;
}
.ocultar{
  display:none;
}
.textareag{
    width:1000px;
    height:550px;
}
.side-menu .slide .side-menu__item:hover {
    background-color: var(--template2);

}
.main-sidemenu {
    background-color: #2A2E3F;
}
.app-sidebar {
    background-color: #2A2E3F;
}

.slide-menu {
    border-left: 4px solid #de7b53;
    background-color: #2a2e3f !important;
    color: #ffffff;
}
.side-menu__item a{
    background-color: var(--template2);
    color: #ffffff;
}

.side-menu__item:hover .side-menu__icon,
.side-menu__item:hover .side-menu__label,
.side-menu__item:hover .angle {
    color: #ffffff !important;
    fill: #ffffff !important;

}
.slide-item.active,
.slide-item:hover,
.slide-item:focus {
    text-decoration: none;
    color: var(--template1) !important;

}
.app-sidebar .side-item.side-item-category {
    color: #7660a7;
}
.main-sidebar-header {
    background: #2A2E3F !important;
}
.main-header {
    background-color: #2A2E3F !important;
}
.slide-item .app-sidebar .slide-menu .slide-item:before:hover {
    color: var(--template1) !important;
}
.slide.is-expanded .slide-menu a:hover:before {
   color: var(--template1) !important;
}
.slide:hover .side-menu__label,
.slide:hover .angle {
    color: #fff !important;
    fill: #fff !important;
}
.header-icon-svgs {
    color: #ffffff;
    fill: #ffffff;
}
.font-size-11{
    font-size: 11px !important;
}

#calendar {
    max-width: 1320px;
    margin: 0 auto;
}

.swal-button--confirm {
    background-color: #dc3545 !important; /* Vermelho estilo 'btn-danger' */
    color: white !important;
    border: none;
}

.swal-button--confirm:hover {
    background-color: #c82333 !important; /* Cor vermelha mais escura ao passar o mouse */
}

/* PAINEL CONDOMÍNIO */
/* Ocultar o radio button */
.animal-option input[type="radio"] {
    display: none;
}

/* Estilo do botão com ícone e nome */
.animal-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: 0.3s;
}

/* Ícone e nome normal */
.animal-option i {
    font-size: 24px;
    color: #444;
}

.animal-option span {
    margin-top: 5px;
    font-size: 14px;
    color: #444;
}

/* Estilo quando o radio button está selecionado */
.animal-option input[type="radio"]:checked + i {
    color: #007bff; /* Azul para o ícone selecionado */
}

.animal-option input[type="radio"]:checked + span {
    font-weight: bold;
}

select option[disabled] {
    color: #888; /* Cor mais clara para indicar separador */
    font-weight: bold;
    text-align: center;
}


.alert {
    font-size: 16px; /* Aumenta a legibilidade */
    font-weight: bold; /* Destaca a mensagem */
    transition: opacity 0.5s ease-in-out; /* Suaviza a transição */
}
.alert-success {
    background-color: #d4edda; /* Verde claro */
    border-color: #c3e6cb;
    color: #155724;
}
.alert-danger {
    background-color: #f8d7da; /* Vermelho claro */
    border-color: #f5c6cb;
    color: #721c24;
}
.alert-warning {
    background-color: #fff3cd; /* Amarelo claro */
    border-color: #ffeeba;
    color: #856404;
}


.select2-container .select2-dropdown .select2-results {
    max-height: 200px; /* ou o valor que quiser */
    overflow-y: auto;
}


#payment-status {
    padding: 8px;
    border-radius: 4px;
    background-color: #f8f9fa;
    margin-top: 15px;
}

#payment-status .bi {
    margin-right: 5px;
}

#spinner-border {
    width: 3rem;
    height: 3rem;
    margin: 20px auto;
    display: block;
}

/* Stepper (Indicador de Etapas) */
.stepper {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    position: relative;
    color: #6c757d;
  }
  
  .step.active {
    color: #0d6efd;
    font-weight: bold;
  }
  
  .step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 2px;
    background: #dee2e6;
    z-index: -1;
  }
  
  .step:last-child::after {
    display: none;
  }
  
  .step.active::after {
    background: #0d6efd;
  }