.posts {
  width: 100%;
  max-width: 600px;
  background-color: var(--bg-dark);
  border-radius: 8px;
  margin: auto;
  padding: 0 24px 12px 23px;
  box-sizing: border-box;
}
.posts #posts-loader {
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: transparent;
  color: var(--text-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}
.posts #posts-loader.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.posts #posts-loader .posts-loader-text {
  font-size: 2rem;
  font-family: "Lato";
  display: flex;
  gap: 8px;
}
.posts #posts-loader .posts-loader-text .letter {
  display: inline-block;
  animation: jump 1s infinite ease-in-out;
}
.posts #posts-loader .posts-loader-text .letter span {
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}
.posts #posts-loader .posts-loader-text .letter span.letter-blue {
  color: blue;
}
.posts #posts-loader .posts-loader-text .letter span.letter-green {
  color: green;
  -webkit-text-stroke: 0.005px white;
}
.posts #posts-loader .posts-loader-text .letter span.letter-red {
  color: red;
  -webkit-text-stroke: 0.005px white;
}
.posts #posts-loader .posts-loader-text .letter span.letter-yellow {
  color: yellow;
  -webkit-text-stroke: 0.005px white;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.posts .heading {
  font-size: 20px;
  font-weight: bold;
}
.posts .post {
  margin-top: 16px;
  border-top: 1px solid var(--text-muted);
  padding-top: 16px;
}
.posts .post:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.posts .post .user-info {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.posts .post .user-info .username {
  font-size: 14px;
  color: var(--text-muted);
}
.posts .post .user-info img.user-profile {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}
.posts .post .post-data {
  padding-top: 12px;
  line-height: 24px;
}
.posts .post .post-data p {
  margin: 0;
}
.posts .post .post-data .post-img {
  width: 100%;
  object-fit: contain;
  max-height: 500px;
  margin-top: 12px;
  border-radius: 4px;
}
.posts .post .post-buttons {
  margin-top: 8px;
  padding: 8px 0;
  display: flex;
}
.posts .post .post-buttons .btns-right {
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.posts .post .post-buttons .btns-right .fa-trash {
  cursor: pointer;
  margin-left: 12px;
}
.posts .post .post-buttons .btns-right button {
  margin-right: 0 !important;
}
.posts .post .post-buttons button {
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  cursor: pointer;
  margin-right: 16px;
  padding: 0;
}
.posts .post .post-buttons button.like-btn {
  margin-right: 12px;
}
.posts .post .post-buttons button:hover {
  color: var(--text-muted);
}
.posts .post .post-buttons button span.fal,
.posts .post .post-buttons button span.fas {
  margin-right: 6px;
}
.posts .post .post-buttons button span.fas {
  color: var(--primary);
}
.posts .post .extend-like-msg {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: grey;
}
.posts .post .extend-like-msg img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 6px;
  object-fit: cover;
}
.posts .post .extend-like-msg span {
  color: rgb(189, 189, 189);
  font-weight: 500;
  cursor: pointer;
}

#post-popup.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
#post-popup.popup-wrapper.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#post-popup.popup-wrapper .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#post-popup.popup-wrapper .post-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 800px;
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 1rem;
  padding-top: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
#post-popup.popup-wrapper .post-box .editor {
  min-height: 120px;
  border: 1px solid #555;
  padding: 10px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 0 0 8px 8px;
  white-space: pre-wrap;
}
@media (max-width: 600px) {
  #post-popup.popup-wrapper .post-box .editor {
    max-height: 200px;
  }
}
#post-popup.popup-wrapper .post-box .editor:empty::before {
  content: attr(placeholder);
  color: var(--text-muted);
}
#post-popup.popup-wrapper .post-box .editor .mention {
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
#post-popup.popup-wrapper .post-box .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid 555;
}
#post-popup.popup-wrapper .post-box .heading .close-icon {
  cursor: pointer;
  font-size: 1.1rem;
  background: var(--bg-dark2);
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  padding: 0.5rem;
  color: white;
  min-width: 36px;
}
#post-popup.popup-wrapper .post-box textarea {
  resize: vertical;
  height: 100px;
  padding: 0.6rem;
  background: var(--input-bg);
  border: 1px solid var(--text-muted);
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
#post-popup.popup-wrapper .post-box .upload-label {
  cursor: pointer;
  background: var(--primary-dark);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  margin: 1rem 0;
  width: 130px;
}
#post-popup.popup-wrapper .post-box .upload-label:hover {
  background: var(--primary);
}
#post-popup.popup-wrapper .post-box input[type=file] {
  display: none;
}
#post-popup.popup-wrapper .post-box .preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#post-popup.popup-wrapper .post-box .preview img,
#post-popup.popup-wrapper .post-box .preview video {
  max-width: 100px;
  max-height: 100px;
  border-radius: 8px;
  object-fit: cover;
}
#post-popup.popup-wrapper .post-box .action-buttons {
  text-align: right;
}
#post-popup.popup-wrapper .post-box .action-buttons button {
  align-self: flex-end;
  color: white;
  border: none;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}
#post-popup.popup-wrapper .post-box .action-buttons button.create-post-btn {
  background: var(--primary-dark);
  margin-left: 8px;
}
#post-popup.popup-wrapper .post-box .action-buttons button.create-post-btn:hover {
  background: var(--primary);
}
#post-popup.popup-wrapper .post-box .action-buttons button.cancel-btn {
  background: var(--bg-dark2);
}
#post-popup.popup-wrapper .post-box .action-buttons button.cancel-btn:hover {
  background: var(--primary);
}

@media (max-width: 600px) {
  .post-box {
    width: 100vw !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
}
.create-post-box.small-only {
  background-color: var(--bg-dark2);
  padding: 12px 20px;
  margin: 0 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.create-post-box.small-only p.heading {
  margin: 8px 0 12px;
  font-size: 18px;
}
.create-post-box.small-only .pseudo-post-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.create-post-box.small-only input {
  width: 100%;
  padding: 10px 8px;
  margin: 0.5rem 0;
  border: 1px solid rgb(55, 55, 55);
  border-radius: 6px;
  background: var(--bg-dark);
  color: var(--text-light);
  outline: none;
  cursor: pointer;
}
.create-post-box.small-only input:focus {
  border: 1px solid var(--primary);
}
.create-post-box.small-only span.fal {
  font-size: 20px;
}

.post-likes-list {
  overflow-y: auto;
}
.post-likes-list li {
  list-style: none;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-likes-list li a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.post-likes-list li a img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.mention-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}
.mention-link:hover {
  text-decoration: underline;
}

.reaction-buttons {
  display: flex;
  align-items: center;
  margin-right: 8px;
  padding-bottom: 2px;
}

.reaction-emoji {
  background-color: #f0f2f5;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reaction-emoji:hover {
  transform: scale(1.15);
}

.reaction-emoji.reacted {
  background-color: rgba(128, 128, 128, 0.15) !important;
  border: 1px solid var(--primary) !important;
  padding: 2px 3px 5px 3px !important;
  width: 30px;
  height: 30px;
  margin-top: 4px;
}

.mention-box {
  position: absolute;
  background: var(--bg-dark2);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  width: 250px;
  top: 20vh;
  left: auto;
}
.mention-box li {
  padding: 4px 0 6px 8px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
}
.mention-box li:hover {
  background-color: var(--primary-dark);
}
.mention-box li img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 4px;
  object-fit: cover;
}
.mention-box.hidden {
  display: none;
}

.profile-page {
  font-family: var(--font-family), sans-serif;
  color: var(--text-light);
  background-color: var(--bg-dark);
  padding-bottom: 5rem;
}
.profile-page .cover-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.profile-page .profile-info-container {
  position: relative;
  margin: -100px auto 0 auto;
  padding: 0 2rem;
  max-width: 900px;
  align-items: flex-end;
}
@media (max-width: 600px) {
  .profile-page .profile-info-container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -75px;
    text-align: center;
    display: flex;
  }
}
.profile-page .profile-info-container .profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--bg-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .profile-page .profile-info-container .profile-photo {
    width: 150px;
    height: 150px;
  }
}
.profile-page .profile-info-container .profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-page .profile-info-container .user-details {
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.profile-page .profile-info-container .user-details p.name {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .profile-page .profile-info-container .user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-page .profile-info-container .user-details p.name {
    font-size: 22px;
  }
}
.profile-page .profile-info-container .user-details .username {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: left;
}
.profile-page .profile-info-container .user-details .bio {
  color: var(--text-light);
  max-width: 500px;
  margin-top: 1rem;
  font-size: 15px;
  margin-bottom: 0;
}
.profile-page .profile-info-container .user-details .action-buttons {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
}
.profile-page .profile-info-container .user-details .action-buttons .action-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--bg-dark3);
  background-color: var(--bg-dark3);
  color: var(--text-light);
}
.profile-page .profile-info-container .user-details .action-buttons .action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.profile-page .profile-info-container .user-details .action-buttons .action-btn.primary {
  background-color: var(--primary-dark);
  border-color: var(--primary);
  color: white;
}
.profile-page .profile-info-container .user-details .action-buttons .action-btn.primary:hover {
  background-color: var(--primary);
}
.profile-page .profile-info-container .user-details .action-buttons .action-btn span {
  margin-right: 8px;
}

.tabs-container {
  max-width: 900px;
  margin: 2rem auto 0 auto;
  padding: 0 2rem;
}
@media (max-width: 600px) {
  .tabs-container {
    padding: 0;
    margin-top: 1rem;
  }
}
.tabs-container .tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--bg-dark2);
}
.tabs-container .tabs .tab-btn {
  padding: 12px 16px;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tabs-container .tabs .tab-btn .helper-text {
  font-size: 14px;
  font-weight: 600;
}
.tabs-container .tabs .tab-btn span {
  font-size: 18px;
}
.tabs-container .tabs .tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.tabs-container .tabs .tab-btn:not(.active):hover {
  color: var(--text-light);
}
.tabs-container .tab-content {
  padding-top: 2rem;
}
.tabs-container .tab-content .tab-panel {
  display: none;
}
.tabs-container .tab-content .tab-panel.active {
  display: block;
}

.post {
  border-bottom: 1px solid var(--text-muted);
}
.post:last-of-type {
  border-bottom: none;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 8px;
}
.media-grid .media-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  background-color: var(--bg-dark);
  max-height: 320px;
}
.media-grid .media-card img,
.media-grid .media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 508px) {
  .media-grid .media-card img,
  .media-grid .media-card video {
    width: calc(100% - 16px);
    margin: 0 auto;
    border-radius: 8px;
  }
}
.media-grid .media-card .video-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px;
  border-radius: 50%;
  font-size: 12px;
}
.media-grid .media-card .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-grid .media-card .media-overlay .overlay-content {
  display: flex;
  gap: 1.75rem;
  font-size: 17px;
  font-weight: 600;
}
.media-grid .media-card .media-overlay .overlay-content i {
  margin-right: 6px;
}
.media-grid .media-card:hover .media-overlay {
  opacity: 1;
}
.media-grid .media-card:hover img,
.media-grid .media-card:hover video {
  transform: scale(1.05);
}

.about-section {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-section .about-card {
  background: var(--bg-dark2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}
.about-section .about-card .about-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 0.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bg-dark);
}
.about-section .about-card .info-item,
.about-section .about-card .social-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-section .about-card .info-item:not(:last-child),
.about-section .about-card .social-link-item:not(:last-child) {
  margin-bottom: 0.25rem;
}
.about-section .about-card .icon {
  font-size: 20px;
  color: var(--text-muted);
  width: 24px;
  text-align: center;
}
.about-section .about-card .info-text {
  display: flex;
  flex-direction: column;
}
.about-section .about-card .info-text .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.about-section .about-card .info-text .value {
  font-size: 15px;
  color: var(--text-light);
}
.about-section .about-card .social-link-item {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.about-section .about-card .social-link-item .value {
  flex-grow: 1;
  font-weight: 500;
}
.about-section .about-card .social-link-item .link-arrow {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.about-section .about-card .social-link-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.about-section .about-card .social-link-item:hover .link-arrow {
  color: var(--primary);
}
@media (max-width: 600px) {
  .about-section .about-card {
    width: calc(100vw - 32px);
    margin: 0 auto;
  }
}

.empty-msg {
  color: var(--text-muted);
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
}
.empty-msg span.fal {
  font-size: 48px;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.75;
  margin: auto;
}

.login-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  margin: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.login-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.login-banner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}
.login-banner .overlay.show {
  opacity: 1;
}
.login-banner .login-required-box {
  width: 90vw;
  max-width: 400px;
  height: auto;
  max-height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 20px;
  padding-top: 48px;
  line-height: 26px;
}
.login-banner .login-required-box .fa-xmark {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  font-size: 20px;
  padding: 8px;
}
.login-banner .login-required-box .user-profile {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid rgb(81, 80, 80);
}
.login-banner .login-required-box .signup-btn {
  background: var(--primary);
  padding: 0.8rem;
  width: 100%;
  border: none;
  border-radius: 4px;
  color: var(--text-light);
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
}
.login-banner .login-required-box .signup-btn:hover {
  background: var(--primary-dark);
}
.login-banner .login-required-box .login-btn {
  background: rgba(111, 111, 111, 0.2);
  padding: 0.8rem;
  width: 100%;
  border: none;
  border-radius: 4px;
  color: var(--text-light);
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
}
.login-banner .login-required-box .login-btn:hover {
  background: rgba(111, 111, 111, 0.4);
}

.login-box {
  text-align: center;
  margin-top: 48px;
}
.login-box p {
  font-size: 18px;
}

@media (max-width: 600px) {
  .post-likes-box {
    width: 100vw !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
}
.badges-container {
  margin: 1rem 0 0 0;
  display: flex;
  gap: 0.5rem;
  width: 80vw;
  overflow-x: scroll;
  scrollbar-width: none;
}
.badges-container div {
  cursor: pointer;
}
.badges-container div img {
  width: 36px;
  height: 36px;
}

.badges-section {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.badges-section .badge-card {
  background: var(--bg-dark2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}
.badges-section .badge-card .badge-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 0.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bg-dark);
}
.badges-section .badge-card .badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.badges-section .badge-card .badge-item:not(:last-child) {
  margin-bottom: 0.25rem;
}
.badges-section .badge-card p.icon {
  padding-top: 3px;
  margin: 2px 0;
}
.badges-section .badge-card p.icon img {
  width: 52px;
  height: 52px;
}
.badges-section .badge-card .info-text {
  display: flex;
  flex-direction: column;
}
.badges-section .badge-card .info-text .name {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.badges-section .badge-card .info-text .description {
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .badges-section .badge-card {
    width: calc(100vw - 32px);
    margin: 0 auto;
  }
}

/*# sourceMappingURL=profile.css.map */
