.viewer {
  .container {
    position: relative;
    @media (max-width: 1024px) {
      display: flex;
      flex-direction: column;
    }
    .fibbl_lists {
      position: absolute;
      width: 260px;
      top: 34%;
      left: 10%;
      z-index: 4;
      @media (max-width: 1440px) {
        left: 4%;
      }
      @media (max-width: 1024px) {
        position: relative;
        order: 3;
        width: 100vw;
        border-top: 1px solid var(--c-black);
        border-bottom: 1px solid var(--c-black);
        margin-inline: -20px;
        margin-bottom: 20px;
        left: 0;
        padding: 12px 40px;
      }
    }
    .viewer_background {
      display: flex;
      justify-content: center;
      position: absolute;
      width: 100%;
      top: 30%;
      transform: translateY(-50%);
      left: 0;
      z-index: 1;
      @media (max-width: 1024px) {
        padding: 0 20px;
      }
      img {
        width: 60%;
        @media (max-width: 1024px) {
          width: 100%;
        }
      }
    }
    .viewer_holder {
      position: relative;
      height: 800px;
      margin-bottom: 20px;
      z-index: 3;
      @media (max-width: 1024px) {
        height: 400px;
        margin-bottom: 10px;
      }
      @media (max-width: 768px) {
        height: 240px;
        margin-bottom: 10px;
      }
    }
    .viewer_bot {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      @media (max-width: 1024px) {
        flex-direction: column;
        align-items: center;
        margin-bottom: 64px;
        gap: 12px;
      }
      .text {
        flex: 1;
      }
      .tip {
        position: absolute;
        left: 106%;
        top: 76px;
        padding-left: 40px;
        padding-top: 6px;
        @media (max-width: 1440px) {
          display: none;
        }
        svg {
          position: absolute;
          left: 0;
          bottom: 100%;
        }
        p {
          min-width: 170%;
        }
      }
    }
    .three_first_content {
      margin: 0 10%;
      @media (max-width: 768px) {
        margin: 0;
      }
      ul {
        margin: 0;
        list-style: none;
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(5, 1fr);
        @media (max-width: 768px) {
          grid-template-columns: repeat(3, 1fr);
        }
        li {
          display: flex;
          align-items: flex-end;
          justify-content: center;
          transition: all 0.3s ease;
          cursor: pointer;
          &:nth-of-type(1) {
            order: 1;
          }
          &:nth-of-type(2) {
            order: 3;
          }
          &:nth-of-type(3) {
            order: 2;
          }
          &:nth-of-type(4) {
            order: 4;
          }
          &:nth-of-type(5) {
            order: 5;
          }
          &:nth-of-type(6) {
            order: 7;
          }
          &:nth-of-type(7) {
            order: 6;
          }
          &:nth-of-type(8) {
            order: 8;
          }
          &:nth-of-type(9) {
            @media (max-width: 768px) {
              display: none;
            }
          }
          &:nth-of-type(10) {
            order: 10;
          }
          @media (max-width: 768px) {
            max-height: 70px;
          }
          &.active {
            opacity: 0.4;
          }
          img {
            @media (max-width: 768px) {
              max-height: 70px;
            }
          }
        }
      }
    }
  }
}
