@import url("font.css");
* {
  list-style: none;
  border: 0;
}
 :root{
  --primaryColor:#41729F;
  --secondColor:#E7F2F8;
  --lightColor:#ffffff;
  --darkColor:#1E2640;
  --redcolor:#d8265c;
 }

body {
    background:var(--primaryColor);
    font-family: IRANSansWeb;
    display: flex;
    align-items: center;
    flex-direction: column;
    color:var(--darkColor);
    
  }

  .todolist {

  }
  .todoparts{
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    direction: rtl;
    padding: 0;
  }
  .completetodoparts{
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    direction: rtl;
    padding: 0;
  }

  .todo{
    background-color: var(--secondColor);
    margin-bottom: 5px;
    border-radius: 3px;
    height: 45px;
    width: 250px;
    display: flex;
    justify-content: space-between;
    padding: 3px 12px;
    flex-direction: row;
    align-items: center;

  }
  .completedtodo{
    background-color: var(--secondColor);
    margin-bottom: 5px;
    border-radius: 3px;
    height: 45px;
    width: 250px;
    display: flex;
    justify-content: space-between;
    padding: 3px 12px;
    flex-direction: row;
    align-items: center;

  }
  .todoname{

  }
.completetodo{
  text-decoration: line-through;
  opacity: 0.5;
}
  .newtodo {
    display: none;
    border-radius: 5px;
    height: 40px;
    width: 215px;
  }

.addbtn{
  width: 45px;
  height: 45px;
  border-radius: 50px;
}
.fa-plus,.fa-arrow-up{
/* color: var(--primaryColor); */
font-size: 24px;
color: var(--primaryColor);
cursor: pointer;
}

.fa-trash-can{
  color:var(--redcolor);
  padding-right: 3px;
  cursor: pointer;
  
}
.fa-square-check,.fa-pen-to-square{
  color: var(--primaryColor);
  padding-right: 3px;
  cursor: pointer;

  
}
.fa-regular,.fa-square{
color: var(--primaryColor);
padding-right: 3px;
}

.titlesection{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.completetodonumbers{
  font-size: 20px;
    padding-left: 4px;
}
  /* .container {
    max-width: 400px;
    margin-top: 90px;
  }
  .search i {
    position: absolute;
  }
  .search {
    position: relative;
  }
  .icon {
    padding: 10px;
    left: 0;
  }
  .input-field {
    text-align: center;
  }
  
  input[type="text"],
  input[type="text"]:focus {
    color: #fff;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    max-width: 400px;
  }
  .todos li {
    background: #423a6f;
  }
  .delete {
    cursor: pointer;
  }
  
  
  .filtered{
    display: none !important;
  } */