.wpast-recorder {
    text-align: center;
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    #controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        .wpast-timer {
            display: flex;
            justify-content: center;
            font-size: 16px;
            span {
                width: 22px;
                display: inline-block;
                text-align: center;
            }
            .dot {
                width: 10px;
            }
        }
        a {
            background-color: rgba(#eb3b5a, 0.15);
            padding: 10px;
            border-radius: 50%;
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            &.wpast-disabled {
                cursor: not-allowed;
            }
        }
        #record-button {
            background: #eb3b5a;
            img {
                width: 32px;
                height: 32px;
            }
        }
        #stop-button img {
            width: 18px;
            height: 18px;
        }
    }
    #wpast-recordings-list {
        border-top: 1px solid #eaeaea;
        padding: 15px;
        max-height: 264px;
        overflow-y: auto;
        height: 100%;
        .wpast-record {
            padding: 10px;
            margin-bottom: 30px;
            background-color: #ffffff;
            border: 1px solid #f3f3f3;
            border-radius: 3px;
            position: relative;
            @media (max-width: 768px) {
                display: flex;
                align-items: center;
            }
            .wpast-check,
            .wpast-remove {
                position: absolute;
                right: -8px;
                top: -8px;
                width: 20px;
                height: 20px;
            }
            .wpast-check {
                right: unset;
                left: -8px;
            }
            .wpast-remove {
                cursor: pointer;
            }
            .wpast-waveform {
                max-width: 128px;
                height: auto;
                opacity: 0.2;
            }
            audio {
                width: 100%;
                height: 40px;
                margin-top: 15px;
            }
        }
        .wpast-recording-text {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}

.wpast-pulse-button {
    position: relative;
    width: 100px;
    height: 100px;
    border: none;
    box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
    border-radius: 50%;
    background-color: #e84c3d;
    animation: wpast-pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    z-index: 9;
}

@-webkit-keyframes wpast-pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes wpast-pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes wpast-pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@keyframes wpast-pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}
