.header_navbar {
  background-color: #112b64;
}
body {
  background-color: #fff !important;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blink {
  animation: blink 1s infinite;
}
.slider-section {
  width: 490px;
}
.right-actions {
  position: absolute;
  right: 0;
  z-index: 1;
  height: 35%;
  /* background: red; */
  padding: 20px 10px;
  bottom: 90px;
}
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-cta i {
  font-size: 24px;
  /* line-height: 1.4; */
}
.actions.btn-group.drop-left.show .dropdown-menu.show {
  position: absolute;
  transform: translate3d(-122px, 50px, 0px) !important;
}
#copy-link-btn {
  padding: 05px 16px;
}
#copy-link {
  display: flex;
  justify-content: start;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.right-actions .dropdown-item {
  display: flex !important;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.social-cta {
  border: 1px solid #878787;
  background: white;
  padding: 10px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: gray;
}
.social-cta:hover,
.social-cta:focus {
  color: #ed1058;
  border: 1px solid #ed1058;
}
button.social-cta.btn-like-outline {
  border: 1px solid #ed1058;
  color: red;
}
button.social-cta.btn-like-outline:hover {
  background: #ed1058;
  color: white;
  border: 1px solid #ed1058;
}
.btn-like {
  background: #ed1058;
  color: white;
  border: 1px solid #ed1058;
}
.btn-like:hover {
  opacity: 0.9;
  background: #ed1058;
  color: white;
  border: 1px solid #ed1058;
}
.actions a.dropdown-item {
  padding: 5px 16px;
}

/* --- Main Slider Container --- */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  overflow: hidden;
  /* border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  background: #fff;
  height: calc(100vh - 180px);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.slide img,
.slide video {
  width: 100%;
  height: auto;

  background: #000;
  object-fit: contain;
  object-position: top;
  border-radius: 0px;
}

/* --- Arrows --- */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.arrow:hover {
  background: #007bff;
  color: #fff;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* --- Thumbnails --- */
.thumbnails {
  position: absolute;
  bottom: 0px;
  /*margin-top: 20px;*/
  /*display: flex;*/
  /* gap: 5px; */
  /*flex-wrap: wrap;*/
  /*justify-content: flex-start;*/
  /*display: grid;*/
  /*grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;*/
  /*column-gap: 5px;*/
  margin-top: 20px;
  display: flex;
  /* gap: 5px; */
  flex-wrap: wrap;
  justify-content: flex-start;
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
  gap: 10px;
  width: 100%;
  background: #17171761;
  padding: 10px 10px;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.thumbnail {
  cursor: pointer;
  border: 2px solid transparent;
  object-fit: cover;
  /* height: 110px;
            width: 110px; */
  object-position: top;
  object-fit: cover;

  width: 55px;
  min-width: 55px;
  height: 75px;
}

.thumbnail.active {
  border: 2px solid #fc1572;
  border-radius: 13px;
}

.thumbnail img,
.thumbnail video {
  /* max-width: 76px; */
  /* margin: 5px; */
  cursor: pointer;
  border: 2px solid white;
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: top;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .personal-info-section {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .personal-info-section .info-col {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .info-col + .info-col {
    border-left: 1px solid #dddddd5e;
  }
  .info-col strong.information {
    text-align: center;
    font-size: 12px !important;
    margin-left: -1px;
  }
  .mobile-back {
    display: inline-block !important;
  }
  .navbar-brand {
  }
  .thumbnail img,
  .thumbnail video {
    height: 100%;
    width: 100%;
  }
  .card-modal-wrapper {
    height: 300px !important;
  }
  .arrow {
    display: none;
  }
}

.thumbnail video {
  pointer-events: none;
}

@media (max-width: 991px) {
  .slider-section {
    width: 100%;
  }
}
.price-promo {
  border: 2px solid transparent;
  display: flex;

  padding: 5px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 22369600px;

  /* Background gradient */
  background:
    linear-gradient(90deg, #ad46ff 0%, #fa7d4d 50%, #f6339a 100%) padding-box,
    /* Border gradient */
    linear-gradient(90deg, #f4f4f4, #fdc700, #fdc700, #f2f2f2) border-box;
}
h1.modal-name {
  color: #101828;

  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2rem; /* 160% */
}
.rating {
  color: #101828;

  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.views {
  color: #4a5565;

  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}
.rating-stars i {
  color: orange;
}
.about-block {
  margin-bottom: 15px;
}
.about-model-headings {
  color: #000;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16.5px; /* 117.857% */
  margin-bottom: 15px;
  margin-top: 15px;
}
.info-col {
  flex-direction: column;
  display: flex;
}
.info-icon {
  /* width: 20px; */
  display: flex;
  align-items: center;

  justify-content: start;
}
.info-icon img {
  height: 20px;
}
.info-col strong.title {
  color: #171717;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 2px;
  margin-bottom: 5px;
}
.info-col .information {
  color: #484848;

  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}
.personal-info-section {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  background: white;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.offered-service {
  border-radius: 4px;
  border: 1px solid #e91e63;
  background: #fff;
  padding: 3px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.service-name {
  color: #000;

  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.service-price {
  color: #112b64;

  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.location-exists {
  color: #2b7fff;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 11.25px; /* 80.357% */
}
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.timings {
  border-radius: 6px;
  background: #d6ffe6;
  padding: 2px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  align-items: start;
}
.day {
  color: #00a63e;
  text-align: center;

  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
}
.timing {
  color: #000;
  text-align: center;
  font-family: Sarabun;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 177.778% */
  flex-direction: row;
  gap: 5px;
}

.model-description {
  color: #4a5565;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px; /* 162.5% */
}
.notes {
  display: flex;
  height: 24px;
  padding: 4px 10px;
  align-items: flex-start;
  border-radius: 22369600px;
  border: 1px solid #99a1af;
  color: #6a7282;

  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
}
.link-btn {
  color: #2b7fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  border: 0;
  background: none;
}
.link-btn:hover {
  text-decoration: underline;
  border: 0;
  background: none;
}

.claim-btn {
  color: #2b7fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.claim-btn:hover {
  text-decoration: underline;
  border: 0;
  background: none;
}
.report-btn {
  color: #2b7fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.report-btn:hover {
  text-decoration: underline;
  border: 0;
  background: none;
}

#profileTabs .nav-link {
  color: #6a7282;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-transform: capitalize;
}
#profileTabs .nav-link.active {
  color: #e91e63;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.btn-review {
  display: flex;
  /* height: 813px; */
  padding: 16px 32px;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  align-self: stretch;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  /* line-height: 21px; */
  border-radius: 10px;
  border: 1.333px solid #008236;
  color: #008236;
  background: white;
  align-items: center;
  justify-content: center;
}
.btn-question {
  display: flex;
  /* height: 813px; */
  padding: 16px 32px;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  align-self: stretch;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  /* line-height: 21px; */
  border-radius: 10px;
  border: 1.333px solid #09244b;
  color: #09244b;
  background: white;
  align-items: center;
  justify-content: center;
}
.tabTitle {
  color: #101828;

  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 160% */
}
.payment-section {
  background: #fff;

  padding: 10px;
}
.payment-section .btn {
  border-radius: 10px !important;
  font-size: 16px !important;
  height: 48px !important;
}
.payment-section span {
  border-radius: 6px;
  border: 1px dashed #e91e63;
  background: #fff0f5;
  color: #e91e63;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  padding: 8px 10px;
  text-align: center;
}
.payment-section span.online {
  display: flex;
  padding: 1.333px 7.021px 2.167px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 44739200px;
  opacity: 0.8794;
  background: #007bff;
  color: white;
  position: absolute;
  right: 12.968px;

  top: -6.917px;
  border: 1px solid #ddd;
}
.payment-section .btn {
  width: 50%;
}
@media (max-width: 767px) {
  .timings {
    padding: 5px;
  }
  .availablity-timings {
    gap: 10px !important;
  }
  .payment-section {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 1000;
    box-shadow:
      0 -15px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-top: 1.333px solid #e5e7eb;
  }
}

/**profile page tabs design css*/
#ProfilemodelInfo .nav-item .nav-link {
  color: #6a7282;

  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2; /* 150% */
  text-transform: capitalize;
  min-width: 150px;
  text-align: center;
  padding: 13px;
  height: 57px;
}

#ProfilemodelInfo .nav-item .nav-link.active {
  color: #e91e63;

  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 150% */
}
@media (min-width: 1024px) {
  main {
    padding: 0px 100px;
  }
  .rating {
    font-size: 18px;
  }
  .arrow {
    top: 30%;
  }
  .profile-section {
    padding: 70px 16px 16px 16px !important;
  }
  .slider-container {
    height: 86.5vh;
    border-radius: 12px;
  }
  .slider-section {
    width: 360px;
    position: sticky !important;
    top: 70px;
  }
  .payment-section {
    max-width: 480px;
  }
  .personal-info-section {
    gap: 60px !important;
    padding-bottom: 15px;
  }
  .locations {
    padding-bottom: 15px;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
  }
  .about-model-headings {
    font-size: 18px;
  }
  h1.modal-name.mt-10 {
    font-size: 30px;
  }
  .link-btn {
    font-size: 16px;
  }
  .claim-btn,
  .report-btn {
    font-size: 16px;
  }
  .claim-btn img,
  .report-btn img {
    width: 17px;
  }
  .thumbnails {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.animate-aurora {
  animation: aurora 8s ease-in-out infinite alternate;
  background-image: linear-gradient(
    135deg,
    #ff0080,
    #7928ca,
    #0070f3,
    #38bdf8,
    #ff0080
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-duration: 10s;
}
@media (max-width: 767px) {
  .footer_area {
    padding-bottom: 100px;
  }
}
.locations {
  background: #f0f0f0;
  padding: 10px;
  border-radius: 8px;
}
