.navbar-avatar {
  object-fit: cover;
  width: 32px;
  height: 32px;
  max-height: inherit !important;
  border-radius: 50%;
}

#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);
}

.stripe-element {
  box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05);
  border-radius: 4px;
  line-height: 1.5;
  border: 1px solid #dbdbdb;
  padding: 1em;
}

.focused-stripe-element {
  border-color: var(--primary);
}

.invalid-stripe-element {
  border-color: var(--danger);
}

.complete-stripe-element {
  border-color: var(--success);
}

.upgrade-features {
  padding: 0;
}
.upgrade-features li {
  display: flex;
}
.upgrade-features li .pg-icon {
  margin-right: 0.5rem;
  color: #22c55e;
}
.upgrade-features li .upgrade-feature {
  width: 100%;
  font-size: 1.1rem;
}

#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: left;
  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: 2px solid var(--primary);
  border-radius: 8px;
  cursor: pointer;
  padding: 1rem;
}
#plan-selector .plan:first {
  background-color: rgb(230, 240, 253);
}
#plan-selector .plan .plan-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#plan-selector .plan .price {
  font-size: 2rem;
  font-weight: bold;
}
#plan-selector .plan .interval {
  font-size: 1.5rem;
}
#plan-selector .plan .lead {
  font-weight: 400;
}
#plan-selector .plan h3 {
  font-size: 1.4rem;
}
#plan-selector .plan p {
  margin-bottom: 0;
}

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

.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;
  }
}
h6, .h6, h5, .h5, h4, .h4, h3, .pg-title, .h3, h2, .h2, h1, .h1 {
  font-weight: 600;
}

.lead, .pg-subtitle {
  font-weight: 400;
}

.pg-subtitle {
  margin-bottom: 16px;
}

.content-card .pg-subtitle:first-child {
  margin-top: 0;
}

.navbar {
  border-bottom: 1px solid #e5e7eb;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.navbar-brand img {
  max-height: 32px;
  width: auto;
}

.navbar-nav {
  align-items: center;
  gap: 0.5rem;
}
.navbar-nav .nav-link {
  color: #6b7280;
  font-weight: 500;
  font-size: 14px;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: #191919;
}
.navbar-nav .nav-link.active {
  color: #191919;
  font-weight: 600;
}

.navbar .dropdown-menu {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.navbar .dropdown-item {
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  color: #374151;
}
.navbar .dropdown-item:hover {
  background-color: #f3f4f6;
  color: #191919;
}

.app-card {
  background-color: transparent !important;
  border-radius: 0;
  box-shadow: none !important;
}

.content-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.content-card:last-child {
  margin-bottom: 0;
}

.app-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.app-header h2 {
  word-break: break-word;
  margin-bottom: 0;
}

.pg-table {
  background-color: #fff;
  --bs-table-striped-bg: transparent;
}

.pg-table thead {
  background-color: #f6f7fa;
  padding: 20px;
}

.pg-table th {
  padding: 20px;
}

.btn, .pg-button-light, .pg-button-danger, .pg-button-secondary, .pg-button-secondary {
  --bs-btn-border-radius: 6px;
}

.pg-button-secondary {
  background-color: #191919;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  border: 0px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pg-button-secondary:hover,
.pg-button-secondary:active,
.pg-button-secondary:focus {
  background-color: #2a2a2a !important;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-more.dropdown-toggle::after {
  display: none;
}

.pg-button-light {
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.btn-light, .pg-button-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #eaeaea;
  --bs-btn-border-color: #eaeaea;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #eaeaea;
  --bs-btn-disabled-border-color: #eaeaea;
}

.pg-button-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.pg-button-unstyled {
  background-color: transparent;
  border: none;
  color: var(--bs-primary);
  font-weight: 500;
  padding: 0;
}

.input-group > .form-control {
  width: 100%;
  border-radius: 5px !important;
}

.copy-button {
  position: absolute;
  border-radius: 8px;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: #eaeaea;
  border: none;
  cursor: pointer;
}

pre {
  font-size: initial;
  position: relative;
}

code {
  border-radius: 8px;
}

.errorlist {
  padding: 0;
}

.errorlist > li {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.pg-table th {
  padding: 5px;
}

.btn-active {
  background-color: #0d6efd;
  color: #fff;
}

.btn-toggle {
  padding: 5px;
  background-color: #eaeaea;
}

.btn-toggle .pg-button-light {
  border: 0px;
}

.btn-toggle .pg-button-light.active,
.btn-toggle .pg-button-light.is-selected {
  background-color: #fff;
}

.btn-toggle .pg-button-light:not(.active):not(.is-selected) {
  background-color: #eaeaea;
  margin: 0;
}

.empty-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  background: white;
  border-radius: 12px;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.empty-card h4 {
  margin-bottom: 8px;
  font-weight: 600;
}

.empty-card p {
  max-width: 400px;
  margin-bottom: 0;
}

.header-buttons {
  display: flex;
  justify-content: space-between;
}

.header-buttons a {
  margin-left: 5px;
}

.heading-number-wrapper {
  display: flex;
  align-items: center;
}

.heading-number {
  background-color: #191919;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  height: 36px;
  width: 36px;
  margin-right: 12px;
  flex-shrink: 0;
}

.step-indicator-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.step-indicator {
  flex: 1;
  border-radius: 4px;
  height: 4px;
  background-color: #e5e7eb;
  transition: background-color 0.3s ease;
}

.step-indicator.active {
  background-color: #191919;
}

.btn-close:focus {
  box-shadow: none;
}

.navbar .pg-icon {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .navbar .dropdown-menu {
    border: 0;
    text-align: center;
  }
  .navbar .dropdown-item {
    justify-content: center;
  }
}
.subscribe-button .pg-button-secondary {
  width: 100%;
  font-weight: bold;
}

.pg-button-subscribed,
.pg-button-subscribed:hover,
.pg-button-subscribed:active,
.pg-button-subscribed:focus {
  background: black;
}

.snippet-instructions .card svg {
  max-width: 60px;
  height: 60px !important;
  margin: 0 auto;
  height: min-content;
}

.snippet-instructions .card,
.snippet-instructions .card-title {
  margin-top: 20px;
}

.accordion-button {
  font-weight: bold;
}

.pg-subtitle li {
  margin-bottom: 20px;
}

.pg-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0 0 24px 0;
  list-style: none;
  font-size: 14px;
}
.pg-breadcrumbs li {
  display: flex;
  align-items: center;
}
.pg-breadcrumbs li a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pg-breadcrumbs li a:hover {
  color: #191919;
}
.pg-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #d1d5db;
}
.pg-breadcrumbs li.pg-breadcrumb-active {
  color: #191919;
  font-weight: 500;
}

.wizard-steps {
  list-style: none;
  padding: 0;
  counter-reset: wizard-counter;
}
.wizard-steps li {
  margin-bottom: 32px;
  padding-left: 0;
  counter-increment: wizard-counter;
  position: relative;
}
.wizard-steps li::before {
  content: counter(wizard-counter) ".";
  font-weight: 600;
  color: #191919;
  margin-right: 8px;
}
.wizard-steps li strong {
  display: inline;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #191919;
}
.wizard-steps li p {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #6b7280;
  line-height: 1.6;
}
.wizard-steps li:last-child {
  margin-bottom: 0;
}

.code-snippet-wrapper {
  margin-top: 12px;
  margin-bottom: 12px;
}
.code-snippet-wrapper pre {
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
}
.code-snippet-wrapper pre code {
  color: #d4d4d4;
  font-size: 13px;
  line-height: 1.6;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  background: transparent;
}

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.video-wrapper {
  max-width: 700px;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.preview-image-wrapper {
  margin: 24px 0;
  text-align: center;
}
.preview-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.secret-table {
  margin: 12px 0;
}
.secret-table .pg-table {
  margin-bottom: 0;
}
.secret-table .token-value {
  background-color: #f9fafb;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 13px;
  color: #059669;
  border: 1px solid #d1fae5;
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.pricing-toggle {
  display: inline-flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.pricing-toggle .pg-button-light {
  border-radius: 0;
  margin: 0;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  background: white;
  border: 1px solid #e5e7eb;
  color: #6b7280;
}
.pricing-toggle .pg-button-light:first-child {
  border-right: none;
}
.pricing-toggle .pg-button-light.is-selected {
  background: white;
  color: #191919;
  font-weight: 600;
  border-color: #191919;
  z-index: 1;
}
.pricing-toggle .pg-button-light .discount-badge {
  color: #10b981;
  font-weight: 600;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.pricing-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.pricing-card.is-popular {
  border-color: #191919;
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.pricing-card.is-selected {
  border-color: #191919;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #191919;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 24px;
}
.pricing-card-header .plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #191919;
}
.pricing-card-header .plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-card-header .plan-price .price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #191919;
  line-height: 1;
}
.pricing-card-header .plan-price .price-interval {
  font-size: 18px;
  color: #6b7280;
  font-weight: 400;
}

.pricing-card-body {
  flex: 1;
  margin-bottom: 24px;
}
.pricing-card-body .plan-description {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 48px;
}
.pricing-card-body .plan-features-label {
  font-weight: 600;
  color: #191919;
  margin-bottom: 16px;
  font-size: 15px;
}
.pricing-card-body .plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-card-body .plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 15px;
}
.pricing-card-body .plan-features li .feature-check {
  flex-shrink: 0;
}

.pricing-card-footer .pricing-cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.enterprise-section {
  background: #191919;
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  margin-top: 80px;
}
.enterprise-section .enterprise-content {
  max-width: 800px;
  margin: 0 auto;
}
.enterprise-section .enterprise-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}
.enterprise-section .enterprise-description {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 32px;
}
.enterprise-section .enterprise-cta {
  background: white;
  color: #191919;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border: none;
}
.enterprise-section .enterprise-cta:hover {
  background: #f3f4f6;
  color: #191919;
  transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
  .pricing-section {
    padding: 20px 0;
  }
  .pricing-card {
    margin-bottom: 20px;
  }
  .enterprise-section {
    border-radius: 16px;
    padding: 40px 24px;
    margin-top: 40px;
  }
  .enterprise-section .enterprise-title {
    font-size: 32px;
  }
  .enterprise-section .enterprise-description {
    font-size: 16px;
  }
}

/*# sourceMappingURL=site-base.css.map */
