:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.layout {
  overflow: hidden;
}

/* Helpers */

.d-block {
  display: block !important;
}
.color-white {
  color: white !important;
}
.color-primary {
  color: #d9aa4f !important;
}
.text-center {
  text-align: center !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mx-auto {
  margin: 0 auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.no-wrap {
  white-space: nowrap !important;
}

/* Text */

.subtitle {
  color: #777991;
  font-size: 20px!important;
  font-weight: 500;
}

/* Logo */

.logo {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
  color: white;
  font-weight: 400 !important;
  font-size: 26px;
  font-family: "Stem-SemiLight",arial,sans-serif;
  color: white !important;
}
.logo:hover {
  color: white !important;
}
.logo img {
  height: 32px;
}
.logo span {
  letter-spacing: 5px;
  margin-left: 8px;
}
.logo b {
  font-family: "Stem-Medium",arial,sans-serif;
  letter-spacing: 3px;
}
#header-bottom-support-button {
  display: none;
}
@media (max-width: 810px) {
  .logo {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .ln__links,
  .ll__divider {
    display: none !important;
  }
  /* Попробовать 14 дней бесплатно & Поддержка */
  .fcsb__servers {
    width: 100% !important;
  }
}
@media (max-width: 425px) {
  #header-top-support-button {
    display: none !important;
  }
  #header-bottom-support-button {
    box-shadow: none;
    display: flex !important;
    margin-top: 16px !important;
    background-color: rgba(255,255,255,.1) !important;
  }
}

/* Header */

.header {
  margin-bottom: 40px !important;
  overflow: hidden;
  position: relative;
}

.header.header--secondary-page  {
  padding-bottom: 44px !important;
}
@media (min-width: 769px) {
  .header.header--secondary-page {
    padding-bottom: 64px !important;
  }
}

.header-button {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,.1);
    padding: 6px 14px;
    transition: .24 ease-in-out;
}
.header-button:hover {
  background-color: rgba(255,255,255,.05);
}
.header-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  user-select: none;
}


@media (max-width: 960px) and (min-width: 840px) {
  .header-description {
    font-size: 17px !important;
  }
}
@media (max-width: 900px) and (min-width: 840px) {
  .header-description {
    font-size: 16px !important;
  }
}
@media (max-width: 640px) {
  .header-image {
    display: none;
  }
}

/* Prices */

.prices {}
.prices__list {
  display: grid;
  grid-gap: 24px;
  border-bottom: none;
  grid-template-columns: repeat(4,1fr);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1060px) {
  .prices__list {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 600px) {
  .prices__list {
    grid-template-columns: 1fr;
  }
}
.prices__list-item {
  display: grid;
  background-color: rgba(235,237,240,.5);
  padding: 32px;
}
.prices__list-item--favorite {
  background-color: #F7F5E9;
  border: 1px solid rgb(188 156 95 / 0.5);
}
.prices__list-item-card {
  display: flex;
  flex-direction: column;
}
.prices__list-item-card-header {
  display: grid;
  grid-gap: 8px;
  border-bottom: 1px solid rgba(5,12,38,.1);
  padding-bottom: 24px;
}
.prices__list-item-card-list {
  grid-gap: 12px;
  display: grid;
  padding: 24px 0;
}
.prices__list-item-card-list-item {
  display: grid;
  grid-template-columns: auto max-content;
  font-weight: 500;
}

/* Locations */

.locations {
  background-color: #f5f6f8;
  padding: 40px 24px;
}
.locations__items {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 25px;
  justify-content: center;
  margin: auto;
  width: 100%;
}
.locations__item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  width: 100%;
  background-color: white;
  box-shadow: rgb(0 0 0 / 0.075) 0px 20px 50px;
}
@media (max-width: 1220px) {
  .locations__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .locations__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.locations__item-top {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: "Stem-Medium", sans-serif;
  letter-spacing: 1px;
  padding: 0 24px 16px 24px;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
}
.locations__item-top img {
  width: 32px;
  margin-right: 12px;
}
.locations__item-bottom {
  padding: 0 24px;
}
.locations__item-bottom-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  color: #777991;
}
.locations__item-bottom-line-b {
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 2px;
  color: #3fb950;
  background: rgb(63 185 80 / 10%);
  padding: 4px 10px;
}

/* Policy */

.policy {
  margin-top: 100px;
}
.policy h1,
.policy h2 {
  font-weight: 600 !important;
  font-size: 30px;
  margin-bottom: 20px;
}
.policy p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 140%;
}
.policy .p-main {
  font-size: 32px;
  font-weight: 100;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .policy .p-main {
    font-size: 26px;
  }
}

/* Blog Article */

.article {
  margin-top: 100px;
}
.article h1 {
  font-weight: 600 !important;
  font-size: 30px;
  margin-bottom: 20px;
}

.article h2 {
  font-weight: 600 !important;
  font-size: 24px;
  margin-bottom: 16px;
}
.article p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 140%;
}
.article .p-main {
  font-size: 32px;
  font-weight: 100;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .article .p-main {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .footer-info {
    margin-top: 10px;
  }
}

.shiny-cta {
  --shiny-cta-bg: #0f0e0e;
  --shiny-cta-bg-subtle: #654f25;
  --shiny-cta-fg: #fff;
  --shiny-cta-highlight: #f3b541;
  --shiny-cta-highlight-subtle: #ffefd0;
}
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}
.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 4s;
  --shadow-size: 2px;
  white-space: nowrap;
  isolation: isolate;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.1rem 1.5rem;
  font-family: inherit;
  line-height: 1.2;
  border: 1px solid transparent;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
      padding-box,
    conic-gradient(
        from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
        transparent,
        var(--shiny-cta-highlight) var(--gradient-percent),
        var(--gradient-shine) calc(var(--gradient-percent) * 2),
        var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
        transparent calc(var(--gradient-percent) * 4)
      )
      border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
}

@media (max-width: 520px) {
  .shiny-cta {
    width: 100% !important;
  }
}

@media (max-width: 350px) {
  .shiny-cta {
    padding: 1rem 1.3rem;
  }
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta div::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.shiny-cta:active {
  translate: 0 1px;
}
/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
      circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0
    )
    padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}
/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 110%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}
.shiny-cta div {
  display: flex;
  z-index: 1;
}
.shiny-cta div::before {
  --size: calc(100% + 1rem);
  width: var(--size);
  height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
  opacity: 0;
}
/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent,
    --gradient-shine;
}
.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
  animation: var(--animation) var(--duration),
    var(--animation) calc(var(--duration) / 0.4) reverse paused;
  animation-composition: add;
}
.shiny-cta div::before {
  transition: opacity var(--transition);
  animation: calc(var(--duration) * 1.2) breathe linear infinite;
}
.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
}
.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}
.shiny-cta:is(:hover, :focus-visible) div::before {
  opacity: 1;
}
@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}
@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}
@keyframes breathe {
  from,
  to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}
