/* [project]/src/shared/MenuOverlay/index.scss.css [app-client] (css) */
.menu-block {
  flex-direction: row;
  gap: 16px;
  display: flex;
}

.menu-block:hover {
  opacity: .8;
}

.menu-wrapper .menu-block a, .menu-project-title a {
  color: var(--text-primary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

@media only screen and (max-width: 992px) {
  .menu-wrapper .menu-block a, .menu-project-title a {
    font-size: 22px;
  }
}

.menu-spacer {
  background-color: var(--border);
  height: 1px;
  margin: 24px 0;
}

.w-100 {
  width: 100%;
}

.menu-icon {
  cursor: pointer;
  background: url("/images/icons/menu-icon.png") center no-repeat;
  width: 24px;
  height: 24px;
}

.projects-list-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.prj-wrapper {
  flex-direction: row;
  gap: 32px;
  max-width: 560px;
  height: 420px;
  display: flex;
}

@media only screen and (max-width: 992px) {
  .prj-wrapper {
    height: 30vh;
  }
}

.prj-wrapper .prj-list {
  flex: 1;
}

.prj-list {
  flex-flow: column wrap;
  gap: 16px;
  display: flex;
}

.prj-list li a {
  color: var(--text-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.prj-list li a:hover {
  color: var(--text-primary);
}

.cross-icon {
  cursor: pointer;
  background: url("/images/icons/cross-icon.png") center no-repeat;
  width: 24px;
  height: 24px;
  display: none;
}

.profile-icon {
  cursor: pointer;
  background: url("/images/icons/profile-icon.png") center no-repeat;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 780px) {
  .prj-wrapper {
    display: none;
  }
}

/* [project]/src/shared/Loader/index.scss.css [app-client] (css) */
.loader {
  border: 3px solid var(--color-accent);
  box-sizing: border-box;
  border-bottom-color: #0000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: 1s linear infinite rotation;
  display: inline-block;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [project]/node_modules/react-loading-skeleton/dist/skeleton.css [app-client] (css) */
@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block;
  background-color: var(--base-color);
  -webkit-user-select: none;
  user-select: none;
  border-radius: .25rem;
  width: 100%;
  line-height: 1;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.react-loading-skeleton:after {
  content: " ";
  display: var(--pseudo-element-display);
  background-repeat: no-repeat;
  background-image: var(--custom-highlight-background, linear-gradient(90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%));
  height: 100%;
  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none;
  }
}

/* [project]/src/components/ThemeSwitcher/ThemeSwitcher.module.css [app-client] (css) */
.ThemeSwitcher-module__b37ZMW__theme-switcher {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
}

[data-theme="light"] .ThemeSwitcher-module__b37ZMW__theme-switcher {
  filter: brightness(0) saturate() invert(24%) sepia(8%) saturate(446%) hue-rotate(169deg) brightness(95%) contrast(87%);
  background-image: url("/images/icons/theme-moon.svg");
}

[data-theme="dark"] .ThemeSwitcher-module__b37ZMW__theme-switcher {
  filter: brightness(0) saturate() invert(36%) sepia(42%) saturate(1154%) hue-rotate(341deg) brightness(95%) contrast(87%);
  background-image: url("/images/icons/theme-sun.svg");
}

/* [project]/src/components/ProfileDropdown/index.module.css [app-client] (css) */
.index-module__Hwy5nq__profileDropdown {
  align-items: center;
  display: flex;
  position: relative;
}

.index-module__Hwy5nq__profileIcon {
  cursor: pointer;
  color: #fff;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

[data-theme="light"] .index-module__Hwy5nq__profileIcon {
  color: var(--text-primary);
}

.index-module__Hwy5nq__dropdownMenu {
  top: calc(100% + 12px);
  background: var(--bg-elevated, #1a1a1a);
  border: 1px solid var(--border, #333);
  z-index: 2000;
  transform-origin: 100% 0;
  border-radius: 12px;
  width: 200px;
  padding: 6px;
  animation: .2s cubic-bezier(.16, 1, .3, 1) index-module__Hwy5nq__dropdownFade;
  position: absolute;
  inset-inline-end: 0;
  box-shadow: 0 10px 40px #0003;
}

[dir="rtl"] .index-module__Hwy5nq__dropdownMenu {
  transform-origin: 0 0;
}

.index-module__Hwy5nq__dropdownItem {
  text-align: start;
  cursor: pointer;
  width: 100%;
  color: var(--text-primary, #fff);
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  display: flex;
}

.index-module__Hwy5nq__dropdownItem:hover {
  background-color: var(--surface-2, #ffffff1a);
}

.index-module__Hwy5nq__icon {
  opacity: .8;
  font-size: 16px;
}

.index-module__Hwy5nq__danger {
  color: #f87171;
}

.index-module__Hwy5nq__danger:hover {
  background-color: #f871711a;
}

@keyframes index-module__Hwy5nq__dropdownFade {
  from {
    opacity: 0;
    transform: scale(.96)translateY(-8px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

/*# sourceMappingURL=_0hzgrtn._.css.map*/