.notif {
  position: fixed;
  top: -150px;
  left: calc((100% - 200px) / 2);
  width: 280px;
  border-radius: 8px;
  border: 1px solid #48C1B5;
  background-color: rgba(72, 193, 181, 0.0823529412);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 14px;
  transition: top 0.35s linear;
}
.notif img:last-child {
  cursor: pointer;
}
.notif img:last-child:hover {
  opacity: 0.75;
}
.notif p {
  margin-right: auto;
  font-size: 14px;
  color: #222831;
}

.notif.success {
  top: 25px;
}

.sidebar {
  max-width: 320px;
  height: 100vh;
  width: 100%;
  border-right: 1px solid lightgray;
  padding: 10px;
  background: transparent;
}
.sidebar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sidebar__logo img:first-child {
  width: 62px;
}
.sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sidebar__title {
  font-size: 16px;
  margin: 30px 0 5px;
  color: #222831;
}
.sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 5px;
  text-transform: capitalize;
  cursor: pointer;
  color: #222831;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.15s linear;
}
.sidebar__link:hover, .sidebar__link:active {
  background-color: rgba(239, 242, 245, 0.5647058824);
}
.sidebar__link--active {
  background-color: #ebecee !important;
  color: #222831;
}
.sidebar__link .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 15px;
  color: #4477CE;
}

.main {
  display: flex;
  flex-direction: column;
  max-width: calc(100vw - 320px);
  width: 100%;
  position: relative;
  background-color: transparent;
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 20px;
  background: transparent;
}
.header__profile {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__profile div {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: rgba(238, 238, 238, 0.5647058824);
  opacity: 0.75;
  transition: background-color 0.15s linear;
}
.header__profile div:hover {
  background-color: #ebecee;
  opacity: 0.85;
}
.header__notif {
  position: relative;
}
.header__notif::after {
  content: attr(data-count);
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background-color: #F56C6C;
  color: #FFF;
  border-radius: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  padding: 10px 20px;
  height: calc(100vh - 82px);
}
.wrap__title {
  padding: 10px 0;
  text-transform: capitalize;
  color: #222831;
}
.wrap__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 148px);
  overflow-y: scroll;
}
.wrap__inner::-webkit-scrollbar {
  width: 6px;
}
.wrap__inner::-webkit-scrollbar-thumb {
  background-color: rgb(175, 175, 175);
  border-radius: 4px;
}
.wrap__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wrap__empty img {
  width: 420px;
  opacity: 0.5;
}
.wrap__empty h4 {
  margin-top: 10px;
  border-top: 1px solid lightgray;
  width: 100%;
  color: #222831;
  text-align: center;
  padding: 10px;
}
.wrap__list {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.wrap__item {
  width: 100%;
  font-size: 16px;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
}
.wrap__item input {
  display: none;
}
.wrap__item span {
  font-weight: 600;
  width: 20vw;
  font-size: 16px;
}
.wrap__item p {
  font-weight: 100;
  font-size: 14px;
  color: #4D3C77;
}
.wrap__item a {
  text-decoration: none;
  font-weight: normal;
  border: 1px solid #c45656;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 14px;
  color: #c45656;
  margin-left: auto;
  transition: background-color 0.15s linear;
}
.wrap__item a:hover {
  background-color: rgba(245, 108, 108, 0.1254901961);
}
.wrap__item button {
  border: none;
  background: transparent;
  transition: opacity 0.15s linear;
  cursor: pointer;
}
.wrap__item button img {
  width: 20px;
}
.wrap__item button:hover {
  opacity: 0.7;
}
.wrap__item-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid lightgray;
  border-radius: 5px;
  cursor: pointer;
}
.wrap input + label::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
}
.wrap input:hover + label::before {
  background-color: rgba(245, 108, 108, 0.3137254902);
}
.wrap input:checked + label::before {
  background-color: #F56C6C;
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 99;
}
.modal__hidden {
  display: none;
}
.modal__box {
  max-width: 650px;
  width: 100%;
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
}
.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.modal__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 25px;
}
.modal__title::first-letter {
  text-transform: uppercase;
}
.modal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.modal__input, .modal__select {
  outline: none;
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid lightgray;
}
.modal__input--danger, .modal__select--danger {
  border-bottom: 1px solid #F56C6C;
}
.modal__input--danger::-moz-placeholder, .modal__select--danger::-moz-placeholder {
  color: #F56C6C;
}
.modal__input--danger::placeholder, .modal__select--danger::placeholder {
  color: #F56C6C;
}
.modal__select, .modal__select option {
  background-color: transparent;
  text-transform: capitalize;
}
.modal__colors {
  display: flex;
  width: 100%;
  padding: 0 15px;
  gap: 15px;
}
.modal__colors label {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  cursor: pointer;
}
.modal__colors input {
  display: none;
}
.modal__colors input:checked + label {
  box-shadow: 0 0 1px 3px rgba(0, 0, 0, 0.2);
}
.modal__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.modal__btn {
  font-size: 16px;
  padding: 10px 25px;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  text-transform: capitalize;
}
.modal__btn:hover, .modal__btn:active {
  opacity: 0.85;
}
.modal__btn--success {
  background-color: #67C23A;
}
.modal__btn--danger {
  background-color: #F56C6C;
}

.add {
  width: 56px;
  height: 56px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 100px;
  position: absolute;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50px;
  bottom: 50px;
  background-color: #F8F9FA;
}
.add:hover, .add:active {
  background-color: #f1f1f1;
}

.dark .notif {
  background-color: rgba(72, 193, 181, 0.5215686275);
}
.dark .notif p {
  color: #EEEEEE;
}
.dark .sidebar {
  background: #222831;
}
.dark .sidebar__title {
  color: #EEEEEE;
}
.dark .sidebar__logo img:last-child {
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.dark .sidebar__link {
  color: #EEEEEE;
}
.dark .sidebar__link--active {
  color: #222831;
}
.dark .main {
  background-color: #222831;
}
.dark .header {
  background: #222831;
}
.dark .header__profile div {
  background: rgba(235, 236, 238, 0.1882352941);
}
.dark .header__profile div img {
  filter: brightness(0) invert(1);
}
.dark .wrap__title {
  color: #EEEEEE;
}
.dark .wrap__empty h4 {
  color: #EEEEEE;
}

@media (prefers-color-scheme: dark) {
  .notif {
    background-color: rgba(72, 193, 181, 0.5215686275);
  }
  .notif p {
    color: #EEEEEE;
  }
  .sidebar {
    background: #222831;
  }
  .sidebar__title {
    color: #EEEEEE;
  }
  .sidebar__logo img:last-child {
    filter: brightness(0) invert(1);
    opacity: 0.6;
  }
  .sidebar__link {
    color: #EEEEEE;
  }
  .sidebar__link--active {
    color: #222831;
  }
  .main {
    background-color: #222831;
  }
  .header {
    background: #222831;
  }
  .header__profile div {
    background: rgba(235, 236, 238, 0.1882352941);
  }
  .header__profile div img {
    filter: brightness(0) invert(1);
  }
  .wrap__title {
    color: #EEEEEE;
  }
  .wrap__empty h4 {
    color: #EEEEEE;
  }
}/*# sourceMappingURL=main.css.map */