/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 */

html, body {
    height: 100%;
}

.t1 {
    font-size: 1.5rem;
}

.t2 {
    font-size: 1.3rem;
    color: #374151;
}
.static-page p {
  line-height: 2rem;
}

#category_product_properties_useful_tag_category_1_all li {
    color: white;
}
#login_main {
  background-image: url("/assets/home_bg-3778c0a5.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.pagy {
    margin-top: 0.5rem;
  display: flex;
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #6b7280;
}
.pagy > :not([hidden]) ~ :not([hidden]) {
  --space-reverse: 0;
  margin-right: calc(0.25rem * var(--space-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--space-reverse)));
}
.pagy a:not(.gap) {
  display: block;
  text-decoration: none;
  border-radius: 0.5rem;
  background-color: #e5e7eb;
  padding: 0.25rem 0.75rem;
  color: inherit;
}
.pagy a:not(.gap):hover {
  background-color: #d1d5db;
}
.pagy a:not(.gap):not([href]) { /* disabled links */
  cursor: default;
  background-color: #f3f4f6;
  color: #d1d5db;
}
.pagy a:not(.gap).current {
  background-color: #9ca3af;
  color: white;
}
.pagy label {
  white-space: nowrap;
  display: inline-block;
  border-radius: 0.5rem;
  background-color: #e5e7eb;
  padding: 0.125rem 0.75rem;
}
.pagy label input {
  line-height: 1.5rem;
  border-radius: 0.375rem;
  border-style: none;
  background-color: #f3f4f6;
}

float-box {
  position: relative;
  display: block;
}

float-box .float-item {
  position: absolute;
  top: 0;
  left: 0;
}

.float-item {
  width: 216px;
  padding: 12px 0;
}

.float-item li {
  list-style: none;
  font-size: 1rem;
  color: var(--color-dark);
  padding-left: 1.5em;
  padding-bottom: 8px;
}
form.w-full {
  max-width: 100%;
}

.notice {
  color: var(--color-red-dark);
  font-size: 0.7rem;
}

/* ... existing variable definitions ... */

form .field {
  margin: 0.5rem 0;
}

form .field label {
  display: block;
  color: var(--color-gray-4);
}

form .field > input,
form .field > textarea,
form .field > select {
  padding: 0.4rem;
  border: 1px solid var(--color-gray-4);
  border-radius: 0.2rem;
  width: 100%;
  background: var(--color-gray-1);
}

form .field .field_with_errors > input,
form .field .field_with_errors > textarea,
form .field .field_with_errors > select {
  padding: 0.1rem;
  border: 1px solid var(--color-gray-4);
  border-radius: 0.2rem;
  width: 100%;
  background: var(--color-red-light);
}