.se-audio-player {
    margin-top: 70px;
    margin-bottom: 70px;
}

.se-audio-player__audio {
    display: none;
    height: 0px;
}

.se-audio-player__blockquote {
    margin-bottom: 30px;
    font-size: 19px;
    font-style: italic;
    font-weight: bold;
    line-height: 28px;
    color: #000;
}

.se-audio-player__controls {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 20px;
}

.se-audio-player__controls_simple { justify-content: space-between; }

.se-audio-player__button {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 30px;
    background-color: #1a1a1a;
    border-radius: 50%;
    transition: .35s;
}

.se-audio-player__button.disable { cursor: not-allowed; }

.se-audio-player__button:hover,
.se-audio-player__button:focus { background-color: #1a1a1a; }

.se-audio-player__button:focus { outline: none; }

.se-audio-player__button::before,
.se-audio-player__button::after {
    position: absolute;
    content: '';
    transform: .35s;
}

.se-audio-player__button_play::before {
    top: 13px;
    left: 19px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
}

.se-audio-player__button_pause::before {
    top: 13px;
    left: 16px;
    width: 7px;
    height: 22px;
    background-color: #fff;
    border-radius: 1px;
}

.se-audio-player__button_pause::after {
    top: 13px;
    left: 27px;
    width: 7px;
    height: 22px;
    background-color: #fff;
    border-radius: 1px;
}

.se-audio-player__author { width: calc(100% - 120px); }

.se-audio-player__author-name {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    line-height: 23px;
    color: #999;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, .9);
}

.se-audio-player__author-job {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: #000;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, .9);
}

.se-audio-player__time {
    width: 40px;
    height: 17px;
    font-family: monospace;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    line-height: 16px;
    color: #fff;
    text-align: center;
    background-color: #000000e6;
    border-radius: 2px;
}

.se-audio-player__bitrate {
    position: relative;
    height: 25px;
}

.se-audio-player__bitrate.hide { visibility: hidden; }

.se-audio-player__bitrate-preload {
    font-size: 15px;
    text-align: center;
}

.se-audio-player__bitrate-preload.hide { display: none; }

.se-audio-player_bitrate-preoad-dot {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    animation: dot 1.3s infinite;
}

.se-audio-player_bitrate-preoad-dot_first {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.se-audio-player_bitrate-preoad-dot_second {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.se-audio-player_bitrate-preoad-dot_third {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes dot {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes dot {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.default .se-audio-player__button,
.default .se-audio-player__time,
.default .se-audio-player__bitrate { display: none; }

.default .se-audio-player__author { width: 100%; }

.default .se-audio-player__audio {
    display: block;
    width: 100%;
    height: 50px;
}