@charset "UTF-8";
body {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

.navbar.bg-dark {
  background-color: rgba(var(--bs-dark-rgb), 0.99) !important;
}

main {
  margin-top: 8rem;
}
main.homepage {
  margin-top: 0;
}

body:not(:has(nav.navbar)) main {
  margin-top: 0;
}

.line-behind {
  position: relative;
  text-align: center;
}
.line-behind::before {
  content: "";
  display: block;
  border-top: solid 1px #6c757d;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 40%;
  z-index: 0;
}
.line-behind span {
  background: var(--bs-body-bg);
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  #homepage-hero {
    height: 100vh;
  }
}

.blocks-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6)), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiBmaWxsPSJub25lIj4KPHJlY3QgeD0iMC4yNSIgeT0iMC4yNSIgd2lkdGg9IjQ3LjUiIGhlaWdodD0iNDcuNSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMDQiIHN0cm9rZS13aWR0aD0iMC41Ii8+Cjwvc3ZnPgo=);
}

html[data-bs-theme=dark] .blocks-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(136, 136, 136, 0.3)), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiBmaWxsPSJub25lIj4KPHJlY3QgeD0iMC4yNSIgeT0iMC4yNSIgd2lkdGg9IjQ3LjUiIGhlaWdodD0iNDcuNSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMDQiIHN0cm9rZS13aWR0aD0iMC41Ii8+Cjwvc3ZnPgo=);
}

.dropdown-menu.show {
  z-index: 10000;
}

.text-small,
small {
  font-size: 0.85rem;
}

.text-extra-small {
  font-size: 0.7rem;
}

.code-block-container {
  border-radius: 0.375rem;
  border: 1px solid rgb(228.68, 220.784, 215.52);
  margin-bottom: 1rem;
}
.code-block-container .header {
  background-color: rgb(234.8, 228.74, 224.7);
  padding: 8px 12px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
.code-block-container pre[class*=language-] {
  border-radius: 0 0 0.375rem 0.375rem;
  margin: 0;
}

.text-muted {
  color: rgba(var(--bs-secondary-color), 0.65);
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.list-inline li {
  display: inline-block;
}
.list-inline li::after {
  content: "·";
  margin: 0 0.2rem 0 0.4rem;
}
.list-inline li:last-child::after {
  content: "";
}

table tbody tr[data-href] {
  cursor: pointer;
}
table td.shrink,
table th.shrink {
  width: 1%;
  white-space: nowrap;
}
table td {
  vertical-align: baseline;
}

.card.plan .price::before {
  content: "$";
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  font-size: 2rem;
  margin-right: 0.1rem;
}
.card.plan .price {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Rubik", sans-serif;
}
[data-bs-theme=dark] .card.plan .price::before {
  color: rgba(255, 255, 255, 0.3);
}

.plan-benefits {
  font-size: 0.9rem;
}
.plan-benefits li {
  margin-left: 1em;
  padding: 0.5em 0;
  display: flex;
}
.plan-benefits li * {
  display: inline-block;
}
.plan-benefits li img {
  width: auto;
  height: 1em;
  margin-right: 0.5em;
  margin-top: 0.18em;
  line-height: 1.5;
  vertical-align: bottom;
}

.form-hint {
  border-left: 1px solid #ced4da;
  padding-left: 1rem;
}

.fancy {
  background-image: linear-gradient(to right in oklch, #0d6efd, rgb(var(--bs-dark-rgb)));
  background-clip: text;
  color: transparent;
}
[data-bs-theme=dark] .fancy {
  background-image: linear-gradient(to right in oklch, #0d6efd, rgb(var(--bs-light-rgb)));
  background-clip: text;
  color: transparent;
}

#payment-element {
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
}

.lh-medium {
  line-height: 1.76;
}
