body {
  background: #020631;
  font: 14px 'Nunito', sans-serif;
}

.today {
  font-size: 22px;
  text-align: center;
  color: #fff;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  font-size: 13px;
}

.container {
  padding-top: 75px;
}

.todo-list {
  margin: 20px 0;
}

.todo-list li {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 7px;
  position: relative;
  word-break: break-word;
}

.todo-list li.danger {
  background: rgb(85, 41, 220);
}

.todo-list li.danger label {
  text-decoration: line-through;
  color: #fff;
}

.todo-list li.danger label .checkbox-mask {
  border-color: transparent;
}

.todo-list li.danger label .checkbox-mask:after {
  content: '\f00c';
  font-family: 'FontAwesome';
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
}

.todo-list li .checkbox {
  margin: 0;
  padding: 10px 15px;
  border-radius: 5px;
}

.todo-list li label {
  display: block;
  padding-right: 10px;
}

.todo-list li label input[type="checkbox"] {
  visibility: hidden;
}

.todo-list li label .checkbox-mask {
  display: block;
  border: 2px solid #666;
  width: 12px;
  height: 12px;
  border-radius: 2.5px;
  position: absolute;
  margin-left: -20px;
  margin-top: 4px;
}

.todo-list li .close {
  display: none;
  position: absolute;
  width: 12px;
  height: 16px;
  top: 50%;
  margin-top: -8px;
  right: 10px;
  font-size: 16px;
}

.todo-list li .close .fa {
  line-height: 16px;
}

.todo-list li:hover .close {
  display: block;
}

.has-feedback .fa {
  line-height: 35px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
  display: block;
  color: #666;
  transition: color 0.15s linear;
}

.has-feedback .fa:hover {
  color: #999;
}

.add-control {
  margin-top: 20px;
  position: relative;
}

.add-control .form-control {
  padding-right: 25px;
}

.add-control .refresh {
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 14px;
  transform: translateX(100%);
  margin-right: -10px;
  cursor: pointer;
  color: #9da1af;
  transition: color 0.15s linear;
}

.add-control .refresh:hover {
  color: #666;
}

.form-control,
.form-control:focus,
.form-control:active,
.form-control:active:focus {
  border: none;
  padding: 10px 15px;
  outline: none;
  box-shadow: none;
  transition: all 0.2s linear;
}

.form-control:focus {
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.separator {
  margin: 15px auto;
  width: 50%;
  height: 1px;
}

.animated {
  animation-duration: 0.45s;
  animation-fill-mode: both;
}

.animated.fast {
  animation-duration: 0.25s;
}

.zero {
  top: 8px;
  right: 0;
  font-size: 14px;
  transform: translateX(100%);
  margin-right: -10px;
  cursor: pointer;
  color: #9da1af;
  transition: color 0.15s linear;
}

button {
  font-size: 16px;
  color: #ffffff;
  background: #fff0;
  padding: 10px 20px;
  transition: all 0.3s;
  outline: none;
  border-color: #FFF;
  border-radius: 35px;
  margin-left: 5px;
  margin-right: 5px;
}

button[disabled] {
  color: #8d959b !important;
  background: #fff !important;
}

.output {
  padding-bottom: 10px;
}

.output button {
  color: #4b96f0;
}

.output button:hover,
.output button:focus {
  transform: scale(1.5);
  background: transparent;
}

#start {
  background: #6200ff;
  border: none;
  border-radius: 20px;
  padding-left: 35px;
  padding-right: 35px;
}

#start:hover {
  box-shadow: 0 0 25px 0 #452579;
  color: white;
}

#inc,
#dec {
  border: none;
  font-size: 40px;
  border-radius: 20px;
  padding-left: 35px;
  padding-right: 35px;
}

#reset {
  color: #e96575;
}

#reset:hover,
#reset:focus {
  background-color: #e96575;
  color: #fff;
  border-radius: 20px;
  padding-left: 35px;
  padding-right: 35px;
}

.pomodoro {
  text-align: center;
}

p {
  margin: 15px 0 10px;
  font-size: 46px;
  font-weight: 700;
  color: #FFF;
}

.fa-ban:before {
  content: "\f05e";
  color: #8c8c8c;
  font-size: 29px;
}

.logo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: -50px;
}

.h4, h4 {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}

a:focus, a:hover {
  color: #fbfbfb;
  text-decoration: none;
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
  color: #000;
}

@media (max-width: 768px) {
  .col-xs-offset-3 {
    margin-left: 10%;
  }

  .col-xs-6 {
    width: 80%;
  }
}

@media (min-width: 992px) {
  .container {
    width: 100%;
    max-width: 1150px;
  }
}

@media (max-width: 680px) {
  svg {
    width: 70px;
    height: 70px;
  }
}

.todo-list input[type="checkbox"] {
  opacity: 0;
}
