#audio-warning-toast {
    position: fixed;
    bottom:-111px;
    height: 50px;
    width: 100%;
    text-align: center;
    background-color: #f1f2f2;
    color: #222223;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #ccc;

    -webkit-transition: bottom 1.5s ease-in;
    -moz-transition:    bottom 1.5s ease-in;
    -ms-transition:     bottom 1.5s ease-in;
    -o-transition:      bottom 1.5s ease-in;
    transition:         bottom 1.5s ease-in;

    font-size: 26px;
    line-height: 32px;
    font-family: 'FranklinITCProBold', Arial, sans-serif;

    cursor: pointer;
    z-index: 1000;
}
#audio-warning-toast span {
    font-size: 18px;
    font-family: 'FranklinITCProLight', Arial, sans-serif;
    margin-left: 5px;
}
#audio-warning-toast.on {
    bottom: 0;
}
#audio-warning-toast img {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 15px;
}
#audio-warning-toast .close-button {
    width: 120px;
    height: 50px;
    background-color: #BCBEC0;
    display: inline-block;
    line-height: 52px;
    font-size: 18px;
    color: #FFF;
    font-family: 'FranklinITCProBold', Arial, sans-serif;
    border-radius: 3px;
    margin-left: 50px;
    letter-spacing: .5px;
    -webkit-font-smoothing: antialiased;
}
#audio-warning-toast .close-button:hover {
    background-color: #222223;
}

@media (max-width: 768px) {
    #audio-warning-toast {
        margin-left: -20px;
        font-size: 18px;
    }
    #audio-warning-toast span {
        font-size: 16px;
    }
    #audio-warning-toast .close-button {
        width: 100px;
        height: 46px;
        font-size: 16px;
        line-height: 48px;
        margin-left: 20px;
    }
}