@import url("core.css");
.creator-header {
  padding: 1rem;
  padding-top: 80px;
  width: 100%;
  position: relative;
}
.creator-header .cover-image {
  width: 100%;
  background-color: rgb(202, 202, 202);
  height: 150px;
  border-radius: 10px;
  border-bottom-left-radius: 30px;
}

.head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.head .main_details {
  display: flex;
  align-items: end;
  padding: 0 2rem;
}
.head .main_details .image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  margin-top: -75px;
}
.head .main_details .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head .main_details .info {
  padding-left: 1rem;
}
.head .main_details .info h1 {
  padding: 0;
  margin: 0;
  font-size: 25px;
}
.head .main_details .info p {
  padding: 0;
  margin: 0;
}
.head .social ul {
  padding: 0;
  margin: 0;
}
.head .social .wrapper {
  display: inline-flex;
  list-style: none;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}
.head .social a {
  color: unset;
}
.head .social .wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.head .social .wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.head .social .wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.head .social .wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.head .social .wrapper .icon:hover span,
.head .social .wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.head .social .wrapper .facebook:hover,
.head .social .wrapper .facebook:hover .tooltip,
.head .social .wrapper .facebook:hover .tooltip::before {
  background: #1877F2;
  color: #fff;
}
.head .social .wrapper .tiktolk:hover,
.head .social .wrapper .tiktolk:hover .tooltip,
.head .social .wrapper .tiktolk:hover .tooltip::before {
  background: #f21d99;
  color: #fff;
}
.head .social .wrapper .youtube:hover,
.head .social .wrapper .youtube:hover .tooltip,
.head .social .wrapper .youtube:hover .tooltip::before {
  background: #f12121;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .creator-header .cover-image {
    height: 100px;
  }
  .head .main_details {
    padding: 0;
    flex-wrap: wrap;
  }
  .head .main_details .image {
    height: 100px;
    width: 100px;
    margin-top: -50px;
  }
  .head .main_details .info {
    padding-top: 1rem;
  }
  .head .main_details .info h1 {
    font-size: 18px;
  }
  .head .main_details .info p {
    font-size: 14px;
  }
  .head .social {
    margin-top: 1rem;
    width: 100%;
  }
}/*# sourceMappingURL=creator.css.map */