/* Achtergrond */
.mp3-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.75);
//    backdrop-filter: blur(3px);
}

/* Popup venster */
.mp3-modal-content {
    background: #faf7f2;
    padding: 25px;
    margin: 8% auto;
    width: 90%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    text-align: center;
    border: 2px solid #d9c9a8;
}

/* Sluitknop */
.mp3-close {
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #444;
    transition: 0.2s;
}

.mp3-close:hover {
    color: #b30000;
}

/* Player */
#mp3-modal-player {
    width: 100%;
    margin-top: 20px;
}

/* Titel */
#mp3-modal-title {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #5a4630;
    font-weight: 600;
}

/* Fork Awesome play-icoon */
.mp3-icon {
    margin-right: 8px;
    color: #8b6f47;
    font-size: 1.2em;
    vertical-align: middle;
    transition: 0.2s;
}

a:hover .mp3-icon {
    color: #b38a5e;
}
