.snk-scheduleList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.snk-scheduleList-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .snk-scheduleList-group {
    gap: 1rem;
  }
}
.snk-scheduleList-time {
  font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.0225rem;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .snk-scheduleList-time {
    font-size: 1.125rem;
  }
}
.snk-scheduleList-items {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
  .snk-scheduleList-group_multi .snk-scheduleList-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .snk-scheduleList-group_triple .snk-scheduleList-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.snk-scheduleCard {
  --snk-btn-link-color: #0058d4;
  --snk-link-underline-color: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  background-color: var(--snk-schedule-card-bg, #fff);
  border-radius: var(--snk-card-border-radius);
  padding: 1.25rem;
  text-align: left;
}
@media (min-width: 768px) {
  .snk-scheduleCard {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.snk-scheduleCard-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.snk-scheduleCard-topic, .snk-scheduleCard-location {
  font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01875rem;
}
.snk-scheduleCard-topic {
  background-color: rgba(175, 114, 236, 0.4);
  border-radius: 2rem;
  padding: 0.125rem 0.75rem;
}
.snk-scheduleCard-location {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  text-transform: uppercase;
}
.snk-scheduleCard-location svg {
  width: 0.875rem;
  min-width: 0.875rem;
  height: 0.875rem;
  min-height: 0.875rem;
  flex-shrink: 0;
}
.snk-scheduleCard-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  --snk-mb-h4: 0;
}
.snk-scheduleCard-body p {
  margin: 0;
}
.snk-scheduleCard-headline {
  margin-bottom: 0;
}
.snk-scheduleCard-description {
  margin-bottom: 0;
}
.snk-scheduleCard-link {
  align-self: flex-start;
}
.snk-scheduleCard-link, .snk-section_dark .snk-scheduleCard-link {
  --snk-link-underline-color: none;
}

.snk-scheduleCard_toggle {
  appearance: none;
  width: 100%;
  border: none;
  font: inherit;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.snk-scheduleCard_toggle:hover, .snk-scheduleCard_toggle:focus-visible {
  box-shadow: 0 13px 14px 0 rgba(17, 47, 131, 0.22);
}
.snk-scheduleCard_toggle:focus-visible {
  outline: 1px solid #071b33;
  outline-offset: 4px;
}
.snk-scheduleCard_toggle:hover .snk-scheduleCard-link {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}

.snk-section .snk-scheduleCard,
.snk-section .snk-scheduleCard h1,
.snk-section .snk-scheduleCard h2,
.snk-section .snk-scheduleCard h3,
.snk-section .snk-scheduleCard h4,
.snk-section .snk-scheduleCard h5,
.snk-section .snk-scheduleCard h6,
.snk-section .snk-scheduleCard .snk-h1,
.snk-section .snk-scheduleCard .snk-h2,
.snk-section .snk-scheduleCard .snk-h3,
.snk-section .snk-scheduleCard .snk-h4,
.snk-section .snk-scheduleCard .snk-h5,
.snk-section .snk-scheduleCard .snk-h6,
.snk-section .snk-scheduleCard p {
  color: #071b33;
}
.snk-section .snk-scheduleCard .snk-scheduleCard-headline {
  color: #082075;
}

body.snk-sessionPanel-open {
  overflow: hidden;
}

.snk-sessionPanel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background-color: rgba(0, 32, 122, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s, -webkit-backdrop-filter 0.3s ease, backdrop-filter 0.3s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.snk-sessionPanel-backdrop.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s, -webkit-backdrop-filter 0.3s ease, backdrop-filter 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.snk-sessionPanel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 66.875rem;
  height: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #fff;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s ease, visibility 0s 0.4s;
}
.snk-sessionPanel.active {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.4s ease, visibility 0s;
}
.snk-sessionPanel.active, .snk-sessionPanel.active:focus-visible {
  outline: none;
}
.snk-sessionPanel-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #fff;
  padding-left: 0.25rem;
}
@media (min-width: 1024px) {
  .snk-sessionPanel-bar {
    padding-left: 1.0625rem;
  }
}
.snk-sessionPanel-close {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0.75rem;
  font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #00207a;
}
.snk-sessionPanel-close:hover {
  color: #0058d4;
}
.snk-sessionPanel-close:focus-visible {
  outline: 1px solid #071b33;
  outline-offset: 4px;
}
.snk-sessionPanel-close svg {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  flex-shrink: 0;
  color: currentcolor;
}
.snk-sessionPanel-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 49.1875rem;
  padding: 0.5rem 1.25rem 3rem;
}
@media (min-width: 768px) {
  .snk-sessionPanel-content {
    padding: 1rem 2.5rem 4rem;
  }
}
@media (min-width: 1024px) {
  .snk-sessionPanel-content {
    padding: 2rem 5rem 4rem 6.4375rem;
  }
}
.snk-sessionPanel-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.snk-sessionPanel-when {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.0225rem;
  margin-bottom: 0;
}
.snk-sessionPanel-separator {
  font-size: 1rem;
  font-weight: 400;
}
.snk-sessionPanel-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.snk-sessionPanel-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.snk-sessionPanel-headline {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .snk-sessionPanel-headline {
    font-size: 2.5rem;
    line-height: 1.3;
    letter-spacing: -0.05rem;
  }
}
.snk-sessionPanel-text > :last-child {
  margin-bottom: 0;
}
.snk-sessionPanel-company {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.snk-sessionPanel-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 12.4375rem;
  height: 4.6875rem;
}
.snk-sessionPanel-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.snk-sessionPanel-logoImage {
  width: auto;
  max-width: 12.4375rem;
  height: auto;
  max-height: 4.6875rem;
  object-fit: contain;
}
.snk-sessionPanel-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
.snk-sessionPanel-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3125rem;
  height: 2.3125rem;
  flex-shrink: 0;
  padding: 0;
  border-radius: 50%;
}
.snk-sessionPanel-social svg {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  min-height: 1rem;
  z-index: 1;
  isolation: isolate;
}
.snk-sessionPanel-social:hover svg path, .snk-sessionPanel-social:focus-visible svg path {
  stroke: #7ffac9;
}
.snk-sessionPanel-social_x svg {
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
}
.snk-sessionPanel-speakers {
  display: flex;
  flex-direction: column;
  border-top: 1px dashed rgba(0, 88, 212, 0.3);
  padding-top: 2rem;
}
.snk-sessionPanel-speakersTitle {
  margin-bottom: 2rem;
}
.snk-sessionPanel-speakerList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.snk-sessionPanel-speaker {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(0, 88, 212, 0.3);
}
@media (min-width: 768px) {
  .snk-sessionPanel-speaker {
    gap: 2rem;
  }
}
.snk-sessionPanel-speaker + .snk-sessionPanel-speaker {
  padding-top: 2rem;
}
.snk-sessionPanel-portrait {
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .snk-sessionPanel-portrait {
    width: 9.375rem;
    min-width: 9.375rem;
    height: 9.375rem;
  }
}
.snk-sessionPanel-speakerBody {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.snk-sessionPanel-speakerName, .snk-sessionPanel-speakerRole {
  margin-bottom: 0;
}

.snk-section .snk-sessionPanel,
.snk-section .snk-sessionPanel h1,
.snk-section .snk-sessionPanel h2,
.snk-section .snk-sessionPanel h3,
.snk-section .snk-sessionPanel h4,
.snk-section .snk-sessionPanel h5,
.snk-section .snk-sessionPanel h6,
.snk-section .snk-sessionPanel .snk-h1,
.snk-section .snk-sessionPanel .snk-h2,
.snk-section .snk-sessionPanel .snk-h3,
.snk-section .snk-sessionPanel .snk-h4,
.snk-section .snk-sessionPanel .snk-h5,
.snk-section .snk-sessionPanel .snk-h6,
.snk-section .snk-sessionPanel p,
.snk-section .snk-sessionPanel li {
  color: #071b33;
}
.snk-section .snk-sessionPanel .snk-sessionPanel-headline,
.snk-section .snk-sessionPanel .snk-sessionPanel-speakerName,
.snk-section .snk-sessionPanel .snk-sessionPanel-speakersTitle {
  color: #00207a;
}
.snk-section .snk-sessionPanel .snk-btn-primary {
  color: #00207a;
}
.snk-section .snk-sessionPanel .snk-btn-primary::before {
  background-color: #00207a;
}
.snk-section .snk-sessionPanel .snk-btn-primary:hover, .snk-section .snk-sessionPanel .snk-btn-primary:active {
  color: #7ffac9;
}
.snk-section .snk-sessionPanel .snk-btn-primary:focus-visible {
  outline-color: #071b33;
}
.snk-section .snk-sessionPanel .snk-sessionPanel-socials .snk-btn-primary::before {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  bottom: 0;
}
.snk-section .snk-sessionPanel .snk-sessionPanel-socials .snk-btn-primary:hover::before, .snk-section .snk-sessionPanel .snk-sessionPanel-socials .snk-btn-primary:active::before {
  bottom: 50%;
}

.snk-scheduleTabs {
  --snk-schedule-card-bg: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .snk-scheduleTabs {
    gap: 2.5rem;
  }
}
.snk-scheduleTabs-header:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .snk-scheduleTabs-header:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.snk-scheduleTabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.snk-scheduleTabs-panel:not(.active) {
  display: none;
}

.snk-scheduleTabs-section.snk-section_dark .snk-scheduleTabs, .snk-scheduleTabs-section.snk-section_light .snk-scheduleTabs {
  --snk-schedule-card-bg: #f2f6fa;
}

.snk-scheduleTabs-nav .snk-scheduleTabs-tab {
  cursor: pointer;
  white-space: nowrap;
}
.snk-scheduleTabs-nav .snk-scheduleTabs-tab.active, .snk-scheduleTabs-nav .snk-scheduleTabs-tab.active:hover, .snk-scheduleTabs-nav .snk-scheduleTabs-tab.active:active, .snk-scheduleTabs-nav .snk-scheduleTabs-tab.active:focus {
  background-color: #7ffac9;
  border-color: #7ffac9;
  color: #00207a;
}
.snk-scheduleTabs-nav .snk-scheduleTabs-tab.active::before {
  content: normal;
}

.snk-section_dark .snk-scheduleTabs-nav .snk-scheduleTabs-tab:not(.active) {
  border-color: #fff;
  color: #fff;
}
.snk-section_dark .snk-scheduleTabs-nav .snk-scheduleTabs-tab:not(.active):hover, .snk-section_dark .snk-scheduleTabs-nav .snk-scheduleTabs-tab:not(.active):active {
  background-color: transparent;
  border-color: #00207a;
  color: #00207a;
}
.snk-section_dark .snk-scheduleTabs-nav .snk-scheduleTabs-tab.active, .snk-section_dark .snk-scheduleTabs-nav .snk-scheduleTabs-tab.active:hover, .snk-section_dark .snk-scheduleTabs-nav .snk-scheduleTabs-tab.active:active, .snk-section_dark .snk-scheduleTabs-nav .snk-scheduleTabs-tab.active:focus {
  background-color: #7ffac9;
  border-color: #7ffac9;
  color: #00207a;
}