.notes-state {
  width: 26px;
  height: 26px;
  background-color: transparent;
  border: 1px solid var(--akount-secondary);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notes-state .mdi-icon {
  fill: var(--akount-bg-secondary);
  opacity: 0;
  transition: opacity ease 200ms;
}
.notes-state.done {
  border-color: var(--akount-secondary);
  background-color: var(--akount-secondary);
}
.notes-state.done .mdi-icon {
  opacity: 1;
}
.notes-state:hover {
  border-color: var(--akount-accent);
  background-color: var(--akount-accent);
}
.notes-state:hover .mdi-icon {
  opacity: 1;
}

.notes-seemore {
  width: 26px;
  height: 26px;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 200ms;
}
.notes-seemore .mdi-icon {
  transition: all ease 200ms;
  fill: var(--akount-text);
}
.notes-seemore.inactive {
  display: none;
}
.notes-seemore:hover {
  border-color: var(--akount-accent);
  background-color: var(--akount-accent);
}
.notes-seemore:hover .mdi-icon {
  fill: var(--akount-bg-secondary);
  opacity: 1;
}

.dashboard-listing .dashboard-listing-wrapper .dashboard-listing-row .ref-main {
  max-height: 23px;
  position: relative;
  transition: all ease 300ms;
  overflow: hidden;
}
.dashboard-listing .dashboard-listing-wrapper .dashboard-listing-row .ref-main .see-more-button {
  position: absolute !important;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 0;
  color: darkgrey !important;
  background-color: transparent;
  border: none;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all ease 300ms;
}
.dashboard-listing .dashboard-listing-wrapper .dashboard-listing-row .ref-main .see-more-button:after {
  display: none;
}
.dashboard-listing .dashboard-listing-wrapper .dashboard-listing-row .ref-main .see-more-button svg {
  fill: currentColor;
}
.dashboard-listing .dashboard-listing-wrapper .dashboard-listing-row .ref-main .see-more-button:hover {
  color: var(--akount-accent) !important;
  opacity: 1;
}
.dashboard-listing .dashboard-listing-wrapper .dashboard-listing-row .ref-main .see-more-button:hover svg {
  fill: currentColor;
}
.dashboard-listing .dashboard-listing-wrapper .dashboard-listing-row .ref-main.full-note {
  max-height: 1200px;
  transition: all ease 900ms;
}

/*# sourceMappingURL=notes.css.map */
