/**** Notes:
This style is for artist list with round image.
And can be used only for desktop version.
**********************************************/
.singer-profile-box {
    display: inline-block;
    width: 80px;
    height: 107px;
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    margin: 7px 15px 10px;
    text-align: center;
}

.singer-name {
    line-height: normal;
    padding-top: 15px;
}

.singer-profile-box:first-child {
    margin-left: 0px;
}

.singer-profile-box a {
    /* display: inline-block; */
    font-size: 13px;
    color: #828282;
    text-transform: capitalize;
    z-index: 1;
}

.singer-profile-box .singer_profile_wrap {
    width: 75px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.singer-name a:hover {
    color: #828282;
}

.active-bdr {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: solid 2px #0f7ef2;
    display: inline-block;
    position: absolute;
    left: -3.8px;
    top: 0.7px;
}

.deactive-bdr {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: solid 2px #847e7e;
    display: inline-block;
    position: absolute;
    left: -3.8px;
    top: 0.7px;
}

.read-story {
    border-color: #828282;
}

.unread-stry a {
    color: #fff;
}

.unread-stry a:hover {
    color: #fff;
}
/****** 07-mar-2022***************/ 
.singer-profile-box {margin: 7px 15px 0px;}
.singer-name a{
    border-color: #828282;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
/****** 07-mar-2022 ***************/ 