$blue: #0072ff;
body {
  background-color: $blue;
  h1{
    text-align: center;
    color: white;
    font-size: 50px;
    font-weight: normal;
  }
  .adder {
    position: relative;
    width: 250px;
    margin: 0px auto;
    display: block;
    ::-webkit-input-placeholder {
       color: #cecece;
    }
    .input {
      outline: none;
      border: 1px solid white;
      background-color: $blue;
      color: white;
      height: 50px;
      width: 250px;
      padding-left: 10px;
      font-weight: 800;
      font-size: 16px;
      margin-left: -5px;
    }
    span {
      position: absolute;
      right: 0;
      top: 0;
      font-size: 30px;
      font-weight: 800;
      line-height: 1.8;
      cursor: pointer;
      transition: all 200ms;
      color: white;
      will-change: transform;
      &:hover{
        transform: rotate(180deg);
      }
    }
  }
  ol#list {
    padding: 0px;
    .draggable {
      will-change: transform;
      font-weight: 800;
      height: 50px;
      list-style-type: none;
      margin: 10px;
      background-color: white;
      color: $blue;
      width: 250px;
      line-height: 3.2;
      padding-left: 10px;
      cursor: move;
      transition: all 200ms;
      user-select: none;
      margin: 10px auto;
      position: relative;
      &:after {
        content: 'drag me';
        right: 7px;
        font-size: 10px;
        position: absolute;
        cursor: pointer;
        line-height: 5;
        transition: all 200ms;
        transition-timing-function: cubic-bezier(0.48, 0.72, 0.62, 1.50);
        transform: translateX(120%);
        opacity: 0;
      }
      &:hover {
        &:after {
          opacity: 1;
          transform: translate(0);
        }
      }
    }
  }
}

.over {
  transform: scale(1.1, 1.1);
}
body.dragging, body.dragging * {
  cursor: move !important;
}

.dragged {
  position: absolute;
  opacity: 0.5;
  z-index: 2000;
}

ol#list li.placeholder {
  position: relative;
  /** More li styles **/
}
ol#list li.placeholder:before {
  position: absolute;
  /** Define arrowhead **/
}
.footer {
  padding: 10px 0;
}