.launch-game-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #140630;
    background-repeat: no-repeat;
    background-size: 100%;
    display: none;
  }
  
  .launch-game-wrapper.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .launch-game-wrapper .launch-game-container {
    width: 100%;
    height: 100%;
    background: #140630;
  }
  
  .launch-game-wrapper .launch-game-container.full {
    width: 100%;
    height: 100%;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #140630;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-header > i {
    color: #fff;
    font-size: 1.2rem;
    padding: 8px 16px;
    cursor: pointer;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  
  /* .launch-game-wrapper .launch-game-container .launch-game-header > i:first-of-type {
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-header > i:first-of-type:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-header > i:last-of-type {
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-header > i:last-of-type:hover {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  } */
  
  .launch-game-wrapper .launch-game-container .launch-game-content {
    width: 100%;
    height: calc(100% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content > img {
    width: 120px;
    margin-bottom: 15px;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content > img.rotate {
    -webkit-animation: rotate 1.2s ease-out infinite forwards;
            animation: rotate 1.2s ease-out infinite forwards;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content > span {
    margin-top: 30px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content > span.failed {
    color: red;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content #myProgress {
    width: 100%;
    background-color: #272727;
    position: relative;
    border-radius: 4px;
    max-width: calc(375px * 0.7 * 0.92);
    margin-top: -20px;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content #myBar {
    width: 0%;
    height: 2px;
    -webkit-box-shadow: 0 0px 5px 2px rgba(255, 255, 255, 0.7);
            box-shadow: 0 0px 5px 2px rgba(255, 255, 255, 0.7);
    background: #fff;
    text-align: center;
    line-height: 2px;
    color: #fff;
    border-radius: 4px;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content #myBar > span {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -20px;
    text-shadow: 0.1em 0.1em 0.2em black;
    font-size: 14px;
    display: none;
  }
  
  .launch-game-wrapper .launch-game-container .launch-game-content > iframe {
    width: 100%;
    height: 100%;
    display: none;
  }