@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
.homefeed--interactive {
  flex: 1;
  background-color: var(--color-grey--50);
}
.homefeed--interactive .homefeed--details .form-field {
  margin-bottom: 0;
  width: auto;
  float: none;
}
.homefeed--interactive.surveyor--free-lead .homefeed--details {
  margin-bottom: 0;
}
.homefeed--interactive .homefeed--details__filters {
  display: block;
  flex: 1;
}
.homefeed--interactive .homefeed--details__filters .form-field {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.homefeed--interactive .homefeed--details__sort {
  margin-bottom: 1rem;
}

@media screen and (min-width: 640px) {
  .homefeed--interactive .homefeed--details__filters {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
}
@media screen and (min-width: 767px) {
  .homefeed--interactive .homefeed--details__filters {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }
  .homefeed--interactive .homefeed--details__filters .form-field {
    margin-bottom: 0;
  }
  .homefeed--interactive .homefeed--details__sort {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
  }
}
.homefeed--details.fz--interactive__filters {
  margin-bottom: 0;
}

#page-title--courses #page-title {
  margin-bottom: 0;
}
#page-title--courses {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

@media screen and (min-width: 640px) {
  #page-title--courses {
    flex-direction: row;
    margin-bottom: 0;
  }
  #page-title--courses #page-title {
    margin-bottom: 0;
  }
}
.course-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}
.course-list .course-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0.0625rem solid var(--color-grey--200);
  border-radius: 0.5rem;
  padding: 1rem;
}
.course-list .course-item .image {
  max-width: 33.3333333333%;
  flex-shrink: 0;
}
.course-list .course-item .image img {
  max-width: 100%;
}
@media screen and (min-width: 640px) {
  .course-list .course-item {
    flex-direction: row;
  }
}
.course-list .content {
  display: flex;
  flex-direction: column;
  flex-direction: row;
  gap: 1rem;
  flex: 1;
}
.course-list .content p {
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.course-list .content ul {
  padding-left: 1.6rem;
}
.course-list .content ul li {
  list-style-type: disc;
}

.page-title {
  display: flex;
  flex-direction: column;
  padding: 0 0 1rem;
  gap: 1rem;
}
.page-title h2 {
  margin: 0;
}

@media screen and (min-width: 640px) {
  .page-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.gallery-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.gallery-list .gallery-item {
  max-width: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0.0625rem solid var(--color-grey--200);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0;
}
.gallery-list .gallery-item img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.resources-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.resources-header #page-title {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .resources-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.resources-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 640px) {
  .resources-toolbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.resources-toolbar .resources-count {
  margin-bottom: 0;
}

.resources-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-decoration: none;
}
.resources-download-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (max-width: 639px) {
  .resources-download-btn {
    width: 100%;
  }
}

.resources-search {
  width: 100%;
  max-width: 400px;
}
.resources-search__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.resources-search__input-wrapper svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-grey--500);
  pointer-events: none;
}
.resources-search__input {
  width: 100%;
  height: 2.75rem;
  padding: 0 2.5rem 0 3rem;
  border: 1px solid var(--color-grey--200);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-off-black);
  background-color: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.resources-search__input::placeholder {
  color: var(--color-grey--500);
}
.resources-search__input:focus {
  outline: none;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.resources-search__clear {
  position: absolute;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: none;
  background: var(--color-grey--100);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
}
.resources-search__clear svg {
  position: static;
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-grey--600);
}
.resources-search__clear:hover {
  background: var(--color-grey--200);
}

.resources-count {
  font-size: 0.875rem;
  color: var(--color-grey--600);
  margin-bottom: 1.5rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 640px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resource-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-grey--200);
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--color-white);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-grey--300);
}
.resource-card:hover .resource-card__cta {
  color: var(--color-black);
}
.resource-card:hover .resource-card__cta svg {
  transform: translateX(4px);
}
.resource-card:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}
.resource-card__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: var(--color-grey--100);
  overflow: hidden;
}
.resource-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.resource-card:hover .resource-card__image img {
  transform: scale(1.05);
}
.resource-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-grey--100) 0%, var(--color-grey--200) 100%);
}
.resource-card__placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--color-grey--400);
}
.resource-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}
.resource-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-off-black);
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.resource-card__summary {
  font-size: 0.9375rem;
  color: var(--color-grey--600);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.resource-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--color-grey--100);
}
.resource-card__date {
  font-size: 0.8125rem;
  color: var(--color-grey--500);
}
.resource-card__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-grey--700);
  transition: color 0.2s;
}
.resource-card__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.resources-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--color-grey--50);
  border-radius: 0.75rem;
  border: 1px dashed var(--color-grey--300);
}
.resources-empty svg {
  width: 4rem;
  height: 4rem;
  color: var(--color-grey--400);
  margin-bottom: 1.5rem;
}
.resources-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-off-black);
  margin: 0 0 0.5rem 0;
}
.resources-empty p {
  font-size: 0.9375rem;
  color: var(--color-grey--600);
  margin: 0;
}

.resources-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.resources-loading .loader {
  width: 3rem;
  height: 3rem;
  border: 3px solid var(--color-grey--200);
  border-top-color: var(--color-black);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}
.resources-loading p {
  font-size: 0.9375rem;
  color: var(--color-grey--600);
  margin: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.resources-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--color-red--50);
  border-radius: 0.75rem;
  border: 1px solid var(--color-red--200);
}
.resources-error svg {
  width: 3rem;
  height: 3rem;
  color: var(--color-red--500);
  margin-bottom: 1rem;
}
.resources-error p {
  font-size: 0.9375rem;
  color: var(--color-red--700);
  margin: 0 0 1.5rem 0;
}

.resources-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}
@media screen and (min-width: 640px) {
  .resources-pagination {
    flex-direction: row;
    justify-content: center;
  }
}
.resources-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.resources-pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--color-grey--200);
  border-radius: 0.375rem;
  background-color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-off-black);
  cursor: pointer;
  transition: all 0.15s;
}
.resources-pagination__page:hover {
  background-color: var(--color-grey--100);
  border-color: var(--color-grey--300);
}
.resources-pagination__page.active {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}
.resources-pagination__ellipsis {
  padding: 0 0.5rem;
  color: var(--color-grey--500);
}
.resources-pagination button.button-tertiary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.resources-pagination button.button-tertiary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.resources-pagination button.button-tertiary svg {
  width: 1rem;
  height: 1rem;
}

.resource-detail-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}
.resource-detail-loading .loader {
  width: 3rem;
  height: 3rem;
  border: 3px solid var(--color-grey--200);
  border-top-color: var(--color-black);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}
.resource-detail-loading p {
  font-size: 0.9375rem;
  color: var(--color-grey--600);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.resource-detail-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 3rem;
}
.resource-detail-error svg {
  width: 4rem;
  height: 4rem;
  color: var(--color-red--500);
  margin-bottom: 1.5rem;
}
.resource-detail-error h2 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
  color: var(--color-off-black);
}
.resource-detail-error p {
  font-size: 1rem;
  color: var(--color-grey--600);
  margin: 0 0 2rem 0;
}

.resource-detail-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.resource-detail {
  padding-bottom: 3rem;
}
.resource-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
  color: var(--color-grey--600);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.resource-detail__back svg {
  width: 1.25rem;
  height: 1.25rem;
}
.resource-detail__back:hover {
  color: var(--color-black);
}
.resource-detail__header {
  margin-bottom: 2rem;
}
.resource-detail__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-off-black);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .resource-detail__title {
    font-size: 2.5rem;
  }
}
.resource-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.resource-detail__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-grey--600);
}
.resource-detail__date svg {
  width: 1.125rem;
  height: 1.125rem;
}
.resource-detail__summary {
  background: linear-gradient(135deg, var(--color-grey--50) 0%, var(--color-grey--100) 100%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.resource-detail__summary p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-grey--700);
  line-height: 1.7;
  margin: 0;
}
.resource-detail__description {
  margin-bottom: 3rem;
}
.resource-detail__description .html-content h1, .resource-detail__description .html-content h2, .resource-detail__description .html-content h3, .resource-detail__description .html-content h4, .resource-detail__description .html-content h5, .resource-detail__description .html-content h6 {
  color: var(--color-off-black);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.resource-detail__description .html-content h2 {
  font-size: 1.5rem;
}
.resource-detail__description .html-content h3 {
  font-size: 1.25rem;
}
.resource-detail__description .html-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-grey--800);
  margin-bottom: 1.25rem;
}
.resource-detail__description .html-content ul, .resource-detail__description .html-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.resource-detail__description .html-content ul li, .resource-detail__description .html-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.resource-detail__description .html-content a {
  color: var(--color-blue--600);
  text-decoration: underline;
}
.resource-detail__description .html-content a:hover {
  color: var(--color-blue--700);
}
.resource-detail__description .html-content blockquote {
  border-left: 4px solid var(--color-grey--300);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-grey--700);
}

.resource-gallery {
  margin-bottom: 2rem;
}
.resource-gallery__featured {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-grey--100);
  margin-bottom: 1rem;
}
.resource-gallery__featured img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.resource-gallery__video-preview {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-gallery__video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resource-gallery__video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, var(--color-grey--200) 0%, var(--color-grey--300) 100%);
}
.resource-gallery__video-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--color-grey--500);
}
.resource-gallery__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transition: transform 0.2s, background-color 0.2s;
}
.resource-gallery__play-button svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  padding-top: 4px;
  margin-left: 4px;
}
.resource-gallery__play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--color-black);
}
.resource-gallery__thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.resource-gallery__thumbnail {
  position: relative;
  width: 80px;
  height: 60px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  padding: 0;
  background: var(--color-grey--100);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
@media screen and (min-width: 640px) {
  .resource-gallery__thumbnail {
    width: 100px;
    height: 75px;
  }
}
.resource-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resource-gallery__thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.resource-gallery__thumbnail.active {
  border-color: var(--color-black);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.resource-gallery__thumbnail-video {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-gallery__thumbnail-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resource-gallery__video-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-grey--200);
}
.resource-gallery__video-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-grey--500);
}
.resource-gallery__video-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}
.resource-gallery__video-badge svg {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}
.resource-gallery__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}
.resource-gallery__modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.resource-gallery__modal-content img, .resource-gallery__modal-content video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 0.5rem;
}
.resource-gallery__modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.resource-gallery__modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}
.resource-gallery__modal-close:hover svg {
  color: var(--color-grey--300);
}

.resource-comments {
  border-top: 1px solid var(--color-grey--200);
  padding-top: 2rem;
}
.resource-comments__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-off-black);
  margin: 0 0 1.5rem 0;
}
.resource-comments__count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.5rem;
  background-color: var(--color-grey--200);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-grey--700);
}
.resource-comments__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.resource-comments__empty {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-grey--50);
  border-radius: 0.75rem;
  margin-top: 1.5rem;
}
.resource-comments__empty p {
  font-size: 0.9375rem;
  color: var(--color-grey--600);
  margin: 0;
}
.resource-comments__loading {
  text-align: center;
  padding: 2rem;
  margin-top: 1.5rem;
}
.resource-comments__loading p {
  font-size: 0.9375rem;
  color: var(--color-grey--500);
  margin: 0;
}

.comment-form {
  background-color: var(--color-grey--50);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.comment-form__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-off-black);
  margin: 0 0 1rem 0;
}
.comment-form__input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-grey--200);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  resize: vertical;
  min-height: 100px;
  margin-bottom: 1rem;
  font-family: inherit;
}
.comment-form__input::placeholder {
  color: var(--color-grey--500);
}
.comment-form__input:focus {
  outline: none;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.comment-form__input:disabled {
  background-color: var(--color-grey--100);
  cursor: not-allowed;
}
.comment-form__error {
  font-size: 0.875rem;
  color: var(--color-red--600);
  margin: 0 0 1rem 0;
}
.comment-form button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.comment-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey--200);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.comment-item__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.comment-item__avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-grey--700) 0%, var(--color-grey--800) 100%);
  color: white;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.comment-item__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.comment-item__author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-off-black);
}
.comment-item__date {
  font-size: 0.8125rem;
  color: var(--color-grey--500);
}
.comment-item__content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-grey--800);
  margin: 0;
}
.comment-item__replies {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-grey--200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-reply {
  background-color: var(--color-grey--50);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-left: 1rem;
}
@media screen and (min-width: 640px) {
  .comment-reply {
    margin-left: 2rem;
  }
}
.comment-reply__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.comment-reply__avatar {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-green--500) 0%, var(--color-green--600) 100%);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.comment-reply__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.comment-reply__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-off-black);
}
.comment-reply__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  background-color: var(--color-green--100);
  color: var(--color-green--700);
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
}
.comment-reply__date {
  font-size: 0.75rem;
  color: var(--color-grey--500);
}
.comment-reply__content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-grey--700);
  margin: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 640px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-grey--200);
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--color-white);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-grey--300);
}
.package-card:hover .package-card__cta {
  color: var(--color-black);
}
.package-card:hover .package-card__cta svg {
  transform: translateX(4px);
}
.package-card:hover .package-card__image img {
  transform: scale(1.05);
}
.package-card:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}
.package-card__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: var(--color-grey--100);
  overflow: hidden;
}
.package-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.package-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-grey--100) 0%, var(--color-grey--200) 100%);
}
.package-card__placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--color-grey--400);
}
.package-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}
.package-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-off-black);
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.package-card__location {
  font-size: 0.9375rem;
  color: var(--color-grey--600);
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}
.package-card__expiration {
  font-size: 0.8125rem;
  color: var(--color-grey--500);
  margin: 0;
  flex: 1;
}
.package-card__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--color-grey--100);
}
.package-card__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-grey--700);
  transition: color 0.2s;
}
.package-card__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.package-grid-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--color-grey--50);
  border-radius: 0.75rem;
  border: 1px dashed var(--color-grey--300);
}
.package-grid-empty svg {
  width: 4rem;
  height: 4rem;
  color: var(--color-grey--400);
  margin-bottom: 1.5rem;
}
.package-grid-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-off-black);
  margin: 0 0 0.5rem 0;
}
.package-grid-empty p {
  font-size: 0.9375rem;
  color: var(--color-grey--600);
  margin: 0;
}

button.image-gallery-thumbnail {
  height: auto;
}

/* Override */
.image-gallery {
  /* button arrows */
}
.image-gallery button:hover,
.image-gallery .button:hover {
  background-color: var(--color-white);
  color: var(--color-purple--700);
}
.image-gallery .image-gallery-left-nav,
.image-gallery .image-gallery-right-nav {
  transform: none;
  top: 42.5%;
}
.image-gallery button.image-gallery-left-nav,
.image-gallery button.image-gallery-right-nav {
  padding: 32px 12px;
}
.image-gallery .image-gallery-left-nav .image-gallery-svg,
.image-gallery .image-gallery-right-nav .image-gallery-svg {
  height: 64px;
  width: 32px;
}
.image-gallery {
  /* thumbnails */
}
.image-gallery .image-gallery-thumbnail .image-gallery-thumbnail-image {
  vertical-align: middle;
  width: 100%;
  line-height: 0;
  object-fit: cover;
  object-position: center center;
}

.container-col__2 {
  display: block;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
}
.container-col__2 .project-learn-more {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-col__2 .project-ad {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-grey--900);
}
.container-col__2 .project-ad .project-ad__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-col__2 .project-ad .project-ad__title img {
  margin-bottom: 1rem;
}
.container-col__2 .project-ad .project-comparison {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.container-col__2 .project-ad .project-comparison .project-comparison-title,
.container-col__2 .project-ad .project-comparison .project-comparison-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  line-height: 1.3rem;
  padding: 0 1rem 0.6rem 1rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-grey--700);
}
.container-col__2 .project-ad .project-comparison .project-comparison-row path {
  stroke: var(--color-purple--400);
}
.container-col__2 .project-ad .project-comparison .project-comparison-row .icon-x path {
  stroke: var(--color-grey--300);
}

.project-ad-image {
  max-width: 480px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .container-col__2 {
    display: flex;
  }
}
/* reusable */
.card {
  width: 100%;
  padding: 24px;
}

.fz-drop {
  box-shadow: 0px 0px 4px 2px rgba(200, 200, 200, 0.45);
}

.dark-mode .fz-drop {
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.45);
}

.container-reply {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 0.6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.6rem;
}
.container-reply .col-reply {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 0.6rem;
  text-align: left;
}
.container-reply .col-reply > a {
  display: contents;
  text-decoration: none;
}
.container-reply .col-reply > a:hover {
  text-decoration: underline;
}
.container-reply .col-reply .reply-details {
  display: flex;
  flex-direction: column;
  line-height: 1.1rem;
  font-size: 0.825rem;
}
.container-reply .col-reply .reply-details > a {
  text-decoration: none;
  text-transform: inherit;
}
.container-reply .col-reply .reply-details > a:hover {
  text-decoration: underline;
}
.container-reply .col-reply .reply-details small {
  font-size: 0.825rem;
  display: flex;
  align-items: center;
  column-gap: 0.2rem;
}
.container-reply .col-reply .reply-pic {
  max-width: 13.3333333333%;
  min-width: 92px;
  flex-shrink: 0;
}

@media screen and (min-width: 600px) {
  .container-reply .col-reply .reply-details {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
.homefeed--details {
  margin-bottom: 1rem;
}
.homefeed--details fieldset {
  margin-bottom: 0;
}

.filter-list {
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  padding: 0 1px;
}
.filter-list fieldset {
  width: 100%;
}

.form-container {
  width: 100%;
}

.pic-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 0.375rem;
  column-gap: 0.375rem;
  padding: 0;
  margin: 0;
}
.pic-grid figure {
  width: 100%;
  max-width: 31.85%;
  margin: 0;
}
.pic-grid figure figcaption {
  padding: 0 8px 8px 8px;
  font-size: 0.6rem;
  word-break: break-all;
}
.pic-grid img {
  cursor: pointer;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 1/1;
}
.pic-grid img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .pic-grid img {
    max-width: 100%;
  }
}
.pic-grid .icon-image {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 375px) {
  .pic-grid figure {
    max-width: 32%;
  }
}
.fz-block {
  margin-bottom: 2rem;
}

.fz-block-sm {
  margin-bottom: 1rem;
}

.fz-inline {
  display: block;
  column-gap: 2rem;
  row-gap: 1rem;
  white-space: nowrap;
  line-height: 0;
}
.fz-inline > span {
  margin: 0 0 0.6rem;
  line-height: 0;
  display: flex;
  column-gap: 0.8rem;
  justify-content: flex-start;
  align-items: baseline;
}

@media screen and (min-width: 600px) {
  .fz-inline {
    display: flex;
    flex-wrap: nowrap;
  }
}
.fz-align-center {
  display: flex;
  align-items: center;
  margin: 0 0 1rem;
}

.media-overlay-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.tooltip__bubble {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 50%;
  transform: translate(-50%, 0.25rem);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--color-grey--900);
  color: var(--color-white);
  font-size: var(--font-size--body-xs);
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.24);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.tooltip__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0.5rem 0.5rem 0 0.5rem;
  border-style: solid;
  border-color: var(--color-grey--900) transparent transparent transparent;
}
.tooltip.tooltip--active:hover .tooltip__bubble, .tooltip.tooltip--active:focus-within .tooltip__bubble {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.fz-react-tooltip {
  max-width: 18rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: normal;
}

@media screen and (max-width: 600px) {
  .fz-react-tooltip {
    max-width: calc(100vw - 2rem);
  }
}
/* Style elements */
.rounded {
  border-radius: 4px;
}

.video {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.video video {
  width: 100%;
}

.rounded-lg {
  border-radius: 8px;
}

body small {
  font-size: 0.8rem;
}
body .fz-white-space {
  white-space: normal;
}

/* for dark mode*/
body.dark-mode .container-dark {
  width: 100%;
  padding: 24px;
  background-color: var(--color-grey--900);
}
body.dark-mode .cta-container .cta__content h2,
body.dark-mode .cta-container .cta__content p {
  color: var(--color-black);
}
body.dark-mode .cta-container .cta .cta__image {
  width: 3.5rem;
}
body.dark-mode .cta-container .cta .cta__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
}

/* Icons */
.button.icon-black svg {
  color: #000;
}
.button.icon-black:hover svg {
  color: #ffffff;
}

/* Dark mode */
.dark-mode .button img {
  color: var(--color-white);
}

.fz-stack {
  display: block;
}
.fz-stack p {
  margin-bottom: 0;
}

.fz-pt-a {
  padding-top: 8px;
}

.fz-fd-row {
  display: flex;
  flex-direction: row;
}

.fz-jc-space-between {
  display: flex;
  justify-content: space-between;
}
.fz-jc-space-between .icon {
  margin: -4px 0 0 0;
}

.fz-jc-flex-end {
  display: flex;
  justify-content: flex-end;
}
.fz-jc-flex-end .icon {
  margin: -4px 0 0 0;
}

.fz-jc-center {
  display: flex;
  justify-content: center;
}

.fz-ai-center {
  display: flex;
  align-items: center;
}

.fz-gap-x {
  gap: 2rem;
}

.fz-gap-xx {
  gap: 4rem;
}

.fz-gap-xxx {
  gap: 8rem;
}

.fz-gap-icon {
  gap: 0.2rem;
}

.fz-gap-x {
  gap: 2rem;
}

.fz-gap-xx {
  gap: 4rem;
}

.fz-gap-xxx {
  gap: 8rem;
}

.fz-mb-2 {
  margin-bottom: 0.5rem;
}

.fz-mt-2 {
  margin-top: 0.5rem;
}

.fz-info {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: var(--font-size--body-xs);
}

.rounded {
  border-radius: 0.5rem;
}

body small {
  font-size: 0.8rem;
}

:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-off-black: #111111;
  --color-grey--50: #FAFAFA;
  --color-grey--100: #EEEEEE;
  --color-grey--200: #D5D5D5;
  --color-grey--300: #BDBDBD;
  --color-grey--400: #A5A5A5;
  --color-grey--500: #8B8B8B;
  --color-grey--600: #717171;
  --color-grey--700: #5F5F5F;
  --color-grey--800: #4C4C4C;
  --color-grey--900: #383838;
  --color-purple--50: #FBF9FE;
  --color-purple--100: #F2EBFD;
  --color-purple--200: #DECDFA;
  --color-purple--300: #CBB1F8;
  --color-purple--400: #B793F5;
  --color-purple--500: #A171F2;
  --color-purple--600: #884BEF;
  --color-purple--700: #7336DC;
  --color-purple--800: #5D2BB1;
  --color-purple--900: #452084;
  --color-green--50: #ECFFEC;
  --color-green--100: #B8FFB8;
  --color-green--200: #00F600;
  --color-green--300: #00DB00;
  --color-green--400: #00C000;
  --color-green--500: #00A200;
  --color-green--600: #008400;
  --color-green--700: #007000;
  --color-green--800: #005A00;
  --color-green--900: #004300;
  --color-yellow--50: #FFFAE2;
  --color-yellow--100: #FFEA97;
  --color-yellow--200: #FFC522;
  --color-yellow--300: #FFAA26;
  --color-yellow--400: #E99028;
  --color-yellow--500: #CB7627;
  --color-yellow--600: #AA5D24;
  --color-yellow--700: #944B22;
  --color-yellow--800: #7A3A1E;
  --color-yellow--900: #5D2918;
  --color-red--50: #FFF9F6;
  --color-red--100: #FFE9E1;
  --color-red--200: #FFC9B6;
  --color-red--300: #FFA78C;
  --color-red--400: #FF805F;
  --color-red--500: #FF4628;
  --color-red--600: #E11005;
  --color-red--700: #BD1809;
  --color-red--800: #961B0B;
  --color-red--900: #6C1A0C;
  --color-blue--50: #F5FBFE;
  --color-blue--100: #DDF1FC;
  --color-blue--200: #ABDBF7;
  --color-blue--300: #78C6F3;
  --color-blue--400: #41AEEE;
  --color-blue--500: #3293CB;
  --color-blue--600: #2877A5;
  --color-blue--700: #22658C;
  --color-blue--800: #1B5170;
  --color-blue--900: #143C53;
  --color-pink--50: #FEF8FC;
  --color-pink--100: #FDE8F5;
  --color-pink--200: #FAC6E7;
  --color-pink--300: #F7A3D8;
  --color-pink--400: #F37CC7;
  --color-pink--500: #EE46B0;
  --color-pink--600: #C83190;
  --color-pink--700: #A9297A;
  --color-pink--800: #882162;
  --color-pink--900: #651949;
  --font-family--heading: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-family--body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-weight--light: 300;
  --font-weight--regular: 400;
  --font-weight--medium: 500;
  --font-weight--semibold: 600;
  --font-weight--bold: 700;
  --font-style--italic: italic;
  --font-size--heading-xl: 3.75rem;
  --font-size--heading-l: 3rem;
  --font-size--heading-m: 2.25rem;
  --font-size--heading-s: 1.2rem;
  --font-size--heading-xs: 1.2rem;
  --font-size--body-xl: 1.25rem;
  --font-size--body-l: 1.125rem;
  --font-size--body-m: 1rem;
  --font-size--body-s: .875rem;
  --font-size--body-xs: .75rem;
  --break-xlarge: 80rem;
  --break-large: 64rem;
  --break-medium: 42.5rem;
  --break-po: 32rem;
  --break-small: 30rem;
  --color-selection-blue-border: rgba(26, 115, 232, 0.8);
  --color-selection-blue-bg: rgba(26, 115, 232, 0.2);
  --color-primary-blue: #1a73e8;
  --color-primary-blue-bg: #e8f0fe;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, cite, code, em, img, q, s, samp, small, strong, sub, sup, b, u, i, center, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, embed, footer, header, nav, section, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  cursor: pointer;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family--body);
  font-size: var(--font-size--body-m);
  color: var(--color-grey--900);
  background-color: var(--color-white);
}
body.dark-mode {
  color: var(--color-grey--100);
  background-color: var(--color-off-black);
}
body.dark-mode .modal {
  color: var(--color-black);
}

#app-container {
  padding: 1rem;
  max-width: var(--break-large);
  margin: 0 auto;
}
@media (min-width: 50rem) {
  #app-container {
    padding: 2rem;
  }
}
#app-container.cad {
  padding: 1rem 1rem 0 1rem;
}
@media (min-width: 50rem) {
  #app-container.cad {
    padding: 2rem 2rem 0 2rem;
  }
}

#app-container,
.app-container {
  position: relative;
  z-index: 3;
  padding: 1rem;
  max-width: var(--break-large);
  margin: 0 auto;
}
@media (min-width: 50rem) {
  #app-container,
  .app-container {
    padding: 1rem 2rem 0 2rem;
  }
}

#marketing-container {
  padding: 1rem;
  max-width: var(--break-large);
  margin: 0 auto;
}
@media (min-width: 50rem) {
  #marketing-container {
    padding: 2rem;
  }
}

#po-container {
  max-width: var(--break-po);
  margin: 0 auto;
}
@media (min-width: 50rem) {
  #po-container {
    padding: 2rem;
  }
}

#page-title {
  margin-bottom: 2rem;
  padding: 1rem 1rem 0 0;
}

#title {
  display: flex;
  flex-direction: column;
}
#title #page-title {
  margin-bottom: 0;
}
#title .button-group {
  row-gap: 0;
}

@media screen and (min-width: 768px) {
  #title {
    flex-direction: row;
    justify-content: space-between;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-weight: var(--font-weight--bold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

h1,
.h1 {
  font-size: var(--font-size--heading-l);
}
#app-container h1,
#app-container .h1 {
  margin-bottom: 0.5rem;
}

h2,
.h2 {
  font-size: var(--font-size--heading-m);
}

h3,
.h3 {
  font-size: var(--font-size--heading-s);
}

h4,
.h4 {
  font-size: var(--font-size--heading-xs);
}

h5,
.h5 {
  font-size: var(--font-size--body-s);
}

h6,
.h6 {
  font-size: var(--font-size--body-s);
}

p {
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

ul {
  margin: 0;
  padding: 0;
  margin-bottom: 1.25rem;
}
ul li {
  line-height: 1.5;
}

ol {
  margin: 0;
  padding: 0;
  margin-bottom: 1.25rem;
}
ol li {
  line-height: 1.5;
}

em {
  font-style: var(--font-style--italic);
}

strong {
  font-weight: var(--font-weight--bold);
}

a {
  color: var(--color-black);
  text-decoration: underline;
  text-decoration-thickness: 0.05rem;
  text-underline-offset: 0.25rem;
  transition: 150ms ease color;
}
.dark-mode a {
  color: var(--color-grey--400);
}
a:hover {
  color: var(--color-grey--800);
  text-decoration-thickness: 2px;
}
.dark-mode a:hover {
  color: var(--color-grey--200);
}
a:active {
  color: var(--color-grey--800);
}
a:focus-visible {
  outline-width: 0.125rem;
  outline-color: var(--color-yellow--500);
  outline-offset: 0.25rem;
}

label,
legend {
  font-size: 0.875rem;
  font-weight: var(--font-weight--bold);
  line-height: 1.5;
}
label .has-icon,
legend .has-icon {
  padding: 0 0.3rem 0 0;
}
label .has-icon svg,
legend .has-icon svg {
  width: 16px;
  height: 16px;
}

legend {
  width: fit-content;
}
legend .has-icon {
  padding: 0 0.3rem 0 0;
}
legend .has-icon svg {
  width: 16px;
  height: 16px;
}

.form-row {
  width: 100%;
}
.form-row > .form-field {
  flex: 1;
}
.form-row.col-2 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 37.5rem) {
  .form-row.col-2 {
    grid-template-columns: repeat(2, minmax(6.25rem, 1fr));
    column-gap: 1.25rem;
  }
}
.form-row.col-3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 37.5rem) {
  .form-row.col-3 {
    grid-template-columns: repeat(3, minmax(6.25rem, 1fr));
    column-gap: 1.25rem;
  }
}
.form-row.col-4 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 37.5rem) {
  .form-row.col-4 {
    grid-template-columns: repeat(2, minmax(6.25rem, 1fr));
    column-gap: 1.25rem;
  }
}
@media (min-width: 64rem) {
  .form-row.col-4 {
    grid-template-columns: repeat(4, minmax(6.25rem, 1fr));
    column-gap: 1.25rem;
  }
}

.form-field {
  margin-bottom: 1.25rem;
}
.form-field.error .validation-message {
  display: block;
}
.form-field.label-side {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-field.label-side label {
  flex-shrink: 0;
  margin-bottom: 0;
}
.form-field.label-side label::after {
  content: ":";
}

.helper-text {
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0;
  margin-bottom: 0.5rem;
  color: var(--color-grey--700);
}

.validation-message {
  display: none;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0;
  margin: 0.5rem 0 0 0;
  color: var(--color-red--700);
}

fieldset {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
fieldset > legend {
  margin-bottom: 0.5rem;
  display: inline-block;
}
@media (min-width: 64rem) {
  fieldset .form-field {
    width: 100%;
    float: left;
  }
}
fieldset .form-field {
  margin-bottom: 0;
}
fieldset .form-field.checkbox label, fieldset .form-field.toggle label {
  font-weight: var(--font-weight--regular);
}
fieldset .form-field.radio label {
  font-weight: var(--font-weight--regular);
}
fieldset.border {
  box-shadow: 0 0 0 0.0625rem rgba(189, 189, 189, 0.5);
  border-radius: 8px;
  padding: 1rem;
  display: flow;
  max-width: 100%;
}
fieldset.border.compact {
  padding: 0 1rem 0.6rem 1rem;
}
fieldset.border > legend {
  margin-bottom: 0;
  background-color: var(--color-white);
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
}
fieldset.border > legend.has-icon {
  padding: 0 0.5rem 0 2rem;
}
fieldset.border.error {
  box-shadow: 0 0 0 0.0625rem var(--color-red--700);
}
fieldset.border p {
  margin-bottom: 0;
}
fieldset.error .validation-message {
  display: block;
}

.file-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  margin-bottom: 1.25rem;
  padding: 1rem;
}
.file-group .file-container {
  width: 100%;
  display: block;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--300);
  padding: 1rem;
}
.file-group .file-container img,
.file-group .file-container video {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.file-group .file-container .file-name {
  display: block;
  font-size: 0.875rem;
  padding-top: 0.5rem;
  color: var(--color-grey--600);
}

.preformatted-text {
  white-space: pre-wrap;
  /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;
  /* For Mozilla */
  white-space: -pre-wrap;
  /* For Opera 4-6 */
  white-space: -o-pre-wrap;
  /* For Opera 7 */
  word-wrap: break-word;
  /* Since CSS 3.0 */
}

@media (max-width: 767px) {
  .no-mobile {
    display: none !important;
  }
}

select,
.select select {
  cursor: pointer;
  font-family: var(--font-family--body);
  font-size: 1rem;
  appearance: none;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
  border: 0;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  border-radius: 0.5rem;
  height: 2.5rem;
  padding: 0 2rem 0 0.75rem;
  color: var(--color-grey--900);
}
select.select-s,
.select select.select-s {
  height: 2rem;
}
select:focus, select:focus-visible,
.select select:focus,
.select select:focus-visible {
  border-width: 2px;
  cursor: pointer;
  outline: 0.125rem solid var(--color-yellow--500);
  outline-offset: 0.25rem;
}

[role=switch] {
  cursor: pointer;
  display: flex;
  align-items: center;
  user-select: none;
  padding: 0;
}
[role=switch] .label {
  display: inline-block;
}
[role=switch] .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  border-radius: 0.5rem;
}
[role=switch] .switch span {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  border-radius: 0.4rem;
  transition: left 0.2s ease;
}
[role=switch][aria-checked=true] .switch {
  background-color: var(--color-white);
}
[role=switch][aria-checked=true] .switch span {
  left: 18px;
  background: var(--color-off-black);
  border: 0.0625rem solid var(--color-grey--700);
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
}
[role=switch][aria-checked=true] .on {
  display: inline;
}
[role=switch][aria-checked=true] .off {
  display: none;
}
[role=switch] .on,
[role=switch] .off {
  width: 24px;
  font-size: 0.775rem;
}
[role=switch] .on {
  display: none;
}
[role=switch] .off {
  display: inline;
}
[role=switch]:focus-visible {
  cursor: pointer;
  outline: 0.125rem solid var(--color-yellow--500);
  outline-offset: 0.25rem;
  border-radius: 0.5rem;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 0.5rem;
}
.loading-overlay p {
  margin-top: 1rem;
  color: var(--color-grey--700);
  font-size: 0.875rem;
}

.form-container {
  position: relative;
}

.pay-now.loading {
  /* Style for button when loading */
  opacity: 0.5;
  cursor: wait;
}

.paypal-spinner {
  /* Style your spinner here */
  width: 100px;
  height: 100px;
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: var(--color-black);
  /* Animation color */
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.paypal-payment-error {
  color: var(--color-red--500);
  border-radius: 0.5rem;
  padding: 0 1rem;
  margin-top: 1rem;
  border-color: var(--color-red--700);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.radio-group .radio-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--color-grey--300);
  border-radius: 0.5rem;
  background-color: var(--color-grey--50);
  transition: all 0.2s ease-in-out;
}
.radio-group .radio-option:hover {
  border-color: var(--color-grey--400);
  background-color: var(--color-grey--100);
}
.radio-group .radio-option input[type=radio] {
  margin-top: 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-grey--400);
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.radio-group .radio-option input[type=radio]:checked {
  border-color: var(--color-black);
}
.radio-group .radio-option input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-black);
  border-radius: 50%;
}
.radio-group .radio-option input[type=radio]:hover {
  border-color: var(--color-black);
}
.radio-group .radio-option .radio-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.radio-group .radio-option .radio-label label {
  font-weight: var(--font-weight--bold);
}
.radio-group .radio-option .radio-label .helper-text {
  margin: 0;
  color: var(--color-grey--600);
  font-size: var(--font-size--body-s);
  font-weight: var(--font-weight--regular);
}
.radio-group .radio-option:has(input[type=radio]:checked) {
  border-color: var(--color-black);
  background-color: var(--color-blue--100);
}
.radio-group .radio-option:has(input[type=radio]:checked) .radio-label label::before {
  content: "";
  box-shadow: inset 0 0 0 0.5rem var(--color-black);
  color: var(--color-white);
}

.dropbox-integration {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f9f9f9;
}
.dropbox-integration h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.dropbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dropbox-header h4 {
  margin: 0;
}
.dropbox-success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.dropbox-success-page h1 {
  margin-bottom: 20px;
  color: var(--color-black);
}
.dropbox-success-page p {
  margin-bottom: 30px;
  font-size: 18px;
}
.dropbox-success-page .loader {
  margin: 20px 0;
}

.shared-link-form {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
}
.shared-link-form form {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.shared-link-form .form-field {
  flex-grow: 1;
}

.help-text {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  margin-bottom: 0;
}

.transfer-progress {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.progress-message {
  margin-top: 10px;
  color: #333;
  text-align: center;
}

.progress-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 5px;
}

.progress-bar {
  height: 100%;
  background-color: var(--color-black);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.input-error {
  border-color: #e74c3c !important;
}

.folder-navigation {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
}
.folder-path {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.folder-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.folder-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.folder-item:last-child {
  border-bottom: none;
}
.folder-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-icon {
  font-size: 24px;
}
.file-name {
  font-size: 16px;
}

.empty-folder {
  padding: 20px;
  text-align: center;
  color: #999;
}

.transfer-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
  color: var(--color-black);
}
.transfer-icon__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #e74c3c;
  color: white;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transfer-icon svg {
  width: 22px;
  height: 22px;
}

.transfer-monitor__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.transfer-monitor__content {
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.transfer-monitor__header {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transfer-monitor__header h3 {
  margin: 0;
  font-size: 18px;
}
.transfer-monitor__header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
}
.transfer-monitor__header button:hover {
  color: #333;
}
.transfer-monitor__body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 120px);
}
.transfer-monitor__empty {
  text-align: center;
  padding: 40px 0;
  color: #999;
}
.transfer-monitor__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.transfer-monitor__item {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f9f9f9;
}
.transfer-monitor__item h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #333;
}
.transfer-monitor__item-address {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--color-black);
}
.transfer-monitor__item-address small {
  word-break: break-word;
}
.transfer-monitor__item-type {
  margin-bottom: 10px;
  font-size: 13px;
  color: #666;
}
.transfer-monitor__item-type small {
  display: inline-block;
  background-color: #e0e0e0;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.transfer-monitor__item-details {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}
.transfer-monitor__item-details span {
  display: inline-block;
  margin-right: 15px;
}
.transfer-monitor__item-progress {
  width: 100%;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}
.transfer-monitor__item-progress .bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.transfer-monitor__item-progress .bar.in-progress {
  background-color: var(--color-black);
}
.transfer-monitor__item-progress .bar.completed {
  background-color: #2ecc71;
}
.transfer-monitor__item-progress .bar.error {
  background-color: #e74c3c;
}
.transfer-monitor__item-status {
  margin-top: 8px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
.transfer-monitor__item-status .message.error {
  color: #e74c3c;
}

/* Team Management Styles */
.team-list {
  border: 1px solid var(--color-grey--200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
}

.team-list__row {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-grey--100);
  transition: background-color 0.15s ease;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .team-list__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.team-list__row:last-child {
  border-bottom: none;
}

.team-list__row:hover {
  background-color: var(--color-grey--50);
}

.team-list__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.team-list__primary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.team-list__name {
  font-weight: var(--font-weight--semibold);
  font-size: 1rem;
  color: var(--color-off-black);
}

.team-list__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.team-list__badge--main {
  background-color: var(--color-purple--100);
  color: var(--color-purple--800);
}

.team-list__badge--sub {
  background-color: var(--color-grey--100);
  color: var(--color-grey--700);
}

.team-list__secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-grey--600);
  flex-wrap: wrap;
}

.team-list__email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-list__status--active {
  color: var(--color-green--600);
}

.team-list__status--invited {
  color: var(--color-yellow--500);
}

.team-list__status--suspended {
  color: var(--color-red--600);
}

.team-list__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.team-list__empty {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-grey--50);
  border-radius: 8px;
  border: 1px dashed var(--color-grey--300);
  color: var(--color-grey--600);
}

/* Filters Bar */
.team-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .team-filters {
    flex-direction: row;
    align-items: center;
  }
}
.team-filters__search {
  flex: 1;
  min-width: 200px;
}

.team-filters__select {
  width: 100%;
}

@media (min-width: 640px) {
  .team-filters__select {
    width: 180px;
  }
}
/* Checkbox styling for permissions modal */
.permission-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-grey--200);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  user-select: none;
}

.permission-checkbox:hover {
  background-color: var(--color-grey--50);
  border-color: var(--color-grey--300);
}

.permission-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}

.permission-checkbox span {
  font-size: 0.9375rem;
  color: var(--color-grey--700);
  line-height: 1.4;
}

.alert-container {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  transition: opacity 400ms ease-in-out;
}
.alert-container.fade-out {
  opacity: 0;
}

.modal .alert-container {
  margin-bottom: 0;
}

.alert {
  width: 100%;
  padding: 1rem 1rem 1rem 1rem;
  background: var(--color-grey--50);
  color: var(--color-grey--900);
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--700);
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  align-items: flex-start;
}
.alert .alert__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  gap: 0.5rem;
}
.alert .alert__content .alert-inline__loader {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: flex-start;
}
.alert .alert__content .alert-inline__icontitle {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.alert .alert__heading {
  font-weight: var(--font-weight--bold);
  padding-left: 0;
}
.alert p {
  margin-bottom: 0;
}
.alert a {
  font-weight: var(--font-weight--regular);
}
.alert .alert__close {
  margin-left: auto;
}
.alert.alert--informational::before {
  content: "";
  background: var(--color-blue--50) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDE2VjEyTTEyIDhIMTIuMDFNMjIgMTJDMjIgMTcuNTIyOCAxNy41MjI4IDIyIDEyIDIyQzYuNDc3MTUgMjIgMiAxNy41MjI4IDIgMTJDMiA2LjQ3NzE1IDYuNDc3MTUgMiAxMiAyQzE3LjUyMjggMiAyMiA2LjQ3NzE1IDIyIDEyWiIgc3Ryb2tlPSIjMjI2NThDIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat 0 0.0625rem/1.25rem 1.25rem;
  box-shadow: none;
  color: var(--color-blue--700);
  width: 100%;
  max-width: 24px;
  height: 24px;
  border: none;
}
.alert.alert--informational {
  background-color: var(--color-blue--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-blue--700);
}
.alert.alert--informational svg path {
  stroke: var(--color-blue--700);
}
.alert.alert--success::before {
  content: "";
  background: var(--color-green--50) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNSAxMkwxMC41IDE1TDE2LjUgOU0yMiAxMkMyMiAxNy41MjI4IDE3LjUyMjggMjIgMTIgMjJDNi40NzcxNSAyMiAyIDE3LjUyMjggMiAxMkMyIDYuNDc3MTUgNi40NzcxNSAyIDEyIDJDMTcuNTIyOCAyIDIyIDYuNDc3MTUgMjIgMTJaIiBzdHJva2U9IiMwMDcwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat 0 0.0625rem/1.25rem 1.25rem;
  box-shadow: none;
  color: var(--color-green--700);
  width: 100%;
  max-width: 24px;
  height: 24px;
  border: none;
}
.alert.alert--success {
  background: var(--color-green--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-green--700);
}
.alert.alert--success svg path {
  stroke: var(--color-green--700);
}
.alert.alert--warning::before {
  content: "";
  background: var(--color-yellow--50) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjk5OTggOC45OTk5OVYxM00xMS45OTk4IDE3SDEyLjAwOThNMTAuNjE1MSAzLjg5MTcxTDIuMzkwMTkgMTguMDk4M0MxLjkzMzk4IDE4Ljg4NjMgMS43MDU4OCAxOS4yODAzIDEuNzM5NTkgMTkuNjAzN0MxLjc2OSAxOS44ODU3IDEuOTE2NzcgMjAuMTQyIDIuMTQ2MTMgMjAuMzA4OEMyLjQwOTA4IDIwLjUgMi44NjQzNSAyMC41IDMuNzc0ODcgMjAuNUgyMC4yMjQ2QzIxLjEzNTIgMjAuNSAyMS41OTA0IDIwLjUgMjEuODUzNCAyMC4zMDg4QzIyLjA4MjcgMjAuMTQyIDIyLjIzMDUgMTkuODg1NyAyMi4yNTk5IDE5LjYwMzdDMjIuMjkzNiAxOS4yODAzIDIyLjA2NTUgMTguODg2MyAyMS42MDkzIDE4LjA5ODNMMTMuMzg0NCAzLjg5MTcxQzEyLjkyOTkgMy4xMDY1NCAxMi43MDI2IDIuNzEzOTYgMTIuNDA2MSAyLjU4MjExQzEyLjE0NzQgMi40NjcxIDExLjg1MjEgMi40NjcxIDExLjU5MzUgMi41ODIxMUMxMS4yOTY5IDIuNzEzOTYgMTEuMDY5NiAzLjEwNjU1IDEwLjYxNTEgMy44OTE3MVoiIHN0cm9rZT0iIzk0NEIyMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat 0 0.0625rem/1.25rem 1.25rem;
  box-shadow: none;
  color: var(--color-yellow--700);
  width: 100%;
  max-width: 24px;
  height: 24px;
  border: none;
}
.alert.alert--warning {
  background: var(--color-yellow--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-yellow--700);
}
.alert.alert--warning svg path {
  stroke: var(--color-yellow--700);
}
.alert.alert--error::before {
  content: "";
  background: var(--color-red--50) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDguMDAwMDhWMTIuMDAwMU0xMiAxNi4wMDAxSDEyLjAxTTMgNy45NDE1M1YxNi4wNTg2QzMgMTYuNDAxMyAzIDE2LjU3MjYgMy4wNTA0OCAxNi43MjU0QzMuMDk1MTUgMTYuODYwNiAzLjE2ODE2IDE2Ljk4NDcgMy4yNjQ2MyAxNy4wODkzQzMuMzczNjkgMTcuMjA3NyAzLjUyMzQ1IDE3LjI5MDkgMy44MjI5NyAxNy40NTczTDExLjIyMyAyMS41Njg0QzExLjUwNjYgMjEuNzI2IDExLjY0ODQgMjEuODA0NyAxMS43OTg1IDIxLjgzNTZDMTEuOTMxNSAyMS44NjMgMTIuMDY4NSAyMS44NjMgMTIuMjAxNSAyMS44MzU2QzEyLjM1MTYgMjEuODA0NyAxMi40OTM0IDIxLjcyNiAxMi43NzcgMjEuNTY4NEwyMC4xNzcgMTcuNDU3M0MyMC40NzY2IDE3LjI5MDkgMjAuNjI2MyAxNy4yMDc3IDIwLjczNTQgMTcuMDg5M0MyMC44MzE4IDE2Ljk4NDcgMjAuOTA0OSAxNi44NjA2IDIwLjk0OTUgMTYuNzI1NEMyMSAxNi41NzI2IDIxIDE2LjQwMTMgMjEgMTYuMDU4NlY3Ljk0MTUzQzIxIDcuNTk4ODkgMjEgNy40Mjc1NiAyMC45NDk1IDcuMjc0NzdDMjAuOTA0OSA3LjEzOTU5IDIwLjgzMTggNy4wMTU1MSAyMC43MzU0IDYuOTEwODJDMjAuNjI2MyA2Ljc5MjQ4IDIwLjQ3NjYgNi43MDkyOCAyMC4xNzcgNi41NDI4OEwxMi43NzcgMi40MzE3N0MxMi40OTM0IDIuMjc0MjEgMTIuMzUxNiAyLjE5NTQzIDEyLjIwMTUgMi4xNjQ1NEMxMi4wNjg1IDIuMTM3MjEgMTEuOTMxNSAyLjEzNzIxIDExLjc5ODUgMi4xNjQ1NEMxMS42NDg0IDIuMTk1NDMgMTEuNTA2NiAyLjI3NDIxIDExLjIyMyAyLjQzMTc3TDMuODIyOTcgNi41NDI4OEMzLjUyMzQ1IDYuNzA5MjggMy4zNzM2OSA2Ljc5MjQ4IDMuMjY0NjMgNi45MTA4MkMzLjE2ODE2IDcuMDE1NTEgMy4wOTUxNSA3LjEzOTU5IDMuMDUwNDggNy4yNzQ3N0MzIDcuNDI3NTYgMyA3LjU5ODg5IDMgNy45NDE1M1oiIHN0cm9rZT0iI0JEMTgwOSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") no-repeat 0 0.0625rem/1.25rem 1.25rem;
  box-shadow: none;
  color: var(--color-red--700);
  width: 100%;
  max-width: 24px;
  height: 24px;
  border: none;
}
.alert.alert--error {
  background: var(--color-red--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-red--700);
}
.alert.alert--error svg path {
  stroke: var(--color-red--700);
}

.breadcrumbs-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin-bottom: 1rem;
}
.breadcrumbs-container ol {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
}
.breadcrumbs-container ol li {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: var(--font-size--body-xs);
}
.breadcrumbs-container ol li a {
  display: block;
}
.breadcrumbs-container ol li a:focus-visible {
  outline-width: 0.125rem;
  outline-color: var(--color-yellow--500);
  outline-offset: 0.25rem;
  text-decoration-thickness: 2px;
}
.breadcrumbs-container ol li .separator {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-grey--400);
  flex-shrink: 0;
}
.breadcrumbs-container ol li .separator svg {
  width: 100%;
  height: 100%;
  display: block;
}
.breadcrumbs-container ol li:last-of-type {
  color: var(--color-grey--800);
}

.button-group {
  position: relative;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
  row-gap: 0.5rem;
}

.button-tooltip-wrapper {
  display: inline-flex;
  align-items: center;
}

button,
.button {
  font-family: var(--font-family--body);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  outline-color: transparent;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 0.5rem;
  padding: 0 1rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: var(--font-weight--semibold);
  font-size: var(--font-size--body-s);
  white-space: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: 150ms ease background-color, 150ms ease color, 150ms ease transform;
}
button.button-full-width,
.button.button-full-width {
  width: 100%;
}
.dark-mode button,
.dark-mode .button {
  background-color: var(--color-grey--900);
  color: var(--color-white);
}
button .icon,
.button .icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
button .icon svg,
.button .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
button:hover,
.button:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
button:active,
.button:active {
  background-color: var(--color-grey--900);
  color: var(--color-white);
  transform: scale(1.05);
}
button:focus-visible,
.button:focus-visible {
  outline-width: 0.125rem;
  outline-color: var(--color-yellow--500);
  outline-offset: 0.25rem;
}
button.button-icon,
.button.button-icon {
  padding: 0.75rem;
  width: 2.5rem;
  color: var(--color-black);
  background-color: var(--color-grey--200);
}
button.button-icon:hover,
.button.button-icon:hover {
  color: var(--color-white);
}
button.button-overlay,
.button.button-overlay {
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-black);
  box-shadow: inset 0 0 0 0.0625rem rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(4px);
}
button.button-overlay:hover, button.button-overlay:active,
.button.button-overlay:hover,
.button.button-overlay:active {
  background-color: rgba(248, 250, 252, 0.95);
  color: var(--color-black);
  box-shadow: inset 0 0 0 0.0625rem rgba(15, 23, 42, 0.18);
}
button.button-primary,
.button.button-primary {
  background-color: var(--color-black);
  color: var(--color-white);
}
button.button-primary:hover,
.button.button-primary:hover {
  background-color: var(--color-grey--900);
}
button.button-primary:active,
.button.button-primary:active {
  background-color: var(--color-grey--900);
  color: var(--color-white);
}
button.button-secondary,
.button.button-secondary {
  background-color: var(--color-grey--100);
  color: var(--color-black);
}
button.button-secondary:hover,
.button.button-secondary:hover {
  background-color: var(--color-grey--200);
  color: var(--color-black);
}
button.button-secondary:active,
.button.button-secondary:active {
  background-color: var(--color-grey--300);
  color: var(--color-black);
  transform: scale(1.05);
}
button.button-tertiary,
.button.button-tertiary {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  transition: 150ms ease box-shadow, 150ms ease background-color, 150ms ease color, 150ms ease transform;
}
button.button-tertiary:hover,
.button.button-tertiary:hover {
  background-color: var(--color-grey--900);
  color: var(--color-white);
  box-shadow: inset 0 0 0 0.0625rem transparent;
}
button.button-tertiary:active,
.button.button-tertiary:active {
  background-color: var(--color-grey--900);
  color: var(--color-white);
  box-shadow: inset 0 0 0 0.0625rem transparent;
}
button.button-destructive,
.button.button-destructive {
  background-color: var(--color-red--600);
  color: var(--color-white);
}
button.button-destructive:hover,
.button.button-destructive:hover {
  background-color: var(--color-red--800);
}
button.button-destructive:active,
.button.button-destructive:active {
  background-color: var(--color-red--900);
  color: var(--color-white);
}
button.button-destructive-outlined,
.button.button-destructive-outlined {
  background-color: var(--color-white);
  color: var(--color-red--600);
  box-shadow: inset 0 0 0 0.0625rem var(--color-red--600);
  transition: 150ms ease box-shadow, 150ms ease background-color, 150ms ease color, 150ms ease transform;
}
button.button-destructive-outlined:hover,
.button.button-destructive-outlined:hover {
  background-color: var(--color-red--900);
  color: var(--color-white);
  box-shadow: inset 0 0 0 0.0625rem transparent;
}
button.button-destructive-outlined:active,
.button.button-destructive-outlined:active {
  background-color: var(--color-red--900);
  color: var(--color-white);
  box-shadow: inset 0 0 0 0.0625rem transparent;
}
button[disabled], button.button-disabled,
.button[disabled],
.button.button-disabled {
  cursor: not-allowed;
  background-color: var(--color-grey--100);
  color: var(--color-grey--400);
}
button[disabled]:active, button.button-disabled:active,
.button[disabled]:active,
.button.button-disabled:active {
  transform: scale(1);
}
button.button-l,
.button.button-l {
  padding: 0 1.25rem;
  font-size: var(--font-size--body-m);
  height: 3.125rem;
}
button.button-l.button-icon,
.button.button-l.button-icon {
  padding: 1rem;
  width: 3.125rem;
}
button.button-l .icon,
.button.button-l .icon {
  width: 1.5rem;
  height: 1.5rem;
}
button.button-l .icon svg,
.button.button-l .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
button.button-s,
.button.button-s {
  padding: 0 0.75rem;
  font-size: var(--font-size--body-xs);
  height: 2rem;
}
button.button-s.button-icon,
.button.button-s.button-icon {
  padding: 0.5rem;
  width: 2rem;
}
button.button-s .icon,
.button.button-s .icon {
  width: 1rem;
  height: 1rem;
}
button.button-s .icon svg,
.button.button-s .icon svg {
  width: 1rem;
  height: 1rem;
}
button.button-xs,
.button.button-xs {
  padding: 0 0.25rem;
  font-size: var(--font-size--body-xs);
  height: 1.5rem;
  border-radius: 0.25rem;
}
button.button-xs.button-icon,
.button.button-xs.button-icon {
  padding: 0.25rem;
  width: 1.5rem;
}
button.button-xs.button-icon:hover,
.button.button-xs.button-icon:hover {
  background-color: var(--color-grey--900);
}
button.button-xs .icon,
.button.button-xs .icon {
  width: 1rem;
  height: 1rem;
}
button.button-xs .icon svg,
.button.button-xs .icon svg {
  width: 1rem;
  height: 1rem;
}

.form-field.checkbox {
  position: relative;
  display: block;
}
.form-field.checkbox label {
  line-height: 1.5;
  margin-bottom: 0;
  padding: 0.3125rem 0.25rem 0.25rem 2.25rem;
  position: relative;
  left: -0.25rem;
  display: inline-block;
  word-break: break-all;
  hyphens: auto;
}
.form-field.checkbox label::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.25rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  border-radius: 0.25rem;
  transition: 150ms ease background-color, 150ms ease box-shadow;
  cursor: pointer;
}
.form-field.checkbox label:hover::before {
  content: "";
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
}
.form-field.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: -999rem;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.form-field.checkbox input[type=checkbox]:focus-visible + label {
  box-shadow: 0 0 0 0.125rem var(--color-yellow--500);
  border-radius: 0.25rem;
}
.form-field.checkbox input[type=checkbox]:checked + label::before {
  content: "";
  background: var(--color-black) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  color: var(--color-white);
}
.form-field.checkbox input[type=checkbox].indeterminate:checked + label::before {
  content: "";
  background: var(--color-black) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgMTJIMTkiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  color: var(--color-white);
}
.form-field.checkbox input[type=checkbox].indeterminate:not(:checked) + label::before {
  content: "";
  background: none;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
}
.form-field.checkbox input[type=checkbox]:checked:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
.form-field.checkbox input[type=checkbox]:checked:disabled + label::before {
  content: "";
  background: var(--color-grey--200) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0 transparent;
}
.form-field.checkbox input[type=checkbox]:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
.form-field.checkbox input[type=checkbox]:disabled + label::before {
  content: "";
  background: var(--color-grey--200);
  box-shadow: inset 0 0 0 0 transparent;
}

.form-field.toggle {
  position: relative;
  display: block;
}
.form-field.toggle label {
  line-height: 1.5;
  margin-bottom: 0;
  padding: 0.3125rem 0.25rem 0.25rem 3.75rem;
  position: relative;
  left: -0.25rem;
  display: inline-block;
}
.form-field.toggle label::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.25rem;
  display: inline-block;
  width: 2.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  border-radius: 1.5rem;
  transition: 150ms ease background-color, 150ms ease box-shadow;
  cursor: pointer;
}
.form-field.toggle label::after {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0.375rem;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-grey--400);
  transition: 250ms ease-in-out left, 150ms ease background-color;
}
.form-field.toggle label:hover::before {
  content: "";
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
}
.dark-mode .form-field.toggle label:hover::before {
  box-shadow: inset 0 0 0 0.0625rem var(--color-blue--500);
}
.form-field.toggle input[type=checkbox] {
  position: absolute;
  top: 0;
  left: -999rem;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.form-field.toggle input[type=checkbox]:focus-visible + label {
  box-shadow: 0 0 0 0.125rem var(--color-yellow--500);
  border-radius: 0.25rem;
}
.form-field.toggle input[type=checkbox]:checked + label::before {
  content: "";
  background: var(--color-black);
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  color: var(--color-white);
}
.dark-mode .form-field.toggle input[type=checkbox]:checked + label::before {
  background: var(--color-blue--500);
  box-shadow: inset 0 0 0 0.0625rem var(--color-blue--500);
}
.form-field.toggle input[type=checkbox]:checked + label::after {
  content: "";
  left: 1.375rem;
  background-color: var(--color-white);
}
.form-field.toggle input[type=checkbox]:checked:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
.form-field.toggle input[type=checkbox]:checked:disabled + label::before {
  content: "";
  background: var(--color-grey--200);
  box-shadow: inset 0 0 0 0 transparent;
}
.form-field.toggle input[type=checkbox]:checked:disabled + label::after {
  content: "";
  left: 1.375rem;
  background-color: var(--color-grey--300);
}
.form-field.toggle input[type=checkbox]:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
.form-field.toggle input[type=checkbox]:disabled + label::before {
  content: "";
  background: var(--color-grey--200);
  box-shadow: inset 0 0 0 0 transparent;
}
.form-field.toggle input[type=checkbox]:disabled + label::after {
  content: "";
  left: 0.375rem;
  background-color: var(--color-grey--300);
}

.cta-container {
  margin-bottom: 2rem;
}
.cta-container .cta {
  background-color: var(--color-purple--100);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 37.5rem) {
  .cta-container .cta {
    flex-direction: row;
  }
}
.cta-container .cta .cta__image {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 37.5rem) {
  .cta-container .cta .cta__image {
    width: 7.5rem;
  }
}
.cta-container .cta .cta__image img {
  width: 7.5rem;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.cta-container .cta .cta__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cta-container .cta .cta__content h2 {
  margin-bottom: 0.25rem;
}
.cta-container .cta .cta__content p {
  margin-bottom: 0.5rem;
}

.loader {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.25rem solid var(--color-grey--200);
  border-bottom-color: var(--color-black);
  border-right-color: var(--color-black);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: loaderRotation 1s linear infinite;
}
.loader.loader--s {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.25rem solid var(--color-grey--200);
  border-bottom-color: var(--color-black);
  border-right-color: var(--color-black);
}
.loader.loader--m {
  width: 3rem;
  height: 3rem;
  border: 0.375rem solid var(--color-grey--200);
  border-bottom-color: var(--color-black);
  border-right-color: var(--color-black);
}
.loader.loader--l {
  width: 4.5rem;
  height: 4.5rem;
  border: 0.5rem solid var(--color-grey--200);
  border-bottom-color: var(--color-black);
  border-right-color: var(--color-black);
}

@keyframes loaderRotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  z-index: 20;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  transition: opacity ease 250ms, visibility ease 250ms;
  overflow: auto;
}
@media (min-width: 50rem) {
  .modal-container {
    padding: 2rem;
  }
}
.modal-container .modal {
  width: 100%;
  max-width: 40rem;
  background-color: var(--color-white);
  position: relative;
  margin: auto;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}
.modal-container .modal.modal-lg {
  max-width: 50rem;
}
.modal-container .modal .modal__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-container .modal .modal__header .modal-title {
  margin-bottom: 0;
  word-wrap: break-word;
  color: var(--color-black);
}
.modal-container .modal .modal__header .modal-title.success {
  color: var(--color-green--700);
}
.modal-container .modal .modal__header .modal-title.warning {
  color: var(--color-yellow--700);
}
.modal-container .modal .modal__header .modal-title.error {
  color: var(--color-red--700);
}
.modal-container .modal .modal__header p {
  word-break: break-word;
  line-height: 1rem;
  color: var(--color-black);
}
.modal-container .modal .modal__header .modal-close {
  margin-left: auto;
}
.modal-container .modal .modal__content {
  overflow: visible;
}
.modal-container .modal .modal__content > *:last-child {
  margin-bottom: 0;
}
.modal-container .modal .modal__content .file-uploads section h5 {
  margin-bottom: 0.5rem;
}
.modal-container .modal .modal__content .file-uploads section .message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-container .modal .modal__content .file-uploads section .message svg path {
  stroke: var(--color-green--600);
}
.modal-container .modal .modal__content .file-uploads section .message p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}
.modal-container .modal .modal__content .file-uploads section .message .loader {
  flex-shrink: 0;
}
.modal-container .modal .modal__action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-container .modal .modal__action .button-group {
  justify-content: flex-end;
}
.modal-container .modal--video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.modal-container .modal--video button.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.modal-container .modal--video video {
  max-width: 100%;
  max-height: 80dvh;
  margin: 0 auto;
  background-color: var(--color-grey--700);
}
.modal-container.visible {
  opacity: 1;
  visibility: visible;
  display: flex;
}

/* Dark mode */
body.dark-mode .modal-title,
body.dark-mode .modal__content {
  color: var(--color-black);
}
body.dark-mode .modal__action .button-secondary {
  background-color: var(--color-grey--100);
  color: var(--color-grey--700);
}
body.dark-mode .modal__action .button-secondary:hover {
  background-color: var(--color-grey--900);
  color: var(--color-white);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pagination .button-group {
  gap: 0.5rem;
}

.form-field.radio {
  position: relative;
  display: block;
}
.form-field.radio label {
  line-height: 1.5;
  margin-bottom: 0;
  padding: 0.3125rem 0.25rem 0.25rem 2.25rem;
  position: relative;
  left: -0.25rem;
  display: inline-block;
}
.form-field.radio label::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.25rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  border-radius: 50%;
  transition: 150ms ease background, 150ms ease box-shadow;
  cursor: pointer;
}
.form-field.radio label:hover::before {
  content: "";
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
}
.form-field.radio input[type=radio] {
  position: absolute;
  top: 0;
  left: -999rem;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.form-field.radio input[type=radio]:focus-visible + label {
  box-shadow: 0 0 0 0.125rem var(--color-yellow--500);
  border-radius: 0.25rem;
}
.form-field.radio input[type=radio]:checked + label::before {
  content: "";
  box-shadow: inset 0 0 0 0.5rem var(--color-black);
  color: var(--color-white);
}
.form-field.radio input[type=radio]:checked:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
.form-field.radio input[type=radio]:checked:disabled + label::before {
  content: "";
  background: var(--color-white);
  box-shadow: inset 0 0 0 0.5rem var(--color-grey--200);
  color: var(--color-white);
}
.form-field.radio input[type=radio]:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
.form-field.radio input[type=radio]:disabled + label::before {
  content: "";
  background: var(--color-grey--200);
  box-shadow: 0 0 0 0 transparent;
}

.select label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.select select {
  font-family: var(--font-family--body);
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
  border: 0;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  border-radius: 0.5rem;
  width: 100%;
  height: 2.5rem;
  padding: 0 2.5rem 0 0.75rem;
  outline: transparent;
  color: var(--color-grey--900);
}
.select select:focus {
  box-shadow: inset 0 0 0 0.125rem var(--color-black);
}
.select select:disabled {
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--200);
  background: var(--color-grey--50) url("images/icon-chevron-down-disabled.svg") no-repeat calc(100% - 0.75rem) 50%/1.25rem 1.25rem;
  color: var(--color-grey--300);
  cursor: not-allowed;
}
.select.error select {
  background: var(--color-red--50) url("images/icon-chevron-down-error.svg") no-repeat calc(100% - 0.75rem) 50%/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-red--700);
}
.select.error select:focus {
  box-shadow: inset 0 0 0 0.125rem var(--color-red--700);
}
.select.disabled label {
  color: var(--color-grey--400);
}
.select.disabled .helper-text {
  color: var(--color-grey--300);
}

#fazzad-header {
  width: 100%;
  height: 3.75rem;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  box-shadow: 0 0.25rem 0.625rem -0.25rem rgba(0, 0, 0, 0.15);
}
@media (min-width: 50rem) {
  #fazzad-header {
    padding: 0 2rem;
  }
}
.dark-mode #fazzad-header {
  background-color: var(--color-off-black);
  box-shadow: 0 0 0 0.0625rem var(--color-grey--900);
  justify-content: center;
}
@media (min-width: 50rem) {
  .dark-mode #fazzad-header {
    justify-content: flex-start;
  }
}
#fazzad-header .logo {
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
}
#fazzad-header .logo img {
  max-width: 100%;
  width: 6.25rem;
}
#fazzad-header .fazzad-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.2rem;
}
#fazzad-header #fazzad-navigation {
  margin-left: auto;
}
#fazzad-header #fazzad-navigation #nav-trigger {
  display: inline-flex;
}
@media (min-width: 50rem) {
  #fazzad-header #fazzad-navigation #nav-trigger {
    display: none;
  }
}
#fazzad-header #fazzad-navigation #nav-trigger .text {
  font-size: 1rem;
}
#fazzad-header #fazzad-navigation ul {
  list-style: none;
  display: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 50rem) {
  #fazzad-header #fazzad-navigation ul {
    display: flex;
  }
}
#fazzad-header #fazzad-navigation ul li {
  font-size: var(--font-size--body-m);
  font-weight: var(--font-weight--semibold);
  white-space: nowrap;
}
#fazzad-header #fazzad-navigation ul li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
}
#fazzad-header #fazzad-navigation ul li a:hover {
  text-decoration: underline;
}
#fazzad-header #fazzad-navigation ul li.current a {
  color: var(--color-purple--900);
  text-decoration: none;
}
#fazzad-header #fazzad-navigation ul li.current a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-purple--900);
}
#fazzad-header #app-navigation {
  margin-left: auto;
}
#fazzad-header #app-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
#fazzad-header #app-navigation ul li {
  font-size: var(--font-size--body-m);
  font-weight: var(--font-weight--semibold);
  white-space: nowrap;
  line-height: 1;
  padding: 0;
  margin: 0;
}
#fazzad-header #app-navigation ul li .profile-menu {
  background-image: url("images/icon-chevron-down.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 1.25rem 1.25rem;
  padding-right: 1.5rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  gap: 0.25rem;
  flex-shrink: 1;
  cursor: pointer;
  position: relative;
}
#fazzad-header #app-navigation ul li .profile-menu:focus-visible {
  outline-width: 0.125rem;
  outline-color: var(--color-yellow--500);
  outline-offset: 0.25rem;
}
#fazzad-header #app-navigation ul li .profile-menu .first-name {
  display: none;
}
@media (min-width: 37.5rem) {
  #fazzad-header #app-navigation ul li .profile-menu .first-name {
    display: inline-block;
  }
}
#fazzad-header #app-navigation ul li .profile-menu .icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
}
#fazzad-header #app-navigation ul li .profile-menu .profile-menu__menu {
  position: absolute;
  background-color: var(--color-white);
  box-shadow: 0 0 0.25rem 0.125rem rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  top: 2.6rem;
  right: 0;
}
#fazzad-header #app-navigation ul li .profile-menu .profile-menu__menu ul li a {
  font-size: var(--font-size--body-xs);
  text-decoration: none;
  color: var(--color-black);
  display: block;
  padding: 0.5rem 1.25rem;
  background-color: var(--color-white);
  transition: 150ms ease background-color, 150ms ease color;
}
#fazzad-header #app-navigation ul li .profile-menu .profile-menu__menu ul li a:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
#fazzad-header #app-navigation ul li .profile-menu .profile-menu__menu ul li a:focus-visible {
  outline-width: 0;
  outline-color: transparent;
  outline-offset: 0;
  box-shadow: inset 0 0 0 0.125rem var(--color-yellow--500);
}
#fazzad-header #po-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: var(--color-off-black);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0 2rem 0;
  box-shadow: 0 0 0 0.0625rem var(--color-grey--900);
}
@media (min-width: 50rem) {
  #fazzad-header #po-navigation {
    position: relative;
    z-index: 1;
    background-color: transparent;
    display: flex;
    justify-content: center;
    padding: 0;
    box-shadow: 0 0 0 0 transparent;
    margin-left: -100px;
  }
}
#fazzad-header #po-navigation ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}
#fazzad-header #po-navigation ul li {
  font-size: var(--font-size--body-m);
  font-weight: var(--font-weight--semibold);
  white-space: nowrap;
}
#fazzad-header #po-navigation ul li a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  position: relative;
  background-color: transparent;
  color: var(--color-purple--400);
  font-weight: 700;
}
@media (min-width: 50rem) {
  #fazzad-header #po-navigation ul li a {
    flex-direction: row;
    gap: 0.5rem;
  }
}
#fazzad-header #po-navigation ul li a:hover {
  color: var(--color-purple--600);
}
#fazzad-header #po-navigation ul li.current a {
  text-decoration: none;
  color: var(--color-white);
}

#fazzad-header + .app-header-spacer {
  width: 100%;
  height: 3.75rem;
  flex: 0 0 auto;
}

#fazzad-footer {
  width: 100%;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-gap: 2rem;
  row-gap: 1rem;
  padding: 1rem;
}
@media (min-width: 50rem) {
  #fazzad-footer {
    padding: 2rem;
  }
}
#fazzad-footer p {
  margin-bottom: 0.25rem;
}
#fazzad-footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: var(--font-size--body-s);
}
#fazzad-footer .footer-info img {
  max-width: 100%;
  width: 10rem;
  margin-bottom: 1rem;
}
@media (min-width: 50rem) {
  #fazzad-footer .back-to-top {
    margin-left: auto;
  }
}
@media (min-width: 50rem) {
  #fazzad-footer {
    flex-direction: row;
  }
}

#step-controls {
  width: 100%;
  height: 3.75rem;
  background-color: var(--color-white);
  box-shadow: 0 -0.25rem 0.625rem -0.25rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 50rem) {
  #step-controls {
    padding: 0 2rem;
  }
}

.steps-container {
  width: 100%;
  margin-bottom: 2rem;
}
.steps-container ol {
  display: grid;
  grid-template-columns: 1fr 1.25rem 1fr;
  grid-template-rows: 1fr;
  gap: 0.5rem;
}
@media (min-width: 50rem) {
  .steps-container ol {
    gap: 1rem;
  }
}
.steps-container ol li {
  display: flex;
}
.steps-container ol li a {
  flex: 1;
  text-decoration: none;
  color: var(--color-grey--900);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--color-grey--50);
  border-radius: 0.25rem;
  box-shadow: inset 0 0 0 0.125rem transparent;
  transition: 150ms ease box-shadow;
}
@media (min-width: 50rem) {
  .steps-container ol li a {
    padding: 0.75rem 1rem;
  }
}
.steps-container ol li a .status-icon {
  display: inline-block;
  flex-shrink: 0;
  color: var(--color-grey--700);
}
.steps-container ol li a .text {
  display: inline-block;
}
.steps-container ol li a .text .step-title {
  display: block;
  font-weight: var(--font-weight--bold);
}
.steps-container ol li a .text .step-description {
  display: block;
  font-size: 0.875rem;
  padding-top: 0.25rem;
}
.steps-container ol li a:hover {
  box-shadow: inset 0 0 0 0.125rem var(--color-grey--900);
}
.steps-container ol li.separator {
  width: 1rem;
  display: flex;
  align-items: center;
  padding: 0;
  background-color: transparent;
  color: var(--color-grey--700);
}
.steps-container ol li.separator svg {
  width: 1rem;
  height: 1rem;
  display: inline-block;
}
@media (min-width: 50rem) {
  .steps-container ol li.separator {
    width: 1.25rem;
  }
  .steps-container ol li.separator svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.steps-container ol li.current a {
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--500);
}
.steps-container ol li.current a:hover {
  box-shadow: inset 0 0 0 0.125rem var(--color-grey--600);
}
.steps-container ol li.inactive a {
  color: var(--color-grey--300);
  cursor: not-allowed;
}
.steps-container ol li.inactive a:hover {
  box-shadow: inset 0 0 0 0.125rem transparent;
}
.steps-container ol li.complete a {
  background-color: var(--color-green--50);
  box-shadow: inset 0 0 0 0.0625rem transparent;
}
.steps-container ol li.complete a:hover {
  box-shadow: inset 0 0 0 0.125rem var(--color-grey--600);
}
.steps-container ol li.complete a .status-icon {
  display: inline-block;
}
.steps-container ol li.complete.current a {
  background-color: var(--color-green--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--500);
}
.steps-container ol li.complete.current a:hover {
  box-shadow: inset 0 0 0 0.125rem var(--color-grey--600);
}
.steps-container ol li.complete.current a .status-icon {
  display: inline-block;
}

.table-container {
  width: 100%;
}
.table-container table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-container table thead tr {
  border-bottom: 0.125rem solid var(--color-grey--300);
}
.table-container table thead tr th {
  padding: 0.5rem 0;
  font-weight: var(--font-weight--bold);
  line-height: 1.25;
}
.table-container table tbody tr {
  border-bottom: 0.0625rem solid var(--color-grey--200);
}
.table-container table tbody tr td {
  padding: 0.6rem 0;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Surveyor free leads */
.surveyor--leads-table .col-date {
  min-width: 100px;
}

.tab-container.tab-style--underline {
  display: flex;
  width: 100%;
  border-bottom: 0.0625rem solid var(--color-grey--400);
  margin-bottom: 2rem;
}
.dark-mode .tab-container.tab-style--underline {
  border-bottom: 0.0625rem solid var(--color-grey--800);
}
.tab-container.tab-style--underline ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.tab-container.tab-style--underline ul li {
  line-height: 1;
  font-size: 0.875rem;
  width: 100%;
  max-width: 50%;
}
.tab-container.tab-style--underline ul li a.tab {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  position: relative;
  color: var(--color-grey--800);
  text-decoration: none;
}
.dark-mode .tab-container.tab-style--underline ul li a.tab {
  color: var(--color-grey--200);
}
.tab-container.tab-style--underline ul li a.tab::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.125rem);
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: transparent;
  transition: 150ms ease background-color;
}
.tab-container.tab-style--underline ul li a.tab .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
.tab-container.tab-style--underline ul li a.tab .text {
  font-weight: var(--font-weight--medium);
}
.tab-container.tab-style--underline ul li a.tab:hover::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.125rem);
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--color-black);
}
.dark-mode .tab-container.tab-style--underline ul li a.tab:hover::after {
  background-color: var(--color-purple--400);
}
.tab-container.tab-style--underline ul li.current a.tab {
  color: var(--color-black);
}
.dark-mode .tab-container.tab-style--underline ul li.current a.tab {
  color: var(--color-purple--400);
}
.tab-container.tab-style--underline ul li.current a.tab::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.125rem);
  left: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--color-black);
}
.dark-mode .tab-container.tab-style--underline ul li.current a.tab::after {
  background-color: var(--color-purple--400);
}
.tab-container.tab-style--underline ul li.current a.tab .text {
  font-weight: var(--font-weight--bold);
}
.tab-container.tab-style--toggle {
  display: inline-flex;
  width: auto;
  height: 2.75rem;
  background-color: var(--color-purple--50);
  border-radius: 0.625rem;
  border: 0.0625rem solid var(--color-grey--400);
}
.tab-container.tab-style--toggle ul {
  display: flex;
  margin-bottom: 0;
}
.tab-container.tab-style--toggle ul li {
  line-height: 1;
  font-size: 0.875rem;
}
.tab-container.tab-style--toggle ul li a.tab {
  display: flex;
  height: 2.625rem;
  align-items: center;
  gap: 0.375rem;
  padding: 0 1rem;
  position: relative;
  color: var(--color-grey--700);
  text-decoration: none;
}
.tab-container.tab-style--toggle ul li a.tab .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
.tab-container.tab-style--toggle ul li a.tab .text {
  font-weight: var(--font-weight--medium);
}
.tab-container.tab-style--toggle ul li a.tab:hover {
  color: var(--color-grey--900);
}
.tab-container.tab-style--toggle ul li.current a.tab {
  background-color: var(--color-grey--900);
  color: var(--color-white);
  border-radius: 0.55rem;
}
.tab-container.tab-style--toggle ul li.current a.tab .text {
  font-weight: var(--font-weight--bold);
}

@media (min-width: 321px) {
  .tab-container.tab-style--underline ul {
    flex-wrap: nowrap;
  }
  .tab-container.tab-style--underline ul li {
    line-height: 1;
    font-size: 0.875rem;
    width: 100%;
    max-width: 100%;
  }
}
.text-area label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.text-area .input-container {
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  border-radius: 0.5rem;
  width: 100%;
  padding: 0.75rem 0.75rem 0.5rem 0.75rem;
}
.text-area .input-container:focus-within {
  box-shadow: inset 0 0 0 0.125rem var(--color-black);
}
.text-area textarea {
  font-family: var(--font-family--body);
  font-size: 1rem;
  appearance: none;
  border: 0;
  border-radius: 0;
  width: 100%;
  min-height: 6.25rem;
  max-height: 16rem;
  padding: 0;
  outline: transparent;
  color: var(--color-grey--900);
  resize: none;
  overflow: auto;
  background-color: transparent;
}
.text-area textarea::-webkit-scrollbar-track {
  border: 0.0625rem solid var(--color-black);
  border-radius: 0.375rem;
  background-color: transparent;
}
.text-area textarea::-webkit-scrollbar {
  width: 0.5rem;
  background-color: transparent;
}
.text-area textarea::-webkit-scrollbar-thumb {
  border-radius: 0.3125rem;
  background-color: var(--color-black);
}
.text-area textarea:disabled {
  cursor: not-allowed;
  color: var(--color-grey--300);
}
.text-area.error .input-container {
  box-shadow: inset 0 0 0 0.0625rem var(--color-red--700);
  background-color: var(--color-red--50);
}
.text-area.error .input-container:focus-within {
  box-shadow: inset 0 0 0 0.125rem var(--color-red--700);
}
.text-area.error textarea::-webkit-scrollbar-track {
  border: 0.0625rem solid var(--color-red--700);
}
.text-area.error textarea::-webkit-scrollbar-thumb {
  border-radius: 0.3125rem;
  background-color: var(--color-red--700);
}
.text-area.disabled label {
  color: var(--color-grey--400);
}
.text-area.disabled .helper-text {
  color: var(--color-grey--300);
}
.text-area.disabled .input-container {
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--200);
  background-color: var(--color-grey--50);
}
.text-area.disabled .input-container:focus-within {
  box-shadow: inset 0 0 0 0.125rem var(--color-red--700);
}
.text-area.disabled textarea::-webkit-scrollbar-track {
  border: 0.0625rem solid var(--color-red--700);
}
.text-area.disabled textarea::-webkit-scrollbar-thumb {
  border-radius: 0.3125rem;
  background-color: var(--color-red--700);
}

.scope-text-area textarea {
  min-height: 12.5rem !important;
}

.text-input label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.text-input input[type=text],
.text-input input[type=email],
.text-input input[type=url],
.text-input input[type=tel],
.text-input input[type=num],
.text-input input[type=date],
.text-input input[type=password],
.text-input input[type=search] {
  font-family: var(--font-family--body);
  font-size: 1rem;
  appearance: none;
  border: 0;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  border-radius: 0.5rem;
  width: 100%;
  height: 2.5rem;
  padding: 0 0.75rem;
  outline: transparent;
  color: var(--color-grey--900);
}
.text-input input[type=text]:focus,
.text-input input[type=email]:focus,
.text-input input[type=url]:focus,
.text-input input[type=tel]:focus,
.text-input input[type=num]:focus,
.text-input input[type=date]:focus,
.text-input input[type=password]:focus,
.text-input input[type=search]:focus {
  box-shadow: inset 0 0 0 0.125rem var(--color-black);
}
.text-input input[type=text]:disabled,
.text-input input[type=email]:disabled,
.text-input input[type=url]:disabled,
.text-input input[type=tel]:disabled,
.text-input input[type=num]:disabled,
.text-input input[type=date]:disabled,
.text-input input[type=password]:disabled,
.text-input input[type=search]:disabled {
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--200);
  background-color: var(--color-grey--50);
  color: var(--color-grey--300);
  cursor: not-allowed;
}
.text-input input[type=date]::-webkit-datetime-edit-month-field, .text-input input[type=date]::-webkit-datetime-edit-day-field, .text-input input[type=date]::-webkit-datetime-edit-year-field {
  background: none;
}
.text-input input[type=date]::-webkit-datetime-edit-month-field:focus-visible, .text-input input[type=date]::-webkit-datetime-edit-day-field:focus-visible, .text-input input[type=date]::-webkit-datetime-edit-year-field:focus-visible {
  box-shadow: inset 0 0 0 0.125rem var(--color-yellow--500);
  border-radius: 0.25rem;
}
.text-input input[type=date]::-webkit-calendar-picker-indicator:focus {
  outline: 0;
  box-shadow: 0 0 0 0.125rem var(--color-yellow--500);
  border-radius: 0.25rem;
}
.text-input input[type=date]::-webkit-clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.125rem var(--color-yellow--500);
  border-radius: 0.25rem;
}
.text-input input[type=search] {
  padding: 0 2.25rem 0 0.75rem;
  background: var(--color-white) url("images/icon-search-sm.svg") no-repeat calc(100% - 0.75rem) 50%/1.25rem 1.25rem;
}
.text-input.error input[type=text],
.text-input.error input[type=email],
.text-input.error input[type=url],
.text-input.error input[type=tel],
.text-input.error input[type=num],
.text-input.error input[type=date],
.text-input.error input[type=password],
.text-input.error input[type=search] {
  background-color: var(--color-red--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-red--700);
}
.text-input.error input[type=text]:focus,
.text-input.error input[type=email]:focus,
.text-input.error input[type=url]:focus,
.text-input.error input[type=tel]:focus,
.text-input.error input[type=num]:focus,
.text-input.error input[type=date]:focus,
.text-input.error input[type=password]:focus,
.text-input.error input[type=search]:focus {
  box-shadow: inset 0 0 0 0.125rem var(--color-red--700);
}
.text-input.disabled label {
  color: var(--color-grey--400);
}
.text-input.disabled .helper-text {
  color: var(--color-grey--300);
}

.file-input {
  position: relative;
}
.file-input input[type=file] {
  width: 0.1px;
  height: 0.1px;
  position: absolute;
  left: -999rem;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
}
.file-input input[type=file]:focus + label {
  outline-style: auto;
  outline-width: 0.125rem;
  outline-color: var(--color-yellow--500);
  outline-offset: 0.25rem;
}
.file-input input[type=file] + label * {
  pointer-events: none;
}
.file-input.disabled label {
  color: var(--color-grey--400);
}
.file-input.disabled .helper-text {
  color: var(--color-grey--300);
}

.toast-container {
  width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  top: 4.75rem;
  right: 2rem;
}

.toast {
  width: 100%;
  padding: 1rem 1rem 1rem 1rem;
  background: var(--color-grey--50);
  color: var(--color-grey--900);
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--700);
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: opacity 400ms ease-in-out;
}
.toast.fade-out {
  opacity: 0;
}
.toast .toast__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  gap: 0.5rem;
}
.toast .toast__heading {
  font-weight: var(--font-weight--bold);
  padding-left: 2rem;
  background: url("images/icon-help-circle.svg") no-repeat 0 0.0625rem/1.25rem 1.25rem;
}
.toast .toast__message {
  padding-left: 2rem;
}
.toast p {
  margin-bottom: 0;
}
.toast a {
  font-weight: var(--font-weight--regular);
}
.toast .toast__close {
  margin-left: auto;
}
.toast.toast--informational {
  background: var(--color-blue--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-blue--700);
}
.toast.toast--informational .toast__content .toast__heading {
  background: url("images/icon-info-circle.svg") no-repeat 0 0.0625rem/1.25rem 1.25rem;
}
.toast.toast--success {
  background: var(--color-green--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-green--700);
}
.toast.toast--success .toast__content .toast__heading {
  background: url("images/icon-check-circle.svg") no-repeat 0 0.0625rem/1.25rem 1.25rem;
}
.toast.toast--warning {
  background: var(--color-yellow--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-yellow--700);
}
.toast.toast--warning .toast__content .toast__heading {
  background: url("images/icon-alert-triangle.svg") no-repeat 0 0.0625rem/1.25rem 1.25rem;
}
.toast.toast--error {
  background: var(--color-red--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-red--700);
}
.toast.toast--error .toast__content .toast__heading {
  background: url("images/icon-alert-hexagon.svg") no-repeat 0 0.0625rem/1.25rem 1.25rem;
}

.sow-carousel {
  position: relative;
}

.sow-carousel-stage {
  position: relative;
}

.sow-carousel-video {
  display: block;
}

.sow-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transition: none;
  outline: none;
}

.sow-carousel-btn:active {
  transform: translateY(-50%);
}

.sow-carousel-btn:focus {
  outline: none;
}

.sow-carousel-btn.prev {
  left: 10px;
}

.sow-carousel-btn.next {
  right: 10px;
}

.sow-carousel-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  z-index: 1;
}

.sow-carousel-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.sow-thumb {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.7;
}

.sow-thumb.active {
  opacity: 1;
}

.sow-thumb img {
  width: 72px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

#create-package {
  padding-bottom: 3.75rem;
}
#create-package section {
  margin-bottom: 1rem;
}
@media (min-width: 50rem) {
  #create-package section {
    margin-bottom: 2rem;
  }
}
#create-package #step-controls {
  justify-content: center;
}
#create-package section.outlined {
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
#create-package section {
  /* Job Tags block */
}
#create-package section.form-tags fieldset.border.compact {
  padding-top: 0.5rem;
}
#create-package section.form-tags .tags-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
  margin: 0 0 0.5rem 0;
}
#create-package section.form-tags .tags-title .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
#create-package section.form-tags .tags-title .icon svg {
  display: block;
}
#create-package section.form-covers {
  display: flex;
  flex-direction: column;
  column-gap: 1.25rem;
}
@media (min-width: 42.5rem) {
  #create-package section.form-covers {
    flex-direction: row;
  }
}
#create-package section.form-covers fieldset {
  width: 100%;
}
#create-package section.form-covers fieldset legend {
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 0.125rem solid var(--color-grey--300);
  margin-bottom: 1.25rem;
}
#create-package {
  /* Added by LC */
}
#create-package .button-group.fz-bb {
  border-bottom: 1px solid var(--color-grey--300);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/* Added by LC */
#choose {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#choose .form-choose {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 40rem) {
  #choose {
    flex-direction: row;
  }
}

#folder-container .button-group {
  margin-bottom: 1.5rem;
}
#folder-container #step-controls .button-group {
  margin-bottom: 0;
}
#folder-container .container-nav__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 3.5rem;
  /* Mobile breakdown */
}
@media (min-width: 600px) {
  #folder-container .container-nav__layout {
    flex-direction: row;
  }
}
#folder-container .container-nav__layout aside {
  width: 100%;
}
@media (min-width: 600px) {
  #folder-container .container-nav__layout aside {
    max-width: 192px;
    min-width: 132px;
  }
}
#folder-container .container-nav__layout nav.nav-file-type ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 600px) {
  #folder-container .container-nav__layout nav.nav-file-type ul {
    flex-direction: column;
  }
}
#folder-container .container-nav__layout nav.nav-file-type li {
  border-radius: 6px;
  width: 50%;
}
@media (min-width: 600px) {
  #folder-container .container-nav__layout nav.nav-file-type li {
    width: 100%;
  }
}
#folder-container .container-nav__layout nav.nav-file-type li a {
  display: block;
  padding: 0.6rem;
  border-radius: 6px;
}
#folder-container .container-nav__layout nav.nav-file-type li.current {
  font-weight: var(--font-weight--bold);
  background-color: var(--color-blue--100);
}
#folder-container .container-nav__layout nav.nav-file-type li:hover {
  background-color: var(--color-blue--50);
}
#folder-container .container-nav__layout {
  /* Stack on mobile */
}
#folder-container .container-nav__layout .uploaded-file-grid figure.upload-file {
  max-width: 100%;
}
@media (min-width: 425px) {
  #folder-container .container-nav__layout .uploaded-file-grid figure.upload-file {
    max-width: 48.75%;
  }
}
@media (min-width: 768px) {
  #folder-container .container-nav__layout .uploaded-file-grid figure.upload-file {
    max-width: 31.85%;
  }
}

/* TABLE */
.table-container {
  width: 100%;
}
.table-container table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-container table thead tr {
  border-bottom: 0.125rem solid var(--color-grey--300);
}
.table-container table tbody tr {
  border-bottom: 0.0625rem solid var(--color-grey--200);
}
.table-container table tbody tr td {
  padding: 0.6rem 0;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.table-container table tbody tr td a {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
.table-container table thead th {
  padding: 0.5rem 0;
  font-weight: var(--font-weight--bold);
  line-height: 1.25;
}

/* Modals: approval */
.approved .icon > svg {
  position: relative;
  top: 6px;
}

.modal .statement-processing {
  display: flex;
  gap: 0.6rem;
  flex-direction: row;
  align-items: center;
  padding: 0.6rem 0;
}

.plan-and-picture {
  width: 100%;
  color: #525252;
  font-weight: bold;
}
.plan-and-picture table {
  width: 100%;
  border-collapse: collapse;
}
.plan-and-picture table th {
  padding: 2rem 0 1rem;
}
.plan-and-picture table .file-name-header {
  text-align: left;
}
.plan-and-picture table .modify-header {
  text-align: center;
}
.plan-and-picture table .edit-row {
  height: 64px;
  border-top: 1px solid #c1c1c1;
}
.plan-and-picture table .edit-row:last-child {
  border-bottom: 1px solid #c1c1c1;
}
.plan-and-picture table td {
  vertical-align: middle;
  padding: 0 10px;
}
.plan-and-picture table td:first-child {
  width: 80%;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan-and-picture table td:last-child {
  width: 30%;
  text-align: right;
  white-space: nowrap;
}
.plan-and-picture .button {
  margin-left: 10px;
  vertical-align: middle;
}
.plan-and-picture .button svg {
  width: 20px;
  height: 20px;
}
.plan-and-picture .button:first-child {
  margin-left: 0;
}

@media (min-width: 42.5rem) {
  .dropbox-section .single-action {
    gap: 1rem;
  }
  .dropbox-section .single-action .dropbox-info {
    margin-top: 0.6rem !important;
  }
  .dropbox-section .single-action .dropbox-buttons {
    flex: none;
  }
}

.star-rating {
  display: inline-block;
}

.star-rating-input {
  display: none;
}

.star-rating-star {
  cursor: pointer;
  color: #ccc;
  /* Color of unselected stars */
  font-size: 1.5em;
}

.star-rating-star.filled {
  color: var(--color-black);
}

.star-rating p {
  margin-top: 8px;
}

#edit-package {
  padding-bottom: 3.75rem;
}
#edit-package #step-controls {
  justify-content: center;
}
#edit-package section {
  /* Job Tags block */
}
#edit-package section.form-tags fieldset.border.compact {
  padding-top: 0.5rem;
}
#edit-package section.form-tags .tags-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
  margin: 0 0 0.5rem 0;
}
#edit-package section.form-tags .tags-title .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
#edit-package section.form-tags .tags-title .icon svg {
  display: block;
}
#edit-package section.outlined {
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
#edit-package section.collapsed {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 42.5rem) {
  #edit-package section.collapsed {
    flex-direction: row;
  }
}
#edit-package section.collapsed h2 {
  margin-bottom: 0;
}
#edit-package section.collapsed h2 .count {
  font-weight: var(--font-weight--regular);
  font-size: var(--font-size--body-m);
  color: var(--color-grey--600);
}
@media (min-width: 42.5rem) {
  #edit-package section.collapsed .button-group {
    margin-left: auto;
  }
}
#edit-package section.form-covers {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 42.5rem) {
  #edit-package section.form-covers {
    flex-direction: row;
  }
}
#edit-package section.form-covers fieldset {
  width: 100%;
}
#edit-package section.form-covers fieldset legend {
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 0.125rem solid var(--color-grey--300);
  margin-bottom: 1.25rem;
}

section.outlined {
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
}
section.collapsed {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
section.collapsed .form-field {
  margin-bottom: 0;
}
@media (min-width: 42.5rem) {
  section.collapsed {
    flex-direction: row;
  }
}
section.collapsed h2 {
  margin-bottom: 0;
}
section.collapsed h2 .count {
  font-weight: var(--font-weight--regular);
  font-size: var(--font-size--body-m);
  color: var(--color-grey--600);
}
@media (min-width: 42.5rem) {
  section.collapsed .button-group {
    margin-left: auto;
  }
}

#edit-files {
  padding-bottom: 3.75rem;
}
#edit-files #step-controls {
  justify-content: center;
}
#edit-files section {
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  flex-direction: column;
}
#edit-files section header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 42.5rem) {
  #edit-files section header {
    flex-direction: row;
  }
}
#edit-files section header h2 {
  margin-bottom: 0;
}
#edit-files section header h2 .count {
  font-weight: var(--font-weight--regular);
  font-size: var(--font-size--body-m);
  color: var(--color-grey--600);
}
@media (min-width: 42.5rem) {
  #edit-files section header .button-group {
    margin-left: auto;
  }
}
#edit-files section .uploaded-files {
  padding-top: 2rem;
}
#edit-files section .uploaded-files fieldset {
  margin-bottom: 0;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 1.5rem;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file {
  position: relative;
  align-self: stretch;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox] {
  position: absolute;
  top: 0;
  left: -999rem;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  opacity: 0;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox]:focus-visible + label {
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300), 0 0 0 0.125rem var(--color-white), 0 0 0 0.25rem var(--color-yellow--500);
  border-radius: 0;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox]:checked + label::before {
  content: "";
  background: var(--color-black) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  color: var(--color-white);
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox].indeterminate:checked + label::before {
  content: "";
  background: var(--color-black) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  color: var(--color-white);
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox].indeterminate:not(:checked) + label::before {
  content: "";
  background: none;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox]:checked:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox]:checked:disabled + label::before {
  content: "";
  background: var(--color-grey--200) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0 transparent;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox]:disabled + label {
  color: var(--color-grey--400);
  cursor: not-allowed;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file input[type=checkbox]:disabled + label::before {
  content: "";
  background: var(--color-grey--200) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0 transparent;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  cursor: pointer;
  min-height: 4.125rem;
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  transition: 150ms ease box-shadow;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label#label-cover-image::before {
  display: none;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  background-color: var(--color-white);
  border-radius: 0.25rem;
  transition: 150ms ease background-color, 150ms ease box-shadow;
  cursor: pointer;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label:hover {
  box-shadow: 0 0 0 0.0625rem var(--color-black);
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label:hover::before {
  content: "";
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  transition: 150ms ease background-color, 150ms ease box-shadow;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label .uploaded-file__preview {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3/2;
  background: var(--color-grey--100);
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label .uploaded-file__preview:has(img) {
  background: transparent;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label .uploaded-file__preview:has(img) img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
}
#edit-files section .uploaded-files fieldset .uploaded-file-grid .uploaded-file label .uploaded-file__name {
  padding: 0.5rem;
  font-size: 0.75rem;
  word-break: break-all;
  hyphens: auto;
}

/* LC: folder & images scss */
header.button-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
header.button-row .form-field {
  margin-bottom: 0;
}

figure.upload-file {
  position: relative;
  align-self: stretch;
}
figure.upload-file input {
  position: absolute;
  top: 0;
  left: -999rem;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  opacity: 0;
}
figure.upload-file input[type=checkbox]:checked + label::before {
  content: "";
  background: var(--color-black) url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K) no-repeat center center/1.25rem 1.25rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  color: var(--color-white);
}
figure.upload-file label {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  cursor: pointer;
  min-height: 4.125rem;
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  transition: 150ms ease box-shadow;
}
figure.upload-file label::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--400);
  background-color: var(--color-white);
  border-radius: 0.25rem;
  transition: 150ms ease background-color, 150ms ease box-shadow;
  cursor: pointer;
}
figure.upload-file label:hover {
  box-shadow: 0 0 0 0.0625rem var(--color-black);
}
figure.upload-file label:hover::before {
  content: "";
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  transition: 150ms ease background-color, 150ms ease box-shadow;
}

.dropbox-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 42.5rem) {
  .dropbox-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
.dropbox-section .form-field.text-input {
  flex: 1;
  margin-bottom: 0;
}
.dropbox-section .dropbox-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 42.5rem) {
  .dropbox-section .dropbox-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-shrink: 0;
    padding-top: 1.75rem;
  }
}
.dropbox-section .dropbox-actions .dropbox-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 42.5rem) {
  .dropbox-section .dropbox-actions .dropbox-buttons {
    flex-direction: row;
    gap: 1rem;
    width: auto;
  }
}
.dropbox-section .dropbox-actions .dropbox-buttons .button-m {
  width: 100%;
  justify-content: center;
}
@media (min-width: 42.5rem) {
  .dropbox-section .dropbox-actions .dropbox-buttons .button-m {
    width: auto;
    min-width: 140px;
  }
}
.dropbox-section .dropbox-actions .dropbox-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 42.5rem) {
  .dropbox-section .dropbox-actions .dropbox-info {
    justify-content: flex-start;
  }
}
.dropbox-section .dropbox-actions .dropbox-info .fz-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0;
  color: var(--color-grey--600);
  transition: color 150ms ease;
}
.dropbox-section .dropbox-actions .dropbox-info .fz-info .text {
  text-decoration: underline;
}
.dropbox-section .dropbox-actions .dropbox-info .fz-info:hover {
  color: var(--color-black);
  text-decoration: none;
}
.dropbox-section .dropbox-actions .dropbox-info .fz-info .icon {
  display: flex;
  align-items: center;
}
.dropbox-section .dropbox-actions .dropbox-info .fz-info .icon svg {
  width: 20px;
  height: 20px;
}
.dropbox-section .dropbox-actions .dropbox-info .fz-info .text {
  font-size: 0.875rem;
  margin-top: 0;
}

.fz-pp {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 100%;
  transition: max-width 0.35s ease, opacity 0.3s ease;
}
.fz-pp .fz-pp-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--color-grey--50);
}
.fz-pp .fz-pp-preview {
  display: flex;
  overflow: hidden;
  width: 0;
  max-width: 0;
  opacity: 1;
  justify-content: center;
  background-color: var(--color-grey--100);
  transition: max-width 0.25s ease, opacity 0.3s ease;
}
.fz-pp .fz-pp-preview.is-visible {
  width: 100%;
  max-width: 100% !important;
}
.fz-pp .fz-pp-drawing-module {
  max-width: 100%;
  transition: max-width 0.25s ease;
}
.fz-pp.is-preview-visible .fz-pp-content {
  gap: 0.6rem;
}
.fz-pp .fz-pp-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: 0.6rem;
  border: 1px solid var(--color-grey--300);
  border-radius: 0 0 12px 12px;
}
.fz-pp .fz-pp-preview-module,
.fz-pp .fz-pp-drawing-module {
  position: relative;
}
.fz-pp .fz-pp-preview-module img,
.fz-pp .fz-pp-drawing-module img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/11;
}
.fz-pp .fz-pp-drawing-module {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  border: 1px solid var(--color-grey--300);
}
.fz-pp .fz-pp-brand {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.6rem 0.6rem 0;
  color: var(--color-off-black);
  background-color: var(--color-white);
  border: 1px solid var(--color-grey--300);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  z-index: 3;
}
.fz-pp .fz-pp-brand .fz-pp-title {
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  background: var(--color-white);
  padding: 0 0.5rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fz-pp .fz-pp-brand .fz-pp-title h2 {
  color: var(--color-grey--900);
  margin: 0;
  padding: 0.2rem 0;
}
.fz-pp .fz-pp-brand .fz-pp-title p {
  color: var(--color-grey--700);
  font-size: 0.775rem;
  font-weight: 700;
  margin: 0;
}
.fz-pp .fz-pp-brand .fz-pp-title em {
  color: var(--color-grey--500);
  font-size: 0.775rem;
  font-weight: 500;
}
.fz-pp .fz-pp-brand .fz-pp-subnav {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}
.fz-pp .fz-pp-brand .fz-pp-subnav .button-group {
  display: flex;
  gap: 0.2rem;
}
.fz-pp .fz-pp-nav {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.6rem;
  column-gap: 1rem;
  padding: 1rem 0 0.4rem 0;
}
.fz-pp .fz-pp-nav label {
  font-size: var(--font-size--body-xs);
  color: var(--color-grey--900);
}
.fz-pp .fz-pp-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}
.fz-pp .fz-pp-dropdown select {
  width: 94px;
  font-size: var(--font-size--body-xs);
}
.fz-pp .fz-pp-dropdown select {
  width: 94px;
  font-size: 0.775rem;
}
.fz-pp .fz-pp-inline-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.fz-pp .fz-pp-inline-buttons label {
  margin-right: 0.2rem;
}
.fz-pp .button-group {
  gap: 0.6rem;
}
.fz-pp .button-group.button-toggle .button-toggle-start {
  border-radius: 0.5rem 0 0 0.5rem;
}
.fz-pp .button-group.button-toggle .button-toggle-middle {
  border: 1px solid var(--color-black);
  border-radius: 0;
  border-right: 0;
  border-left: 0;
  box-shadow: none;
}
.fz-pp .button-group.button-toggle .button-toggle-end {
  border-radius: 0 0.5rem 0.5rem 0;
}
.fz-pp .button-group.button-toggle .button-toggle-start.active,
.fz-pp .button-group.button-toggle .button-toggle-middle.active,
.fz-pp .button-group.button-toggle .button-toggle-end.active {
  color: var(--color-white);
  background-color: var(--color-off-black);
}
.fz-pp .button-group.button-dropdown {
  gap: 0.6rem;
}
.fz-pp .button-group.button-edit {
  gap: 0.2rem;
}
.fz-pp .fz-pp-drawing-nav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}
.fz-pp .button-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fz-pp .button-group-vertical button {
  font-weight: 700;
  font-size: 1.2rem;
  width: 2rem;
  height: 2rem;
  padding: 0.6rem;
  border: 2px solid var(--color-off-black);
  box-shadow: none;
}
.fz-pp .button-group-vertical .button-toggle-top {
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
}
.fz-pp .button-group-vertical .button-toggle-bottom {
  border-radius: 0 0 8px 8px;
}
.fz-pp .button-edit button .icon-add {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 42.5rem) {
  .fz-pp .fz-pp-content {
    flex-direction: row;
  }
  .fz-pp .fz-pp-preview.is-visible {
    max-width: 50%;
  }
  .fz-pp .fz-pp-preview.is-visible ~ .fz-pp-drawing-module {
    max-width: 50%;
  }
}
@media (min-width: 50rem) {
  .fz-pp .fz-pp-brand {
    padding: 0 0.6rem;
  }
}
.fz-combo,
.fz-combo-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2rem;
  position: relative;
}

.fz-combo.fz-open > .fz-combo-input {
  box-shadow: inset 0 0 0 0.0925rem var(--color-black);
}

.fz-open > .button-icon {
  box-shadow: inset 0 0 0 0.0925rem var(--color-black);
}

.fz-combo-input {
  cursor: pointer;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-family--body);
  font-size: 0.775rem;
  font-weight: 600;
  appearance: none;
  width: 112px;
  height: 2rem;
  padding: 0 2rem 0 0.75rem;
  background-color: var(--color-white);
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
  border: 0;
  box-shadow: inset 0 0 0 0.0625rem var(--color-black);
  border-radius: 0.5rem;
}
.fz-combo-input .fz-title-select {
  width: 94px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fz-combo-input:focus-visible {
  border-width: 2px;
  cursor: pointer;
  outline: 0.125rem solid var(--color-yellow--500);
  outline-offset: 0.25rem;
}

.fz-combo-icon .fz-combo-menu {
  min-width: 148px;
  left: 0;
}

.fz-combo-menu {
  display: none;
  min-width: 216px;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 0.675rem;
  overflow: hidden;
  position: absolute;
  left: 1.6rem;
  top: 2.2rem;
  width: 100%;
  z-index: 10;
}
.fz-combo-menu.fz-combo-last {
  left: inherit;
  right: 0;
}

.fz-open .fz-combo-menu {
  display: block;
}

.fz-combo-option {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem;
  font-size: var(--font-size--body-xs);
  line-height: 1.2;
  word-break: break-all;
}

.fz-combo-option:hover {
  background-color: var(--color-grey--50);
}

.fz-combo-option.option-current {
  cursor: pointer;
  border-width: 2px;
  background-color: var(--color-grey--100);
}

@media (max-width: 48rem) {
  #edit-combo {
    gap: 0.6rem;
  }
}
#package-container {
  z-index: 1;
}

#package-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 50rem) {
  #package-title {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
  }
}
#package-title h1 {
  margin-bottom: 0;
}
#package-title .button-group {
  flex-shrink: 0;
}
@media (min-width: 50rem) {
  #package-title .button-group {
    margin-left: auto;
  }
}
#package-title.nowrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 50rem) {
  #package-title.nowrap {
    gap: 2rem;
  }
}
#package-title.nowrap .button-group {
  margin-left: auto;
}

.package-detail-container {
  display: flex;
  flex-direction: column;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
  padding-bottom: 6.25rem;
}
@media (min-width: 50rem) {
  .package-detail-container {
    flex-direction: row;
    column-gap: 3rem;
  }
}
.package-detail-container > .video {
  max-width: 100%;
}
.package-detail-container > .video > h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 0.6rem 1rem;
  padding: 0 0.6rem;
  display: inline-block;
  background-color: var(--color-white);
}
@media (min-width: 50rem) {
  .package-detail-container > .video {
    max-width: 20rem;
  }
}
.package-detail-container > .video video {
  max-width: 100%;
  width: 100%;
  max-height: 20rem;
  position: relative;
  padding: 0 1rem 0.6rem 1rem;
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 8px;
  padding: 1rem;
  margin: -1rem 0 0;
  max-width: 100%;
}
@media (min-width: 50rem) {
  .package-detail-container > .video video {
    max-width: 20rem;
    max-height: 100%;
  }
}
.package-detail-container > .content {
  flex: 1;
  padding-bottom: 2rem;
}
.package-detail-container > .content .form-tags fieldset.border.compact {
  padding-top: 0.5rem;
}
.package-detail-container > .content .form-tags .tags-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
  margin: 0 0 0.5rem 0;
}
.package-detail-container > .content .form-tags .tags-title .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
.package-detail-container > .content .form-tags .tags-title .icon svg {
  display: block;
}
.package-detail-container > .content .card-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.package-detail-container > .content .card-container .card {
  color: var(--color-black);
  text-decoration: none;
  text-align: center;
  padding: 0.6rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: 150ms ease box-shadow, 150ms ease background-color, 150ms ease color, 150ms ease transform;
}
.package-detail-container > .content .card-container .card.disabled {
  color: var(--color-grey--400);
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.6;
  pointer-events: none;
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.08);
}
.package-detail-container > .content .card-container .card:hover {
  text-decoration: underline;
  color: var(--color-black--800);
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.35);
}
.package-detail-container > .content .card-container .card:focus {
  text-decoration: underline;
}
.dark-mode .package-detail-container > .content .card-container .card {
  background-color: var(--color-grey--900);
}
.package-detail-container > .content .card-container .card .icon img {
  width: 3rem;
  height: 3rem;
}
.package-detail-container > .content .card-container .card .label {
  line-height: 1.25;
}
.package-detail-container > .content .tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.package-detail-container > .content .tag-container .tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  margin: 0;
  padding: 0 0.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 0.75rem;
  line-height: 1;
}
.package-detail-container > .content #package-detail-files h2,
.package-detail-container > .content #package-detail-scope h2,
.package-detail-container > .content #package-detail-start h2 {
  color: var(--color-grey--800);
}
.package-detail-container > .content #package-detail-files p,
.package-detail-container > .content #package-detail-scope p,
.package-detail-container > .content #package-detail-start p {
  color: var(--color-grey--600);
}

.package-files-container {
  padding-bottom: 3rem;
}

.cad-viewer {
  width: 100%;
  background-color: var(--color-grey--100);
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--200);
  padding: 1.5rem;
}
.cad-viewer iframe {
  width: 100%;
  min-height: 45rem;
}
.cad-viewer .alert-container {
  display: flex;
}
@media (min-width: 50rem) {
  .cad-viewer .alert-container {
    display: none;
  }
}

/* Added by LC */
.cad-viewer {
  position: relative;
  width: 100%;
}
.cad-viewer .loading-screen {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
}

/* Added by LC */
#create-folders {
  padding-bottom: 3.75rem;
}
#create-folders .folder-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1rem;
}
#create-folders .folder-title h2, #create-folders .folder-title h3 {
  margin-bottom: 0;
}
#create-folders > fieldset {
  padding-bottom: 0.5rem;
}
#create-folders section section:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 50rem) {
  #create-folders .folder-title {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
  }
}
#create-folders section {
  margin-bottom: 1rem;
}
@media (min-width: 50rem) {
  #create-folders section {
    margin-bottom: 2rem;
  }
}

section.outlined,
div.outlined {
  box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
section.form-covers,
div.form-covers {
  display: flex;
  flex-direction: column;
  column-gap: 1.25rem;
}
@media (min-width: 42.5rem) {
  section.form-covers,
  div.form-covers {
    flex-direction: row;
  }
}
section.form-covers fieldset,
div.form-covers fieldset {
  width: 100%;
}
section.form-covers fieldset legend,
div.form-covers fieldset legend {
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 0.125rem solid var(--color-grey--300);
  margin-bottom: 1.25rem;
}

/* Rating system */
.package-rating {
  display: flex;
  font-size: var(--font-size--body-s);
  margin-bottom: 0px;
}

.rating-modal .modal__action {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

#homefeed-container {
  padding-bottom: 3rem;
}

#homefeed-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 37.5rem) {
  #homefeed-title {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
}
#homefeed-title h1 {
  margin-bottom: 0;
}
@media (min-width: 37.5rem) {
  #homefeed-title .button-group {
    margin-left: auto;
  }
}

.homefeed--details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}
@media (min-width: 37.5rem) {
  .homefeed--details {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}
.homefeed--details .homefeed--details__quantity p {
  margin-bottom: 0;
}
.homefeed--details .homefeed--details__quantity .count {
  font-weight: var(--font-weight--bold);
}
@media (min-width: 37.5rem) {
  .homefeed--details .homefeed--details__sort {
    margin-left: auto;
  }
}
.homefeed--details .homefeed--details__sort .select {
  margin-bottom: 0;
}
.homefeed--details .homefeed--details__sort .select select {
  width: auto;
}

#homefeed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#homefeed .homefeed-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--color-grey--300);
}
@media (min-width: 37.5rem) {
  #homefeed .homefeed-item {
    flex-direction: row;
    gap: 3rem;
    /* Ensure both sides (content/image) stretch to equal height
       and the item uses the full available width on desktop */
    align-items: stretch;
  }
}
#homefeed .homefeed-item .homefeed-item__content {
  width: 100%;
  order: 2;
}
@media (min-width: 37.5rem) {
  #homefeed .homefeed-item .homefeed-item__content {
    order: 1;
    /* Let the content column take remaining space so long titles
       don't prevent the item from using the full width */
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
}
#homefeed .homefeed-item .homefeed-item__content h2 {
  margin-bottom: 0.75rem;
}
#homefeed .homefeed-item .homefeed-item__content h3 {
  margin-bottom: 0.5rem;
}
#homefeed .homefeed-item .homefeed-item__image {
  order: 1;
  max-width: 100%;
  position: relative;
}
@media (min-width: 37.5rem) {
  #homefeed .homefeed-item .homefeed-item__image {
    order: 2;
    /* Fix the image column width so content uses the rest without
       pushing or shrinking the image */
    width: 33.3333333333%;
    max-width: 33.3333333333%;
    flex-shrink: 0;
  }
}
#homefeed .homefeed-item .homefeed-item__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 16/10;
}
#homefeed .homefeed-item .homefeed-item__image .image-count {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0.75rem;
  color: var(--color-white);
  transform: translateX(-50%);
}

#invite-network form {
  margin-bottom: 3.75rem;
}
#invite-network .emails {
  max-width: var(--break-small);
}

#fazzad-profile form {
  margin-bottom: 3.75rem;
}
#fazzad-profile #step-controls {
  justify-content: center;
}

/* Add this section to scss file: Value prop */
.value-video {
  cursor: pointer;
  max-width: 480px;
  width: 100%;
}

.fz-value {
  background-color: var(--color-grey--50);
}

.fz-full-width {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fz-full-width.fz-value {
  background-color: var(--color-grey--50);
}
.fz-full-width #page-title {
  padding: 2rem 2rem 0 2rem;
  margin: 0;
  text-align: center;
}
.fz-full-width .fz-banner {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  max-width: 1312px;
}
.fz-full-width .fz-banner .value-prop {
  display: block;
  justify-content: space-between;
  gap: 1rem;
}
.fz-full-width .fz-banner .value-prop .value-item {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.fz-full-width .fz-banner .value-prop .value-item .description h3, .fz-full-width .fz-banner .value-prop .value-item .description h5 {
  text-align: center;
}
.fz-full-width .fz-banner .value-prop .value-item ul {
  padding-left: 2rem;
}
.fz-full-width .fz-banner .value-prop .value-item ul li {
  list-style-type: disc;
}
.fz-full-width .fz-banner .value-prop .value-item .fz-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-grey--900);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  padding: 0.6rem;
  margin: 0 0 0.6rem;
  color: var(--color-white);
  font-weight: var(--font-weight--bold);
}
@media screen and (min-width: 640px) {
  .fz-full-width .fz-banner .value-prop {
    display: flex;
  }
  .fz-full-width .fz-banner .value-prop .value-item {
    width: 33.3%;
  }
}

.wrapper-featured {
  padding: 2rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
.wrapper-featured .col-featured-description {
  max-width: 100%;
  width: 100%;
}
.wrapper-featured .col-featured-pic {
  max-width: 100%;
  width: 100%;
  position: relative;
  align-self: center;
}
.wrapper-featured .col-featured-pic .featured-pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-featured .col-featured-pic .featured-pic:hover .icon-play-featured {
  color: rgb(255, 255, 255);
}
.wrapper-featured .col-featured-pic .featured-pic .icon-play-featured {
  width: 5rem;
  height: 5rem;
  color: rgba(255, 255, 255, 0.75);
}
.wrapper-featured .col-featured-pic a {
  width: 480px;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  transition: linear 0.2s;
}
.wrapper-featured .col-featured-pic a:hover {
  background-color: rgba(0, 0, 0, 0);
}
.wrapper-featured .col-featured-pic img {
  width: 480px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 2/2;
  border-radius: 50%;
}

@media screen and (min-width: 640px) {
  .wrapper-featured {
    flex-direction: row;
  }
  .wrapper-featured .col-featured-description {
    max-width: 50%;
    width: 100%;
  }
  .wrapper-featured .col-featured-pic {
    max-width: 50%;
    width: 100%;
  }
}
#requirements-container {
  width: 100%;
  max-width: 1312px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 1rem 1rem;
}
#requirements-container .requirements-feed {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.6rem;
}
#requirements-container .requirements-feed .requirements {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border: 1px solid var(--color-grey--200);
  padding: 0.6rem;
  background-color: var(--color-white);
}
#requirements-container .requirements-feed .requirements h3, #requirements-container .requirements-feed .requirements h4, #requirements-container .requirements-feed .requirements h5 {
  margin-bottom: 0.25rem;
}
#requirements-container .requirements-feed .requirements .item-list {
  display: flex;
  flex-direction: column;
}
#requirements-container .requirements-feed .requirements ul {
  padding: 0 0 0 1.6rem;
  margin: 0;
  list-style-type: disc;
}

@media screen and (min-width: 800px) {
  #requirements-container .requirements-feed {
    flex-direction: row;
  }
}
.pro-vendor__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pro-vendor__container .pro-vendor {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0.0625rem solid var(--color-grey--200);
  border-radius: 0.5rem;
  padding: 1rem;
}
.pro-vendor__container .pro-vendor .content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.pro-vendor__container .pro-vendor .content .semibold {
  font-weight: var(--font-weight--semibold);
  padding: 0;
  margin: 0;
}
.pro-vendor__container .pro-vendor .content h3 {
  margin-bottom: 0;
}
.pro-vendor__container .pro-vendor .content .projects-contacted {
  margin-bottom: 0;
}
.pro-vendor__container .pro-vendor .content .projects-contacted li {
  padding: 8px 0;
  border-bottom: 0.0625rem solid var(--color-grey--200);
}
.pro-vendor__container .pro-vendor .content .projects-contacted li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.pro-vendor__container .pro-vendor .content .projects-contacted h3, .pro-vendor__container .pro-vendor .content .projects-contacted p {
  margin-bottom: 0;
}
.pro-vendor__container .pro-vendor .content .projects-contacted .separator {
  border-bottom: 0.125rem solid var(--color-grey--200);
}
.pro-vendor__container .pro-vendor .content .inline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0;
}
.pro-vendor__container .pro-vendor .content .inline .inline-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}
.pro-vendor__container .pro-vendor .content .inline .inline-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
}
.pro-vendor__container .pro-vendor .content .inline .inline-buttons .inline-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-shrink: inherit;
  align-items: center;
}
.pro-vendor__container .pro-vendor .content .inline .inline-buttons .inline-title small {
  color: var(--color-grey--400);
}
.pro-vendor__container .pro-vendor .content .inline button {
  height: auto;
  padding: 0.2rem;
  color: var(--color-black);
  background-color: var(--color-grey--200);
}
.pro-vendor__container .pro-vendor .content .inline button:hover {
  color: var(--color-white);
  background-color: var(--color-grey--900);
}
.pro-vendor__container .pro-vendor .content .inline small {
  font-size: 0.8rem;
}
.pro-vendor__container .pro-vendor .content .inline h3, .pro-vendor__container .pro-vendor .content .inline .h4, .pro-vendor__container .pro-vendor .content .inline .h5 {
  margin-bottom: 0;
}
.pro-vendor__container .pro-vendor .content .inline p {
  margin-bottom: 0;
  padding: 0;
}
.pro-vendor__container .pro-vendor .content .inline .pro-vendor__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding: 0;
}
@media screen and (min-width: 480px) {
  .pro-vendor__container .pro-vendor .content .inline {
    align-items: center;
    flex-direction: row;
  }
}
.pro-vendor__container .pro-vendor .content h4, .pro-vendor__container .pro-vendor .content h5, .pro-vendor__container .pro-vendor .content p {
  margin-bottom: 0;
  padding: 0;
}
.pro-vendor__container .pro-vendor .content hr {
  border-top: 0.125rem solid var(--color-grey--200);
  border-bottom: none;
  width: 100%;
}

@media screen and (min-width: 640px) {
  .pro-vendor__container .pro-vendor .content .inline {
    flex-direction: row;
    gap: 2rem;
  }
}
/* Mar 2, 2024 Partner logos */
.partner-container {
  width: 100%;
  max-width: 1920px;
  display: flex;
}
.partner-container ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.partner-container ul li {
  padding: 0 1rem;
  width: 20%;
  display: flex;
  justify-content: center;
}
.partner-container ul li img {
  max-width: 64px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .partner-container ul {
    display: flex;
  }
  .partner-container ul li {
    width: auto;
  }
}

/* Mar 2, 2024 Paypal adjustment */
.form-details .inline {
  display: flex;
  flex-direction: row;
  align-items: top;
  gap: 1rem;
}
.form-details .inline img {
  margin-top: 0.3rem;
  max-width: 75px;
  width: 100%;
  height: 100%;
}

.selected-filter {
  background-color: #7336dc; /* Bootstrap primary color for example */
  color: white; /* Text color */
  padding: 2px 6px; /* Padding around the text */
  border-radius: 4px; /* Rounded corners */
}

.signup-step-tag {
  position: absolute;
  left: 32px;
}

@media screen and (max-width: 640px) {
  .signup-step-tag {
    position: relative;
    left: 0;
  }
  .package-name {
    font-size: var(--font-size--body-m);
  }
}
#home-intro {
  display: flex;
  flex-direction: column;
}
@media (min-width: 50rem) {
  #home-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
#home-intro .content {
  padding: 2rem;
  width: 100%;
  display: block;
  align-self: center;
}
@media (min-width: 50rem) {
  #home-intro .content {
    padding: 2rem 4rem;
  }
}
#home-intro .image {
  width: 100%;
}
#home-intro .image img {
  object-fit: cover;
  object-position: top left;
  width: 100%;
  height: 100%;
  display: block;
}

#home-what {
  background-color: var(--color-grey--50);
}
#home-what .inner {
  display: flex;
  align-items: flex-start;
}
#home-what .inner .content {
  text-align: center;
  padding: 2rem;
  width: 100%;
  display: block;
  align-self: center;
}
@media (min-width: 50rem) {
  #home-what .inner .content {
    padding: 4rem 8rem 4rem 8rem;
  }
}
#home-what .inner .content h2 {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
}
#home-what .inner .content h2::after {
  content: "";
  position: absolute;
  width: 6.875rem;
  height: 0.0625rem;
  background-color: var(--color-grey--300);
  display: block;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
}
#home-what .inner .content .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
  justify-content: center;
}
#home-what .inner .content .card-container .card {
  text-align: center;
  padding: 1rem 1rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: calc(33.3333333333% - 3rem);
  min-width: 8rem;
}
#home-what .inner .content .card-container .card .label {
  line-height: 1.25;
}
#home-what .inner .content .button-group {
  justify-content: center;
  padding-top: 1.5rem;
}
#home-what .inner .image {
  padding: 4rem 0 0 8rem;
  display: none;
}
@media (min-width: 50rem) {
  #home-what .inner .image {
    display: block;
  }
}
#home-what .inner .image img {
  width: 100%;
  max-width: 100%;
}

#home-steps {
  background-color: var(--color-grey--100);
  padding: 2rem;
}
@media (min-width: 50rem) {
  #home-steps {
    padding: 4rem;
  }
}
#home-steps .inner {
  max-width: 50rem;
  margin: 0 auto;
}
#home-steps .inner > .content {
  text-align: center;
  margin-bottom: 3rem;
}
#home-steps .inner > .content h2 {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
}
#home-steps .inner > .content h2::after {
  content: "";
  position: absolute;
  width: 6.875rem;
  height: 0.0625rem;
  background-color: var(--color-grey--300);
  display: block;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
}
#home-steps .inner .home-steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#home-steps .inner .home-steps-container .home-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 50rem) {
  #home-steps .inner .home-steps-container .home-step {
    flex-direction: row;
    gap: 2rem;
  }
}
#home-steps .inner .home-steps-container .home-step .content {
  max-width: 30rem;
}
#home-steps .inner .home-steps-container .home-step .content h3 {
  margin-bottom: 0.75rem;
}
#home-steps .inner .home-steps-container .home-step.alt .image {
  order: 1;
}
#home-steps .inner .home-steps-container .home-step.alt .content {
  order: 2;
}
@media (min-width: 50rem) {
  #home-steps .inner .home-steps-container .home-step.alt .image {
    order: 2;
  }
  #home-steps .inner .home-steps-container .home-step.alt .content {
    order: 1;
  }
}

#home-why {
  display: flex;
  flex-direction: column;
  background-color: var(--color-grey--50);
}
@media (min-width: 50rem) {
  #home-why {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
#home-why .content {
  padding: 2rem;
  width: 100%;
  display: block;
  align-self: center;
  text-align: center;
}
@media (min-width: 50rem) {
  #home-why .content {
    padding: 2rem 4rem;
  }
}
#home-why .content h2 {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
}
#home-why .content h2::after {
  content: "";
  position: absolute;
  width: 6.875rem;
  height: 0.0625rem;
  background-color: var(--color-grey--300);
  display: block;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
}
#home-why .video {
  width: 100%;
  padding: 0 2rem 2rem 2rem;
}
@media (min-width: 50rem) {
  #home-why .video {
    padding: 4rem;
  }
}
#home-why .video iframe {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}

#home-articles {
  padding: 2rem;
}
@media (min-width: 50rem) {
  #home-articles {
    padding: 4rem;
  }
}
#home-articles .inner .content h2 {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}
#home-articles .inner .content h2::after {
  content: "";
  position: absolute;
  width: 6.875rem;
  height: 0.0625rem;
  background-color: var(--color-grey--300);
  display: block;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
}
#home-articles .inner .content .article-container {
  padding: 1rem 0;
  max-width: var(--break-large);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 1.25rem;
}
#home-articles .inner .content .article-container .article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
}
#home-articles .inner .content .article-container .article .text {
  line-height: 1.5;
  text-decoration: none;
}
#home-articles .inner .content .article-container .article:hover .text {
  text-decoration: underline;
}

#home-cta,
#surveyor-cta {
  background-color: var(--color-blue--700);
  padding: 2rem;
}
@media (min-width: 50rem) {
  #home-cta,
  #surveyor-cta {
    padding: 2rem 4rem;
  }
}
#home-cta .inner,
#surveyor-cta .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--break-large);
  margin: 0 auto;
}
@media (min-width: 50rem) {
  #home-cta .inner,
  #surveyor-cta .inner {
    flex-direction: row;
    gap: 3rem;
  }
}
#home-cta .inner .content,
#surveyor-cta .inner .content {
  text-align: center;
}
@media (min-width: 50rem) {
  #home-cta .inner .content,
  #surveyor-cta .inner .content {
    text-align: left;
  }
}
#home-cta .inner .content h3,
#surveyor-cta .inner .content h3 {
  color: var(--color-white);
}
#home-cta .inner .content .button-group,
#surveyor-cta .inner .content .button-group {
  justify-content: center;
}
@media (min-width: 50rem) {
  #home-cta .inner .content .button-group,
  #surveyor-cta .inner .content .button-group {
    justify-content: flex-start;
  }
}

#surveyor-title {
  padding: 2rem;
}
@media (min-width: 50rem) {
  #surveyor-title {
    padding: 4rem;
  }
}
#surveyor-title h1 {
  margin-bottom: 0;
  text-align: center;
}

#surveyor-steps {
  background-color: var(--color-blue--100);
  padding: 2rem;
}
@media (min-width: 50rem) {
  #surveyor-steps {
    padding: 3rem 4rem;
  }
}
#surveyor-steps h2 {
  text-align: center;
}
#surveyor-steps .surveyor-steps-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 50rem) {
  #surveyor-steps .surveyor-steps-container {
    flex-direction: row;
    max-width: 64rem;
    margin: 0 auto;
    gap: 1.5rem;
  }
}
#surveyor-steps .surveyor-steps-container .surveyor-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  gap: 1.25rem;
}
@media (min-width: 50rem) {
  #surveyor-steps .surveyor-steps-container .surveyor-step {
    width: 33.3333333333%;
  }
}
#surveyor-steps .surveyor-steps-container .surveyor-step .number {
  font-size: 1.5rem;
  font-weight: var(--font-weight--bold);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-blue--500);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
#surveyor-steps .surveyor-steps-container .surveyor-step .description {
  max-width: 50ch;
}

#surveyor-map {
  background-color: var(--color-white);
  padding: 2rem 2rem 0 2rem;
}
@media (min-width: 50rem) {
  #surveyor-map {
    padding: 4rem 4rem 1rem 4rem;
  }
}
#surveyor-map .inner {
  max-width: 80rem;
  margin: 0 auto;
}
#surveyor-map .inner img {
  width: 100%;
  display: block;
}

#surveyor-search {
  background-color: var(--color-white);
  padding: 2rem 2rem 0 2rem;
}
@media (min-width: 50rem) {
  #surveyor-search {
    padding: 2rem 4rem 0 4rem;
  }
}
#surveyor-search .inner {
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 50rem) {
  #surveyor-search .inner form {
    display: flex;
    justify-content: flex-end;
  }
}

#surveyor-list {
  background-color: var(--color-white);
  padding: 0 2rem 2rem 2rem;
}
@media (min-width: 50rem) {
  #surveyor-list {
    padding: 0 4rem 2rem 4rem;
  }
}
#surveyor-list .surveyor-list-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 2rem;
}
#surveyor-list .surveyor-list-container .surveyor-list-item {
  padding: 1.5rem 1.5rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.15);
}
#surveyor-list .surveyor-list-container .surveyor-list-item .surveyor-item__name {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  display: block;
}
#surveyor-list .surveyor-list-container .surveyor-list-item .surveyor-item__description p {
  max-width: 100ch;
}
#surveyor-list .surveyor-list-container .surveyor-list-item .surveyor-item__address > * {
  margin-bottom: 0.25rem;
}
#surveyor-list .surveyor-list-container .surveyor-list-item .surveyor-item__phone > * {
  margin-bottom: 0.25rem;
}

#profile-container {
  padding: 1rem;
  max-width: var(--break-large);
  margin: 0 auto;
}
@media (min-width: 50rem) {
  #profile-container {
    padding: 2rem;
  }
}
#profile-container .profile-grid {
  display: grid;
  column-gap: 3rem;
  row-gap: 1.25rem;
  grid-template-columns: 1fr;
  grid-template-areas: "main" "contact" "testimonials" "reviews";
}
@media (min-width: 50rem) {
  #profile-container .profile-grid {
    grid-template-columns: 15.625rem 1fr;
    grid-template-areas: "contact main" "contact main" "contact testimonials" "contact reviews";
  }
}
#profile-container .profile-grid .profile-content-contact {
  grid-area: contact;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#profile-container .profile-grid .profile-content-contact .surveyor-item__address > * {
  margin-bottom: 0.25rem;
}
#profile-container .profile-grid .profile-content-contact .surveyor-item__address .map {
  padding: 1rem 0 0 0;
  margin-bottom: 0;
}
#profile-container .profile-grid .profile-content-contact .surveyor-item__address .map img {
  width: 100%;
  max-width: 20rem;
  display: block;
}
#profile-container .profile-grid .profile-content-contact .surveyor-item__phone > * {
  margin-bottom: 0.25rem;
}
#profile-container .profile-grid .profile-content-main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__title {
  border-bottom: 0.0625rem solid var(--color-grey--300);
}
#profile-container .profile-grid .profile-content-main .profile-content-main__title .description {
  max-width: 100ch;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__intro {
  padding-bottom: 1rem;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__intro video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 75dvh;
  background-color: var(--color-grey--700);
}
#profile-container .profile-grid .profile-content-main .profile-content-main__portfolio {
  padding-bottom: 1rem;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__portfolio h3 {
  margin-bottom: 0.5rem;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__portfolio .portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1rem;
  padding-bottom: 1rem;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__portfolio .portfolio-container .portfolio-item {
  text-decoration: none;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__portfolio .portfolio-container .portfolio-item img {
  width: 100%;
  display: block;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__expertise {
  padding-bottom: 1rem;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__expertise .expertise-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#profile-container .profile-grid .profile-content-main .profile-content-main__expertise .expertise-container .expertise {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  margin: 0;
  padding: 0 0.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--300);
  border-radius: 0.75rem;
  line-height: 1;
}
#profile-container .profile-grid .profile-content-testimonials {
  grid-area: testimonials;
  padding-bottom: 1rem;
}
#profile-container .profile-grid .profile-content-testimonials h3 {
  margin-bottom: 0.5rem;
}
#profile-container .profile-grid .profile-content-testimonials .testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1rem;
  padding-bottom: 1rem;
}
#profile-container .profile-grid .profile-content-testimonials .testimonials-container .testimonial-item {
  text-decoration: none;
}
#profile-container .profile-grid .profile-content-testimonials .testimonials-container .testimonial-item img {
  width: 100%;
  display: block;
}
#profile-container .profile-grid .profile-content-reviews {
  grid-area: reviews;
}

#po-container .homefeed-item__image {
  position: absolute;
  z-index: 10;
  top: 18em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 30em;
  height: 100%;
}
#po-container.po-freelead .file-group .file-container {
  padding: 0;
  margin-bottom: 0.3rem;
}
#po-container.pro-freelead .file-group {
  border-bottom: 1px solid var(--color-grey--300);
}
#po-container.pro-freelead .file-group .file-container {
  padding: 0;
  box-shadow: 0px 0px 4px 2px rgba(200, 200, 200, 0.45);
}

.po-feed-tabs,
.pro-feed-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 50rem) {
  .po-feed-tabs,
  .pro-feed-tabs {
    margin-bottom: 2rem;
  }
}
.po-feed-tabs.back,
.pro-feed-tabs.back {
  justify-content: flex-start;
}
.po-feed-tabs ul,
.pro-feed-tabs ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}
.po-feed-tabs ul li,
.pro-feed-tabs ul li {
  font-size: var(--font-size--body-m);
  font-weight: var(--font-weight--semibold);
  white-space: nowrap;
}
.po-feed-tabs ul li a.button,
.pro-feed-tabs ul li a.button {
  text-decoration: none;
  position: relative;
  background-color: transparent;
  color: var(--color-grey--500);
  font-weight: 600;
}
.po-feed-tabs ul li a.button:hover,
.pro-feed-tabs ul li a.button:hover {
  color: var(--color-grey--300);
  background-color: transparent;
}
.po-feed-tabs ul li.current a,
.pro-feed-tabs ul li.current a {
  text-decoration: none;
  color: var(--color-white);
}

#po-feed-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 6.25rem;
}
#po-feed-container .po-feed-item {
  border-top: 0.0625rem solid var(--color-grey--900);
}
#po-feed-container .po-feed-item:first-child {
  padding-top: 0;
  border-top: 0;
}
#po-feed-container .po-feed-item .video {
  width: 100%;
  background-color: var(--color-black);
}
#po-feed-container .po-feed-item .video video {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 2/3;
}
#po-feed-container .po-feed-item .video video.video-mode-contain {
  object-fit: contain;
}
#po-feed-container .po-feed-item .content {
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
#po-feed-container .po-feed-item .content .info {
  font-size: 0.875rem;
}
#po-feed-container .po-feed-item .content .info h5 {
  margin-bottom: 0.75rem;
}
#po-feed-container .po-feed-item .content .info h5 a {
  color: var(--color-white);
}
#po-feed-container .po-feed-item .content .info p {
  margin-bottom: 0;
}
#po-feed-container .po-feed-item .content .info a {
  color: var(--color-grey--400);
}
#po-feed-container .po-feed-item .content .info a:hover {
  color: var(--color-grey--200);
}
#po-feed-container .po-feed-item .content .actions {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
#po-feed-container .po-feed-item .content .actions .profile {
  text-decoration: none;
  margin-bottom: 0.5rem;
}
#po-feed-container .po-feed-item .content .actions .profile img {
  width: 100%;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 0.0625rem var(--color-white);
}
#po-feed-container .po-feed-item .content .actions .button {
  text-decoration: none;
  position: relative;
  background-color: transparent;
  color: var(--color-white);
}
#po-feed-container .po-feed-item .content .actions .button:hover {
  color: var(--color-grey--300);
}
#po-feed-container .po-feed-item .content .actions .button.thumb-like {
  background-color: var(--color-blue--400);
}
#po-feed-container .po-feed-item .content .actions .button.like:hover {
  background-color: var(--color-grey--600);
  color: var(--color-white);
}
#po-feed-container .po-feed-item .content .actions .button.delete:hover {
  background-color: var(--color-red--700);
  color: var(--color-white);
}
#po-feed-container.gallery-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.125rem;
}
#po-feed-container.gallery-view .po-feed-item {
  padding-top: 0;
  border-top: 0;
}
#po-feed-container.gallery-view .po-feed-item:first-child {
  padding-top: 0;
  border-top: 0;
}
#po-feed-container.gallery-view .po-feed-item .video-frame {
  width: 100%;
  background-color: var(--color-black);
}
#po-feed-container.gallery-view .po-feed-item .video-frame a {
  width: 100%;
  text-decoration: none;
}
#po-feed-container.gallery-view .po-feed-item .video-frame a img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 2/3;
}
#po-feed-container.gallery-view .po-feed-item .content {
  display: none;
}
#po-feed-container.individual-view .po-feed-item .content .info .additional-content {
  padding-top: 0.75rem;
}

.pro-bio {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 0.0625rem solid var(--color-grey--900);
}
@media (min-width: 50rem) {
  .pro-bio {
    margin-bottom: 1.5rem;
  }
}
.pro-bio .image {
  width: 6.25rem;
}
@media (min-width: 50rem) {
  .pro-bio .image {
    width: 8.5rem;
  }
}
.pro-bio .image img {
  width: 100%;
  display: block;
}
.pro-bio .content {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pro-bio .content h5 {
  margin-bottom: 0.75rem;
}
.pro-bio .content p {
  margin-bottom: 0;
  display: inline-block;
  width: auto;
}
.pro-bio .content p:has(span.copy) {
  position: relative;
}
.pro-bio .content p span.copy {
  position: absolute;
  top: -0.125rem;
  right: -2rem;
}
.pro-bio .content a {
  color: var(--color-grey--400);
}
.pro-bio .content a:hover {
  color: var(--color-grey--200);
}

#pro-title {
  display: block;
  margin-bottom: 2rem;
}
#pro-title h1 {
  margin-bottom: 0;
}
#pro-title p {
  padding-top: 0.5rem;
}

.replies-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 3rem;
}
.replies-container .reply {
  display: flex;
  gap: 1rem;
  border: 0.0625rem solid var(--color-grey--200);
  border-radius: 0.5rem;
  padding: 1rem;
}
.replies-container .reply .image img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.25rem;
}
.replies-container .reply .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
@media (min-width: 37.5rem) {
  .replies-container .reply .content {
    flex-direction: row;
  }
}
.replies-container .reply .content .inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.replies-container .reply .content .inner h3 {
  margin-bottom: 0;
}
.replies-container .reply .content .inner h3 a {
  text-decoration: none;
}
.replies-container .reply .content .inner h3 a:hover {
  text-decoration: underline;
}
.replies-container .reply .content .inner p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.replies-container .reply .content .inner p.action-taken {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.25rem;
}
.replies-container .reply .content .inner p.action-taken .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
.replies-container .reply .content .actions {
  flex-shrink: 0;
}
@media (min-width: 37.5rem) {
  .replies-container .reply .content .actions {
    margin-left: auto;
  }
}

/* Structure */
/* section.folder-group
    /* | .backbone
    /* | .l1
    /* | | .folder-title
    /* | | .file-upload__container
    /* | | | .l2
    /* | | | | .backbone
    /* | | | | .curve
    /* | | | | section.sub-folder
    /* | | | | | | .folder-title
    /* | | | | | | .file-upload__container
    /* | | | | | | | | .l3
    /* | | | | | | | | | | .backbone
    /* | | | | | | | | | | .curve
    /* | | | | | | | | | | | section.sub-folder
    /* | | | | | | | | | | | | .folder-title
    /* | | | | | | | | | | | | .file-upload__container

*/
#folder-wrapper.outlined {
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}
#folder-wrapper .sub-folder {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 640px) {
  #folder-wrapper.outlined {
    box-shadow: 0 0 0 0.0625rem var(--color-grey--300);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.folder-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--color-grey--50);
  box-shadow: inset 0 0 0 0.0625rem var(--color-grey--100);
  padding: 4px 4px 4px 0;
  margin: 0;
}
.folder-title .container-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  padding-top: 0;
  padding-right: 1rem;
  /* Remove button styles */
}
.folder-title .container-title button.button-s.button-icon,
.folder-title .container-title button:hover.button-s.button-icon {
  color: var(--color-purple--700);
  background: transparent;
  padding: 2px;
  box-shadow: none;
}
.folder-title h3 {
  margin: 0;
  padding-top: 6px;
}
.folder-title .button-group {
  padding-left: 32px;
  gap: 0.6rem;
  margin: 0;
  flex-wrap: nowrap;
}

@media (min-width: 425px) {
  .folder-title {
    flex-direction: row;
  }
  .button-group {
    padding-left: 0;
  }
}
.file-upload__container {
  display: flex;
  gap: 0;
}
.file-upload__container .content {
  padding: 8px 0;
}
.file-upload__container .content .form-field {
  margin-bottom: 0;
}
.file-upload__container .content .form-field label {
  margin-bottom: 8px;
}
.file-upload__container .content .form-field p {
  font-size: 0.8rem;
  padding: 0;
  margin-bottom: 0;
}

/* Vertical line work */
.structure .l1 {
  position: relative;
  padding-left: 0;
}
.structure .l2, .structure .l3 {
  display: flex;
  position: relative;
  padding-left: 15px;
}

.vertical-track {
  width: 32px;
  position: relative;
}

.backbone {
  position: absolute;
  z-index: 1;
  height: 100%;
  top: 0;
  left: 15px;
  border-left: 2px solid var(--color-grey--100);
}
.backbone.last, .backbone.no-l {
  border-left: none;
}

.line {
  border-left: 2px solid var(--color-grey--100);
  height: 100%;
  position: absolute;
  top: 0;
  left: 15px;
  right: 0;
}
.line.last {
  border-left: none;
}

.curve {
  min-width: 17px;
  max-width: 24px;
  padding-top: 18px;
  margin-bottom: auto;
  border-bottom: 2px solid var(--color-grey--100);
  border-left: 2px solid var(--color-grey--100);
  border-bottom-left-radius: 8px;
}
.curve.last {
  border-left: none;
  border-bottom: none;
}
