/* Классы .app-container / .app-content / .app-navbar удалены: они не были
   привязаны ни к одному компоненту (проверено грепом по src), но задавали
   min-height: 100vh, height: calc(100vh - 80px) и width: 100vw — ровно те
   значения, из-за которых макет переполнял вьюпорт на мобильных.
   Высоту вьюпорта в приложении задаёт только #root (src/index.css). */
/**
 * Общий класс вращения для иконок-лоадеров (IcWltLoader и т.п.).
 *
 * Раньше вращение было вшито в сам ic_wlt_loader.svg через SMIL
 * <animateTransform>. Это не работало: элемент был прямым потомком <svg>, то
 * есть анимировал атрибут transform внешнего <svg>, у которого его в SVG 1.1
 * нет — Chrome применял застывший угол вместо вращения. Вдобавок центром был
 * задан «0 0» (левый верхний угол), а не центр иконки, поэтому кольцо ещё и
 * уезжало со своего места. Там, где сверху навешивали CSS-вращение, смещённое
 * кольцо начинало ходить по орбите — выглядело как две независимо
 * движущиеся детали.
 *
 * Иконка теперь статичный ассет, а вращение навешивает потребитель этим классом.
 *
 * prefers-reduced-motion намеренно не обрабатываем: спиннер — функциональная
 * индикация занятости, остановленный читается как зависший интерфейс.
 */

@keyframes wl-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.wl-spin {
  animation: wl-spin 1s linear infinite;
  /* Явно, чтобы вращение шло вокруг центра иконки при любом transform-box. */
  transform-origin: 50% 50%;
}
/* Styles to ensure ripples respect boundaries */
.waylot-ripple-container {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* Ensure react-ripples container respects parent boundaries.
   Только для click-режима: в press-режиме прямой потомок — это уже контент,
   и подменять ему display/размеры нельзя. */
.waylot-ripple-container:not(.waylot-ripple-container--press) > div {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

/* Fix for buttons with rounded corners */
.waylot-ripple-container.waylot-ripple-rounded {
  border-radius: inherit;
}

/* Ensure the ripple wrapper takes full size */
.waylot-ripple-container:not(.waylot-ripple-container--press) > div:first-child {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- press-режим: волна стартует на pointerdown и держится, пока нажато --- */
.waylot-ripple-container--press {
  position: relative;
  overflow: hidden;
}

.waylot-ripple-wave {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: waylot-ripple-expand 400ms cubic-bezier(0.2, 0, 0.2, 1) forwards;
  will-change: transform, opacity;
}

@keyframes waylot-ripple-expand {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .waylot-ripple-wave {
    animation-duration: 1ms;
  }
}
@keyframes waylot-circular-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.waylot-circular-progress-indicator__svg {
  animation: waylot-circular-rotate 1.4s linear infinite;
}/* Toast icon color overrides */
.waylot-toast .waylot-toast-icon svg path,
.waylot-toast .waylot-toast-icon svg circle,
.waylot-toast .waylot-toast-icon svg rect,
.waylot-toast .waylot-toast-icon svg line,
.waylot-toast .waylot-toast-icon svg polyline,
.waylot-toast .waylot-toast-icon svg polygon {
  fill: var(--toast-icon-color) !important;
  stroke: var(--toast-icon-color) !important;
}

.waylot-toast .waylot-toast-close svg path,
.waylot-toast .waylot-toast-close svg circle,
.waylot-toast .waylot-toast-close svg rect,
.waylot-toast .waylot-toast-close svg line,
.waylot-toast .waylot-toast-close svg polyline,
.waylot-toast .waylot-toast-close svg polygon {
  fill: var(--toast-close-color) !important;
  stroke: var(--toast-close-color) !important;
}@keyframes waylot-search-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.waylot-search-pulse {
  animation: waylot-search-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}.region-list-container {
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE and Edge */
}
.region-list-container::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Opera */
}.scrollbar-hide {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}/**
 * Styles for the ImageCropModal component
 */

.image-crop-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.image-crop-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
}

.image-crop-modal-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.image-crop-modal-cancel-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 16px;
}

.image-crop-modal-cancel-btn:hover {
  opacity: 0.8;
}

.image-crop-modal-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Crop area styling */
.image-crop-modal-content .reactEasyCrop_Container {
  background-color: #000;
}

/* Dashed border for crop area - 20:19 aspect ratio */
.image-crop-modal-content .reactEasyCrop_CropArea {
  border: 2px dashed rgba(255, 255, 255, 0.8) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Dark overlay outside crop area */
.image-crop-modal-content .reactEasyCrop_CropAreaGrid::before {
  border: none !important;
}

.image-crop-modal-controls {
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
}

.image-crop-modal-zoom-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.image-crop-modal-zoom-label {
  color: white;
  font-size: 14px;
  min-width: 80px;
}

.image-crop-modal-zoom-slider {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.image-crop-modal-zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.image-crop-modal-zoom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: none;
}

.image-crop-modal-footer {
  display: flex;
  gap: 12px;
  padding: 16px;
  padding-bottom: 32px;
  background-color: rgba(0, 0, 0, 0.5);
}

.image-crop-modal-btn {
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.image-crop-modal-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.image-crop-modal-btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.image-crop-modal-btn-secondary:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.3);
}

.image-crop-modal-btn-primary {
  background-color: #2a90d9;
  color: white;
}

.image-crop-modal-btn-primary:hover:not(:disabled) {
  background-color: #2480c4;
}

/* Loading spinner */
.image-crop-modal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.image-crop-modal-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Error message */
.image-crop-modal-error {
  padding: 12px 16px;
  background-color: rgba(220, 53, 69, 0.9);
  color: white;
  text-align: center;
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .image-crop-modal-header {
    padding: 12px;
  }
  
  .image-crop-modal-title {
    font-size: 16px;
  }
  
  .image-crop-modal-controls {
    padding: 12px;
  }
  
  .image-crop-modal-footer {
    padding: 12px;
    padding-bottom: 24px;
  }
  
  .image-crop-modal-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}.loader-spinner {
    animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}
/* Маркер «моя локация»: без тени и фона, отдельный слой — меньше артефактов при зуме */
.waylot-mylocation-marker {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  transform: translateZ(0);
  contain: layout style paint;
}
.waylot-cluster-marker {
  background: none !important;
  border: none !important;
}

.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  transition:
    transform 0.25s ease-out,
    opacity 0.25s ease-in;
}

/* Появление новых пинов: анимируем ВНУТРЕННИЙ div иконки, чтобы не конфликтовать
   с leaflet'овским transform: translate3d позиционирования маркера. Проигрывается единожды. */
@keyframes waylot-marker-enter {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.waylot-map-marker--enter > div {
  animation: waylot-marker-enter 0.2s ease-out;
}

/* Загрузка данных: блокируем клики/ховер по пинам и кластерам и слегка приглушаем.
   Таргетим только маркеры — пан/зум контейнера карты не задеваются. */
.waylot-markercluster--disabled .leaflet-marker-icon {
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
/* Chip markers on map: no Leaflet default border/background */
.waylot-map-filter-chip-marker {
  border: none !important;
  background: none !important;
  pointer-events: auto !important;
  cursor: pointer;
}

.map-filter-screen__chips-scroll::-webkit-scrollbar {
  display: none;
}

/* Плавное увеличение пина при выделении (S → L). Leaflet пересоздаёт внутренний div
   при setIcon, поэтому анимируем через keyframe на маунте, а не через transition.
   translate(-50%, -50%) сохраняем — он центрирует пин на координате. */
@keyframes waylot-map-filter-pin-pop {
  from {
    transform: translate(-50%, -50%) scale(0.82);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Маркер «моё местоположение»: синяя точка + пульсирующая тень. */
.waylot-mylocation-marker {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.waylot-mylocation-dot {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
}

/* Пульс на отдельном слое под точкой — сама svg не дрожит при анимации. */
.waylot-mylocation-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2d7cfe;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0.75;
  animation: waylot-mylocation-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes waylot-mylocation-pulse {
  from {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.75;
  }
  to {
    transform: translate(-50%, -50%) scale(2.6);
    opacity: 0;
  }
}
/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@layer properties;
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/assets/fonts/roboto/roboto-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/assets/fonts/roboto/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/assets/fonts/roboto/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --sat: env(safe-area-inset-top, 0px);
  --sar: env(safe-area-inset-right, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
}
@keyframes wlt-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.wlt-shimmer {
  background: linear-gradient(110deg, #dadadb 30%, #ebebeb 50%, #dadadb 70%);
  background-size: 200% 100%;
  animation: wlt-shimmer 1.4s linear infinite;
}
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
  outline: none;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
button,
a,
[role="button"],
[role="link"],
.clickable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#root {
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  padding-top: var(--sat);
  padding-left: var(--sal);
  padding-right: var(--sar);
}
button {
  outline: none;
}
button:focus {
  outline: none;
}
.pointer-events-none {
  pointer-events: none;
}
.collapse {
  visibility: collapse;
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}
.static {
  position: static;
}
.sticky {
  position: sticky;
}
.top-1\/2 {
  top: calc(1/2 * 100%);
}
.left-1\/2 {
  left: calc(1/2 * 100%);
}
.isolate {
  isolation: isolate;
}
.container {
  width: 100%;
}
.box-border {
  box-sizing: border-box;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.aspect-\[2240\/3329\] {
  aspect-ratio: 2240/3329;
}
.size-\[8px\] {
  width: 8px;
  height: 8px;
}
.size-\[14px\] {
  width: 14px;
  height: 14px;
}
.size-\[16px\] {
  width: 16px;
  height: 16px;
}
.size-\[22px\] {
  width: 22px;
  height: 22px;
}
.size-\[24px\] {
  width: 24px;
  height: 24px;
}
.size-\[40px\] {
  width: 40px;
  height: 40px;
}
.size-\[80px\] {
  width: 80px;
  height: 80px;
}
.h-\[16px\] {
  height: 16px;
}
.h-\[22px\] {
  height: 22px;
}
.h-\[24px\] {
  height: 24px;
}
.h-\[32px\] {
  height: 32px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[590px\] {
  height: 590px;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.min-h-\[48px\] {
  min-height: 48px;
}
.min-h-full {
  min-height: 100%;
}
.min-h-px {
  min-height: 1px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-\[4px\] {
  width: 4px;
}
.w-\[16px\] {
  width: 16px;
}
.w-\[24px\] {
  width: 24px;
}
.w-\[32px\] {
  width: 32px;
}
.w-\[52px\] {
  width: 52px;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.w-px {
  width: 1px;
}
.max-w-\[420px\] {
  max-width: 420px;
}
.min-w-\[22px\] {
  min-width: 22px;
}
.min-w-\[24px\] {
  min-width: 24px;
}
.min-w-px {
  min-width: 1px;
}
.flex-1 {
  flex: 1;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.-translate-x-1\/2 {
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.translate-x-\[8px\] {
  --tw-translate-x: 8px;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.translate-x-\[24px\] {
  --tw-translate-x: 24px;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.-translate-y-1\/2 {
  --tw-translate-y: calc(calc(1/2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}
.transform {
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.cursor-default {
  cursor: default;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-baseline {
  align-items: baseline;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-stretch {
  align-items: stretch;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.gap-\[2px\] {
  gap: 2px;
}
.gap-\[4px\] {
  gap: 4px;
}
.gap-\[8px\] {
  gap: 8px;
}
.gap-\[12px\] {
  gap: 12px;
}
.gap-\[16px\] {
  gap: 16px;
}
.gap-\[18px\] {
  gap: 18px;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.rounded-\[10px\] {
  border-radius: 10px;
}
.rounded-\[12px\] {
  border-radius: 12px;
}
.rounded-\[16px\] {
  border-radius: 16px;
}
.rounded-\[20px\] {
  border-radius: 20px;
}
.rounded-\[32px\] {
  border-radius: 32px;
}
.rounded-\[40px\] {
  border-radius: 40px;
}
.rounded-full {
  border-radius: calc(infinity * 1px);
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.border-none {
  --tw-border-style: none;
  border-style: none;
}
.bg-transparent {
  background-color: transparent;
}
.bg-gradient-to-r {
  --tw-gradient-position: to right in oklab;
  background-image: linear-gradient(var(--tw-gradient-stops));
}
.from-transparent {
  --tw-gradient-from: transparent;
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.to-transparent {
  --tw-gradient-to: transparent;
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fill {
  -o-object-fit: fill;
     object-fit: fill;
}
.p-\[16px\] {
  padding: 16px;
}
.p-\[20px\] {
  padding: 20px;
}
.px-\[8px\] {
  padding-inline: 8px;
}
.py-\[2px\] {
  padding-block: 2px;
}
.py-\[8px\] {
  padding-block: 8px;
}
.text-center {
  text-align: center;
}
.tracking-\[-0\.48px\] {
  --tw-tracking: -0.48px;
  letter-spacing: -0.48px;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.capitalize {
  text-transform: capitalize;
}
.lowercase {
  text-transform: lowercase;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.line-through {
  text-decoration-line: line-through;
}
.overline {
  text-decoration-line: overline;
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0%;
}
.opacity-50 {
  opacity: 50%;
}
.opacity-60 {
  opacity: 60%;
}
.opacity-100 {
  opacity: 100%;
}
.opacity-\[0\.38\] {
  opacity: 0.38;
}
.shadow-\[0px_0px_1px_0px_rgba\(0\,0\,0\,0\.04\)\,0px_0\.5px_1\.5px_0px_rgba\(0\,0\,0\,0\.19\)\] {
  --tw-shadow: 0px 0px 1px 0px var(--tw-shadow-color, rgba(0,0,0,0.04)), 0px 0.5px 1.5px 0px var(--tw-shadow-color, rgba(0,0,0,0.19));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.outline {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.filter {
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
}
.transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-all {
  transition-property: all;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-colors {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.transition-transform {
  transition-property: transform, translate, scale, rotate;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
.duration-200 {
  --tw-duration: 200ms;
  transition-duration: 200ms;
}
.duration-300 {
  --tw-duration: 300ms;
  transition-duration: 300ms;
}
.outline-none {
  --tw-outline-style: none;
  outline-style: none;
}
.hover\:scale-110 {
  &:hover {
    @media (hover: hover) {
      --tw-scale-x: 110%;
      --tw-scale-y: 110%;
      --tw-scale-z: 110%;
      scale: var(--tw-scale-x) var(--tw-scale-y);
    }
  }
}
.hover\:opacity-80 {
  &:hover {
    @media (hover: hover) {
      opacity: 80%;
    }
  }
}
.focus\:outline-none {
  &:focus {
    --tw-outline-style: none;
    outline-style: none;
  }
}
.active\:scale-95 {
  &:active {
    --tw-scale-x: 95%;
    --tw-scale-y: 95%;
    --tw-scale-z: 95%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }
}
.\[\&\:\:-webkit-scrollbar\]\:hidden {
  &::-webkit-scrollbar {
    display: none;
  }
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.make-offer-input input::-moz-placeholder {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #949494;
  opacity: 1;
}
.make-offer-input input::placeholder {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #949494;
  opacity: 1;
}
.make-offer-input input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #949494;
  opacity: 1;
}
.make-offer-input input::-moz-placeholder {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #949494;
  opacity: 1;
}
.make-offer-input input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #949494;
  opacity: 1;
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-gradient-position {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-via {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-stops {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-via-stops {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --tw-gradient-via-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --tw-gradient-to-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-gradient-position: initial;
      --tw-gradient-from: #0000;
      --tw-gradient-via: #0000;
      --tw-gradient-to: #0000;
      --tw-gradient-stops: initial;
      --tw-gradient-via-stops: initial;
      --tw-gradient-from-position: 0%;
      --tw-gradient-via-position: 50%;
      --tw-gradient-to-position: 100%;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}
