/* hobby-feed.css?file=../ui/components/Spin/Spin.styl */
.hobby_feed_spin {
  display: inline-block;
}
.hobby_feed_spin.hobby_feed___center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.hobby_feed_spin.hobby_feed___absolute {
  position: absolute;
}
.hobby_feed_spin.hobby_feed___fixed {
  position: fixed;
}
.hobby_feed_spin.hobby_feed___absolute,
.hobby_feed_spin.hobby_feed___fixed {
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hobby_feed_spin-container.hobby_feed___with-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.hobby_feed_spin-icon-wrapper {
  line-height: 0;
}
.hobby_feed_spin-icon-wrapper.hobby_feed___default {
  width: 32px;
  height: 32px;
}
.hobby_feed_spin-icon-wrapper.hobby_feed___small {
  width: 16px;
  height: 16px;
}
.hobby_feed_spin-label {
  margin-top: 16px;
  font-size: var(--fs-l);
  line-height: 21px;
  color: var(--color_secondary);
}
.hobby_feed_spin-icon svg {
  animation: hobby_feed_rotate 3.5s linear infinite;
}
.hobby_feed_spin-icon svg circle {
  stroke: var(--color_orange);
  animation: hobby_feed_arcs 3.9s cubic-bezier(.82, .1, .48, 1) infinite;
}
@media (prefers-color-scheme: dark) {
  :root.__ui-theme_enabled:not(.__ui-theme_light) .hobby_feed_spin-icon svg circle {
    stroke: var(--color_white);
  }
}
:root.__ui-theme_enabled.__ui-theme_dark .hobby_feed_spin-icon svg circle,
:root.ds-colors.dark-theme .hobby_feed_spin-icon svg circle {
  stroke: var(--color_white);
}
@keyframes hobby_feed_rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes hobby_feed_arcs {
  0% {
    stroke-dashoffset: 87.9646;
  }
  12.5% {
    stroke-dashoffset: 65.97345;
  }
  25% {
    stroke-dashoffset: 43.9823;
  }
  37.5% {
    stroke-dashoffset: 21.99115;
  }
  50% {
    stroke-dashoffset: 0;
  }
  62.5% {
    stroke-dashoffset: -21.99115;
  }
  75% {
    stroke-dashoffset: -43.9823;
  }
  87.5% {
    stroke-dashoffset: -65.97345;
  }
  to {
    stroke-dashoffset: -87.9646;
  }
}

/* hobby-feed.css?file=common-blocks/hobby-feed/components/HobbyFeed/HobbyFeed.styl */
.hobby_feed_hobby-feed {
  display: block;
  position: relative;
}
.hobby_feed_hobby-feed.hobby_feed___loading .hobby_feed_content {
  opacity: .3;
}
.hobby_feed_hobby-feed.hobby_feed___loading .hobby_feed_spinner-container {
  position: absolute;
  inset: 0;
  background-color: transparent;
}
.hobby_feed_content {
  transition: opacity .15s linear;
}
.hobby_feed_spinner-container {
  padding: 64px;
  border-radius: 20px;
  background-color: var(--color_surface);
}
.hobby_feed_spinner-container .hobby_feed_spinner {
  margin: 0 auto;
}
/*# sourceMappingURL=hobby-feed-Q35SJGWH.css.map */
