@charset "utf-8";
/* CSS Document */

.audiopanel {
    display : block;
    opacity : 1.0;
    z-index : 4000;
    position: fixed;
    width: 350px;
    height: auto;
    left: 2%;
    right: auto;
    top: auto;
    bottom: 2%;
    border-radius: 8px;
    padding : 4px;
    text-align : center;
    background-color: rgba(255, 255, 255, 0.82);
    border: 2px solid rgb(185, 54, 211);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,1.00);
    box-shadow: 0 0 10px rgba(0,0,0,1.00);
}

.audiopanel[data-visible="show"] {
    animation-fill-mode: both;
    animation-name: audiopanelshow;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
}
.audiopanel[data-visible="hide"]{
    animation-fill-mode: both;
    animation-name: audiopanelhide;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
}
@keyframes audiopanelshow {
    0% { opacity : 0.0; bottom : 0%; }
    100% { opacity : 1.0; bottom : 2%; }
}
@keyframes audiopanelhide {
    0%{ opacity : 1.0; bottom : 2%; }
    100% { opacity : 0.0; bottom : 0%; }
}

.audiopanel-button {
    width : 100%;
    border-radius: 16px;
    background-color: rgba(49,44,40,1.00);
    color: rgba(255,255,255,1.00);
    margin-top: 10px;
    border: 2px solid rgba(255,255,255,1.00);
}
.audiopanel-button:hover {
    background-color: rgba(81,68,17,1.00);
    border: 2px solid rgba(255,255,255,1.00);
}
.audiopanel-text {
    padding : 4px;
    color : rgba(51,36,10,1.00);
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.0em;
    font-weight: bold;
}
