:root {
    --active: orange;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: white;
}
.stripe-shadow {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.controls {
    text-align: right;
    margin-left: auto;
}
.control {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(45deg, #6831e3, #f528cb);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #fff !important;
    border-radius: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius: 5px;
    margin-right: .5rem;
    transition: all .5s;
}
.control:hover {
    filter: saturate(2);
    transform: scale(1.2);
}
.controls i {
    display: inline-block;
    font-size: 1.5rem;
}

table .inactive {
    color: white;
}

.artist {
    background-position: center center;
    background-repeat: no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: white;
    border-radius: 1rem;
    text-shadow: 1px 1px black;
    padding: 1.5rem;
    margin: .5rem;
    transition: all .5s;
    filter: saturate(.75);
    min-width: 14rem;
}
.artist:hover {
    filter: saturate(1.5);
}
.artist:hover .artistStat {
    opacity: 0;
}
.artist .name {
    min-width: 14rem;
    min-height: 14rem;
}
.artist h2 {
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-top: 2rem;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    width: 100%;
    min-width: 10rem;
}
.artist table {
    width: 100%;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

form input,
form button,
select {
    border: 2px solid #fff;
    border-radius: .25rem;
    background: transparent;
    color: #fff;
    padding: 13px 30px;
    transition: all .5s;
}

form input {
    border-right: none;
}
form button {
    border-left: none;
}

select:focus {
    outline: none; 
}
select:hover {
    border: 2px solid #fff;
    border-radius: .25rem;
    background: white;
    color: black;
    padding: 13px 30px;
}
#listView .lni {
    font-size: 1.5rem;
}
#listView .lni-youtube {
    color: red;
}
#listView .lni-spotify {
    color: green;
}

.artistStat {
    text-align: center;
    align-items: center;
    border-radius: 25rem;
    width: 100%;
    margin: auto;
    margin-top: .5rem;
    padding: .5rem;
    transition: all .5s;
}

.artistStat .lni-youtube,
.artistStat .lni-spotify,
.artistStat .lni-soundcloud,
.artistStat .lni-calendar{
    font-size: 1.5rem;
}

.artistStat.youtube{
    background: linear-gradient(45deg, red, darkred);
}

.artistStat.spotify{
    background: linear-gradient(45deg, green, darkgreen);
}

.artistStat.soundcloud{
    background: linear-gradient(45deg, yellow, orange);
}

.artistStat.radio{
    background: linear-gradient(45deg, blue, darkblue);
}