@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  word-wrap: break-word;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

/* header */
header {
  height: 64px;
  padding: 8px 15px;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header a {
  color: #fff;
  text-decoration: none;
}

.header-left {
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header-menu-icon {
  width: 35px;
  height: 35px;
  padding-left: 4px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.current-locale {
  font-weight: bold;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auth-buttons.not-logged-in .login-btn {
  padding: 8px 12px;
  border-radius: 6px;
  background: #3a3a3a;
  color: #fff;
  font-size: 14px;
  border: none;
}

.auth-buttons.not-logged-in .signup-btn {
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: 14px;
  border: none;
}

.auth-buttons.logged-in .logout-btn {
  padding: 8px 12px;
  border-radius: 6px;
  background: #3a3a3a;
  color: #fff;
  font-size: 14px;
  border: none;
}

.side-menu-body > .auth-buttons {
  width: 100%;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

.side-menu-body > .auth-buttons.not-logged-in .login-btn {
  width: calc(100% - 24px);
  font-weight: bold;
  text-align: center;
}

.side-menu-body > .auth-buttons.not-logged-in .signup-btn {
  width: calc(100% - 24px);
  font-weight: bold;
  text-align: center;
}

.auth-buttons.logged-in {
  display: flex;
}

.auth-buttons.logged-in .user-profile-button {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  color: #fdfdfd;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.auth-buttons.logged-in .user-profile-button:hover {
  background: #2a2a2a;
}

.user-profile-button img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 0.4rem;
  background-color: #444;
  object-fit: cover;
}

.user-profile-button span.chevron {
  margin-left: 0.4rem;
  font-size: 1.2rem;
  color: #ccc;
}

@media (max-width: 900px) {
  header {
    height: 64px;
    padding: 8px;
  }
  .header-left {
    width: 100%;
  }
  .current-locale {
    font-weight: normal;
    color: #8589b5;
  }
}
/* section-cover */
#section-cover {
  width: 100%;
  height: 100%;
  margin-top: 64px;
  margin-bottom: -8px;
}

#section-cover img {
  width: 100%;
  object-fit: contain;
}

/* section-wrapper */
.section-wrapper {
  width: 100%;
  background: #000000;
  background-image: linear-gradient(135deg, #000000 0%, #001e47 100%);
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 900px) {
  .section-wrapper {
    flex-direction: column;
  }
}
/* section-profile */
#section-profile {
  width: 300px;
  height: fit-content;
  max-height: 100%;
  padding: 20px;
  color: white;
}

#section-profile-container {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 16px;
  border-radius: 12px;
  background-color: #20232a;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  #section-profile {
    width: calc(100% - 40px);
    margin-bottom: -20px;
    padding-bottom: 0px;
  }
  #section-profile-container {
    padding: 0px;
    background-color: transparent;
  }
}
/* section-profile */
.profile-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}

.profile-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-main-info {
  width: 100%;
}

.profile-name {
  font-size: 20px;
  font-weight: bold;
}

.profile-follow {
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
}

.profile-follow-count {
  color: #fff;
  font-weight: bold;
}

.profile-menu {
  width: 100%;
  height: 35px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.profile-menu-button {
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
  color: #20232a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

#profile-follow-button {
  width: calc(100% - 50px);
}

#profile-share-button {
  width: 40px;
}

@media (max-width: 900px) {
  .profile-main {
    flex-direction: row;
    align-items: center;
  }
  .profile-name {
    font-size: 17px;
  }
  .profile-menu {
    justify-content: end;
  }
}
@media (max-width: 600px) {
  .profile-main {
    flex-direction: column;
    align-items: start;
  }
  .profile-menu {
    justify-content: start;
  }
}
.profile-description {
  margin-top: 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.profile-description-item-header {
  margin-bottom: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 6px;
}

.profile-description-item-content {
  margin-left: 26px;
}

.profile-description-url {
  width: 100%;
  color: #1e90ff;
  text-decoration: none;
}

.profile-description-url:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  #profile-follow-button {
    width: 110px;
    font-size: 14px;
    font-weight: bold;
  }
  #profile-follow-icon {
    display: none;
  }
  .profile-description-item-header {
    color: #ccc;
  }
  .profile-description-item-content {
    margin-left: 0px;
  }
}
/* section-content */
#section-content {
  width: calc(100% - 380px);
  max-width: 1000px;
  margin-bottom: 20px;
  padding: 20px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  #section-content {
    width: 100%;
    padding: 20px;
  }
}
/* section-content-tab */
#section-content-tab {
  width: fit-content;
  max-width: 100%;
  height: 48px;
  padding: 6px;
  border-radius: 48px;
  background-color: #20232a;
  color: white;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-weight: bold;
}

#section-content-tab::-webkit-scrollbar {
  display: none;
}

.section-content-tab-item {
  padding: 12px 24px;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.section-content-tab-item.selected {
  border-radius: 50px;
  background-image: linear-gradient(135deg, #003c8e 0%, #001128 100%);
}

@media (max-width: 900px) {
  #section-content-tab {
    max-width: calc(100% - 10px);
  }
}
/* section-content-description */
#section-content-description-container {
  padding: 16px;
  border-radius: 12px;
  background-color: #20232a;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.description-title {
  font-size: 18px;
  font-weight: bold;
}

.description-text {
  color: #ccc;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.description-text.open {
  -webkit-line-clamp: none;
  line-clamp: none;
}

.description-open-button {
  font-size: 14px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.description-open-button.open {
  display: none;
}

/* section-content-popular-slide-list */
#section-content-popular-slide-list-container {
  min-height: 100px;
}

/* section-content-all-slide-list */
#section-content-all-slide-list-container {
  min-height: 200px;
}

/* section-content-all-slide-list-tab */
#section-content-all-slide-list-tab {
  width: fit-content;
  max-width: 100%;
  height: 48px;
  padding: 6px;
  margin-bottom: 20px;
  border-radius: 48px;
  background-color: #fff;
  color: #aaa;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-weight: bold;
}

#section-content-all-slide-list-tab::-webkit-scrollbar {
  display: none;
}

.section-content-all-slide-list-tab-item {
  padding: 12px 24px;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.section-content-all-slide-list-tab-item.selected {
  border-radius: 50px;
  color: #fff;
  background-image: linear-gradient(135deg, #003c8e 0%, #001128 100%);
}

@media (max-width: 900px) {
  #section-content-all-slide-list-tab {
    width: calc(100% - 10px);
  }
  .section-content-all-slide-list-tab-item {
    width: 100%;
  }
}
/* section-content-all-slide-list-show-more */
#section-content-all-slide-list-show-more {
  width: calc(100% - 40px);
  height: 45px;
  margin-top: 12px;
  padding: 0 18px;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

#section-content-all-slide-list-show-more.hidden {
  display: none;
}

@media (max-width: 900px) {
  #section-content-all-slide-list-tab {
    max-width: calc(100% - 10px);
  }
}
/* section-content-slide-list */
#section-content-slide-list-container {
  min-height: 300px;
}

/* section-content-search-bar */
#section-content-search-bar-container {
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.search-bar {
  width: calc(100% - 190px);
  max-width: 400px;
  height: 45px;
  padding: 0 18px;
  border-radius: 22.5px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  -webkit-user-select: none;
  user-select: none;
}

.search-bar input {
  width: 100%;
  height: 30px;
  padding: 0 12px;
  color: #20232a;
  font-size: 14px;
  border: none;
  outline: none;
}

.search-bar input::placeholder {
  color: #aaa;
}

.sort-button {
  width: 170px;
  height: 45px;
  padding: 0 18px;
  border-radius: 22.5px;
  background-color: #fff;
  color: #aaa;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  anchor-name: --sort-button;
}

.sort-button p {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.sort-options {
  position: absolute;
  position-anchor: --sort-button;
  top: calc(anchor(bottom) + 8px);
  right: calc(anchor(right) + 5px);
  width: 140px;
  margin: 0;
  padding: 8px 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  z-index: 10;
}

.sort-options li {
  color: #888888;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
}

.sort-options li.active {
  color: #888888;
}

.sort-options li:hover {
  background-color: #335599;
  color: #fff;
}

.sort-toggle .selected-option {
  color: #bebebe;
}

@media (max-width: 900px) {
  .search-bar {
    width: calc(100% - 110px);
  }
  .sort-button {
    width: 80px;
  }
}
/* section-content-slide-list */
#section-content-slide-list-container {
  min-height: 300px;
}

/* slide-list */
.slide-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.slide-list.carousel {
  anchor-name: --carousel;
}

.slide-list.carousel::scroll-button(*) {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  font-size: 21px;
  z-index: 100;
  visibility: hidden;
  position: absolute;
  position-anchor: --carousel;
  top: calc(anchor(center) - 40px);
  transform: translateY(-50%);
  border-width: 0.5px;
  cursor: pointer;
}

.slide-list.carousel::scroll-button(left) {
  content: "◄";
  left: 10px;
}

.slide-list.carousel::scroll-button(right) {
  content: "►";
  right: 10px;
}

@media (max-width: 900px) {
  .slide-list.carousel {
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
  }
  .slide-list.carousel::-webkit-scrollbar {
    display: none;
  }
  .slide-list.carousel::scroll-button(left) {
    visibility: visible;
  }
  .slide-list.carousel::scroll-button(right) {
    visibility: visible;
  }
}
/* slide-item */
.slide-item {
  position: relative;
  width: 300px;
  padding-bottom: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-item-thumbnail {
  width: 100%;
  position: relative;
}

.slide-item-info {
  width: 100%;
  color: #ccc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
}

.slide-item-title {
  margin-bottom: 10px;
  color: #fff;
  line-height: 2;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.slide-item-thumbnail-image {
  width: 100%;
  object-fit: contain;
}

.slide-item-pin-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 38px;
  height: 38px;
}

.slide-item-bottom {
  color: #ccc;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.slide-item-bottom img {
  width: 20px;
}

.slide-item-bottom-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.slide-item-bottom-right {
  position: relative;
  z-index: 1000;
}

.slide-item-favorite-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.slide-item-bookmark-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.slide-item-menu-button {
  margin-right: 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.slide-item-menu {
  position: absolute;
  top: 35px;
  right: 0;
  width: 160px;
  margin: 0;
  padding: 8px 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  z-index: 1000;
}

.slide-item-menu li {
  color: #888888;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
}

.slide-item-menu li.red {
  color: red;
}

.slide-item-menu li.active {
  color: #888888;
}

.slide-item-menu li:hover {
  background-color: #335599;
  color: #fff;
}

@media (max-width: 900px) {
  .slide-item {
    width: 100%;
    flex-direction: row-reverse;
    border-bottom: 1px solid #333;
  }
  .slide-item-thumbnail {
    width: 30%;
    height: 100%;
  }
  .slide-item-thumbnail-image {
    width: 100%;
  }
  .slide-item-info {
    width: 70%;
  }
  .slide-item-menu {
    top: -110px;
    right: -5px;
  }
}
@media (max-width: 900px) {
  .slide-list.carousel .slide-item {
    min-width: 85vw;
    flex-direction: column;
    scroll-snap-align: center;
    border-bottom: none;
  }
  .slide-item-thumbnail {
    width: 100%;
    height: 100%;
  }
  .slide-item-thumbnail-image {
    width: 100%;
  }
  .slide-item-info {
    width: 100%;
  }
}
/* footer */
footer {
  padding: 12px;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-top {
  margin-bottom: 12px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  font-size: 14px;
}

.footer-top-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.social-icons a {
  color: #ccc;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-top-right {
  width: 40%;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.footer-top-right ul {
  padding-left: 0;
}

.footer-top-right li {
  margin-bottom: 8px;
  list-style: none;
}

.footer-top-right li a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom {
  padding: 12px 12px 0 12px;
  border-top: 1px solid #333;
  color: #ccc;
  font-size: 14px;
}

@media (max-width: 900px) {
  footer {
    padding: 25px 12px 60px;
  }
  .footer-top {
    margin-bottom: 0px;
    flex-direction: column;
    gap: 15px;
  }
  .footer-top-left {
    width: 100%;
  }
  .footer-top-left h4 {
    margin-bottom: 4px;
  }
  .social-icons {
    margin-bottom: 12px;
    flex-direction: column;
  }
  .footer-top-right {
    width: 100%;
    border-top: 1px solid #fff;
  }
  .footer-top-right li {
    margin-bottom: 15px;
    text-decoration: underline;
  }
  .footer-bottom {
    border: none;
  }
}
/* Follow Modal */
#follow-modal .modal-body {
  height: 50vh;
  max-height: 400px;
  overflow-y: hidden;
}

#follow-modal-header-tab {
  width: calc(100% - 50px);
  height: 48px;
  padding: 6px;
  border-radius: 48px;
  background: #f0f8ff;
  color: #aaa;
  border: 0.5px solid #aaa;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-weight: bold;
}

#follow-modal-header-tab::-webkit-scrollbar {
  display: none;
}

.follow-modal-header-tab-item {
  width: 100%;
  padding: 12px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.follower-user-list {
  margin: 0;
  padding: 10px 20px;
  list-style: none;
  overflow-y: scroll;
}

.follower-user-card {
  height: 55px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.follower-user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.follower-user-avatar {
  width: 40px;
  height: 40px;
}

.follower-user-follow-button {
  height: 35px;
  padding: 0 15px;
  border-radius: 17.5px;
  background-color: #fff;
  color: #003c8e;
  border: 1.5px solid #003c8e;
  cursor: pointer;
}

.follower-user-follow-button.followed {
  background-color: #003c8e;
  color: #fff;
  border: none;
}

.follow-modal-header-tab-item.selected {
  border-radius: 50px;
  color: #fff;
  background: #003c8e;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain;
  overflow-y: scroll;
  z-index: 10000;
}

.modal-content {
  width: 50%;
  min-width: 200px;
  max-width: 500px;
  min-height: 150px;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #fff;
  color: #20232a;
}

.modal-content a {
  color: #fff;
  text-decoration: none;
}

.modal-header {
  margin-bottom: 12px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.modal-close-button {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: end;
  justify-content: start;
  overscroll-behavior: contain;
  overflow-y: scroll;
  z-index: 10000;
}

.side-menu-background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 100%;
}

.side-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  min-width: 250px;
  max-width: 300px;
  height: 100%;
  padding: 20px;
  background-color: #111;
  color: #fff;
}

.side-menu-content a {
  color: #fff;
  text-decoration: none;
}

.side-menu-header {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-menu-close-button {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.side-menu-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Full Menu */
.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: end;
  justify-content: start;
  overscroll-behavior: contain;
  overflow-y: scroll;
  z-index: 10000;
}

.full-menu-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.full-menu-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(16px);
  color: #fff;
}

.full-menu-content a {
  color: #fff;
  text-decoration: none;
}

.full-menu-header {
  height: 44px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.full-menu-header .current-locale {
  font-weight: normal;
  color: #8589b5;
}

.full-menu-close-button {
  width: 35px;
  height: 35px;
  padding-bottom: 18px;
  margin-left: 6.5px;
  margin-right: -2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.full-menu-body {
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: space-between;
}

.full-menu-body-main {
  height: 100%;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.full-menu-body-main a {
  font-size: 22px;
}

.full-menu-body-main a.active {
  width: fit-content;
  height: 38px;
  color: #8589b5;
  border-bottom: 2px solid #8589b5;
}

.full-menu-body-sns {
  height: 100%;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.full-menu-body-sns a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.full-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.full-menu-footer .auth-buttons {
  position: relative;
  width: calc(100% - 30px);
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.full-menu-footer .auth-buttons.logged-in {
  border-top: 1px solid #333;
}

.full-menu-footer .auth-buttons .user-profile-button {
  height: 50px;
  margin-top: -10px;
  background-color: transparent;
}

.full-menu-footer .auth-buttons .user-profile-button {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.full-menu-footer .auth-buttons .user-profile-button img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.full-menu-footer .auth-buttons .user-profile-button .user-profile-info {
  padding: 0 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 4px;
}

.full-menu-footer .auth-buttons .user-profile-button .user-name {
  font-size: 20px;
  font-weight: bold;
}

.full-menu-footer .auth-buttons .user-profile-button .user-page {
  color: #aaa;
  font-size: 14px;
}

.full-menu-footer .auth-buttons .user-profile-button .chevron {
  transform: scaleX(0.6);
  margin-right: 5px;
  color: #aaa;
  font-size: 22px;
}

.full-menu-footer .auth-buttons > a {
  width: calc(100% - 30px);
  height: 35px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.full-menu-footer .auth-buttons > a.login-btn {
  font-size: 16px;
}

.full-menu-footer .auth-buttons > a.signup-btn {
  font-size: 16px;
}

/* common */
.site-logo {
  margin-top: 5px;
  height: 40px;
}

.hidden {
  display: none;
}

.not-scroll {
  height: calc(100vh + 1px);
  width: 1px;
  background-color: transparent;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 900px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* Hamburger menu */
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger-menu .menu-content {
  transform: translateX(100%);
  transition: all 0.5s ease;
  opacity: 0;
}

#menu-btn-check:checked ~ .menu-content {
  transform: translateX(0);
  opacity: 1;
}
/*# sourceMappingURL=/assets/users_show.css-f212e391eb6d93c62c12681953375e8e00b9a82f.map */
