.inside-track.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-gap: 10px;
    align-items: stretch;
}

.inside-track.grid .inside-track-item {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.inside-track.list {
    text-align:center;
}

.inside-track.table {
    text-align:left;
    display: block;
}

.inside-track.table table {
    width:100%;
    padding:5px;
}

.inside-track.table table thead td,
.inside-track.table table tfoot td{
    font-weight:bold;
    background-color:#e4e3e3;
}

.inside-track.table table td {
    border-bottom:1px solid #e4e3e3;
    padding:5px;
}

.inside-track.table .inside-track-voted-text {
    color:#ccc;
    font-size:12px;
}

h4.inside-track-artist-name,
h4.inside-track-album-title,
.post .post-content h4.inside-track-artist-name,
.post .post-content h4.inside-track-album-title{
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
}


.inside-track-album-title a {
    color: #666;
}

.inside-track-album-title {
    font-style: italic;
    padding-bottom: 10px;
}

.inside-track-artist-name {
    font-style: italic;
}

.post-type-archive-inside_track #archive-title {
    background: #fff !important;
    color: #000;
}

.post-type-archive-inside_track #archive-title h1 {
    color: #000 !important;
}

.inside-track-release-date,
.post .post-content h3.inside-track-release-date {
    text-align: center;
    color: #666;
    display: block;
    text-transform: uppercase;
    font-size:16px;
    margin:0;
    padding:0;
}

.inside-track-position,
.post .post-content h2.inside-track-position{
    text-align:center;
}

.inside-track-vote-button {
    position:relative;
    display:inline-block;
    width:100%;
    border-bottom:1px solid #e4e3e3;
}

.inside-track.table .inside-track-vote-button {
    border-bottom:none;

}

.inside-track-voted-text {
    color:#cb3b46;
    font-size:12px;
}

.heart {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(heart.png) no-repeat;
    background-position: 0 0;
    cursor: pointer;
}
.heart.click {
    background-position: -2800px 0;
    transition: background 1s steps(28);
}

.heart:hover {
    background-position: -2800px 0;
}

@keyframes fave-heart {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -2800px 0;
    }
}
