.audio-recorder audio {
  display: none;
}

.audio-recorder .alert {
  margin-bottom: 10px;
}

.audio-recorder .audio-panel {
  position: relative;
  width: 100%;
  height: 20px;
  padding: 20px;
  background-color: #EEE;
  border: 1px solid #CACBCD;
  -webkit-border-radius: 30px;
     -moz-border-radius: 30px;
          border-radius: 30px;
}

.audio-recorder .audio-panel .left-wrapper {
  float: left;
}

.audio-recorder .audio-panel .right-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
}

.audio-recorder .audio-panel a {
  float: left;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in;
     -moz-transition: background-color 0.2s ease-in;
       -o-transition: background-color 0.2s ease-in;
          transition: background-color 0.2s ease-in;
}

.audio-recorder .audio-panel a.disabled {
  cursor: default;
}

.audio-recorder .audio-panel a.record-btn {
  margin-right: 24px;
  background-color: #FF0000;
  border-radius: 50%;
}

.audio-recorder .audio-panel a.record-btn.disabled,
.audio-recorder .audio-panel a.record-btn.disabled:hover {
  background-color: #f0a8a8;
}

.audio-recorder .audio-panel a.record-btn:hover {
  background-color: #e60000;
}

.audio-recorder .audio-panel a.play-btn {
  width: 0;
  height: 0;
  padding: 0;
  margin-right: 24px;
  background: none;
  border-color: transparent transparent transparent #00a4d8;
  border-style: solid;
  border-width: 10px 0 10px 20px;
}

.audio-recorder .audio-panel a.play-btn.disabled,
.audio-recorder .audio-panel a.play-btn.disabled:hover {
  border-color: transparent transparent transparent #87d2ea;
}

.audio-recorder .audio-panel a.play-btn:hover {
  border-color: transparent transparent transparent #0091bf;
}

.audio-recorder .audio-panel a.pause-btn {
  position: relative;
  display: inline-block;
  display: none;
  margin-right: 24px;
  background: none;
}

.audio-recorder .audio-panel a.pause-btn:before,
.audio-recorder .audio-panel a.pause-btn:after {
  position: absolute;
  top: 0;
  left: 2px;
  display: block;
  width: 7px;
  height: 20px;
  background-color: #00a4d8;
  content: " ";
}

.audio-recorder .audio-panel a.pause-btn:after {
  left: 11px;
}

.audio-recorder .audio-panel a.pause-btn.disabled:before,
.audio-recorder .audio-panel a.pause-btn.disabled:hover:before,
.audio-recorder .audio-panel a.pause-btn.disabled:after,
.audio-recorder .audio-panel a.pause-btn.disabled:hover:after {
  background-color: #87d2ea;
}

.audio-recorder .audio-panel a.pause-btn:hover:before,
.audio-recorder .audio-panel a.pause-btn:hover:after {
  background-color: #0091bf;
}

.audio-recorder .audio-panel a.stop-btn {
  margin-right: 20px;
  background-color: #00a4d8;
}

.audio-recorder .audio-panel a.stop-btn.disabled,
.audio-recorder .audio-panel a.stop-btn.disabled:hover {
  background-color: #87d2ea;
}

.audio-recorder .audio-panel a.stop-btn:hover {
  background-color: #0091bf;
}

.audio-recorder .audio-panel .info-bar-wrapper {
  width: 100%;
  height: 20px;
  padding-right: 180px;
  padding-left: 84px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.audio-recorder .audio-panel .info-bar-wrapper.w-recording {
  padding-left: 128px;
}

.audio-recorder .audio-panel .info-bar-wrapper .info-bar {
  height: 20px;
  background: #dddddd;
}

.audio-recorder .audio-panel .info-bar-wrapper .info-bar .eq-bar {
  display: none;
  width: 100%;
  height: 100%;
}

.audio-recorder .audio-panel .info-bar-wrapper .info-bar .tracker-bar {
  height: 100%;
  background-color: transparent;
}

.audio-recorder .audio-panel .time-container {
  float: left;
  width: 90px;
  height: 20px;
  margin-right: 15px;
  font-weight: bold;
  text-align: center;
  vertical-align: top;
}

.audio-recorder .audio-panel .time-container .recording-container,
.audio-recorder .audio-panel .time-container .audio-loading {
  display: none;
}

.audio-recorder .audio-panel .mute-btn {
  float: left;
  width: 18px;
  height: 15px;
  margin-top: 2.5px;
  margin-right: 5px;
  margin-bottom: 2.5px;
  background: url("./../../../../theme/ki_base/pix/jplayericons.jpg") 0 -170px no-repeat;
}

.audio-recorder .audio-panel .mute-btn.is-muted {
  background: url("./../../../../theme/ki_base/pix/jplayericons.jpg") -60px -170px no-repeat;
}

.audio-recorder .audio-panel .volume-ctrl {
  float: left;
  width: 40px;
  height: 5px;
  margin-top: 7.5px;
  vertical-align: top;
}

.audio-recorder .audio-panel .ui-slider {
  cursor: pointer;
  background: #dddddd;
}

.audio-recorder .audio-panel .ui-slider.ui-corner-all,
.audio-recorder .audio-panel .ui-slider .ui-corner-all {
  border: none;
  border-radius: 0;
}

.audio-recorder .audio-panel .ui-slider .ui-slider-handle {
  display: none;
}

.audio-recorder .audio-panel .ui-slider .ui-slider-range {
  background: #00a4d8;
}

.audio-recorder .audio-panel.flash-audio-panel {
  width: 108px;
}

.audio-recorder .audio-panel.flash-audio-panel.no-recording {
  width: 64px;
}

.audio-recorder .audio-panel.flash-audio-panel img.wami-loading {
  position: absolute;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}

.audio-recorder .audio-panel.flash-audio-panel a.stop-btn {
  margin-right: 0;
}

.audio-recorder .audio-panel.flash-audio-panel .right-wrapper {
  display: none;
}

.audio-recorder .audio-panel.flash-audio-panel .right-wrapper .time-container {
  width: 50px;
  margin-right: 0;
}

.coverflow {
  position: relative;
  margin-top: 30px;
}

.coverflow .coverflow-inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  list-style: none;
}

.coverflow .coverflow-inner .item {
  position: absolute;
  left: 0%;
  display: block;
  width: 65%;
  height: 100%;
  padding: 30px 20px;
  background-color: white;
  border: 2px solid #eaeef1;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.coverflow .coverflow-inner .item .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: black;
  opacity: 0;
}

.coverflow .coverflow-inner .item .panel-content {
  z-index: 2;
}

.coverflow .coverflow-inner .item .panel-icon {
  position: absolute;
  top: -27px;
  left: 50%;
  z-index: -1;
  width: 61px;
  height: 61px;
  border: 10px solid white;
  -webkit-border-radius: 40px;
     -moz-border-radius: 40px;
          border-radius: 40px;
}

.coverflow .coverflow-inner .item .locked-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  font-size: 19px;
  font-weight: bold;
}

.coverflow .coverflow-inner .item .locked-icon div {
  display: block;
}

.coverflow .coverflow-inner .item .locked-icon.left {
  right: auto;
  left: 20px;
}

.coverflow .coverflow-inner .item .panel-index {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  overflow: auto;
  font-size: 19px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.coverflow .coverflow-inner .item .panel-index .panel-index-item {
  width: 20px;
  height: 44px;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
     -moz-transition: opacity 0.5s ease-in-out;
       -o-transition: opacity 0.5s ease-in-out;
          transition: opacity 0.5s ease-in-out;
}

.coverflow .coverflow-inner .item .panel-index .panel-index-item.remove {
  opacity: 0;
}

.coverflow .coverflow-inner .item .panel-index .panel-index-item .icon-lock4 {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
     -moz-transition: opacity 0.5s ease-in-out;
       -o-transition: opacity 0.5s ease-in-out;
          transition: opacity 0.5s ease-in-out;
}

.coverflow .coverflow-inner .item .panel-index .panel-index-item .icon-lock4.remove {
  opacity: 0;
}

.coverflow .coverflow-inner .item .panel-index .panel-index-left {
  float: left;
  margin-left: 10px;
}

.coverflow .coverflow-inner .item .panel-index .panel-index-right {
  float: right;
  margin-right: 10px;
}

.coverflow .coverflow-inner.animation-enabled .item .overlay {
  -webkit-transition: opacity 0.5s ease-in-out, height 0.1s;
     -moz-transition: opacity 0.5s ease-in-out, height 0.1s;
       -o-transition: opacity 0.5s ease-in-out, height 0.1s;
          transition: opacity 0.5s ease-in-out, height 0.1s;
}

.coverflow .coverflow-inner.animation-enabled .item .panel-icon {
  -webkit-transition: all 0.8s ease-in-out;
     -moz-transition: all 0.8s ease-in-out;
       -o-transition: all 0.8s ease-in-out;
          transition: all 0.8s ease-in-out;
}

.coverflow .coverflow-inner .item.active {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}

.coverflow .coverflow-inner .item.active .panel-icon {
  top: -41px;
}

.coverflow .coverflow-inner .depth-1 {
  border-color: #cbd5dd;
  -webkit-transform: scale(0.9, 0.9);
      -ms-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}

.coverflow .coverflow-inner .depth-1 .overlay {
  opacity: .1;
}

.coverflow .coverflow-inner .depth-2 {
  border-color: #adbcc8;
  -webkit-transform: scale(0.8, 0.8);
      -ms-transform: scale(0.8, 0.8);
          transform: scale(0.8, 0.8);
}

.coverflow .coverflow-inner .depth-2 .overlay {
  opacity: .2;
}

.coverflow .coverflow-inner .depth-3 {
  border-color: #8ea4b4;
  -webkit-transform: scale(0.7, 0.7);
      -ms-transform: scale(0.7, 0.7);
          transform: scale(0.7, 0.7);
}

.coverflow .coverflow-inner .depth-3 .overlay {
  opacity: .3;
}

.coverflow .coverflow-control {
  position: absolute;
  top: 40%;
  z-index: 1000;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  font-size: 75px;
  line-height: normal;
  color: #747577;
  cursor: pointer;
  background-position: center;
  -webkit-transition: color 0.5s ease-in-out;
     -moz-transition: color 0.5s ease-in-out;
       -o-transition: color 0.5s ease-in-out;
          transition: color 0.5s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}

.coverflow .coverflow-control:hover {
  color: #2ab0d9;
}

.coverflow .coverflow-control.disabled {
  color: #dbdbdc;
}

.coverflow .coverflow-control.disabled:hover {
  color: #dbdbdc;
}

.coverflow .coverflow-control.left {
  left: 3%;
}

.coverflow .coverflow-control.right {
  right: 3%;
}

.kap-summary {
  margin-bottom: 20px;
}

.kap-summary .kap-summary-content {
  position: relative;
  display: none;
  overflow: hidden;
  -webkit-transition: height 0.2s ease-in-out;
     -moz-transition: height 0.2s ease-in-out;
      -ms-transition: height 0.2s ease-in-out;
       -o-transition: height 0.2s ease-in-out;
          transition: height 0.2s ease-in-out;
}

.kap-summary .kap-summary-content .kap-summary-content-grad {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 50px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
     -moz-transition: opacity 0.2s ease-in-out;
      -ms-transition: opacity 0.2s ease-in-out;
       -o-transition: opacity 0.2s ease-in-out;
          transition: opacity 0.2s ease-in-out;
}

.kap-summary.open .kap-summary-content .kap-summary-content-grad {
  opacity: 0;
}

.kap-summary .kap-summary-more {
  cursor: pointer;
}

.kap-summary .kap-summary-more:after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  font-size: 14px;
  line-height: 11px;
  color: #fff;
  text-indent: 1px;
  background-color: #00a4d8;
  border-radius: 5px;
  content: '+';
}

.kap-summary .kap-summary-more:hover:after {
  background-color: #0cc5ff;
}

.kap-summary.open .kap-summary-more:after {
  margin-left: 7px;
  font-size: 18px;
  line-height: 8px;
  text-indent: 2px;
  content: '-';
}