html,
body {
    font-family: 'Lato', sans-serif !important;
    font-size: 14px;
}
body {
  background-color: #e6e6e6;
  margin: 0;
  padding: 0;
}
body .nw {
  white-space: nowrap;
}
body .container-editor {
  width: 100%;
  max-width: 1200px;
  min-width: 550px;
  margin: 20px auto;
  padding: 1em;
  background-color: #fff;
  border-radius: 4px;
  border: thin solid #ccc;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
body .container-editor h1 {
  color: #096;
  text-align: center;
}
body .container-editor .add-song {
  border: 2px solid #096;
  padding: 1em;
  border-radius: 10px;
  background-color: rgba(0, 153, 102, 0.1);
  margin-bottom: 4em;
  padding: 10px 100px 10px 10px;
}
body .container-editor .add-song legend {
  padding: 5px 10px;
  border: 2px solid #096;
  border-radius: 50px;
  background-color: #096;
  color: white;
  font-weight: 600;
}
body .container-editor .add-song > div {
  padding: 5px 0;
}
body .container-editor .add-song input[type=text] {
  display: inline-block;
  width: 250px;
  line-height: 18px;
  padding: 5px 10px;
  border: thin solid #ccc;
  border-radius: 6px;
}
body .container-editor .add-song input[type=text]:focus {
  border-color: #096;
  outline: 0;
  box-shadow: 0 0 5px rgba(0, 153, 102, 0.5);
}
body .container-editor .add-song input[type=text]::after {
  content: "";
  display: block;
  clear: both;
}
body .container-editor .add-song label {
  text-align: right;
  padding: 0 16px 0 0;
  float: left;
  width: 150px;
}
body .container-editor .add-song label::after {
  content: "";
  display: block;
  clear: both;
}
body .container-editor .add-song button.save {
  border: none;
  position: relative;
  width: 140px;
  height: 40px;
  left: 166px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: #096;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
body .container-editor .add-song button.save:hover {
  background-color: #004d33;
}
body .container-editor ul.lista {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .container-editor ul.lista li {
  position: relative;
  border-radius: 6px;
  padding: 10px 100px 10px 10px;
}
body .container-editor ul.lista li > div {
  padding: 5px 0;
}
body .container-editor ul.lista li input[type=text] {
  display: inline-block;
  width: 250px;
  line-height: 18px;
  padding: 5px 10px;
  border: thin solid #ccc;
  border-radius: 6px;
}
body .container-editor ul.lista li input[type=text]:focus {
  border-color: #096;
  outline: 0;
  box-shadow: 0 0 5px rgba(0, 153, 102, 0.5);
}
body .container-editor ul.lista li input[type=text]::after {
  content: "";
  display: block;
  clear: both;
}
body .container-editor ul.lista li label {
  text-align: right;
  padding: 0 16px 0 0;
  float: left;
  width: 150px;
}
body .container-editor ul.lista li label::after {
  content: "";
  display: block;
  clear: both;
}
body .container-editor ul.lista li.disabled label {
  color: #aaa;
}
body .container-editor ul.lista li.disabled input[type=text] {
  color: #bbb;
}
body .container-editor ul.lista li::after {
  content: "";
  display: block;
  clear: both;
}
body .container-editor ul.lista li:nth-child(even) {
  background-color: #eee;
}
body .container-editor ul.lista li button.save {
  border: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  bottom: 20px;
  right: 20px;
  width: 140px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: #096;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
body .container-editor ul.lista li button.save[disabled] {
  display: none;
}
body .container-editor ul.lista li button.save:hover {
  background-color: #004d33;
}
body header {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/lkp60-header-bg.jpg);
  margin-bottom: 20px;
}
body header div {
  text-align: center;
  color: white;
  font-family: lato, sans-serif;
  font-weight: bold;
  font-size: 2em;
  text-shadow: 0 0 20px rgba(0, 136, 0, 0.8);
}
body .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
body .container .intro {
  padding: 0 1em 2em;
}
body .container .intro p {
  font-size: 1.2em;
  font-weight: 300;
}
body .container .response h1 {
  text-align: center;
  color: #096;
}
body .container .response.error h1 {
  color: #cc0000;
}
body .container .response h3,
body .container .response p {
  text-align: center;
  font-weight: 300;
}
body .container .all,
body .container .selected {
  overflow: hidden;
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding: 10px;
}
body .container .all ul,
body .container .selected ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body .container .all ul li,
body .container .selected ul li {
  min-height: 40px;
  margin: 2px 0;
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  border-radius: 6px;
  background-color: #eee;
  position: relative;
}
body .container .selected ul li .bubble {
  position: absolute;
  width: 220px;
  height: 110px;
  left: 30px;
  top: 20px;
  background-image: url(../img/bubble.png);
  z-index: 10;
}
body .container .all ul li:not(.hidden):nth-child(even),
body .container .selected ul li:not(.hidden):nth-child(even) {
  background-color: #fff;
}
body .container .all ul li.sortable-chosen,
body .container .selected ul li.sortable-chosen {
  opacity: 0.1;
}
body .container .all ul li.sortable-ghost,
body .container .selected ul li.sortable-ghost {
  opacity: 0.4;
}
body .container .all ul li .song,
body .container .selected ul li .song {
  padding: 5px 0 5px 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 56px);
  overflow: hidden;
  font-size: 0.9em;
}
body .container .all ul li .song p,
body .container .selected ul li .song p {
  margin: 0;
}
body .container .all ul li .song p.title,
body .container .selected ul li .song p.title {
  color: #003322;
  font-weight: 600;
}
body .container .all ul li .song p.desc,
body .container .selected ul li .song p.desc {
  font-size: 0.8em;
}
body .container .all ul li .pkt,
body .container .selected ul li .pkt {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 42px;
  font-size: 0.8em;
  padding: 0;
  background-color: #c6c6c6;
  border-radius: 6px 0 0 6px;
  z-index: 1;
  font-weight: 300;
}
body .container .all ul li .btn,
body .container .selected ul li .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  padding: 0;
  background-color: #c6c6c6;
  border-radius: 0 6px 6px 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0.7;
  font-size: 1.5em;
}
body .container .all ul li .btn:hover,
body .container .selected ul li .btn:hover {
  opacity: 1;
}
body .container .all ul li.hidden,
body .container .selected ul li.hidden {
  opacity: 0.3;
}
body .container .all.disabled ul li .btn,
body .container .selected.disabled ul li .btn {
  display: none;
}
body .container .selected {
  border-radius: 16px;
  min-height: 240px;
  overflow: auto;
  max-height: calc(100vh - 32px);
  background: #f8f8f8;
  box-shadow: 0 0 8px inset rgba(0, 0, 0, 0.3);
}
body .container .selected > div {
  position: relative;
  padding-bottom: 45px;
}
body .container .selected ul li article.song {
  color: #003322;
  font-weight: 600;
}
body .container .selected ul li span.no {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  min-width: 24px;
  padding: 0 3px 0 10px;
  border-right: 3px solid #080;
  background-color: #c6c6c6;
  border-radius: 6px 0 0 6px;
  background-image: url(../img/scroll_arrow_top.png), url(../img/scroll_arrow_bottom.png);
  background-repeat: no-repeat;
  background-size: 7px 4px;
  background-position: 3px 3px, 3px calc(100% - 3px);
  position: relative;
}
body .container .selected ul li span.no::after {
  content: "";
  position: absolute;
  width: 7px;
  height: calc(100% - 24px);
  left: 3px;
  top: 12px;
  background-image: url(../img/scroll_dot_bg.png);
}
body .container .selected ul li:nth-child(10n+1) span.no {
  border-right-color: #008040;
}
body .container .selected ul li:nth-child(10n+2) span.no {
  border-right-color: #00994d;
}
body .container .selected ul li:nth-child(10n+3) span.no {
  border-right-color: #00b359;
}
body .container .selected ul li:nth-child(10n+4) span.no {
  border-right-color: #00cc66;
}
body .container .selected ul li:nth-child(10n+5) span.no {
  border-right-color: #00e673;
}
body .container .selected ul li:nth-child(10n+6) span.no {
  border-right-color: #00ff80;
}
body .container .selected ul li:nth-child(10n+7) span.no {
  border-right-color: #1aff8c;
}
body .container .selected ul li:nth-child(10n+8) span.no {
  border-right-color: #33ff99;
}
body .container .selected ul li:nth-child(10n+9) span.no {
  border-right-color: #4dffa6;
}
body .container .selected ul li:nth-child(10n+10) span.no {
  border-right-color: #66ffb3;
}
body .container .selected ul li:nth-child(10n+11) span.no {
  border-right-color: #80ffbf;
}
body .container .selected ul li .btn {
  text-indent: -100px;
  background-image: url(../img/basket_icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
body .container .selected .submit-btn {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 300;
  border-radius: 20px;
  background-color: #0a6;
  color: white;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
}
body .container .selected .submit-btn:hover {
  background-color: #007747;
}
body .container .selected.fixed {
  position: fixed;
  left: 50%;
}

@media screen and (min-width: 640px) {
  body .container .all ul li,
body .container .selected ul li {
    font-size: 1.4rem;
  }
}

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