/* Tarjetas, filas, previews, visor y editor. */

/* ============================================================
   SPINNER COMÚN
   ============================================================ */

.cloud-loading-spinner {
    width: 34px;
    height: 34px;

    display: block;

    border:
        3px solid rgba(
            77,
            145,
            195,
            0.18
        );

    border-top-color:
        #4d91c3;

    border-radius:
        999px;

    animation:
        cloud-loading-rotation
        0.75s linear infinite;
}

.cloud-loading-spinner.small {
    width: 22px;
    height: 22px;

    border-width: 2px;
}

.cloud-loading-spinner.large {
    width: 48px;
    height: 48px;

    border-width: 5px;
}

@keyframes cloud-loading-rotation {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   CARGA DE CARPETAS
   ============================================================ */

.cloud-folder-loading-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(var(--item-size), 1fr)
        );

    gap: 11px;
}

.cloud-folder-loading-card {
    height:
        calc(
            var(--thumb-height)
            + 47px
        );

    display: grid;
    place-items: center;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fafdff,
            #eef7fd
        );

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);
}

.cloud-folder-loading-card::after {
    content: "";

    position: absolute;
    inset: 0;

    transform:
        translateX(-100%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                255,
                255,
                255,
                0.76
            ),
            transparent
        );

    animation:
        cloud-loading-shimmer
        1.25s ease-in-out infinite;
}

.cloud-folder-loading-card
.cloud-loading-spinner {
    position: relative;
    z-index: 2;
}

@keyframes cloud-loading-shimmer {
    to {
        transform:
            translateX(100%);
    }
}


/* ============================================================
   PREVIEW PENDIENTE
   ============================================================ */

.file-preview-loading {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: grid;
    place-items: center;

    pointer-events: none;

    background:
        linear-gradient(
            145deg,
            #f3f9fd,
            #e8f3fa
        );

    transition:
        opacity 180ms ease;
}

.file-preview-loading.loaded {
    opacity: 0;
}

.file-preview-image {
    position: relative;
    z-index: 3;

    opacity: 0;

    transition:
        opacity 180ms ease;
}

.file-preview-image.loaded {
    opacity: 1;
}

.file-preview-image.failed {
    opacity: 0;
}


/* ============================================================
   CAMBIO DE CONTRASEÑA
   ============================================================ */

.password-settings-card {
    min-height: 0;

    margin-top: 15px;
    padding: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5faff
        );

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow-small);
}

.password-settings-card h3 {
    margin:
        0 0 5px;
}

.password-settings-card p {
    margin:
        0 0 14px;

    color:
        var(--text-muted);

    font-size:
        12px;
}

.password-settings-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(210px, 1fr)
        );

    gap: 11px;
}

.password-field {
    display: grid;
    gap: 5px;
}

.password-field span {
    color:
        var(--text-muted);

    font-size:
        12px;
}

.password-field-wrapper {
    position: relative;
}

.password-field-wrapper input {
    width: 100%;

    padding-right:
        45px;
}

.password-show-button {
    width: 36px;
    height: 32px;

    position: absolute;
    top: 4px;
    right: 4px;

    display: grid;
    place-items: center;

    color:
        var(--text-muted);

    background:
        #f3f8fc;

    border:
        1px solid var(--border);

    border-radius:
        8px;

    cursor: pointer;
}

.password-settings-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;

    margin-top: 14px;
}

.password-change-status {
    flex: 1;

    color:
        var(--text-muted);

    font-size:
        12px;
}

.carajillo-password-card {
    margin-top: 15px;
    padding: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f9fd
        );

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-small);
}

.carajillo-password-card h3 {
    margin: 0 0 5px;
}

.carajillo-password-card > p {
    margin: 0 0 15px;

    color: var(--text-muted);
    font-size: 12px;
}

.carajillo-password-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px, 1fr)
        );

    gap: 12px;
}

.carajillo-password-field {
    display: grid;
    gap: 5px;
}

.carajillo-password-field > span {
    color: var(--text-muted);
    font-size: 12px;
}

.carajillo-password-input {
    position: relative;
}

.carajillo-password-input input {
    width: 100%;
    padding-right: 43px;
}

.carajillo-password-eye {
    width: 34px;
    height: 32px;

    position: absolute;
    top: 4px;
    right: 4px;

    display: grid;
    place-items: center;

    color: var(--text-muted);
    background: #f2f8fc;

    border: 1px solid var(--border);
    border-radius: 8px;

    cursor: pointer;
}

.carajillo-password-footer {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;
}

.carajillo-password-status {
    min-width: 0;
    flex: 1;

    color: var(--text-muted);
    font-size: 12px;
}

.carajillo-password-status.error {
    color: var(--danger);
}

.carajillo-password-status.success {
    color: var(--success);
}

.carajillo-inline-spinner {
    width: 18px;
    height: 18px;

    display: inline-block;

    border: 2px solid rgba(255, 255, 255, 0.34);
    border-top-color: white;
    border-radius: 999px;

    animation: carajillo-password-spin 0.7s linear infinite;
}

@keyframes carajillo-password-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   BARRA SUPERIOR CON ACCIONES
   ============================================================ */

.carajillo-top-actions {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 7px;

    margin-left: 10px;
}

.carajillo-top-actions .button {
    min-height: 38px;

    white-space: nowrap;
}

.carajillo-top-actions .button.hidden {
    display: none !important;
}


/* En pantallas medianas dejamos desplazamiento horizontal. */
@media (max-width: 1250px) {
    .carajillo-top-actions {
        max-width: 48vw;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: thin;
    }
}


/* ============================================================
   BREADCRUMBS CLICABLES
   ============================================================ */

.carajillo-breadcrumbs {
    min-width: 0;
    flex: 1;

    display: flex;
    align-items: center;
    gap: 2px;

    overflow: hidden;
}

.carajillo-breadcrumb-part {
    min-width: 0;
    max-width: 220px;

    display: inline-flex;
    align-items: center;

    padding: 7px 8px;

    color: var(--text-soft);
    background: transparent;

    border: 1px solid transparent;
    border-radius: 9px;

    font: inherit;
    font-size: 13px;

    cursor: pointer;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    transition:
        color 120ms ease,
        background 120ms ease,
        border-color 120ms ease;
}

.carajillo-breadcrumb-part:hover {
    color: var(--primary);
    background: rgba(220, 239, 251, 0.72);
    border-color: rgba(169, 205, 229, 0.72);
}

.carajillo-breadcrumb-part.current {
    color: var(--text);
    font-weight: 680;
    cursor: default;
}

.carajillo-breadcrumb-separator {
    flex: 0 0 auto;

    color: #94adbf;
    font-size: 12px;
    user-select: none;
}


/* ============================================================
   POPUP DE OPERACIONES
   ============================================================ */

.carajillo-operation-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: grid;
    place-items: center;

    padding: 20px;

    background:
        rgba(62, 88, 106, 0.20);

    backdrop-filter:
        blur(4px);

    animation:
        carajillo-operation-overlay-in
        150ms ease both;
}

.carajillo-operation-overlay.hidden {
    display: none !important;
}

.carajillo-operation-card {
    width: min(
        480px,
        calc(100vw - 40px)
    );

    overflow: hidden;

    color: var(--text);

    background:
        linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.995),
            rgba(239, 248, 254, 0.995)
        );

    border: 1px solid #b9d1e2;
    border-radius: 18px;

    box-shadow:
        0 28px 85px
        rgba(45, 72, 92, 0.28);

    animation:
        carajillo-operation-card-in
        170ms ease both;
}

.carajillo-operation-header {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 17px 18px 13px;
}

.carajillo-operation-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    color: #317fb5;
    background:
        linear-gradient(
            145deg,
            #edf8ff,
            #dceefa
        );

    border: 1px solid #c0d9e9;
    border-radius: 13px;

    font-size: 20px;
}

.carajillo-operation-heading {
    min-width: 0;
    flex: 1;
}

.carajillo-operation-title {
    overflow: hidden;

    color: var(--text);
    font-size: 16px;
    font-weight: 760;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.carajillo-operation-message {
    margin-top: 3px;

    color: var(--text-muted);
    font-size: 12px;
}

.carajillo-operation-body {
    padding: 0 18px 18px;
}

.carajillo-operation-track {
    height: 11px;

    position: relative;
    overflow: hidden;

    background: #dcebf4;
    border: 1px solid #ccdee9;
    border-radius: 999px;

    box-shadow:
        inset 0 1px 2px
        rgba(54, 86, 109, 0.08);
}

.carajillo-operation-bar {
    width: 0;
    height: 100%;

    position: relative;

    background:
        linear-gradient(
            90deg,
            #68b3e6,
            #348dcc
        );

    border-radius: inherit;

    transition:
        width 350ms ease;
}

.carajillo-operation-bar::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 18%,
            rgba(255, 255, 255, 0.52) 45%,
            transparent 70%
        );

    transform: translateX(-120%);

    animation:
        carajillo-progress-shine
        1.15s linear infinite;
}

.carajillo-operation-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;

    margin-top: 8px;

    color: var(--text-muted);
    font-size: 11px;
}

.carajillo-operation-percent {
    flex: 0 0 auto;

    color: #337cac;
    font-weight: 700;
}

.carajillo-operation-card.success
.carajillo-operation-icon {
    color: #21825e;
    background: #e5f7ef;
    border-color: #b9e1d0;
}

.carajillo-operation-card.success
.carajillo-operation-bar {
    background:
        linear-gradient(
            90deg,
            #5bc39a,
            #2a9a70
        );
}

.carajillo-operation-card.error {
    border-color: #e4b8bd;
}

.carajillo-operation-card.error
.carajillo-operation-icon {
    color: #b6414e;
    background: #fff0f2;
    border-color: #e8bec3;
}

.carajillo-operation-card.error
.carajillo-operation-bar {
    background:
        linear-gradient(
            90deg,
            #e5838d,
            #c94d5a
        );
}

.carajillo-operation-error {
    display: none;

    margin-top: 12px;
    padding: 10px 11px;

    color: #9f3541;
    background: #fff2f4;
    border: 1px solid #edc8cc;
    border-radius: 10px;

    font-size: 12px;
    line-height: 1.45;
}

.carajillo-operation-card.error
.carajillo-operation-error {
    display: block;
}

.carajillo-operation-actions {
    display: none;
    justify-content: flex-end;

    margin-top: 12px;
}

.carajillo-operation-card.error
.carajillo-operation-actions {
    display: flex;
}


/* ============================================================
   INDICADOR PEQUEÑO DE NAVEGACIÓN
   ============================================================ */

.carajillo-navigation-loader {
    width: 20px;
    height: 20px;

    flex: 0 0 auto;

    display: none;

    margin-left: 5px;

    border:
        2px solid rgba(
            73,
            142,
            191,
            0.20
        );

    border-top-color:
        #498ebf;

    border-radius:
        999px;

    animation:
        carajillo-operation-spin
        0.72s linear infinite;
}

.carajillo-navigation-loader.active {
    display: block;
}


@keyframes carajillo-operation-overlay-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes carajillo-operation-card-in {
    from {
        opacity: 0;
        transform:
            translateY(8px)
            scale(0.985);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes carajillo-operation-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes carajillo-progress-shine {
    to {
        transform: translateX(135%);
    }
}

/* ============================================================
   OCULTAR LAS MIGAS AÑADIDAS POR EL PARCHE ANTERIOR
   ============================================================ */

#carajilloClickableBreadcrumbs,
#carajilloNavigationLoader,
#carajilloTopActions {
    display: none !important;
}


/* ============================================================
   NUEVA BARRA DE MIGAS
   ============================================================ */

#carajilloBreadcrumbsV2 {
    min-width: 80px;
    flex: 1 1 auto;

    display: flex;
    align-items: center;
    gap: 1px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
}

#carajilloBreadcrumbsV2::-webkit-scrollbar {
    display: none;
}

.carajillo-breadcrumb-v2 {
    min-width: 0;
    max-width: 230px;

    display: inline-flex;
    align-items: center;

    padding: 7px 8px;

    color: #527087;
    background: transparent;

    border: 1px solid transparent;
    border-radius: 9px;

    font: inherit;
    font-size: 13px;

    cursor: pointer;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    transition:
        color 120ms ease,
        background 120ms ease,
        border-color 120ms ease;
}

.carajillo-breadcrumb-v2:hover {
    color: #236fa4;
    background: #eaf5fc;
    border-color: #c3dceb;
}

.carajillo-breadcrumb-v2.current {
    color: #17344d;
    font-weight: 730;
    cursor: default;
}

.carajillo-breadcrumb-v2.current:hover {
    background: transparent;
    border-color: transparent;
}

.carajillo-breadcrumb-separator-v2 {
    flex: 0 0 auto;

    color: #90aabc;
    font-size: 12px;
    user-select: none;
}

#carajilloBreadcrumbSpinnerV2 {
    width: 18px;
    height: 18px;

    flex: 0 0 auto;

    display: none;

    margin: 0 5px;

    border:
        2px solid rgba(
            66,
            137,
            188,
            0.20
        );

    border-top-color: #4289bc;
    border-radius: 999px;

    animation:
        carajillo-breadcrumb-spin-v2
        0.70s linear infinite;
}

#carajilloBreadcrumbSpinnerV2.active {
    display: block;
}

@keyframes carajillo-breadcrumb-spin-v2 {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   BOTONES SUPERIORES DE ICONO
   ============================================================ */

#carajilloIconToolbarV2 {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 7px;
}

.carajillo-icon-action {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;

    display: inline-grid !important;
    place-items: center !important;

    padding: 0 !important;

    color: #325f7f;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f1f8fd
        );

    border: 1px solid #c5dbe9;
    border-radius: 11px;

    box-shadow:
        0 2px 5px
        rgba(55, 91, 116, 0.04);

    cursor: pointer;

    transition:
        transform 120ms ease,
        color 120ms ease,
        background 120ms ease,
        border-color 120ms ease,
        opacity 120ms ease;
}

.carajillo-icon-action:hover:not(:disabled) {
    color: #176aa4;
    background: #e9f5fc;
    border-color: #9fc9e4;

    transform: translateY(-1px);
}

.carajillo-icon-action.primary {
    color: white;
    background:
        linear-gradient(
            180deg,
            #4ba1db,
            #3287c4
        );

    border-color: #3186c2;
}

.carajillo-icon-action.primary:hover:not(:disabled) {
    color: white;
    background:
        linear-gradient(
            180deg,
            #4298d2,
            #277cb9
        );
}

.carajillo-icon-action.danger {
    color: #c84c59;
}

.carajillo-icon-action.danger:hover:not(:disabled) {
    color: #b63140;
    background: #fff0f2;
    border-color: #e8b9bf;
}

.carajillo-icon-action:disabled {
    display: inline-grid !important;

    opacity: 0.35;
    cursor: not-allowed;

    filter: grayscale(0.25);
}

.carajillo-icon-action.hidden {
    display: inline-grid !important;
}

.carajillo-icon-action svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    pointer-events: none;
}


/* ============================================================
   AJUSTES RESPONSIVOS
   ============================================================ */

@media (max-width: 1150px) {
    #carajilloIconToolbarV2 {
        max-width: 238px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: thin;
    }

    .carajillo-breadcrumb-v2 {
        max-width: 155px;
    }
}

@media (max-width: 760px) {
    .carajillo-breadcrumb-v2 {
        max-width: 105px;
    }

    #carajilloIconToolbarV2 {
        max-width: 145px;
    }
}

/* ============================================================
   DESACTIVAR LAS BARRAS EXPERIMENTALES ANTERIORES
   ============================================================ */

#carajilloTopActions,
#carajilloIconToolbarV2 {
    display: none !important;
}


/* ============================================================
   BARRA DE ICONOS ESTABLE
   ============================================================ */

#carajilloStableToolbar {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 7px;

    margin-left: 8px;
}

.carajillo-stable-action {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #365f7c;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f0f7fc
        );

    border: 1px solid #c3d9e8;
    border-radius: 11px;

    box-shadow:
        0 2px 6px
        rgba(48, 82, 106, 0.05);

    cursor: pointer;

    transition:
        transform 120ms ease,
        background 120ms ease,
        color 120ms ease,
        border-color 120ms ease,
        opacity 120ms ease;
}

.carajillo-stable-action:hover:not(:disabled) {
    color: #1971aa;
    background: #e7f4fc;
    border-color: #9fc9e4;

    transform: translateY(-1px);
}

.carajillo-stable-action.primary {
    color: white;
    background:
        linear-gradient(
            180deg,
            #50a4dc,
            #3187c4
        );

    border-color: #3186c2;
}

.carajillo-stable-action.primary:hover:not(:disabled) {
    color: white;
    background:
        linear-gradient(
            180deg,
            #459bd3,
            #287db8
        );
}

.carajillo-stable-action.danger {
    color: #c54c59;
}

.carajillo-stable-action.danger:hover:not(:disabled) {
    color: #ab3040;
    background: #fff0f2;
    border-color: #e5b7bd;
}

.carajillo-stable-action.location {
    color: #4c6fa7;
}

.carajillo-stable-action.location:hover {
    color: #365892;
    background: #edf1ff;
    border-color: #b9c7eb;
}

.carajillo-stable-action:disabled {
    opacity: 0.32;
    cursor: not-allowed;
}

.carajillo-stable-action svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    pointer-events: none;
}


/* ============================================================
   VENTANA DE NUEVA UBICACIÓN
   ============================================================ */

.carajillo-location-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;

    display: grid;
    place-items: center;

    padding: 20px;

    background:
        rgba(53, 78, 96, 0.22);

    backdrop-filter:
        blur(5px);
}

.carajillo-location-overlay.hidden {
    display: none;
}

.carajillo-location-modal {
    width: min(
        510px,
        calc(100vw - 40px)
    );

    overflow: hidden;

    background:
        linear-gradient(
            155deg,
            #ffffff,
            #f0f8fd
        );

    border: 1px solid #b9d1e2;
    border-radius: 18px;

    box-shadow:
        0 28px 85px
        rgba(42, 70, 91, 0.28);

    animation:
        carajillo-location-enter
        160ms ease both;
}

.carajillo-location-header {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 17px 18px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f4fafe
        );

    border-bottom: 1px solid var(--border);
}

.carajillo-location-symbol {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: #4470a7;
    background: #edf2ff;
    border: 1px solid #c7d2ee;
    border-radius: 12px;
}

.carajillo-location-symbol svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carajillo-location-heading {
    min-width: 0;
    flex: 1;
}

.carajillo-location-heading strong {
    display: block;

    color: var(--text);
    font-size: 16px;
}

.carajillo-location-heading span {
    display: block;

    margin-top: 3px;

    color: var(--text-muted);
    font-size: 12px;
}

.carajillo-location-close {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    color: var(--text-muted);
    background: white;

    border: 1px solid var(--border);
    border-radius: 10px;

    cursor: pointer;
}

.carajillo-location-body {
    padding: 18px;
}

.carajillo-location-field {
    display: grid;
    gap: 6px;

    margin-bottom: 13px;
}

.carajillo-location-field > span {
    color: #637f94;
    font-size: 12px;
}

.carajillo-location-field input[type="text"] {
    width: 100%;
}

.carajillo-location-help {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.45;
}

.carajillo-location-check {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 4px;
    padding: 12px;

    background: rgba(255, 255, 255, 0.74);
    border: 1px solid #d5e4ee;
    border-radius: 11px;

    cursor: pointer;
}

.carajillo-location-check input {
    width: 17px;
    height: 17px;
}

.carajillo-location-status {
    min-height: 19px;

    margin-top: 12px;

    color: var(--text-muted);
    font-size: 12px;
}

.carajillo-location-status.error {
    color: #b13b49;
}

.carajillo-location-status.success {
    color: #23805e;
}

.carajillo-location-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;

    margin-top: 10px;
}

.carajillo-location-saving {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.carajillo-location-spinner {
    width: 17px;
    height: 17px;

    display: inline-block;

    border:
        2px solid rgba(
            255,
            255,
            255,
            0.35
        );

    border-top-color: white;
    border-radius: 999px;

    animation:
        carajillo-location-spin
        0.7s linear infinite;
}

@keyframes carajillo-location-enter {
    from {
        opacity: 0;
        transform:
            translateY(8px)
            scale(0.985);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes carajillo-location-spin {
    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 1100px) {
    #carajilloStableToolbar {
        max-width: 240px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: thin;
    }
}
