.status-div{
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: #21a50d;
    color: #fff;
    font-weight: bold;
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.show-status{
    padding: 10px;
    animation: statusanim 0.5s;
    -webkit-animation: statusanim 0.5s;
}
.alert-div{
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: #f4280c;
    color: #fff;
    font-weight: bold;
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.show-alert{
    padding: 10px;
    animation: statusanim 0.5s;
    -webkit-animation: statusanim 0.5s;
}
@keyframes statusanim{from{opacity: 0;}to{opacity: 1;}}
@-webkit-keyframes statusanim{from{opacity: 0;}to{opacity: 1;}}
.track-div{
    width: 100%;
    min-height: calc(100vh - 150px);
    padding: 170px 20px 20px;
    background-image: linear-gradient(rgba(5, 59, 125, 0.9), rgba(5, 59, 125, 0.9)), url('../images/bg_image.jpg');
    position: relative;
}
.track-div::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
}
.track-div .img-details, .track-div .mimg-details{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(255,255,255,0.8);
    box-shadow: 4px 4px 6px rgba(0,0,0,0.7);
    position: relative;
    z-index: 5;
}
.img-details img {
    width: 250px;
    height: 250px;
    border: 5px solid #fff;
    box-shadow: 4px 4px 7px rgba(0,0,0,0.7);
    margin-right: 10px;
}
.mimg-details img{
    width: 250px;
    height: 250px;
    border: 5px solid #fff;
    box-shadow: 4px 4px 7px rgba(0,0,0,0.7);
    margin-bottom: 10px;
}
.img-details .details{
    width: calc(100% - 260px);
    padding: 5px;
}
.mimg-details .details{
    width: 100%;
}
.img-details h3, .img-details p, .mimg-details h3, .mimg-details p {
    margin: 0;
}
.img-details .tartist, .mimg-details .tartist{
    margin-bottom: 5px;
}
.img-details .details .cart-btn{
    background-color: rgb(195, 147, 42);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.img-details .details .cart-btn:hover{
    background-color: rgb(5, 59, 125);
}
.track-div .track-sample{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(255,255,255,0.8);
    padding: 10px;
    margin-top: 20px;
    box-shadow: 4px 4px 6px rgba(0,0,0,0.7);
    position: relative;
    z-index: 5;
}
.track-sample .tsample, .track-sample .t-play{
    width: 50%;
    padding: 5px;
}
.track-sample .t-play{
    display: flex;
    align-items: flex-start;
}
.t-play .play-btn{
    display: block;
    width: 70px;
    height: 50px;
    padding: 7px 0;
    background-color: rgb(195, 147, 42);
    color: rgb(5, 59, 125);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: 0.4s;
    cursor: pointer;
    border-radius: 10px;
}
.t-play .play-btn:hover{
    background-color: rgb(5, 59, 125);
    color: rgb(195, 147, 42);
}
.song-link, .song-link:hover, .song-link:active{
    text-decoration-line: none;
    width: 40px;
    height: 40px;
    border-radius: 30%;
    background-color: rgb(5, 59, 125);
    color: #fff;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.full-vid {
    width: 100%;
    padding: 5px 0;
}
.mssg-link, .mssg-link:hover, .mssg-link:active {
    text-decoration-line: none;
    border-radius: 5px;
    padding: 5px 20px;
    background-color: rgb(5, 59, 125);
    color: #fff;
}
.track-review {
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    padding: 10px;
    margin-top: 20px;
    box-shadow: 4px 4px 6px rgba(0,0,0,0.7);
    position: relative;
    z-index: 5;
}
.download-donate {
    width: 100%;
    background-color: transparent;
    padding: 0;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}
.download-donate form {
    width: 60%;
}
.track-review .rev-btn{
    text-decoration-line: none;
    padding: 5px 10px;
    background-color: rgb(5, 59, 125);
    color: #fff;
    border-radius: 5px;
    transition: 0.5s;
}
.track-review .rev-btn:hover, .download-link:hover{
    background-color: #fff;
    color: rgb(5, 59, 125);
}
.treviews .treview-in{
    padding: 5px;
    margin-bottom: 5px;
    box-shadow: 0 1px 0 #000;
    border-radius: 10px;
}
.treviews p{
    margin: 0;
}
.download-btn {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
}
.download-link {
    display: block;
    width: 150px;
    text-decoration-line: none;
    padding: 5px 10px;
    text-align: center;
    background-color: #98140A;
    color: #fff;
    border-radius: 5px;
    transition: 0.5s;
}
.download-donate .amt-div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}
.download-donate .amt-div span {
    display: inline-block;
    width: 100px;
    margin: 10px auto;
}
.amt-div span .amt-label {
    display: inline-block;
    background-color: #fff;
    margin-left: 5px;
    padding: 5px;
    border-radius: 5px;
}
.amt-div span .colored-label {
    background-color: #98140A;
    color: #fff;
}

@media (max-width:768px){
    .img-details img, .mimg-details img{
        margin: 0 auto 10px;
    }
    .img-details .details{
        width: 100%;
    }
    .img-details p, .track-sample p, .treviews p{
        font-size: 14px;
    }
    .track-sample .tsample, .track-sample .t-play{
        width: 100%;
    }
    .download-donate form {
        width: 100%;
    }
}