@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

html {
  user-select: none;
}

body {
  margin: 0;
  padding: 0;
  background: rgb(233, 233, 233);
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  background: #1d1d1d;
}

.option_bar {
  width: 100%;
  height: 8%;
  border-bottom: 1px solid #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.title {
  color: #707070;
  font-size: 16px;
  font-weight: 600;
  margin-left: 20px;
}

.option_icons {
  margin-right: 20px;
}

.icon {
  font-size: 13px;
  color: rgb(172, 172, 172);
  margin-left: 15px;
  cursor: pointer;
}

.icon:hover {
  color: rgb(255, 255, 255);
}

.edit_options {
  width: 100%;
  height: 30%;
}

.control_bar {
  width: 100%;
  height: 7%;
  background: #232323;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lable {
  color: #c9c9c9;
  font-weight: 500;
  font-size: 12px;
}

.control_icons {
  margin-left: 10px;
}

.lable_wrapper {
  margin-right: 25px;
}

.timeline {
  width: 100%;
  height: 54.5%;
  background: #242424;
}

.btn_list {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
}

.btn {
  background: #3c3c3c;
  outline: none;
  border: none;
  margin-left: 10px;
  padding: 5px 12px;
  border-radius: 2px;
  color: #a7a7a7;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  background: #555555;
}

.btn:active {
  background: #3c3c3c;
}

input[type="file"] {
  display: none;
}

.song_name {
  padding: 5px 12px;
  border-radius: 2px;
  color: #a7a7a7;
  font-size: 12px;
  font-weight: 700;
}

.mid_wrapper {
  width: 100%;
  height: 78%;
  display: flex;
}

.mid_timeline {
  width: 100%;
  height: 100%;
  display: flex;
}

.properties_timeline {
  width: 20%;
  height: 100%;
  background: #282828;
}

.led_wrapper {
  width: 85%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: auto;
}

.timeline_seek {
  width: 80%;
  height: 100%;
  overflow: scroll;
}

.timeline_seek::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.timeline_seek::-webkit-scrollbar-track {
  background: #272727;
}

.timeline_seek::-webkit-scrollbar-thumb {
  background: #4e504f;
  border-radius: 50px;
}

.timeline_seek::-webkit-scrollbar-thumb:hover {
  background: #353636;
}

.timeline_seek::-webkit-scrollbar-corner {
  background: #272727;
}

.led {
  background: #858585;
  border-radius: 50px;
  margin-left: 18px;
  font-size: 8px;
  text-align: center;
  color: rgb(0, 0, 0);
  font-weight: 700;
  padding: 4px;
  margin-bottom: 15px;
}

.on {
  background: #3bb841;
  box-shadow: 0px 0px 8px 2px #3bb841d2;
}

.seek_track {
  width: auto;
  height: 15px;
  position: sticky;
  top: 0;
  margin-left: 20px;
  background: #1a1a1a;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}

.seek_fill {
  width: 0%;
  height: 100%;
  background: #57788b48;
  border-right: solid 1px #57a5e0;
  touch-action: none;
  z-index: 999;
}

.seek_fill::after {
  content: "";
  width: 0;
  height: 0;
  float: right;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #57a5e0;
  position: relative;
  left: 7.5px;
  z-index: 999;
  clear: both;
}

.seek_range {
  height: 5px;
  position: relative;
  top: -2px;
  left: 20px;
  background: #3f3f3f;
  border-radius: 50px;
  border-color: #1f1f1f;
  outline: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  width: 11px;
  -webkit-appearance: none;
  height: 11px;
  background: rgb(122, 122, 122);
  border-radius: 50px;
}

.timeline_lable {
  color: #979797;
  font-size: 10px;
  z-index: 0;
}

.seek_line {
  width: 1px;
  height: 100%;
  background: #57a5e0;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 888;
}

.pins {
  width: 20px;
  height: 100%;
  display: inline-block;
  background: #242424;
  transform: translateY(-16px);
  position: sticky;
  display: inline-block;
  z-index: 5;
  left: 0;
}

.node_track {
  width: 100%;
  height: 100%;
}

.node_line {
  width: 100%;
  height: 20px;
  background: #1d1d1d;
  margin-top: 2px;
  display: flex;
  align-items: center;
  position: relative;
}

.node {
  width: 100px;
  height: 13px;
  position: absolute;
  touch-action: none;
  display: inline-block;
  background: #4d4d4d;
  color: rgb(153, 153, 153);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: 0px 0px 3px 1px #97979734;
}

.node:hover {
  cursor: grab !important;
}

.node:active {
  cursor: grabbing !important;
}

.node_lable {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #656867;
  font-weight: 700;
}

.active_node {
  border: #57a5e0 0.5px solid;
}

.text_box {
  width: auto;
  background: none;
  outline: none;
  border: none;
  color: #c9c9c9;
  font-weight: 500;
  font-size: 12px;
  margin-left: 10px;
  margin-bottom: -6px;
  font-family: "Roboto", sans-serif;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.properties_row {
  width: auto;
  position: relative;
  color: #979797;
  font-size: 12px;
  font-weight: 700;
  margin-left: 30px;
}

.properties_row table {
  border-collapse: separate;
  border-spacing: 0 0.8em;
}
