* {
  font-family: 'Oxygen', sans-serif !important;
}

.material-icons {
  font-family: 'Material Icons' !important;
}

/* GENERAL */
.clickable {
  cursor: -webkit-pointer;
  cursor: pointer;
}
.animate {
  animation: bounceInUp;
  animation-duration: 0.5s;
  /* don't forget to set a duration! */
}
.animate-out {
  animation: fadeOutDownBig;
  animation-duration: 0.5s;
  /* don't forget to set a duration! */
}
.d-none {
  visibility: hidden !important;
}
.d-flex {
  display: flex;
  gap: 1rem;
}
.bg-green-3-op {
  background-color: #6fcf9720;
}
.bg-blue-3-op {
  background-color: #ced8e9;
}
/* END OF GENERAL */

.title {
  font-family: Raleway;
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 28px;
  color: #000000;
}
.subtitle {
  font-family: Raleway;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  color: #9ea4a6;
}
.form-title {
  font-size: 16px;
  padding: 10px 100px 10px 16px;
  background-color: #224F75;
  color: #ffffff;
  display: inline-flex;
  border-radius: 5px;
  border-top-right-radius: 64px;
  border-bottom-right-radius: 3px;
  font-weight: 800;
}
.form-title-small {
  font-size: 14px;
  padding: 10px 100px 10px 16px;
  color: white;
  background-color: #63949E;
  display: inline-flex;
  border-radius: 5px;
  border-top-right-radius: 64px;
  border-bottom-right-radius: 3px;
  font-weight: 600;
}
.form-subtitle {
  font-family: Raleway;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
  text-decoration: underline;
}
.text-underline {
  text-decoration: underline;
}
.text-sm {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
}
.text-md {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
}
.text-blue {
  color: #0B3D91;
}
.alert {
  padding: 23px 29px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }
  &.alert-info {
    background-color: #0b3d9120;
  }
  &.alert-light-green {
    background-color: #dcf7ec;
  }
  &.alert-warning {
    background-color: #be9e5520;
  }
}
/* END OF FONT */

/* TABLE */
.q-table thead tr th {
  font-weight: bold;
  background: #f8f8f8;
  color: #0B0B0B;
  opacity: 0.95;
  text-align: center;
}
.q-table tbody tr td {
  background: white;
  color: #0B0B0B;
  opacity: 1;
}
.q-table tfoot tr td {
  font-weight: bold;
  background: #f8f8f8;
  color: #0B0B0B;
  opacity: 0.8;
  border-color: #0B0B0B;
}
.border-info {
  border-color: #0B3D91;
  border-width: 3.5px;
  border-radius: 10px;
}
/* END OF TABLE */

/* DASHBOARD */
.card-dash-head {
  font-size: 55px;
  line-height: 55px;
  word-spacing: 0%;
  font-weight: bold;
}
@media only screen and (min-width: 1024px) {
  .pr-lg-3 {
    padding-right: 1rem;
  }
  .pl-lg-3 {
    padding-left: 1rem;
  }
}
.p-3 {
  padding: 1rem;
}
.mt-3 {
  margin-top: 1rem;
}
.font-bold {
  font-weight: bold !important;
}
.medium-text {
  font-size: 18px;
}
.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.custom-scroll {
  width: 100%;
  overflow-x: auto;
  cursor: -webkit-grab;
  cursor: grab;
  &::-webkit-scrollbar-track {
    background-color: #fafafa;
    border-radius: 8px;
  }
  &::-webkit-scrollbar {
    height: 5px !important;
    background-color: #fafafa;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #fafafa;
  }
  &::-webkit-scrollbar-thumb:hover {
    background-color: #fafafa;
  }
  &:hover {
    &::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
      box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
      background-color: #f5f5f5;
    }
    &::-webkit-scrollbar {
      height: 12px !important;
      background-color: #f5f5f5;
    }
    &::-webkit-scrollbar-thumb {
      -webkit-box-shadow: inset 0 0 4px rgba(148, 148, 148, 0.1);
      box-shadow: inset 0 0 4px rgba(105, 105, 105, 0.1);
      background-color: rgba(148, 148, 148, 0.63);
    }
    &::-webkit-scrollbar-thumb:hover {
      background-color: #666;
    }
  }
}
.custom-scroll-y {
  overflow-y: auto;
  cursor: -webkit-grab;
  cursor: grab;
  &::-webkit-scrollbar-track {
    background-color: #fafafa;
    border-radius: 8px;
  }
  &::-webkit-scrollbar {
    width: 8px !important;
    background-color: #fafafa;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #fafafa;
  }
  &::-webkit-scrollbar-thumb:hover {
    background-color: #fafafa;
  }
  &:hover {
    &::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
      box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
      background-color: #f5f5f5;
    }
    &::-webkit-scrollbar {
      width: 8px !important;
      background-color: #f5f5f5;
    }
    &::-webkit-scrollbar-thumb {
      -webkit-box-shadow: inset 0 0 4px rgba(148, 148, 148, 0.1);
      box-shadow: inset 0 0 4px rgba(105, 105, 105, 0.1);
      background-color: rgba(148, 148, 148, 0.63);
    }
    &::-webkit-scrollbar-thumb:hover {
      background-color: #666;
    }
  }
}
.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}
.body--dark * .custom-scroll.stock-dashboard * {
  color: #ffffff !important;
}
.body--dark * .stockTitle,
.body--dark * .bg-secondary,
.body--dark * .stockSummary,
.body--dark * .crushData.summary,
.body--dark * .stockChartSummary,
.body--dark * .crushData,
.body--dark * .portBox {
  background-color: #1e1e1e !important;
  border: none;
}
.body--dark * .stockCard .hData span {
  border-bottom: 2px #ffffff solid;
}
.body--dark * .stockCard .hData span::after {
  border-right: 2px #ffffff solid;
  border-bottom: 2px #ffffff solid;
}
.body--dark * .rawLabel,
.body--dark * .summaryLabel,
.body--dark * .crushDataLabel {
  background-color: #000000 !important;
}
.body--dark * .custom-scroll-y::-webkit-scrollbar,
.body--dark * .custom-scroll::-webkit-scrollbar {
  background-color: #000000;
}
.body--dark * .custom-scroll-y::-webkit-scrollbar-thumb,
.body--dark * .custom-scroll::-webkit-scrollbar-thumb {
  background-color: #242424;
}
.body--dark * .custom-scroll-y::-webkit-scrollbar-track,
.body--dark * .custom-scroll::-webkit-scrollbar-track {
  background-color: #2e2e2e;
}
.custom-scroll-y {
  overflow-x: hidden;
}
.body--dark * .q-tabs,
.body--dark * .q-header {
  background-color: #474747 !important;
  color: #ffffff !important;
}
.body--dark * .q-tabs * {
  color: #ffffff !important;
}
.body--dark * .text-info {
  color: #f2c94c !important;
}
.body--dark * .text-primary,
.body--dark * .text-blue {
  color: #e0ae4e !important;
}
.my-sticky-virtscroll-table {
  height: 410px;
}
thead tr th {
  position: sticky;
  z-index: 2;
}
thead tr:last-child th {
  top: 48px;
}
thead tr:first-child th {
  top: 0;
}
/* END OF DASHBOARD */

.font-30 {
  font-size: 30px !important;
}
.height-125 {
  height: 164px !important;
}
.height-175 {
  height: 175px !important;
}
.height-weighing {
  height: 125px !important;
}
.round {
  border-radius: 7px;
}
.input__bg-white > .q-field > .q-field__inner {
  background: white;
}
.input-bold input {
  font-weight: bold;
  font-size: 15px;
}
.weight-input input,
.weight-input .input {
  font-weight: bold !important;
  font-size: 55px !important;
}
.og-transaction i {
  display: none !important;
}
.latlng-picker {
  width: 100% !important;
  height: 300px !important;
}
.border {
  border: 1px solid #e0e0e0 !important;
}
.border-black {
  border: 1px solid black !important;
}
.border-top {
  border-top: 1px solid grey !important;
}
.border-right {
  border-right: 1px solid grey !important;
}
.border-bottom {
  border-bottom: 1px solid grey !important;
}

.bg-primary-dark {
  background: #313131;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-primary {
  background: white;
  border-left: 9px solid #b71c1c;
  border-top: 1px solid #dbd6d6;
  border-right: 1px solid #dbd6d6;
  border-bottom: 1px solid #dbd6d6;
  border-radius: 5px;
}
.card-primary {
  background: #ebe8e8;
  border-left: 9px solid #224F75;
  border-top: 1px solid #dbd6d6;
  border-right: 1px solid #dbd6d6;
  border-bottom: 1px solid #dbd6d6;
  border-radius: 5px;
}
.card-accent {
  background: #ebe8e8;
  border-left: 9px solid #828D00;
  border-top: 1px solid #dbd6d6;
  border-right: 1px solid #dbd6d6;
  border-bottom: 1px solid #dbd6d6;
  border-radius: 5px;
}

/* DASHBORADS */
.w-18 {
  width: 18px;
}
.w-20 {
  width: 20px;
}
.img-rotate {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.img-flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.ob-card {
  display: flex;
  align-items: center;
  width: 285px;
  .inner-card {
    box-shadow: 0 40px 40px -40px rgba(0, 0, 0, 0.2),
      0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: white;
    width: 255px;
    font-size: 11px;
    border-left: 9px solid #f77272;
    border-top: 1px solid #dbd6d6;
    border-right: 1px solid #dbd6d6;
    border-bottom: 1px solid #dbd6d6;
    border-radius: 5px;
    .card-total {
      background: #f77272;
      border-radius: 4px;
      padding-left: 2px;
      font-size: 11px;
      font-weight: 900;
      color: black;
    }
  }
}
.start-card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  background: #545454;
  border-radius: 4px;
  color: white;
}
.hauling-card {
  display: flex;
  align-items: center;
  width: 350px;
  .inner-card {
    box-shadow: 0 40px 40px -40px rgba(0, 0, 0, 0.2),
      0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: white;
    width: 300px;
    font-size: 11px;
    border-left: 9px solid #FCD68D;
    border-top: 1px solid #dbd6d6;
    border-right: 1px solid #dbd6d6;
    border-bottom: 1px solid #dbd6d6;
    border-radius: 5px;
    .card-total {
      background: #FCD68D;
      border-radius: 4px;
      padding-left: 2px;
      font-size: 11px;
      font-weight: 900;
      color: black;
    }
  }
}
.crushing-card {
  display: flex;
  align-items: center;
  width: 350px;
  background: white;
  border-left: 9px solid #545454;
  border-top: 1px solid #dbd6d6;
  border-right: 1px solid #dbd6d6;
  border-bottom: 1px solid #dbd6d6;
  border-radius: 5px;
  .inner-card {
    box-shadow: 0 40px 40px -40px rgba(0, 0, 0, 0.2),
      0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    align-items: center;
    width: 350px;
    font-size: 11px;
    height: 100%;
    .card-total {
      background: #545454;
      border-radius: 4px;
      padding-left: 2px;
      font-size: 11px;
      font-weight: 900;
      color: white;
    }
  }
}
.inventory-card {
  display: flex;
  align-items: center;
  /* width: 270px; */
  width: 285px;
  .inner-card {
    box-shadow: 0 40px 40px -40px rgba(0, 0, 0, 0.2),
      0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: white;
    width: 255px;
    font-size: 11px;
    border-left: 9px solid #545454;
    border-top: 1px solid #dbd6d6;
    border-right: 1px solid #dbd6d6;
    border-bottom: 1px solid #dbd6d6;
    border-radius: 5px;
    .card-total {
      background: #545454;
      border-radius: 4px;
      padding-left: 2px;
      font-size: 11px;
      font-weight: 900;
      color: white;
    }
  }
}
.barging-card {
  display: flex;
  align-items: center;
  width: 285px;
  .inner-card {
    box-shadow: 0 40px 40px -40px rgba(0, 0, 0, 0.2),
      0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: white;
    width: 255px;
    font-size: 11px;
    border-left: 9px solid #2196f3;
    border-top: 1px solid #dbd6d6;
    border-right: 1px solid #dbd6d6;
    border-bottom: 1px solid #dbd6d6;
    border-radius: 5px;
    .card-total {
      background: #2196f3;
      border-radius: 4px;
      padding-left: 2px;
      font-size: 11px;
      font-weight: 900;
      color: white;
    }
  }
}
.card-total-primary {
  background: #545454;
  border-radius: 4px;
  display: flex;
  align-items: center;
  width: 250px;
  color: white;
}
.card-total-flat {
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  width: 250px;
  color: black;
}
