/* File: includes/css/sds-player.css */

.sds-player {
    width: 100%;
}

.sds-player-header {
    text-align: center;
}

.sds-player-title {
    font-family: "Gloria Hallelujah", Sans-serif !important;
    font-size: 2em !important;
    font-weight: bold;
    line-height: 1.15;
    color: red;
}

.sds-player-desc {
    margin-top: 12px;
    font-family: "Gloria Hallelujah", Sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.sds-player-desc p {
    margin: 0.6em 0;
}

.sds-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
}

.sds-player-btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
}

.sds-player-play {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sds-player-ico {
    display: block;
    width: 38px;
    height: 38px;
    transition: transform 0.3s ease-in-out;
}

.sds-player-play .sds-player-ico {
    width: 55px;
    height: 55px;

}

.sds-player-ico:hover {
    transform: scale(1.2);
}


.sds-player:not(.is-playing) .sds-player-ico-pause { display: none; }
.sds-player.is-playing .sds-player-ico-play { display: none; }

.sds-player-timeline {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.sds-player-time {
    font-family: "Gloria Hallelujah", Sans-serif;
    font-size: 14px;
    opacity: 0.9;
}

.sds-player-seek {
    width: 100%;
}

.sds-player-empty {
    display: none;
}

[type=button],
[type=button]:hover,
[type=button]:focus,
[type=button]:active {
    color: transparent!important;
    background-color: transparent!important;
}


.sds-player-seek {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #d0d0d0;
    border-radius: 999px;
}

/* Chrome / Edge / Safari */
.sds-player-seek::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
}

.sds-player-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: red;
    margin-top: -5px;
    border: none;
}

/* Firefox */
.sds-player-seek::-moz-range-track {
    height: 4px;
    background: #d0d0d0;
    border-radius: 999px;
}

.sds-player-seek::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: red;
    border: none;
}