:root {
  --card-bg-color: #F6F6FF;
  --border-color: #B5B5B5;
  --white-color: #FFFFFF;
  --card-shadow: 0 0 20px hsl(from var(--secondary) h s l / 0.1);
  --h3-font-size: 1.25rem;
  --h4-font-size: 1rem;
  --body-font-size: 1rem;
  --body-large-font-size: 1.125rem;
  --primary-font-family: "Montserrat", sans-serif;
  --secondary-font-family: "Lato", sans-serif;
  --header-height: 170px;
}

.expandableDownloadPanel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  gap: 4rem;
}
@media (width <= 992px) {
  .expandableDownloadPanel {
    flex-direction: column;
  }
}
.expandableDownloadPanel__tabs {
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 21.875rem;
  width: min(100%, 21.875rem);
  overflow: hidden;
  max-height: calc(100dvh - 6rem);
  overflow-y: auto;
}
@media (width <= 992px) {
  .expandableDownloadPanel__tabs {
    position: relative;
    flex: 100%;
    width: 100%;
    top: 0;
    flex-direction: row;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow-y: hidden;
    overflow-x: auto;
  }
}
.expandableDownloadPanel__tabs-wrapper {
  position: sticky;
  top: 3rem;
}
@media (width <= 992px) {
  .expandableDownloadPanel__tabs-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    top: 0;
  }
}
.expandableDownloadPanel__carousel-btn {
  display: none;
  position: relative;
  background: hsl(from var(--primary) h s l/0.1);
  color: var(--primary, black);
  border: unset;
  border-radius: 1rem;
  width: 2.5rem;
  height: auto;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  padding: 0;
}
@media (width <= 992px) {
  .expandableDownloadPanel__carousel-btn {
    display: flex;
  }
}
.expandableDownloadPanel__carousel-btn > svg {
  width: 1.125rem;
  height: auto;
}
.expandableDownloadPanel__carousel-btn:hover, .expandableDownloadPanel__carousel-btn:focus {
  background: var(--primary);
  color: var(--white-color, white);
  border: unset;
}
.expandableDownloadPanel__carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.expandableDownloadPanel__carousel-btn--prev:disabled {
  margin-left: -3rem;
}
.expandableDownloadPanel__carousel-btn--next:disabled {
  margin-right: -3rem;
}
.expandableDownloadPanel__tab {
  background: var(--card-bg-color);
  border: none !important;
  border-bottom: thin solid hsl(from var(--border-color) h s l/0.5) !important;
  color: var(--heading, black);
  width: 100%;
  border-radius: 0;
  padding: 2rem 1rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}
@media (width <= 992px) {
  .expandableDownloadPanel__tab {
    flex: 0 0 auto;
    width: min(60%, 220px);
    padding: 1.5rem;
    white-space: normal;
    scroll-snap-align: start;
    border: unset !important;
    border-right: thin solid hsl(from var(--border-color) h s l/0.5) !important;
  }
  .expandableDownloadPanel__tab:last-child {
    border-right: none !important;
  }
}
.expandableDownloadPanel__tab:last-child {
  border-bottom: none !important;
}
.expandableDownloadPanel__tab:hover {
  background: var(--primary, black);
  color: var(--white-color, white);
  text-decoration: none;
}
.expandableDownloadPanel__tab.active {
  background: var(--secondary, black);
  color: var(--white-color, white);
}
.expandableDownloadPanel__tab > h3 {
  font-size: var(--h3-font-size);
  margin: 0;
  color: inherit;
}
@media (width <= 992px) {
  .expandableDownloadPanel__tab > h3 {
    font-size: var(--h4-font-size);
  }
}
.expandableDownloadPanel__tab-content {
  flex: 100%;
  width: 100%;
  display: none;
  gap: 1rem;
}
.expandableDownloadPanel__tab-content.active {
  display: grid;
}
.expandableDownloadPanel__panel {
  background: var(--white-color);
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  padding: 0;
}
.expandableDownloadPanel__panel[open] {
  outline: 0.0625rem solid var(--secondary, black);
}
.expandableDownloadPanel__panel[open] .expandableDownloadPanel__panel-summary-title {
  color: var(--secondary, black);
}
.expandableDownloadPanel__panel[open] .expandableDownloadPanel__panel-summary-button {
  background: var(--secondary, black);
  color: var(--white-color, white);
}
.expandableDownloadPanel__panel[open] .expandableDownloadPanel__panel-summary-button svg {
  rotate: 180deg;
}
.expandableDownloadPanel__panel[open] .expandableDownloadPanel__panel-summary-button svg path {
  fill: var(--white-color, white);
}
.expandableDownloadPanel__panel-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}
@media (width <= 480px) {
  .expandableDownloadPanel__panel-summary--fixed {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.expandableDownloadPanel__panel-summary-title {
  font-size: var(--h3-font-size);
  font-family: var(--primary-font-family);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--heading, black);
  flex: 1;
  transition: all 0.3s ease-in-out;
}
.expandableDownloadPanel__panel-summary-button {
  border-radius: 0.625em;
  background: hsl(from var(--secondary) h s l/0.1);
  color: var(--secondary, black);
  cursor: pointer;
  font-size: 1.125rem;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.expandableDownloadPanel__panel-summary-button svg {
  width: 1em;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.expandableDownloadPanel__panel-summary > .button {
  --button-bg-color: var(--secondary, gray) !important;
}
.expandableDownloadPanel__panel-content {
  padding: 0 2rem 2rem;
}
.expandableDownloadPanel__subpanel {
  border-bottom: 1px dashed hsl(from var(--border-color) h s l/0.5);
}
.expandableDownloadPanel__subpanel[open] .expandableDownloadPanel__subpanel-summary-title {
  color: var(--primary, black);
}
.expandableDownloadPanel__subpanel[open] .expandableDownloadPanel__subpanel-summary-button {
  background: var(--primary, black);
  color: var(--white-color, white);
}
.expandableDownloadPanel__subpanel[open] .expandableDownloadPanel__subpanel-summary-button svg {
  rotate: 180deg;
}
.expandableDownloadPanel__subpanel[open] .expandableDownloadPanel__subpanel-summary-button svg path {
  fill: var(--white-color, white);
}
.expandableDownloadPanel__subpanel:last-child {
  border-bottom: none;
}
.expandableDownloadPanel__subpanel-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2rem;
}
@media (width <= 480px) {
  .expandableDownloadPanel__subpanel-summary--fixed {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.expandableDownloadPanel__subpanel-summary-title {
  font-size: var(--h3-font-size);
  font-family: var(--primary-font-family);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--heading, black);
  flex: 1;
  transition: all 0.3s ease-in-out;
}
.expandableDownloadPanel__subpanel-summary-button {
  border-radius: 0.625em;
  background: hsl(from var(--primary) h s l/0.1);
  color: var(--primary, black);
  cursor: pointer;
  font-size: 1.125rem;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.expandableDownloadPanel__subpanel-summary-button svg {
  width: 1em;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.expandableDownloadPanel__subpanel-content {
  padding: 0 0 2rem;
  display: grid;
  gap: 1rem;
}
.expandableDownloadPanel__subpanel-item {
  background: var(--card-bg-color);
  padding-block: 0.5rem;
  padding-inline: 1rem 0.5rem;
  border-radius: 1.125rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (width <= 480px) {
  .expandableDownloadPanel__subpanel-item {
    padding: 1rem;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.expandableDownloadPanel__subpanel-item-title {
  font-size: var(--body-large-font-size);
  font-family: var(--primary-font-family);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: var(--body, black);
  flex: 1;
  transition: all 0.3s ease-in-out;
}
.expandableDownloadPanel details::details-content {
  display: block;
  overflow: hidden;
}
@supports (block-size: calc-size(auto, size)) {
  .expandableDownloadPanel details::details-content {
    transition-property: block-size, content-visibility;
    transition-duration: 0.5s;
    transition-behavior: allow-discrete;
    block-size: 0;
  }
}
.expandableDownloadPanel details[open]::details-content {
  /* Fallback for browsers that don't support calc-size() function */
  block-size: auto;
  /* calc-size() function allows transition to height: auto; */
  block-size: calc-size(auto, size);
}
.expandableDownloadPanel .button {
  --button-bg-color: var(--primary, black);
  background: var(--button-bg-color);
  border: unset;
  padding: 0.75em 1.5em;
  gap: 1em;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--white-color, white);
}
.expandableDownloadPanel .button:hover {
  background: hsl(from var(--button-bg-color) h s calc(l - 5));
  border: unset;
  color: var(--white-color, white);
}
.expandableDownloadPanel .button__icon svg {
  margin: 0;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  fill: currentColor;
}

.cursor-pointer {
  cursor: pointer;
}
