html {
  height: 100%;
}
body {
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  background: #1a74c0;
  background-image: url('./background.png');
  background-size: 3px;
  color: #222;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
}
.hidden {
  display: none;
}
.notVisible {
  visibility: hidden;
}

.wrapper {
  position: relative;
  height: 100vh;
}
.wrapper-content {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

.logo {

}
.logo-name {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  letter-spacing: -1px;
}
.logo-hl {
  color: #faff00;
}

.welcome {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
}
.welcome-head {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  padding: 12px 0;
  margin-bottom: 18px;
}
.welcome-rect {
  width: 280px;
  background: #fff;
  border-radius: 30px;
  padding: 12px;
  margin: 0 auto 18px auto;
  height: 78px;
  text-align: left;
  color: #222;
  box-sizing: border-box;
  overflow: hidden;
  line-height: 24px;
}
.welcome-rect-image {
  width: 72px;
  height: 72px;
  margin: -9px 0 -9px 0;
  float: left;
}
.welcome-rect-time {
  float: left;
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  background: #faff00;
  text-align: center;
  margin-left: 6px;
  margin-right: 12px;
}
.welcome-rect-title {
  font-size: 14px;
  font-weight: bold;
  margin-top: 3px;
}
.welcome-rect-description {
  font-size: 14px;
  font-weight: normal;
}
.welcome-text {
  margin: 0;
  padding: 6px 0;
}
.welcome-hl {
  text-decoration: underline;
  color: #faff00;
}

.button {
  width: 260px;
  margin: 24px auto;
  padding: 0;
  text-align: center;
  background: #faff00;
  color: #222;
  font-weight: 600;
  font-size: 24px;
  border-radius: 100px;
  cursor: pointer;
  height: 58px;
  line-height: 58px;
  text-transform: uppercase;
}
.button--soft {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.workout-round {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.workout-ex {
  background: #fff;
  border-radius: 30px;
  padding: 12px;
  width: 260px;
  margin: 18px auto 24px auto;
  box-sizing: border-box;
  box-shadow: 0 0 0 12px rgba(255,255,255,.1);
}
.workout-ex-name {
  font-weight: bold;
  font-size: 24px;
}
.workout-ex-image {
  width: 260px;
  height: 260px;
  margin: 0 -12px;
  border: 0;
}
.workout-ex-timer {
  background: #fff;
  height: 58px;
  line-height: 58px;
  font-size: 30px;
  font-weight: bold;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.workout-ex-timer-time {
  position: relative;
}
.workout-ex-timer-progress {
  background: #faff00;
  position: absolute;
  width: 0;
  left: 0;
  top: 0;
  height: 58px;
  transition: width 1000ms linear;
}
.workout-next {
  background: #fff;
  border-radius: 30px;
  padding: 12px;
  text-align: center;
  width: 260px;
  margin: 0 auto;
  box-sizing: border-box;
}
.workout-next-title {
  text-transform: uppercase;
  font-size: 12px;
  color: #1a74c0;
  font-weight: 300;
}
.workout-next-name {
  font-size: 18px;
  font-weight: 500;
}

.noTransition {
  transition: none;
}
