/*alerts*/
.fissed{
	width: 250px;
	position: fixed;
	right: 25px;
	top: 100px;
	z-index: 1050;
}
.inputTrans{
	width: 100%;
	border: 0;
	background: none;
	box-shadow: none;
}

/*loader*/

.loadCont{
	width:100%;
	height: 100%;
	position: fixed;
	background: rgba(255, 255, 255, 0.7);
	z-index: 1050;
	top: 0;
	left: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.loadCont .progress{
	width: 100%;
	height: 5px;
	position: fixed;
	top: 0;
	border-radius: 0;
}
.loadCont .progress .progress-bar{
	background: var(--color-principal);
}
.loadCont .loadTxt{
	width:100%;
	color: var(--color-principal);
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 900;
}
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid var(--color-principal); /* Blue */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin 2s linear infinite;
	margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
