@charset "UTF-8";
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 0;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgb(217, 224, 231);
  border-radius: 8px;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.ls-0 {
  letter-spacing: 0px;
}

.ls-1 {
  letter-spacing: 1px;
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.ls-4 {
  letter-spacing: 4px;
}

.ls-5 {
  letter-spacing: 5px;
}

label.form-check-label {
  cursor: pointer;
  user-select: none;
}

.dropdown-item-danger {
  color: #dc3545;
  background: transparent;
}

.dropdown-item-danger:focus,
.dropdown-item-danger:hover {
  color: #bd362f;
  background: #f8f9fa;
}

label.switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 32px;
}
label.switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
label.switch input[type=checkbox]:checked + .slider {
  background-color: #2196f3;
}
label.switch input[type=checkbox]:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
label.switch input[type=checkbox]:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
label.switch span.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
label.switch span.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
label.switch span.round {
  border-radius: 34px;
}
label.switch span.round:before {
  border-radius: 50%;
}

.no-results-box {
  padding: 50px;
  border-radius: 32px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.no-results-box h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.no-results-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #606e9a;
  opacity: 0.4;
  font-family: "Poppins", sans-serif;
}
.no-results-box p {
  font-size: 1rem;
  max-width: 560px;
}

.btn-theme-blue {
  background: #4364d3;
  color: #ffffff;
  transition: all 0.25s ease-in-out;
}
.btn-theme-blue:hover {
  background: #3b59ba;
  color: #ffffff;
}

.btn-outline-theme-blue {
  border-color: #4364d3;
  color: #4364d3;
  transition: all 0.25s ease-in-out;
}
.btn-outline-theme-blue:hover {
  background: #4364d3;
  color: #ffffff;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .checkbox-wrapper label {
    cursor: pointer;
  }
  .checkbox-wrapper input[type=checkbox] {
    margin: 0;
    margin-top: 2px;
    --active: #275efe;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, 0.3);
    --border: #bbc1e1;
    --border-hover: #275efe;
    --background: #fff;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 22px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    cursor: pointer;
    box-shadow: none !important;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  .checkbox-wrapper input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  .checkbox-wrapper input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }
  .checkbox-wrapper input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .checkbox-wrapper input[type=checkbox]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .checkbox-wrapper input[type=checkbox]:disabled + label {
    cursor: not-allowed;
  }
  .checkbox-wrapper input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .checkbox-wrapper input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .checkbox-wrapper input[type=checkbox]:not(.switch) {
    width: 21px;
  }
  .checkbox-wrapper input[type=checkbox]:not(.switch):after {
    opacity: var(--o, 0);
  }
  .checkbox-wrapper input[type=checkbox]:not(.switch):checked {
    --o: 1;
  }
  .checkbox-wrapper input[type=checkbox] + label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
  }
  .checkbox-wrapper input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  .checkbox-wrapper input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  .checkbox-wrapper input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  .checkbox-wrapper input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  .checkbox-wrapper input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  .checkbox-wrapper input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  .checkbox-wrapper input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
}
.checkbox-wrapper * {
  box-sizing: inherit;
}

.checkbox-wrapper *:before,
.checkbox-wrapper *:after {
  box-sizing: inherit;
}

/* From Uiverse.io by alexruix */
.square-box-loader {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
}

.square-box-loader:before {
  content: "";
  width: 48px;
  height: 5px;
  background: rgba(67, 101, 211, 0.2980392157);
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.square-box-loader:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #4364d3;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

.overlay-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 9999;
}
.overlay-loader .loading-container {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes shadow324 {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}
/* HTML: <div class="loader"></div> */
.box-circle-loader {
  width: 65px;
  aspect-ratio: 1;
  position: relative;
}

.box-circle-loader:before,
.box-circle-loader:after {
  content: "";
  position: absolute;
  border-radius: 50px;
  box-shadow: 0 0 0 3px inset #1a1a1a;
  animation: l5 2.5s infinite;
}

.box-circle-loader:after {
  animation-delay: -1.25s;
  border-radius: 0;
}

@keyframes l5 {
  0% {
    inset: 0 35px 35px 0;
  }
  12.5% {
    inset: 0 35px 0 0;
  }
  25% {
    inset: 35px 35px 0 0;
  }
  37.5% {
    inset: 35px 0 0 0;
  }
  50% {
    inset: 35px 0 0 35px;
  }
  62.5% {
    inset: 0 0 0 35px;
  }
  75% {
    inset: 0 0 35px 35px;
  }
  87.5% {
    inset: 0 0 35px 0;
  }
  100% {
    inset: 0 35px 35px 0;
  }
}
.heart-loader {
  width: 50px;
  aspect-ratio: 1;
  color: #dc1818;
  background: radial-gradient(circle at 60% 65%, currentColor 62%, rgba(0, 0, 0, 0) 65%) top left, radial-gradient(circle at 40% 65%, currentColor 62%, rgba(0, 0, 0, 0) 65%) top right, linear-gradient(to bottom left, currentColor 42%, rgba(0, 0, 0, 0) 43%) bottom left, linear-gradient(to bottom right, currentColor 42%, rgba(0, 0, 0, 0) 43%) bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.heart-loader:after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.4;
  animation: l3 1s infinite;
}

@keyframes l3 {
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
header {
  box-sizing: border-box;
}
header *, header *::before, header *::after {
  box-sizing: inherit;
}
header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  isolation: isolate;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 58px;
  gap: 24px;
}
@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 54px;
  }
}
header .nav-logo {
  flex-shrink: 0;
  min-width: 0;
}
header .nav-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
header .nav-logo .logo-link img.logo-img {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
header .nav-logo .logo-link .logo-text {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 450;
  color: #8a8a8a;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}
@media (max-width: 640px) {
  header .nav-logo .logo-link .logo-text {
    display: none;
  }
}
header .nav-logo .logo-link:hover .logo-text {
  color: #555;
}
header .endblock-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  header .endblock-navigation {
    display: none;
  }
}
header .endblock-navigation a {
  text-decoration: none;
  color: #3a3a3a;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.01em;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
header .endblock-navigation a:hover {
  background: #f0f0f0;
  color: #000;
}
header .endblock-navigation a i {
  font-size: 15px;
}
header .currency-select-wrapper {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
header .currency-select-wrapper .currency-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23888888' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: none;
  outline: none;
  cursor: pointer;
  color: #3a3a3a;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.01em;
  padding: 6px 26px 6px 12px;
  border-radius: 10px;
  transition: background-color 0.15s;
}
header .currency-select-wrapper .currency-select:hover, header .currency-select-wrapper .currency-select:focus {
  background-color: #f0f0f0;
}
header .endblock-navigation-mobile {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 4px;
}
header .endblock-navigation-mobile .currency-select-wrapper .currency-select {
  font-size: 13px;
  padding: 5px 22px 5px 10px;
}
@media (max-width: 900px) {
  header .endblock-navigation-mobile {
    display: flex;
    align-items: center;
  }
}
header .endblock-navigation-mobile .navigation-hamberger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.15s;
}
header .endblock-navigation-mobile .navigation-hamberger:hover {
  background: #f0f0f0;
}
header .endblock-navigation-mobile .navigation-hamberger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
header :root {
  --nav-transition: all 0.55s cubic-bezier(0.85, 0, 0.15, 1);
}
header .mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}
header .mobile-nav-overlay.active {
  visibility: visible;
  pointer-events: auto;
}
header .nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
header .mobile-nav-overlay.active .nav-backdrop {
  opacity: 1;
}
header .nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  overflow: hidden;
  transform: translateX(100%);
  transition: var(--nav-transition);
}
@media (max-width: 400px) {
  header .nav-drawer {
    width: 100%;
    padding: 0 24px;
  }
}
header .mobile-nav-overlay.active .nav-drawer {
  transform: translateX(0);
}
header .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  padding: 28px 0 20px;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 400px) {
  header .drawer-header {
    padding: 24px 0 16px;
  }
}
header .drawer-header .small-logo img {
  height: 18px;
  width: auto;
}
header .drawer-header .close-trigger {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}
header .drawer-header .close-trigger:hover {
  background: #f2f2f2;
}
header .drawer-header .close-trigger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #111;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
}
header .drawer-header .close-trigger span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
header .drawer-header .close-trigger span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .nav-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 0 32px;
}
header .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .nav-menu .menu-link {
  text-decoration: none;
  color: #111;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.15s;
}
header .nav-menu .menu-link:nth-child(1) {
  transition-delay: 0.08s;
}
header .nav-menu .menu-link:nth-child(2) {
  transition-delay: 0.16s;
}
header .nav-menu .menu-link:nth-child(3) {
  transition-delay: 0.24s;
}
header .nav-menu .menu-link:hover {
  color: #555;
}
header .nav-menu .menu-link .link-num {
  font-size: 0.7rem;
  font-weight: 400;
  font-family: monospace;
  color: #bbb;
  margin-bottom: 2px;
}
header .mobile-nav-overlay.active .nav-menu .menu-link {
  opacity: 1;
  transform: translateY(0);
}
header .nav-tools {
  margin-top: 12px;
}
header .nav-tools-label {
  margin: 0 0 12px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
}
header .nav-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
header .tool-grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 6px 14px;
  background: #f6f6f4;
  border-radius: 22px;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.15s ease;
}
header .tool-grid-card__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  font-size: 16px;
}
header .tool-grid-card__label {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #333;
}
header .tool-grid-card:hover {
  background: #eeeeec;
  transform: translateY(-2px);
}
header .tool-grid-card--more {
  background: #1a1a1a;
}
header .tool-grid-card--more .tool-grid-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
header .tool-grid-card--more .tool-grid-card__label {
  color: #fff;
}
header .tool-grid-card--more:hover {
  background: #000;
}
header .drawer-footer {
  border-top: 1px solid #ebebeb;
  padding: 24px 0 max(24px, env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
}
header .drawer-footer .footer-auth {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}
header .drawer-footer .footer-socials {
  display: flex;
  gap: 14px;
}
header .drawer-footer .footer-socials a {
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
header .drawer-footer .footer-socials a:hover {
  color: #555;
}
header .drawer-footer .footer-socials a i {
  font-size: 18px;
}

footer .footer-box {
  margin: 24px 80px;
  padding: 80px;
  border-radius: 48px;
  background: #111;
  color: white;
}
@media (max-width: 1024px) {
  footer .footer-box {
    margin: 20px 40px;
    padding: 40px;
    border-radius: 32px;
  }
}
@media (max-width: 768px) {
  footer .footer-box {
    margin: 16px 20px;
    padding: 32px 24px;
    border-radius: 24px;
  }
}
@media (max-width: 480px) {
  footer .footer-box {
    margin: 0;
    padding: 50px 24px 24px 24px;
    border-radius: 0;
  }
}
footer .footer-box .footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "logo navigation";
  grid-gap: 24px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  footer .footer-box .footer-container {
    grid-template-columns: 1fr;
    grid-template-areas: "navigation" "logo";
    grid-gap: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  footer .footer-box .footer-container {
    grid-gap: 50px;
    margin-bottom: 50px;
    text-align: center;
  }
}
footer .footer-box .footer-container .footer-logo {
  grid-area: logo;
}
footer .footer-box .footer-container .footer-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
footer .footer-box .footer-container .footer-logo .footer-logo-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
footer .footer-box .footer-container .footer-logo .social-icons {
  margin-top: 50px;
}
footer .footer-box .footer-container .footer-logo .social-icons ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  footer .footer-box .footer-container .footer-logo .social-icons ul {
    justify-content: center;
    margin-top: 24px;
  }
}
footer .footer-box .footer-container .footer-logo .social-icons ul li a {
  font-size: 24px;
  color: #f8f9fa;
  transition: all 0.25s ease-in-out;
}
footer .footer-box .footer-container .footer-logo .social-icons ul li a:hover {
  color: #ffffff;
}
footer .footer-box .footer-container .footer-logo .footer-gps-card {
  margin-top: 20px;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px;
}
@media (max-width: 480px) {
  footer .footer-box .footer-container .footer-logo .footer-gps-card {
    margin: 20px auto 0;
  }
}
footer .footer-box .footer-container .footer-logo .footer-gps-card__text {
  margin: 0 0 12px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  color: #f8f9fa;
}
footer .footer-box .footer-container .footer-logo .footer-gps-card__cta {
  display: flex;
  min-width: 220px;
  min-height: 60px;
}
footer .footer-box .footer-container .footer-logo .footer-gps-card__fallback-btn {
  box-sizing: border-box;
}
footer .footer-box .footer-container .footer-logo .footer-gps-card__fallback-btn:not([hidden]) {
  display: inline-flex;
}
footer .footer-box .footer-container .footer-logo .footer-gps-card__fallback-btn {
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f8f9fa;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
footer .footer-box .footer-container .footer-logo .footer-gps-card__fallback-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
footer .footer-box .footer-container .footer-navigation-box {
  grid-area: navigation;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
footer .footer-box .footer-container .footer-navigation-box .footer-navigation-right, footer .footer-box .footer-container .footer-navigation-box .footer-navigation-left {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  footer .footer-box .footer-container .footer-navigation-box .footer-navigation-right, footer .footer-box .footer-container .footer-navigation-box .footer-navigation-left {
    gap: 32px;
  }
}
@media (max-width: 480px) {
  footer .footer-box .footer-container .footer-navigation-box .footer-navigation-right, footer .footer-box .footer-container .footer-navigation-box .footer-navigation-left {
    gap: 50px;
  }
}
footer .footer-box .footer-container .footer-navigation-box .footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-box .footer-container .footer-navigation-box .footer-navigation li {
  padding: 0;
  margin: 0;
  text-align: start;
}
footer .footer-box .footer-container .footer-navigation-box .footer-navigation li .navigation-title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #919191;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
footer .footer-box .footer-container .footer-navigation-box .footer-navigation li a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #f8f8f8;
  font-weight: 400;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease-in-out;
}
footer .footer-box .footer-container .footer-navigation-box .footer-navigation li a:hover {
  color: #ffffff;
}
footer .footer-box .footer-container .footer-navigation-box .footer-navigation li a span.new-badge {
  background: #ff4d4d;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px 4px 6px;
  border-radius: 999px;
  margin-left: 12px;
  animation: new-badge-pulse 1.5s infinite;
}
@keyframes new-badge-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
footer .footer-box .footer-copyright {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #f8f9fa;
  margin-top: 80px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 768px) {
  footer .footer-box .footer-copyright {
    margin-top: 40px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  footer .footer-box .footer-copyright {
    margin-top: 32px;
  }
}
footer .footer-box .footer-copyright a {
  color: #f8f9fa;
  text-decoration: none;
}
footer .footer-box .footer-copyright a:hover {
  color: white;
}

.eventic-ad-unit {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}
.eventic-ad-unit .eventic-ad-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b3b3b3;
}
.eventic-ad-unit ins.adsbygoogle,
.eventic-ad-unit ins.adsbygoogle iframe {
  width: 100% !important;
  max-width: 100% !important;
}
.eventic-ad-unit.eventic-ad-unit--prod {
  gap: 0;
  padding: 0;
}

.ad-slot {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.ad-slot--rail {
  display: none;
}
@media (min-width: 1650px) {
  .ad-slot--rail {
    display: block;
    width: 300px;
    flex-shrink: 0;
    align-self: flex-start;
    position: sticky;
    top: 24px;
  }
}

.ad-slot--grid-span {
  grid-column: 1/-1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
  width: 8px;
  height: 0;
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(217, 224, 231);
  border-radius: 8px;
}

@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

ins.adsbygoogle,
ins.adsbygoogle iframe,
.adsbygoogle iframe {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

:root {
  --hcc-ink: #241726;
  --hcc-ink-2: #33203a;
  --hcc-bone: #F6EEE1;
  --hcc-bone-dim: #cdbfae;
  --hcc-pumpkin: #E8722C;
  --hcc-moss: #8C9A5B;
  --hcc-border: rgba(246, 238, 225, 0.14);
  --hcc-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --hcc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hcc-page {
  position: relative;
  background: var(--hcc-ink);
  color: var(--hcc-bone);
  font-family: var(--hcc-font-body);
  line-height: 1.55;
  min-height: 100vh;
  isolation: isolate;
}

.hcc-page * {
  font-family: var(--hcc-font-body);
}

.hcc-bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(60% 50% at 15% 8%, rgba(232, 114, 44, 0.16), transparent 60%), radial-gradient(50% 45% at 88% 82%, rgba(140, 154, 91, 0.14), transparent 65%), var(--hcc-ink);
  pointer-events: none;
}

.hcc-page header {
  border-bottom-color: var(--hcc-border);
}
.hcc-page header::before {
  background: rgba(36, 23, 38, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hcc-page header .endblock-navigation a {
  color: var(--hcc-bone);
}
.hcc-page header .endblock-navigation a:hover {
  background: rgba(246, 238, 225, 0.12);
  color: var(--hcc-bone);
}
.hcc-page header .navigation-hamberger span {
  background: var(--hcc-bone);
}
.hcc-page header .navigation-hamberger:hover {
  background: rgba(246, 238, 225, 0.12);
}

.hcc-shell {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 20px 80px;
}

@media (max-width: 600px) {
  .hcc-shell {
    padding-top: 44px;
  }
}
.hcc-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hcc-deco-moon {
  top: -40px;
  right: 4px;
  width: 30px;
  height: 30px;
  color: var(--hcc-bone-dim);
  opacity: 0.4;
}

.hcc-panel {
  position: relative;
  overflow: hidden;
}

.hcc-divider {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  color: var(--hcc-pumpkin);
  opacity: 0.7;
}

.hcc-divider svg {
  width: 28px;
  height: 28px;
}

@media (prefers-reduced-motion: reduce) {
  .hcc-bg-canvas {
    display: none;
  }
}
@media (max-width: 360px) {
  .hcc-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.hcc-hero {
  position: relative;
  text-align: left;
  margin-bottom: 40px;
}

.hcc-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--hcc-pumpkin);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hcc-cobweb-inline {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.8;
}

.hcc-h1 {
  font-family: var(--hcc-font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw + 1.4rem, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--hcc-bone);
}

.hcc-standfirst {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--hcc-bone-dim);
  margin: 0;
  max-width: 46ch;
}

.hcc-tablist {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hcc-border);
}

.hcc-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--hcc-bone-dim);
  font-family: var(--hcc-font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 4px 12px;
  margin-right: 20px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.1s ease-out;
}

.hcc-tab[aria-selected=true] {
  color: var(--hcc-pumpkin);
  border-bottom-color: var(--hcc-pumpkin);
}

.hcc-tab:hover {
  color: var(--hcc-bone);
}

.hcc-tab:focus-visible,
.hcc-copy-btn:focus-visible,
.hcc-traffic-card input:focus-visible + .hcc-traffic-card-body,
input:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 2px solid var(--hcc-pumpkin);
  outline-offset: 2px;
}

.hcc-panel {
  background: var(--hcc-ink-2);
  border: 1px solid var(--hcc-border);
  border-radius: 14px;
  padding: 32px;
}

@media (max-width: 600px) {
  .hcc-panel {
    padding: 22px;
  }
}
.hcc-field {
  margin-bottom: 22px;
}

.hcc-field:last-child {
  margin-bottom: 0;
}

.hcc-field-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.hcc-field-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--hcc-bone-dim);
  font-weight: 400;
  margin-top: 2px;
}

.hcc-traffic-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hcc-traffic-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hcc-traffic-card {
  display: block;
  cursor: pointer;
}

.hcc-traffic-card-body {
  display: block;
  border: 1.5px solid var(--hcc-border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.hcc-traffic-input:checked + .hcc-traffic-card-body {
  border-color: var(--hcc-pumpkin);
  background: rgba(232, 114, 44, 0.12);
}

.hcc-traffic-name {
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.hcc-traffic-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--hcc-bone-dim);
}

.hcc-slider-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.hcc-slider-value {
  font-variant-numeric: tabular-nums;
  color: var(--hcc-pumpkin);
  font-weight: 600;
}

input[type=range] {
  width: 100%;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--hcc-border);
  outline-offset: 4px;
}

input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hcc-pumpkin);
  cursor: pointer;
  border: 2px solid var(--hcc-bone);
}

input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hcc-pumpkin);
  cursor: pointer;
  border: 2px solid var(--hcc-bone);
}

.hcc-number-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hcc-number-field {
  flex: 1 1 140px;
}

.hcc-number-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--hcc-bone-dim);
  margin-bottom: 6px;
}

input[type=number],
input[type=text] {
  width: 100%;
  background: var(--hcc-ink);
  border: 1.5px solid var(--hcc-border);
  color: var(--hcc-bone);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--hcc-font-body);
  font-size: 1rem;
  box-sizing: border-box;
}

.hcc-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
}

.hcc-checkbox-row input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--hcc-pumpkin);
}

.hcc-result {
  margin-top: 28px;
  background: linear-gradient(180deg, rgba(140, 154, 91, 0.18), rgba(140, 154, 91, 0.06));
  border: 1px solid rgba(140, 154, 91, 0.35);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.hcc-big-number {
  font-family: var(--hcc-font-display);
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--hcc-pumpkin);
  margin: 0;
}

.hcc-big-label {
  display: block;
  font-size: 1rem;
  color: var(--hcc-bone-dim);
  margin-top: 6px;
  font-weight: 500;
}

.hcc-breakdown {
  text-align: left;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hcc-border);
}

.hcc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hcc-border);
  font-size: 0.95rem;
}

.hcc-breakdown span:last-child {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.hcc-verdict {
  text-align: left;
  margin: 18px 0 0;
  font-size: 1rem;
  color: var(--hcc-bone);
}

.hcc-copy-btn {
  display: inline-block;
  margin-top: 18px;
  background: var(--hcc-pumpkin);
  color: var(--hcc-ink);
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--hcc-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.1s ease-out;
}

.hcc-copy-btn:hover {
  opacity: 0.88;
}

.hcc-copy-btn:active:not(:disabled) {
  transform: scale(0.97);
}

.hcc-copy-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.hcc-tab:active {
  transform: scale(0.97);
}

.hcc-traffic-card:active .hcc-traffic-card-body {
  border-color: var(--hcc-pumpkin);
}

.hcc-assumptions {
  margin-top: 24px;
  border: 1px solid var(--hcc-border);
  border-radius: 12px;
  padding: 14px 18px;
}

.hcc-assumptions summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
}

.hcc-assumptions summary::-webkit-details-marker {
  display: none;
}

.hcc-assumptions summary::before {
  content: "+ ";
  color: var(--hcc-pumpkin);
}

.hcc-assumptions[open] summary::before {
  content: "−";
}

.hcc-assumptions ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--hcc-bone-dim);
  font-size: 0.9rem;
}

.hcc-assumptions li {
  margin-bottom: 6px;
}

.hcc-content {
  margin-top: 72px;
}

.hcc-content h2 {
  font-family: var(--hcc-font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--hcc-bone);
}

.hcc-content h2:first-child {
  margin-top: 0;
}

.hcc-content h3 {
  font-family: var(--hcc-font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 24px 0 10px;
}

.hcc-content p {
  margin: 0 0 14px;
  color: var(--hcc-bone-dim);
}

.hcc-content strong {
  color: var(--hcc-bone);
}

.hcc-content a {
  color: var(--hcc-pumpkin);
}

.hcc-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
}

.hcc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hcc-table caption {
  text-align: left;
  color: var(--hcc-bone-dim);
  font-size: 0.85rem;
  margin-bottom: 8px;
  caption-side: top;
}

.hcc-table th,
.hcc-table td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--hcc-border);
}

.hcc-table th {
  color: var(--hcc-bone);
  font-weight: 600;
}

.hcc-table td {
  color: var(--hcc-bone-dim);
  font-variant-numeric: tabular-nums;
}

.hcc-faq-list dt {
  font-weight: 600;
  margin: 18px 0 6px;
  color: var(--hcc-bone);
}

.hcc-faq-list dd {
  margin: 0 0 10px;
  color: var(--hcc-bone-dim);
}

.hcc-footer-note {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--hcc-border);
  font-size: 0.85rem;
  color: var(--hcc-bone-dim);
}

/*# sourceMappingURL=halloween-candy-calculator.css.map */
