body {
    font-family: "Nunito", sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.player-wrapper {
    align-items: center;
    background-color: #fff;
    display: flex;
    height: 100vh;
    justify-content: center;
}

.player {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ced4da;
    color: #404040;
    display: inline-block;
    line-height: 1.5625;
    position: relative;
    min-width: 100%;
}

.player-controls {
    display: flex;
}

.player-controls > div {
    border-right: 1px solid #ced4da;
}

.player-controls > div#seek {
    flex: 1
}

.player-controls > div:last-child {
    border-right: none;
}

.player-controls > div a {
    color: #404040;
    display: block;
    line-height: 0;
    padding: 1em;
    text-decoration: none;
}

.player-controls > div#volume a {
    display: flex;
}

.player-controls > div a svg {
    display: inline-block;
    width: 1.125rem;
}

.player-timeline {
    background-color: #ced4da;
    height: 50%;
    position: relative;
}

.player-timeline .player-progress,
.player-timeline .player-seeker {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
}

.player-timeline .player-progress {
    background-color: #404040;
    z-index: 1;
}

.player-timeline .player-seeker {
    cursor: pointer;
    width: 100%;
    z-index: 2;
}

.player-time {
    display: flex;
    justify-content: space-between;
}

.player-time .player-time-current {
    font-weight: 700;
    padding: 0 5px;
}

.player-time .player-title {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.player-time .player-title p {
    animation: scroll 10s linear infinite alternate;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(0);
    }
    90% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.player-time .player-time-total {
    opacity: 0.5;
    padding: 0 5px;
}

.player-volume {
    display: inline-block;
    height: 1.1rem;
    margin: 0 0 0 2px;
    width: 6rem;
}

.audio-recorder {
    position: relative;
    background-color: #4db6ac;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: inline-block;
    cursor: pointer;
    border: none
}

.audio-recorder:after, .audio-recorder:before {
    content: "";
    position: absolute;
    background-color: #fff;
}

.audio-recorder:before {
    top: 40%;
    left: 43%;
    height: 15%;
    width: 14%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.audio-recorder:after {
    top: 30%;
    left: 43%;
    height: 15%;
    width: 14%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.audio-recorder span {
    position: absolute;
    top: 50%;
    left: 36%;
    height: 24%;
    width: 28%;
    overflow: hidden;
}

.audio-recorder span:after, .audio-recorder span:before {
    content: "";
    position: absolute;
    background-color: #fff;
}

.audio-recorder span:before {
    bottom: 50%;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    border: 0.125em solid #fff;
    background: none;
    left: 0;
}

.audio-recorder span:after {
    top: 50%;
    left: 40%;
    width: 20%;
    height: 25%;
}

.audio-recorder.record {
    background-color: #ef5350;
    -webkit-animation: pulse 1.25s cubic-bezier(.66, 0, 0, 1) infinite;
    animation: pulse 1.25s cubic-bezier(.66, 0, 0, 1) infinite;
}

@-webkit-keyframes pulse {
    to {
        -webkit-box-shadow: 0 0 0 10px rgba(239, 83, 80, .1);
        box-shadow: 0 0 0 10px rgba(239, 83, 80, .1);
        background-color: #e53935;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
}

@keyframes pulse {
    to {
        -webkit-box-shadow: 0 0 0 10px rgba(239, 83, 80, .1);
        box-shadow: 0 0 0 10px rgba(239, 83, 80, .1);
        background-color: #e53935;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
}

.audio-recorder-container {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.audio-recorder-container .content {
    flex: 1;
    padding-left: 10px;
}

.audio-recorder-container .content .info-text {
    font-weight: 700;
    line-height: 1;
}

.audio-recorder-container .content .info-muted {
    line-height: 1;
    font-size: 12px;
    color: #525252;
    margin: 5px 0;
}

.audio-recorder-container .content .info-time {
    line-height: 1;
    font-size: 12px;
    color: #ce4646;
}