/* Gutools local render bridge for frozen Header/Footer utility classes. */
header,
footer {
  box-sizing: border-box;
}

header *,
footer * {
  box-sizing: border-box;
}

header a,
footer a {
  color: inherit;
  text-decoration: none;
}

.image-compress-tool-page > header.sticky {
  position: static;
  top: auto;
}

footer h3,
footer p,
footer ul {
  margin: 0;
}

footer ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.w-full {
  width: 100%;
}

.h-16 {
  height: 4rem;
}

.size-9 {
  width: 2.25rem;
  height: 2.25rem;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-2\.5 {
  gap: 0.625rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-8 {
  gap: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.p-2 {
  padding: 0.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.-mr-2 {
  margin-right: -0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.border-b {
  border-bottom: 1px solid var(--gutools-border);
}

.border-t {
  border-top: 1px solid var(--gutools-border);
}

.rounded-md {
  border-radius: var(--gutools-radius-md);
}

.rounded-xl {
  border-radius: var(--gutools-radius-xl);
}

.bg-background\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}

.bg-background\/60 {
  background-color: rgba(255, 255, 255, 0.60);
}

.bg-muted\/30 {
  background-color: rgba(245, 247, 251, 0.30);
}

.hover\:bg-muted:hover {
  background-color: var(--gutools-muted);
}

.backdrop-blur {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

@supports ((-webkit-backdrop-filter: blur(0)) or (backdrop-filter: blur(0))) {
  .supports-\[backdrop-filter\]\:bg-background\/60 {
    background-color: rgba(255, 255, 255, 0.60);
  }
}

.object-cover {
  object-fit: cover;
}

.shadow-primary\/20 {
  --gutools-bridge-shadow-color: rgba(37, 99, 235, 0.20);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px var(--gutools-bridge-shadow-color, rgba(15, 23, 42, 0.10)), 0 2px 4px -2px var(--gutools-bridge-shadow-color, rgba(15, 23, 42, 0.10));
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.text-foreground {
  color: var(--gutools-foreground);
}

.text-muted-foreground {
  color: var(--gutools-muted-foreground);
}

.text-muted-foreground\/60 {
  color: rgba(100, 116, 139, 0.60);
}

.hover\:text-foreground:hover {
  color: var(--gutools-foreground);
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.leading-relaxed {
  line-height: 1.625;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}

.space-y-2\.5 > * + * {
  margin-top: 0.625rem;
}

@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }

  .sm\:inline {
    display: inline;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:gap-3 {
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }
}
