.loader-logo {
	width: 150px;
	animation: pulse 2s infinite ease-in-out;
}

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

/* Contenedor principal del loader INICIAL (solo en #app) */
#app>.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 99999;
}

/* Contenedor del logo y spinner INICIAL */
#app>.loader-container .loader-content {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo centrado (sin rotación) INICIAL */
#app>.loader-container .loader-logo {
    position: absolute;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

/* Spinner giratorio INICIAL */
	#app > .loader-container .loader-spinner {
		position: absolute;
		width: 160px;
		height: 160px;
		border: 1.5px;
		border-top: 1.5px solid rgba(37,99,235,1);
		border-radius: 50%;
		animation: spin 1.5s linear infinite;
		z-index: 1;
	}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader div {
    background-color: #00c9d0;
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: 0.5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

::-webkit-scrollbar {
    width: 2px !important;
}


.mud-nav-link.active:not(.mud-nav-link-disabled) {
    background-color: rgb(112 112 112 / 24%);
}

.mud-icon-default:active {
    color: var(--mud-palette-primary);
}
