
// Mixin for centering content
@mixin center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.ff-mobileskin-wrapper {
  @include center-content;
  flex-direction: column;

  &.portrait {
    gap: 30px;
  }

  &.landscape {
    gap: 38px;
  }

  .ff-mobileskin-container {
    @extend .ff-mobileskin-wrapper;
    .ff-mobile-container {
      @include center-content;
      border: 8px solid black;
      border-radius: 30px;
      position: relative;
      overflow: hidden;

      &::-webkit-scrollbar {
        width: 0;
        height: 0;
      }

      &::-webkit-scrollbar-thumb {
        background-color: transparent;
      }
      .ff-mobile-image-container {
        @include center-content;
        overflow: hidden;
      }
    }
  }

}
