html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  .show-in-print {display:none;}
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

@media print {
  .hide-in-print {display:none;}
  .show-in-print {display:block;}
  body {
    zoom: 40%;
  }
  input,
  textarea {
    /*border: none !important;*/
    box-shadow: none !important;
    outline: none !important;
  }
  button {
    display: none !important;
  }
  .bg-dark {
    background-color: #ffffff !important;
  }
}

.unselectable {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  cursor: default; /* Prevents the cursor from changing to text selection */
}