/* 預設：顯示縮圖、隱藏 video */
.audio-card {
    /* display: flex;
    justify-content: center; */
    /* align-items: center; */
    /* padding: 12px; */
    font-size: 0.9rem !important;
    position: relative;


    /* 與預覽無關的css */
    height: 200px;
    /* width: 260px; */
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;

    border-radius: 16px;
}

.play-icon,
.stop-icon {
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.circle {
    fill: none;
    stroke-width: 3.8;
}

.circle-background {
    stroke: #e6e6e6;
}

.circle-progress {
    stroke: green;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}



/* icon view */
.btn-group {
    border: 1px solid rgb(107, 107, 107);
    /* border-radius: 30px; */
    border-radius: 4px;
    color: rgb(0, 0, 0);
}

#btnList {
    /* border-radius: 304px 0 0 30px; */
    border-radius: 4px 0 0 4px;
}

#btnGrid {
    /* border-radius: 0 30px 30px 0; */
    border-radius: 4px 0 0 4px;
}

.grid_active {
    background: linear-gradient(90deg, #878787 4.93%, #878787 121.62%);
    color: white !important;
}