#draggable {
    font-family: roboto;
    position: relative;
    background: transparent;
    z-index: 100;
    display: inline-block;
    left: 300px;
    top: -244px;
  }
  .droppable {
    width: 100%;
    height: 100%;
  }
  .control-button {
    cursor: pointer;
    width: 57px;
    background: url("../assets/Images/Play.svg") center center / 40px 40px no-repeat;
  }
  .control-button-bottom {
    cursor: pointer;
    width: 185px;
    font-size: 16px;
    border-radius: 8px;
  }
  .control-number {
    cursor: default;
    width: 61px;
    max-height: 37px;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
  }
  .main-control {
    font-family: roboto;
    border-radius: 3px;
    background-color: white;
    border: 2px solid rgb(210, 70, 36);
    height: 45px;
    margin-bottom: 0px;
    margin-left: 1px;
    color: rgb(210, 70, 36);
    height: 45px;
  }
  .control-count {
    cursor: default;
    margin-bottom: 0px;
    font-family: roboto;
    font-size: 18px;
    width: 255px;
    height: 35px;
    display: inline-block;
    padding: 0px 0px 5px;
    text-align: center;
    border-radius: 4px;
  }
  .control-move {
    cursor: move;
    display: table-cell;
    vertical-align: middle;
    padding-left: 4px;
    height: 86px;
    width: 40px;
    border-radius: 4px;
  }
  .tamano_move {
    font-size: 2.2vw;
  }
  .control-bar {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0px;
    border-radius: 2px;
  }
  .play-button {
    content: "";
    margin: 0px auto;
    top: 25%;
    position: relative;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 1.5em 0px 1.5em 3em;
    border-color: transparent transparent transparent rgb(0, 0, 0);
    opacity: 0.75;
  }
  .imagen-play {
    background-image: url("../assets/Images/Play.svg");
  }
  .imagen-move {
    background-image: url("../assets/Images/move.svg");
  }
  .imagen-Pause {
    background-image: url("../assets/Images/Pause.svg");
  }
  .imagen-Forward {
    background-image: url("../assets/Images/Rewind.svg");
  }
  .imagen-Rewind {
    background-image: url("../assets/Images/Forward.svg");
  }
  .imagen-button {
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .disabledbutton {
    pointer-events: none;
    opacity: 0.4;
}