#timeline * {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
#tl-scope-menu {
  position: absolute;
  bottom:40px;
  left :0px;
  width : 80px;
  transition: all 0.8s ease 0s;
  box-shadow: rgb(0 0 0 / 16%) 0px 6px 12px 0px;
  background-color: rgb(41, 50, 60);
}
#tl-scope-menu div {
  background-color: rgb(41, 50, 60);
  color: rgb(106, 116, 133);
  width : 100%;
  padding : 10px 10px;
  text-align: left;
}
#tl-scope-menu div:hover {
  color: rgb(240, 240, 240);
  cursor: pointer;
}
#tl-scope-menu div.selected {
  background-color: rgb(58, 69, 82);
  color: rgb(240, 240, 240);
}
#timeline {
  position: fixed;
  bottom:30px;
  right :30px;
  background-color: rgb(41, 50, 60);
  height : 44px;
  width : 700px;
  padding: 6px 32px;
}
#t-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 32px;
}

#timeline span {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 10px;
}

#timeline-range_area {
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  flex-grow: 1;
  margin-right: 24px;
  margin-left: 24px;
}

#timeline-current-position {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  background :rgb(106, 116, 133);
  outline: none;
  height:4px;
  width: 100%;
}

#timeline-current-position::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  cursor: pointer;
  box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px 0px;
  background-color: rgb(211, 216, 224);
  color: rgb(211, 216, 224);
  border-color: rgb(211, 216, 224);
}

#play-box {
  margin-left: -8px;
  margin-right: 16px;
}
.timeline-btn {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(106, 116, 133);
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  font-family: ff-clan-web-pro, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-box-pack: center;
  justify-content: center;
  letter-spacing: 0.3px;
  line-height: 14px;
  outline: 0px;
  text-align: center;
  transition: all 0.4s ease 0s;
  vertical-align: middle;
  opacity: 1;
  pointer-events: all;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  margin-left: 7px;
  border: 0px;
  padding: 0px;
  position: relative;
}
#timeline-label {
  bottom: calc(100% + 20px);
  display: flex;
  position: absolute;
  width: 100%;
  margin-left: -32px;
  -webkit-box-pack: center;
  justify-content: center;
  pointer-events: none;
}
#timeline-label-text {
  background-color: rgb(41, 50, 60);
  border-radius: 32px;
  color: rgb(255, 255, 255);
  display: flex;
  height: 64px;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  min-width: 176px;
  opacity: 0.8;
  padding: 0px 24px;
}