body{
    margin: 0px;
    padding: 0px;
    background: #181820;
    color: #FFFFFF ;
}
h4{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Arial Narrow', Arial, sans-serif;
    font-weight: 300;
    color: #ffffffbd;
}
#navbar{
    display: flex;
    justify-content: space-between;    
}
.navbar{
    background: #21212B;
    padding-left: 30px;
    padding-right: 60px;
}
.fa-align-left{
    margin-right: 60px;
    color: #6D7D8B;
    cursor: pointer;
}
.fa-align-left:hover{
    opacity: 0.8;
}

#profile{
    display: flex;
    align-items: center;  
    
}
#profile_name h4{
    font-size: 22px;
    color: #FFFFFF;

}
#profile_name p{
    color:#7E8C99;
    font-size: 16px;
}
#profile_name{
    line-height: 0px;
    margin-bottom: 15px; 
}
#avator_profile{
    width: 56px;
    height: 56px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/images/avater_male_pic.png');
    border-radius: 50%;
    margin-right: 48px;
    cursor: pointer;
}
#avator_collaction{
    width: 56px;
    height: 56px;
    background-image: url('/images/house.png');
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 15px 0;
}

.section{
    padding: 60px 160px;
    position: relative;
}
.container{
    margin: 0px auto;
}
#hr_line{
    height: 2px;
    width: 239px;
    background: #21212B;
    margin: 0 auto;
}

#add_task{
    max-width: 584px;
    height: 56px;
    border: 3px solid #21212B;
    margin: 60px auto;
    border-radius: 53px;
    display: flex;
    justify-content: space-between;
    align-items: center;
 
}
#add_task>p{
    margin-left: 30px;
}

#add_btn{
    width: 48px;
    height: 48px;
    background: #FC76A1;
    border-radius: 50%;
    margin-right: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    cursor: pointer;
}
#add_btn:hover{
    box-shadow: 0 0px 15px #FC76A1;
    transform: rotate(50deg);
}

.fa-plus{
    color: #181820;
}
#hr_GO_line{
    height: 2px;
    width:102px;
    background: #FDAAC5;
    margin-top: -10px;
}
#to_go_section{
    padding: 30px 0;
    width: 100%;
}
#complete_section{
    padding: 30px 0;
    width: 100%;
}

.To-Go > i{
    font-size: 28px;
    margin-right: 10px;
  
}
.icon{ 
    width: 36px;
    height: 36px;
    background-image: url(/images/bathing.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
 
}

#to_go_container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0px auto;    
}

#complete_container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    
}
.To-Go{
    height: 68px;
    width: 100%;
    background: #21212B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 18px;
}
.completed{
    height: 68px;
    width: 100%;
    background: #21212B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 18px;
} 
.task{
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t_dec{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.t_dec >p{
   margin-left: 16px;
}
.t_due{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.t_due >p{
   margin-left: 16px;
}
.To-Go> .go_work_checker{
     width: 24px;
     height: 24px;
     -webkit-appearance: none;
     position: relative;
     border-radius: 4px;
     outline: 4px solid #FC76A1;
     margin-left: 16px;
     cursor: pointer;
}
.completed> .go_work_checker{
    width: 24px;
    height: 24px;
    -webkit-appearance: none;
    position: relative;
    border-radius: 4px;
    outline: 4px solid #17F2E5;
    margin-left: 16px;
    background-color: #17F2E5;
    cursor: pointer;
}
.To-Go >.go_work_checker:hover{
    box-shadow: 0 0 30px #FC76A1;
}
.completed >.go_work_checker:hover{
    box-shadow: 0 0 30px #17F2E5;
}
.task_clearer{
    height: 32px;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.task_clearer> i{
    font-size: 24px;
}
.To-Go>.task_clearer :hover{
    box-shadow: 0 0 15px #FC76A1;
    color: #fc76a0de;
}
.completed>.task_clearer :hover{
    box-shadow: 0 0 15px #17F2E5;
    color: #17F2E5;
}

#hr_com_line{
    height: 2px;
    width:126px;
    background: #17F2E5;
    margin-top: -10px;
}
#model_section{
    padding: 60px 60px;
    position: fixed;
    top: -40%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    
}

#model_container{
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 78px;
    margin: 0px auto;
    background:#21212B;
    position: relative;
    max-width: 650px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.63);
}

.task_hr1{
    height: 2px;
    width: 148px;
    background: #FDAAC5;
    margin-top: -20px;
    margin-bottom: 48px;
}
.task_hr2{
    height: 1px;
    width: 136px;
    background: #FDAAC5;
    margin-top: -10px;
    margin-bottom: 48px;
}

.dec_task_input{
    margin-bottom: 5px;
    position: relative;
    width: 50%;
}

.placeholder{
    position: absolute;
    top: 20%;
    left: 10px;
    color: #ffffff34;
    user-select: none;
    transition: 
    top 0.3s ease,
    font-size 0.3s ease,
    color 0.3s ease
    ;
}

.input_field{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border:none;
    outline:none;
    background: #181820;
    color: #ffffffd5;
    border-radius: 4px;
    width: 100%;
    padding: 12px;

}

.input_field:valid + .placeholder,
.input_field:focus + .placeholder{
    top: -50%;
    color: #FC76A1;
    font-size: 18px;
}

.due_period{
    display: flex;
    margin-top: 30px;
    width: 50%;
    margin-bottom: 78px;
}
#due_date{
    position: relative;
    width: 30%;
}
#due_time{
    position: relative;
    width: 30%;
    left: 16%;
}
.collection_section {
    display: flex;
    width: 100%;
    height: 150px;
    margin-top: -10px;
    background: #181820;
    justify-content: space-around;
    align-content: flex-start;
    flex-wrap: wrap;
    overflow-y: auto;
    box-shadow: 0 0 30px #000 inset;
}
.collection_section > div{
    border-radius: 50%;;
    background-repeat: no-repeat;
    background-position: center;
    
    background-size: contain;
    width: 56px;
    height: 56px;
    margin: 18px;
    background-color: white;
    
}
.collection_section > div:hover{
    box-shadow: 0 0 15px #FC76A1;
}

#clear{
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}
#clear:hover{
    opacity: 0.5;
}

#model_section.popup{
    padding: 60px 60px;
    position: absolute;
    top: -5%;
    left: 0;
    right: 0;
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}

.shadow_effect{
    box-shadow: 0 0 10px #FC76A1;
}

.navbar.active{
    filter: blur(20px);
    cursor: none;
    user-select: none;
}
.section.active{
    filter: blur(20px);
    cursor: none;
    user-select: none;
}

.sidebar{
    background: #21212B;
    padding: 30px;
    width: 168px;
    height: 100%;
    position: absolute;
    left: -10%;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: 
    left 0.3s ease,
    visibility 0.3s ease,
    opacity 0.3s ease;
}
.sidebar>div{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.sidebar>div:hover{
    opacity: 0.5;
}
.sidebar>div>div{
    width: 32px;
    height: 32px;
    border-radius: 4px;
    
}
.sidebar>div>#img1{
    margin-right: 18px;
}
.sidebar>div>#img2{
    margin-right: 18px;
}
.sidebar>div>#img3{
    margin-right: 18px;
}
.sidebar.show{
    left: 0;
    top: 0;
    visibility: visible;
    opacity: 1;
}

.button{
    background: #FC76A1;
    padding: 10px 20px;
    width: 68px;
    border-radius: 4px ;
    text-align: center;
    position: absolute;
    right: 30px;
    margin-top: 30px;
    cursor: pointer;
}
.button:hover{
    box-shadow: 0 0 30px #FC76A1;
}

.profile_section{
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0%;
    transition: 
    top 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.profile_section.active_profile{
    top: 10%;
    visibility: visible;
    opacity: 1;
}

.profile_section > .profile_container{
    max-width: 480px;
    height: 368px;
    background: #21212B;
    padding: 30px;
    position: relative;
    padding-bottom: 60px;
    box-shadow: 0 0 30px #000;
}

.profile_input{
    position: relative;
    margin-top: 30px;
    margin-right: 30px;
}
#proflie_pics{
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.profile_pic{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.avater{
    width: 98px;
    height: 98px;
    cursor: pointer;
    border-radius: 50%;
    
}
.avater:hover{
    box-shadow: 0 0 15px #17F2E5;
    opacity: 0.6;
}
#male{
    background: url(/images/avater_male_pic.png);
    background-size: cover;
    background-repeat: no-repeat;
}
#female{
    background: url(/images/avater_female_pic.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* SideBar section */
#img1{
    background-image: url(/images/school.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}
#img2{
    background-image: url(/images/house.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#img3{
    background-image: url(/images/office.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}