#my_notepad_by_delos .my_notepad_controls {
  width: 100%;
  margin: 10px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#my_notepad_by_delos .notice-area {
  margin: 20px 0;
  width: 100%;
}

#my_notepad_by_delos .notice-area .notice {
  text-transform: capitalize;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  border-radius: 5px;
  padding: 10px 20px;
}

#my_notepad_by_delos .notice-area .notice.warning {
  border-left-color: #ffc045;
  background-color: #ffc14522;
  color: #ffc045;
}

#my_notepad_by_delos .notice-area .notice.success {
  border-left-color: #00a32a;
  background-color: #00a32a22;
  color: #00a32a;
}

#my_notepad_by_delos .notice-area .notice.error {
  border-left-color: #d63638;
  background-color: #d6363822;
  color: #d63638;
}

#my_notepad_by_delos .btn {
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  box-sizing: border-box;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

#my_notepad_by_delos .btn.disabled {
  cursor: wait;
  opacity: 0.7;
}

[v-cloak] {
  display: none;
}

/* Enter and leave animations can use different */
/* durations and timing functions.              */
.slide-fade-enter-active {
  transition: all 0.3s ease;
}
.slide-fade-leave-active {
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}
.slide-fade-enter, .slide-fade-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
  transform: translateX(10px);
  opacity: 0;
}
