/* =========================================================
   HighPassCV - Master Profile Page
   File: fill_resume.css
   ========================================================= */

:root {
    --profile-primary: #002d62;
    --profile-primary-dark: #001f44;
    --profile-primary-soft: #edf3f9;
    --profile-accent: #c5a059;
    --profile-accent-hover: #d4b982;
    --profile-text: #2f3744;
    --profile-muted: #667085;
    --profile-bg: #f4f7fa;
    --profile-white: #ffffff;
    --profile-border: #dce4ed;
    --profile-border-dark: #c8d4e1;
    --profile-success: #18794e;
    --profile-success-soft: #eaf7f0;
    --profile-danger: #c0392b;
    --profile-danger-soft: #fff1ef;
    --profile-warning-soft: #fff9e9;
    --profile-shadow: 0 18px 45px rgba(0, 45, 98, 0.08);
    --profile-heading-font: "Poppins", sans-serif;
    --profile-body-font: "Inter", sans-serif;
    --profile-radius: 20px;
    --profile-container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--profile-text);
    background: var(--profile-bg);
    font-family: var(--profile-body-font);
    line-height: 1.6;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

/* =========================
   Account Header Adjustments
   ========================= */

.profile-header .nav a.active-link {
    color: var(--profile-primary);
    font-weight: 700;
}

.profile-header .nav a.active-link::after {
    width: 100%;
}

.profile-header .btn-text {
    gap: 8px;
}

/* =========================
   Page Structure
   ========================= */

.profile-main {
    min-height: 100vh;
    padding: 140px 20px 76px;
    background:
        radial-gradient(circle at 8% 6%, rgba(197, 160, 89, 0.12), transparent 27%),
        linear-gradient(180deg, #f8fafc 0%, var(--profile-bg) 100%);
}

.profile-shell {
    width: min(100%, var(--profile-container));
    margin: 0 auto;
}

.profile-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.profile-intro > div:first-child {
    min-width: 0;
}

.profile-eyebrow,
.step-kicker {
    margin: 0 0 7px;
    color: var(--profile-accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.profile-intro h1 {
    margin: 0 0 12px;
    color: var(--profile-primary);
    font-family: var(--profile-heading-font);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.profile-intro p:not(.profile-eyebrow) {
    max-width: 750px;
    margin: 0;
    color: var(--profile-muted);
    font-size: 1rem;
}

.autosave-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 9px;
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid rgba(24, 121, 78, 0.2);
    border-radius: 999px;
    color: var(--profile-success);
    background: var(--profile-success-soft);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   Privacy Notice
   ========================= */

.profile-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    padding: 19px 22px;
    border: 1px solid rgba(197, 160, 89, 0.34);
    border-radius: 16px;
    color: var(--profile-text);
    background: var(--profile-warning-soft);
}

.profile-notice > i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--profile-accent);
    font-size: 1.25rem;
}

.profile-notice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--profile-primary);
}

.profile-notice p {
    margin: 0;
    color: var(--profile-muted);
    font-size: 0.9rem;
}

/* =========================
   Import Existing CV
   ========================= */

.import-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 22px 24px;
    border: 1px dashed rgba(0, 45, 98, 0.3);
    border-radius: 18px;
    background: var(--profile-white);
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.045);
}

.import-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    color: var(--profile-primary);
    background: rgba(197, 160, 89, 0.2);
    font-size: 1.45rem;
}

.import-copy {
    min-width: 0;
}

.import-copy h2 {
    margin: 0 0 4px;
    color: var(--profile-primary);
    font-family: var(--profile-heading-font);
    font-size: 1.08rem;
}

.import-copy p {
    margin: 0 0 5px;
    color: var(--profile-muted);
    font-size: 0.87rem;
}

.selected-file-name {
    display: block;
    overflow: hidden;
    color: var(--profile-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================
   Step Navigation
   ========================= */

.profile-stepper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
    padding: 10px;
    border: 1px solid var(--profile-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 32px rgba(0, 45, 98, 0.06);
}

.step-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    min-height: 50px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--profile-muted);
    background: transparent;
    cursor: pointer;
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

.step-tab:hover {
    color: var(--profile-primary);
    background: var(--profile-primary-soft);
}

.step-tab > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border: 1px solid var(--profile-border-dark);
    border-radius: 50%;
    color: var(--profile-muted);
    background: var(--profile-white);
    font-size: 0.78rem;
    font-weight: 800;
}

.step-tab small {
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.step-tab.active {
    border-color: rgba(197, 160, 89, 0.45);
    color: var(--profile-primary);
    background: rgba(197, 160, 89, 0.13);
}

.step-tab.active > span {
    border-color: var(--profile-accent);
    color: var(--profile-primary);
    background: var(--profile-accent);
}

.step-tab.completed {
    color: var(--profile-success);
}

.step-tab.completed > span {
    border-color: var(--profile-success);
    color: var(--profile-white);
    background: var(--profile-success);
}

/* =========================
   Main Profile Form
   ========================= */

.master-profile-form {
    margin: 0;
}

.profile-step {
    padding: clamp(25px, 4vw, 42px);
    border: 1px solid var(--profile-border);
    border-radius: var(--profile-radius);
    background: var(--profile-white);
    box-shadow: var(--profile-shadow);
}

.profile-step.active {
    animation: profileStepIn 0.28s ease both;
}

@keyframes profileStepIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--profile-border);
}

.step-heading h2 {
    margin: 0 0 7px;
    color: var(--profile-primary);
    font-family: var(--profile-heading-font);
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.25;
}

.step-heading p:not(.step-kicker) {
    margin: 0;
    color: var(--profile-muted);
    font-size: 0.92rem;
}

.section-required-note {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--profile-muted);
    background: var(--profile-bg);
    font-size: 0.73rem;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   Profile Photo
   ========================= */

.photo-field-card {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid var(--profile-border);
    border-radius: 16px;
    background: #f8fafc;
}

.profile-photo-button {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 102px;
    height: 102px;
    padding: 0;
    overflow: hidden;
    border: 3px solid var(--profile-white);
    border-radius: 50%;
    color: var(--profile-muted);
    background: #e3eaf2;
    box-shadow: 0 0 0 1px var(--profile-border), 0 10px 24px rgba(0, 45, 98, 0.1);
    cursor: pointer;
}

.profile-photo-button > span:first-child {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
}

.profile-photo-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-edit-mark {
    position: absolute;
    right: 2px;
    bottom: 2px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border: 2px solid var(--profile-white);
    border-radius: 50%;
    color: var(--profile-primary);
    background: var(--profile-accent);
    font-size: 0.78rem;
}

.photo-field-card h3 {
    margin: 0 0 7px;
    color: var(--profile-primary);
    font-family: var(--profile-heading-font);
    font-size: 1rem;
}

.photo-field-card p {
    max-width: 690px;
    margin: 0;
    color: var(--profile-muted);
    font-size: 0.86rem;
}

.optional-label,
.field-group label span {
    color: var(--profile-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

.text-button {
    margin-top: 8px;
    padding: 0;
    border: 0;
    color: var(--profile-danger);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.text-button:hover {
    text-decoration: underline;
}

/* =========================
   Inputs and Form Grids
   ========================= */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.three-column-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.field-group.full-width,
.full-width {
    grid-column: 1 / -1;
}

.field-group > label:not(.inline-checkbox) {
    margin-bottom: 7px;
    color: var(--profile-primary);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.field-group input:not([type="checkbox"]):not([type="radio"]),
.field-group select,
.field-group textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--profile-border-dark);
    border-radius: 10px;
    color: var(--profile-text);
    background: var(--profile-white);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.field-group input:not([type="checkbox"]):not([type="radio"]),
.field-group select {
    min-height: 47px;
    padding: 11px 13px;
}

.field-group textarea {
    min-height: 115px;
    padding: 12px 13px;
    resize: vertical;
    line-height: 1.55;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #98a2b3;
}

.field-group input:hover,
.field-group select:hover,
.field-group textarea:hover {
    border-color: #aebdcd;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--profile-accent);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.16);
}

.field-group input:disabled,
.field-group select:disabled,
.field-group textarea:disabled {
    color: var(--profile-muted);
    background: #eef2f6;
    cursor: not-allowed;
}

.field-group input[aria-invalid="true"],
.field-group select[aria-invalid="true"],
.field-group textarea[aria-invalid="true"],
.field-group input:invalid:focus,
.field-group select:invalid:focus,
.field-group textarea:invalid:focus {
    border-color: var(--profile-danger);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.11);
}

.field-help {
    margin-top: 6px;
    color: var(--profile-muted);
    font-size: 0.74rem;
}

/* =========================
   Optional Details
   ========================= */

.optional-details-panel {
    margin-top: 24px;
    border: 1px solid var(--profile-border);
    border-radius: 14px;
    background: #fbfcfd;
}

.optional-details-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 19px;
    color: var(--profile-primary);
    cursor: pointer;
    list-style: none;
}

.optional-details-panel summary::-webkit-details-marker {
    display: none;
}

.optional-details-panel summary > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
}

.optional-details-panel summary > span i {
    color: var(--profile-accent);
}

.optional-details-panel summary small {
    color: var(--profile-muted);
    font-size: 0.74rem;
    font-weight: 500;
    text-align: right;
}

.optional-details-panel[open] summary {
    border-bottom: 1px solid var(--profile-border);
}

.optional-fields-grid {
    padding: 20px;
}

/* =========================
   Repeatable Entries
   ========================= */

.repeatable-list {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.repeatable-card {
    padding: 23px;
    border: 1px solid var(--profile-border);
    border-radius: 16px;
    background: #fbfcfd;
    box-shadow: 0 8px 24px rgba(0, 45, 98, 0.035);
}

.repeatable-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 19px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--profile-border);
}

.repeatable-card-header > div {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.entry-number {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    min-width: 29px;
    height: 29px;
    padding: 0 7px;
    border-radius: 9px;
    color: var(--profile-primary);
    background: rgba(197, 160, 89, 0.24);
    font-size: 0.76rem;
    font-weight: 800;
}

.repeatable-card-header h3 {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--profile-primary);
    font-family: var(--profile-heading-font);
    font-size: 1rem;
}

.remove-entry-button {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(192, 57, 43, 0.18);
    border-radius: 10px;
    color: var(--profile-danger);
    background: var(--profile-danger-soft);
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.remove-entry-button:hover {
    color: var(--profile-white);
    background: var(--profile-danger);
    transform: translateY(-1px);
}

.compact-card {
    padding-bottom: 20px;
}

/* =========================
   Subsections
   ========================= */

.subsection-block {
    margin-bottom: 34px;
}

.subsection-block:last-of-type {
    margin-bottom: 0;
}

.subsection-heading {
    margin-bottom: 17px;
}

.subsection-heading h3 {
    margin: 0 0 4px;
    color: var(--profile-primary);
    font-family: var(--profile-heading-font);
    font-size: 1.12rem;
}

.subsection-heading p {
    margin: 0;
    color: var(--profile-muted);
    font-size: 0.84rem;
}

/* =========================
   Checkboxes
   ========================= */

.inline-checkbox {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 10px;
    color: var(--profile-muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.inline-checkbox input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--profile-primary);
}

/* =========================
   Buttons
   ========================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 45px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.step-tab:focus-visible,
.profile-photo-button:focus-visible,
.remove-entry-button:focus-visible,
.text-button:focus-visible {
    outline: 3px solid rgba(197, 160, 89, 0.44);
    outline-offset: 3px;
}

.button-primary {
    color: var(--profile-primary);
    background: var(--profile-accent);
    box-shadow: 0 10px 24px rgba(197, 160, 89, 0.22);
}

.button-primary:hover {
    color: var(--profile-primary);
    background: var(--profile-accent-hover);
    box-shadow: 0 14px 28px rgba(197, 160, 89, 0.3);
}

.button-secondary,
.button-outline {
    border-color: var(--profile-primary);
    color: var(--profile-primary);
    background: var(--profile-white);
}

.button-secondary:hover,
.button-outline:hover {
    color: var(--profile-white);
    background: var(--profile-primary);
}

.button-add {
    min-height: 42px;
    padding: 10px 16px;
    border-color: rgba(0, 45, 98, 0.18);
    color: var(--profile-primary);
    background: var(--profile-primary-soft);
}

.button-add:hover {
    border-color: var(--profile-primary);
    color: var(--profile-white);
    background: var(--profile-primary);
}

.button-success {
    color: var(--profile-white);
    background: var(--profile-success);
    box-shadow: 0 10px 24px rgba(24, 121, 78, 0.2);
}

.button-success:hover {
    background: #11663f;
    box-shadow: 0 14px 28px rgba(24, 121, 78, 0.27);
}

.step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--profile-border);
}

.step-actions-end {
    justify-content: flex-end;
}

/* =========================
   Profile Completion
   ========================= */

.profile-completion-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 26px;
    padding: 23px 25px;
    border: 1px solid rgba(24, 121, 78, 0.2);
    border-radius: 16px;
    background: var(--profile-success-soft);
}

.profile-completion-card h3 {
    margin: 0 0 5px;
    color: var(--profile-primary);
    font-family: var(--profile-heading-font);
    font-size: 1.12rem;
}

.profile-completion-card p:not(.step-kicker) {
    max-width: 700px;
    margin: 0;
    color: var(--profile-muted);
    font-size: 0.85rem;
}

.completion-preview {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 78px;
    height: 78px;
    border: 7px solid rgba(24, 121, 78, 0.16);
    border-radius: 50%;
    color: var(--profile-success);
    background: var(--profile-white);
    font-family: var(--profile-heading-font);
    font-size: 1.12rem;
    font-weight: 800;
}

/* =========================
   Status Message
   ========================= */

.form-message {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    max-width: min(420px, calc(100vw - 48px));
    padding: 14px 18px;
    border: 1px solid rgba(24, 121, 78, 0.2);
    border-radius: 13px;
    color: var(--profile-success);
    background: var(--profile-white);
    box-shadow: 0 18px 45px rgba(0, 45, 98, 0.18);
    font-size: 0.85rem;
    font-weight: 700;
}

.form-message.error {
    border-color: rgba(192, 57, 43, 0.24);
    color: var(--profile-danger);
}

/* =========================
   Tablet
   ========================= */

@media (max-width: 1024px) {
    .profile-main {
        padding-top: 205px;
    }

    .profile-intro {
        align-items: flex-start;
    }

    .profile-stepper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .three-column-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .three-column-grid .field-group:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* =========================
   Small Tablet
   ========================= */

@media (max-width: 780px) {
    .profile-main {
        padding-inline: 16px;
    }

    .profile-intro {
        flex-direction: column;
        gap: 16px;
    }

    .autosave-status {
        align-self: flex-start;
        white-space: normal;
    }

    .import-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .import-card .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .profile-stepper {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 9px;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .step-tab {
        flex: 0 0 130px;
        scroll-snap-align: start;
    }

    .step-heading {
        flex-direction: column;
        gap: 12px;
    }

    .section-required-note {
        white-space: normal;
    }

    .form-grid,
    .three-column-grid {
        grid-template-columns: 1fr;
    }

    .three-column-grid .field-group:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .optional-details-panel summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .optional-details-panel summary small {
        text-align: left;
    }
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 600px) {
    .profile-main {
        padding: 275px 12px 58px;
    }

    .profile-intro h1 {
        font-size: 2rem;
    }

    .profile-notice {
        padding: 16px;
    }

    .import-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
        text-align: center;
    }

    .import-icon {
        margin-inline: auto;
    }

    .import-card .button {
        grid-column: auto;
    }

    .profile-step {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .photo-field-card {
        flex-direction: column;
        align-items: center;
        padding: 18px;
        text-align: center;
    }

    .photo-field-card p {
        text-align: center;
    }

    .repeatable-card {
        padding: 18px 14px;
    }

    .repeatable-card-header {
        align-items: flex-start;
    }

    .repeatable-card-header > div {
        align-items: flex-start;
    }

    .step-actions,
    .step-actions-end {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .step-actions .button,
    .step-actions-end .button {
        width: 100%;
    }

    .profile-completion-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .completion-preview {
        align-self: center;
    }

    .form-message {
        right: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
    }
}

/* =========================
   Very Small Screens
   ========================= */

@media (max-width: 390px) {
    .profile-main {
        padding-top: 290px;
    }

    .step-tab {
        flex-basis: 118px;
    }

    .profile-step {
        padding-inline: 13px;
    }

    .button {
        padding-inline: 14px;
        font-size: 0.79rem;
    }
}

/* =========================
   Reduced Motion
   ========================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}