@charset "UTF-8";
/* @rules
normal - regular
bold - bold
500 - medium
300 - light
100 - thin
*/
/* =================================================== */
/* ==================== RocherColor ================== */
@font-face {
  font-family: 'RocherColor';
  src: url('/fonts/RocherColor/RocherColor-eaddc164.woff2') format('woff2');
  font-style: normal;
  font-weight: normal;
}
/* =================================================== */
/* ==================== Work Sans ==================== */
@font-face {
  font-family: 'Work Sans';
  src: url('/fonts/worksans/WorkSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* QUAN TRỌNG */
  font-style: normal;
  font-display: swap;
}
/* =================================================== */
/* ==================== Roboto ==================== */
@font-face {
  font-family: 'Roboto';
  src: url('/fonts/roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900; /* QUAN TRỌNG */
  font-style: normal;
  font-display: swap;
}
:root {
  --vnote-note-form-fonf: text-fonts.$vnote-work-sans-fontf;
}

#page-main .note-quick-look {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
  padding: 0 50px;
}
#page-main .note-quick-look .quick-look-items {
  display: flex;
  column-gap: 10px;
  padding: 0;
}
#page-main .note-quick-look .quick-look-items .quick-look-item {
  display: flex;
  align-items: center;
  height: var(--vnote-quick-look-icon-initial-size);
  width: var(--vnote-quick-look-icon-initial-size);
  overflow: hidden;
  padding: 6px;
  transition: width 0.25s cubic-bezier(0.65, 0, 0.076, 1);
  column-gap: 5px;
}
#page-main .note-quick-look .quick-look-items .quick-look-item i {
  font-size: 1.1rem;
}
#page-main .note-quick-look .quick-look-items .quick-look-item .text {
  display: block;
  width: max-content;
  color: #fff;
  white-space: nowrap;
  font-size: 0.9rem;
}
#page-main .note-quick-look .quick-look-items .quick-look-item.password-set {
  background-color: #ff3838;
  border-radius: 1.6rem;
}
#page-main .note-quick-look .quick-look-items .quick-look-item.password-set i {
  color: #fff;
}
@media only screen and (max-width: 700px) {
  #page-main .note-quick-look {
    padding: 0 15px;
  }
  #page-main #note-form {
    padding: 0 5px;
  }
  #page-main #note-form .note-form-item {
    font-size: 0.9rem;
  }
}

#note-form {
  padding: 0 100px;
  margin-top: 15px;
}
#note-form .note-form-item {
  font-size: 1rem;
  position: relative;
}
#note-form .note-form-item::before,
#note-form .note-form-item::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 2;
}
#note-form .note-form-item::before {
  border-right: 1px #909090 solid;
  border-bottom: 1px #909090 solid;
  top: 0;
  right: 0;
}
#note-form .note-form-item::after {
  border-top: 1px #909090 solid;
  border-left: 1px #909090 solid;
  bottom: 0;
  left: 0;
}
#note-form .note-form-item.notify-note-edited.slither::before,
#note-form .note-form-item.notify-note-edited.slither::after {
  animation-duration: 6s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}
#note-form .note-form-item.notify-note-edited.slither::before {
  animation-name: notify-slither-note-edited-before;
}
#note-form .note-form-item.notify-note-edited.slither::after {
  animation-name: notify-slither-note-edited-after;
}
#note-form .note-form-item.notify-note-edited.blink {
  outline: 1px #909090 solid;
  animation-name: notify-blink-note-edited;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: reverse;
}
#note-form .note-form-item.note-title input {
  background-color: transparent;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 2em;
  font-weight: bold;
  position: relative;
  z-index: 3;
  line-height: 1rem;
  font-family: var(--vnote-note-form-fonf);
}
#note-form .note-form-item.note-title input::placeholder {
  color: #909090;
}
#note-form .note-form-item.note-author {
  margin-top: 5px;
}
#note-form .note-form-item.note-author input {
  background-color: transparent;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  font-size: 0.95em;
  font-weight: normal;
  position: relative;
  z-index: 3;
  line-height: 1rem;
  font-family: var(--vnote-note-form-fonf);
}
#note-form .note-form-item.note-author input::placeholder {
  color: #909090;
}
#note-form .note-form-item.note-editor-board {
  margin-top: 15px;
}
#note-form .note-form-item.note-editor-board .note-editor-section {
  display: none;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 5px 10px;
}
#note-form .note-form-item.note-editor-board .note-editor-section.active {
  display: block;
}
#note-form .note-form-item.note-editor-board .note-editor-section .note-editor-wrapper {
  display: grid;
  overflow-y: auto;
}
#note-form .note-form-item.note-editor-board .note-editor-section .note-editor-wrapper::after,
#note-form
  .note-form-item.note-editor-board
  .note-editor-section
  .note-editor-wrapper
  .note-editor {
  grid-area: 1/1/2/2;
  width: 100%;
  font-family: var(--vnote-note-form-fonf);
  font-size: 1.05em;
}
#note-form
  .note-form-item.note-editor-board
  .note-editor-section
  .note-editor-wrapper
  .note-editor {
  background-color: transparent;
  resize: none;
  overflow: hidden;
  padding: 0;
}
#note-form .note-form-item.note-editor-board .note-editor-section .note-editor-wrapper::after {
  content: attr(data-replicated-value) ' ';
  white-space: pre-wrap;
  visibility: hidden;
}
#note-form .note-form-item.note-editor-board .note-editor-section .letters-count {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #595959;
  line-height: 1;
  padding-right: 5px;
  margin-bottom: 5px;
  margin-top: 25px;
}
#note-form .note-form-item.note-editor-board .under-section {
  display: flex;
  justify-content: space-between;
  top: 15px;
  margin-top: 15px;
}
#note-form .note-form-item.note-editor-board .useful-note-actions {
  display: flex;
  column-gap: 5px;
  width: 100%;
  margin-top: 15px;
}
#note-form .note-form-item.note-editor-board .useful-note-actions .action {
  display: flex;
  align-items: center;
  column-gap: 5px;
  background-color: #18181b;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #fff;
  border: 2px #18181b solid;
}
#note-form .note-form-item.note-editor-board .useful-note-actions .action i {
  font-size: 0.9rem;
  color: inherit;
}

#publish-article-submit-btn {
  display: none;
  justify-content: center;
  align-items: center;
  border: 2.5px #333 solid;
  border-radius: 20px;
  padding: 3px 50px;
  font-weight: bold;
  background-color: transparent;
}
#publish-article-submit-btn.active {
  display: flex;
}
#publish-article-submit-btn:hover {
  background-color: #333;
  color: #fff;
}
#publish-article-submit-btn .spinner {
  height: 20px;
  width: 20px;
}
#publish-article-submit-btn.loading {
  opacity: 0.4;
  pointer-events: none;
  padding: 5px 20px;
}

#rich-editor-section .actions-section {
  display: flex;
  align-items: start;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  row-gap: 10px;
}
#rich-editor-section .actions-section .actions {
  display: flex;
  column-gap: 10px;
}
#rich-editor-section .actions-section .actions .action-btn {
  display: flex;
  align-items: center;
  column-gap: 7px;
  border-radius: 5px;
  border: 1px lightgray solid;
  background-color: #fff;
  padding: 3px 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
#rich-editor-section .actions-section .actions .action-btn i {
  font-size: 0.9rem;
}
#rich-editor-section .actions-section .actions .action-btn:hover {
  background-color: rgb(228.6, 228.6, 228.6);
}
#rich-editor-section .actions-section .actions .action-btn.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
#rich-editor-section .actions-section .actions .action-btn.active i {
  color: #fff;
}
#rich-editor-section .actions-section .set-editor-height {
  font-size: 1rem;
}
#rich-editor-section .actions-section .set-editor-height .input-container {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
#rich-editor-section .actions-section .set-editor-height .input-container input {
  padding: 5px 10px;
  border: 1px lightgray solid;
  border-radius: 5px;
  font-size: 0.9em;
  line-height: 1;
  width: 150px;
}
#rich-editor-section .actions-section .set-editor-height .input-container .unit {
  font-size: 0.9rem;
}
#rich-editor-section .actions-section .set-editor-height .message {
  display: none;
  color: #ff3838;
  font-size: 0.85em;
  margin-top: 2px;
  font-weight: 500;
  width: 180px;
  line-height: 1.3;
}
#rich-editor-section .actions-section .set-editor-height .message.active {
  display: block;
}
#rich-editor-section .actions-section .set-editor-height .message i {
  display: inline;
  font-size: 0.9em;
  color: #ff3838;
}
#rich-editor-section .rich-editor-mode {
  display: none;
}
#rich-editor-section .rich-editor-mode.active {
  display: block;
}
#rich-editor-section .rich-editor-mode.edit-mode {
  position: relative;
}
#rich-editor-section .rich-editor-mode.view-mode {
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 15px;
  overflow-y: auto;
}

@keyframes notify-blink-note-edited {
  0% {
    outline-color: transparent;
  }
  100% {
    outline-color: #909090;
  }
}
@keyframes notify-slither-note-edited-before {
  0% {
    height: 0;
    width: 0;
  }
  8% {
    height: 100%;
    width: 0;
  }
  25% {
    height: 100%;
    width: 100%;
  }
  50% {
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    top: unset;
    right: unset;
  }
  58% {
    height: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    top: unset;
    right: unset;
  }
  75% {
    height: 0;
    width: 0;
    bottom: 0;
    left: 0;
    top: unset;
    right: unset;
  }
  100% {
    height: 0;
    width: 0;
    bottom: 0;
    left: 0;
    top: unset;
    right: unset;
  }
}
@keyframes notify-slither-note-edited-after {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 0;
  }
  33% {
    height: 100%;
    width: 0;
  }
  50% {
    height: 100%;
    width: 100%;
  }
  75% {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
  }
  83% {
    height: 0;
    width: 100%;
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
  }
  100% {
    height: 0;
    width: 0;
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
  }
}
.modal .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: 0 0 0px 0.25rem #ffdddd;
}
.modal .modal-dialog .modal-content .modal-header h2 {
  font-weight: bold;
}
.modal .modal-dialog .modal-content .modal-footer {
  display: flex;
  overflow: hidden;
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-footer button {
  display: flex;
  column-gap: 5px;
  align-items: center;
  padding: 10px;
  margin: 0;
  flex: 1;
  justify-content: center;
}
.modal .modal-dialog .modal-content .modal-footer button:hover {
  text-decoration: underline;
}
.modal .modal-dialog .modal-content .modal-footer button.modal-close-btn {
  background-color: #ff3838;
  color: #fff;
}
.modal .modal-dialog .modal-content .modal-footer button.modal-save-change-btn {
  background-color: #fff;
  color: #333;
}
.modal .modal-dialog .modal-content .modal-footer button.modal-save-change-btn.on-progress {
  opacity: 0.6;
  pointer-events: none;
}
.modal .modal-dialog .modal-content .modal-footer button.modal-save-change-btn .spinner-border {
  height: 1.5rem;
  width: 1.5rem;
}

#note-settings-modal .modal-dialog .modal-content .modal-header {
  padding: 10px 20px;
}
#note-settings-modal .modal-dialog .modal-content .modal-body {
  padding: 10px 0;
}
#note-settings-modal .modal-dialog .modal-content .modal-body .note-settings-board {
  display: flex;
  border-radius: 8px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px lightgray solid;
  width: 180px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .nav-tabs-list {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  background-color: #fff;
  border-radius: 8px 0 0 8px;
  width: 100%;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .nav-tab {
  display: flex;
  align-items: center;
  column-gap: 5px;
  color: #333;
  text-decoration: none;
  padding: 5px 15px;
  border: 1.5px transparent solid;
  border-left-width: 3px;
  cursor: pointer;
  width: 100%;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .nav-tab:hover,
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .nav-tab.active {
  background-color: #ececec;
  border-color: rgb(108.5, 108.5, 108.5);
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .logout-btn {
  justify-content: center;
  font-weight: bold;
  column-gap: 10px;
  color: #ff3838;
  margin-top: 15px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .logout-btn
  .spinner {
  height: 24px;
  width: 24px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .logout-btn
  i {
  height: fit-content;
  color: inherit;
  font-size: 1rem;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .logout-btn:hover,
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .note-settings-navigation
  .logout-btn.active {
  background-color: #ffdddd;
  border-color: #dd0000;
}
#note-settings-modal .modal-dialog .modal-content .modal-body .note-settings-board .forms {
  padding: 5px 20px 0;
  flex: 1;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .nav-tabs-list {
  display: flex;
  margin-bottom: 15px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .nav-tabs-list
  .nav-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  flex: 1;
  padding: 5px;
  border-bottom: 1px lightgray solid;
  background-color: #e3e3e3;
  opacity: 0.5;
  transition: opacity 0.2s;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .nav-tabs-list
  .nav-tab
  i {
  display: none;
  font-size: 0.9rem;
  transform: rotateY(180deg);
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .nav-tabs-list
  .nav-tab.active {
  border: 1px lightgray solid;
  border-bottom: 1px #fff solid;
  background-color: #fff;
  opacity: 1;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .nav-tabs-list
  .nav-tab.active
  i {
  display: flex;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .nav-tabs-list
  .nav-tab:hover {
  opacity: 0.85;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-title
  .content {
  display: inline-block;
  margin-top: 0;
  color: #333;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-title
  .status {
  display: none;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-title
  .status.active {
  display: inline-block;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-title
  .status
  .status-item {
  font-size: 1rem;
  color: #595959;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .notice-text {
  padding: 15px;
  background-color: rgba(255, 214, 101, 0.2);
  font-style: italic;
  font-size: 0.9rem;
  border-radius: 5px;
  color: #595959;
  border-left: 5px rgba(101, 74.1103896104, 0, 0.2) solid;
  margin: 10px 0;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .form-check-input {
  height: 1.2rem;
  width: 2.5rem;
  margin-top: 0;
  border-color: #909090;
  border-width: 1.5px;
  cursor: pointer;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .form-check-input:focus,
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .form-check-input:hover {
  box-shadow: 0 0 0 0.25rem lightgray;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .form-check-input:checked {
  background-color: #18181b;
  color: #18181b;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .details {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .details
  .details-btn {
  cursor: pointer;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .details
  .details-btn
  i {
  font-size: 0.9rem;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-switch
  .details
  .details-btn:hover {
  transform: scale(1.2);
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field {
  margin-top: 15px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  label {
  display: flex;
  column-gap: 7px;
  align-items: center;
  font-size: 0.9rem;
  padding-left: 5px;
  font-weight: bold;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  label
  .details-btn {
  cursor: pointer;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  label
  .details-btn
  i {
  font-size: 0.9rem;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  label
  .details-btn:hover {
  transform: scale(1.2);
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper {
  position: relative;
  margin-top: 2px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper
  input {
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  border: 1.5px #909090 solid;
  font-family: 'Work Sans', Arial, sans-serif;
  border-radius: 5px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper
  input:hover {
  outline: 1px gray solid;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper
  input:focus {
  border-color: gray;
  border-left-width: 5px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper
  .input-actions {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.15s;
  cursor: pointer;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper
  .input-actions:hover {
  transform: translateY(-50%) scale(1.2);
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper
  .input-actions
  i {
  font-size: 1.2rem;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .input-wrapper
  .input-actions
  .inactive {
  display: none;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .helper-text {
  font-style: italic;
  padding-left: 10px;
  margin-top: 2px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-text-field
  .helper-text
  .helper-text-item {
  color: #909090;
  font-size: 0.9rem;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select {
  margin-top: 15px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select
  label {
  display: flex;
  column-gap: 7px;
  align-items: center;
  font-size: 0.9rem;
  padding-left: 5px;
  font-weight: bold;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select
  label
  .details-btn {
  cursor: pointer;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select
  label
  .details-btn
  i {
  font-size: 0.9rem;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select
  label
  .details-btn:hover {
  transform: scale(1.2);
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select
  .form-select {
  border: 1.5px #909090 solid;
  cursor: pointer;
  margin-top: 2px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select
  .form-select:hover,
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group.form-group-select
  .form-select:focus {
  box-shadow: 0 0 0 0.25rem lightgray;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group
  .message {
  display: flex;
  column-gap: 5px;
  align-items: center;
  padding-left: 5px;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group
  .message
  i {
  color: inherit;
  font-size: inherit;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group
  .message.warning {
  color: #ff3838;
  background-color: #ffdddd;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group
  .message.success {
  color: #13a765;
  background-color: #d0ffea;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group
  .message.warning,
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .form-group
  .message.success {
  padding: 5px 10px;
  margin-top: 10px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-content
  .spinner {
  height: 24px;
  width: 24px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  width: 100%;
  border-radius: 5px;
  padding: 3px 20px;
  margin-top: 25px;
  background-color: #333;
  border: 2px #333 solid;
  color: #fff;
  transition:
    background-color 0.2s,
    color 0.2s;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-submit-btn
  .spinner {
  height: 24px;
  width: 24px;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-submit-btn
  i {
  color: inherit;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .note-settings-form
  .form-submit-btn:hover {
  background-color: #fff;
  color: black;
}
#note-settings-modal
  .modal-dialog
  .modal-content
  .modal-body
  .note-settings-board
  .forms
  .unset-password-notice {
  display: flex;
  column-gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  padding: 15px 0;
}
@media screen and (max-width: 700px) {
  #note-settings-modal .modal-dialog .modal-content .modal-body .note-settings-board {
    flex-direction: column;
  }
  #note-settings-modal
    .modal-dialog
    .modal-content
    .modal-body
    .note-settings-board
    .note-settings-navigation {
    width: 100%;
    border-bottom: 1px lightgray solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  #note-settings-modal
    .modal-dialog
    .modal-content
    .modal-body
    .note-settings-board
    .note-settings-navigation
    .nav-tabs-list
    .nav-tab {
    column-gap: 10px;
    justify-content: center;
  }
  #note-settings-modal
    .modal-dialog
    .modal-content
    .modal-body
    .note-settings-board
    .forms.password
    .nav-tabs-list {
    font-size: 0.8rem;
  }
}

#settings-form-change-modes .form-content {
  display: flex;
  flex-direction: column;
}

#settings-form-language .form-content .form-group .progress-container {
  margin-top: 10px;
}

#settings-form-editors .form-content .editors {
  display: flex;
  width: 100%;
  margin-top: 5px;
  row-gap: 10px;
  column-gap: 10px;
  position: relative;
}
#settings-form-editors .form-content .editors .progress {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(235, 235, 235, 0.75);
  z-index: 3;
}
#settings-form-editors .form-content .editors .progress.active {
  display: flex;
}
#settings-form-editors .form-content .editors .progress .spinner {
  color: #333;
  height: 24px;
  width: 24px;
}
#settings-form-editors .form-content .editors .editor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  column-gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border: 1px lightgray solid;
  border-radius: 10px;
  border-bottom: 5px lightgray solid;
  font-weight: 500;
  background-color: #fff;
  outline: none;
}
#settings-form-editors .form-content .editors .editor .details-btn,
#settings-form-editors .form-content .editors .editor .picked-btn {
  position: absolute;
  width: fit-content;
}
#settings-form-editors .form-content .editors .editor .details-btn {
  right: 10px;
}
#settings-form-editors .form-content .editors .editor .details-btn i {
  font-size: 1.1rem;
}
#settings-form-editors .form-content .editors .editor .picked-btn {
  display: none;
  left: 10px;
}
#settings-form-editors .form-content .editors .editor .picked-btn i {
  font-size: 1.1rem;
}
#settings-form-editors .form-content .editors .editor:hover,
#settings-form-editors .form-content .editors .editor.picked {
  border-color: #333;
}
#settings-form-editors .form-content .editors .editor.picked .picked-btn {
  display: initial;
}
@media screen and (max-width: 700px) {
  #settings-form-editors .form-content .editors {
    flex-direction: column;
  }
  #settings-form-editors .form-content .editors .editor {
    width: 100%;
  }
}

#settings-form-tools .form-content .tools-list {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
#settings-form-tools .form-content .tools-list .tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  cursor: pointer;
  padding: 20px 10px;
}
#settings-form-tools .form-content .tools-list .tool-item:hover {
  background-color: rgba(211, 211, 211, 0.49);
}
#settings-form-tools .form-content .tools-list .tool-item .tool-item-icon {
  border-radius: 50%;
}
#settings-form-tools .form-content .tools-list .tool-item .tool-item-icon i {
  font-size: 4rem;
}
#settings-form-tools .form-content .tools-list .tool-item .tool-item-info {
  display: flex;
  column-gap: 5px;
}
#settings-form-tools .form-content .tools-list .tool-item .tool-item-info .text {
  margin-top: 10px;
  text-align: center;
}

#transcribe-audio-message {
  display: none;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  column-gap: 5px;
  line-height: 1rem;
  padding: 5px 15px;
  border-radius: 5px;
}
#transcribe-audio-message i {
  color: inherit;
  font-size: inherit;
}
#transcribe-audio-message.active {
  display: flex;
}
#transcribe-audio-message.success {
  color: #13a765;
  background-color: #d0ffea;
}
#transcribe-audio-message.error {
  color: #ff3838;
  background-color: #ffdddd;
}

#transcribe-audio-container {
  display: flex;
  column-gap: 50px;
  position: relative;
}
#transcribe-audio-container .transcription-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55%;
}
#transcribe-audio-container .transcription-result .title {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-left: 10px;
  font-size: 1rem;
  font-weight: bold;
}
#transcribe-audio-container .transcription-result .separators .btn {
  padding: 5px 10px;
  line-height: 1;
  font-size: 0.9rem;
}
#transcribe-audio-container .transcription-result .transcribed-files {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 5px;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}
#transcribe-audio-container .transcription-result .transcribed-files:hover {
  outline: 1px #909090 solid;
}
#transcribe-audio-container .transcription-result .text-box {
  border: 1px lightgray solid;
  border-radius: 5px;
  max-height: 1000px;
  overflow-y: auto;
  padding: 10px;
  width: 100%;
  white-space: pre-wrap;
}
#transcribe-audio-container .transcription-result .text-box .spinner {
  height: 24px;
  width: 24px;
}
#transcribe-audio-container .transcription-result .text-box.loading {
  display: flex;
  justify-content: center;
}
#transcribe-audio-container .transcription-result .actions {
  display: flex;
  column-gap: 10px;
  margin-top: 10px;
  width: 100%;
}
#transcribe-audio-container .transcription-result .actions .action {
  display: flex;
  column-gap: 5px;
  align-items: center;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 0.9rem;
  background-color: #333;
  color: #fff;
  border: 2px #333 solid;
}
#transcribe-audio-container .transcription-result .actions .action i {
  color: inherit;
}
#transcribe-audio-container .transcription-result .actions .action:hover {
  background-color: #fff;
  color: #333;
}
@media screen and (max-width: 992px) {
  #transcribe-audio-container {
    display: block;
  }
  #transcribe-audio-container .transcription-result {
    margin-top: 30px;
    width: 100%;
  }
  #transcribe-audio-container #transcribe-audio-form {
    width: 100%;
  }
}

#transcribe-audio-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 45%;
  margin: 0;
  background-color: #fff;
  font-family: Arial, sans-serif;
  border-radius: 8px;
}
#transcribe-audio-form .title {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-left: 10px;
  font-size: 1rem;
  font-weight: bold;
}
#transcribe-audio-form .upload-box {
  text-align: center;
  padding: 20px 30px;
  background-color: #f1f1f1;
  width: 100%;
  border-radius: 5px;
  margin-top: 5px;
}
#transcribe-audio-form .upload-box .upload-file {
  display: none;
  width: 100%;
}
#transcribe-audio-form .upload-box .upload-file.active {
  display: block;
}
#transcribe-audio-form .upload-box .upload-file .upload {
  border: 2px dashed gray;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #555;
}
#transcribe-audio-form .upload-box .upload-file .upload p {
  margin: 0;
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 16px;
}
#transcribe-audio-form .upload-box .upload-file .upload .supported {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #696969;
}
#transcribe-audio-form .upload-box .upload-file .OR {
  margin-bottom: 3px;
}
#transcribe-audio-form .upload-box .upload-file .browse-btn {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  border: 2.5px solid #333;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto;
}
#transcribe-audio-form .upload-box .upload-file .browse-btn i {
  color: inherit;
  font-size: inherit;
}
#transcribe-audio-form .upload-box .upload-file .browse-btn:hover {
  background-color: #fff;
  color: #333;
}
#transcribe-audio-form .upload-box .picked-audio-files {
  display: none;
  width: 100%;
}
#transcribe-audio-form .upload-box .picked-audio-files.active {
  display: block;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list {
  width: 100%;
  overflow-x: auto;
  padding-left: 1px;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item {
  display: flex;
  column-gap: 5px;
  align-items: center;
  margin-top: 5px;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item i {
  font-size: inherit;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item .spinner-border {
  height: 16px;
  width: 16px;
  min-width: 16px;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item .icon-info,
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item .icon-success,
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item .icon-error,
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item .spinner-border {
  display: none;
  color: inherit;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item.info .icon-info {
  display: initial;
}
#transcribe-audio-form
  .upload-box
  .picked-audio-files
  .files-list
  .file-item.success
  .icon-success {
  display: initial;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item.success {
  color: #13a765;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item.error .icon-error {
  display: initial;
}
#transcribe-audio-form .upload-box .picked-audio-files .files-list .file-item.error {
  color: #ff3838;
}
#transcribe-audio-form
  .upload-box
  .picked-audio-files
  .files-list
  .file-item.loading
  .spinner-border {
  display: initial;
}
#transcribe-audio-form .upload-box .picked-audio-files .change-files {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  width: 100%;
  border-radius: 5px;
  background-color: #333;
  border: 2px #333 solid;
  color: #fff;
  margin-top: 15px;
  cursor: pointer;
}
#transcribe-audio-form .upload-box .picked-audio-files .change-files i {
  color: inherit;
}
#transcribe-audio-form .upload-box .picked-audio-files .change-files:hover {
  background-color: #fff;
  color: #333;
}
#transcribe-audio-form .langs-select-container {
  margin-top: 20px;
  width: 100%;
}
#transcribe-audio-form .langs-select-container .title {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding-left: 10px;
  font-size: 1rem;
  font-weight: bold;
}
#transcribe-audio-form .langs-select-container select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 5px;
  outline: none;
  cursor: pointer;
}
#transcribe-audio-form .submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  margin-top: 20px;
  width: 100%;
  padding: 5px 20px;
  background-color: #333;
  border-radius: 5px;
  border: 2px #333 solid;
  color: #fff;
}
#transcribe-audio-form .submit-btn i {
  color: inherit;
  font-size: inherit;
}
#transcribe-audio-form .submit-btn .spinner {
  height: 24px;
  width: 24px;
}
#transcribe-audio-form .submit-btn:hover {
  background-color: #fff;
  color: #333;
}

#image-recognition-message {
  display: none;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  column-gap: 5px;
  line-height: 1rem;
  padding: 5px 15px;
  border-radius: 5px;
}
#image-recognition-message i {
  color: inherit;
  font-size: inherit;
}
#image-recognition-message.active {
  display: flex;
}
#image-recognition-message.success {
  color: #13a765;
  background-color: #d0ffea;
}
#image-recognition-message.error {
  color: #ff3838;
  background-color: #ffdddd;
}

#image-recognition-container {
  width: 100%;
}
#image-recognition-container .transcription-result {
  width: 100%;
  margin-top: 30px;
}
#image-recognition-container .transcription-result .title {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  padding-left: 10px;
  margin-bottom: 5px;
}
#image-recognition-container .transcription-result .text-box {
  border: 1px lightgray solid;
  border-radius: 5px;
  max-height: 1000px;
  overflow-y: auto;
  padding: 10px;
  width: 100%;
  min-height: 200px;
  white-space: pre-wrap;
}
#image-recognition-container .transcription-result .text-box .spinner {
  height: 24px;
  width: 24px;
}
#image-recognition-container .transcription-result .text-box.loading {
  display: flex;
  justify-content: center;
}
#image-recognition-container .transcription-result .actions {
  display: flex;
  column-gap: 10px;
  margin-top: 10px;
  width: 100%;
}
#image-recognition-container .transcription-result .actions .action {
  display: flex;
  column-gap: 5px;
  align-items: center;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 0.9rem;
  background-color: #333;
  color: #fff;
  border: 2px #333 solid;
}
#image-recognition-container .transcription-result .actions .action i {
  color: inherit;
}
#image-recognition-container .transcription-result .actions .action:hover {
  background-color: #fff;
  color: #333;
}

#image-recognition-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0;
  background-color: #fff;
  font-family: Arial, sans-serif;
  border-radius: 8px;
}
#image-recognition-form .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#image-recognition-form .header .title {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  padding-left: 10px;
  margin-bottom: 5px;
}
#image-recognition-form .header .form-switch {
  display: none;
}
#image-recognition-form .header .form-switch.active {
  display: block;
}
#image-recognition-form .header .form-switch .form-check-input {
  border-color: #909090;
  border-width: 1.5px;
  cursor: pointer;
}
#image-recognition-form .header .form-switch .form-check-input:checked {
  background-color: #18181b;
  color: #18181b;
}
#image-recognition-form .header .form-switch .form-check-input:hover,
#image-recognition-form .header .form-switch .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem lightgray;
}
#image-recognition-form .header .form-switch .form-check-label {
  font-size: 0.9rem;
}
#image-recognition-form .upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 30px;
  background-color: #f1f1f1;
  width: 100%;
  border-radius: 5px;
}
#image-recognition-form .upload-box.active-upload-file .upload-file {
  display: block;
}
#image-recognition-form .upload-box.active-picked-image-file .picked-image-file {
  display: block;
}
#image-recognition-form .upload-box .spinner {
  height: 25px;
  width: 25px;
}
#image-recognition-form .upload-box .upload-file {
  display: none;
  width: 100%;
}
#image-recognition-form .upload-box .upload-file .upload {
  border: 2px dashed gray;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #555;
}
#image-recognition-form .upload-box .upload-file .upload p {
  margin: 0;
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 16px;
}
#image-recognition-form .upload-box .upload-file .upload .supported {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #696969;
}
#image-recognition-form .upload-box .upload-file .OR {
  margin-bottom: 3px;
}
#image-recognition-form .upload-box .upload-file .browse-btn {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  border: 2.5px solid #333;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto;
}
#image-recognition-form .upload-box .upload-file .browse-btn i {
  color: inherit;
  font-size: inherit;
}
#image-recognition-form .upload-box .upload-file .browse-btn:hover {
  background-color: #fff;
  color: #333;
}
#image-recognition-form .upload-box .picked-image-file {
  display: none;
  width: 100%;
  position: relative;
}
#image-recognition-form
  .upload-box
  .picked-image-file.active-pre-recognition-img
  #pre-recognition-img {
  display: block;
}
#image-recognition-form
  .upload-box
  .picked-image-file.active-recognition-result-preview
  #recognition-result-preview {
  display: flex;
}
#image-recognition-form .upload-box .picked-image-file .image-title {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1rem;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#image-recognition-form .upload-box .picked-image-file .image-title i {
  font-size: inherit;
}
#image-recognition-form .upload-box .picked-image-file .progress {
  display: none;
}
#image-recognition-form .upload-box .picked-image-file .progress.active {
  display: block;
}
#image-recognition-form .upload-box .picked-image-file .change-file {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  width: 100%;
  border-radius: 5px;
  background-color: #333;
  border: 2px #333 solid;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
}
#image-recognition-form .upload-box .picked-image-file .change-file i {
  color: inherit;
}
#image-recognition-form .upload-box .picked-image-file .change-file:hover {
  background-color: #fff;
  color: #333;
}
#image-recognition-form .langs-select-container {
  margin-top: 20px;
  width: 100%;
}
#image-recognition-form .langs-select-container .title {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  padding-left: 10px;
  margin-bottom: 5px;
}
#image-recognition-form .langs-select-container .langs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  padding: 0 10px;
  margin-top: 5px;
}
#image-recognition-form .langs-select-container .langs .form-check .form-check-input {
  border-color: #333;
}
#image-recognition-form .langs-select-container .langs .form-check .form-check-input:checked {
  background-color: #333;
}
#image-recognition-form .langs-select-container .langs .form-check .form-check-label {
  padding-left: 0;
}
#image-recognition-form .submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  margin-top: 20px;
  width: 100%;
  padding: 5px 20px;
  background-color: #333;
  border-radius: 5px;
  border: 2px #333 solid;
  color: #fff;
}
#image-recognition-form .submit-btn i {
  color: inherit;
  font-size: inherit;
}
#image-recognition-form .submit-btn .spinner {
  height: 24px;
  width: 24px;
}
#image-recognition-form .submit-btn:hover {
  background-color: #fff;
  color: #333;
}
#image-recognition-form .submit-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

#recognition-result-popover {
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #212529;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  z-index: 11;
  border-radius: 5px;
}
#recognition-result-popover .text {
  font-size: 1rem;
  color: #fff;
}
#recognition-result-popover .close-btn {
  color: #fff;
  height: fit-content;
  cursor: pointer;
  font-size: 1rem;
}
#recognition-result-popover .close-btn i {
  color: inherit;
}

#recognition-result-preview {
  display: none;
  justify-content: center;
  width: 100%;
  overflow: auto;
}

#pre-recognition-img {
  display: none;
  width: 100%;
}
#pre-recognition-img img {
  width: 100%;
}

:root {
  --vnote-quick-look-icon-initial-size: 30px;
}

#page-main {
  padding: 10px 0 200px;
}

#app-progress-section {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  width: 100vw;
}
#app-progress-section.active {
  display: block;
}
#app-progress-section .progress-bar {
  width: 100%;
  transform: translateX(-100%);
  animation: app-progress-animation 3s ease infinite forwards;
  height: 5px;
  background-color: #0064d5;
  border-radius: 30px;
}

#bubble-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 11;
}
#bubble-btns .scroll-to-top-btn {
  background-color: #18181b;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  border: 2px #18181b solid;
  pointer-events: none;
  transition:
    transform 0.2s,
    background-color 0.2s;
  transform: scale(0);
}
#bubble-btns .scroll-to-top-btn.active {
  transform: scale(1);
  cursor: pointer;
  pointer-events: auto;
}
#bubble-btns .scroll-to-top-btn i {
  font-size: 2rem;
  transition: color 0.2s;
  transform: translateY(-1px);
  color: #fff;
}
#bubble-btns .scroll-to-top-btn:hover {
  background-color: #fff;
}
#bubble-btns .scroll-to-top-btn:hover i {
  color: #18181b;
}
#bubble-btns .scroll-to-bottom-btn {
  background-color: #18181b;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  border: 2px #18181b solid;
  pointer-events: none;
  transition:
    transform 0.2s,
    background-color 0.2s;
  transform: scale(0);
}
#bubble-btns .scroll-to-bottom-btn.active {
  transform: scale(1);
  cursor: pointer;
  pointer-events: auto;
}
#bubble-btns .scroll-to-bottom-btn i {
  font-size: 2rem;
  transition: color 0.2s;
  transform: translateY(-1px);
  color: #fff;
}
#bubble-btns .scroll-to-bottom-btn:hover {
  background-color: #fff;
}
#bubble-btns .scroll-to-bottom-btn:hover i {
  color: #18181b;
}
#bubble-btns .bubble-note-settings-btn {
  background-color: #18181b;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  border: 2px #18181b solid;
  transition:
    background-color 0.2s,
    transform 0.2s;
}
#bubble-btns .bubble-note-settings-btn i {
  font-size: 2rem;
  color: #fff;
  transition: color 0.2s;
}
#bubble-btns .bubble-note-settings-btn:hover {
  background-color: #fff;
  transform: rotate(180deg);
}
#bubble-btns .bubble-note-settings-btn:hover i {
  color: #18181b;
}
@media only screen and (max-width: 700px) {
  #bubble-btns .scroll-to-top-btn i {
    font-size: 1.8rem;
  }
  #bubble-btns .scroll-to-bottom-btn i {
    font-size: 1.8rem;
  }
  #bubble-btns .bubble-note-settings-btn i {
    font-size: 1.8rem;
  }
}

@keyframes app-progress-animation {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(100%);
  }
}

/*# sourceMappingURL=home-page.css.map */
