body{
    margin-left: 10%;
    margin-right: 10%;
}

th{
    text-align: left;
}

#btnUpload{
    width: 100%;
}

.audiolist{
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width:100%;
}

.audiolist td, .audiolist th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}

.audiolist tr:nth-child(even) {
background-color: #dddddd;
}

.colaction{
    display: flex;
    justify-content: space-evenly;
}

.title-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px groove;
    margin-bottom: 20px;
}


.title-container2{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}


.title {
    font-size: 30px;
    font-weight: 700;
    width: 80%;
    float: left;
}

.title2 {
    font-size: 20px;
    font-weight: 700;
    width: 80%;
    float: left;
}

.action-button {
    width: auto;
    bottom: 0;
    right: 0;
    float: right;
    display: flex;
    margin-bottom: 5px;
}

.form-group{
    margin-bottom: 10px;
}

.row-container{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px groove;
}

.index{
    position: relative;
    width: 100%;
    height: 100%;
}

/*----------- Audio ------------*/
.audioRow{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 2%;
    border-radius: 7px;
}

.audioDetails{
    padding-top: 10px;
    padding-left: 10px;
    height: 4.5em;
}

.audioDownload{
    float:right;
    margin-top: 20px;
    margin-right: 20px;
}

.audioDownload a{
    text-decoration: none;
    color: black;
}

@media only screen and (max-width: 600px) {
    .audioRow{
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-bottom: 4.7%;
        border-radius: 7px;
    }
    
  }

@media only screen and (min-height: 840px) {
.audioRow{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 12%;
    border-radius: 7px;
}
.audioDetails{
    padding-top: 10px;
    padding-left: 10px;
    height: 5em;
}
}


.audioName{
    font-size: 22px;
    font-weight: 700;
}

.audioDesc{
    color:grey;
}

.audioAction{
    padding: 2% 5% 2% 5%;
    display: flex;
    background: #444;
    color: white;
}
.play-media{
    text-decoration: none;
}
.k-i-play:before, .k-i-pause:before{
    color: white;
}

.audioAction .controls{
    display: flex;
    margin-left: 15%;
    width:100%;
}

.audioAction .controls .volume-container{
    margin-left: 5%;
    width:auto;
}

.timeline{
    background: lightgrey;
    width: 100%;
    position: relative;
    cursor: pointer;
    height: 5px;
}

.timeline .progress{
    background: lightskyblue;
    width: 0%;
    height: 100%;
    transition: 0.25s;
}

.audioAction a{
    color: black;
}

.currenttime, .totaltime{
    padding-top: 2px;
}

.volume-container{
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.volume-container .volume-slider{
    position: absolute;
    left: -3px; 
    top: 3px;
    z-index: -1;
    width: 0;
    height: 15px;
    background: white;
    box-shadow: 0 0 5px #000a;
    transition: .25s;
}

.volume-container .volume-slider .volume-percentage{
    background: lightskyblue;
    height: 100%;
    width: 100%;
}

.volume-container:hover .volume-slider {
    left: -123px;
    width: 120px;
}
/*----------- End audio ------------*/

.audio-container{
    width: 100%;
    display: flex;
}

.audio-container-details{
    width:30%;
}

.audio-container-details h5{
    font-size: 20px;
    font-weight: 600;
}

.audio-container-details p{
    font-size: 15px;
    color: grey;
}

.audio-container-source{
    width:60%;
    margin-top: 20px;
}

audio{
    width:100%;
    height: 60%;
}