.lnkicono{
    text-decoration: none;
}
/*-- dialog --*/
.loading-spinner {
    width: 50px;
    height: 50px;
	margin: 100px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

dialog {
    text-align: center;
    padding: 20px;
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.3);
}
/*-- /dialog --*/