@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  ::selection{
    color: #ffff;
    background: rgb(142, 73, 232);
  }
  body{
    background: linear-gradient(to bottom, #68EACC 0%, #497BE8 100%);
  }
/**navbar**/

/* .nav {
    width: 100%;
    padding-top: 20px;
  background-color: #02082c;
    color: #eabf9f; display: flex;
  
    justify-content: center;
    z-index: 100000;

  }
  
  .nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
  }
  
  .nav-links li {
    font-size: 20px;
    margin-right: 30px;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
  } */

  .logo {
    position: absolute;
    right: 40px;
    top: 30px;
    font-size: 27px;
    color:white;
    font-style: italic;
  }

  /* NAVBAR */  
  #navbtns {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 30px;
    z-index: 8888;
    transform: translateY(-50%);
    gap: 50px;
  }
  
  #navbtns a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: black;
  }
  
  #navbtns a:hover > .itemreveal {
    display: block;
  }
  
  #navbtns i {
    font-size: 1.5rem;
    color: #5c5c5c;
  }
  #navbtns i:active {
    font-size: 1.3rem;
  }
  
  .itemreveal {
    padding: 2px 5px;
    background-color: white;
    border-radius: 0 5px 5px 0;
    display: none;
  }
  


  /***Clock***/

.clock-bg{
    background: url(https://static.vecteezy.com/system/resources/previews/001/736/031/non_2x/abstract-3d-fluid-blue-and-pink-gradient-wave-vector.jpg) no-repeat center center fixed;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
}

.clock{
   
    height: 320px;
    width: 320px;
    background-color: rgba(255,255,255,0.06);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-radius: 50%;
      position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 30px 30px 35px rgba(0,0,0,0.25);
            box-shadow: 30px 30px 35px rgba(0,0,0,0.25);
    border: 2px solid rgba(255,255,255,0.1);
}
img{
    opacity: 0.6;
}
.hand{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-radius: 5px;
    -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
            transform-origin: bottom;
}
.hour{
    height: 60px;
    width: 10px;
    top: 100px;
}
.minute{
    height: 80px;
    width: 5px;
    top: 80px;
}
.seconds{
    height: 90px;
    width: 3px;
    top: 70px;
}


/***Pomodoro***/

.pomo{
    background-image: url(https://static.vecteezy.com/system/resources/previews/000/579/103/large_2x/abstract-3d-realistic-liquid-or-fluid-circles-purple-pastels-color-beautiful-background-vector.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #13054d;
    color: white;
    padding: 5em 0em;

}

.body-session {
    background-color: #ce4e4e;
}

.body-break {
    background-color: #0E5A15;
}

.body-pause {
    background-color: #969000;
}

.header {
    padding-bottom: 1em;
    text-align: center;
    font-size: 3em;
}

.length-control {
    max-width: 600px;
    margin: 0 auto;
}

.length-control__wrap {
    display: inline-block;
    width: 295px;
    text-align: center;
}

.length-control__wrap a {
  text-decoration: none;
  color: white;
}

.length-control__wrap.disabled > *,
.length-control__wrap.disabled a:hover {
    opacity: .3;
}

.length-control__header {
    font-size: 1.3em;
}

.length-control__button {
    display: inline-block;
    padding: 0 10px;
    font-size: 2.5em;
    opacity: .7;
    transition: opacity .5s;
}

.length-control__button:hover {
    opacity: .9;
    color: lightgray;
    text-decoration: none;
}

.length-control__button.disabled {
    opacity: .2;
}

.length-control__number {
    width: 90px;
    display: inline-block;
    font-size: 3em;

}

.timer-button-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timer {
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.timer-container {
    display: none;
    position: relative;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 20px 0;
    border: solid 1px rgba(255, 255, 255, .1);
}

.timer:hover {
    border-color: rgba(255, 255, 255, .3);
}

.timer:hover .timer-header__action {
    opacity: .7;
}

.timer-header__action {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.5em;
    opacity: .5;
    transition: opacity .5s;
}

.timer-header__general {
    margin: 10px 0 30px;
    text-align: center;
    font-size: 2em;
}

.timer-header__pause {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    opacity: .5;
}

.timer-count {
    padding-left: 3px;
}

.timer-count__wrap {
    display: inline-block;
    position: relative;
    width: 195px;
    height: 195px;
}

.timer-count__chart {
    position: absolute;
    top: 0;
    left: 7px;
}

.timer-count__text {
    display: block;
    padding-top: 45px;
    font-size: 3em;
    text-align: center;
}

.timer-count__label {
    display: block;
    text-align: center;
    opacity: .8;
}

@media all and (max-width: 620px) {
    .length-control__wrap {
        display: block;
        width: auto;
    }
    .timer-count__wrap {
        display: block;
        margin: 0 auto;
    }
}

/*****Todo******/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

#toDo {
  background-image: url(https://media.discordapp.net/attachments/808159075195027486/947376002085052486/901658-abstract-gradient-Big-Sur-macOS-macOS-Big-Sur-shapes.png?width=1850&height=1041);
  background-size: cover;
  background-repeat: no-repeat; 
  width: 100%;
  padding: 200px;
 
}



.wrapper{
  background: #fff;
  max-width: 400px;
  width: 100%;
  margin: 0px auto;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0px 20px 30px rgb(0 0 0 / 50%);
}
.wrapper header{
  font-size: 30px;
  font-weight: 600;
}
.wrapper .inputField{
  margin: 20px 0;
  width: 100%;
  display: flex;
  height: 45px;
}
.inputField input{
  width: 85%;
  height: 100%;
  outline: none;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 17px;
  padding-left: 15px;
  transition: all 0.3s ease;
}
.inputField input:focus{
  border-color: #8E49E8;
}
.inputField button{
  width: 50px;
  height: 100%;
  border: none;
  color: #fff;
  margin-left: 5px;
  font-size: 21px;
  outline: none;
  background: #8E49E8;
  cursor: pointer;
  border-radius: 3px;
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}
.inputField button:hover,
.footer button:hover{
  background: #721ce3;
}
.inputField button.active{
  opacity: 1;
  pointer-events: auto;
}
.wrapper .todoList{
  max-height: 250px;
  overflow-y: auto;
  padding: 0px;
}
.todoList li{
  position: relative;
  list-style: none;
  height: 45px;
  line-height: 45px;
  margin-bottom: 8px;
  background: #f2f2f2;
  border-radius: 3px;
  padding: 0 15px;
  cursor: default;
  overflow: hidden;
}
.todoList li .icon{
  position: absolute;
  right: -45px;

  background: #e74c3c;
  width: 45px;
  text-align: center;
  color: #fff;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.todoList li:hover .icon{
  right: 0px;
}
.wrapper .footer{
  display: flex;
  width: 100%;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer button{
  padding: 6px 10px;
  border-radius: 3px;
  border: none;
  outline: none;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin-left: 5px;
  background: #8E49E8;
  cursor: pointer;
  user-select: none;
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}
.footer button.active{
  opacity: 1;
  pointer-events: auto;
}


/**graph**/
#graph{
    
  background-image: linear-gradient(to right, #ffb9d8, #8cbffb);

  /*background: red;*/
  margin-bottom: 20px;

  padding: 50px 15px;
  margin-bottom: 0px;
}

.form-check-label {
  padding-left: 0; 
}

.form-check {
  margin-bottom: 0.75rem;
}

#cContainer canvas {
  background-color: #fef5f5;
}