
ol, ul, menu {
  list-style: none;
}

:root {
  --primary-hsl: 11, 82%, 53%;
  --primary-contrast-hsl: 0, 0%, 55%;
  --secondary-contrast-hsl: 0, 0%, 0%;
  --color-contrast-hsl: 230, 13%, 9%;
  --primary-white-bg-hsl: 0, 0%, 100%;
  --xsmall-space: 0.5rem;
  --small-space: 0.75rem;
  --medium-space: 1.25rem;
  --large-space: 3.25rem;
  --xsmall-text: 0.694rem;
  --small-text: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    --xsmall-space: 0.75rem;
    --small-space: 1.125rem;
    --medium-space: 2rem;
    --large-space: 5.125rem;
    --xsmall-text: 0.8rem;
    --small-text: 1rem;
  }
}

.ppt-v2-tab-item-controls-list {
  position: relative;
  display: flex;
  align-items: center;
  overflow: auto;
  counter-reset: ppt-v2-tab-features-list;
}

.ppt-v2-tab-item-controls-list::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: hsla(var(--color-contrast-hsl), 0.1);
}

.ppt-v2-tab-item-controls-wrapper {
  counter-increment: ppt-v2-tab-features-list;
}

.ppt-v2-tab-item-control {
  position: relative;
  display: block;
  padding: var(--small-space) var(--large-space) var(--small-space) var(--small-space);
  color: hsl(var(--color-contrast-hsl));
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.ppt-v2-tab-item-control::before {
  content: "0" counter(ppt-v2-tab-features-list);
  font-size: var(--xsmall-text);
  display: block;
  color: hsl(var(--primary-contrast-hsl));
}

.ppt-v2-tab-item-control::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

.ppt-v2-tab-item-control:hover {
  background-color: hsla(var(--color-contrast-hsl), 0.025);
}

.ppt-v2-tab-item-control[aria-selected=true]::before {
  color: hsl(var(--primary-hsl));
}

.ppt-v2-tab-item-control[aria-selected=true]::after {
  background-color: hsl(var(--primary-hsl));
}

.ppt-v2-tab-items {
  position: relative;
}

.ppt-v2-tab-item {
  opacity: 0;
  padding-top: var(--medium-space);
}

.ppt-v2-tabs-non-interaction .ppt-v2-tab-item {
  animation-duration: 0s;
  animation-delay: 0s;
}

.ppt-v2-tab-item-image {
  display: block;
  width: 100%;
}

.ppt-v2-tab-item-caption {
  font-size: var(--small-text);
  --tx9-color-o: 1;
  color: hsla(var(--primary-contrast-hsl));
  margin-top: var(--xsmall-space);
}

.ppt-v2-tab-item-show {
  opacity: 0;
  -webkit-animation: v2-tab-item-entry-animation 0.5s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: v2-tab-item-entry-animation 0.5s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.ppt-v2-tab-item-hide {
  position: absolute;
  visibility: hidden;
  top: 0;
  width: 100%;
  transition: position 0s 0.5s, visibility 0s 0.5s;
  -webkit-animation: v2-tab-item-exit-animation 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: v2-tab-item-exit-animation 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes v2-tab-item-entry-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes v2-tab-item-entry-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes v2-tab-item-exit-animation {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes v2-tab-item-exit-animation {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}