.pisell-camera-modal {
  .pisell-camera-container {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .pisell-camera-action {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;

      .pisell-camera-action-item-wrap {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        cursor: pointer;
        padding: 6px;
        border-radius: 50%;
        border: 2px solid #fff;

        .pisell-camera-action-item {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 60px;
          height: 60px;
          background-color: #fff;
          border-radius: 50%;
        }
      }

    }

    .pisell-camera-photo-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;

      .pisell-camera-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .pisell-camera-photo-img-action {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      background-color: rgba(0, 0, 0, 0.5);

      .pisell-camera-photo-img-action-item {
        padding: 20px 60px;
        font-size: 20px;
        color: #fff;
        cursor: pointer;
      }
    }

    .pisell-camera-loading {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;

      .pisell-camera-loading-text {
        font-size: 18px;
        color: #666;
      }
    }

    .pisell-camera-no-camera {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      background-color: #f5f5f5;
      padding: 40px;
      text-align: center;

      .pisell-camera-no-camera-icon {
        font-size: 64px;
        margin-bottom: 20px;
        opacity: 0.6;
      }

      .pisell-camera-no-camera-text {
        font-size: 20px;
        color: #333;
        margin-bottom: 12px;
        font-weight: 500;
      }

      .pisell-camera-no-camera-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        max-width: 300px;
      }
    }
  }
}