﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap');
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/* =================================
            PREDEFINIDOS
================================= */

:root {
    /* Nueva Paleta */
    --color-primary: #F5C542;
    --color-secondary: #F7D46B;
    --color-tertiary: #F7D46B4D;
    --color-midnight: #2F2F2F;
    --color-foggy: #5A5A5A;
    --color-text: #3A3A3A;
    --color-selection: #FCF2C1;
    --color-background: #FFFDFA;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    --quick-transition-duration: 150ms;
    --transition-duration: 300ms;
    --slow-transition-duration: 600ms;
    /* Compatibilidad con estilos anteriores (mapeados a la nueva paleta donde sea posible) */
    --azul-claro: var(--color-midnight) !important; /* Reemplazamos el azul corporativo por el midnight */
    --azul-oscuro1: #112c3f !important;
    --azul-oscuro2: #001E30 !important;
    --verde: #97C792 !important;
    --gris-claro: #d9d9d9 !important;
    --gris-text: var(--color-foggy) !important;
    --rojo: #C93636 !important;
    /* Variables Radzen */
    --rz-primary: var(--color-primary) !important;
    --rz-secondary: var(--color-secondary) !important;
    --rz-text-title-color: var(--color-midnight) !important;
    --rz-text-color: var(--color-foggy) !important;
    --rz-on-info: white !important;
    --dxbl-pager-active-page-btn-bg: var(--color-selection) !important;
}

html, body {
    font-family: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px; /* Un poco más legible que 'smaller' */
    background-color: var(--color-background);
    color: var(--color-midnight);
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: var(--color-midnight);
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
}

/* =================================
            BOTONES MODERNOS
================================= */

.btn {
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px; /* rounded-full */
    transition-property: all;
    transition-duration: var(--transition-duration);
    cursor: pointer;
    display: inline-block;
    border: 1px solid transparent;
    text-align: center;
    line-height: 1.5;
}

.btn-primary, .btn-azul {
    background-color: var(--color-primary) !important;
    color: black !important;
    border: none !important;
    background-image: none !important; /* Quitar gradientes antiguos */
}

.btn-primary:hover, .btn-azul:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    filter: none !important; /* Quitar filtro antiguo */
}

.btn-primary:active, .btn-azul:active {
    opacity: 0.8;
    transform: translateY(0);
}

.btn-secondary, .btn-blanco {
    background-color: transparent !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-midnight) !important;
    outline: none !important;
}

.btn-secondary:hover, .btn-blanco:hover {
    background-color: var(--color-selection) !important;
}

.btn-tertiary {
    background-color: var(--color-tertiary) !important;
    color: var(--color-midnight) !important;
    font-weight: 600;
    border: 1px solid var(--color-secondary) !important;
}

.btn-tertiary:hover {
    background-color: var(--color-selection) !important;
}

.btn-sm {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
}

/* Botones de acción específicos */
.btn-rojo, .btn-danger {
    background-color: #fee2e2 !important;
    color: #991b1b !important;
    background-image: none !important;
    border-radius: 9999px !important;
    border: 1px solid #fecaca !important;
}

.btn-rojo:hover, .btn-danger:hover {
    background-color: #fecaca !important;
}

.btn-verde {
    background-color: var(--color-primary) !important;
    color: var(--color-midnight) !important;
    border: none !important;
}

.btn-verde:hover {
    opacity: 0.9;
}

/* =================================
            RESTO DE ESTILOS
================================= */

.disabled {
    filter: grayscale(1);
    pointer-events: none;
    opacity: 0.5;
}

.rz-button.rz-info.rz-shade-default {
    background-color: var(--color-midnight) !important;
    color: white;
    border-radius: 9999px;
}

.rz-dialog-content {
    height: 100% !important;
}

.rz-col-icon {
    cursor: pointer;
}

.content {
    padding-top: 1.1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid var(--color-primary);
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: #fff3cd;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #FFFDFA;
}

.loader-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.loader-text {
    color: #2F2F2F;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #F7D46B4D;
    border-top-color: #F5C542;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

main {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow: hidden;
}

.page {
    max-width: 100%;
}

.gridDocuments {
    margin-top: 20px;
    max-height: 60vh;
}

.sidebar {
    background-image: none !important;
    background-color: var(--color-background);
    border-right: 1px solid #e5e7eb;
}

.weak-center {
    align-items: center;
}

@media (max-width: 1335px) {
    .f-input-container {
        align-items: flex-start;
        flex-direction: column !important;
        gap: 0.5rem;
    }

    .filters-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .buttons-container {
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
    }
}

/* =================================
       DevExpress & Radzen Overrides
================================= */

.dxbl-grid {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: var(--shadow);
    background: white;
}

.dxbl-grid-table thead {
    background-color: var(--color-background) !important;
    color: var(--color-midnight) !important;
    border-bottom: 2px solid var(--color-primary) !important;
    font-weight: bold;
}

.dxbl-grid-table tbody > tr {
    background-color: white;
}

.impar {
    background-color: #fafafa !important;
}

.dxbl-tabs-item {
    margin-bottom: 1rem;
    background-color: white;
    color: var(--color-midnight) !important;
    border: 1px solid #e5e7eb;
    border-radius: 9999px !important;
    padding: 0.5rem 2rem !important;
    font-weight: 600;
}

.dxbl-tabs-item:hover {
    background-color: var(--color-selection) !important;
}

.dxbl-scroll-viewer-content .dxbl-active {
    background-color: var(--color-primary) !important;
    color: var(--color-midnight) !important;
    border-color: var(--color-primary) !important;
}

.dropdown-menu-active.custom-scrollbar {
    overflow-y: auto !important;
    overscroll-behavior: contain;
}

/* Icons styling adjustments if needed */
.icon-class {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

/* =================================
       NavMenu - Nueva Paleta
================================= */

.nav-menu {
    background-color: var(--color-background) !important;
}

.nav-menu-item,
.nav-menu a,
.nav-menu .nav-link {
    color: var(--color-midnight) !important;
    transition: all var(--quick-transition-duration) ease;
}

.nav-menu-item:hover,
.nav-menu a:hover,
.nav-menu .nav-link:hover {
    background-color: rgba(245, 197, 66, 0.3) !important;
    color: var(--color-midnight) !important;
}

.nav-menu-item.active,
.nav-menu a.active,
.nav-menu .nav-link.active,
.nav-menu-item[aria-current="page"],
.nav-menu a[aria-current="page"] {
    background-color: var(--color-primary) !important;
    color: var(--color-midnight) !important;
    font-weight: 600;
}

.nav-menu .logout-btn,
.nav-menu button {
    color: var(--color-midnight) !important;
    border-color: var(--color-tertiary) !important;
}

.nav-menu .logout-btn:hover,
.nav-menu button:hover {
    background-color: rgba(245, 197, 66, 0.3) !important;
    color: var(--color-midnight) !important;
}

/* Selector de empresa en header */
.company-selector select,
.company-selector input {
    border: 1px solid var(--color-tertiary) !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    background-color: white !important;
}

.company-selector select:focus,
.company-selector input:focus {
    border-color: var(--color-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px var(--color-tertiary) !important;
}

/* =================================
       NavMenu Icons
================================= */

.icon-admin {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-empresas {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-contabilidad {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-documentos {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7v8a2 2 0 002 2h6M8 7V5a2 2 0 012-2h4.586a1 1 0 01.707.293l4.414 4.414a1 1 0 01.293.707V15a2 2 0 01-2 2h-2M8 7H6a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2v-2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7v8a2 2 0 002 2h6M8 7V5a2 2 0 012-2h4.586a1 1 0 01.707.293l4.414 4.414a1 1 0 01.293.707V15a2 2 0 01-2 2h-2M8 7H6a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2v-2'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-usuarios {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-warning {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 9v4'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 17h.01'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 9v4'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 17h.01'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-gastos {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cg transform='translate(1 1) scale(1.15)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h2l2 9h9l3-7H7'/%3E%3Ccircle cx='9' cy='19' r='1'/%3E%3Ccircle cx='16' cy='19' r='1'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cg transform='translate(1 1) scale(1.15)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h2l2 9h9l3-7H7'/%3E%3Ccircle cx='9' cy='19' r='1'/%3E%3Ccircle cx='16' cy='19' r='1'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-ingresos {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 17l6-6 4 4 8-8'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14 7h7v7'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 17l6-6 4 4 8-8'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M14 7h7v7'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-documentos {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12h6M9 16h6M7 4h7l5 5v11a2 2 0 01-2 2H7a2 2 0 01-2-2V6a2 2 0 012-2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12h6M9 16h6M7 4h7l5 5v11a2 2 0 01-2 2H7a2 2 0 01-2-2V6a2 2 0 012-2z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon-configuracion {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.983 13.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 01-2.83 2.83l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09a1.65 1.65 0 00-1-1.51 1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 11-2.83-2.83l.06-.06a1.65 1.65 0 00.33-1.82 1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09a1.65 1.65 0 001.51-1 1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 112.83-2.83l.06.06a1.65 1.65 0 001.82.33H9a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 112.83 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9c0 .65.39 1.24 1 1.51H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.983 13.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 01-2.83 2.83l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09a1.65 1.65 0 00-1-1.51 1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 11-2.83-2.83l.06-.06a1.65 1.65 0 00.33-1.82 1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09a1.65 1.65 0 001.51-1 1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 112.83-2.83l.06.06a1.65 1.65 0 001.82.33H9a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 112.83 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9c0 .65.39 1.24 1 1.51H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
