.form-control:focus {
  box-shadow: unset;
  border-color: #8c7ed7;
}

.card {
  min-height: 600px;
}

.todo_heading {
  color: #755feb;
  font-size: 27px;
  font-weight: bold;
}

#taskinput {
  padding-right: 135px;
  color: grey;
}
#taskinput::placeholder {
  opacity: 0;
}

.priority_dropdown {
  border-color: #755feb;
  color: #755feb;
}
.priority_dropdown:hover {
  border-color: #755feb;
  background-color: #755feb;
  color: #fff;
}
.priority_dropdown:focus {
  box-shadow: unset;
  border-color: #8c7ed7;
}
.priority_dropdown:active {
  border-color: #755feb;
  background-color: #755feb;
  color: #fff;
}

.form-floating {
  position: relative;
}
.form-floating .dropdown {
  position: absolute;
  top: 15px;
  right: 13px;
}

.enter_task_name {
  color: rgba(117, 95, 235, 0.8392156863);
}

.add_task_btn {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.1019607843);
  background-color: #755feb;
  border-color: #755feb;
}
.add_task_btn:hover {
  background-color: #644aef;
  border-color: #755feb;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.1019607843);
}
.add_task_btn:focus {
  box-shadow: unset;
  border-color: #755feb;
}

.task_box_container .notask_div {
  text-align: center;
}
.task_box_container .notask_div .no_task {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-top: 80px;
}
.task_box_container .notask_div .no_task img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.task_box_container .notask_div .not_yet {
  color: #755feb;
  font-weight: 500;
  margin-top: 10px;
  font-size: 13px;
}
.task_box_container .hidetask {
  display: none;
}
.task_box_container .task_box {
  width: 500px;
  margin: auto;
  box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.1803921569), 1px 2px 13px 1px rgba(0, 0, 0, 0);
  padding: 12px 0px;
  border-radius: 7px;
}
@media screen and (max-width: 576px) {
  .task_box_container .task_box {
    width: 280px;
  }
}
.task_box_container .task_box .task_id {
  background-color: #755feb;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  text-align: center;
  font-weight: bold;
  color: #fff;
}
.task_box_container .task_box .task_name {
  color: #755feb;
  font-weight: bold;
  font-size: 17px;
  text-transform: capitalize;
}
.task_box_container .task_box .task_name span {
  line-height: 20px;
}
.task_box_container .task_box .show_time {
  font-size: 12px;
  color: rgba(128, 128, 128, 0.831372549);
  transition: all 0.3s;
}
.task_box_container .task_box .options .tick_btn {
  border: none;
  background: none;
}
.task_box_container .task_box .options i:nth-child(1) {
  cursor: pointer;
  color: green;
  font-size: 20px;
}
.task_box_container .task_box .options i:nth-child(2) {
  cursor: pointer;
  color: rgba(255, 0, 0, 0.7215686275);
  font-size: 18px;
}
.task_box_container .animated_add {
  backface-visibility: visible !important;
  animation-name: flipInX;
  animation-duration: 0.45s;
  animation-fill-mode: both;
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.remove_delete {
  animation: deletebtn 1s ease;
}

.add_poppers {
  background-image: url(/popper.gif);
  background-size: contain;
}

@keyframes deletebtn {
  0% {
    transform: translate(0px);
    opacity: 1;
  }
  100% {
    transform: translate(-1000px);
    opacity: 0;
  }
  30% {
    transform: translate(50px);
    opacity: 0.5;
  }
}
.zoom_tick {
  animation: zoomtick 0.5s ease;
}

@keyframes zoomtick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=style.css.map */
