
/* skeleton */
/* Efeito de Animação de Pulso */
@keyframes skeleton-loading {
  0% { background-color: #f2f2f2; }
  50% { background-color: #e0e0e0; }
  100% { background-color: #f2f2f2; }
}

.skeleton {
  animation: skeleton-loading 1.5s infinite ease-in-out;
  border-radius: 4px;
}

/* Estilo específico para os itens do menu no sidebar */
.sidebar-skeleton-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 15px;
}

.skeleton-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.skeleton-text {
  width: 70%;
  height: 12px;
}


/* skeleton iframe */
/* Efeito de pulsação */
@keyframes pulse {
    0% { background-color: #f2f2f2; }
    50% { background-color: #e6e6e6; }
    100% { background-color: #f2f2f2; }
}

.skeleton-container {
    padding: 2rem;
    width: 100%;
    background: #fff;
	display: block;
}

.skeleton-item {
    background-color: #f2f2f2;
    animation: pulse 1.5s infinite ease-in-out;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Esconde o iframe enquanto carrega */
.iframe-hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.iframe-visible {
    opacity: 1;
    transition: opacity 0.4s ease-in;
}

#iframe-wrapper.loading iframe {
    display: none;
}


/* Quando o carregamento terminar */
.loaded .skeleton-container {
    display: none;
}

.loaded #iframe-wrapper iframe {
    display: block;
}


/* Logos */
.s-logo-name {
	width: 170px;
}

.s-logo {
	width: 80px;
}


/* Ajuste Select2 */
.select2-container--default .select2-selection--single {
    border: 1px solid #e5e5e5 !important;
    border-radius: 4px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #5d657b !important;
    line-height: 46px !important;
    padding-left: 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
}	

.select2-container .selection{
    width: -webkit-fill-available;
}

.select-style-1 .select-position::after {
  display: none;
}	


/* --- MODAL --- */
.Suprapro-main-modal-overlay {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.5); 
  display: none; 
  align-items: 
  center; 
  justify-content: center;
  z-index: 100000;
}

.Suprapro-main-modal-content {
	background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 40px;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
}	

.Suprapro-main-modal-body {
    overflow: auto;
    height: -webkit-fill-available;
}	





