html,
body {
  height: 100vh;
  font-size: 1rem;
  line-height: 1.25;
  font-family: "Roboto Condensed", sans-serif;
}

input,
select,
textarea {
  accent-color: #dc3545 !important;
  caret-color: #dc3545 !important;
  box-shadow: 0 1px 2px 0 #e6ebf1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #d3d3d3 !important;
}

label {
  margin-top: 0.5rem;
}

ul {
  margin-bottom: 0px !important;
}

th {
  font-family: monospace;
}

/*Print Background Graphics*/
* {
  -webkit-print-color-adjust: exact !important;   /* Chrome, Safari 6 – 15.3, Edge */
  color-adjust: exact !important;                 /* Firefox 48 – 96 */
  print-color-adjust: exact !important;           /* Firefox 97+, Safari 15.4+ */
}

.search-input {
  border: 1px solid grey;
}

/*Bootstrap override*/

/*Border Radius*/
.form-control, .form-select, .input-group-text,
.btn, .list-group, .page-link, .popover, .popover-header,
.select2-dropdown, .select2-selection, .select2-selection__choice,
.note-editor, .note-btn, .dropdown-menu {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px !important;
}

.input-group-text {
  box-shadow: 0 1px 2px 0 #e6ebf1 !important;
}

input.form-control-plaintext {
  box-shadow: none;
  border-radius: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.table-sm td,
.table-sm th {
  padding: 0;
  font-size: 0.75rem;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: #f8d7da;
  color: #842029;
}

.field-validation-error {
  font-size: smaller;
}

.form-control,
.form-select {
  min-height: calc(1.5em + 0.5rem + 2px) !important;
  padding: 0.25rem 0.5rem !important;
  font-size: 0.875rem !important;
}

/*Select2 Border Color*/
.select2-selection {
  border-color: #dee2e6 !important;
  box-shadow: 0 1px 2px 0 #e6ebf1;
}

/*Bootstrap override input focus border*/
.form-control:focus,
.form-select:focus, .select2-container--focus {
  border-color: rgba(82, 168, 236, 0.8) !important;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 2px rgba(82, 168, 236, 0.6);
}

/*Background Animation*/
.circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #90979b;
}

.small {
  width: 100px;
  height: 100px;
  left: -50px;
  top: 50px;
}

.medium {
  width: 200px;
  height: 200px;
  left: -100px;
  top: 0px;
}

.large {
  width: 400px;
  height: 400px;
  left: -200px;
  top: -100px;
}

.xlarge {
  width: 600px;
  height: 600px;
  left: -300px;
  top: -200px;
}

.xxlarge {
  width: 800px;
  height: 800px;
  left: -400px;
  top: -300px;
}

.shade1 {
  opacity: 0.3;
}
.shade2 {
  opacity: 0.5;
}
.shade3 {
  opacity: 0.7;
}
.shade4 {
  opacity: 0.9;
}
.shade5 {
  opacity: 1;
}

@keyframes ripple {
  0% {
    transform: scale(0.4);
  }
  20% {
    transform: scale(0.6);
  }
  40% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8);
  }
  80% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(0.4);
  }
}

#html5-qrcode-button-camera-stop {
  background: red;
  border-radius: 8px;
}

#html5-qrcode-button-camera-start {
  background: green;
  border-radius: 8px;
}

.qrcode-container {
  text-align: center;
  width: 700px;
  height: 700px;
  margin:  0 auto;
}

.vertical {
  transform: translate(-50%, -50%) rotate(180deg);
  writing-mode: vertical-rl;
}

.clickable {
  cursor: pointer;
}

.clickable:hover {
  background-color: gold !important;
  color: red !important;
}

th input[type="checkbox"], td input[type="checkbox"] {
  margin-top: 2px !important;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*Compact Button*/
.btn-compact {
  padding: 0.1rem 0.25rem !important;
}

.font-x-small {
  font-size: small;
}

.font-small {
  font-size: smaller;
}
