/* tasador.css - Modern & Clean Design */

.tasador-main {
  background: transparent !important;
}

/* Header Adjustments (Specific to Tasador page or overriding globally) */
.page-simulador .header {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.page-simulador .nav-link {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tasador-hero {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: transparent !important;
  color: #0F172A;
}

.tasador-hero .sim-hero-title {
  color: #0F172A;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
}

.tasador-hero .sim-hero-subtitle {
  color: #475569;
  font-weight: 400;
  font-size: 1.1rem;
}

.tasador-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.sim-calc-header-row {
  background-color: #ffffff !important;
  border-bottom: 1px solid #F1F5F9 !important;
  padding: 1.5rem !important;
}

.sim-calc-header-row h3 {
  color: #0F172A !important;
  font-size: 1.25rem !important;
}

/* Form Layout */
.tasador-grid-modern {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding: 2rem;
}

.col-12 { grid-column: span 12; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

/* Input Styles */
.sim-label {
  color: #334155;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.input-modern {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  color: #0F172A;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.input-modern::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.input-modern:focus {
  outline: none;
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.tas-select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
  cursor: pointer;
  appearance: none;
}

/* Button & Actions */
.action-group {
  margin-top: 1rem;
  text-align: center;
}

.btn-modern {
  background: #22458A; /* Dark Corporate Blue */
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -2px rgba(37, 99, 235, 0.2);
}

.btn-modern:hover {
  background: #183267;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(34, 69, 138, 0.3), 0 4px 6px -4px rgba(34, 69, 138, 0.3);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
}

.trust-badges svg {
  width: 16px;
  height: 16px;
  color: #10B981; /* Success Green */
}

/* Responsive */
@media (max-width: 768px) {
  .tasador-grid-modern {
    padding: 1.5rem;
  }
  .col-6, .col-4, .col-3 { 
    grid-column: span 12; 
  }
  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}

/* --- Loader & Spinner --- */
.tasador-loading-section {
  text-align: center;
  padding: 4rem 1rem;
}

.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.modern-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #E2E8F0;
  border-top-color: #2563EB;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  color: #334155;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0;
}

/* --- Informe Card (PDF Target) --- */
.tasador-results-section {
  padding: 2rem 1.5rem 4rem;
}

.informe-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  text-align: left;
  /* Important for PDF generation */
  padding: 0;
  margin-bottom: 2rem;
}

.informe-body {
  padding: 2.5rem 2rem;
}

.informe-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.informe-ficha {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.informe-ficha h4 {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #cbd5e1;
  padding-bottom: 0.5rem;
}

.ficha-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ficha-lista li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #cbd5e1;
}

.ficha-lista li:last-child {
  border-bottom: none;
}

.ficha-label {
  color: #64748b;
  font-weight: 500;
}

.ficha-val {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}

.informe-main-price {
  text-align: center;
  margin-bottom: 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  border: 1px solid #bae6fd;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-label {
  display: block;
  color: #475569;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.price-value-uf {
  color: #2563EB;
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  line-height: 1;
}

.price-value-clp {
  color: #0F172A;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.informe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.informe-box {
  background: #F8FAFC;
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  text-align: center;
}

.box-label {
  display: block;
  color: #64748B;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.box-value {
  display: block;
  color: #0F172A;
  font-size: 1.25rem;
  font-weight: 700;
}

.informe-summary {
  text-align: justify;
}

.informe-summary h4 {
  color: #0F172A;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.informe-summary p {
  color: #334155;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.informe-actions {
  text-align: center;
}

.btn-pdf-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: none;
  margin-bottom: 1rem;
}

.btn-pdf-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (max-width: 640px) {
  .informe-2col {
    grid-template-columns: 1fr;
  }
  .informe-grid {
    grid-template-columns: 1fr;
  }
}
/* Autocomplete Custom List */
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}
.autocomplete-list li {
  padding: 10px 15px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #334155;
  transition: background-color 0.2s;
}
.autocomplete-list li:hover {
  background-color: #f1f5f9;
  color: #204A97;
}
.autocomplete-list.active {
  display: block;
}
.clear-input-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1;
  padding: 5px;
  display: none; /* hidden by default */
}
.clear-input-btn:hover {
  color: #ef4444;
}
.sim-input-standalone:not(:placeholder-shown) + .clear-input-btn {
  display: block;
}


/* =========================================
   UI PREMIUM OVERHAUL
   ========================================= */

/* Stepper */
.tasador-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-weight: 500;
  font-size: 14px;
}
.step.active {
  color: #2563eb;
  font-weight: 600;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  font-size: 12px;
}
.step.active .step-num {
  background: #2563eb;
  color: #fff;
}
.step-divider {
  width: 40px;
  height: 2px;
  background: #e2e8f0;
}

/* Input Icons & Focus States */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  color: #64748b;
  pointer-events: none;
}
.input-modern {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.input-modern.has-icon {
  padding-left: 40px;
}
.input-modern:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
}

/* Chips / Pills */
.chip-group {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.chip-btn {
  flex: 1;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.chip-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}
.chip-btn.active {
  background: rgba(29, 66, 138, 0.6) !important;
  background-image: none !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 4px 12px rgba(29, 66, 138, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Solid Button (Sin degradado) */
.sim-btn-calcular.btn-modern {
  background: #1D428A !important;
  background-image: none !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(29, 66, 138, 0.4) !important;
  transition: all 0.25s ease !important;
}
.sim-btn-calcular.btn-modern:hover {
  background: #163672 !important;
  background-image: none !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 54, 114, 0.5) !important;
}


/* =========================================
   UI LAYOUT FIXES (M2, Boton y Badges)
   ========================================= */

.tas-select.input-modern {
  height: 48px;
  padding: 0 16px;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23475569%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 12px auto;
}

.sim-btn-calcular.btn-modern.full-width {
  width: 100%;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.trust-badges-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.trust-badges-centered span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}


/* Hide number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}


/* =========================================
   DOT GRID BACKGROUND - TASADOR
   ========================================= */

body, main {
  background-color: #f8fafc;
}

/* Tarjeta del tasador sobre la textura */
.sim-calc-card {
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(29, 53, 87, 0.10), 0 1px 4px rgba(0,0,0,0.05);
}

/* Hero del tasador transparente para ver la trama */
.tasador-hero,
.sim-hero {
  background: transparent !important;
}

.btn-esperando-bd {
    opacity: 0.6;
    cursor: wait !important;
}


/* =========================================
   REDISE�O INFORME TASACION (PREMIUM)
   ========================================= */
.informe-main-price {
  background: #f0f7ff !important;
  border: 1px solid #bfdbfe !important;
}

.btn-pdf-secondary {
  background: #204A97 !important;
  color: white !important;
  border: none !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}
.btn-pdf-secondary:hover {
  background: #1e3a8a !important;
  transform: translateY(-2px) !important;
}

/* Restaurando clase */
body {
  background-color: #f8fafc;
}

.informe-header {
  background: #0A1931;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 8px 8px 0 0; /* Add top rounding if needed */
}

.informe-title-box h2 {
  color: #ffffff !important;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.5px;
  text-transform: uppercase !important;
}

.informe-fecha {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   Background Video Fijo & Adaptación Glassmorphism para Subpáginas
   ========================================================================== */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 27, 61, 0.45);
}

.card-formulario, .card-resultado, .tasador-card, .sim-calc-card, .sim-result-card, .sim-desglose-card, .sim-tabla-container, .informe-card {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

h1, .titulo-principal, .sim-hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.subtitulo, .sim-hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
}


    /* --- LABELS / ETIQUETAS DE CAMPOS --- */
    .card-formulario label,
    .form-group label,
    .input-label,
    .sim-label,
    .tasador-card label,
    .tasador-card .sim-label {
        color: #D8E6F8 !important;
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 6px !important;
        opacity: 0.9 !important;
        text-shadow: none !important;
        display: block !important;
    }

/* Badge / Cápsula Superior - Mismo formato que Simulador */
.vs-badge {
  display: inline-block !important;
  padding: 0.55rem 1.6rem !important;
  background: rgba(10, 25, 49, 0.75) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #7EB1D6 !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  margin-bottom: 1rem !important;
  line-height: 1.2 !important;
}

    /* --- INPUTS Y SELECTS TRANSLÚCIDOS CRISTALINOS --- */
    .card-formulario input,
    .card-formulario select,
    .form-control,
    .tasador-card input,
    .tasador-card select,
    .sim-input-standalone,
    .input-modern {
        background: rgba(255, 255, 255, 0.22) !important;
        background-color: rgba(255, 255, 255, 0.22) !important;
        border: 1px solid rgba(255, 255, 255, 0.45) !important;
        color: #FFFFFF !important;
        font-weight: 600 !important;
        font-size: 0.92rem !important;
        border-radius: 10px !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    .card-formulario input:focus,
    .card-formulario select:focus,
    .tasador-card input:focus,
    .tasador-card select:focus,
    .sim-input-standalone:focus,
    .input-modern:focus {
        background: rgba(255, 255, 255, 0.32) !important;
        background-color: rgba(255, 255, 255, 0.32) !important;
        border-color: #FFFFFF !important;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35) !important;
        color: #FFFFFF !important;
    }

    /* --- FOOTER CÁPSULA FLOTANTE (IDÉNTICO AL HEADER Y FIJO AL FONDO) --- */
    #tasador-footer,
    .tasador-footer-fixed-bottom {
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        width: 92% !important;
        max-width: 1300px !important;
        background: rgba(10, 25, 49, 1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37) !important;
        padding: 8px 25px !important;
        height: 54px !important;
        box-sizing: border-box !important;
        z-index: 9999 !important;
        display: flex !important;
        align-items: center !important;
    }

    @media (max-width: 768px) {
        #tasador-footer,
        .tasador-footer-fixed-bottom {
            position: relative !important;
            bottom: auto !important;
            left: auto !important;
            transform: none !important;
            margin: 20px auto 30px auto !important;
            width: 92% !important;
            max-width: 1300px !important;
            padding: 10px 18px !important;
            border-radius: 30px !important;
            height: auto !important;
            justify-content: center !important;
        }
    }

    /* Modal Informe Header Cluster */
    .msd-banner {
        background: #0B1B3D !important;
        padding: 10px 14px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    @media (min-width: 768px) {
        .msd-banner {
            padding: 14px 20px !important;
        }
    }

    .msd-banner-left {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    .msd-banner-right {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    .msd-badge {
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #FFFFFF !important;
        font-weight: 700 !important;
        padding: 0 10px !important;
        height: 28px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }

    .informe-fecha-tag {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #FFFFFF !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 0 8px !important;
        height: 28px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 20px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }

    #modal-informe-close.modal-solicitar-close {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: 28px !important;
        height: 28px !important;
        background: rgba(255, 255, 255, 0.18) !important;
        border: 1px solid rgba(255, 255, 255, 0.35) !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
    }

    #modal-informe-close.modal-solicitar-close svg,
    #modal-informe-close.modal-solicitar-close svg path {
        width: 15px !important;
        height: 15px !important;
        stroke: #FFFFFF !important;
        display: block !important;
    }

