-
PASE PRIVADO SOLICITADO
+
PASE PRIVADO SOLICITADO
Contenido restringido para Curadores del Búnker. Por favor, introduce tu credencial de acceso.
diff --git a/styles/main.css b/styles/main.css
index e855bcd..a70fb4a 100644
--- a/styles/main.css
+++ b/styles/main.css
@@ -376,6 +376,29 @@ body {
.notification-success { border-left: 5px solid #4CAF50; }
.notification-error { border-left: 5px solid #f44336; }
+/* Loader */
+.loader {
+ width: 16px;
+ height: 16px;
+ border: 2px solid var(--bg-dark);
+ border-bottom-color: var(--accent-gold);
+ border-radius: 50%;
+ display: inline-block;
+ box-sizing: border-box;
+ animation: rotation 1s linear infinite;
+ margin-right: 10px;
+ vertical-align: middle;
+}
+
+@keyframes rotation {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+
/* Responsive */
@media (max-width: 992px) {
.try-on-interface {