.mobile-annotation-view {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    transparent 0%
  );
  position: relative;
  display: flex;
  text-shadow: none;
  text-align: left;

  &--splash {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      transparent 100%
    );
    transition: opacity 0.2s;
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: center;
    height: 100vh;
    text-shadow: 0 1px 2px #1d1e20;
    opacity: 1;
    overflow: hidden;
    pointer-events: visible;
  }

  &--disabled {
    pointer-events: none;
    &.mobile-annotation-view--splash {
      opacity: 0;
    }
  }

  &__inner {
    margin-top: auto;
    margin-bottom: auto;
    color: #fff;
    width: 100%;
  }

  &__button {
    padding: 10px 30px;
    color: #fff;
    border: 1px solid #fff;
    margin: 20px auto 0;
    background: transparent;
    text-transform: uppercase;
    display: block;
  }

  &__annotation-panel {
    margin-top: 50vh;
    background: #fff;
    box-shadow: 0 200px 0 0 #fff;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    z-index: 100;
    min-height: 50vh;
    transition: transform 0.2s;
    &--disabled {
      transform: translateY(100vh);
    }
  }

  &__footer {
    height: 40px;
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  &__void {
    display: none;
    visibility: hidden;
    height: 0;
    width: 0;
    overflow: hidden;
  }

  .annotatedzoom-annotation-detail__image {
    height: auto;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .annotation-navigation {
    padding-top: 0;
    width: 100%;
  }

  // Size fix.
  .annotation-navigation__next,
  .annotation-navigation__previous {
    height: 40px;
  }
  .annotation-navigation__next {
    margin-right: 20px;
  }
  .annotation-navigation__previous {
    margin-left: 20px;
  }
}
