/* SCSS */
/* SCSS */
/* ===== Usage ===== */
.celeb-about__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-about__topcontent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-about__topcontent-title {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}
.celeb-about__topcontent-title .svg-wrapper {
  flex-shrink: 0;
  margin-left: auto;
}
.celeb-about__topcontent-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  .celeb-about__topcontent-wrapper {
    flex-direction: row;
  }
}
.celeb-about__topcontent-image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 576px) {
  .celeb-about__topcontent-image {
    width: 50%;
  }
}
.celeb-about__topcontent-starrank {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
}
.celeb-about__topcontent-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--clr-primary);
  color: var(--clr-always-white);
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .celeb-about__topcontent-content {
    padding: 1rem;
  }
}
.celeb-about__topcontent-title {
  text-transform: capitalize;
  font-weight: 400;
}
.celeb-about__topcontent-role {
  font-weight: 400;
  text-transform: uppercase;
}
.celeb-about__topcontent-actions {
  gap: 1rem;
}
.celeb-about__topcontent-readmore {
  color: var(--clr-always-white);
  text-transform: uppercase;
}
.celeb-about__topcontent-readmore:hover {
  text-decoration: underline;
}
.celeb-about__topcontent-ranking {
  color: var(--clr-black);
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  .celeb-about__topcontent-ranking {
    flex-direction: row;
  }
}
.celeb-about__topcontent-ranking > *:first-child {
  display: flex;
  padding: 0.25rem;
  font-weight: 600;
  font-size: 14px;
  flex: 1;
  flex-shrink: 0;
  justify-content: center;
  background: var(--clr-neutral-70);
}
.celeb-about__topcontent-ranking > *:last-child {
  padding: 0.25rem;
  flex: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  background: var(--clr-neutral-80);
}
.celeb-about__topcontent-ranking--svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  fill: currentColor;
  color: var(--clr-secondary-2);
}
.celeb-about__star {
  color: var(--clr-always-white);
  width: 50px;
  padding: 0.25rem;
  text-align: center;
  font-size: 1.5rem;
  background: var(--clr-secondary);
}
.celeb-about__rank {
  width: 50px;
  padding: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  background: var(--clr-neutral-20);
  color: var(--clr-white);
}
.celeb-about__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-about__details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--clr-on-surface);
  background: var(--clr-surface);
}
.celeb-about__details > * {
  font-weight: 600;
}
.celeb-about__details > *:nth-child(2n) {
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .celeb-about__details {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}
.celeb-about__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}
.celeb-about__info-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.celeb-about__info-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  border-top: 3px solid var(--clr-secondary);
}
.celeb-about__info-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0.5rem;
  background: var(--clr-secondary);
  color: var(--clr-always-white);
  border-radius: 50%;
}
.celeb-about__info-edit:hover {
  background: var(--clr-primary);
}
.celeb-about__info-edit > svg {
  fill: currentColor;
}
.celeb-about__info-subitem {
  padding: 1rem;
  border-bottom: 1px solid var(--clr-neutral-70);
}
.celeb-about__info-subitem:last-child {
  border-bottom: 0;
}
.celeb-about__info-subitemcontent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.celeb-about__info-subitemcontent > h4 {
  font-weight: 500;
}
.celeb-about__info-subitemtitle {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--clr-neutral-40);
  text-decoration: underline;
}
.celeb-about__contributors {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.celeb-about__contributors-head {
  background: var(--clr-neutral-70);
  color: var(--clr-black);
  padding: 0.5rem 1rem;
}
.celeb-about__contributors-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--clr-surface);
}
.celeb-about__contributors-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  padding: 0.25rem 0.5rem;
}
.celeb-about__contributors-image {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  grid-column: 1;
  grid-row: span 2;
}
.celeb-about__contributors-name {
  color: var(--clr-secondary);
  font-weight: 600;
  font-size: 14px;
}
.celeb-about__contributors-role {
  color: var(--clr-neutral-40);
  font-size: 14px;
}
.celeb-about__container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.celeb-about__btn {
  align-self: center;
}
.celeb-about__readmore {
  text-decoration: underline;
  color: #337ab7;
}
.celeb-about__gallery {
  padding: 0.5rem;
}
.celeb-discussion__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-discussion__buttons {
  gap: 0.5rem;
}
.celeb-discussion__sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
}
.celeb-fanclub__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-fanclub__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.celeb-fanclub__item {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  border: 1px solid var(--clr-neutral-70);
  background: var(--clr-surface);
  padding: 0.5rem;
}
.celeb-fanclub__image {
  border-radius: 50%;
  width: 50px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}
.celeb-fanclub__name {
  font-weight: 600;
  text-wrap: nowrap;
}
.celeb-fanclub__sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
}
.celeb-filmography__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-filmography__container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.celeb-filmography__item {
  display: flex;
  flex-direction: column;
}
.celeb-filmography__itemtitle {
  text-transform: capitalize;
}
.celeb-filmography__actions {
  display: flex;
  align-items: baseline;
  font-size: 14px;
  font-weight: 600;
}
.celeb-filmography__actions-wrapper {
  display: flex;
  align-items: baseline;
  padding: 0 0.5rem;
  overflow: auto;
}
.celeb-filmography__actions-wrapper .active {
  background: var(--clr-secondary);
  color: var(--clr-on-secondary);
}
.celeb-filmography__actions-wrapper .active:hover {
  text-decoration: underline;
  color: var(--clr-on-secondary);
}
.celeb-filmography__actions-wrapper a {
  color: #337ab7;
}
.celeb-filmography__actions-wrapper > * {
  background: var(--clr-surface);
  border: 1px solid var(--clr-neutral-70);
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  flex-shrink: 0;
  text-wrap: nowrap;
}
.celeb-filmography__actions-wrapper > *:hover {
  color: var(--clr-secondary);
  text-decoration: underline;
}
.celeb-filmography__sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (min-width: 360px) {
  .celeb-filmography__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .celeb-filmography__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}
@media only screen and (min-width: 992px) {
  .celeb-filmography__container {
    gap: 1rem;
  }
}
.celeb-news__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-news__container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 576px) {
  .celeb-news__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .celeb-news__container {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 992px) {
  .celeb-news__container {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.celeb-news__sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
}
.celeb-tvshows__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-tvshows__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-tvshows__item {
  display: flex;
  flex-direction: column;
}
.celeb-tvshows__image {
  border-radius: 0.5rem;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}
.celeb-tvshows__itemtitle {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 0 0.25rem;
}
.celeb-tvshows__sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (min-width: 360px) {
  .celeb-tvshows__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .celeb-tvshows__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.celeb-videos__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-videos__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.celeb-videos__item {
  display: flex;
  flex-direction: column;
}
.celeb-videos__sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
}
.celeb-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .celeb-page {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 992px) {
  .celeb-page {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.celeb-page__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
@media only screen and (min-width: 992px) {
  .celeb-page__top {
    flex-direction: row;
  }
}
.celeb-page__top-title {
  font-size: 1.25rem;
}
.celeb-page__top-name {
  font-weight: 600;
}
.celeb-page__top-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-page__top-bollywood,
.celeb-page__top-television,
.celeb-page__top-digital {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--clr-neutral-80);
  border-radius: 0.5rem;
  padding: 0.5rem;
  background: var(--clr-surface);
}
.celeb-page__top-item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  position: relative;
}
@media only screen and (min-width: 576px) {
  .celeb-page__top-item {
    position: static;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 0.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .celeb-page__top-item {
    grid-template-columns: 100px 1fr auto;
  }
}
.celeb-page__top-image {
  width: 100%;
}
.celeb-page__top-starrank {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  font-weight: 600;
  font-size: 10px;
}
@media only screen and (min-width: 576px) {
  .celeb-page__top-starrank {
    position: static;
  }
}
.celeb-page__top-star {
  background: var(--clr-secondary);
  color: var(--clr-always-white);
  text-align: center;
  padding: 0.125rem 0.5rem;
}
.celeb-page__top-rank {
  padding: 0.125rem 0.5rem;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  background: var(--clr-neutral-10);
  color: var(--clr-white);
  text-align: center;
}
.celeb-page__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.celeb-page__viewmore {
  align-self: center;
}
.celeb-page-action2 {
  display: flex;
  background: var(--clr-surface);
  border: 1px solid var(--clr-neutral-70);
}
.celeb-page-action2 .active {
  position: relative;
  color: var(--clr-on-secondary);
  background: var(--clr-secondary);
  border: 1px solid var(--clr-neutral-70);
  border-bottom: 0;
}
.celeb-page-action2 .active:hover {
  color: var(--clr-on-secondary) !important;
}
.celeb-page-action2 .active:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: calc(50% - 0.5rem);
  border-style: solid;
  border-width: 0.5rem 0.5rem 0 0.5rem;
  border-color: var(--clr-secondary) transparent transparent transparent;
}
.celeb-page-tab {
  width: 100%;
  font-weight: 600;
  padding: 0.25rem;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  font-size: 14px;
  border-right: 1px solid var(--clr-neutral-70);
}
.celeb-page-tab:last-child {
  border-right: 0;
}
.celeb-page-tab:hover {
  color: var(--clr-secondary);
}
@media only screen and (min-width: 768px) {
  .celeb-page-tab {
    font-size: 1.125rem;
    padding: 0.75rem;
  }
}
.celeb-page__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 576px) {
  .celeb-page__container {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .celeb-page__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.celeb-page__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.celeb-page__item-info {
  display: flex;
  justify-content: space-between;
}
.celeb-page__item-starrank {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  width: 3rem;
  text-align: center;
}
.celeb-page__item-star {
  background: var(--clr-secondary);
  color: var(--clr-always-white);
  width: 100%;
  padding: 0.5rem;
}
.celeb-page__item-rank {
  display: flex;
  flex-direction: column;
  padding: 0.25rem;
  background: var(--clr-neutral-10);
  color: var(--clr-white);
}
.celeb-page__item-rank:after {
  content: 'rank';
  text-transform: capitalize;
  font-size: 10px;
}
.celeb-page__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.celeb-page__position {
  display: flex;
  align-items: center;
}
.celeb-page__position .svg-wrapper {
  width: 24px;
  height: 24px;
  padding: 0.25rem;
}
.celeb-page__position .svg-wrapper svg {
  fill: currentColor;
  fill: var(--clr-success);
  transform: rotate(90deg);
}
.celeb-page__sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
}
