/* --------
--------- 
Loadings de edição de emitentes
---------
--------*/

/* ADICIONE ou SUBSTITUA estas regras no seu CSS existente */

.fundoCarregamentoGeral {
    position: fixed; /* Mantém fixo na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    background: #00000080;
    z-index: 9999; /* Garante que fique acima de tudo */
}

.carregamentoGeral {
    position: relative; /* Muda de absolute para relative */
    display: flex;
    justify-content: center;
    align-items: center;
    /* MANTENHA todas as suas propriedades visuais existentes: */
    width: 100px; 
    height: 50px;
    background-color: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-shadow: 1px 1px 1000px #4a4a4a;
    /* REMOVA: left, top, margin */
}

/* Mantenha TODAS as outras regras existentes (.iclix-loader, .spinner-c, animações, etc) */

.imagemCarregamento {
    position: absolute;
    bottom: 0px;
    left: -40px;
    z-index: 1;

    width: 60px;
    height: 60px;

    background-image: url('../ImagensClix/imagem_foguete.JPG');
    background-size: contain;
    background-repeat: no-repeat;

    animation: fogueteLocal 2s ease-in-out infinite;
    display: block;
}

/*background-image: url('../ImagensClix/imagem_foguete.JPG');*/

.textoCarregamento
{
    position: absolute;
    opacity: 1;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 250px;
    height: 150px;
    margin-left: 0px;
    text-align: center;
    margin: 55px 0 0 -120px;
    color: #f84a00;
    font-weight: bold;
    text-shadow: 1px 1px 3px #FFFFFF;
    display: none;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@media (max-width: 530px) {

    /*.imagemCarregamento
    {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 1;
        background-image: url('../img/carregamentoClix_small.png');
        width: 100px;
        height: 100px;
        margin: -75px 0 0 -50px;
        -webkit-animation: spin 5s linear infinite;
        animation: spin 5s linear infinite;
        display: none;
    }*/

    .textoCarregamento
    {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 1;
        width: 250px;
        height: 150px;
        margin-left: 0px;
        text-align: center;
        margin: 55px 0 0 -120px;
        color: #f84a00;
        font-weight: bold;
        text-shadow: 1px 1px 3px #FFFFFF;
        display: none;
        font-size: 14px;
    }

}

@keyframes fogueteLocal {
    0% {
      bottom: 50px;
      left: -40px;
      opacity: 0;
      transform: rotate(15deg) scale(1.1);
    }
    20% {
      opacity: 1;
    }
    100% {
      bottom: 220px;
      left: 220px;
      opacity: 0;
      transform: rotate(15deg) scale(1.5);
    }
  }

@font-face {
	font-family: 'Sifonn Pro';
	font-style: normal;
	font-weight: normal;
	src: local('Sifonn Pro'), url('fonts/SIFONN_PRO.woff') format('woff');
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.iclix-loader {
	font-size: 35px;
    /* font-family: 'siffon'; */
	color: #ff4d00;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 3px;
}

.spinner-c {
	width: 10px;
	height: 10px;
	border: 5px solid #ff4d00;
    border-top: 5px solid white;
    border-right: 5px solid #ff4d00;
    border-bottom: 5px solid #ff4d00;
    border-left: 5px solid #ff4d00;
	border-radius: 50%;
	/* background:
		conic-gradient(from 0deg, #ccc 0deg 54deg, #ff4d00 54deg 360deg) border-box;
	mask: linear-gradient(#fff 0 0) padding-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude; */
	padding: 8px;
	animation: spin 1s linear infinite;
    margin-top: 3px;
	box-sizing: border-box;
}