@include export-module('co-custom-pdf-dialog-layout') {
  .co-custom-pdf-dialog {
    background: #fff;
    /* Do not change these values, the 'view' of the pdf needs to be this size or else it will not work */
    #pdfBody {
      background: #fff;
      min-width: 1080px;
      overflow-x: scroll;
    }
    .co-dialog {
      .co-dialog-wrapper {
        max-height: 95vh;
        max-width: 1125px;
        width: 100% !important;
        padding: 10px;
        background-color: #f8f8fa;
      }
    }

    .loader-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      align-self: center;
    }
  }
}


