﻿.audio-track-list {
    counter-reset: tracks;
}

.audio-track-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 10px 0;
    width: 100%;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .audio-track-list-item:hover {
        /*background: rgba(255,254,249,.65);*/
    }

    .audio-track-list-item .honeycomb:not(:first-child) {
        margin-left: 10px;
    }

.audio-track-list-item-title {
    font-family: "futura-pt-condensed",Futura,sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    color: #151515;
    font-size: 18px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(100% - 80px);
    flex: 1 1 calc(100% - 80px);
    letter-spacing: .05em;
    line-height: 2;
    float:left;
    width:50%;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
    .audio-track-list-item-title {
        
       line-height: normal;
    }
    .mtrack {
    float: left;
    width: 70%;
    padding: 5px 0;
    }

    .mbutton {
    }
}

/*@media only screen and (max-width:414px) {
    .audio-track-list-item-title {
       
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
    }
}*/

.audio-track-list-item-count {
    counter-increment: tracks;
    font-family: "futura-pt-condensed",Futura,sans-serif;
    font-weight: normal;
    /*background: #000;
    color: #fff;*/
    text-align: center;
    height: 60px;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

    .audio-track-list-item-count::before {
        /*content: counter(tracks);*/
    }

.audio-track-list-item-actions {
    padding: 12px;
}

@media only screen and (max-width:579px) {
    .audio-track-list-item-actions {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (min-width:580px) {
    .audio-track-list-item-actions {
        padding: 0 15px;
        margin-left: auto;
    }
}

.audio-track-list-item-buy-links {
    border-left: 1px solid #d6d6d1;
    padding: 15px;
}

@media only screen and (max-width:579px) {
    .audio-track-list-item-buy-links {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (min-width:580px) {
    .audio-track-list-item-buy-links {
        padding: 0 30px;
        margin-left: auto;
    }
}

.audio-track-list-item-lyrics {
    background: #f4d81e;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 12px;
    line-height: 1;
    max-height: 0;
    overflow: hidden;
}

    .audio-track-list-item-lyrics > div {
        padding: 20px;
    }

@media only screen and (min-width:768px) {
    .audio-track-list-item-lyrics > div {
        padding: 40px;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

.audio-track-list-item-lyrics > div p {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid-column;
}