.cope-core-resourcecard-audio {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  width: 100%;
  max-width: 999px;
  left: 0;
  top: 0;
  height: auto;
}
@media screen and (min-width: 1023px) {
  .cope-core-resourcecard-audio {
    top: 25%;
    left: calc(50% - 500px);
    padding: 0px;
  }
}
.cope-core-resourcecard-audio__wrapper {
  width: 100%;
  display: block;
  position: relative;
  height: auto;
  background-color: #000000;
}
.cope-core-resourcecard-audio__main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}
@media screen and (min-width: 1023px) {
  .cope-core-resourcecard-audio__main {
    padding: 70px;
  }
}
.cope-core-resourcecard-audio__title {
  color: var(--white);
  text-align: center;
  font-size: 25px;
  line-height: 35px;
  padding: 20px;
}
@media screen and (min-width: 767px) {
  .cope-core-resourcecard-audio__title {
    font-size: 28px;
    line-height: 39px;
  }
}
@media screen and (min-width: 1023px) {
  .cope-core-resourcecard-audio__title {
    font-size: 30px;
    line-height: 42px;
  }
}
.cope-core-resourcecard-audio--poster {
  width: 171px;
}
.cope-core-resourcecard-audio--poster svg {
  width: 100%;
}
.cope-core-resourcecard-audio__controls {
  width: 100%;
  padding: 10px 20px 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
}
.cope-core-resourcecard-audio__play {
  position: absolute;
  z-index: 1;
  bottom: 21px;
  left: 24px;
  cursor: pointer;
  width: 79px;
  height: 47px;
  background: rgba(var(--white), 0.32) url(resources/controls-play.svg) center center no-repeat;
  border: 0;
  transition: transform 0.25s;
}
.cope-core-resourcecard-audio__button {
  border: 0;
  background-color: transparent;
  width: 75px;
  height: 48px;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  padding: 30px 0 4px;
  cursor: pointer;
}
.cope-core-resourcecard-audio__button:focus {
  outline: 0;
  background-color: var(--grey);
}
.cope-core-resourcecard-audio__button:active {
  transform: translate(0, 2px);
}
.cope-core-resourcecard-audio__button--play {
  background: url(clientlibs-audio/resources/play-blue.svg) top 5px center no-repeat;
}
.cope-core-resourcecard-audio__button--pause {
  display: none;
  background: url(clientlibs-audio/resources/icon-player-pause.svg) top 5px center no-repeat;
}
.cope-core-resourcecard-audio__button--volume {
  background: url(clientlibs-audio/resources/icon-player-volume-2.svg) top 5px center no-repeat;
}
.cope-core-resourcecard-audio__button--muted {
  background: url(clientlibs-audio/resources/icon-player-volume-0.svg) top 5px center no-repeat;
}
.cope-core-resourcecard-audio__button--medium {
  background: url(clientlibs-audio/resources/icon-player-volume-1.svg) top 5px center no-repeat;
}
.cope-core-resourcecard-audio:active .cope-core-resourcecard-audio__play {
  transform: translate(0, 2px);
}
.cope-core-resourcecard-audio--playing .cope-core-resourcecard-audio__button--play {
  display: none;
}
.cope-core-resourcecard-audio--playing .cope-core-resourcecard-audio__button--pause {
  display: inline-block;
}
.cope-core-resourcecard-audio--volume {
  position: relative;
  display: inline-block;
}
.cope-core-resourcecard-audio--volume__toggle {
  opacity: 0;
  position: absolute;
}
.cope-core-resourcecard-audio--volume__popup {
  display: none;
  z-index: 3;
  position: absolute;
  bottom: 107px;
  left: -13px;
  padding: 10px;
  border-radius: 5px;
  background: var(--grey);
  transform: rotate(-90deg);
}
.cope-core-resourcecard-audio--volume__toggle:checked ~ .cope-core-resourcecard-audio--volume__popup {
  display: block;
}
.cope-core-resourcecard-audio--volume__input {
  width: 75px;
  margin: 5px 0 0 0;
}
.cope-core-resourcecard-audio__progress {
  width: 0;
  height: 100%;
  background-color: #54575c;
}
.cope-core-resourcecard-audio__progress-bar {
  position: absolute;
  width: 100%;
  background-color: var(--grey-dark);
  cursor: pointer;
  transition: height 0.25s, width 0.25s;
  height: 24px;
  bottom: 0;
}
@media screen and (min-width: 767px) {
  .cope-core-resourcecard-audio__progress-bar {
    height: 4px;
  }
}
.cope-core-resourcecard-audio__poster {
  background: url(clientlibs-audio/resources/poster.svg) no-repeat;
  width: 171px;
  height: 102px;
}
.cope-core-resourcecard-audio__poster--default {
  background: url(clientlibs-audio/resources/poster-default.svg) no-repeat;
}