/* LOGIN.GOV Style Sheet */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --uswds-blue: #005ea2;
    --uswds-dark-blue: #112e51;
    --uswds-light-blue: #f0f4fa;
    --uswds-gray: #71767a;
    --uswds-dark-gray: #1b1b1b;
    --uswds-light-gray: #f0f0f0;
    --uswds-white: #ffffff;
    --uswds-red: #e52207;
    --input-border: #aeb0b5;
}

body {
    font-family: 'Source Sans Pro', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--uswds-dark-gray);
    background-color: var(--uswds-light-blue);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.gov-banner {
    background-color: var(--uswds-dark-blue);
    color: white;
    padding: 8px 0;
    font-size: 12px;
    height: 32px;
    display: flex;
    align-items: center;
}

.gov-banner-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gov-banner-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gov-banner-flag {
    width: 16px;
    height: 12px;
    flex-shrink: 0;
}

.gov-banner-text {
    color: white;
    font-size: 0.75rem;
    white-space: nowrap;
}

.gov-banner-dropdown {
    color: white;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.75rem;
    white-space: nowrap;
}

.gov-banner-dropdown:hover {
    text-decoration: none;
}

/* Logo Section */
.logo-container {
    text-align: center;
    margin: 32px 0;
    background-color: transparent;
    padding: 0;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

.logo-container img {
    display: block;
    width: 111px;
    height: 15px;
    margin: 0 auto;
}

/* Main Content Container */
.main-content {
    flex: 1;
    padding: 0 16px 40px 16px;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--uswds-white);
    border-radius: 0;
    padding: 48px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border: none;
}

/* Form Content Container */
.form-content {
    background-color: transparent;
    border: none;
    min-height: 400px;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    gap: 0;
    margin: 0 0 32px 0;
    padding: 4px;
    background-color: var(--uswds-light-gray);
    border-radius: 25px;
    position: relative;
}

.nav-tab {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: var(--uswds-blue);
    transition: all 0.2s;
    position: relative;
    border-radius: 25px;
    z-index: 1;
}

.nav-tab.active {
    color: var(--uswds-blue);
    border: 2px solid var(--uswds-blue);
    background-color: var(--uswds-white);
    font-weight: 700;
}

.nav-tab:not(.active) {
    background-color: transparent;
    color: var(--uswds-blue);
    border: 2px solid transparent;
}

.nav-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Form Styles */
.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--uswds-dark-gray);
    margin-bottom: 16px;
}

.form-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--uswds-dark-gray);
    margin-top: 32px;
    margin-bottom: 24px;
    padding: 0;
    text-align: left;
    line-height: 1.2;
}

.form-group {
    margin-bottom: 24px;
    padding: 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--uswds-dark-gray);
    font-size: 16px;
    padding: 0;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: 4px;
    font-size: 16px;
    background-color: var(--uswds-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--uswds-dark-gray);
    height: 48px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--uswds-blue);
    box-shadow: 0 0 0 3px rgba(0, 94, 162, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-help-text {
    font-size: 14px;
    color: var(--uswds-gray);
    margin-top: 4px;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding: 0;
    justify-content: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--uswds-blue);
    border: 2px solid var(--input-border);
    border-radius: 2px;
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked {
    border-color: var(--uswds-blue);
    background-color: var(--uswds-blue);
}

.checkbox-group label {
    color: var(--uswds-dark-gray);
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: var(--uswds-blue);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.checkbox-group label a:hover {
    text-decoration: none;
}

.checkbox-group label a.external-link::after {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 2L2 10M10 2H6M10 2V6' stroke='%23005ea2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Error Message Styling */
.error-message {
    display: none;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    margin: 0 0 24px 0;
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 4px;
    min-height: 0; /* Prevent layout shift */
    overflow: visible;
}

.error-message[style*="display: flex"],
.error-message.show {
    display: flex !important;
}

.error-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: #3d4551;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.error-content {
    flex: 1;
}

.error-content p {
    margin: 0;
    color: var(--uswds-dark-gray);
    font-size: 16px;
    line-height: 1.5;
}

.error-content a {
    color: var(--uswds-blue);
    text-decoration: underline;
}

.error-content a:hover {
    text-decoration: none;
}

/* Language Preference Section */
.language-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--uswds-dark-gray);
    margin-bottom: 8px;
    padding: 0;
}

.language-section-description {
    font-size: 16px;
    color: var(--uswds-gray);
    margin-bottom: 16px;
    padding: 0;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #dfe1e2;
    border-radius: 4px;
    background-color: var(--uswds-white);
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.radio-option:hover {
    border-color: var(--uswds-blue);
    background-color: #f0f4fa;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--uswds-blue);
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-label {
    font-weight: 600;
    color: var(--uswds-dark-gray);
}

.radio-option.radio-checked {
    border-color: var(--uswds-blue);
    background-color: #f0f4fa;
}

.radio-option.radio-checked .radio-label {
    font-weight: 600;
    color: var(--uswds-dark-gray);
}

.radio-label {
    color: var(--uswds-dark-gray);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.btn {
    width: 100%;
    margin: 32px 0 0 0;
    padding: 14px 24px;
    background-color: var(--uswds-blue);
    color: white;
    border: 2px solid #1a4480;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, outline 0.2s;
    display: block;
    outline: none;
    min-height: 48px;
    height: 48px;
    box-sizing: border-box;
    flex-shrink: 0; /* Prevent button from shrinking */
    text-align: center;
    position: relative;
    overflow: visible;
}

.btn:hover {
    background-color: #1a4480;
}

.btn:focus {
    outline: 2px solid var(--uswds-blue);
    outline-offset: 2px;
}

.btn:active {
    background-color: #003366;
}

/* Loading State - Dark Navy Background */
.btn.loading {
    background-color: #112e51;
    border-color: #112e51;
    cursor: wait;
    outline: 2px solid var(--uswds-blue);
    outline-offset: 2px;
    /* Ensure button maintains visibility and size */
    min-height: 48px;
    height: 48px;
    display: block;
    visibility: visible;
    opacity: 1;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: var(--uswds-gray);
}

.btn-secondary:hover {
    background-color: #565c65;
}

.employee-id-link {
    margin-top: 16px;
    text-align: center;
    padding: 0;
}

.employee-id-link a {
    color: var(--uswds-blue);
    text-decoration: underline;
    font-size: 16px;
    display: inline-block;
}

.employee-id-link a:hover {
    text-decoration: none;
}

.form-separator {
    height: 1px;
    background-color: #dfe1e2;
    margin: 32px 0;
    width: 100%;
}

.link-group {
    margin-top: 0;
    text-align: left;
    padding: 0;
}

.link-group a {
    color: var(--uswds-blue);
    text-decoration: underline;
    font-size: 16px;
    display: block;
    margin-bottom: 16px;
}

.link-group a:hover {
    text-decoration: none;
}

.link-group a.external-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-group a.external-link::after {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 2L2 10M10 2H6M10 2V6' stroke='%23005ea2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.divider {
    height: 1px;
    background-color: var(--uswds-light-gray);
    margin: 24px 0;
}

.recaptcha-notice {
    font-size: 14px;
    color: #565c65;
    text-align: left;
    margin-top: 32px;
    padding: 0;
    line-height: 1.5;
}

.recaptcha-notice a {
    color: var(--uswds-blue);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.recaptcha-notice a:hover {
    text-decoration: none;
}

.recaptcha-notice a.external-link::after {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 2L2 10M10 2H6M10 2V6' stroke='%23005ea2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Loading Animation - Inside Buttons */

.btn .btn-text {
    display: inline-block;
    transition: opacity 0.2s, visibility 0.2s;
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.btn .btn-loading {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}

.btn.loading {
    pointer-events: none;
}

.btn.loading .btn-text {
    /* Hide text but maintain layout space */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    /* Keep inline-block to maintain button height */
    display: inline-block;
}

.btn.loading .btn-loading {
    display: flex !important;
    /* Ensure loading dots are visible */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Three-Dot Ellipsis Loader with Staggered Animation */
.btn .loading-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s infinite both;
    flex-shrink: 0;
}

/* Staggered Delays for Sequential Animation */
.btn .loading-dot:nth-child(1) { 
    animation-delay: -0.32s; 
}

.btn .loading-dot:nth-child(2) { 
    animation-delay: -0.16s; 
}

.btn .loading-dot:nth-child(3) { 
    animation-delay: 0s; 
}

/* Blink/Scale Animation Keyframes */
@keyframes blink {
    0%, 80%, 100% { 
        opacity: 0.2; 
        transform: scale(0.8); 
    }
    40% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Legacy loading-bubble class for backward compatibility */
.btn .loading-bubble {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    animation: blink 1.4s infinite both;
    flex-shrink: 0;
}

.btn .loading-bubble:nth-child(1) { animation-delay: -0.32s; }
.btn .loading-bubble:nth-child(2) { animation-delay: -0.16s; }

.loading .loading-bubble {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--uswds-blue);
    margin: 0 5px;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-bubble:nth-child(1) { animation-delay: -0.32s; }
.loading-bubble:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Legacy loading (for backward compatibility) */
.loading {
    display: none;
    text-align: center;
    margin: 24px 0;
}

/* Verification Steps */
.step-list {
    list-style: none;
    margin: 24px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--uswds-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--uswds-dark-gray);
}

.step-content p {
    font-size: 16px;
    color: var(--uswds-gray);
    line-height: 1.6;
}

.verification-info {
    margin: 24px 0;
    padding: 16px;
    background-color: var(--uswds-light-blue);
    border-left: 4px solid var(--uswds-blue);
    border-radius: 4px;
}

.verification-info p {
    margin-bottom: 8px;
}

.verification-info a {
    color: var(--uswds-blue);
    text-decoration: none;
}

.verification-info a:hover {
    text-decoration: underline;
}

/* ID Upload Section */
.upload-section {
    border: 2px dashed var(--uswds-gray);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
    background-color: var(--uswds-white);
    transition: all 0.3s;
}

.upload-section.active {
    border-color: var(--uswds-blue);
    background-color: var(--uswds-light-blue);
}

.upload-section.completed {
    border-color: #28a745;
    background-color: #f0f9f4;
}

.upload-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--uswds-dark-gray);
}

.upload-instructions {
    font-size: 14px;
    color: var(--uswds-gray);
    margin-bottom: 16px;
}

.webcam-container {
    margin: 16px 0;
}

.webcam-video {
    width: 100%;
    max-width: 500px;
    border: 2px solid var(--uswds-gray);
    border-radius: 8px;
    background-color: #000;
    display: none;
}

.webcam-video.active {
    display: block;
}

.webcam-preview {
    width: 100%;
    max-width: 500px;
    border: 2px solid var(--uswds-gray);
    border-radius: 8px;
    margin: 16px auto;
    display: none;
}

.webcam-preview.active {
    display: block;
}

.webcam-controls {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.webcam-btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
}

.upload-or-divider {
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--uswds-gray);
}

.upload-or-divider::before,
.upload-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--uswds-light-gray);
}

.upload-btn-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.upload-btn-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-btn-label {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--uswds-gray);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.upload-btn-label:hover {
    background-color: #565c65;
}

.upload-preview {
    max-width: 100%;
    margin-top: 16px;
    border: 2px solid var(--uswds-gray);
    border-radius: 8px;
    display: none;
}

.upload-preview.active {
    display: block;
}

.upload-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.upload-actions .btn {
    width: auto;
    min-width: 150px;
    flex: 0 1 auto;
    margin: 0;
}

.btn-save {
    background-color: #28a745;
    border-color: #1e7e34;
}

.btn-save:hover {
    background-color: #218838;
}

.btn-retake {
    background-color: var(--uswds-gray);
}

/* Final Confirmation Page */
.success-icon {
    text-align: center;
    margin: 32px 0;
}

.success-icon-wrapper {
    position: relative;
    display: inline-block;
}

.success-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e6f4f9;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    overflow: hidden;
}

.success-checkmark {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: #28a745;
    border-radius: 50%;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.final-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--uswds-dark-gray);
    margin-bottom: 24px;
}

.final-info {
    text-align: center;
    color: var(--uswds-gray);
    margin-bottom: 24px;
    font-size: 16px;
}

/* Footer Styles */
footer {
    background-color: #1b1b1b;
    color: white;
    padding: 24px 0;
    margin-top: auto;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-gsa-logo {
    width: 32px;
    height: 32px;
    background-color: var(--uswds-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.footer-agency-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-agency-link:hover {
    text-decoration: none;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.2s;
}

.footer-language:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-chevron {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.footer-nav-links a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.footer-nav-links a:hover {
    text-decoration: none;
}

.footer-nav-links a.external-link::after,
.footer-agency-link.external-link::after {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 2L2 10M10 2H6M10 2V6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Honeypot Field */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        margin: 16px;
        padding: 32px 24px;
    }

    .gov-banner-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .footer-nav-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .nav-tabs {
        gap: 4px;
    }

    .nav-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .webcam-controls {
        flex-direction: column;
    }

    .webcam-btn {
        width: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-16 {
    margin-top: 16px;
}

.mb-16 {
    margin-bottom: 16px;
}

.hidden {
    display: none !important;
}

