
  div.center {
    position: relative;

    /* top: 0%;
    left: 0%; */
    /* transform: translate(-60%, -50%); */
    
  }
  #control {
    position: relative;
    bottom: 10px;
    width: 20px;
    height: 20px;
    /* right: -50%; */
    cursor: pointer;
    transform: scale(2.5);
    margin: auto
    
  }
  #control .border {
    width: 100%;
    height: 100%;
    border: 1px solid #33739E;
    border-radius: 20px;
  }
  #control.is--playing .border {
    border-top: none;
    border-bottom: none;
    animation: spin 1.5s ease-in-out infinite;
  }
  #control .play {
    position: absolute;
    top: 6px;
    left: 9px;
    box-sizing: border-box;
    height: 7px;
    width: 5px;
    border-color: transparent transparent transparent #33739E;
    transition: 100ms all ease;
    will-change: border-width;
    cursor: pointer;
    border-style: solid;
    border-width: 5px 0 5px 5px;
  }
  #control.is--playing .play {
    border-style: double;
    border-width: 0px 0 0px 6px;
    transform: translate(-1px, 1px);
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  