body {
  margin: 0;
  overflow: hidden;
  animation-name: backgroundColors;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

.not-selectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.inactiveLink {
  pointer-events: none;
  cursor: default;
}

@keyframes backgroundColors {
  0% {
    background: #FFF;
  }
  100% {
    background: #1A1C18;
  }
}
.circles {
  height: min(90vw, 90vh);
  width: min(90vw, 90vh);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circles {
  height: min(90vw, 90vh);
  width: min(90vw, 90vh);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circles > div {
  animation: growAndFade 2s ease-out;
  animation-fill-mode: forwards;
  background-color: #1A1C18;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
}
.circles .circle1 {
  animation-delay: 0ms;
}
.circles .circle2 {
  animation-delay: 400ms;
}
.circles .circle3 {
  animation-delay: 800ms;
}

@keyframes growAndFade {
  0% {
    opacity: 0.1;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(3.5);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  scale: 0;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 19.55px;
}

.percent svg {
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-100px, -100px) rotate(-90deg); /* Combined transform */
}

.percent svg circle {
  width: 200px;
  height: 200px;
  fill: none;
  stroke-width: 6.5;
  stroke: #000;
  position: relative;
  stroke-dasharray: 628;
  stroke-linecap: round;
}

.percent svg circle:nth-child(1) {
  stroke-dashoffset: 0; /* First circle starts with full stroke */
  stroke: #1e201c;
}

.percent svg circle:nth-child(2) {
  stroke-dashoffset: 628; /* Second circle starts with hidden stroke */
  stroke: #E30D19;
  transition: stroke-dashoffset 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.logoOtree {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 20px;
  opacity: 0;
}

.all {
  opacity: 1;
}

.loadingTextWrap {
  opacity: 0;
}

#loadingText {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding: 30px 0;
  user-select: none;
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-out-left {
  animation: slideOutLeft 0.5s forwards;
}

.slide-in-right {
  animation: slideInRight 0.5s forwards;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.fade-inScale {
  opacity: 1;
  scale: 1;
  transition: opacity 0.5s cubic-bezier(0.42, 0, 0.58, 1), scale 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

html, body {
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

.all {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
}

seo-text,
seo-image,
seo-widget,
seo-widget-container {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
  z-index: -9999 !important;
}

.seo-text-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.social-share-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none; /* Отключает клики */
  user-select: none;
}

.bold {
  font-weight: bold;
}