*{box-sizing:border-box;font-family:Verdana,Geneva,Tahoma,sans-serif;margin:0;padding:0}.App{display:flex;height:100vh;overflow:hidden;width:100vw}.Sidebar{height:100%;min-width:210px;width:300px}.Main{background-image:url(/static/media/mountain.96bd0dc331dcae11b94c.jpg);background-repeat:no-repeat;background-size:cover;height:100%;position:relative;width:100%}.User{align-items:center;border-bottom:1px solid #ebebeb;display:flex;justify-content:space-between;padding:1rem}.User .logo img{border:2px solid blue;border-radius:50%;width:50px}.User .info p{font-size:1.1rem;font-weight:700}.User .info a{display:flex;justify-content:flex-end;text-decoration:none}.Modal{background:rgba(0,0,0,.8);height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:99}.Modal .container{left:50%;position:absolute;top:25%;-webkit-transform:translate(-50%,-25%);transform:translate(-50%,-25%)}.AddNewTodo{border-bottom:1px solid}.AddNewTodo .btn{height:70px;padding:1rem;width:100%}.AddNewTodo .btn button{background-color:blue;border:none;border-radius:3px;color:#f5f5f5;cursor:pointer;font-size:1rem;font-weight:700;height:100%;width:100%}.AddNewTodo .btn button:hover{-webkit-filter:brightness(1.1);filter:brightness(1.1);transition:all .3s ease}.TodoForm{background:#fff;border-radius:4px;padding:1rem 1rem calc(1rem + 40px);width:100%}.TodoForm .text input{border:none;font-size:1.2rem;margin-bottom:.5rem;padding:1rem;width:100%}.TodoForm .text input:focus{border-bottom:1px solid #0080ff;outline:none}.TodoForm .remind{align-items:center;display:flex;padding:.5rem}.TodoForm p{margin-left:10px}.TodoForm .title{align-items:center;display:flex;margin-bottom:5px}.TodoForm .pick-day{padding:1.5rem 1.5rem 0}.TodoForm .pick-time{padding:1.5rem}.TodoForm .pick-project{padding:.5rem}.TodoForm .pick-project .projects{display:flex;flex-wrap:wrap;padding:1rem 1rem 0}.TodoForm .pick-project .projects .project{border:1px solid #0080ff;border-radius:5px;cursor:pointer;margin:5px;padding:5px}.TodoForm .pick-project .projects .active{background:#0080ff;color:#fff}.TodoForm .cancel{cursor:pointer;position:absolute;right:5px;top:0}.TodoForm .confirm{bottom:0;left:0;position:absolute;width:100%}.TodoForm .confirm button{background:#0080ff;border:none;border-radius:0 0 4px 4px;color:#fff;cursor:pointer;font-size:1.1rem;height:40px;width:100%}.Calendar{border-bottom:1px solid #ebebeb;padding:1rem}.Calendar .header,.Calendar .header .title{align-items:center;display:flex}.Calendar .header .title{flex:1 1}.Calendar .header .title p{font-size:1.1rem;font-weight:700;margin-left:5px}.Calendar .header .btns span{align-items:center;border-radius:50%;cursor:pointer;display:flex;height:25px;justify-content:center;width:25px}.Calendar .header .btns span:hover{background-color:#ebebeb;transition:background .3s ease-in-out}.Calendar .items{padding:.5rem}.Calendar .items .item{cursor:pointer;font-size:1rem;margin:5px;padding:.25rem}.Projects{border-bottom:1px solid #ebebeb;padding:1rem}.Projects .header,.Projects .header .title{align-items:center;display:flex}.Projects .header .title{flex:1 1}.Projects .header .title p{font-size:1.1rem;font-weight:700;margin-left:5px}.Projects .header .btns{align-items:center;display:flex}.Projects .header .btns span.edit{margin-right:5px}.Projects .header .btns span{align-items:center;border-radius:50%;cursor:pointer;display:flex;height:25px;justify-content:center;width:25px}.Projects .header .btns span:hover{background-color:#ebebeb;transition:background .3s ease-in-out}.Projects .items{padding:.5rem}.Project{align-items:center;display:flex;font-size:1rem;margin:5px;padding:.25rem;position:relative}.Project .name{cursor:pointer;word-break:break-all}.Project .btns{align-items:center;display:flex}.Project .btns .total-todos{align-items:center;background:#ebebeb;border-radius:50%;font-size:.9rem;height:25px;justify-content:center;width:25px}.Project .btns .edit-delete,.Project .btns .total-todos{display:flex;position:absolute;right:0}.Project .btns .edit-delete span{align-items:center;border-radius:50%;cursor:pointer;display:flex;height:25px;justify-content:center;transition:background .3s ease-in-out;width:25px}.Project .btns .edit-delete span.edit:hover{background:#acffac}.Project .btns .edit-delete span.delete:hover{background:#ffacac}.AddNewProject .add-button span{margin-right:5px}.ProjectForm{background-color:#fff;border-radius:4px;padding:1rem 1rem 40px;position:relative}.ProjectForm input{border:none;font-size:1.2rem;height:40px;margin:15px 0;width:100%}.ProjectForm input:focus{border-bottom:1px solid #0080ff;outline:none}.ProjectForm button{border:none;bottom:0;color:#fff;cursor:pointer;font-size:1rem;font-weight:700;height:40px;position:absolute;transition:-webkit-filter .3s ease-in-out;transition:filter .3s ease-in-out;transition:filter .3s ease-in-out,-webkit-filter .3s ease-in-out;width:50%}.ProjectForm button.cancel{background-color:#bebebe;left:0}.ProjectForm button.confirm{background-color:#0080ff;right:0}.ProjectForm button:hover{-webkit-filter:brightness(1.1);filter:brightness(1.1)}.Todos{background-color:#fff;border-radius:4px;bottom:40px;height:80%;left:40px;opacity:.9;overflow-y:auto;padding:0 .5rem .5rem;position:absolute;width:450px}.Todos .selected-project{border-bottom:1px solid #eee;font-size:1.2rem;font-weight:700;margin:1rem 0;padding-bottom:2px;text-transform:capitalize}.Todos .todos{overflow-y:auto}.Todo{padding:.5rem 1rem}.Todo .todo-container{align-items:center;display:flex}.Todo .todo-container .check-todo{align-items:center;display:flex;justify-content:center;width:15px}.Todo .todo-container span{cursor:pointer}.Todo .todo-container .text{cursor:pointer;flex:1 1;margin:0 10px;position:relative}.Todo .todo-container .text span{color:#bebebe;font-size:.8rem}.Todo .todo-container .text .line{background:#bebebe;height:1px;position:absolute;top:25%;transition:width .25s ease-in-out;width:0}.Todo .todo-container .text .line-through{width:100%}.Todo .todo-container .add-to-next-day{margin-right:10px}.EditTodo{background-color:#fff;border-radius:4px;bottom:40px;height:80%;left:530px;opacity:.9;position:absolute;width:450px}.EditTodo .header{border-bottom:1px solid #eee;font-size:1.2rem;font-weight:700;margin:1rem .5rem;padding-bottom:2px}.Next7Days .day{display:flex;margin:5px}.Next7Days .day .name{font-size:1rem;font-weight:700}.Next7Days .day .total-todos{margin-left:10px}
/*# sourceMappingURL=main.428cf2dc.css.map*/