* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #222;
  font-size: 14px;
  background: #fff;
}
a {
  font-family: "Poppins", sans-serif;
  color: #222;
  text-decoration: none;
}
a:hover {
  color: #222;
  text-decoration: none;
}
.custom-container {
  max-width: 1200px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}
.custom-title {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
}
.custom-creators {
  padding: 30px 0;
}
.custom-creators__row {
  display: flex;
  align-items: Center;
  flex-wrap: Wrap;
}
@media (min-width: 1200px) {
  .custom-creators__row--col {
    width: 22.5%;
    margin-right: 3.333%;
    margin-top: 40px;
  }
  .custom-creators__row--col:nth-child(1),
  .custom-creators__row--col:nth-child(2),
  .custom-creators__row--col:nth-child(3),
  .custom-creators__row--col:nth-child(4) {
    margin-top: 0;
  }
  .custom-creators__row--col:nth-child(4n + 0) {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .custom-creators__row--col {
    width: 32%;
    margin-right: 2%;
    margin-top: 20px;
  }
  .custom-creators__row--col:nth-child(1),
  .custom-creators__row--col:nth-child(2),
  .custom-creators__row--col:nth-child(3) {
    margin-top: 0;
  }
  .custom-creators__row--col:nth-child(3n + 0) {
    margin-right: 0;
  }
}
@media (min-width: 520px) and (max-width: 767px) {
  .custom-creators__row--col {
    width: 48.5%;
    margin-right: 3%;
    margin-top: 20px;
  }
  .custom-creators__row--col:nth-child(1),
  .custom-creators__row--col:nth-child(2) {
    margin-top: 0;
  }
  .custom-creators__row--col:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-width: 519px) {
  .custom-creators__row--col {
    width: 48%;
    margin-right: 4%;
    margin-top: 10px;
  }
  .custom-creators__row--col:nth-child(1),
  .custom-creators__row--col:nth-child(2) {
    margin-top: 0;
  }
  .custom-creators__row--col:nth-child(even) {
    margin-right: 0;
  }
}
.custom-creators__row--col .creator-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: Relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.custom-creators__row--col .creator-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  height: 100%;
  transition: all 0.2s ease-in-out;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}
.custom-creators__row--col .creator-item .content .name {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  display: block;
  line-height: 35px;
  margin-bottom: 5px;
}
@media (max-width: 519px) {
  .custom-creators__row--col .creator-item .content .name {
    font-size: 18px;
    line-height: 20px;
  }
}
.custom-creators__row--col .creator-item .content .price {
  display: block;
  font-weight: 300;
  color: #fff;
  font-size: 17px;
  line-height: 17px;
}
@media (max-width: 519px) {
  .custom-creators__row--col .creator-item .content .price {
    font-size: 13px;
    line-height: 14px;
  }
}
.custom-creators__row--col .creator-item img {
  display: block;
  width: 100%;
  transition: all 0.2s ease-in-out;
  height: 350px;
  object-fit: cover;
}
@media (max-width:1199px) {
  .custom-creators__row--col .creator-item img {
    height:270px;
  }
}
.custom-creators__row--col .creator-item:hover img {
  transition: all 0.2s ease-in-out;
  transform: Scale(1.1);
}
.creator-detail {
  padding: 20px 0 20px 0;
}
@media (max-width: 1199px) {
  .creator-detail {
    padding: 20px 0 0 0;
  }
}
.creator-detail .go-back-creators {
  display: flex;
  align-items: Center;
  gap: 14px;
}
.creator-detail .go-back-creators svg {
  display: block;
}
.creator-detail .go-back-creators svg path[stroke] {
  stroke: #2280fc;
}
.creator-detail .go-back-creators svg path[fill] {
  fill: #2280fc;
}
.creator-detail .creator-profile {
  margin-top: 30px;
  display: flex;
  padding-right:35%;
  align-items: center;
  gap: 30px;
}
@media (max-width:1199px) {
  .creator-detail .creator-profile {
    padding-right:0;
  }
}
.creator-detail .creator-profile .img img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .creator-detail .creator-profile .img img {
    width: 100px;
    height: 100px;
  }
}
.creator-detail .creator-profile .info .name {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .creator-detail .creator-profile .info .name {
    font-size: 24px;
  }
}
.creator-detail .creator-profile .info .birthday {
  font-size: 18px;
  line-height: 18px;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .creator-detail .creator-profile .info .birthday {
    font-size: 16px;
  }
}
.creator-detail .creator-videos {
  margin-top: 50px;
  max-width:985px;
}
.creator-detail .creator-video-item {
  height: 370px;
  position: Relative;
}
.creator-detail .creator-video-item iframe {
  width: 100%;
  height: 370px;
  display: block;
}
.video-iframe {
  height:560px;
  width:315px;
  display:block;
}
.creator-detail .yt-box {
  display: block;
  position: Relative;
}
.creator-detail .yt-box > img {
  cursor: pointer;
  display: block;
  width: 100%;
  object-fit: cover;
  height: 560px;
}
@media (max-width:1199px) {
  .creator-detail .yt-box > img {
    height:360px;
  }
  .video-iframe {
    height:360px;
  }
}
.creator-detail .yt-box .icon {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: Center;
  justify-content: Center;
}
.creator-detail .yt-box:hover .icon {
  transition: all 0.2s ease-in-out;
  transform: translateY(-50%) translateX(-50%) Scale(1.1);
}
.creator-detail .creator-about {
  margin-top: 50px;
  padding-right:35%;
}
@media (max-width:1199px) {
  .creator-detail .creator-about {
    padding-right:0;
  }
}
.creator-detail .creator-about .about-list {
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: Wrap;
}
@media (max-width: 767px) {
  .creator-detail .creator-about .about-list {
    flex-direction: column;
  }
}
.creator-detail .creator-about .about-list li {
  width: 48%;
  margin-top: 20px;
  margin-right: 4%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .creator-detail .creator-about .about-list {
    flex-direction: column;
  }
  .creator-detail .creator-about .about-list li {
    width: 100%;
  }
}
.creator-detail .creator-about .about-list li:nth-child(1),
.creator-detail .creator-about .about-list li:nth-child(2) {
  margin-top: 0;
}
.creator-detail .creator-about .about-list li:nth-child(even) {
  margin-right: 0;
}
.creator-detail .creator-about .about-list li .icon {
  width: 20px;
}
.creator-detail .creator-about .about-list li .icon svg {
  display: block;
  width: 20px;
}
.creator-detail .creator-about .about-list li .icon svg path[stroke] {
  stroke: #222;
}
.creator-detail .creator-about .about-list li .icon svg path[fill] {
  fill: #222;
}
.creator-detail .creator-about .about-list li .text {
  width: calc(100% - 20px);
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
}
.creator-detail .creator-about .about-list li .text span {
  display: block;
  font-weight: 300;
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .creator-detail .creator-about .about-list li {
    margin: 0 !important;
    margin-bottom: 16px !important;
  }
}
.custom-long {
  margin: 0;
  line-height: 24px;
  padding: 0;
}
.creator-order {
  position: fixed;
  top: 130px;
  right: 30px;
  width: 350px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 30px;
}
@media (max-width: 1199px) {
  .creator-order {
    padding: 20px;
    position: Relative;
    top: auto;
    margin-top: 20px;
    right: auto;
    width: 100%;
  }
}
.creator-order__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.creator-order .order-package {
  border: 1px solid #2280fc;
  background: #f3f7ff;
  margin-top: 20px;
  padding: 20px;
}
.creator-order .order-package__title {
  font-size: 12px;
  color: #777;
}
.creator-order .order-package__title span {
  display: block;
  color: #2280fc;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.creator-order .order-info {
  border: 1px solid #f1f1f1;
  color: #777;
  padding: 20px;
  margin-bottom: 20px;
}
.creator-order .order-info__time {
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}
.creator-order .order-info__title {
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.creator-order .order-info__content {
  font-size: 12px;
  display: block;
}
.creator-order .order-button {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  background: #2280fc;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}
.creator-order .order-button:hover {
  transition: all 0.2s ease-in-out;
  background: #da1939;
}
.cart-special {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: Fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
@media (max-width: 767px) {
  .cart-special {
    padding: 10px 20px;
  }
}
.cart-special-container {
  display: flex;
  align-items: Center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.cart-special .price {
  color: #232323;
  font-weight: 700;
}
.cart-special .price span {
  color: #2280fc;
}
@media (max-width: 767px) {
  .cart-special .column {
    width: 100%;
  }
  .cart-special .column .btn {
    width: 100%;
  }
}
.cart-special .column:first-child {
  display: flex;
  gap: 20px;
  align-items: Center;
}
.cart-special .column:first-child .cart-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-special .column:first-child .cart-profile img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .cart-special .column:first-child .cart-profile img {
    width: 50px;
    height: 50px;
  }
}
.cart-special .column:first-child .cart-profile .infos {
  font-weight: 700;
  font-size: 16px;
}
.cart-special .column:first-child .cart-profile .infos span {
  color: #8c93a7;
  font-size: 12px;
  display: block;
  font-weight: 300;
}

.yt-box {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.yt-box .video-play {
  z-index: 6;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.yt-box iframe {
  z-index: 5;
}
.video-play,
.yt-box iframe,
.yt-box object,
.yt-box embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yt-box iframe,
.yt-box object,
.yt-box embed {
  pointer-events: none;
}

.video-play img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
