@media print {
  body {
    font-family: "Roboto",sans-serif !important;
    font-size: medium;
    -webkit-print-color-adjust:exact !important;
    print-color-adjust:exact !important;
  }

  footer {
    display: none;
  }

  a[href]:after {
    content: none!important
  }

  body > div:first-child > div:first-child {
    display: none;
  }

  body > .container {
    padding-top: 100px;
  }
  
  .btn {
    display: none;
  }
  
  title {
    display: none !important;
  }
  
  .navbar {
    display: block !important;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border: none;
    padding-top: 0;
    z-index: 1;

    .navbar-toggle {
      display: none;
    }
  }

  .navbar-header {
    text-align: center;
    top: 0;
  
    img {
      width: 80%;
      height: auto;
      border: none;
    }
  }
  
  .container {
    display: block !important;
    padding: 0;
    width: 100%;
  
    & > .row {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
  
      &::before {
        content: none;
      }
  
      & > div {
        width: 50%;
      }
  
      & > div:nth-child(2) {
        width: 50% !important;

        & > .row {
          display: flex;
          flex-direction: row;
  
          & > div {
            font-size: 18px;
          }
  
          & > div:first-child {
            font-weight: 500;
            flex-basis: 50%;
            width: 50% !important;
          }

          & > div:last-child {
            white-space: nowrap;
            color: white;
          }
  
          &::before,
          &::after {
            content: none;
          }
        }
  
        .text-primary {
          color: #000 !important;
          line-height: normal;
        }
      }
    }

    .row {
      span,
      div {
        font-family: "Roboto",sans-serif!important;
      }
    }
  }
  
  .grid-table {
    position: relative;
    margin-top: 10px;
    page-break-inside: auto;
    border-collapse: collapse;
  
    .grid-header-title a {
      color: #000 !important;
    }

    .grid-header {
      padding: 0;
      background-color: transparent !important;

      .grid-header-title {
        margin-top: 120px;
        padding: 10px 5px;
        background-color: #f8981c !important;

        height: 40px;
      }
    }

    .grid-header:last-child {
      display: none;
      width: 0% !important;
    }
  
    .grid-row {
      .grid-cell {
        border-top: 0px;
        padding: 5px 6px;
      }

      .grid-cell:last-child {
        display: none;
      }
    }
  }

  thead {
    display: table-header-group;
  }

  tbody {
    display: table-row-group;
  }

  tr {
    page-break-inside: avoid;
  }

  th, td {
    padding: 8px;
    text-align: left;
  }

  .grid-mvc {
    margin-top: -120px;
  }
}