/*========================================================
        DARK LAYOUT
=========================================================*/
.todo-application .content-area-wrapper {
  border : 1px solid #DAE1E7;
  border-radius : 0.25rem;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar {
  width : 260px;
  height : calc(100vh - 13rem);
  height : calc(var(--vh, 1vh) * 100 - 13rem);
  background-color : #FFFFFF;
  border-top-left-radius : 0.25rem;
  border-bottom-left-radius : 0.25rem;
  -webkit-transition : all 0.3s ease;
          transition : all 0.3s ease;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .sidebar-close-icon {
  position : absolute;
  right : 0.25rem;
  top : 0.25rem;
  cursor : pointer;
  font-size : 1.25rem;
  z-index : 5;
  visibility : hidden;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu {
  width : 100%;
  box-shadow : 0 0 15px 0 rgba(0, 0, 0, 0.05);
  padding : 0.5rem 0;
  z-index : 3;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .add-task {
  padding : 1px 1.5rem;
  margin-bottom : 0.25rem;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list {
  padding : 0 1.5rem;
  position : relative;
  overflow : scroll;
  height : calc(100% - 5.4rem);
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item {
  padding-left : 0;
  padding-right : 0;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:focus {
  background-color : transparent;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:hover {
  background-color : transparent;
  color : #626262;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active {
  background-color : transparent;
  color : #7367F0;
  font-weight: bold;
}
.todo-application .content-area-wrapper .sidebar .notifications-sidebar .notifications-app-menu .list-group .list-group-item.active {
  background-color : transparent;
  color : #7367F0;
  font-weight: bold;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item i {
  top : 3px;
}
.todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu hr {
  margin-left : -1.5rem;
  margin-right : -1.5rem;
}
.todo-application .content-area-wrapper .modal .todo-item-action {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display :         flex;
  -webkit-box-align : center;
  -webkit-align-items : center;
  -ms-flex-align : center;
          align-items : center;
  -webkit-box-pack : justify;
  -webkit-justify-content : space-between;
  -ms-flex-pack : justify;
          justify-content : space-between;
  width : 6rem;
  margin-bottom : 1.25rem;
}
.todo-application .content-area-wrapper .modal .todo-item-action .todo-item-info, .todo-application .content-area-wrapper .modal .todo-item-action .todo-item-favorite, .todo-application .content-area-wrapper .modal .todo-item-action .dropdown {
  cursor : pointer;
  font-size : 1.2rem;
  line-height : 1.5;
}
.todo-application .content-area-wrapper .modal .todo-item-action .dropdown .dropdown-menu .dropdown-item {
  padding : 0.14rem 1.428rem;
}
.todo-application .content-area-wrapper .modal .todo-item-action .dropdown-toggle::after {
  display : none;
}
.todo-application .content-area-wrapper .app-content .content-area-wrapper {
  position : relative;
}
.todo-application .content-area-wrapper .completed .todo-title, .todo-application .content-area-wrapper .completed .todo-desc {
  text-decoration : line-through;
}
.todo-application .content-area-wrapper .content-right {
  width : calc(100% - 260px);
}
.todo-application .content-area-wrapper .content-right .content-wrapper {
  padding : 0;
}
.todo-application .content-area-wrapper .content-right .todo-app-list-wrapper {
  border-left : 1px solid #3a4051;
}
.todo-application .content-area-wrapper .content-right .app-fixed-search {
    padding: 0.35rem 0.1rem;
    border-bottom: 1px solid #3a4051;
    background-color: #10163a;
    border-top-right-radius: 0.5rem;
}
.todo-application .content-area-wrapper .content-right .app-fixed-search .form-control-position {
  font-size : calc(1rem * 1.1);
}
.todo-application .content-area-wrapper .content-right .app-fixed-search input {
  border : 0;
  background-color : transparent;
}
.todo-application .content-area-wrapper .content-right .app-fixed-search input:focus {
  border-color : transparent;
  box-shadow : none;
}
.todo-application .content-area-wrapper .content-right .sidebar-toggle {
  cursor : pointer;
  margin : 0.5rem 0.99rem;
  float : left;
  line-height : 1;
}
.todo-application .content-area-wrapper .content-right .sidebar-toggle i {
  font-size : 1.75rem;
}
.todo-application .content-area-wrapper .content-right .app-content-overlay {
  top : 0;
  left : 0;
  right : 0;
  bottom : 0;
  position : absolute;
  display : block;
  z-index : 2;
  visibility : hidden;
  opacity : 0;
  -webkit-transition : all 0.3s ease;
          transition : all 0.3s ease;
}
.todo-application .content-area-wrapper .content-right .app-content-overlay.show {
  visibility : visible;
  -webkit-transition : all 0.3s ease;
          transition : all 0.3s ease;
  opacity : 1;
  background-color : rgba(0, 0, 0, 0.2);
  border-radius : 0.25rem;
}
.todo-application .content-area-wrapper .content-right .todo-task-list {
  position : relative;
  height : calc(100vh - 16.35rem);
  height : calc(var(--vh, 1vh) * 100 - 16.35rem);
}
.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper {
  padding : 0;
  margin : 0;
}
.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li {
  cursor : pointer;
  -webkit-transition : all 0.2s;
          transition : all 0.2s;
  -webkit-animation : fadeIn 0.5s linear;
          animation : fadeIn 0.5s linear;
  -webkit-animation-fill-mode : both;
          animation-fill-mode : both;
  position : relative;
  padding : 1.1rem 3rem 1.2rem 2rem;
  border-top : 1px solid #393e4f;
}
.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li:hover {
  -webkit-transform : translateY(-4px);
  -ms-transform : translateY(-4px);
  transform : translateY(-4px);
  box-shadow : none;
  -webkit-transition : all 0.2s;
  transition : all 0.2s;
}
.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li .chip-wrapper {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display :         flex;
}
.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li .chip-wrapper .chip {
  margin-right : 0.25rem;
}

.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper .todo-item-action {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display :         flex;
  -webkit-box-align : center;
  -webkit-align-items : center;
  -ms-flex-align : center;
          align-items : center;
  -webkit-box-pack : justify;
  -webkit-justify-content : space-between;
  -ms-flex-pack : justify;
          justify-content : space-between;
  width : 5.75rem;
}
.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper .todo-item-actions {
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  display :         flex;
  -webkit-box-align : center;
  -webkit-align-items : center;
  -ms-flex-align : center;
          align-items : center;
  -webkit-box-pack : justify;
  -webkit-justify-content : space-between;
  -ms-flex-pack : justify;
          justify-content : space-between;
  /* width : 5.75rem; */
}
.todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper .todo-item-action a {
  cursor : pointer;
  font-size : 1.2rem;
  line-height : 1.5;
}
.todo-application .content-area-wrapper .content-right .todo-task-list .no-results {
  display : none;
  padding : 1.5rem;
  text-align : center;
}
.todo-application .content-area-wrapper .content-right .todo-task-list .no-results.show {
  display : block;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity : 0;
    top : 100px;
  }
  75% {
    opacity : 0.5;
    top : 0;
  }
  100% {
    opacity : 1;
  }
}

@media (max-width: 575.98px) {
  .todo-application .app-content .sidebar-left .todo-sidebar {
    left : -1.12rem !important;
  }
}

@media (max-width: 767.98px) {
  .todo-application .sidebar-content .sidebar-close-icon {
    visibility : visible !important;
  }
}

@media (max-width: 991.98px) {
  .todo-application .app-content .sidebar-left .todo-sidebar {
    -webkit-transform : translateX(-110%);
        -ms-transform : translateX(-110%);
            transform : translateX(-110%);
    -webkit-transition : all 0.3s ease-in-out;
            transition : all 0.3s ease-in-out;
    left : 0;
    position : fixed;
    z-index : 5;
    left : -2px;
  }
  .todo-application .app-content .sidebar-left.show .todo-sidebar {
    -webkit-transform : translateX(13%);
        -ms-transform : translateX(13%);
            transform : translateX(13%);
    -webkit-transition : all 0.3s ease;
            transition : all 0.3s ease;
    display : block;
  }
  .todo-application .app-content .content-right {
    width : 100%;
  }
  .todo-application .app-content .content-right .todo-app-list-wrapper {
    border-left : 0;
  }
  .todo-application .app-content .content-right .app-fixed-search {
    border-top-left-radius : 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .content-right .todo-task-list .todo-title-wrapper, .todo-title-area {
    display : block !important;
  }
  .content-right .todo-task-list .todo-title-wrapper .todo-item-action {
    float : none !important;
    width : 100% !important;
    display : block !important;
    margin-top : 0.5rem;
  }
  .content-right .todo-task-list .todo-title-wrapper .todo-item-action a {
    margin-right : 1rem;
  }
}

@media (max-width: 349.98px) {
  .todo-application .content-area-wrapper .sidebar .todo-sidebar {
    width : 230px;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .todo-application .content-area-wrapper .content-right .todo-task-list .todo-task-list-wrapper li {
    padding-top : 0;
  }
}