* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #799a05;
}

body[data-brand="TITW"] a {
    color: #003b5b;
}

svg {
  pointer-events: none;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #e5e5e5;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #666;
  cursor: default;
}

.Symbols {
  display: none;
}

.Banner {
    position: relative;
    min-height: 80px;
    height: 150px;
    height: calc(100vh - 355px);
    max-height: 150px;
    overflow: hidden;
}

.Banner img {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    margin: -75px -160px;
    width: 320px;
    height: 150px;
}

body[data-brand="TITW"] .Banner img {
    margin: 0;
    height: 80px;
    transform: translate(-50%, -50%);
}

.Tag {
  height: 30px;
  background: #799a05;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.Tag .wrap {
  margin: 0 auto;
  padding: 5px 12px;
  width: 320px;
  height: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-brand="TITW"] .Tag {
    background: #003b5b;
}

.Body {
  height: 295px;
  background: #f7f7f7;
}
.Body .wrap {
  position: relative;
  margin: 0 auto;
  width: 320px;
  height: inherit;
}

.Player,
.Error,
.Loading {
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  padding: 10px 12px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: visibility .4s ease, opacity .4s ease;
}

.Error {
  color: red;
}

.Loading svg {
  display: block;
  width: 100px;
  height: 100px;
  margin: 80px auto 0;
  color: #e5e5e5;
}

[data-status="stopped"] .Player,
[data-status="playing"] .Player,
[data-status="error"] .Error,
[data-status="loading"] .Loading {
  visibility: visible;
  opacity: 1;
}

.Details {
  height: 72px;
  overflow: hidden;
  white-space: pre-line;
}
.Details .title {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
}
.Details .subtitle {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  color: #919191;
}

.Button {
  position: absolute;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  transition: visibility .3s ease, opacity .3s ease;
}
.Button svg {
  display: block;
  width: inherit;
  height: inherit;
}
.Button:hover {
  opacity: .9 !important;
}
.Button:active {
  opacity: .8 !important;
}

.Play,
.Pause {
  left: 130px;
  top: 141px;
  width: 60px;
  height: 60px;
  transition: visibility .1s ease, opacity .1s ease;
}

.Pause {
  visibility: hidden;
  opacity: 0;
}
.Pause .stop-icon {
  display: none;
}

.Rewind {
  left: 84px;
  top: 154px;
  width: 30px;
  height: 30px;
}

.FastForward {
  left: 204px;
  top: 154px;
  width: 30px;
  height: 30px;
}

.Progress,
.VolumeBar {
  position: absolute;
  z-index: 5;
  left: 10px;
  top: 80px;
  width: 300px;
  height: 40px;
}
.Progress:before,
.VolumeBar:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 19px;
  width: 270px;
  height: 2px;
  background: #799a05;
  border-radius: 2px;
}

body[data-brand="TITW"] .Progress:before,
body[data-brand="TITW"] .VolumeBar:before {
    background: #003b5b;
}

.Progress .scrubber,
.VolumeBar .scrubber {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.Progress .scrubber:before,
.VolumeBar .scrubber:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: #799a05;
  border-radius: 50%;
}

body[data-brand="TITW"] .Progress .scrubber:before,
body[data-brand="TITW"] .VolumeBar .scrubber:before {
    background: #003b5b;
}

.VolumeBar {
    left: 58px;
    top: 242px;
    width: 204px;
}
.VolumeBar:before {
  width: 174px;
}

.Time,
.Duration {
  position: absolute;
  top: 106px;
  width: 50px;
  font-size: 10px;
  line-height: 20px;
  cursor: default;
  -webkit-user-select: unselectable;
     -moz-user-select: unselectable;
      -ms-user-select: unselectable;
          user-select: unselectable;
}

.Time {
  left: 25px;
}

.Duration {
  right: 25px;
  text-align: right;
}

.LessVolume,
.MoreVolume {
  top: 248px;
  width: 30px;
  height: 30px;
}

.LessVolume {
  left: 36px;
}

.MoreVolume {
  left: 260px;
}

[data-status="playing"] .Play,
[data-file="waiting"] .Rewind,
[data-file="waiting"] .FastForward,
[data-file="loading"] .Rewind,
[data-file="loading"] .FastForward,
[data-file="waiting"] .Progress,
[data-file="waiting"] .Time,
[data-file="waiting"] .Duration {
  visibility: hidden;
  opacity: 0;
}

[data-status="playing"] .Pause {
  visibility: visible;
  opacity: 1;
}

[data-type="live"] .Rewind,
[data-type="live"] .FastForward,
[data-type="live"] .Progress,
[data-type="live"] .Time,
[data-type="live"] .Duration,
[data-type="live"] .Pause .pause-icon {
  display: none;
}
[data-type="live"] .Pause .stop-icon {
  display: block;
}
[data-type="live"] .Play,
[data-type="live"] .Pause {
  top: 119px;
}

.isMobile .VolumeBar,
.isMobile .LessVolume,
.isMobile .MoreVolume {
  display: none;
}

.Feedback {
  margin: 0 auto;
  padding: 5px 12px;
  height: 30px;
  width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .9em;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
}
.Feedback.isActive {
  visibility: visible;
  opacity: 1;
}
