.audiojs {
  position: relative;
  width: 100%;
  padding: 25px;
  margin: 0 auto;
  height: 130px;
  background: #222431;
  font-family: "Roboto Slab", serif;
  font-size: 9px;
  letter-spacing: 0.8px;
  line-height: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.audiojs .rdaudio-title {
  font-size: 14px;
  left: 30px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.4px;
}
.audiojs .rdaudio-nav {
  position: absolute;
  bottom: 25px;
}
.audiojs .rdaudio-nav i + i {
  margin-left: 48px;
}
.audiojs .rdaudio-nav i {
  height: 22px;
  width: 33px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #43667C;
  color: #fff;
  position: relative;
  -moz-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  text-align: center;
  display: inline-block;
}
.audiojs .rdaudio-nav i:before {
  font-weight: 900;
  font-size: 12px;
  line-height: 22px;
}
.audiojs .rdaudio-nav i:hover {
  background: #fff;
  color: #43667C;
  cursor: pointer;
}

@media (max-width: 479px) {
  .audiojs .rdaudio-title {
    font-size: 8px;
  }
}
.audiojs .play-pause {
  position: absolute;
  left: 66px;
  top: auto;
  bottom: 25px;
  height: 22px;
  width: 33px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #43667C;
  margin: 0;
  overflow: hidden;
}

.audiojs p {
  display: none;
  position: relative;
  cursor: pointer;
  height: auto;
  margin-top: 12px;
  color: #fff;
  z-index: 232;
}
.audiojs p:hover:before {
  background: #fff;
  color: #43667C;
}

.audiojs p:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -14px;
  line-height: 25px;
  font-size: 18px;
  width: 100%;
  text-align: center;
  font-family: 'FontAwesome';
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.audiojs .play {
  display: block;
}

.audiojs .scrubber {
  margin-top: 16px;
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #444650;
  padding: 1px;
  background-clip: content-box;
}

.audiojs .progress {
  position: absolute;
  top: 1px;
  left: 1px;
  height: 8px;
  width: 0;
  background: #43667C;
  z-index: 1;
}

.audiojs .loaded {
  height: 100%;
  width: 100% !important;
  background: #444650;
}

.audiojs .time {
  color: #fff;
  position: absolute;
  right: 20px;
  bottom: 23px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.audiojs .time strong {
  font-weight: 400;
}

.audiojs .error-message {
  position: absolute;
  left: 0;
  top: 42px;
  display: none;
  margin: 0 10px;
  overflow: hidden;
  line-height: 36px;
  color: #e5e5e5;
  z-index: 1;
}

.close-button {
  cursor: pointer;
  position: absolute;
  right: 0;
  margin-right: 10px;
  font-size: 24px;
  top: -42px;
  color: #fff;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.close-button:before {
  line-height: 130px;
}
.close-button:hover {
  color: #43667C;
}

.audiojs .play:before {
  content: '\f0da ';
}

.audiojs .loading:before {
  content: '\f110';
}

.audiojs .error:before {
  content: '\f00d';
}

.audiojs .pause:before {
  content: '\f04c';
  font-size: 14px;
}

.playing .play, .playing .loading, .playing .error {
  display: none;
}

.playing .pause {
  display: block;
}

.loading .play, .loading .pause, .loading .error {
  display: none;
}

.loading .loading {
  display: block;
}

.error .time, .error .play, .error .pause, .error .scrubber, .error .loading {
  display: none;
}

.error .error {
  display: block;
}

.error .play-pause p {
  cursor: auto;
}

.error .error-message {
  display: block;
}
