:root {
  --homev2-card-bg: rgba(255, 255, 255, .92);
  --homev2-card-border: rgba(229, 231, 235, .9);
  --homev2-card-radius: 9px;
  --homev2-card-shadow: 0 11px 16px rgba(15, 23, 42, .10);
  --homev2-muted: #64748b;
  --homev2-text: #0f172a;
  --homev2-blue: #2563eb;
  --homev2-orange: #bbbbbb;
}

body.home-v2-page .Wrapper .content {
  max-width: 100%;
  padding: 0px;
}

body.home-v2-page {
  overflow-x: hidden;
  font-family: system-ui;
}

body.home-v2-page .Wrapper, body.home-v2-page .Wrapper > .content, body.home-v2-page #Main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.home-v2-page #top .content {
  width: 100%;
  max-width: 1227px;
  padding: 0px 10px;
  box-sizing: border-box;
}

body.home-v2-page #top .site-nav, body.home-v2-page .site-nav .logo, body.home-v2-page .site-nav .tools, body.home-v2-page .site-nav .tools-links, body.home-v2-page .logo-info {
  min-width: 0px;
}

body.home-v2-page .logo-title-info {
  max-width: 42vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#Main > .home-v2-shell {
  width: 100%;
  max-width: 100%;
  position: relative;
  left: auto;
  right: auto;
  margin-left: 0px;
  margin-right: 0px;
}

.home-v2-telegram-strip {
  box-sizing: border-box;
  min-height: 72px;
}

.home-v2-telegram-strip__inner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  margin: 10px 0px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 18px;
  z-index: 9990;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: rgba(15, 23, 42, 0.14) 0px 18px 45px, rgba(255, 255, 255, 0.7) 0px 1px 0px inset, rgba(255, 255, 255, 0.18) 0px -1px 0px inset;
  border-radius: 999px;
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
}

.home-v2-telegram-strip__inner::before, .home-v2-telegram-strip__inner::after {
  content: "";
  position: absolute;
  inset: 0px;
  pointer-events: none;
}

.home-v2-telegram-strip__inner::before {
  border-radius: inherit;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0.06) 100%);
}

.home-v2-telegram-strip__inner::after {
  inset: 2px 12% 42%;
  border-radius: 999px;
  background: radial-gradient(circle at center top, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 72%);
  opacity: 0.9;
}

.home-v2-telegram-strip__inner > * {
  position: relative;
  z-index: 1;
}

.home-v2-telegram-strip__eyebrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: rgba(255, 255, 255, 0.72) 0px 1px 0px inset;
  color: rgb(37, 99, 235);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: system-ui;
  background-image: linear-gradient(120deg, #2563eb 0%, #06b6d4 30%, #8b5cf6 62%, #ec4899 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-v2-telegram-strip__link {
  display: inline-block;
  color: rgb(37, 99, 235);
  font-size: 15px;
  text-decoration: none;
  line-height: 1.5;
  font-family: system-ui;
  background-image: linear-gradient(90deg, #0f172a 0%, #2563eb 22%, #06b6d4 46%, #8b5cf6 72%, #ec4899 100%);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 0.2s ease;
}

.home-v2-telegram-strip__link:hover {
  filter: saturate(1.12) brightness(1.06);
}

.home-v2-shell {
  padding: clamp(26px, 3.5vw, 54px) 16px 44px;
  box-sizing: border-box;
}

.home-v2-shell__inner {
  max-width: 1200px;
  margin: 0px auto;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .home-v2-telegram-strip {
      min-height: 108px;
  }

  .home-v2-telegram-strip__inner {
      align-items: flex-start;
      justify-content: flex-start;
      flex-direction: column;
      gap: 8px;
      padding: 12px 14px;
      width: calc(-24px + 100vw);
  }

  .home-v2-telegram-strip__link {
      font-size: 14px;
  }
}

.home-v2-row {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.home-v2-row--top {
  grid-template-columns: 2fr 2fr 2.5fr;
}

.home-v2-row--bottom {
  margin-top: 22px;
  grid-template-columns: 2.5fr 2fr 2fr;
}

.home-v2-card {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid #fff;
  border-radius: var(--homev2-card-radius);
  box-shadow: var(--homev2-card-shadow);
  overflow: hidden;
  box-sizing: border-box;
}

.home-v2-hero {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--homev2-text);
  background: rgb(255, 255, 255);
  min-height: 260px;
}

.home-v2-hero--instance {
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  min-height: 420px;
}

.home-v2-hero--instance[data-intent] {
  isolation: isolate;
  background: radial-gradient(120% 120% at 18% 8%, var(--homev2-inst-c1, rgba(250, 204, 21, .22)), rgba(255, 255, 255, 0) 60%), radial-gradient(120% 120% at 82% 12%, var(--homev2-inst-c2, rgba(59, 130, 246, .14)), rgba(255, 255, 255, 0) 62%), radial-gradient(140% 160% at 50% 118%, var(--homev2-inst-c3, rgba(99, 102, 241, .10)), rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
}

.home-v2-hero--instance[data-intent]::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: radial-gradient(closest-side at 50% 35%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 62%);
  opacity: 0.5;
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}

.home-v2-hero--instance[data-intent]::after {
  content: attr(data-intent-label);
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--homev2-inst-wm, rgba(15, 23, 42, .10));
  transform: rotate(-8deg);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.home-v2-hero--instance[data-intent] > * {
  position: relative;
  z-index: 1;
}

.home-v2-hero--instance[data-intent="topup"][data-variant="1"] {
  --homev2-inst-c1: rgba(250, 204, 21, .34);
  --homev2-inst-c2: rgba(34, 197, 94, .14);
  --homev2-inst-c3: rgba(59, 130, 246, .10);
  --homev2-inst-wm: rgba(234, 179, 8, .18);
}

.home-v2-hero--instance[data-intent="topup"][data-variant="2"] {
  --homev2-inst-c1: rgba(168, 85, 247, .22);
  --homev2-inst-c2: rgba(236, 72, 153, .16);
  --homev2-inst-c3: rgba(59, 130, 246, .10);
  --homev2-inst-wm: rgba(99, 102, 241, .18);
}

.home-v2-hero--instance[data-intent="carpool"] {
  --homev2-inst-c1: rgba(34, 197, 94, .22);
  --homev2-inst-c2: rgba(14, 165, 233, .14);
  --homev2-inst-c3: rgba(250, 204, 21, .08);
  --homev2-inst-wm: rgba(34, 197, 94, .16);
}

.home-v2-hero__media--instance {
  padding: 6px 6px 0px;
  height: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-v2-hero__brand {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.78);
  line-height: 1.2;
  padding: 0px 10px;
}

.home-v2-hero__brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.home-v2-hero__cycle {
  text-align: center;
  font-size: 22px;
  line-height: 1;
  color: rgb(71, 85, 105);
}

.home-v2-inst__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.home-v2-inst__headline {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  color: rgba(0, 0, 0, 0.78);
}

.home-v2-inst__sub {
  font-size: 14px;
  line-height: 1.1;
  color: rgb(55, 55, 55);
}

.home-v2-inst__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 30px;
}

.home-v2-inst__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(226, 232, 240, 0.85);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.home-v2-inst__icon-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

.home-v2-inst__text {
  min-width: 0px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-v2-inst__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  text-overflow: ellipsis;
  color: rgba(15, 23, 42, 0.9);
}

.home-v2-inst__desc {
  font-size: 11px;
  line-height: 1.1;
  color: rgba(15, 23, 42, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-v2-inst__price {
  margin-left: auto;
  min-width: 56px;
  padding: 5px 27px;
  border-radius: 8px;
  background: rgb(233, 238, 244);
  text-align: center;
  color: var(--homev2-blue);
  font-size: 25px;
  line-height: 1;
  box-sizing: border-box;
}

.home-v2-inst__currency {
  margin-right: 1px;
}

.home-v2-inst__price--na {
  color: rgba(15, 23, 42, 0.9);
}

.home-v2-hero__media {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.home-v2-hero__img {
    width: min(183px, 37%);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    padding: 10px;
    border-radius: 23px;

}

.home-v2-hero__bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.home-v2-hero__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.home-v2-hero__cta {
  flex: 0 0 auto;
  background: rgb(233, 238, 244);
  color: rgb(37, 99, 235);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

.home-v2-hero:hover .home-v2-hero__cta {
  transform: none;
}

.home-v2-cat__cover {
  position: relative;
  isolation: isolate;
  height: 86px;
  width: 100%;
  background: radial-gradient(120% 180% at 18% 30%, rgba(99, 102, 241, 0.22), rgba(99, 102, 241, 0) 55%), radial-gradient(140% 180% at 82% 18%, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0) 60%), radial-gradient(120% 200% at 50% 125%, rgba(250, 204, 21, 0.18), rgba(250, 204, 21, 0) 62%), linear-gradient(rgb(255, 255, 255) 0%, rgb(248, 250, 252) 55%, rgb(238, 242, 255) 100%);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-v2-cat__cover::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(closest-side at 50% 38%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 62%);
  opacity: 0.55;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.home-v2-cat__cover::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 42%, rgba(15, 23, 42, 0.06));
  pointer-events: none;
  z-index: 0;
}

.home-v2-cat__float {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--sz, 40px);
  height: var(--sz, 40px);
  background-image: var(--icon, none);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(var(--scale, 1));
  opacity: var(--op, .42);
  pointer-events: none;
  z-index: 2;
}

.home-v2-card--compact .home-v2-cat__float {
  --scale: .82;
}

.home-v2-cat__cover-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: min(360px, 100% - 132px);
  padding: 0px 6px;
  color: rgba(15, 23, 42, 0.86);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: serif;
  text-shadow: rgba(15, 23, 42, 0.1) 0px 12px 26px;
  pointer-events: none;
  z-index: 3;
}

.home-v2-card--compact .home-v2-cat__cover-title {
  font-size: 16px;
}

.home-v2-cat__float--1 {
  --x: 12%;
  --y: 34%;
  --sz: 30px;
  --rot: -10deg;
  --icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%232563eb'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M12%202v20M2%2012h20M4.93%204.93l14.14%2014.14M19.07%204.93L4.93%2019.07'/%3E%3C/svg%3E");
}

.home-v2-cat__float--2 {
  --x: 22%;
  --y: 66%;
  --sz: 30px;
  --rot: 8deg;
  --op: .36;
  --icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%232563eb'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%2021v-2a4%204%200%200%200-4-4H8a4%204%200%200%200-4%204v2'/%3E%3Ccircle%20cx='12'%20cy='7'%20r='4'/%3E%3C/svg%3E");
}

.home-v2-cat__float--3 {
  --x: 91%;
  --y: 34%;
  --sz: 30px;
  --rot: 10deg;
  --icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%232563eb'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M21%2015a4%204%200%200%201-4%204H7l-4%204V7a4%204%200%200%201%204-4h10a4%204%200%200%201%204%204z'/%3E%3C/svg%3E");
}

.home-v2-cat__float--4 {
  --x: 78%;
  --y: 66%;
  --sz: 30px;
  --rot: -8deg;
  --op: .36;
  --icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%232563eb'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%209l9-7%209%207v11a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z'/%3E%3Cpath%20d='M9%2022V12h6v10'/%3E%3C/svg%3E");
}

.home-v2-cat__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.home-v2-cat__head {
  padding: 18px 18px 10px;
}

.home-v2-cat__kicker {
  font-size: 16px;
  color: rgb(135, 135, 135);
  line-height: 1;
}

.home-v2-cat__title {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 600;
  color: var(--homev2-text);
  letter-spacing: 0.02em;
  font-family: system-ui;
}

.home-v2-cat__list {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.home-v2-cat__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 3px 10px;
  text-decoration: none;
  color: var(--homev2-text);
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: rgb(217, 217, 217);
}

.home-v2-cat__item:last-child {
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

.home-v2-cat__item:hover {
  background: rgba(59, 130, 246, 0.08);
  transform: none;
}

.home-v2-cat__meta {
  min-width: 0px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.home-v2-cat__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.home-v2-cat__thumb {
  width: 41px;
  height: 41px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 4px;
}

.home-v2-cat__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.home-v2-cat__name {
  flex: 1 1 auto;
  min-width: 0px;
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-v2-cat__name-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0px;
}

.home-v2-cat__cycle {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: rgb(29, 78, 216);
  font-size: 11px;
  line-height: 1.2;
}

.home-v2-cat__sub {
  font-size: 14px;
  line-height: 1.1;
  color: var(--homev2-orange);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-v2-cat__price {
  flex: 0 0 auto;
  min-width: 72px;
  text-align: center;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(226, 232, 240, 0.75);
  color: var(--homev2-blue);
  font-size: 19px;
  line-height: 1;
  box-sizing: border-box;
  font-family: system-ui;
}

.home-v2-cat__currency {
  margin-right: 1px;
  font-weight: 900;
}

.home-v2-cat__price--na {
  color: rgb(15, 23, 42);
}

.home-v2-cat__empty {
  padding: 0px 18px 18px;
  color: var(--homev2-muted);
  font-size: 13px;
}

.home-v2-card--compact .home-v2-cat__head {
  padding: 16px 16px 8px;
}

.home-v2-card--compact .home-v2-cat__list {
  padding: 6px 10px 14px;
}

.home-v2-card--compact .home-v2-cat__cover {
  height: 64px;
}

.home-v2-guide__head {
  padding: 18px 18px 8px;
}

.home-v2-guide__kicker {
  font-size: 12px;
  color: rgb(148, 163, 184);
  line-height: 1;
}

.home-v2-guide__title {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
  color: var(--homev2-text);
  letter-spacing: 0.02em;
}

.home-v2-guide__body {
  padding: 8px 18px 18px;
}

.home-v2-guide__list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-v2-guide__li {
  font-size: 13px;
  line-height: 1.25;
  color: var(--homev2-text);
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 10px 12px;
  border-radius: 12px;
}

.home-v2-guide__link {
  color: var(--homev2-text);
  text-decoration: none;
  font-weight: 700;
}

.home-v2-guide__link:hover {
  color: var(--homev2-blue);
}

.home-v2-more {
  margin-top: 22px;
}

.home-v2-more__title {
  font-size: 14px;
  color: var(--homev2-muted);
  font-weight: 700;
  margin: 0px 0px 10px;
}

.home-v2-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 980px) {
  .home-v2-shell__inner {
      max-width: 920px;
  }

  .home-v2-more__grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .home-v2-row--top, .home-v2-row--bottom {
      grid-template-columns: 1fr;
  }

  .home-v2-hero {
      min-height: 240px;
  }

  .home-v2-hero--instance {
      min-height: 420px;
  }

  .home-v2-more__grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  body.home-v2-page #top .content {
      padding: 0px 8px;
  }

  body.home-v2-page .logo-title-info {
      display: none;
  }
}

body.home-stock-modal-open {
  overflow: hidden;
}

.home-stock-modal[hidden] {
  display: none !important;
}

.home-stock-modal {
  position: fixed;
  inset: 0px;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.home-stock-modal__backdrop {
  position: absolute;
  inset: 0px;
  background: rgba(15, 23, 42, 0.48);
}

.home-stock-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  border-radius: 14px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: rgba(15, 23, 42, 0.24) 0px 24px 50px;
  padding: 18px 18px 16px;
  color: rgb(15, 23, 42);
}

.home-stock-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0px;
  border-radius: 999px;
  background: none;
  color: rgb(100, 116, 139);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.home-stock-modal__close:hover {
  background: rgb(241, 245, 249);
  color: rgb(15, 23, 42);
}

.home-stock-modal__title {
  margin: 0px 24px 8px 0px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.home-stock-modal__message {
  margin: 0px;
  color: rgb(71, 85, 105);
  font-size: 14px;
  line-height: 1.6;
}

.home-stock-modal__actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.home-stock-modal__btn {
  appearance: none;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 10px;
  background: rgb(37, 99, 235);
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 14px;
  cursor: pointer;
}

.home-stock-modal__btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  .home-stock-modal {
      padding: 14px;
      align-items: flex-end;
  }

  .home-stock-modal__dialog {
      width: 100%;
      border-radius: 14px;
      padding: 16px;
  }
}
