.lpc-audio audio {
    width: 100%;
    border-radius: 250px;
    margin: 0;
}

.lpc-audio-1__header {
	margin-bottom: 32px;
}
[data-media-source="media-sm"] .lpc-audio-1__header {
	margin-bottom: 24px;
}
[data-media-source="media-xs"] .lpc-audio-1__header {
	margin-bottom: 24px;
}


.lpc-audio-1__title + lt-highlighter + .lpc-audio-1__text ,
.lpc-audio-1__title + .lpc-audio-1__text {
	margin-top: 28px;
}
[data-media-source="media-sm"] .lpc-audio-1__title + lt-highlighter + .lpc-audio-1__text,
[data-media-source="media-sm"] .lpc-audio-1__title + .lpc-audio-1__text {
	margin-top: 20px;
}
[data-media-source="media-xs"] .lpc-audio-1__title + lt-highlighter + .lpc-audio-1__text ,
[data-media-source="media-xs"] .lpc-audio-1__title + .lpc-audio-1__text {
	margin-top: 20px;
}

.lpc-audio-1__item {
	margin-bottom: 26px;
}

.lpc-audio-1__item-title {
	margin-bottom: 12px;
}

.lpc-audio .audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color-a-05);
    padding: 10px;
    min-width: 260px;
    width: 100%;
    position: relative;
    line-height: inherit;
    cursor: default;
    box-shadow: none;
}

.lpc-audio .audio-player:hover ,
.lpc-audio .audio-player:active {
	background: var(--primary-color-a-05);
}

.audio-player button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.audio-player input[type="range"] {
    cursor: pointer;
}

.lpc-audio .audio-player span {
    color: inherit;
    font-size: 14px;
}
.audio-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.audio-play-pause /*,
.audio-download*/ {
    background: #007bff;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.audio-play-pause svg {
	color: inherit;
}

.audio-play-pause svg path {
	fill: currentColor !important;
}

.audio-play-pause:hover/*,
.audio-download:hover*/ {
    background: var(--primary-color-base);
}

.audio-volume-wrap {
	display: flex;
    align-items: center;
    margin-left: 5px;
    position: relative;
    padding: 0 0 0 15px;
    border-radius: 20px;
    transition: 0.4s ease-out;
}

.audio-volume-wrap:hover {
	background: #00000020;
}

[data-media-source="media-xs"] .audio-volume-wrap {
	padding: 0;
}

[data-media-source="media-xs"] .audio-volume-wrap:hover {
	background: none;
}

.audio-muted.mute {
	position: relative;
}
.audio-muted.mute:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 1px;
	background: red;
	top: 50%;
	transform: rotate(45deg);
}

.audio-muted svg {
	color: inherit;
}

.audio-muted svg path {
	fill: currentColor !important;
}

.audio-progress {
    flex-grow: 1;
    height: 4px;
    border-radius: 5px;
    appearance: none;
    color: inherit;
    background: currentColor;
    outline: none;
    cursor: pointer;
}

[data-media-source="media-xs"] .audio-progress {
	margin-left: 15px;
}

.audio-progress::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color-base);
    cursor: pointer;
}

.audio-volume {
	height: 4px;
    appearance: none;
    background: #ffffff;
    border-radius: 5px;
    outline: none;
    width: 0;
    appearance: none;
    outline: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 
    width 0.3s ease,
    opacity 0.3s ease;
    z-index: 10;
}

[data-media-source="media-xs"] .audio-volume {
	display: none;
}

/* Анимация при наведении */
.audio-volume-wrap:hover .audio-volume {
    width: 80px;
    opacity: 1;
    pointer-events: auto;
}


.audio-volume::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color-base);
    cursor: pointer;
}

.audio-time {
    font-size: 14px;
    color: inherit;
    min-width: 40px;
    text-align: center;
}


[data-media-source="media-xs"] .lpc-audio .audio-player {
	gap: 0;
}

.audio-more-menu-wrapper {
  position: relative;
  display: inline-block;
  /*margin-left: 10px;*/
}

.audio-more-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0 6px;
  transition: 0.4s ease-out;
}

.audio-more-btn:hover {
	background: var(--primary-color-base);
}

.audio-more-dropdown {
  position: absolute;
  right: 0;
  bottom: 0;
  background:  var(--content-background-lpc);
  color: var(--text-color-base);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 100;
  border-radius: 6px;
  min-width: 200px;
  font-size: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

.audio-more-dropdown-inner {
	display: flex;
	flex-direction: column;
	padding: 12px;
	position: relative;
}

.audio-more-dropdown-inner > * {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.audio-speed-control > label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.audio-more-dropdown-inner label {
	cursor: pointer;
}
.lpc-audio-1 .audio-more-dropdown svg path{
	fill: var(--text-color-base);
}

.audio-more-dropdown select {
  width: 100%;
  font-size: 14px;
  cursor: pointer;
}

.audio-more-dropdown-inner svg {
	width: 25px;
	height: 25px;
	flex: 0 0 auto;
}

.audio-speed-select {
	position : absolute;
	left: 0 ;
	top: auto;
	right: 0;
	bottom: 0;
	display: none;
	min-width: 200px;
	padding: 12px 0;
	background: var(--content-background-lpc);
    color: var(--text-color-base);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 6px;
    overflow: auto;
}

.audio-speed-select:focus {
	outline: none;
}
.audio-speed-select._open {
	display: block;
}
.audio-speed-select option {
    font-size: 16px;
    padding: 6px 12px;
}

.audio-more-dropdown-inner > * {
	background: linear-gradient(to right, var(--text-color-a-01) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
    padding: 5px 0;
}

.audio-more-dropdown-inner > *:hover {
	background-position: left bottom;
}


.lpc-audio__editor-text {
	display: inline-flex;
    width: auto;
    margin: 0 auto;
    background: #FFF7CE;
    border: 1px solid #FFEB82;
    border-radius: 8px;
    padding: 12px 20px;
    max-width: 840px;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-family: Open Sans, sans-serif;
}

.lpc-audio__editor-text > span {
	padding: 7px 12px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	margin-left: 12px;
	font-size: 14px;
	line-height: 1;
	background: rgba(0,0,0,0.06);
}

.lpc-audio__editor-text > span > span {
	width: 26px;
	height: 26px;
	margin-right: 7px;
}