﻿/* =========================================================
   BASE GLOBAL
   ========================================================= */

body {
    color: #C0C0C0;
    font-family: Segoe UI, Arial, sans-serif;
    background: rgb(33,33,33);
    position: relative;
    overflow-x: hidden;
}

    /* fondo base: SIN transición */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: var(--bg-url);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        z-index: -1;
    }

    /* SOLO cuando queremos fade */
    body.fade-bg::before {
        transition: opacity 0.6s ease;
    }

    /* estado final */
    body.bg-loaded::before {
        opacity: 1;
    }



/* Hacer el padding RESPONSIVE (clave) */
/* celulares chicos */
@media (max-width: 440px) {
    .download-content.con-login {
        padding-top: 70px !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    .download-content.sin-login {
        padding-top: 0px !important;
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* celulares normales */
@media (min-width: 441px) and (max-width: 768px) {

    .download-content {
        padding-top: 20px !important;
        padding-left: 16px;
        padding-right: 16px;
    }
}


@media(max-width:768px) {

    .download-content {
        padding-left: 16px;
        padding-right: 16px;
    }
}




/* =========================================================
   BANNER PÚBLICO
   ========================================================= */
.banner {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2A2D45;
}

/* =========================================================
   TÍTULOS / LABELS
   ========================================================= */

.label-chk {
    color: #C0C0C0;
    font-size: 12px;
    font-weight: normal;
}


.chCont {
    padding-left: 10px;
    padding-bottom: 8px;
    height: 25px;
}


.labelGrande {
    font-size: 15px;
    display: block;
    width: 100%;
    color: #C0C0C0;
    font-weight: normal;
    text-align: center;
}


    .labelGrande .purple-text {
        color: #800080;
        font-weight: 700;
    }

.gray-text {
    color: #787878;
    font-size: 14px;
    font-weight: 400;
}

.lila-text {
    color: #b39ddb;
    font-size: 14px;
    font-weight: 400;
}

/* =========================================================
   INPUTS / TEXTBOX
   ========================================================= */
.textbox {
    background: #07070e;
    border: 1px solid #282729;
    color: #c0c0c0;
    padding: 8px 10px;
    border-radius: 6px;
    outline: none;
    margin-top: 4px;
}

    .textbox.full {
        width: 100%;
        box-sizing: border-box;
    }

    .textbox.fixed {
        box-sizing: content-box;
        width: auto;
    }

    .textbox.no-borderbox {
        box-sizing: content-box;
        width: 10%;
    }

    /* foco */
    .textbox:focus {
        border-color: #800080;
        box-shadow: 0 0 0 1px rgba(128,0,128,0.5);
    }

    /* blindaje visual */
    .textbox:focus,
    .textbox:active,
    .textbox:invalid {
        background-color: #07070e !important;
        color: #c0c0c0;
    }

 .container.body-content input.textbox.textbox-email-edit {
    width: 320px !important;
    max-width: 320px !important;
}


/* autofill */
input.textbox:-webkit-autofill,
input.textbox:-webkit-autofill:hover,
input.textbox:-webkit-autofill:focus,
textarea.textbox:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #0a0a0a inset !important;
    -webkit-text-fill-color: #c0c0c0 !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* =========================================================
   BOTONES BASE
   ========================================================= */

.btn-warning {
    background: #3a2f00;
    color: #ffcc66;
    border: 1px solid #7a5a00;
}

    .btn-warning:hover {
        background: #4a3a00;
    }

.btn-cambio-pc {
    background: rgba(78,92,160,.20);
    color: #d0d0d0; /* texto gris claro */
    border: 1px solid rgba(125,105,220,.25);
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
}

   .btn-cambio-pc:hover {
        background: rgba(78,92,160,.30);
        /*color: #ffffff;*/
        border-color: rgba(125,105,220,.45);
        box-shadow: 0 0 12px rgba(125,105,220,.18);
    }


.btn-activar-licencia {
    background: rgba(78,92,160,.20);
    color: #d0d0d0; /* texto gris claro */
    border: 1px solid rgba(125,105,220,.25);
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-activar-licencia:hover {
        background: rgba(78,92,160,.30);
        /*color: #ffffff;*/
        border-color: rgba(125,105,220,.45);
        box-shadow: 0 0 12px rgba(125,105,220,.18);
    }

.btn-activar-licencia,
.btn-cambio-pc {
    font-family: 'Segoe UI',sans-serif;
    font-size: 13px;
    font-weight: 500;
}






/* =========================================================
   FORM / CHECKBOX
   ========================================================= */
.container hr {
    border: 0;
    border-top: 1px solid #494949;
}

.container.body-content input.textbox,
.container.body-content textarea.textbox {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

    /* FIX overflow horizontal en ComprarLicencia */
    .container.body-content {
        max-width:max-content ;
        margin: auto;
    }

    @media (max-width: 768px) {
        .container.body-content {
            max-width: 100%;
        }
    }



    .container.body-content input.textbox,
    .container.body-content textarea.textbox {
        display: block;
    }



    /* FIX width manual */
    .container.body-content input.textbox.fixed,
    .container.body-content textarea.textbox.fixed {
        width: auto !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }
        .container.body-content input.textbox.fixed {
            min-width: 300px !important; 
            flex: none !important;
        }

input[type="checkbox"] + label {
    font-weight: normal;
}

input[type="checkbox"] {
    margin-right: 6px;
    vertical-align: text-top;
}

/* =========================================================
   PANELES
   ========================================================= */

.panel-info {
    margin-top: 20px;
    padding: 16px;
    background: #07070e;
    border: 1px solid #282729;
    border-radius: 6px;
}

.panel-decision {
    border: 1px dashed #696969;
    padding: 10px;
    margin-top: 15px;
}

.labelDecision {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding-right: 15px;
    white-space: pre-line; /* respeta saltos de línea de vbCrLf */
    line-height: 1.5; 
    padding-bottom: 8px;
}

/* =========================================================
   LICENCIAS (listas simples)
   ========================================================= */

.licencia-item {
    padding: 6px 10px;
    margin-bottom: 4px;
    background-color: #202230;
    color: #C0C0C0;
    cursor: pointer;
    border: 1px solid #494949;
    border-radius: 4px;
}

    .licencia-item:hover {
        background-color: #2c2f45;
    }

.licencia-desactivada {
    opacity: 0.55;
    filter: grayscale(100%);
}

/* =========================================================
   ACTIVACIONES  
   ========================================================= */

/* Contenedor activaciones */
.activacion-activa {
    color: #c0c0c0;
    color: #cfcfcf;
}

.activacion-revocada {
    color: #7a7a7a;
    color: #b8b8b8;
}

.activaciones {
    font-size: 13px; 
    line-height: 1.1;
    margin-top: 16px;
    margin-left:20px;
}

/* Título */
.activaciones-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.9;
}

/* Línea individual */
.activacion-linea {
    margin-left: 13px;
    margin-bottom: 4px;
}




/* =========================================================
   GLASS PANEL (BASE REUTILIZABLE)
   ========================================================= */

.glass-panel {
    background: #0F1020; /* rgba(20, 20, 20);*/
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 18px 20px;
    opacity: 0.9;
}





/* =========================================================
   LICENCIA CARD – BASE (REDEFINIDA MÁS ADELANTE)
   ========================================================= */

.licencia-card {
    position: relative;
    padding: 14px;
    margin-bottom: 12px;
    background: #07070e; /*#1a1c26;*/
    /*border: 1px solid #494949;*/
    border-radius: 8px;
}

    .licencia-card:hover {
        transform: translateY(-2px);
        transition: all 0.2s ease;
    }

    /* ActivarLicencia: panel de licencia SIN sombra ni movimiento */
    .activar-licencia-page .licencia-card {
        box-shadow: none;
    }
    .activar-licencia-page .licencia-card:hover {
        transform: none;
        box-shadow: none;
    }

.licencia-action-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    z-index: 10;
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    padding-right: 8px; 
    right: 5px;
    left: auto;
}






.subtitulo-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.subtitulo {
    display: block;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #e6e6e6;
}

.subtitulo-sin {
    display: block;
    text-align: left;
    font-size: 13px;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #787878;
}





.home-btn-soft {
    font-weight: 400; /* normal */
    color: #AAA9AB;
}



/* Link Ofrecer refound */
.lic-refund-wrapper {
    margin-top: 10px;
    text-align: left;
}

.lic-refund-link {
    font-size: 12px;
    color: #6b5a6f; /* púrpura clarito */
    text-decoration: none; /* 🔥 quita subrayado */
    cursor: pointer;
}

    /* hover */
    .lic-refund-link:hover {
        color: #a78bfa; /* hover más SUPERBOX */
        text-decoration: none; 
    }


/* PanelNombre – legacy inline  */
#MainContent_PanelNombre {
    text-align: center;
}

    /* Label inline */
    #MainContent_PanelNombre .labelGrande,
    #MainContent_PanelNombre .labelChica {
        display: inline;
    }

    /* Inputs inline y chicos */
    #MainContent_PanelNombre input.textbox,
    #MainContent_PanelNombre input.btn {
        display: inline-block;
        vertical-align: middle;
        width: 300px;
        max-width: 300px;
    }

.container.body-content #MainContent_PanelNombre input.textbox {
    width: 300px !important;
    max-width: 300px !important;
    display: inline-block !important;
}

/* =========================
   Amplificador Cambios PC
   ========================= */
#MainContent_PanelNombre .pc-amplificador-inline,
.pc-amplificador-inline {
    margin-top: 6px; 
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* textbox chico (3 dígitos) */
/* =========================
   FIX DEFINITIVO: textbox amplificador
   ========================= */
/* Gana a .container.body-content input.textbox */
.container.body-content #MainContent_txtAmplificador {
    width: 48px !important;
    max-width: 48px !important;
    min-width: 48px !important;
    text-align: center;
    padding: 6px 4px;
}
/* botones compactos */
.pc-amplificador-btn {
    padding: 4px 8px;
    font-size: 13px;
}



/* estilos de MisLicencias: */
.licencia-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.licencia-title {
    font-size: 18px;
    font-weight: 600;
}
.licencia-actions {
    display: flex;
    gap: 6px;
}
.licencia-resumen {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.lic-resumen-item {
    background: rgba(255,255,255,0.03); /* mucho más sutil */
    padding: 8px 20px; 
    line-height: 1.6; 
    border-radius: 6px; 
    font-size: 13px;
    color: #cfcfcf;
    cursor: default; 
    user-select: none;
    margin-bottom: 5px;
}

.licencia-subinfo {
    font-size: 13px;
    color: #9a9a9a;
    margin-bottom: 0px;
}

    .licencia-subinfo.precio {
        color: #c7b7ff;
        font-size: 13px;
        margin-top: 2px;
        margin-bottom: 18px;
    }

.licencia-datos {
    margin: 10px 0 12px;
}

.lic-dato-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
}

.lic-dato-key {
    color: #9a9a9a;
}

.lic-dato-value {
    color: #dcdcdc;
}

    .lic-dato-value.estado {
        font-weight: 600;
    }

/* Estado por color (usa tus clases existentes) */
.licencia-card.active .lic-dato-value.estado {
    color: #4caf50;
}

.licencia-card.expired .lic-dato-value.estado {
    color: #e57373;
}

.licencia-card.pending .lic-dato-value.estado {
    color: #ffb74d;


}
/* =========================
   Estados de Licencia
   ========================= */

/* 🟢 Activa */
.estado-activa {
    font-weight: 500;
}

/* 🟡 Pendiente de activación */
.estado-pendiente {
    font-weight: 500;
}

/* 🟠 Por expirar (warning fuerte) */
.estado-por-expirar {
    font-weight: 500;
}

/* 🔴 Expirada */
.estado-expirada {
    font-weight: 500;
}

/* 🔴 Revocada (más dura que expirada) */
.estado-revocada {
    font-weight: 500;
}


/*  boton cambioPC */
.licencia-resumen-action {
    margin-top: 5px;
}

.btn-cambio-pc.inline {
    padding: 4px 10px;
    font-size: 13px;
}


/*======================================
    Soporte.vb
========================================*/
.label-msg-ok {
    color: #7CFFB2;
}

.label-msg-error {
    color: #FF8A8A;
}


/* ActivarLicencias - panelNombreVertical */
.info-text {
    max-width: 70%;
    line-height: 1.4;
}







/* =========================
    Comprar Licencias 
    =======================*/

/* Micro-animación suave al entrar (muy sutil, pro)
    Nada exagerado.
    Solo “aparecer flotando”. */
@keyframes fadeUp {
    from
{
    opacity: 0;
    transform: translateY(12px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}



/* Header Liviano */
.sales-header {
    text-align: center;
    margin-bottom: 10px;
}
    .sales-header .label {
        font-size: 15px;
        opacity: 0.9;
    }
    
    .sales-header .app-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 8px;
    }


.banner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px; 
}


    /* Hover sutil */
    .license-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    }


.plan-features {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    font-size: 14px;
    opacity: .9;
}

    .plan-features li {
        margin: 4px 0;
    }

        .plan-features li::before {
            content: "• ";
            color: #9c6cff;
        }





/* Validar Token*/
.box-actions {
    margin-top: 16px; 
    text-align: center; 
}

.lic-plan-title {
    font-size: 16px;
    font-weight: 600;
    color: #d0d0d0;
    margin-bottom: 6px;
    color: #8fb7ff;
    line-height: 1.3;
}


.lic-plan-wrapper {
    padding: 0px 0px 8px 0px;
}




/*   Solicitar Acceso */
.actions-split {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .actions-split > :last-child {
        margin-left: auto;
    }











/* ======================================= */
/* TOAST FLOTANTE   arriba derecha         */
/* ======================================= */
.toast {
    position: fixed;
    top: 56px;
    right: 18px;
    background: #0F1020;
    opacity:0.95;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eaeaea;
    font-size: 13px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    animation: toastIn 0.25s ease-out;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.35;
}

    .toast.hidden {
        display: none;
    }

    .toast.success {
        border-left: 3px solid #a78bfa; 
    }

    .toast.error {
        border-left: 3px solid #ff5c5c;
    }

/* Animación */
@keyframes toastIn {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}






/* ======================================= */
/*  🔥 FORZAR TOAST COMO MODAL CENTRADO    */
/* ======================================= */
#modalMsg {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 99999;
}

    #modalMsg.hidden {
        display: none;
    }

    /* Caja modal */
    #modalMsg .modalMsg-content {
        width: 420px;
        max-width: calc(100% - 40px);
        background: #0F1020;
        opacity: 0.95;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 18px 20px 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        animation: modalPop 0.18s ease-out;
        text-align: center;
    }

/* Icono */
.modalMsg-icon {
    font-size: 25px;
    margin-bottom: 18px;
}

/* Texto */
.modalMsg-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    white-space: pre-line; 
}

/* Botón */
.modalMsg-btn {
    min-width: 140px;
}

/* Animación */
@keyframes modalPop {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* ========================= */
/* CONFIRM MODAL (DARK UI)   */
/* ========================= */

.confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .confirm-overlay.hidden {
        display: none;
    }

.confirm-modal {
    width: 420px;
    max-width: calc(100% - 40px);
    background: #0F1020;
    opacity: 0.95;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 18px 20px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: confirmPop 0.18s ease-out;
}

/* Header */
.confirm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.confirm-icon {
    font-size: 18px;
}

.confirm-title {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
}

/* Body */
.confirm-body {
    margin-bottom: 18px;
}

.confirm-message {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 6px;
}

.confirm-detail {
    font-size: 13px;
    color: #aaa;
}

/* Actions */
.confirm-actions {
    display: flex;
    gap: 10px;
}

    .confirm-actions .btn {
        min-width: 110px;
    }

    .confirm-actions .btn-primary {
        margin-left: auto;
    }

/* Animation */
@keyframes confirmPop {
    from {
        transform: scale(0.96);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}






/* Trials */
/* download trial*/
.page-container {
    max-width: 900px;
    margin: 0 auto;
    color: #C0C0C0;
    padding-top: 70px; 
}

.title {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    margin-top: 20px;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: #bfbfbf;
}

.trial-box {
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px 32px;
    border-radius: 8px; 
    margin-top: 30px;
    max-width: 820px; 
    margin-left: auto;
    margin-right: auto;
}

    .trial-box h3 {
        font-size: 18px;
        margin-top: 18px;
        margin-bottom: 10px;
        color: white;
    }

    .trial-box ul {
        font-size: 15px; 
        line-height: 1.5;
    }


ul li {
    margin-bottom: 6px;
}

.btn-big {
    display: inline-block;
    padding: 14px 22px;
    margin: 6px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1.5px solid #494949;
}

    .btn-big:hover {
        background: #A800A8;
    }


page-container.page-downloadtrial.page-downloadupdate {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px 30px 20px; 
}

form {
    background: transparent !important;
    backdrop-filter: none !important;
}








/* botones en panel licencia, editar nombre cliente, botones debajo textbox con aire */
@media (max-width: 768px) {

    .edit-nombre {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .edit-nombre .textbox {
            margin-bottom: 8px;
        }

        .edit-nombre .home-btn {
            margin-top: 0px;
        }
}



    .label-msg {
        white-space: pre-line;
    }


    /* Download Update*/
    .version-label {
        display: inline-block;
        margin-top: 15px;
        font-size: 13px;
        color: #d6c8ff;
        background: rgba(140, 90, 255, 0.08);
        border: 1px solid rgba(140, 90, 255, 0.25);
        padding: 6px 12px;
        border-radius: 8px;
        letter-spacing: 0.3px;
        margin-left: 6px;
    }

        .version-label:hover {
            color: #ffffff;
            border-color: rgba(180, 120, 255, 0.4);
            box-shadow: 0 0 10px rgba(180, 120, 255, 0.15);
        }

        .version-label b {
            color: #ffffff;
            font-weight: 600;
        }

    .trial-texto {
        padding-left: 6px;
    }

    .trial-warning .trial-ok {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .icon-warning {
        color: #facc15; 
        font-size: 18px;
    }

    .icon-ok {
        color: #22c55e; 
        font-size: 18px;
    }





    .download-layout {
        display: flex;
        gap: 0px;
        align-items: flex-start;
    }

    .download-left {
        flex: 1;
    }

    .download-right {
        flex: 0 0 360px;
        padding-left: 30px;
        border-left: 1px solid rgba(255,255,255,0.08);
    }

    @media(max-width:900px) {

        .download-layout {
            flex-direction: column;
        }

        .download-right {
            width: 100%;
            flex: 1;
            padding-left: 0;
            margin-top: 28px;
            padding-top: 22px;
            border-left: none;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
    }




.pill-founder {
    display: inline-block;
    margin-top: 19px;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 5px;
    color: #C0C0C0;
    vertical-align: middle;
}

.pill-founder-SOLO {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    background: #b98200;
    color: #000000;
    vertical-align: middle;
}





    .trial-request-panel {
        text-align: center;
        padding: 30px;
        border-radius: 18px;
        background: linear-gradient( 180deg, rgba(78,140,255,.12), rgba(78,140,255,.04) );
        border: 1px solid rgba(78,140,255,.25);
    }

    .trial-request-icon {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .trial-request-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .trial-request-text {
        font-size: 14px;
        opacity: .85;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto;
    }

.lic-expired {
    color: #999;
    font-size: 12px;
    font-style: italic;
}


.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    vertical-align: middle;
    border: 2px solid rgba(255,255,255,.15);
    border-top: 2px solid #b86cff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}