/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/styles/site-base.scss ***!
  \***********************************************************************************************************************/
@charset "UTF-8";
.navbar-avatar {
  object-fit: cover;
  width: 32px;
  height: 32px;
  max-height: inherit !important;
  border-radius: 50%;
}

.navbar-item li {
  list-style: none;
}

#profile-picture {
  display: flex;
  justify-content: center;
}
#profile-picture img.avatar {
  object-fit: cover;
  width: 128px;
  height: 128px;
  border-radius: 50%;
}

#profile-upload-holder {
  padding-top: 0.5em;
}
#profile-upload-holder input[type=file] {
  display: none;
}

.progress-bar {
  background-color: var(--primary);
  width: 2px;
}

#progress-bar-message {
  color: var(--gray);
}

.add-loading-dots:after {
  content: " .";
  animation: dots 1s steps(5, end) infinite;
}
@keyframes dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: black;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 black;
  }
}

.upgrade-features li {
  display: flex;
}
.upgrade-features li .pg-icon {
  margin-right: 0.5rem;
}
.upgrade-features li .upgrade-feature {
  width: 100%;
}

#subscription-details-table .subscription-detail {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 0.5rem;
}
#subscription-details-table .subscription-detail .subscription-detail-label {
  width: 16rem;
  text-align: right;
  margin-right: 1rem;
}
#subscription-details-table .subscription-detail .subscription-detail-value {
  width: 100%;
}
#subscription-details-table .subscription-detail .subdetail {
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

#plan-selector .plan {
  height: 100%;
  border: 3px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 1rem;
}
#plan-selector .plan.is-selected {
  border: 3px solid var(--primary);
}
#plan-selector .plan .plan-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#plan-selector .plan .price {
  font-size: 1.5rem;
}

[x-cloak] {
  display: none !important;
}

a[hx-get] {
  cursor: pointer;
}

.h-100 {
  height: 100%;
}

.muted-link {
  color: hsl(0, 0%, 71%);
}
.muted-link:hover {
  color: hsl(0, 0%, 48%);
  text-decoration: underline;
}

.errorlist {
  color: var(--danger);
}

img.socialicon {
  padding-right: 0.5em;
  max-width: 24px;
  max-height: 24px;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid var(--primary);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
:root {
  --primary-color: #FFE46D;
  --opposite-color: #000000;
  --bg-color: #17182A;
  --text-color: #FFFFFF;
}

/* Launcher Styles */
.checklist-launcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color);
  color: var(--opposite-color);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease-in-out;
  z-index: 1000;
  min-width: 240px;
}

.checklist-launcher:hover {
  transform: scale(1.05);
}

.launcher-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.launcher-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--opposite-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.launcher-title {
  font-weight: bold;
  font-size: 14px;
  flex-grow: 1;
}

.launcher-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.launcher-percentage {
  font-weight: bold;
  font-size: 14px;
  min-width: 35px;
}

.launcher-progressbar {
  flex-grow: 1;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.launcher-progressbar-fill {
  height: 100%;
  background-color: var(--opposite-color);
  transition: width 0.4s ease-in-out;
  border-radius: 3px;
}

/* Close button when panel is open */
.checklist-launcher.close-mode {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.close-icon {
  font-size: 24px;
  font-weight: bold;
  color: var(--opposite-color);
}

/* Checklist Panel Styles */
.checklist-panel {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 350px;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0) translate(-50%, 50%);
  transform-origin: bottom left;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
  opacity: 0;
}

.checklist-panel.show {
  transform: scale(1) translate(0, 0);
  opacity: 1;
}

.panel-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.panel-header-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.panel-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Progress Bar */
.progress-panel {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-text {
  font-size: 0.8rem;
  font-weight: bold;
}

.progressbar {
  flex-grow: 1;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progressbar-fill {
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.4s ease-in-out;
}

/* Checklist Items */
.panel-body {
  max-height: 400px;
  overflow-y: auto;
  padding: 0 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.checklist-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.checklist-item.locked {
  cursor: not-allowed;
  background-color: transparent !important;
}

.checklist-item:last-child {
  border-bottom: none;
}

.item-status {
  flex-shrink: 0;
}

.status-icon {
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: var(--opposite-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.checklist-item.locked .status-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: rgba(255, 255, 255, 0.7);
}

.checklist-item.completed .status-icon {
  background-color: var(--primary-color);
  color: var(--opposite-color);
}

.checklist-item.completed .status-icon::before {
  content: "✓";
  font-size: 16px;
  font-weight: bold;
}

.item-content {
  flex-grow: 1;
}

.item-title {
  font-weight: bold;
}

.item-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.checklist-item.completed .item-title,
.checklist-item.completed .item-desc {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

/* Footer */
.panel-footer {
  padding: 15px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dismiss-checklist {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-decoration: none;
}

.dismiss-checklist:hover {
  text-decoration: underline;
}
