*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #ffffff;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
body {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em;
  line-height: 1.15;
}
p {
  margin: 0 0 1em;
}
.site-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.primary-menu a {
  color: #fff;
}
body {
  background-image: url('/wp-content/themes/flitch/assets/img/main-background-web.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.container {
  width: calc(100% -  48px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.site-main {
  min-height: 60vh;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  transition: 0.25s ease;
  cursor: pointer;
}
.button--primary {
  background: #f5b335;
  color: #111111;
  font-weight: 700;
}
body.menu-open {
  overflow: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid rgba(179, 179, 179, 0.5);
}
.site-header__inner {
  width: calc(100% -  48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  position: relative;
}
.site-header__brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header__phone {
  font-weight: 600;
}
.custom-logo-link,
.site-logo {
  display: inline-flex;
  align-items: center;
}
.custom-logo {
  max-height: 72px;
  width: auto;
}
.site-nav {
  justify-self: flex-start;
}
.primary-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu li {
  position: relative;
  list-style: none;
}
.primary-menu a {
  display: inline-block;
  padding: 12px 0;
}
.primary-menu .menu-item-has-children > a {
  padding-right: 16px;
}
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  margin: 0;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  list-style: none;
  z-index: 50;
}
.primary-menu .sub-menu li {
  display: block;
}
.primary-menu .sub-menu a {
  display: block;
  padding: 10px 16px;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.menu-toggle__line {
  display: block;
  width: 26px;
  height: 2px;
  background: #111111;
  margin: 3px 0;
  transition: 0.25s ease;
}
.menu-close {
  display: none !important;
}
@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .site-header__actions {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    background: #ffffff;
    z-index: 1103;
    padding: 88px 24px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    pointer-events: none;
    justify-self: unset;
  }
  .site-nav.is-resizing {
    transition: none !important;
  }
  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .site-nav .menu-close {
    display: block !important;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1106;
  }
  .site-nav .menu-close span {
    position: absolute;
    top: 19px;
    left: 8px;
    width: 24px;
    height: 2px;
    background: #111111;
  }
  .site-nav .menu-close span:first-child {
    transform: rotate(45deg);
  }
  .site-nav .menu-close span:last-child {
    transform: rotate(-45deg);
  }
  .primary-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    width: 100%;
  }
  .primary-menu a {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #dddddd;
  }
  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 16px;
    margin: 0;
  }
}
.site-footer {
  color: #fff;
  padding: 64px 0 24px;
}
.site-footer a {
  color: inherit;
}
.site-footer__inner {
  width: calc(100% -  48px);
  margin: 0 auto;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer__title {
  margin-bottom: 16px;
}
.site-footer__text,
.site-footer__address {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__bottom {
  padding-top: 20px;
}
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer-menu {
  list-style: none;
}
.footer-menu li + li {
  margin-top: 10px;
}
@media (max-width: 900px) {
  .site-footer__main {
    grid-template-columns: 1fr;
  }
}
.finder {
  padding: 32px 0;
  margin-left: 30px;
  max-width: 1200px;
}
.finder__window {
  display: grid;
  grid-template-columns: 240px minmax(220px, 1fr) 360px;
  min-height: 720px;
  background: #f5f5f7;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.14);
}
.finder__sidebar {
  background: #ececec;
  padding: 24px 20px;
  border-right: 1px solid #d8d8d8;
}
.finder__sidebar-group + .finder__sidebar-group {
  margin-top: 24px;
}
.finder__sidebar-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #7a7a7a;
  margin-bottom: 10px;
}
.finder__sidebar-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #1f1f1f;
  font-size: 1rem;
}
.finder__sidebar-item:hover,
.finder__sidebar-item:focus {
  background: rgba(0, 0, 0, 0.05);
}
.finder__sidebar-item.is-active {
  background: rgba(123, 92, 214, 0.12);
  color: #7b5cd6;
}
.finder__sidebar-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: inline-block;
  flex: 0 0 18px;
}
.finder__sidebar-icon-image {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex: 0 0 18px;
}
.finder__sidebar-text {
  display: inline-block;
}
.finder__columns {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  background: #f9f9fa;
}
.finder__column {
  min-width: 210px;
  border-right: 1px solid #dcdcdc;
  background: #f9f9fa;
}
.finder__list {
  display: flex;
  flex-direction: column;
}
.finder__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  color: #1f1f1f;
  transition: background 0.2s ease;
}
.finder__item:hover,
.finder__item:focus {
  background: rgba(0, 0, 0, 0.04);
}
.finder__item.is-active {
  background: #7b5cd6;
  color: #fff;
}
.finder__item-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.finder__item-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.finder__item-arrow {
  font-size: 1.2rem;
  line-height: 1;
  flex: 0 0 auto;
}
.finder__item-icon-image {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  flex: 0 0 16px;
}
.finder__item-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  flex: 0 0 14px;
}
.finder__item-icon--folder {
  background: #d9b546;
}
.finder__item-icon--file {
  background: #cfcfcf;
}
.finder__item-icon--link {
  background: #7b5cd6;
}
.finder__item-icon--video {
  background: #444;
}
.finder__item-icon--page {
  background: #9e9e9e;
}
.finder__detail {
  background: #fdfdfd;
}
.finder__detail-inner {
  padding: 32px 28px;
}
.finder__detail-empty {
  color: #7b7b7b;
  font-size: 1rem;
}
.finder__detail-preview {
  margin-bottom: 28px;
}
.finder__detail-preview-image {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #ddd;
}
.finder__detail-preview-placeholder {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 0.8;
  border: 1px solid #ddd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  background: #fff;
  font-size: 1.2rem;
}
.finder__detail-title {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #1f1f1f;
}
.finder__detail-meta-line {
  color: #8c8c8c;
  font-size: 1rem;
  margin-bottom: 20px;
}
.finder__detail-description {
  color: #5c5c5c;
  margin-bottom: 24px;
}
.finder__detail-info {
  margin-bottom: 28px;
}
.finder__detail-info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start;
}
.finder__detail-info-label {
  color: #969696;
  font-weight: 600;
}
.finder__detail-info-value {
  color: #1f1f1f;
}
.finder__detail-section-title {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #1f1f1f;
  font-weight: 700;
}
.finder__detail-tags {
  margin-bottom: 24px;
}
.finder__detail-tags-value {
  color: #8c8c8c;
}
.finder__detail-content {
  margin-bottom: 24px;
  color: #444;
}
.finder__detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  background: #7b5cd6;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.finder__detail-button:hover,
.finder__detail-button:focus {
  opacity: 0.9;
  color: #fff;
}
body.finder-lightbox-open {
  overflow: hidden;
}
.finder__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.finder__lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.finder__lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.finder__lightbox-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(52%);
  max-width: 900px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.finder__lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.finder__lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .finder__window {
    grid-template-columns: 220px minmax(200px, 1fr) 320px;
  }
}
@media (max-width: 991px) {
  .finder__window {
    grid-template-columns: 200px 1fr;
  }
  .finder__detail {
    grid-column: -1;
    border-top: 1px solid #dcdcdc;
  }
  .finder__columns {
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  .finder__window {
    grid-template-columns: 1fr;
  }
  .finder__sidebar {
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
  }
  .finder__columns {
    min-height: 280px;
  }
  .finder__column {
    min-width: 240px;
  }
  .finder__detail {
    border-top: 1px solid #dcdcdc;
  }
  .finder__detail-inner {
    padding: 24px 20px;
  }
  .finder__detail-title {
    font-size: 1.6rem;
  }
}
body.finder-mobile-open {
  overflow: hidden;
}
.finder-mobile {
  display: none;
  position: relative;
  min-height: 100vh;
  color: #fff;
}
.finder-mobile__home {
  min-height: 100vh;
}
.finder-mobile__overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 0, 18, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 60;
}
.finder-mobile__app-shell {
  position: fixed;
  inset: 0;
  background: #080221;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(24px) scale(0.96);
  transform-origin: bottom center;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 70;
  overflow: auto;
}
.finder-mobile__screen {
  display: none;
  min-height: 100vh;
}
.finder-mobile__screen.is-active {
  display: block;
}
.finder-mobile__panel {
  min-height: 100vh;
  background: #080221;
  padding: 24px 18px 120px;
}
.finder-mobile__topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.finder-mobile__topbar-title {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
}
.finder-mobile__back,
.finder-mobile__close-app,
.finder-mobile__mail-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #5e4b97;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}
.finder-mobile__dock {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(68%);
  max-width: 340px;
  background: rgba(94, 75, 151, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 80;
}
.finder-mobile__dock-icon {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.finder-mobile__dock-icon--coin {
  background: linear-gradient(180deg, #f4d56a 0%, #b98b18 100%);
}
.finder-mobile__dock-icon--finder {
  background: linear-gradient(180deg, #dff0ff 0%, #b2d5ff 100%);
}
.finder-mobile__dock-icon--mail {
  background: linear-gradient(180deg, #af6fe2 0%, #7b5cd6 100%);
}
.finder-mobile__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.finder-mobile__quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #231341;
  color: #fff;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}
.finder-mobile__quick-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid #6f57b8;
  display: inline-block;
  flex: 0 0 46px;
}
.finder-mobile__quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #231341;
  color: #fff;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
.finder-mobile__quick-card:hover,
.finder-mobile__quick-card:focus {
  background: #2b184f;
  color: #fff;
}
.finder-mobile__quick-icon-image {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  flex: 0 0 46px;
}
.finder-mobile__quick-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}
.finder-mobile__quick-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}
.finder-mobile__groups {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.finder-mobile__group {
  background: #231341;
  border-radius: 18px;
  padding: 14px;
}
.finder-mobile__group-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.finder-mobile__group-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.finder-mobile__group-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
}
.finder-mobile__group-item:hover,
.finder-mobile__group-item:focus {
  background: rgba(255, 255, 255, 0.06);
}
.finder-mobile__group-icon,
.finder-mobile__group-icon-image {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.finder-mobile__group-icon {
  border: 2px solid currentColor;
  border-radius: 999px;
  display: inline-block;
}
.finder-mobile__group-icon-image {
  object-fit: contain;
  display: block;
}
.finder-mobile__list-wrap {
  background: #231341;
  border-radius: 18px;
  padding: 12px;
}
.finder-mobile__list-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
}
.finder-mobile__list-item:hover,
.finder-mobile__list-item:focus {
  background: rgba(255, 255, 255, 0.06);
}
.finder-mobile__list-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.finder-mobile__list-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.finder-mobile__list-title {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.finder-mobile__list-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.finder-mobile__list-arrow {
  font-size: 1.4rem;
  line-height: 1;
}
.finder-mobile__list-icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex: 0 0 16px;
  display: inline-block;
}
.finder-mobile__list-icon--folder {
  background: #27e1ed;
}
.finder-mobile__list-icon--file {
  background: #f0f0f0;
}
.finder-mobile__list-icon--link {
  background: #a86be4;
}
.finder-mobile__list-icon--video {
  background: #444;
}
.finder-mobile__list-icon--page {
  background: #8f8f8f;
}
.finder-mobile__list-icon-image {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex: 0 0 18px;
}
.finder-mobile__detail-wrap {
  background: #231341;
  border-radius: 18px;
  padding: 18px 16px;
}
.finder-mobile__detail-preview {
  margin-bottom: 20px;
}
.finder-mobile__detail-preview-image {
  width: 100%;
  max-width: 220px;
  border-radius: 16px;
  display: block;
}
.finder-mobile__detail-preview-placeholder {
  width: 180px;
  aspect-ratio: 0.8;
  border-radius: 16px;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finder-mobile__detail-title {
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0 0 8px;
}
.finder-mobile__detail-meta-line {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 18px;
}
.finder-mobile__detail-description {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}
.finder-mobile__detail-info {
  margin-bottom: 18px;
}
.finder-mobile__detail-info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.finder-mobile__detail-info-label {
  color: rgba(255, 255, 255, 0.58);
}
.finder-mobile__detail-section-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.finder-mobile__detail-tags {
  margin-bottom: 18px;
}
.finder-mobile__detail-tags-value {
  color: rgba(255, 255, 255, 0.68);
}
.finder-mobile__detail-content {
  margin-bottom: 18px;
}
.finder-mobile__detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #a86be4;
  color: #fff;
  text-decoration: none;
}
.finder-mobile__mail-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}
.finder-mobile__mail-dialog {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  color: #181828;
  border-radius: 26px;
  padding: 26px 20px 20px;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.finder-mobile__mail-title {
  font-size: 2rem;
  line-height: 1.05;
  text-align: center;
  margin: 0 0 12px;
  color: #181828;
}
.finder-mobile__mail-text {
  text-align: center;
  margin: 0 0 18px;
  color: #4c4c63;
}
.finder-mobile__mail-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.finder-mobile__mail-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e1e1ea;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 1rem;
}
.finder-mobile__mail-submit {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #af6fe2 0%, #9a5fd7 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.finder-mobile__empty {
  color: rgba(255, 255, 255, 0.65);
  padding: 20px 8px;
}
.finder-mobile.is-finder-open .finder-mobile__overlay {
  opacity: 1;
  pointer-events: auto;
}
.finder-mobile.is-finder-open .finder-mobile__app-shell {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.finder-mobile.is-mail-open .finder-mobile__overlay {
  opacity: 1;
  pointer-events: auto;
}
.finder-mobile.is-mail-open .finder-mobile__mail-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.finder-mobile.is-mail-open .finder-mobile__mail-dialog {
  transform: translateY(0) scale(1);
}
@media (max-width: 767px) {
  .finder {
    display: none;
  }
  .finder-mobile {
    display: block;
  }
}
