/**
 * Pets ID SV - Public Styles
 * Version: 1.0.0
 */

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

.pets-id-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #2C3E50;
}

/* ==========================================================================
   ICONS
   ========================================================================== */

.pets-id-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.pets-id-icon-sm {
    width: 16px;
    height: 16px;
}

.pets-id-icon-lg {
    width: 24px;
    height: 24px;
}

.pets-id-icon-xl {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.pets-id-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pets-id-btn-primary {
    background: #E74C3C;
    color: white;
}

.pets-id-btn-primary:hover {
    background: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.pets-id-btn-secondary {
    background: #E0E0E0;
    color: #2C3E50;
}

.pets-id-btn-secondary:hover {
    background: #D0D0D0;
}

.pets-id-btn-outline {
    background: transparent;
    border: 2px solid #E74C3C;
    color: #E74C3C;
}

.pets-id-btn-outline:hover {
    background: #E74C3C;
    color: white;
}

.pets-id-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.pets-id-btn-block {
    width: 100%;
    justify-content: center;
}

.pets-id-btn:disabled,
.pets-id-btn-primary:disabled {
    background: #BDC3C7;
    cursor: not-allowed;
    transform: none;
}

.pets-id-btn-loading {
    display: none;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.pets-id-form {
    width: 100%;
}

.pets-id-form-group {
    margin-bottom: 20px;
}

.pets-id-form-group label {
    display: block;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
    font-size: 14px;
}

.pets-id-form-group input[type="text"],
.pets-id-form-group input[type="email"],
.pets-id-form-group input[type="password"],
.pets-id-form-group input[type="tel"],
.pets-id-form-group select,
.pets-id-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.pets-id-form-group input:focus,
.pets-id-form-group select:focus,
.pets-id-form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.pets-id-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pets-id-full-width {
    grid-column: 1 / -1;
}

.pets-id-helper-text {
    font-size: 13px;
    color: #7F8C8D;
    margin-top: 5px;
    display: block;
}

/* Phone Input with Country Code */
/* ==========================================================================
   SELECT FIELDS
   ========================================================================== */

.pets-id-select-field {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.pets-id-select-field:focus {
    outline: none;
    border-color: #FFD700;
}

.pets-id-select-field:hover {
    border-color: #FFD700;
}

/* ==========================================================================
   ALERTS
   ========================================================================== */

.pets-id-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.pets-id-alert-success {
    background: #D4EDDA;
    border-color: #28A745;
    color: #155724;
}

.pets-id-alert-error {
    background: #F8D7DA;
    border-color: #DC3545;
    color: #721C24;
}

.pets-id-alert-warning {
    background: #FFF3CD;
    border-color: #FFC107;
    color: #856404;
}

.pets-id-alert-info {
    background: #D1ECF1;
    border-color: #17A2B8;
    color: #0C5460;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.pets-id-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* ==========================================================================
   LOGIN & REGISTRATION FORMS
   ========================================================================== */

.pets-id-login-container,
.pets-id-registration-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 20px;
}

.pets-id-login-card,
.pets-id-registration-card {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pets-id-registration-card {
    max-width: 700px;
}

.pets-id-logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.pets-id-logo {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.pets-id-tagline {
    color: #7F8C8D;
    font-size: 16px;
}

.pets-id-form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #E0E0E0;
}

.pets-id-form-footer p {
    color: #7F8C8D;
    margin: 10px 0;
}

.pets-id-form-footer a {
    color: #E74C3C;
    text-decoration: none;
    font-weight: 600;
}

.pets-id-link,
.pets-id-link-bold {
    color: #3498DB;
    text-decoration: none;
}

.pets-id-link-bold {
    font-weight: 600;
}

.pets-id-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pets-id-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FFD700;
}

.pets-id-password-wrapper {
    position: relative;
}

.pets-id-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #7F8C8D;
}

/* ==========================================================================
   MULTI-STEP FORM
   ========================================================================== */

.pets-id-progress-container {
    margin-bottom: 40px;
}

.pets-id-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}

.pets-id-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.pets-id-step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #E0E0E0;
    color: #7F8C8D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pets-id-progress-step.active .pets-id-step-circle {
    background: #FFD700;
    color: #2C3E50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.pets-id-progress-step.completed .pets-id-step-circle {
    background: #10B981;
    color: white;
}

.pets-id-step-label {
    font-size: 13px;
    color: #7F8C8D;
    font-weight: 500;
}

.pets-id-progress-step.active .pets-id-step-label {
    color: #2C3E50;
    font-weight: 600;
}

.pets-id-form-step {
    display: none;
}

.pets-id-form-step.active {
    display: block;
}

.pets-id-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
    text-align: center;
}

.pets-id-step-subtitle {
    font-size: 16px;
    color: #7F8C8D;
    text-align: center;
    margin-bottom: 30px;
}

.pets-id-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pets-id-form-navigation {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.pets-id-form-navigation .pets-id-btn {
    flex: 1;
}

/* Design Selector */
.pets-id-design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.pets-id-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.pets-id-design-option,
.pets-id-color-option {
    position: relative;
}

.pets-id-design-option input,
.pets-id-color-option input {
    position: absolute;
    opacity: 0;
}

.pets-id-design-card,
.pets-id-color-card {
    border: 3px solid #E0E0E0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pets-id-design-card:hover,
.pets-id-color-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pets-id-design-option input:checked + .pets-id-design-card,
.pets-id-color-option input:checked + .pets-id-color-card {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFFEF0 0%, #FFF9E6 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.pets-id-design-option input:checked + .pets-id-design-card::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #FFD700;
    color: #2C3E50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.pets-id-color-option input:checked + .pets-id-color-card::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    background: #FFD700;
    color: #2C3E50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* ==========================================================================
   PLATE IMAGE PLACEHOLDER (When PNG doesn't exist)
   ========================================================================== */

.pets-id-plate-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pets-id-plate-placeholder .placeholder-icon {
    font-size: 80px;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Ajustar para diamond cuando está rotado */
.pets-id-plate-placeholder[data-design="diamond"] .placeholder-icon {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pets-id-design-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #F8F9FA;
    border-radius: 10px;
    padding: 10px;
}

.pets-id-design-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.pets-id-design-name,
.pets-id-color-name {
    font-weight: 600;
    color: #2C3E50;
    font-size: 15px;
    margin-top: 5px;
}

.pets-id-design-feature {
    display: block;
    font-size: 12px;
    color: #10B981;
    font-weight: 600;
    margin-top: 8px;
    padding: 4px 8px;
    background: #D1FAE5;
    border-radius: 6px;
    text-align: center;
}

.pets-id-color-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 3px solid #E0E0E0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pets-id-color-option input:checked + .pets-id-color-card .pets-id-color-circle {
    border-color: #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

/* Colores disponibles - COINCIDEN CON LAS PLACAS REALES */
.pets-id-color-pink { background: #FF69B4; }       /* Rosa vibrante (pink real de placas) */
.pets-id-color-yellow { background: #FFD700; }     /* Amarillo dorado */
.pets-id-color-blue { background: #0066FF; }       /* Azul brillante (no celeste) */
.pets-id-color-black { background: #000000; }      /* Negro puro */
.pets-id-color-white { background: #FFFFFF; border: 3px solid #2C3E50; } /* Blanco con borde */
.pets-id-color-brown { background: #8B4513; }      /* Café/Marrón */
.pets-id-color-grey { background: #808080; }       /* Gris */
.pets-id-color-darkblue { background: #000080; }   /* Azul Oscuro/Navy */

/* Summary */
.pets-id-summary-box {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.pets-id-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
}

.pets-id-summary-item:last-child {
    border-bottom: none;
}

.pets-id-shipping-options {
    margin-bottom: 20px;
}

.pets-id-radio-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pets-id-radio-option:hover {
    border-color: #FFD700;
    background: #FFFEF0;
}

.pets-id-radio-option input {
    margin-right: 15px;
    accent-color: #FFD700;
}

.pets-id-price {
    color: #E74C3C;
    font-weight: 700;
}

.pets-id-total-box {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.pets-id-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.pets-id-total-row strong {
    font-weight: 700;
    color: #E74C3C;
}

.pets-id-terms-checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.pets-id-terms-checkbox input {
    margin-top: 3px;
    accent-color: #FFD700;
}

/* ==========================================================================
   SPINNER
   ========================================================================== */

.pets-id-spinner {
    animation: spin 1s linear infinite;
    width: 20px;
    height: 20px;
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .pets-id-form-grid {
        grid-template-columns: 1fr;
    }

    .pets-id-login-card,
    .pets-id-registration-card {
        padding: 25px;
    }

    .pets-id-logo {
        font-size: 36px;
    }

    .pets-id-form-navigation {
        flex-direction: column;
    }

    .pets-id-design-grid,
    .pets-id-color-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pets-id-progress-steps {
        font-size: 12px;
    }

    .pets-id-step-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .pets-id-step-label {
        font-size: 11px;
    }
}

/* ==========================================================================
   URGENCY DISCOUNT BANNER - OPCIÓN 2: VERTICAL CENTRADO
   ========================================================================== */

.pets-id-urgency-banner-opt2 {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF006E 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    text-align: center;
}

.pets-id-urgency-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pets-id-urgency-close:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.pets-id-urgency-content-opt2 {
    max-width: 800px;
    margin: 0 auto;
}

.pets-id-urgency-title-opt2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Countdown Boxes - Opción 2 */
.pets-id-countdown-opt2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.pets-id-countdown-box-opt2 {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 25px;
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pets-id-countdown-num-opt2 {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pets-id-countdown-lbl-opt2 {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    font-weight: 600;
}

/* Precio Regular - Opción 2 */
.pets-id-price-regular-opt2 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: line-through;
    margin: 15px 0;
}

/* Botón de Pago - Opción 2 */
.pets-id-btn-pay-opt2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: #FF006E;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.pets-id-btn-pay-opt2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #FFF5F8;
}

/* Mensaje de expiración */
.pets-id-expired-notice {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 30px;
    margin: 25px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pets-id-expired-notice p {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Responsive - Opción 2 */
@media (max-width: 768px) {
    .pets-id-urgency-banner-opt2 {
        padding: 25px 20px;
    }
    
    .pets-id-urgency-title-opt2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .pets-id-countdown-opt2 {
        gap: 10px;
        margin: 20px 0;
    }
    
    .pets-id-countdown-box-opt2 {
        padding: 15px 20px;
        min-width: 85px;
    }
    
    .pets-id-countdown-num-opt2 {
        font-size: 36px;
    }
    
    .pets-id-countdown-lbl-opt2 {
        font-size: 12px;
    }
    
    .pets-id-price-regular-opt2 {
        font-size: 16px;
    }
    
    .pets-id-btn-pay-opt2 {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* Discount highlight in summary */
.pets-id-discount-highlight {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #FFD700;
}

/* ==========================================================================
   PAYMENT BUTTON (v1.7.1)
   ========================================================================== */

.pets-id-btn-payment {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    border: none;
}

.pets-id-btn-payment:hover {
    background: linear-gradient(135deg, #229954 0%, #1E8449 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.pets-id-btn-payment svg {
    width: 18px;
    height: 18px;
}

/* Animación para el botón de pago con descuento */
@keyframes pulse-payment {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(39, 174, 96, 0.6);
    }
}

.pets-id-btn-payment {
    animation: pulse-payment 2s infinite;
}


/* ==========================================================================
   SUBSCRIPTION SYSTEM (v1.8.0)
   ========================================================================== */

/* Subscription Badge in Pet Cards */
.pets-id-subscription-badge {
    margin-top: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pets-id-subscription-badge svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pets-id-subscription-badge span {
    font-weight: 600;
}

.pets-id-subscription-details {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Active Subscription */
.pets-id-subscription-active {
    background: #E8F5E9;
    color: #2E7D32;
    border-left: 4px solid #4CAF50;
}

/* Expiring Soon (< 30 days) */
.pets-id-subscription-expiring {
    background: #FFF3E0;
    color: #E65100;
    border-left: 4px solid #FF9800;
}

/* Expired Subscription */
.pets-id-subscription-expired {
    background: #FFEBEE;
    color: #C62828;
    border-left: 4px solid #F44336;
}

/* Renewal Button */
.pets-id-btn-renewal {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    border: none;
}

.pets-id-btn-renewal:hover {
    background: linear-gradient(135deg, #F57C00 0%, #E65100 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.pets-id-btn-renewal svg {
    width: 18px;
    height: 18px;
}

/* Animación para el botón de renovación */
@keyframes pulse-renewal {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 152, 0, 0.6);
    }
}

.pets-id-btn-renewal {
    animation: pulse-renewal 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pets-id-subscription-badge {
        font-size: 12px;
        padding: 10px;
    }
    
    .pets-id-subscription-details {
        font-size: 11px;
    }
}
