

/* Start:/local/templates/almanah/components/bitrix/news/praktika/bitrix/news.list/.default/style.css?1766313652358*/
.audio-text__open {
	opacity: 100% !important;
}
.audio-text__content {
	background-color: #441f1d !important;
}
.audio-item {
	display: block !important;
	opacity: 1 !important;
}
body.color-bg-red .audio-item {
	background-color: #CDAFA6;
	color: #000;
}
body.color-bg-red .subtitles-text {
	background-color: #CDAFA6;
	color: #000;
	margin-bottom: 20px;
}
/* End */


/* Start:/local/components/alfa/instruction.pop-up/templates/.default/style.css?17663136511380*/
/* Ссылка-инструкция */
.instruction-link {
    text-decoration: underline dotted;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
}
/* Оверлей */
.alfa-instruction-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Контейнер модального окна */
.alfa-instruction-modal-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 1000px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Кнопка закрытия */
.alfa-instruction-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Контент модального окна */
.alfa-instruction-modal-content {
    margin-top: 20px;
}

/* Для мобильных устройств - модальное окно на весь экран */
@media (max-width: 768px) {
    .alfa-instruction-modal-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 30px;
    }
}

/* End */


/* Start:/local/components/alfa/audio.player/templates/.default/style.css?17663136513792*/
audio.audio-element {
    display: none;
}
.audio-player {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
}
.play-btn {
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn svg {
    width: 80px;
    height: 80px;
    color: #3a3a20;
}


.play-btn:hover {
    transform: scale(1.1);
}

.pause-icon.hidden,
.mute-icon.hidden,
.play-icon.hidden,
.volume-icon.hidden {
    display: none;
}

.main-block {
    flex-grow: 1;
}

.track-title {
    font-size: 14px;
    margin-bottom: 10px;
}

.progress-container {
    position: relative;
}

.progress-bar {
    width: 100%;
    background: #ddd;
    border: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    border-radius: 5px;
}
.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 0; /* Убираем кругляш */
    height: 5px;
    background: transparent;
}
.progress-bar::-moz-range-thumb {
    width: 0;
    height: 5px;
    background: transparent;
}
.time-info {
    position: absolute;
    right: 0;
    top: -7px;
    font-size: 10px;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 2px;
}

.volume-bar {
    width: 80px;
}

.volume-svg {
    width: 72px;
    height: 9px;
    cursor: pointer;
}

.speed-control {
    display: flex;
    justify-content: center;
}

.speed-btn {
    all: unset;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    width: 40px;
    padding: 0 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.speed-btn:focus,
.speed-btn:active {
    outline: none;
    box-shadow: none;
    background: none;
}

/* Ссылка с мелким шрифтом и пунктирным подчеркиванием */
.subtitles {
    font-size: 14px;
    text-align: center;
}
.subtitles.mobile {
    display: none;
}
.subtitles.desktop {
    display: flex;
}
.subtitles span {
    text-decoration: underline dotted;
    cursor: pointer;
    vertical-align: text-bottom;
}

.subtitles span:hover {
    color: #0056b3;
}

.subtitles-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.subtitles-text h3 {
    margin-bottom: 10px;
    font-size: 16px;
}
.right-controls {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.controls {
    display: flex;
    align-items: center; /* Выравнивание по вертикали */
    justify-content: space-between; /* Равномерное распределение */
    height: 50px; /* Задаем высоту (можно подкорректировать) */
}

.volume-control,
.subtitles,
.right-controls {
    display: flex;
    align-items: center; /* Выравнивание внутри блоков */
}

.right-controls {
    gap: 15px; /* Расстояние между элементами справа */
}

.favorite-toggle svg,
.speed-control button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
@media (max-width: 768px) {
    .controls {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        row-gap: 10px;
    }

    .subtitles.mobile {
        display: flex;
    }
    .subtitles.desktop {
        display: none;
    }
}

/* End */
/* /local/templates/almanah/components/bitrix/news/praktika/bitrix/news.list/.default/style.css?1766313652358 */
/* /local/components/alfa/instruction.pop-up/templates/.default/style.css?17663136511380 */
/* /local/components/alfa/audio.player/templates/.default/style.css?17663136513792 */
