.bootstrap-element {
  width: 100%;
  height: 100%;
  background-image: url('../images/cli-patcher-magicbg.png');
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  color: #a09b8c;
  border: 2px solid #1e282d;
  box-sizing: border-box;
  -webkit-user-select: none;
  cursor: default;
}

.bootstrap-element .bootstrap-controls {
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.bootstrap-element .bootstrap-controls .btn {
  height: 15px;
  width: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.bootstrap-element .bootstrap-controls .btn.minimize {
  background-image: url('../images/control-hide.png');
  margin-right: 10px;
}

.bootstrap-element .bootstrap-controls .btn.close {
  background-image: url('../images/control-close.png');
}


.bootstrap-element .logo-container {
  width: 100%;
  background-image: url('../images/lol-logo-4x.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 50px;
  padding-top: 88px;
}

.bootstrap-element .bootstrap-title {
  padding-left: 34px;
  margin-top: 31px;
}

.bootstrap-element .bootstrap-title, .progress-base, .progress-element, .message {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .075em;
  text-transform: uppercase;
  font-family: 'LoL Display',
             TimesNewRoman,
             'Times New Roman',
             Times,
             Baskerville,
             Georgia,
             serif;
}

.bootstrap-element .progress-base {
  margin-top: 14px;
  margin-left: 34px;
  position: relative;
  background: -webkit-linear-gradient(#785a28, #463714);
  width: 426px;
  height: 8px;
  overflow: hidden;
}

.bootstrap-element .progress-background {
  position: absolute;
  background-color: #242328;
  width: 424px;
  height: 6px;
  top: 1px;
  left: 1px;
}

.bootstrap-element .progress-reveal {
  position: absolute;
  background-color: #242328;
  width: 422px;
  height: 4px;
  top: 2px;
  right: 2px;
  z-index: 1000;
}

.bootstrap-element .progress-bar {
  position: absolute;
  background: -webkit-linear-gradient(left, #0596aa, #0bc8b9, #cdfafa);
  width: 422px;
  height: 4px;
  top: 2px;
  left: 2px;
}

.bootstrap-element .progress-element {
  margin-top: 14px;
  padding-left: 35px;
}

.bootstrap-element .eta, .progress {
  display: inline-block;
}

.bootstrap-element .progress {
  position: absolute;
  right: 35px;
  text-align: right;
}

.bootstrap-element .progress-element::after {
  /* content: '...'; */
  overflow: hidden;
}

.bootstrap-element .message {
  display: none;
  margin-top: 28px;
  text-transform: none;
  padding-left: 34px;
  padding-right: 35px;
}

.bootstrap-element .spinner-container {
  width: 100%;
}

.bootstrap-element .spinner-container .spinner {
  height: 40px;
  animation: spin 4s linear 0s infinite;
  margin-left: 226px;
}

.bootstrap-element .spinner-container .progress-message {
  width: 100%;
  text-align: center;
  margin-top: 10px;

  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .075em;
  text-transform: uppercase;
  font-family: 'LoL Display',
             TimesNewRoman,
             'Times New Roman',
             Times,
             Baskerville,
             Georgia,
             serif;
}

@keyframes spin {
    100% {
      transform: rotate(360deg);
    }
  }
}
