.l-container {
  width: 50px;
  height: 400px;
  position: absolute;
  right: 50%;
  top: 15%;
}

.l-sword {
  height: 100%;
  animation: float 6s ease-in-out infinite;
}

.l-handle-orb {
  width: 15px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 7px;
  z-index: -1;
}
.l-handle-orb:after {
  content: ' ';
  display: block;
  position: relative;
  width: 5px;
  height: 5px;
}

.handle-orb {
  color: #6572b6;
}
.handle-orb:after {
  border-radius: 20px;
  border: 5px solid #6572b6;
  background-color: #6572b6;
}

.l-handle-block {
  width: 100%;
  height: 20px;
  display: block;
  margin: 0 auto;
  background-color: #757576;
}

.l-small-handle-block {
  width: 100%;
  height: 10px;
  display: block;
  margin: 0 auto;
  background-color: #757576;
}

.handle-block {
  color: #757576;
}

.l-handle-block-curve {
  position: absolute;
  width: 75px;
  left: -13px;
  z-index: 1;
  height: 3px;
  display: block;
  margin: 0 auto;
}

.l-large-handle-block-curve {
  position: absolute;
  width: 85px;
  left: -18px;
  z-index: 1;
  height: 3px;
  display: block;
  margin: 0 auto;
}
.l-large-handle-block-curve:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: -3px;
  left: -3px;
  width: 10px;
  height: 10px;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
  background-color: #757576;
}
.l-large-handle-block-curve:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
  background-color: #757576;
}

.handle-block-curve {
  background-color: #757576;
}

.l-handle {
  width: 60%;
  height: 70px;
  display: block;
  margin: 0 auto;
}
.l-handle:after {
  content: ' ';
  display: block;
  position: relative;
  margin: 0 auto;
}

.handle {
  background-image: repeating-linear-gradient(180deg, #a2a8ca 2px, #757576 8px);
}

.l-blade {
  height: 200px;
  position: relative;
}

.l-blade-top {
  width: 0;
  height: 0;
  position: absolute;
  left: 10%;
}

.blade-top {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #f1f1f1;
}

.l-blade-left {
  position: absolute;
  top: 0;
  left: 15%;
  width: 35%;
  height: 125%;
  z-index: -1;
}

.l-blade-right {
  position: absolute;
  top: 0;
  right: 15%;
  width: 35%;
  height: 125%;
  z-index: -1;
}

.blade-left {
  background-color: #e8e8e8;
}

.blade-right {
  background-color: #cacaca;
}

.l-blade-bottom {
  left: 14%;
  top: 215px;
  width: 0;
  height: 0;
  border: 18px solid transparent;
  border-bottom-color: #e8e8e8;
  position: relative;
}
.l-blade-bottom:after {
  content: '';
  position: absolute;
  left: -18px;
  top: 18px;
  width: 0;
  height: 0;
  border: 18px solid transparent;
  border-top-color: #e8e8e8;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
