/* Tema LIGHT */
[data-bs-theme="light"] {
  --primary-color: #0000CC;
  --primary-color-rgb: 0, 0, 204;

  --bs-primary: var(--primary-color);
  --bs-primary-rgb: var(--primary-color-rgb);

  --bs-tertiary: #CD29C0;
  
}

[data-bs-theme="light"] .page-content {
  background: url(https://empresas.jobbol.com.br/assets/images/bg/picpoint.png) !important;
}

[data-bs-theme="light"] body {
  background: url(https://empresas.jobbol.com.br/assets/images/bg/picpoint.png) !important;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Tema DARK */
[data-bs-theme="dark"] {
 /* --primary-color: #CD29C0;
  --primary-color-rgb: 205, 41, 192;

  --bs-primary: var(--primary-color);
  --bs-primary-rgb: var(--primary-color-rgb); */
	
  --bs-tertiary: #0d6efd; 
}

html, body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, p, span, div, a, li, ul, label, small {
  font-family: 'Varela Round', sans-serif !important;
}

/* Utilitários personalizados */
.text-tertiary {
  color: var(--bs-tertiary) !important;
}
.bg-tertiary {
  background-color: var(--bs-tertiary) !important;
}
.border-tertiary {
  border-color: var(--bs-tertiary) !important;
}

.card-header-elevated {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 5px 0px,
              rgba(0, 0, 0, 0.14) 0px 2px 2px 0px,
              rgba(0, 0, 0, 0.12) 0px 3px 1px -2px;
  transition: box-shadow 0.2s ease 0s;
  margin: -20px;
  padding: 20px;
  border-radius: 5px 5px 0 0;
}


 .no-border-card-vaga{
  border: 3px;
  border-radius: 0px!important;
}

.animate-notification {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.icon-notification-menu{
  margin-left: 10px; 
}

.small-circle {
    width: 10px;
    height: 10px;
    vertical-align: top;
    fill: currentColor;
}

#etapaFluxo {
  transition: all 0.2s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

#etapaFluxo.fade-out {
  opacity: 0;
  transform: scale(0.98);
}


