html { height:100vh; }
body {
height: 100%;
}


.form {
  height: 100%; padding: 1rem; /*padding: 3em;*/ font-size: 14px; font-family: "Open Sans", sans-serif; display: flex; flex-direction: column;
  .form-heading {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5em;
    h1 {
      font-size: 2.3em; font-weight: normal;
    }
    p {
      text-align: right;
      b { font-size: 1.69em; }
    }
  }
  .form-grid {
    flex:1; border:1px solid #000; background-color: #000; border-collapse: collapse; font-size: 1em; width: 100%;
    display:grid; grid-gap: 1px; grid-template-columns: 3em auto auto 3em auto auto auto auto; grid-template-rows: auto auto auto auto auto 1fr;
    page-break-before:always;
    > .cell { display: flex; align-items: center; background-color: #fff; padding: .3em .6em; font-size: 1em }
  }


  .cell-heading-vertical {
    width: 3em; font-weight: bold; color:#fff; background-color: #000!important;
    > span {
      text-align: center; display: flex; align-items: center; justify-content: center;
      > b {
        transform: rotate(-90deg);
      }
    }
  }
  .cell-heading {
    font-weight: bold; white-space: nowrap;
  }
  .cell-confirmation-text {
    font-weight: bold; padding-left: 1em;
  }
  .cell-footer {
    padding-left: 1em!important; padding-right: 1em!important; height: 4em; display: flex; justify-content: space-between; align-items: center;
    p:first-child {
      b { background-color: #000; color:#fff; border-radius: 2em; padding: .5em 1em; }
    }
  }

  .cell-hizmetler {
    padding: 0!important; display: grid!important; grid-template-rows: 1fr auto; align-items: flex-start!important;
    table {
      border-collapse: collapse;
      tr {
        border-bottom: 1px solid #000;
        td {
          padding: .35em .65em; font-size: .9em;
          &:last-child {
            width: 7em; border-left: 1px solid #000; text-align: right; font-weight: bold;
          }
        }
      }
    }
  }
}



@media print {
  [hide-on-print] { display: none!important; }
  #loading { display: none!important; }
  #app-header { display: none!important; }
  #app-sidebar { display: none!important; }
  #app-content-wrapper {
    background-color: #fff; grid-column: 1/-1;
  }
  //#app-content-inner { overflow-y: unset!important; }
  .form {
     padding: 2pt; font-size: 6.5pt; width: 100vw; height: 100vh; position: fixed; left:0;top:0;right:0;bottom:0;
  }
}
