.bty-audio {
    display: flex;
    background-color: #e6e6e6;
}

.bty-audio canvas {
    width: 100%;
    height: 130px;
    background-color: #000;
    display: block;
}

.bty-audio__image img {
    display: block;
    line-height: 1;
}

.bty-audio__player {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bty-audio__title {
    font-size: 16px !important;
    flex-grow: 1;
    margin-bottom: 0 !important;
}

.bty-audio__player-element {
    display: none;
}

.bty-audio__play {
    display: inline-block;
    width: 30px;
    height:30px;
    background-color: #792121;
    position: relative;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.bty-audio__player-meta {
    flex-grow: 1;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    flex-wrap: wrap;
}

.bty-audio__play:before {
    position: absolute;
    top: 9px;
    left: 11px;
    content: "";
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;

    border-left: 9px solid #fff;
}

.bty-audio__play:after {
    content: "";
    position: absolute;
    top: 9px;
    left: 17px;
    border-right: 4px solid #fff;
    width: 0;
    height: 13px;
    opacity: 0;

}
.bty-audio__play--playing:after {
    opacity: 1;
}

.bty-audio__play--playing:before {
    transform: translateX(-2px);
    border-top: 0;
    border-bottom: 0;
    height: 13px;
    border-left: 4px solid #fff;
}

.bty-audio__player-meta__top {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #d6d4d4;
    padding-bottom: 6px;
    margin-bottom: 9px;
    align-items: center;
}

.bty-audio__player-meta__top p {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    font-family: "milliardextralight",
    Arial,
    Helvetica,
    sans-serif;
}

.bty-audio__player-meta__top .bty-audio__category {
    margin-right: 10px;
    position: relative;
}

.bty-audio__player-meta__top .bty-audio__category:before {
    content: "";
    position: absolute;
    right: -5px;
    top: 5px;
    width: 1px;
    height: 19px;
    background-color: #7c2e2c;
}

.bty-audio__time {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.bty-audio__time small {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    font-family: "milliardextralight",
    Arial,
    Helvetica,
    sans-serif;
    line-height: 1.8;
}

.bty-audio__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.bty__audio-control {
    font-size: 13px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.bty__audio-control svg {
    width: 25px;
    height: 25px;
    fill: #7c2e2c;
}

.bty__audio-control:active {
    transform: scale(1.1);
}

.bty-audio progress {
    width: 100%;
    cursor: pointer;
}

.bty-audio progress[value] {
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
    color: #4c1515;
    height: 8px;
}

.bty-audio progress[value]::-webkit-progress-bar {
    background-color: white;
    border-radius: 2px;
    border: 1px solid lighten(#acacac, 20%);
    color: #4c1515;
}

.bty-audio #seekObjContainer {
    height: 16px;
}

.bty-audio progress::-webkit-progress-value {
    background-color: #4c1515;
}

.bty-audio__volume {
    width: 100px;
    display: flex;
    align-items: center;;
}

.bty-audio__volume svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.bty-audio__volume progress[value] {
    height: 4px;
    position: relative;
}

.bty-audio__volume progress[value]:after {
    content: "";
    width: 10px;
    height: 10px;
    background: red;
    right: 0;

}

.bty-audio__title-link {
    box-shadow: none !important;
}

.bty-audio__title-link:hover {
    background: none !important;
}

@media (max-width: 500px) {
    .bty-audio__image,
    .bty-audio__image img {
        width: 100%;
        height: 170px;
    }

    .bty-audio {
        flex-direction: column;;
    }

}

@media (max-width: 440px) {
    .bty-audio canvas {
        height: 90px;
    }
}

.bty-audio__image img {
    object-fit: cover;
}