/* deal with fixed nav overlap */
.main-contain {
  padding-top: 60px;
}
@media (max-width: 1200px) {
  .main-contain {
    padding-top: 120px;
  }
}
@media (max-width: 1000px) {
  .main-contain {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .main-contain {
    padding-top: 60px;
  }
}

.starter-template {
  padding: 40px 15px;
  text-align: center;
}

.action-button {
  display: block;
  width: 30px;
  cursor: pointer;
}

.validateTips {
  border: 1px solid transparent;
  padding: 0.3em;
}

.scanned,
.scanned:focus,
.scanned.form-control:focus,
.scanned:disabled,
.scanned[readonly] {
  background: #fffa90;
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-8 {
  margin-bottom: 8px;
}

.my-3,
.mt-3 {
  margin-top: 0.75rem;
}

.my-3,
.mb-3 {
  margin-bottom: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.bg-warning,
.bg-warning td {
  background-color: #fce188 !important
}

/* scroll inside menu */
.dropdown-menu {
  overflow: hidden;
  overflow-y: auto;
  max-height: 60vh;
}

.dropdown-item-checked::before {
  position: absolute;
  left: .4rem;
  content: '✓';
  font-weight: 600;
}