#top_authors{
  margin-top: 80px;
  color: #14213D;
}
#top_authors .card {
  border: none;
}
#top_authors .a_title{
  font-family: 'Raleway', sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
}
#top_authors .author_box{
  background-color: rgba(20, 33, 61, .1);
  padding: 25px 20px;
  border-radius: 12px;
  position: relative;
  margin: 30px 0;
}
#top_authors .author_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
#top_authors .author_img{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 5px;
}
#top_authors .author_img img{
  border: 3px solid rgba(20, 33, 61, .1);
  display: block;
  width: 100%;
  height: 100%;
  min-width: 90px;
  min-height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
#top_authors .author_name{
  font-family: 'Raleway', sans-serif;
  font-size: 19px;
  font-weight: 700;
}
#top_authors .author_skill{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
}
#top_authors .author_count{
  display: flex;
  justify-content: space-between;
}
#top_authors .product_count{
  display: flex;
  align-items: center;
}
#top_authors .count_icon{
  font-size: 15px;
}
#top_authors .product_sale{
  display: flex;
  align-items: center;
}
#top_authors .author_details .v_count{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
}
#top_authors .author_ratings{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
#top_authors .author_ratings ul{
  display: flex;
  margin-left: 10px;
}
#top_authors .author_ratings ul li i{
  color: #FCA311;
}
#top_authors .follow_details{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#top_authors .total_follow{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0 5px;
}
#top_authors .v_sub_details{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}
#top_authors .author_overlay{
  height: 100%;
  width: 100%;
  background-color: rgba(20, 33, 61, .8);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all linear .3s;
}
#top_authors .author_box:hover .author_overlay{
  opacity: 1;
}
#top_authors .author_overlay a{
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #14213D;
  background-color: #fff;
  padding: 8px 14px;
  border-radius: 25px;
  transition: all linear .3s;
}
#top_authors .author_overlay a:hover{
  background-color: #FCA311;
}