
.artist-title-box {
    color: #fff;
    width: 100%;
    height: auto;
    padding: 20px;
}

.artist-title-box h1 {
    font-family: 'GoodSansThin';
    font-size: 28px;
    min-height: 100px;
}

.genres-search-box {
    width: 100%;
    padding: 60px 0;
    margin: 0 auto;
    text-align: center;
}
.genres-search-box form input {
    display: inline-block;
    width: 280px;
    background: transparent;
    border: 2px solid #000;
    padding: 30px;
    font-size: 12px;
    text-align: center;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    transition: font-size .5s ease;
}

.genres-search-box form input:focus {
    background: transparent;
    border: 2px solid #000;
    outline: none;
    box-shadow: none;
    font-size: 14px;
}

.artists-by-genres-box {
    width: 100%;
    padding: 40px 60px;
    color: #fff;
    font-family: 'GoodSansRegular';
}

.artists-by-genres-box ul.artists-list {
    width: 100%;
    padding-left: 0;
    list-style: none;
    margin-top: 30px;
}

.artists-by-genres-box ul.artists-list li.artist-name {
    float: left;
    width: 33.33333%;
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
    transition: all .3s;
}

.artists-by-genres-box ul.artists-list li.artist-name a {
    color: #fff;
    transition: all .3s;
}
.artists-by-genres-box ul.artists-list li.artist-name:hover {
    transform: scale(1.2) translateX(40px);
}

.artists-by-genres-box .view-btn-box {
    text-align: right;
    margin: 30px 0 0 0;
}

.artists-by-genres-box .view-btn {
    font-family: 'GoodSansRegular';
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    transition: all .2s;
}

.artists-by-genres-box .view-btn:hover {
    color: #fff;
}

.artists-by-genres-box .view-btn span {
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    filter: invert(100%);
    width: 30px;
    transition: all .2s;
}

.artists-by-genres-box .view-btn:hover span {
    filter: invert(100%);
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -o-transform: translateX(10px);
}


/* ================================================= ARTISTS DETAILS PAGE ================================================== */
.artist-details-title-box {
    background: #000;
    color: #fff;
    width: 100%;
    height: auto;
    padding: 20px;
}

.artist-details-title-box h1 {
    font-family: 'GoodSansThin';
    font-size: 36px;
    min-height: 80px;
}

.artist-details-title-box small {
    color: #d6d6d6
}

.artist-listing {
    margin-bottom: 25px;
}
#artists-details{
    margin-top:40px;
}
@media screen and (max-width: 768px) {
    .artists-by-genres-box ul.artists-list li.artist-name {
        width: 50%;
    }
}

@media screen and (max-width: 550px) {
    .artists-by-genres-box {
        text-align: center;
    }

    .artists-by-genres-box ul.artists-list li.artist-name {
        width: 100%;
        float: none;
        font-size: 16px;
    }
}