/* Functional bridge for the imported Aman Finance public template. */

.public-body {
  --public-header-height: 88px;
}

.public-body #header.scrolled {
  padding: 0;
}

.public-body #header {
  position: sticky;
}

.public-home #header + main {
  margin-top: 0;
  padding-top: 0;
}

.public-body
  :where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(173, 7, 9, 0.42);
  outline-offset: 3px;
}

main :where(section[id], form[id]) {
  scroll-margin-top: calc(var(--public-header-height) + 18px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.public-body.nav-open {
  overflow: hidden;
}

.achievements-section {
  margin-top: 3rem;
  padding-top: 4rem !important;
  border-top: 1px solid rgba(36, 37, 39, 0.1);
  background: #f6f6f7;
  background-image: none;
  background-attachment: scroll;
}

.achievements-artwork {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f7f7f7;
}

.achievements-artwork img {
  display: block;
  width: 100%;
  height: auto;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader[hidden] {
  display: none;
}

.menu-toggle {
  border: 0;
  background: transparent;
  font-family: inherit;
}

.logo-picture {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo-image {
  display: block;
  width: auto;
  max-width: 68px;
  height: 58px;
  object-fit: contain;
}

.logo-identity {
  display: grid;
  justify-items: center;
  min-width: 0;
  line-height: 1.15;
  text-align: center;
}

.logo-name-ar {
  color: var(--primary-color);
  font-size: 1.08rem;
  font-weight: 800;
  white-space: nowrap;
}

.logo-name-en {
  width: 100%;
  margin-top: 0.2rem;
  color: var(--primary-dark);
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
  white-space: nowrap;
}

.logo-sector {
  width: max-content;
  margin-top: 0.16rem;
  margin-inline: auto;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  background: rgba(173, 7, 9, 0.08);
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-media,
.hero-media-fallback,
.hero-media-slide {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  background: transparent;
}

.hero-media-fallback {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-media-fallback img {
  width: min(48vw, 480px);
  opacity: 0.12;
  filter: grayscale(1) brightness(2.2);
}

.hero-media-slide {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

.hero-media-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-media-slide img,
.hero-media-slide video {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media-slide img {
  object-fit: fill;
  object-position: center;
  background: transparent;
}

.hero-media-slide video {
  object-fit: cover;
}

.hero-media-slide.is-unavailable {
  display: none;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(36, 37, 39, 0.84),
    rgba(36, 37, 39, 0.56),
    rgba(173, 7, 9, 0.54)
  );
}

body.public-home main > section#home.hero {
  width: 100%;
  height: 616px !important;
  min-height: 0 !important;
  max-height: 780px;
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent;
}

body.public-home main > section#home.hero .hero-media,
body.public-home main > section#home.hero .hero-media-slide {
  inset: 0 !important;
  transform: none !important;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 499px);
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.about-copy p,
.about-card p,
.legacy-goals,
.service-modal-description {
  text-align: justify;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-building {
  width: 100%;
  max-width: 499px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-building img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-card:hover {
  transform: none;
  box-shadow: none;
}

.about-details-grid {
  display: grid;
  width: min(100%, 1080px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #e4e4e5;
  border-radius: 16px;
  background: var(--bg-white);
}

.about-details-grid .about-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  padding: 1.45rem 1.65rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: start;
  transition: background-color 0.2s ease;
}

.about-details-grid .about-card + .about-card {
  border-top: 1px solid #ececed;
}

.about-details-grid .about-card:hover {
  background: #fafafa;
}

.about-details-grid .card-icon {
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 12px;
  background: rgba(173, 7, 9, 0.08);
  color: var(--primary-color);
  font-size: 1.25rem;
}

.about-card-content {
  flex: 1 1 auto;
  min-width: 0;
}

.about-details-grid h3 {
  margin: 0 0 0.4rem;
  color: var(--primary-dark);
  font-size: 1.18rem;
  line-height: 1.5;
  text-align: start;
}

.about-details-grid .about-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 2;
  text-align: start;
}

.legacy-goals {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  counter-reset: center-goal;
}

.legacy-goals li {
  display: grid;
  grid-template-columns: 1.65rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  color: var(--text-light);
  line-height: 1.9;
  text-align: start;
  counter-increment: center-goal;
}

.legacy-goals li::before {
  content: counter(center-goal);
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.18rem;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.footer-contact a,
.branch-phone a,
.info-item a {
  color: inherit;
}

main {
  min-height: 55vh;
}

.section-title h1 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 2.5rem;
}

.card-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.standalone-section {
  margin: 0;
  border-radius: var(--radius);
}

.breadcrumbs {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--muted-color);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-inline-start: 0.45rem;
  color: var(--primary-light);
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--primary-color);
}

.loan-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.54fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: 2rem;
}

.loan-detail-header h1 {
  margin: 0.2rem 0 1rem;
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.loan-detail-header p {
  margin: 0 0 1.5rem;
  line-height: 2;
}

.loan-detail-image {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
}

.loan-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}

.loan-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.loan-detail-card,
.loan-application-steps,
.loan-related {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.loan-detail-card h2,
.loan-application-steps h2,
.loan-related h2 {
  margin: 0 0 1rem;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.loan-detail-card ul,
.loan-application-steps ol,
.loan-related ul {
  margin: 0;
  padding-inline-start: 1.3rem;
  line-height: 2;
}

.loan-application-steps,
.loan-related {
  margin-top: 1.25rem;
  border-radius: 1rem;
  background: #fff;
}

.loan-application-steps .btn {
  margin-top: 1.25rem;
}

.loan-related ul {
  columns: 2;
}

.loan-related a {
  color: var(--text-color);
}

.loan-related a:hover,
.loan-related a:focus-visible {
  color: var(--primary-color);
}

.public-body:not(.public-home) main {
  padding: 125px 20px 80px;
  background: var(--bg-light);
}

.public-body:not(.public-home)
  main
  > :where(.section, .error-page, .breaking-news) {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

/* The application keeps its live breaking-news feed inside the imported design. */
.breaking-news {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.public-home .breaking-news {
  width: min(1200px, calc(100% - 40px));
  margin: 20px auto;
}

.breaking-news > strong {
  display: grid;
  place-items: center;
  padding: 0.85rem 1.25rem;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
}

.breaking-news-viewport {
  min-width: 0;
  overflow: hidden;
}

.breaking-news-track {
  display: flex;
  width: max-content;
  min-width: 100%;
}

.breaking-news-track.is-animated {
  animation: breaking-news-scroll 28s linear infinite;
}

.breaking-news-group {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 2rem;
  margin: 0;
  /* 1rem + 1rem at the cloned-list seam equals the 2rem item gap. */
  padding: 0.8rem 1rem;
  list-style: none;
}

.breaking-news-item {
  color: var(--text-color);
  font-size: 0.9rem;
  white-space: nowrap;
}

.breaking-news-separator {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.breaking-news-logo-picture,
.breaking-news-logo-picture img {
  display: block;
  width: 34px;
  height: 34px;
}

.breaking-news-logo-picture img {
  object-fit: contain;
}

.breaking-news-viewport:hover .breaking-news-track.is-animated,
.breaking-news-viewport:focus-within .breaking-news-track.is-animated {
  animation-play-state: paused;
}

@keyframes breaking-news-scroll {
  to {
    transform: translateX(50%);
  }
}

/* Legacy service artwork retained inside the imported card system. */
.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.service-card-media {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background: #f4f4f5;
}

.service-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.035);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.service-card-body p {
  margin-bottom: 0;
}

.service-modal-trigger {
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(173, 7, 9, 0.18);
  border-radius: calc(var(--radius) / 2);
  padding: 0.85rem 1rem;
  background: rgba(173, 7, 9, 0.07);
  color: var(--primary-dark);
  text-align: right;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.service-modal-trigger:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #fff;
}

.service-modal[hidden] {
  display: none;
}

.service-modal {
  position: fixed;
  inset: var(--public-header-height) 0 0;
  z-index: 900;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(5px);
  overscroll-behavior: contain;
}

.service-modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(calc(100dvh - var(--public-header-height) - 2.5rem), 820px);
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 22px 60px rgba(36, 37, 39, 0.24);
  animation: service-modal-in 0.3s ease-out;
}

.service-modal-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 1.5rem 5rem 0.75rem 1.5rem;
  background: #fff;
}

.service-modal-header h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
}

.service-modal-close {
  display: grid;
  position: absolute;
  top: 0.85rem;
  inset-inline-start: 0.85rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0.5rem;
  place-items: center;
  background: transparent;
  color: #9a9a9a;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.service-modal-close:hover {
  background: rgba(173, 7, 9, 0.08);
  color: var(--primary-color);
}

.service-modal-body {
  max-height: calc(
    min(calc(100dvh - var(--public-header-height) - 2.5rem), 820px) - 72px
  );
  overflow-y: auto;
  padding: 0.5rem clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.25rem);
}

.service-modal-description {
  margin-bottom: 1.5rem;
  line-height: 2;
}

.service-documents-title {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.public-body.service-modal-open {
  overflow: hidden;
}

@keyframes service-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-documents-grid > :where(div, section) {
  border: 1px solid rgba(36, 37, 39, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  background: #fafafa;
}

.service-documents-grid h4 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.service-documents-grid ul {
  margin: 0;
  padding-inline-start: 1.2rem;
}

.service-documents-grid li + li {
  margin-top: 0.5rem;
}

.legacy-branches .branch-card:first-child {
  grid-column: span 2;
}

.branch-card h4 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.branch-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.branch-phones a,
.legacy-contact-email a {
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(173, 7, 9, 0.08);
  color: var(--primary-dark);
  font-weight: 700;
}

.legacy-contact-email {
  margin-top: 2rem;
}

.legacy-contact-email p {
  margin-bottom: 0.75rem;
}

.contact-form-heading {
  margin-top: 4rem;
}

.contact-form-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.contact-form-centered {
  width: min(100%, 820px);
  margin-inline: auto;
}

.captcha-instruction {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  text-align: center;
}

/* Real forms retain their secure backend contracts while using template primitives. */
.e-services-grid {
  align-items: start;
}

.single-form-card {
  width: min(100%, 820px);
  margin-inline: auto;
}

.login-card {
  width: min(100%, 620px);
}

.form-grid-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
}

.form-group-wide {
  grid-column: 1 / -1;
}

.form-grid-columns > .phone-form-group {
  grid-column: 1 / -1;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  gap: 0.65rem;
}

.phone-field > * {
  min-width: 0;
}

.phone-country-code {
  text-align: right;
}

.phone-number-input {
  text-align: left;
}

.field-error {
  margin: 0.45rem 0 0;
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.65;
}

.field-error[hidden] {
  display: none;
}

.form-group :where(input, select, textarea)[aria-invalid='true'] {
  border-color: var(--primary-color);
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(173, 7, 9, 0.09);
}

.form-error-summary strong {
  display: block;
}

.form-error-summary ul {
  margin: 0.65rem 0 0;
  padding-inline-start: 1.25rem;
}

.form-error-summary li + li {
  margin-top: 0.35rem;
}

.form-notice,
.form-error,
.error-message,
.alert {
  margin-bottom: 1rem;
  border: 1px solid rgba(198, 132, 0, 0.35);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff8e1;
  color: #6b4b00;
}

.form-success {
  margin-bottom: 1rem;
  border: 1px solid rgba(36, 37, 39, 0.2);
  border-inline-start: 4px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 1rem;
  background: #f5f5f5;
  color: var(--primary-dark);
  font-weight: 700;
}

.field-hint,
.help-text {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 400;
}

.captcha-field {
  overflow-x: auto;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.footer-site-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-site-mark img {
  display: block;
  width: 118px;
  height: 86px;
  object-fit: contain;
}

.footer-developer-credit {
  display: inline-block;
  margin-top: 1rem;
}

.footer-developer-credit img {
  display: block;
  width: 170px;
  height: auto;
  border-radius: 0.4rem;
  background: #fff;
}

.error-page {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: clamp(2rem, 6vw, 4rem);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.empty-panel-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(173, 7, 9, 0.08);
  color: var(--primary-color);
  font-size: 2rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-performance {
  max-width: 590px;
  margin: 1.35rem 0 0;
  color: #c7c7c7;
  font-size: 0.92rem;
  line-height: 2;
  text-align: justify;
}

@media (max-width: 768px) {
  .loan-detail-header,
  .loan-detail-grid {
    grid-template-columns: 1fr;
  }

  .loan-detail-image {
    max-width: 460px;
  }

  .loan-related ul {
    columns: 1;
  }

  .public-body {
    --public-header-height: 74px;
  }

  .navbar {
    min-height: var(--public-header-height);
    padding-block: 8px;
  }

  .logo {
    gap: 8px;
  }

  .logo-image {
    max-width: 48px;
    height: 46px;
  }

  .logo-name-ar {
    font-size: 0.86rem;
  }

  .logo-name-en {
    font-size: 0.61rem;
  }

  .logo-sector {
    margin-top: 0.1rem;
    padding: 0.08rem 0.35rem;
    font-size: 0.49rem;
  }

  .nav-links {
    top: var(--public-header-height);
    height: calc(100dvh - var(--public-header-height));
    overflow-y: auto;
  }

  .form-grid-columns {
    grid-template-columns: 1fr;
  }

  body.public-home main > section#home.hero {
    height: 360px !important;
    max-height: 360px;
  }

  .about-overview,
  .service-documents-grid {
    grid-template-columns: 1fr;
  }

  .about-details-grid .about-card {
    gap: 1rem;
    padding: 1.2rem;
  }

  .about-details-grid .card-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .legacy-branches .branch-card:first-child {
    grid-column: auto;
  }

  .form-group-wide {
    grid-column: auto;
  }

  .phone-field {
    grid-template-columns: minmax(126px, 0.46fr) minmax(0, 1fr);
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .public-body:not(.public-home) main {
    padding: 100px 12px 60px;
  }
}

@media (max-width: 520px) {
  .public-home .breaking-news {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
  }

  .breaking-news > strong {
    justify-content: flex-start;
  }

  .service-modal {
    align-items: end;
    padding: 0;
  }

  .service-modal-panel {
    width: 100%;
    max-height: calc(100dvh - var(--public-header-height));
    border-radius: 16px 16px 0 0;
  }

  .service-modal-body {
    max-height: calc(100dvh - var(--public-header-height) - 72px);
  }
}

@media (max-width: 420px) {
  body.public-home main > section#home.hero {
    height: 300px !important;
    max-height: 300px;
  }

  .logo-name-en {
    font-size: 0.54rem;
  }

  .logo-sector {
    font-size: 0.46rem;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .phone-country-code,
  .phone-number-input {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.active,
  .fade-in-up {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .breaking-news-track.is-animated {
    min-width: 100%;
    animation: none;
    transform: none;
  }

  .breaking-news-copy {
    display: none;
  }

  .service-card:hover .service-card-image {
    transform: none;
  }

  .service-modal-panel {
    animation: none;
  }

  .breaking-news-viewport {
    overflow-x: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
