*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #282828;
    font-family: Poppins, sans-serif;
    color: white;
}
.transition{
    height: 100vh;
    background-color: blue;
    width: auto;
    z-index: -1;
}
.wrapper{
    height: 100vh;
    width: auto;
}

header{
    font-size: 2rem;
    padding-top: 3rem;
    margin-bottom: 1rem;
}
form{
    margin: 0 2rem 0 2rem;
}
form, header{
    min-height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer {
    position: fixed;
    bottom: 1%;
    right: 3%;
    z-index: 5;
}
.forminput{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25em;
    flex-shrink: 3;
}

form input{
    outline: none;
    border-top-left-radius: 25em;
    border-bottom-left-radius: 25em;
    width: 100%;
}

form button{
    border-bottom-right-radius: 25em;
    border-top-right-radius: 25em;
    background-color: white;
    color: #282828;
    cursor: pointer;
    padding-right: 0.5em;
    transition: all 0.6s ease;
}
form button:hover{
    background-color: #282828;
    color: white;
}

form input, button{
    padding: 0.4em;
    font-size: 1.4rem;
    font-weight: 50;
    border: none;
    opacity: 0.93;
}
.todo-input, .todo-button{
    padding-left: 1em;
    transition: all 0.6s;
}
.forminput:hover{
    box-shadow: 0px 8px 10px rgba(255, 255, 255, 0.2);
}



.todo-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.todo-list{
    min-width: 50%;
    list-style: none;
}
.todo{
    margin: 2rem;
    border-radius: 3em;
    background-color: white;
    color: #282828;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s ease;
}
.todo li{
    flex: 1;
    padding-left: 1em;
    overflow: auto;
    overflow-wrap: break-word;
}
.trbtn{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.trbtn,.checkbtn,.editbtn{
    background-color: white;
    font-size: 1.1rem;
    transition: all 0.6 ease;
    cursor: pointer;
    transition: all 0.6s ease;
}

.trbtn:hover,.checkbtn:hover,.editbtn:hover{
    background-color: #282828;
    color: white;
}

.fa-trash,
.fa-edit,
.fa-check{
    pointer-events: none;
}

.complete{
    text-decoration: line-through;
    opacity: 0.5;
}

.fall{
    /* transform: translate3d(8rem) rotatez(20deg); */
    transform: scale(0.8);
    box-shadow: 0 5px 10px blanchedalmond; 
    opacity: 0;
}

select{
    appearance: none;
    outline: none;
    border: none;
    flex-shrink: 0;
}
select{
    width: 100%;
    cursor: pointer;
    color: #282828;
    padding: 0.8rem;
    border-radius: 24em;
    font-size: 1rem;
}
.select{
    margin: 1rem;
    margin-right: 0;
    position: relative;
    overflow: hidden;
}
.select::after{
    content: "\25BC";
    position: absolute;
    color: #282828;
    background: white;
    top: 0;
    right: 0;
    padding: 1rem;
    padding-top: 0.69rem;
    padding-bottom: 0.66rem;
    pointer-events: none;
    border-top-right-radius: 18px; 
    border-bottom-right-radius: 18px;
    transition: all 0.6s ease;
}
.select:hover::after{
    background: #282828;
    color: white;
}



.editinput,.todo-item{
    outline: none;
    font-size: x-large;
    border: none;
}

#loadinganimate{
    background: #000 url(loading.gif) no-repeat center center;
    background-size: 30%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}
@keyframes wipe-in-down {
    from {
      clip-path: inset(0 0 100% 0);
    }
    to {
      clip-path: inset(0 0 0 0);
    }
  }
  
  [transition-style="in:wipe:down"] {
    animation: 4s cubic-bezier(.25, 1, .30, 1) wipe-in-down both;
  }