@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: inherit;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

nav {
  height: 4rem !important;
}

nav a.brand-logo {
  font-weight: 700;
  font-size: 24px;
  color: #fafafa;
  margin: 0 0 0 -4rem;
}

@media only screen and (max-width: 570px) {
  nav a.brand-logo {
    margin-left: 1rem !important;
    overflow: hidden;
  }
}

nav ul.right li a {
  position: relative;
  top: -4.5rem;
  right: 0 !important;
  font-size: 16px;
  font-weight: 600;
}

nav ul.right li a span {
  font-weight: 500 !important;
  font-size: 18px;
}

nav ul.right li a:hover {
  background-color: transparent;
  font-size: 18px;
  color: #a1d5ff;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

nav div.center span {
  position: relative;
  top: 0;
  bottom: 0;
  left: -3rem;
}

nav .sidenav-trigger .iconify {
  font-weight: 800;
  font-size: 32px;
  position: relative;
  top: 0.5rem;
  left: 0;
}

.sidenav li a {
  font-size: 18px;
}

.sidenav li a:hover, .sidenav li a:active {
  color: #0e4470;
  font-size: 20px;
}

svg.iconify.prefix.active {
  color: #0e4470;
}

.alertMsgWrap {
  display: none;
  position: absolute;
  right: 0 !important;
  z-index: 998;
  width: 100vw;
}

.alertMsgWrap .alertMsg {
  border-radius: 8px 8px;
}

.alertMsgWrap .alertMsg .alertMsgContent {
  font-size: 1rem;
  margin-left: -1rem;
}

.alertMsgWrap .alertMsg .alertMsgContent .iconify.status {
  font-size: 18px;
}

.alertMsgWrap .alertMsg.success-msg {
  background-color: #5fff87;
  color: black;
  border-left: 8px #319b38 solid;
}

.alertMsgWrap .alertMsg.noteAdd-msg {
  background-color: #a1d5ff;
  color: black;
  border-left: 8px #0e4470 solid;
}

.alertMsgWrap .alertMsg.delete-msg {
  background-color: #ff4b41;
  color: black;
  border-left: 8px #ad0202 solid;
}

.alertMsgWrap.show {
  display: block;
  -webkit-animation: show_slide 1s ease-in-out forwards;
          animation: show_slide 1s ease-in-out forwards;
}

@-webkit-keyframes show_slide {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  40% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
  80% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes show_slide {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  40% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
  80% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

#addNotesSection {
  /* label focus color */
  /* label underline focus color */
}

#addNotesSection .card.white {
  z-index: 1;
  margin-top: -3rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 0 3rem;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  #addNotesSection .card.white {
    margin-top: 1.5rem;
    overflow: hidden;
  }
}

#addNotesSection .card.white .card-title {
  font-weight: 500;
  color: black;
}

#addNotesSection .card.white #noteCount {
  border: 1px solid #0e4470;
  padding: 1px 1.5rem 1px 1.25rem;
  border-radius: 8px;
  font-size: 14px;
  -webkit-box-shadow: 2px 2px rgba(14, 68, 112, 0.8);
          box-shadow: 2px 2px rgba(14, 68, 112, 0.8);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

#addNotesSection .card.white .messageBox {
  position: relative;
  left: 20%;
  margin: 0.5rem 0;
  height: 20%;
  width: 60%;
  display: none;
}

#addNotesSection .card.white .messageBox .noteAdd-msg {
  padding: 0.5rem;
  position: relative;
  background-color: #a1d5ff;
  color: black;
  width: 100%;
}

#addNotesSection .card.white .messageBox .success-msg {
  padding: 0.5rem;
  position: relative;
  background-color: #319b38;
  color: white;
  width: 100%;
}

#addNotesSection .card.white .messageBox .delete-msg {
  padding: 0.5rem;
  position: relative;
  background-color: #ff4b41;
  color: white;
  width: 100%;
}

#addNotesSection .card.white .message {
  overflow: hidden;
  position: relative;
  left: 35%;
  right: inherit;
}

@media only screen and (max-width: 1102px) {
  #addNotesSection .card.white .message {
    position: relative;
    left: 30%;
    right: inherit;
  }
}

@media only screen and (max-width: 489px) {
  #addNotesSection .card.white .message {
    position: relative;
    left: 5%;
    right: inherit;
  }
}

#addNotesSection .input-field input[type="text"]:focus + label {
  color: #0e4470;
}

#addNotesSection .input-field textarea:focus + label {
  color: #0e4470;
}

#addNotesSection .input-field input[type="text"]:focus {
  border-bottom: 1px solid #0e4470;
  -webkit-box-shadow: 0 1px 0 0 #0e4470;
          box-shadow: 0 1px 0 0 #0e4470;
}

textarea.myTextArea {
  margin-top: 0.5rem;
}

textarea.myTextArea::-webkit-input-placeholder {
  color: gray;
}

textarea.myTextArea:-ms-input-placeholder {
  color: gray;
}

textarea.myTextArea::-ms-input-placeholder {
  color: gray;
}

textarea.myTextArea::placeholder {
  color: gray;
}

textarea.myTextArea:focus,
textarea.myTextArea:active {
  border: none !important;
  outline: none !important;
  border-bottom: 1px solid #0e4470 !important;
  -webkit-box-shadow: 0 1px 0 0 #0e4470;
          box-shadow: 0 1px 0 0 #0e4470;
}

/* icon prefix color */
.input-field .prefix {
  color: gray;
}

/* icon prefix focus color */
.input-field .prefix.active {
  color: #0e4470;
}

.btnWrap {
  position: relative;
  top: 0.5rem;
  bottom: 1rem;
  left: 2rem;
}

.btnWrap .btn {
  z-index: 0;
  width: 25%;
  font-size: 16px;
  text-transform: none;
  background-color: transparent;
  color: #319b38;
  border: 1px solid #319b38;
  border-radius: 0 25px 0 25px;
  overflow: hidden;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btnWrap .btn:hover, .btnWrap .btn:active {
  background-color: #319b38;
  color: white;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.btnWrap .btn .iconify {
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 841px) {
  .btnWrap .btn {
    width: 40%;
    overflow: hidden;
  }
}

@media only screen and (max-width: 470px) {
  .btnWrap .btn {
    width: 60%;
    overflow: hidden;
  }
}

#showNotesSection .card {
  margin-top: -1rem;
  padding-bottom: 3rem;
}

#showNotesSection .card .card-title {
  font-weight: 500;
}

#showNotesSection .card .divider + p.truncate {
  margin-top: 0.5rem;
}

#showNotesSection .card a.btn {
  text-transform: none;
  position: relative;
  top: 1.5rem;
  border-radius: 25px 0 25px 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#showNotesSection .card a.btn.viewBtn {
  color: #0e4470;
  border: 1px solid #0e4470;
}

#showNotesSection .card a.btn.viewBtn:hover {
  color: white;
  background-color: #0e4470;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

#showNotesSection .card a.btn.delBtn {
  color: #ff4b41;
  border: 1px solid #ff4b41;
  overflow: hidden;
}

#showNotesSection .card a.btn.delBtn:hover {
  color: white;
  background-color: #ff4b41;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0 !important;
  z-index: 1;
  height: 100vh;
  width: 100vw;
  background-color: rgba(33, 33, 33, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.modal-wrap .popup {
  background-color: white;
  border: 1px solid #212121;
  width: 80vw;
  height: 60vh;
  position: absolute;
  top: 15%;
  left: 10%;
  overflow: auto;
}

.modal-wrap .popup-content .popup-title {
  margin: 0;
  font-size: 30px;
  padding: 1.5rem 2rem;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.6);
}

.modal-wrap .popup-content p {
  font-weight: 400;
  padding: 1rem 2rem;
  font-size: 20px;
}

.hidden {
  display: none !important;
}

.loaderGif {
  height: 100% !important;
  width: 100% !important;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loaderGif.hidden {
  -webkit-animation: fadeOut 1s;
          animation: fadeOut 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/*# sourceMappingURL=style.css.map */