.TrackList .m-container {
  display: block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  white-space: nowrap;
  width: 80%;
  padding-left: 20px; }
  .TrackList .m-container .m-selected_track {
    color: #1C2242;
    background: url("../img/trackList/bg.png") no-repeat center 10% #A6A4A9;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 20px 0 0 20px; }
    .TrackList .m-container .m-selected_track .m-main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 10px; }
      .TrackList .m-container .m-selected_track .m-main .m-name {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding: 10px;
        background: rgba(28, 34, 66, 0.9); }
        .TrackList .m-container .m-selected_track .m-main .m-name div {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          font-size: 1.5em;
          color: #E4A53C;
          text-shadow: 0px 0px 5px #E4A53C; }
      .TrackList .m-container .m-selected_track .m-main .m-play {
        width: 60px;
        height: 60px;
        margin-left: 10px; }
        .TrackList .m-container .m-selected_track .m-main .m-play div {
          display: block;
          width: 100%;
          height: 100%;
          background: #e7b2c6;
          border-radius: 50%;
          cursor: pointer;
          position: relative; }
          .TrackList .m-container .m-selected_track .m-main .m-play div i {
            display: block;
            position: absolute;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            white-space: nowrap;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 30px;
            border-color: transparent transparent transparent #1C2242;
            margin-left: 3px; }
        .TrackList .m-container .m-selected_track .m-main .m-play:hover div {
          -webkit-transform: rotate(-20deg);
                  transform: rotate(-20deg); }
        .TrackList .m-container .m-selected_track .m-main .m-play.isAnimating div {
          -webkit-animation: HalfSpinOpacity 1s ease-in-out 1;
                  animation: HalfSpinOpacity 1s ease-in-out 1; }
    .TrackList .m-container .m-selected_track .m-info {
      height: 22px; }
      .TrackList .m-container .m-selected_track .m-info span {
        padding-left: 20px;
        color: #1C2242; }
    .TrackList .m-container .m-selected_track.isAnimating .m-name div {
      -webkit-animation: animationWidthMax 3s ease 1;
              animation: animationWidthMax 3s ease 1; }
  .TrackList .m-container .m-track {
    text-shadow: 0px 0px 5px #E4A53C;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
    font-size: 1.2em;
    cursor: pointer; }
    .TrackList .m-container .m-track > div {
      padding: 3px 10px;
      background: rgba(166, 164, 169, 0.5); }
    .TrackList .m-container .m-track .m-number {
      width: 50px;
      max-width: 50px;
      text-align: right;
      border-radius: 20px 0 0 20px;
      margin-right: 10px;
      font-family: 'mSimpleRoundFont';
      line-height: 28px; }
    .TrackList .m-container .m-track .m-name {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .TrackList .m-container .m-track .m-name div {
        display: block;
        -webkit-transition: 3s ease-in-out;
        transition: 3s ease-in-out;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 0;
        overflow: hidden; }
    .TrackList .m-container .m-track:hover > div, .TrackList .m-container .m-track.isSelected > div {
      background: url("../img/trackList/bg.png") no-repeat #A6A4A9; }
    .TrackList .m-container .m-track.isAnimating .m-name div {
      -webkit-animation: animationWidthMax 3s ease 1;
              animation: animationWidthMax 3s ease 1; }
    .TrackList .m-container .m-track:nth-of-type(2):hover > div, .TrackList .m-container .m-track:nth-of-type(2).isSelected > div {
      background-position: center 0%; }
    .TrackList .m-container .m-track:nth-of-type(3):hover > div, .TrackList .m-container .m-track:nth-of-type(3).isSelected > div {
      background-position: center 8%; }
    .TrackList .m-container .m-track:nth-of-type(4):hover > div, .TrackList .m-container .m-track:nth-of-type(4).isSelected > div {
      background-position: center 16%; }
    .TrackList .m-container .m-track:nth-of-type(5):hover > div, .TrackList .m-container .m-track:nth-of-type(5).isSelected > div {
      background-position: center 24%; }
    .TrackList .m-container .m-track:nth-of-type(6):hover > div, .TrackList .m-container .m-track:nth-of-type(6).isSelected > div {
      background-position: center 32%; }
    .TrackList .m-container .m-track:nth-of-type(7):hover > div, .TrackList .m-container .m-track:nth-of-type(7).isSelected > div {
      background-position: center 40%; }
    .TrackList .m-container .m-track:nth-of-type(8):hover > div, .TrackList .m-container .m-track:nth-of-type(8).isSelected > div {
      background-position: center 48%; }
    .TrackList .m-container .m-track:nth-of-type(9):hover > div, .TrackList .m-container .m-track:nth-of-type(9).isSelected > div {
      background-position: center 56%; }
    .TrackList .m-container .m-track:nth-of-type(10):hover > div, .TrackList .m-container .m-track:nth-of-type(10).isSelected > div {
      background-position: center 64%; }
    .TrackList .m-container .m-track:nth-of-type(11):hover > div, .TrackList .m-container .m-track:nth-of-type(11).isSelected > div {
      background-position: center 72%; }
    .TrackList .m-container .m-track:nth-of-type(12):hover > div, .TrackList .m-container .m-track:nth-of-type(12).isSelected > div {
      background-position: center 80%; }
    .TrackList .m-container .m-track:nth-of-type(13):hover > div, .TrackList .m-container .m-track:nth-of-type(13).isSelected > div {
      background-position: center 88%; }

.TrackList.isSelected .m-track .m-name div {
  width: 100%; }

.TrackList .m-popup {
  position: absolute;
  display: block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  white-space: nowrap;
  top: 35px;
  left: 30px;
  width: 500px;
  height: 500px;
  padding: 25px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 25px;
  background: #A6A4A9;
  box-shadow: 0px 0px 20px 0px #E4A53C; }
  .TrackList .m-popup .m-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    background: #1C2242;
    color: #A6A4A9;
    font-family: 'mSimpleRoundFont'; }
    .TrackList .m-popup .m-close:hover {
      opacity: 0.8; }
  .TrackList .m-popup iframe {
    position: absolute;
    z-index: 10001; }
  .TrackList .m-popup.isOpen {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
