@charset "UTF-8";
/* Original file: layouts/rx-flextagram/components/sidebar/sidebar.scss */
.app-sidebar {
  position: fixed;
  top: 52px;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}
@media (max-width: 1024px) {
  .app-sidebar {
    top: 0;
  }
}
.app-sidebar__content {
  position: relative;
  flex: 0 0 auto;
  max-width: 240px;
  width: 100%;
  height: 100%;
  background-color: white;
  background-color: var(--color-background);
  box-sizing: border-box;
}
.app-sidebar__container {
  position: relative;
  height: 100%;
  max-height: calc(100% - 52px);
  padding: 1rem 0;
  overflow: auto;
}
.app-sidebar-bg {
  flex: 1;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background-color: transparent;
}
.app-sidebar {
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}
.app-sidebar .app-sidebar__content {
  transform: translateX(100%);
  transition: transform 0.3s ease, background-color 0.2s ease;
}
.app-sidebar .app-sidebar__close {
  transform: scale(0.8) rotate(-45deg);
  transition: 0.5s ease;
}
.app-sidebar .app-sidebar-nav {
  transform: translateY(-1rem);
  transition: 0.6s ease;
}
.app-sidebar.active {
  opacity: 1;
  visibility: visible;
  user-select: initial;
  pointer-events: initial;
}
.app-sidebar.active .app-sidebar__content {
  transform: translateX(0);
}
.app-sidebar.active .app-sidebar__close {
  transform: scale(1);
}
.app-sidebar.active .app-sidebar-nav {
  transform: translateY(0);
}
.app-sidebar-close {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  color: #adb5bd;
  color: var(--color-gray-500);
  font-size: 1.75rem;
  background-color: transparent;
  border-radius: 8px;
  border: none;
  outline: none;
  transition: 0.2s ease;
}
.app-sidebar-close:hover {
  opacity: 0.8;
}
.app-sidebar-close:active {
  opacity: 0.7;
}
.app-sidebar__divider {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e9ecef;
  border-top-color: var(--color-gray-200);
  margin: 1rem 0;
  transition: border-color 0.2s ease;
}
.color_scheme_dark .app-sidebar__divider {
  border-top-color: #f1f3f5;
  border-top-color: var(--color-gray-100);
}
.app-sidebar-auth {
  padding: 0 1rem;
}
.app-sidebar-auth .app-login {
  display: block;
  color: #212529;
  color: var(--color-gray-900);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.25rem;
}
.app-sidebar-auth .app-signup {
  color: #247bff;
  font-size: 0.75rem;
  text-decoration: none;
}
.app-sidebar-profile {
  display: block;
  padding: 0 1rem;
}
.app-sidebar-profile__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #e9ecef;
  background-color: var(--color-gray-200);
  border: 1px solid #dee2e6;
  border-color: var(--color-gray-300);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.app-sidebar-profile__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.app-sidebar-profile__image > i, .app-sidebar-profile__image ion-icon {
  color: #868e96;
  color: var(--color-gray-600);
  font-size: 1.5rem;
}
.app-sidebar-profile__body {
  padding-top: 1rem;
}
.app-sidebar-profile__nickname {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

