.MediaNavigationControl {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slds-g-color-surface-container-2);

  &__media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &__chevron {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--slds-g-color-border-1);
    background: var(--slds-g-color-surface-container-1);

    &--prev { left: var(--slds-g-spacing-6); }
    &--next { right: var(--slds-g-spacing-6); }
  }

  &__chevronIcon {
    width: 1rem;
    height: 1rem;
    background-color: var(--slds-g-color-accent-1);
  }

  &__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--slds-g-color-surface-container-2);
  }

  &__spinner {
    width: 5rem;
    height: 5rem;
  }

  &--inline {
    background: transparent;
    min-height: 20rem;
  }
}
