html {
  overflow-y: auto !important;
}

::-webkit-scrollbar {
  /*-webkit-appearance: none;*/
  width: 8px;
}

::-webkit-scrollbar-track-piece {
  /*background-color: #212121;*/
}

::-webkit-scrollbar-thumb {
  background: #616161;
  border-radius: 8px;
}

.mirror-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pointer {
  cursor: pointer;
}

.arrow {
  cursor: default;
}

.grab {
  cursor: grab;
}

.opacity0 {
  opacity: 0;
}

.opacity12 {
  opacity: 0.12;
}

.opacity38 {
  opacity: 0.38;
}

.opacity54 {
  opacity: 0.54;
}

.opacity60 {
  opacity: 0.6;
}

.opacity87 {
  opacity: 0.87 !important;
}

.app-soft-transition {
  transition: all 200ms;
}

.app-smooth-scroll {
  scroll-behavior: smooth;
}

.duration300 {
  animation-duration: 0.3s !important;
}

.duration500 {
  animation-duration: 0.5s !important;
}

.duration800 {
  animation-duration: 0.8s !important;
}

tr.app-table-no-border td {
  border: 0 !important;
}

/* **************  This is for multiple add/edit forms also views ************** */
.form-table-header {
  border-top-style: solid;
  border-bottom-style: solid;
  border-width: 1px;
  border-color: #757575;
  text-align: center !important;
  align-items: center !important;
}

.view-label {
  border-left: 1px solid #fc9d00;
  background: linear-gradient(
    90deg,
    rgba(241, 243, 250, 1) 0%,
    rgba(242, 244, 250, 1) 65%,
    rgba(249, 250, 253, 1) 75%,
    rgba(255, 255, 255, 1) 100%
  );
  font-size: 14px;
  padding: 2px 4px;
  width: 100%;
}

.fill-mwidth {
  width: 100% !important;
}

/**** These two selectors are used to hide number field indicator ********/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

/* for the app notification component*/
#app-notification {
  z-index: 1000000;
}
/* resize font-awesome icon size */
.v-icon__component {
  height: 20px !important;
  width: 20px !important;
}

/*For display only one | two line of long text*/
.one-line-clamp {
  overflow: hidden;
  text-overflow: ellipsis; //add ...
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* or any other integer */
}