/* 

Theme: SMMEarth V2.0
Author: Yunus A. Polash
Phone: +8801303260848
Email: yunus.a.polash@gmail.com
Telegram: @mr_x_y_z_0

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #007bff;
  --primary-deep: #004a99;
  --white: #fff;
  --body-color: #fbfbfb;
  --primary-light: rgba(0, 123, 255, 0.21);
  --section-dark: #020212;

  --primary-font: "Nohemi", sans-serif;
  --text-font: "Inter", sans-serif;

  --border-color: #d9d9d9;
  --dark-body--color: #0a0a0a;
  --dark-mode-icon-bg: #232323;
  --header-icon-bg: #e7f3ff;
  --header-icon-border: #cae3ff;
  --danger-bg: #ffe7e8;
  --danger-color: #ff4649;
  --danger-border: #ffcaca;
  --primary-gradient: linear-gradient(to top, #007bff, #00c6ff);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --profile-content-bg: #e9f5ff;
  --danger-hover-bg: #fdccce;
  --text-color-light: #5d5d5d;
  --text-color-dark: #4a5465;
  --user-data-border: #f0f0f0;
  --black: #000;
  --icon-color: #444;
  --dark-mode-bg: #141414;
  --dark-mode-border: #303030;

  --auth-body-color: #ecf6fd;

  /* Font Sizes */
  --text-12: 12px;
  --text-13: 13px;
  --text-24: 24px;

  --text-14: 14px;
  --text-16: 16px;
  --text-18: 18px;
  --text-22: 22px;
  --text-28: 28px;
  --text-35: 35px;
  --text-38: 38px;
  --text-40: 40px;
  --text-48: 48px;
}

.dark-mode-active {
  --border-color: #252525;
}

.hidden {
  display: none;
}

body {
  background: var(--body-color);
  font-family: var(--text-font);
  font-size: var(--text-16);
}

.section-title {
  font-size: var(--text-38);
  line-height: 1.1;
  color: var(--section-dark);
  margin-bottom: 0;
  font-weight: bold;
  font-family: var(--primary-font);
}

.section-text {
  color: var(--bs-secondary);
  font-size: var(--text-18);
}

.section-text:last-of-type {
  margin-bottom: 0 !important;
}

.section-info-wrapper.center-position .hero-badge {
  margin: 0 auto;
}

.section-info-wrapper.center-position .section-title,
.section-info-wrapper.center-position .section-text {
  text-align: center;
}

.section-gap-100 {
  padding: 100px 15px;
}

.section-gap {
  padding: 50px 0;
  float: left;
  width: 100%;
}

.section-gap-margin {
  margin: 50px 0;
  float: left;
  width: 100%;
}

.custom-primary-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: var(--text-16);
}

.custom-primary-btn a {
  position: relative;
  z-index: 2;
}

/* Sliding Overlay */
.custom-primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  transform: skew(30deg);
  -webkit-transform: skew(30deg);
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -o-transform: skew(30deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.custom-primary-btn:hover::after {
  left: 150%;
}

.custom-primary-btn:hover {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}

.text-primary {
  color: var(--primary-color) !important;
}

.custom-primary-btn.white {
  background: var(--white);
  color: var(--primary-color);
}

.custom-primary-btn.white:hover {
  background: var(--white);
  color: var(--primary-color) !important;
  box-shadow: none;
  transform: none;

  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}

.custom-primary-btn.white:hover::after {
  all: unset;
}

/* ### global style ### */

/* header style */

.custom-primary-style {
  background: linear-gradient(
    171.05deg,
    var(--primary-color),
    var(--primary-deep)
  );
  border-radius: 50px;
  padding: 11px 25px;
  font-family: var(--text-font);
  font-weight: 500;
  font-size: var(--text-16);
  text-transform: capitalize;
  color: var(--white) !important;
}

.custom-primary-style:hover {
  background: linear-gradient(
    171.05deg,
    var(--primary-deep),
    var(--primary-color)
  );
}

/* Transparent Header */
.custom-header {
  transition: all 0.3s ease;
  background: transparent;
}

.header-blur {
  /*backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
  background: var(--white);
}

.custom-header .navbar-nav {
  background: var(--white);
  padding: 12px;
  border: 1px solid #f2f2f2;
  border-radius: 90px;
  -webkit-border-radius: 90px;
  -moz-border-radius: 90px;
  -ms-border-radius: 90px;
  -o-border-radius: 90px;
}

.header-blur .navbar-nav {
  border-color: transparent;
}

.main-menu .nav-link {
  font-size: var(--text-16);
  padding: 8px 12px !important;
  border-radius: 6px;
  color: #232323;
  font-weight: 500;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.main-menu .nav-link .nav-link.active {
  border: 1px solid #ebebeb;
}

/* Active Menu */
.main-menu .nav-link.active,
.main-menu .nav-link:hover {
  background: #ebebeb;
  color: var(--section-dark);
}

/* Mobile offcanvas styling */
.offcanvas .nav-link {
  padding: 12px 0;
  font-size: var(--text-16);
  border-bottom: 1px solid #f1f1f1;
}

.offcanvas a.nav-link.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
}

.navbar-brand {
  font-weight: 800;
  font-size: var(--text-35);
  line-height: 100%;
  letter-spacing: -2%;
}

/* Hero Section */
.hero-section {
  padding-top: 150px;
  padding-bottom: 270px;
  background-image: url("https://cdn.fexpink.com/smmearth/img/hero-banner.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-title {
  font-weight: 700;
  font-style: Bold;
  font-size: var(--text-38);
  margin-bottom: 10px;
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: var(--text-18);
  color: #474747;
  margin-bottom: 15px;
}

.custom-primary-btn {
  background: linear-gradient(
    171.05deg,
    var(--primary-color),
    var(--primary-deep)
  );
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin-top: 15px;
}

.custom-primary-btn:hover {
  background: linear-gradient(
    171.05deg,
    var(--primary-deep),
    var(--primary-color)
  );
  color: var(--white) !important;
}

/* Avatars */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  margin-left: -25px;
}

.avatar:first-child {
  margin-left: 0;
}

.user-count {
  font-weight: 600;
  color: #444;
}

.video-gallery-section {
  padding: 50px 0;
}

.video-gallery {
  gap: 20px;
}

/*.video-card {
    width: 205px;
    height: 345px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}*/

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

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /*background: rgba(255, 255, 255, 0.45);
    */
  /*backdrop-filter: blur(5px);
    */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-38);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  cursor: pointer;
}

/* Hover effect */
.video-card:hover .play-btn {
  /*background: rgba(255, 255, 255, 0.7);
    */
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  color: var(--primary-color);
}

.video-gallery-section {
  position: relative;
  margin-top: -250px;
}

/*.video-gallery-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('https://cdn.fexpink.com/smmearth/img/hero-banner.png') no-repeat center center;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}*/

.video-card {
  overflow: hidden;
  border-radius: 8px;
  height: 400px !important;
}

.swiper-slide {
  transition: transform 0.3s;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-modal iframe {
  width: 100%;
  height: 90dvh;
  border-radius: 12px;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  font-size: var(--text-24);
  border-radius: 50%;
  cursor: pointer;
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.video-modal-close:hover {
  background: #d3d2d2;
}

/* rev section style */
.section-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.custom-padding-card {
  padding: 0 50px 0 0;
}

.hero-badge {
  font-size: var(--text-16);
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  padding: 5px 10px;
  border-radius: 50rem;
  background-color: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary-border-subtle);
  gap: 5px;
  font-weight: 500;
}

.hero-badge svg {
  margin-right: 0.5rem;
}

/* counter style */
.stats-section {
  padding: 50px 20px;
  background: url(https://cdn.fexpink.com/smmearth/img/Counter\ Sections.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: transform 0.3s ease;
  color: var(--white);
  font-size: var(--text-38);
}

.stat-item:hover .stat-icon-wrapper {
  transform: scale(1.05);
}

.stat-icon {
  color: var(--white);
}

.stat-number {
  font-size: var(--text-28);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.stat-description {
  font-size: var(--text-22);
  font-weight: 400;
  color: var(--white);
}

/*service section style */

.service-accordion-item {
  border: none;
  background: none;
}

.service-btn {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 5px 7px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.service-btn:not(.collapsed) {
  background: #f8f8f8;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.service-btn::after {
  background-size: 12px;
  width: 12px;
  height: 12px;
  margin-left: auto;
}

.service-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--text-18);
}

/* Colors */
.service-icon.facebook {
  background: #1877f2;
}

.service-icon.twitter {
  background: #1e1e1e;
}

.service-icon.twitch {
  background: #6441a5;
}

.service-icon.soundcloud {
  background: #ff5500;
}

.service-icon.instagram {
  background: #1877f2;
}

.service-icon.spotify {
  background: #1db954;
}

.service-icon.linkedin {
  background: #0a66c2;
}

.service-icon.telegram {
  background: #24a1de;
}

.service-icon.tiktok {
  background: #010101;
}

.service-icon.discord {
  background: #7289da;
}

.service-icon.quora {
  background: #b92b27;
}

.service-icon.vimeo {
  background: #19b7ea;
}

.service-icon.youtube {
  background: #ff0000;
}

.service-icon.kick {
  background: #00e701;
}

.service-icon.snapchat {
  background: #fffc00;
}

.service-icon.onlyfans {
  background: #00aff0;
}

.service-text {
  font-size: var(--text-16);
  font-weight: bold;
}

.accordion-body {
  border: 1px solid #ddd;
  border-top: none;
  padding: 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: var(--white);
  font-size: var(--text-14);
}

#servicesAccordion1 .accordion-item,
#servicesAccordion2 .accordion-item,
#servicesAccordion3 .accordion-item,
#servicesAccordion4 .accordion-item {
  margin-bottom: 10px;
}

/* Social Media Presence */
.socail-media-pre-sec {
  padding: 60px 20px;
  /*background: url(https://cdn.fexpink.com/smmearth/img/social-media-pre-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;*/
  background: linear-gradient(to bottom, #020518 0%, #022454 50%, #020417 100%);
}

.socail-media-pre-sec .hero-badge {
  background: rgb(0 123 255 / 21%);
  border: 0;
}

.img-size-handle img {
  height: 500px;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

/* how it work */
.how-it-work-bg {
  background: url(https://cdn.fexpink.com/smmearth/img/Connect-With-Us.png)
    no-repeat center center;
  background-size: cover;
  width: 100%;
  border-radius: 20px;
}

.how-it-work-padding {
  padding: 100px 20px 200px;
}

.how-does-it-work-sec .hero-badge {
  background: rgba(255, 255, 255, 0.21);
  border: 0;
  color: var(--white);
}

.how-it-work-cards {
  margin-top: -200px;
}

.steps-section {
  height: calc(100% - 2.5rem);
}

.step-card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  height: 100%;
}

.step-badge {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: #f1f1f1;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-number {
  font-size: var(--text-16);
  font-weight: bold;
}

.step-label {
  font-size: var(--text-16);
  font-weight: bold;
  text-transform: uppercase;
}

.step-card {
  border: none;
  border-radius: 24px;
  padding-top: 2.8rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.step-illustration {
  background: #f3f7ff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card .card-title {
  font-weight: 700;
  font-size: var(--text-22);
}

.step-card .card-text {
  font-size: var(--text-16);
  color: #6b7280;
  line-height: 1.5;
}

/* benefit section */
.benefit-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  box-shadow: 0 5px 14px rgba(175, 175, 175, 0.25);
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 128px;
}

.benefit-card::after {
  content: "";
  position: absolute;
  top: 54px;
  right: 0;
  background-image: url("https://cdn.fexpink.com/smmearth/img/card-bg-image.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: right center;
  z-index: -1;
}

.benefit-card .benefit-card-title {
  font-size: var(--text-22);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--primary-font);
  color: var(--primary-color);
}

.benefit-card .benefit-card-text {
  font-size: var(--text-18);
  margin-bottom: 0;
  color: #474747;
}

.benefit-card-img {
  text-align: end;
}

.benefit-card-img img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.custom-margin {
  margin: 60px 0;
}

/* testimonial style */
.testimonial-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.testimonial-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: var(--text-28);
}

.testimonial-name span {
  font-weight: 400;
}

.testimonial-quote-wrapper {
  position: relative;
  padding: 0 60px;
}

.testimonial-text {
  font-size: var(--text-18);
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  padding: 0 15px;
}

.quote-icon {
  font-size: var(--text-40);
  color: #d0d0d0;
  position: absolute;
  top: -10px;
}

.quote-left {
  left: 10px;
}

.quote-right {
  right: 0;
  bottom: -10px;
  top: auto;
}

/* Swiper pagination dots */
.testimonial-swiper .testimonial-pagination {
  margin-top: 20px;
  text-align: center;
  position: relative;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--white);
  opacity: 1;
  border: 1px solid var(--primary-color);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Swiper nav arrows */
/* Swiper nav arrows using Iconify */
.testimonial-swiper .testimonial-prev,
.testimonial-swiper .testimonial-next {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* hide default Swiper arrow icons */
.testimonial-swiper .testimonial-prev::after,
.testimonial-swiper .testimonial-next::after {
  display: none !important;
}

.testimonial-swiper .testimonial-prev:hover,
.testimonial-swiper .testimonial-next:hover {
  background: var(--primary-deep);
}

.testimonial-swiper .testimonial-prev iconify-icon,
.testimonial-swiper .testimonial-next iconify-icon {
  color: #fff;
}

.testimonial-swiper .testimonial-prev {
  left: 10%;
}

.testimonial-swiper .testimonial-next {
  right: 10%;
}

.custom-margin-top {
  margin-top: 50px;
}

/* ###testimonial style */

/* social media presence */
.socail-media-pre-bg-2 {
  background: #ececec;
}

/* faq */
.faq-section {
  padding: 40px 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 4px;

  margin-bottom: 12px;
  box-shadow: 0 0 4px 0 rgba(236, 236, 236, 0.81);
}

.faq-item button {
  padding: 15px;
  font-size: var(--text-16);
  font-weight: 500;
}

.faq-answer {
  padding: 0 15px 15px;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-13);
  font-weight: 500;
  text-align: left;
  color: #333;
}

.faq-question:focus {
  outline: none;
  box-shadow: none;
}

.faq-icon {
  font-size: var(--text-12);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: var(--text-14);
  color: #555;
}

@media (max-width: 767.98px) {
  .faq-item {
    margin-bottom: 8px;
  }
}

/* ###faq */

/* contact us */
.social-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--text-18);
  font-weight: 600;
  color: #111;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/*.social-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}*/

.social-pill .iconify {
  font-size: var(--text-18);
}

/* ###contact us */

/* footer style */
.footer-section {
  background-image: url("https://cdn.fexpink.com/smmearth/img/Footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #f7f7ff;
  font-size: var(--text-14);
  margin-top: 50px;
  float: left;
  width: 100%;
}

.footer-section a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-brand-title {
  font-size: var(--text-35);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-desc {
  color: #cbd5f5;
  font-size: var(--text-14);
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: var(--text-22);
}

.footer-list {
  font-size: var(--text-16);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #007bff 0%, #004a99 100%);

  color: #f9fafb;
  font-size: var(--text-24);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #007bff 0%, #004a99 100%);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: var(--text-24);
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: var(--text-13);
  color: #d1d5db;
}

.footer-contact-label {
  font-size: var(--text-18);
  font-weight: 500;
  margin-bottom: 2px;
  color: #f9fafb;
}

.footer-contact-label div {
  font-size: var(--text-14);
}

.footer-divider {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  margin: 24px 0 14px;
}

.footer-bottom {
  font-size: var(--text-14);
  color: #9ca3af;
}

.footer-bottom a {
  color: var(--primary-color);
}

/* ###footer style */

/* sign up style */

.signup-section {
  padding-top: 120px;
}

.signup-image-wrapper {
  /*max-width: 480px;
    margin: 0 auto;*/
}

.signup-image {
  /*width: 100%;
    height: auto;*/
}

/* Card */
.signup-card {
  padding: 25px;
}

/* Heading */
.signup-title {
  font-size: var(--text-48);
  font-weight: 700;
  margin-bottom: 8px;
}

.signup-title span {
  color: var(--primary-color);
}

/* Subtitle */
.signup-subtitle {
  font-size: var(--text-16);
  font-family: var(--text-font);
  color: #6b7280;
  margin-bottom: 24px;
}

/* Input group */
.signup-input-group {
  position: relative;
  margin-bottom: 14px;
}

.signup-input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: var(--text-22);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0072ec;
  border-radius: 50%;
  color: #fff;
}

/* Inputs */
.signup-input {
  border-radius: 50px;
  padding: 12px 12px 12px 52px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: var(--text-16);
  outline: none;
  height: 55px;
}

.signup-input:focus {
  border-color: var(--primary-color);
  background: var(--white);
}

/* Terms text */
.signup-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-13);
  font-family: var(--text-font);
  color: #4b5563;
  margin: 20px 0;
}

.signup-terms a {
  color: var(--primary-color);
  text-decoration: none;
}

/* OR Divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--text-font);
  font-size: var(--text-13);
  color: #4b5563;
  margin: 16px 0;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
  /* light gray line */
}

/* Google Button */
.signup-google-btn {
  border-radius: 50px;
  padding: 12px 32px;
  background: var(--primary-color);
  border: 1px solid #e5e7eb;
  font-family: var(--primary-font);
  font-size: var(--text-14);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.signup-terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  accent-color: var(--primary-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
label.form-check-label,
a.forgot-password-link,
.already-account-text {
  font-size: var(--text-14);
}
/* ###sign up style */

/* contact page */
.contact-bg-img {
  background-image: url("https://cdn.fexpink.com/smmearth/img/contact-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
  overflow: hidden;
  margin-bottom: 50px;
}

.contact-info-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  box-shadow: 0 5px 14px rgba(175, 175, 175, 0.25);
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 128px;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("https://cdn.fexpink.com/smmearth/img/card-bg-effect-contact.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: right center;
  z-index: -1;
}

.contact-info-card .contact-info-card-title {
  font-size: var(--text-28);
  color: var(--section-dark);
  margin-bottom: 0;
  font-weight: bold;
}

.contact-info-card .contact-info-card-text {
  font-size: var(--text-16);
  color: #474747;
  max-width: 80%;
  margin-bottom: 0;
}

.contact-info-card-img {
  text-align: end;
}

.contact-info-card-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 170px;
}

.contact-info-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ###contact page */

/* blog */
.card.blog-card {
  border-radius: 16px;
  box-shadow: 0 5px 14px rgba(175, 175, 175, 0.25);
  box-sizing: border-box;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid #ebebeb;
}

.blog-card .card-title {
  font-size: var(--text-28);
  font-weight: bold;
}

.blog-card .card-text {
  font-size: var(--text-16);
  color: #474747;
}

/* ###blog */

/* single post style */
.single-post-img img {
  height: 370px;
  width: 100%;
  object-fit: cover;
}

.blog-header-wrapper {
  background-color: var(--white);
  padding: 24px 0 28px;
}

.blog-breadcrumb {
  font-size: var(--text-16);
  color: #7a7a7a;
  margin-bottom: 4px;
}

.blog-breadcrumb span {
  color: var(--primary-deep);
  font-weight: 500;
}

.blog-title {
  font-family: var(--primary-font);
  /*font-size: var(--text-48);*/
  font-weight: 700;
  color: var(--section-dark);
  margin-bottom: 18px;
}

.blog-meta {
  border: 1px solid #ebebeb;
  border-radius: 7px;
  box-shadow: 0 5px 14px rgba(175, 175, 175, 0.25);
  font-size: var(--text-13);
  margin-bottom: 16px;
  padding: 8px 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  gap: 15px;
}

.meta-card {
  padding-right: 25px;
  background-color: var(--body-color);
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  white-space: nowrap;
  border-right: 1px solid #bebebe;
}

.meta-card:last-child {
  border: 0;
  padding: 0;
}

.meta-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
}

.meta-label {
  font-size: var(--text-16);
  font-weight: 600;
  color: var(--section-dark);
}

.meta-text {
  font-size: var(--text-16);
  color: #555;
}

.blog-socials-label {
  font-weight: 600;
  color: var(--section-dark);
  margin-right: 8px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-deep);
  font-size: var(--text-14);
  text-decoration: none;
}

.social-icon + .social-icon {
  margin-left: 6px;
}

.blog-intro {
  font-size: var(--text-16);
  color: #555;
}

.content-summary .summary-box {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
}

.summary-title {
  font-size: var(--text-22);
  font-weight: 700;
  color: var(--section-dark);
}

.summary-list {
  font-size: var(--text-16);
  color: #444;
  padding-left: 18px;
  line-height: 1.6;
}

.summary-list li {
  margin-bottom: 4px;
}

.summary-list a {
  text-decoration: none;
  color: inherit;
}

.summary-list a:hover {
  color: var(--primary-color);
}

.section-title-28 {
  font-size: var(--text-28);
  color: var(--section-dark);
  font-weight: bold;
}

.author-card {
  background-color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
  gap: 25px;
}

.author-img img {
  width: 190px;
  height: 190px;
  border-radius: 8px;
  object-fit: cover;
}

.author-label {
  font-size: var(--text-16);
  color: #777;
  display: block;
  margin-bottom: 4px;
}

.author-name {
  font-size: var(--text-28);
  font-weight: 700;
  color: var(--section-dark);
  margin-bottom: 6px;
}

.author-text {
  font-size: var(--text-16);
  color: #555;
  max-width: 900px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 576px) {
  .author-img img {
    width: 100px;
    height: 100px;
  }

  .author-card {
    gap: 15px;
  }
}

/* ###single post style */

/* ========== Responsive Font Sizes ========== */

@media (max-width: 1199px) {
  :root {
    --text-12: 11px;
    --text-13: 12px;
    --text-14: 13px;
    --text-16: 15px;
    --text-18: 17px;
    --text-22: 20px;
    --text-24: 22px;
    --text-28: 26px;
    --text-35: 32px;
    --text-38: 35px;
    --text-40: 36px;
    --text-48: 44px;
  }

  .main-menu .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  :root {
    --text-12: 11px;
    --text-13: 12px;
    --text-14: 13px;
    --text-16: 14px;
    --text-18: 16px;
    --text-22: 19px;
    --text-24: 20px;
    --text-28: 24px;
    --text-35: 30px;
    --text-38: 33px;
    --text-40: 34px;
    --text-48: 40px;
  }

  .testimonial-swiper .testimonial-prev {
    left: 0;
  }

  .testimonial-swiper .testimonial-next {
    right: 0;
  }
}

/* Max-width 991px */
@media (max-width: 991px) {
  .custom-padding-card {
    padding: 0;
  }

  .img-size-handle img {
    height: 250px;
  }

  .contact-bg-img {
    padding: 80px 0 50px;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 250px;
  }

  .contact-info-card-img img {
    width: 150px;
  }

  .video-card {
    height: 300px !important;
  }

  .single-post-img img {
    height: 250px;
  }

  .how-it-work-padding {
    padding: 50px 20px 200px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .quote-right {
    right: 34px;
  }

  .quote-left {
    left: 34px;
  }

  .quote-icon {
    font-size: 25px;
  }
}

/* Max-width 767px */
@media (max-width: 767px) {
  :root {
    --text-12: 10px;
    --text-13: 11px;
    --text-14: 12px;
    --text-16: 14px;
    --text-18: 15px;
    --text-22: 18px;
    --text-24: 19px;
    --text-28: 22px;
    --text-35: 28px;
    --text-38: 30px;
    --text-40: 32px;
    --text-48: 34px;
  }

  .testimonial-swiper .testimonial-prev,
  .testimonial-swiper .testimonial-next {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .testimonial-quote-wrapper {
    padding: 0 30px;
  }

  .quote-icon {
    display: none;
  }

  .testimonial-swiper .testimonial-prev {
    left: 0;
  }

  .testimonial-swiper .testimonial-next {
    right: 0;
  }

  .section-gap-margin {
    margin: 25px 0;
  }

  .section-gap {
    padding: 25px 0;
  }

  .contact-bg-img {
    margin-bottom: 25px;
  }

  .footer-section {
    margin-top: 25px;
  }

  .section-gap-100 {
    padding: 50px 15px;
  }

  .custom-margin-top {
    margin-top: 25px;
  }

  .custom-margin {
    margin: 35px 0;
  }

  .socail-media-pre-sec {
    padding: 35px 15px;
  }

  .social-pill {
    padding: 5px 10px;
  }

  .custom-primary-btn {
    padding: 10px 24px;
  }

  .signup-input {
    height: 45px;
  }

  .signup-section {
    padding-top: 100px !important;
  }

  .signup-input-icon {
    width: 30px;
    height: 30px;
  }

  .signup-card {
    padding: 15px;
  }

  .signup-title {
    text-align: center;
  }

  .signup-subtitle {
    text-align: center;
  }

  .video-modal-content {
    width: 80%;
  }

  /* br {
    display: none;
  } */

  .single-post-img img {
    height: 150px;
  }

  .footer-social a,
  .footer-contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .meta-card {
    border: 0;
  }

  .footer-social.mobile-grid {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
  }

  .signup-image {
    height: 300px;
  }

  .video-modal iframe {
    height: 70dvh;
  }

  .contact-info-card {
    padding-bottom: 100px;
  }
}

/****

Dashboard

****/
.auth-body {
  background: var(--auth-body-color);
}

/* Top Bar */
.top-bar {
  position: sticky;
  top: 0px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  background: var(--white);
  display: flex;
  align-items: center;
  z-index: 999;
}

.logo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-32);
  font-weight: bold;
  gap: 20px;
}

.toggle-button {
  text-decoration: none;
  color: var(--section-dark);
  cursor: pointer;
}

.toggle-button.sidebar-toggle {
  font-size: 28px;
  padding: 10px;
}

.toggle-button iconify-icon {
  display: flex;
  align-items: center;
}

/* Icon switching */
.close-icon {
  display: none;
}

.close-sidebar .close-icon {
  display: block;
}

.close-sidebar .open-icon {
  display: none;
}

.top-bar-menu-right {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  font-size: var(--text-20);
}

.top-bar-menu-right .light-mode iconify-icon,
.top-bar-menu-right .dark-mode iconify-icon {
  cursor: pointer;
  width: 35px;
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.dark-mode iconify-icon {
  background: var(--dark-mode-icon-bg);
  color: var(--white);
  border: 1px solid var(--dark-mode-icon-bg);
}

.light-mode iconify-icon {
  color: var(--dark-mode-icon-bg);
  background: var(--white);
  border: 1px solid var(--white);
}

.top-bar-menu-right .header-icon {
  cursor: pointer;
  width: 35px;
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--header-icon-bg);
  color: var(--dark-mode-icon-bg);
  border: 1px solid var(--header-icon-border);
}

.top-bar-menu-right .header-icon iconify-icon {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-menu-right .header-icon.with-text {
  width: fit-content;
  padding: 0 10px;
  /* height: 35px;
  width: 35px; */
  background: var(--danger-bg);
  color: var(--danger-color);
  font-size: var(--text-14);
  gap: 8px;
  border: 1px solid var(--danger-border);
}

.top-bar-menu-right .header-icon.with-text iconify-icon {
  font-size: var(--text-20);
}

.top-bar-menu-left {
  font-size: var(--text-14);
  display: flex;
  gap: 13px;
  align-items: center;
}

.custom-padding {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.top-bar-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 79px;
  padding: 15px;
  align-items: center;
  gap: 10px;
}

.side-bar-wrapper {
  display: flex;
}

.side-bar {
  width: 300px;
  border-right: 1px solid var(--border-color);
  background: var(--white);
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.close-sidebar .side-bar {
  transform: translateX(-100%);
}

/* side bar */
.user-profile-card {
  padding: 10px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px var(--shadow-color);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 2px;
}

.side-bar .logo-section {
  padding: 15px;
  height: 80px;
  min-height: 80px;
  border-bottom: 1px solid var(--border-color);
}

.user-profile-card .content {
  background-color: var(--profile-content-bg);
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-image-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.username {
  font-size: var(--text-16);
  font-weight: bold;
  color: var(--primary-color);
}

.balance-info {
  display: flex;
  align-items: center;
  font-size: var(--text-18);
  line-height: 1;
  font-weight: bold;
  align-items: center;
}

.eye-icon {
  font-size: var(--text-20);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 50%;
  display: flex;
}

.show-more-btn {
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--primary-deep)
  );
}

.remaining-menus .logout-btn {
  width: 100%;
  background: var(--danger-bg);
  color: var(--danger-color) !important;
}

.remaining-menus .logout-btn:hover {
  background: var(--danger-hover-bg);
}

.logout-btn .nav-icon {
  background: var(--danger-bg) !important;
  border-color: var(--danger-color) !important;
}

.logout-btn .nav-icon iconify-icon {
  color: var(--danger-color) !important;
}

/* Main Content */
.main-section {
  width: calc(100% - 300px);
  margin-left: 300px;
  transition: all 0.3s ease-in-out;
}

.close-sidebar .main-section {
  width: 100%;
  margin-left: 0;
}

.logo-section.side-bar-closed {
  display: none;
}

.close-sidebar .logo-section.side-bar-closed {
  display: flex;
}

.main-content {
  padding: 15px 0px;
  width: 100%;
}

.close-sidebar .main-content {
  width: 100%;
  margin-bottom: 90px;
}

.top-bar-menu-right .toggle-button {
  display: none;
}

.menu-wrapper {
  font-size: var(--text-12);
  font-weight: 600;
  color: var(--text-color-light);
  overflow-y: auto;
}

.app-menu-title {
  margin: 10px 0;
}

.vertical-nav-menu {
  list-style: none;
  padding: 0;
  padding-bottom: 15px;
  margin: 0;
  gap: 6px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.vertical-nav-menu li a {
  text-decoration: none;
  color: var(--section-dark);
}

.remaining-menus {
  display: none;
}

.vertical-nav-menu li.active > a {
  background-color: var(--primary-color);
  color: var(--white);
}

.vertical-nav-menu li > a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.vertical-nav-menu li > a:hover iconify-icon {
  color: var(--section-dark);
}

.vertical-nav-menu li.active > a iconify-icon {
  color: var(--section-dark);
}

.vertical-nav-menu li > a {
  background-color: var(--white) FFF;
  display: flex;
  padding: 6px;
  border-radius: 12px;
  font-size: var(--text-14);
  font-weight: 500;
  color: var(--text-color-dark);
  text-decoration: none;
  align-items: center;
  position: relative;
}

.vertical-nav-menu li > a .nav-icon {
  font-size: 20px;
  display: inline-flex;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--header-icon-bg);
  border: 1px solid var(--header-icon-border);
  margin-right: 10px;
}

.user-data span {
  padding: 5px 10px;
  border-right: 1px solid var(--user-data-border);
}

.user-data span:last-child {
  border-right: 0;
}

/* mobile footer menu */
.nav-container {
  width: 100%;
  padding: 10px 0;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-color);
}

.nav-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.nav-container li {
  flex-grow: 1;
  text-align: center;
}

.nav-container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--black);
  font-size: var(--text-12);
  padding: 5px;
  transition: color 0.3s;
}

.nav-container a i {
  font-size: var(--text-24);
  margin-bottom: 5px;
  color: var(--icon-color);
  transition: color 0.3s;
}

.nav-container a span {
  display: flex;
  font-size: var(--text-12);
}

.footer-icon iconify-icon {
  font-size: 25px;
}

.nav-container a.active {
  color: var(--primary-color) !important;
}

.nav-container a.active i {
  color: var(--primary-color) !important;
}

.remaining-menus .logout-btn {
  margin-top: 5px;
}

/* Service Page Table */
.cate-name {
  background: transparent;
}

.table > tbody tr td.cate-name {
  border: none;
  padding: 0;
}
.cate-wrapper-outer {
  background-color: #157bff;
  padding: 4px;
  border-radius: 16px;
}
.cate-wrapper-inner {
  display: flex;
  padding: 12px;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0) 0%,
    RGBA(255, 255, 255, 0.36) 100%
  );
  border-radius: 12px;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.cate-wrapper-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(0deg, RGBA(25, 79, 175, 0), #157bff);
  mask: linear-gradient(#157bff 0 0) content-box, linear-gradient(#0c53b4 0 0);
  mask-composite: add, add;
  mask-composite: add, add;
  mask-composite: exclude;
}
.table > tbody tr td.serv-name {
  border: none;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  border-top: 1px solid #0000002d;
  border-bottom: 1px solid #0000002d;
  padding-top: 14px;
  padding-bottom: 14px;
}
.table > tbody tr td:first-child.serv-name {
  border-left: 1px solid #0000002d;
  border-radius: 16px 0 0 16px;
}
.ar .table > tbody tr td:first-child.serv-name {
  border-radius: 0 16px 16px 0;
  border-right: 1px solid #0000002d;
  border-left: none;
}
#service-table {
  border-collapse: separate;
  border-spacing: 0px 15px;
}
.table > tbody tr td:last-child.serv-name {
  border-right: 1px solid #0000002d;
  border-radius: 0 16px 16px 0;
}
.ar .table > tbody tr td:last-child.serv-name {
  border-left: 1px solid #0000002d;
  border-radius: 16px 0 0 16px;
  border-right: none;
}
.th-item {
  font-size: 12px;
  font-weight: 500;
  color: #8b8b8b;
  margin-bottom: 8px;
}
.td-item {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.td-item.td-badge {
  background-color: #ecf6fd;
  border: 1px solid #d1e6f4;
  border-radius: 8px;
  padding: 8px 18px;
  display: inline-flex;
  height: 38px;
}
.btn-order-now,
.btn-fav {
  width: 34px;
  height: 34px;
  display: inline-flex;
  background-color: #000000;
  color: #fff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.btn.btn-primary.btn-details {
  background-color: var(--primary-color);
  height: 34px;
  border: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  line-height: 1;
}
.td-item.actions-item {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.btn-order-now:hover,
.btn-fav:hover,
.btn-order-now:focus,
.btn-fav:focus,
.btn-order-now:active,
.btn-fav:active {
  color: var(--white);
  text-decoration: none;
}
.td-item.btn-copy {
  background-color: var(--primary-deep);
  color: var(--white);
  border-radius: 8px;
  height: 34px;
  display: inline-flex;
  padding: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.td-item.btn-copy svg {
  margin-right: 4px;
}
.ar .td-item.btn-copy svg {
  margin-right: 0;
  margin-left: 4px;
}

.service-tools {
  display: flex;
  align-items: center;
}
.service-tools .input-group.service-search {
  max-width: 80%;
  flex: 0 0 80%;
}
.filter-dropdown .dropdown-menu {
  max-height: 460px;
  overflow-y: scroll;
}
.service-tools .dropdown.filter-dropdown {
  max-width: 19%;
  flex: 0 0 19%;
  margin-left: 14px;
}
.ar .service-tools .dropdown.filter-dropdown {
  margin-left: 0;
  margin-right: 14px;
}
.service-tools .filter-dropdown .btn {
  min-width: 100%;
  height: 58px;
  border-radius: 16px;
}
.inside-filter {
  display: flex;
  align-items: center;
  padding: 18px 30px;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0) 0%,
    RGBA(255, 255, 255, 0.36) 100%
  );
  border-radius: 14px;
  position: relative;
}
.inside-filter::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0),
    RGBA(255, 255, 255, 0.48)
  );
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: add, add;
  mask-composite: exclude;
}
.inside-filter .caret {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 20px;
  border: none;
  margin-left: auto;
  position: relative;
}
.ar .inside-filter .caret {
  margin-left: 0;
  margin-right: auto;
}
.inside-filter .caret:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #000000;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  transform: translateY(-50%);
}

.input-group .form-control {
  width: 100%;
  border: 1px solid #0000002d;
  border-radius: 16px !important;
  box-shadow: none;
  height: 58px;
  padding-left: 35px;
  z-index: 1;
}

.input-group .input-group-btn {
  position: absolute;
  left: 0px;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.ticket-submit .input-group .input-group-btn .btn.btn-default {
  margin: auto;
  background-color: var(--primary-color);
  border: none;
  padding: 0;
  color: var(--white);
  font-size: 18px;
  box-shadow: none;
  background-image: none;
}
.input-group .form-control:focus {
  z-index: 1;
}
.nightmode .input-group .form-control {
  background-color: #141414;
  border-color: #252525;
  color: #fff;
}

.nightmode .cate-wrapper-outer {
  background-color: var(--primary-color);
}
.nightmode .cate-wrapper-inner:before {
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0),
    RGBA(255, 255, 255, 0.48)
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  mask-composite: add, add;
  mask-composite: exclude;
}
.nightmode .cate-wrapper-inner {
  color: #000;
}
.nightmode .table > tbody tr td.serv-name {
  background-color: var(--header-icon-bg);
  border-color: var(--header-icon-border);
  color: #ffffff;
}
.nightmode .th-item {
  color: #969696;
}
.td-item.btn-copy {
  background-color: var(--primary-color);
}
.nightmode .td-item {
  color: #fff;
}
.nightmode .td-item.td-badge {
  background-color: #ecf6fd;
  border-color: #d1e6f4;
}
.nightmode .btn-order-now,
.nightmode .btn-fav {
  background-color: var(--primary-color);
}
.btn-copy .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #222;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
}

.btn-copy.show-tooltip .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.service-filter-btn {
  width: 100%;
  height: 56px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--primary-deep)
  );
}

.service-filter-btn span {
  line-height: 1;
}
.service-filter-btn span:last-child {
  font-size: 24px;
  font-size: 24px;
  background: #ffffff;
  color: var(--primary-color);
  border-radius: 50px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#serviceDetail .modal-body {
  position: relative;
}

#serviceDetail .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}

.btn-primary {
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--primary-deep)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 14px;
}

.show-more-btn {
  padding: 8px 10px;
  border-radius: 8px;
}

.services_title_part p {
  padding: 40px 20px;
  background: #0077f512;
  border-radius: 15px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px !important;
}

#service_des {
  padding: 20px 15px;
  background: #e9e9e9;
  border-radius: 10px;
}

/* Api Page Design */
.api_card p {
  font-size: 12px;
  margin-bottom: 5px;
}

.api_card h2 {
  font-size: 18px;
}

.http-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  margin-bottom: 25px;
  border-radius: 15px;
}

/* optional: small focus outline for accessibility */
.btn-copy:focus {
  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: 2px;
}

.card-statistic {
  padding: 1px;
  border-radius: 10px;
  background-image: linear-gradient(#fff, #fff), var(--primary-gradient);
  background-origin: border-box;
  background-clip: content-box, border-box;
  margin-bottom: 10px;
}

.card-statistic .card-body {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px;
}

.card-statistic .sta_icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 28px;
  background: var(--primary-gradient);
  color: #fff;
}

.card-statistic .sta_text h5 {
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.card-statistic .sta_text p {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  padding: 0;
}

.filter-gategory-card {
  border-radius: 16px;
}

.card-body h3,
.filter-gategory-card h5 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.card-body h3 {
  margin-bottom: 5px;
}

.filter-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-height: 500px;
  margin-top: 20px;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  gap: 10px;
}
.filter-list.open {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
}

.filter-list li {
  flex: 1 1 calc(100% / 7 - 10px);
  box-sizing: border-box;
}

.filter-list li .brand-category {
  padding: 10px 18px;
  background-color: var(--header-icon-bg);
  border: 1px solid var(--header-icon-border);
  border-radius: 12px;
  display: flex;
  width: 100%;
  align-items: center;
  transition: 0.5s ease;
}

.filter-list li .brand-category:hover {
  background: #c4e0fb;
}

.filter-icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.select2-container .select2-selection__id-1,
.select2-container .select2-selection__id-2 {
  background: var(--primary-color);
}

.nav.nav-pills.cap_nav {
  border: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.nav.nav-pills.cap_nav > li {
  flex: 1 1 calc(100% / 7 - 10px);
  margin-bottom: 0;
}

.nav.nav-pills.cap_nav li button {
  display: flex;
  width: 100%;
  justify-content: center;
  height: 48px;
  align-items: center;
  padding: 2px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  border-radius: 24px 24px 0 0;
  border-bottom: none;
  border-top: 1px solid #0000002d;
  border-right: 1px solid #0000002d;
  border-left: 1px solid #0000002d;
}

.nav.nav-pills.cap_nav li button.active,
.nav-pills.cap_nav > li > button.active:hover,
.nav-pills.cap_nav > li > button.active:focus {
  background-color: #0d6efd;
  border-radius: 14px;
  border: none;
  color: #ffffff;
}

/*  */

.nav.nav-pills.cap_nav li button.active .tab-el,
.nav-pills.cap_nav > li > button.active:hover .tab-el,
.nav-pills.cap_nav > li > button.active:focus .tab-el {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0) 0%,
    RGBA(255, 255, 255, 0.36) 100%
  );
  position: relative;
  border-radius: 12px;
}
.nav-pills.cap_nav li button .tab-el {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-pills.cap_nav li button .tab-el .icon {
  font-size: 20px;
  line-height: 0;
}

.nav.nav-pills.cap_nav li button.active .tab-el:before,
.nav-pills.cap_nav > li > button.active:hover .tab-el:before,
.nav-pills.cap_nav > li > button.active:focus .tab-el:before {
  content: "";
  background: linear-gradient(0deg, RGBA(25, 79, 175, 0), #a1c5ff);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: add, add;
  mask-composite: ;
  mask-composite: exclude;
  position: absolute;
  inset: 0px;
  border-radius: 12px;
  padding: 2px;
}

.nav.nav-pills.cap_nav li:first-child button.active::before {
  left: auto;
  right: -13px;
  bottom: -13px;
  height: 15px;
  width: 13px;
  background-color: var(--body-color);
  border: none;
  z-index: 1;
}
.nav.nav-pills.cap_nav li:last-child button::before {
  right: -1px;
  border-right: 1px solid #0000002d;
}

.nav.nav-pills.cap_nav li:last-child button.active::before {
  display: none;
}

.nav.nav-pills.cap_nav li button::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 0;
  bottom: -14px;
  width: 100%;
  background-color: #ffffff;
  height: 14px;
  z-index: 1;
}

.nav.nav-pills.cap_nav li:last-child button:not(.active)::after {
  left: 0px;
}

.nav-pills.cap_nav > li:first-child > button.active::after {
  width: 13px;
  right: -11px;
  left: auto;
  border-right: 1px solid #0000002d;
  border-bottom: 1px solid #0000002d;
  border-radius: 0 0 100px 0;
  background-color: var(--auth-body-color);
  height: 20px;
  z-index: 2;
  bottom: -13px;
}

.nav-pills.cap_nav li:last-child button::before,
.nav-pills.cap_nav li:first-child button::before {
  content: "";
  width: 15px;
  height: 42px;
  background-color: #ffffff;
  position: absolute;
  bottom: -41px;
  z-index: 2;
}

.nav-pills.cap_nav li:last-child button::before {
  right: -1px;
  border-right: 1px solid #0000002d;
}

.nav-pills.cap_nav > li:last-child > button.active::after {
  width: 13px;
  left: -11px;
  right: auto;
  border-left: 1px solid #0000002d;
  border-bottom: 1px solid #0000002d;
  border-radius: 0 0 0 100px;
  background-color: var(--auth-body-color);
  height: 20px;
  z-index: 2;
  bottom: -13px;
}

.nav-pills.cap_nav li:first-child button::before {
  left: -1px;
  border-left: 1px solid #0000002d;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px;
}

.search-dropdown .input-wrapper .form-control {
  padding-left: calc(10px + 24px);
  padding-right: calc(10px + 24px);
}

.card-body .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: 52px;
}

.card {
  border-radius: 15px;
}

.card .form-control {
  background-color: #ecf6fc;
  border-color: #e5e7eb;
  box-shadow: none;
  border-radius: 12px;
  height: 52px;
}

.card textarea.form-control {
  height: 200px;
}

select.form-control {
  --bs-form-select-bg-img: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"%3e%3cpathfill="none"stroke="%23343a40"stroke-linecap="round"stroke-linejoin="round"stroke-width="2"d="m2 5 6 6 6-6"/%3e%3c/svg%3e
  );
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.card
  .select2-container--default
  .select2-selection--single
  .btn-group-vertical.align-middle.select2-selection__icon {
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--header-icon-border);
  border-radius: 8px;
  color: #000000;
}

.select2-results__option a {
  padding: 5px 12px;
  border-bottom: 1px solid #ddd;
  font-size: 14px !important;
}

.select2-container .select2-selection__text {
  font-size: 14px;
}

.panel-body.border-solid.border-rounded {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  max-height: 200px;
  overflow: auto;
}

.ticket_instructions_wrapper {
  display: flex;
  gap: 15px;
  overflow: scroll;
}

.ticket_instructions_wrapper .instruction_item {
  padding: 25px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 10px);
  background: var(--header-icon-bg);
  border: 1px solid var(--header-icon-border);
}

.ticket_instructions_wrapper .instruction_item:nth-child(2) {
  background: var(--danger-bg);
  border-color: var(--danger-border);
}

.ticket_instructions_wrapper .instruction_item .step_count {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  padding: 2px;
  text-shadow: none;
  width: 55px;
  height: 55px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.ticket_instructions_wrapper .instruction_item:nth-child(2) .step_count {
  background: #ff4048;
}

.step_count .step_inner {
  display: flex;
  padding: 0;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0) 0%,
    RGBA(255, 255, 255, 0.36) 100%
  );
  border-radius: 8px;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  line-height: 1.2;
}

.step_count .step_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(0deg, RGBA(25, 79, 175, 0), #a9a9a9);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: add, add;
  mask-composite: add, add;
  mask-composite: exclude;
}

.step_count .step_inner span.top_small {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.step_count .step_inner span.bottom_big {
  font-size: 18px;
  font-weight: 800;
}

.step_content h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--black);
}

.step_content p {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 0px;
}

/* Table */
.nottable.table {
  border-collapse: separate;
  border-spacing: 0px 15px;
}

.nottable.table thead tr > th {
  padding: 15px 10px;
  border: none;
  background-color: var(--primary-color);
  color: var(--white);
}
.nottable.table thead tr > th:first-child {
  border-radius: 12px 0 0 12px;
}
.nottable.table thead tr > th:last-child {
  border-radius: 0 12px 12px 0;
}
.nottable.table thead tr > th .th-head {
  background-color: var(--primary-color);
  padding: 4px 0;
  border-radius: 0;
}
.nottable.table > tbody tr td {
  border: none;
  background-color: var(--header-icon-bg);
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  border-top: 1px solid var(--header-icon-border);
  border-bottom: 1px solid var(--header-icon-border);
  padding-top: 14px;
  padding-bottom: 14px;
  vertical-align: middle;
}
.nottable.table > tbody tr td:first-child {
  border-left: 1px solid var(--header-icon-border);
  border-radius: 16px 0 0 16px;
}
.nottable.table {
  border-collapse: separate;
  border-spacing: 0px 15px;
}
.nottable.table > tbody tr td:last-child {
  border-right: 1px solid var(--header-icon-border);
  border-radius: 0 16px 16px 0;
}

.nottable.table.order-table thead tr > th {
  padding: 0;
  border: none;
}

.nottable.table thead tr > th:first-child .th-head {
  padding-left: 4px;
  border-radius: 16px 0 0 16px;
}

.nottable.table thead tr > th:first-child .th-head .th-head-inner {
  border-radius: 12px 0 0 12px;
}

.nottable.table thead tr > th .th-head .th-head-inner {
  display: flex;
  padding: 15px 10px;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0) 0%,
    RGBA(255, 255, 255, 0.36) 100%
  );
  border-radius: 0;
  position: relative;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}
.nottable.table thead tr > th:first-child .th-head .th-head-inner::before {
  padding-left: 1px;
  border-radius: 12px 0 0 12px;
}

.nottable.table thead tr > th .th-head .th-head-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  padding: 1px 0 1px 0;
  background: linear-gradient(0deg, RGBA(25, 79, 175, 0), #a9a9a9);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: add, add;
  mask-composite: exclude;
}

.nottable.table thead tr > th .th-head .th-head-inner .th-head-content {
  position: relative;
  z-index: 1;
}

.td-id-copy-wrapper {
  display: flex;
  align-items: center;
}

.id-r {
  position: relative;
  margin-right: 5px;
  height: 18px;
  display: flex;
  align-items: center;
}

.custom-checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}
.custom-checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid #eae5d6;
  border-radius: 5px;
  background: #fdf9ec;
  transition: all 0.2s ease;
  transform: translateY(-50%);
}
.select-all-checkbox,
.order-checkbox {
  display: none;
}
.select-all-checkbox:checked + .custom-checkbox:after,
.order-checkbox:checked + .custom-checkbox:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.id-r .btn.btn-primary {
  background-color: var(--primary-color);
  border-radius: 4px;
  color: var(--white);
  font-size: 10px;
  margin-left: 4px;
  padding: 2px 4px;
}

.nottable.table thead tr > th:last-child .th-head {
  padding-right: 4px;
  border-radius: 0 16px 16px 0;
}
.nottable.table thead tr > th:last-child .th-head .th-head-inner {
  border-radius: 0 12px 12px 0;
}

.nottable.table thead tr > th:last-child .th-head .th-head-inner::before {
  padding-right: 1px;
  border-radius: 0 12px 12px 0;
}

.btn-copy:hover,
.btn-copy {
  border: none;
  background-color: #000;
  border-radius: 8px;
  color: #ffffff;
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  padding-left: 15px;
  padding-right: 15px;
  word-break: normal;
}

/* card */
.card_v2 .card-head.bg_black {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 45px;
  background-color: #000;
  padding: 4px;
  border-radius: 16px 16px 0 0;
}

.card_v2 .card-head span {
  position: relative;
  padding: 0px 25px;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0) 0%,
    RGBA(255, 255, 255, 0.36) 100%
  );
  border-radius: 14px 14px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
}

/* ticket page */

.ticket-details-box {
  background-color: #fdf001;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.author-wrapper {
  display: flex;
  align-items: center;
}
.ticket-inner-detail-box {
  position: relative;
  border-top: none;
  border-radius: 0 0 16px 16px;
}
.ticket-title {
  margin-top: 0;
  font-weight: 600;
  color: var(--white);
  line-height: 45px;
  background-color: var(--primary-color);
  padding: 4px;
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
}
.ticket-title span {
  position: relative;
  padding: 0px 25px;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0) 0%,
    RGBA(255, 255, 255, 0.36) 100%
  );
  border-radius: 14px 14px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
}
.ticket-title span:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px 14px 0 0;
  padding: 1px;
  background: linear-gradient(
    0deg,
    RGBA(255, 255, 255, 0),
    RGBA(255, 255, 255, 0.76)
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: add, add;
  mask-composite: exclude;
}
.ticket-details-inner {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 8px;
  justify-content: space-between;
}
.ticket-details-inner > li {
  background-color: var(--header-icon-bg);
  border: 1px solid var(--header-icon-border);
  max-width: 48%;
  flex: 0 0 48%;
  border-radius: 8px;
  padding: 14px;
}
.ticket-sub-head {
  font-size: 12px;
  font-weight: 500;
  color: #4b4b4b;
}
.ticket-main-head {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.ticket-not-wrapper {
  background-color: var(--header-icon-bg);
  border: 1px solid var(--header-icon-border);
  border-radius: 8px;
  padding: 14px;
}
.message-top {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.author-pic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 40px;
  flex: 0 0 40px;
}
.messsage-wrap {
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-width: 418px;
  border-radius: 10px;
  line-break: anywhere;
  background-color: var(--header-icon-bg);
  border: 1px solid var(--header-icon-border);
  color: #000;
}
.message-sub-bottom {
  font-size: 10px;
  font-weight: 500;
  color: #4b4b4b;
  text-align: right;
}
.ticket-message-right .messsage-wrap {
  border-radius: 10px 10px 10px 0;
}
.ticket-message-left .messsage-wrap {
  border-radius: 10px 10px 0 10px;
}
.ticket-message-block.ticket-message-left .message-top {
  justify-content: flex-end;
}
.ticket-message-block.ticket-message-right .author-pic {
  background-color: var(--primary-deep);
  margin-right: 10px;
}
.ar .ticket-message-block.ticket-message-right .author-pic {
  margin-left: 10px;
  margin-right: 0;
}
.ticket-message-block {
  display: flex;
  flex-direction: column;
  padding: 25px 15px 5px;
  margin-bottom: 0;
}
.ticket-message-block.ticket-message-left .author-pic {
  background-color: #000000;
  color: #ffffff;
  margin-left: 10px;
}
.ar .ticket-message-block.ticket-message-left .author-pic {
  margin-right: 10px;
  margin-left: 0;
}
.author-detail strong {
  font-size: 16px;
  font-weight: 500;
}
.ticket-message-right .author-detail strong {
  margin-right: 5px;
}
.ar .ticket-message-right .author-detail strong {
  margin-left: 5px;
  margin-right: 0;
}
.author-detail .text-muted {
  color: rgba(26, 39, 45, 0.59);
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
}
.message-bottom {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}
.ticket-message-block.ticket-message-right .message-bottom {
  margin-right: 68px;
}
.ticket-message-block.ticket-message-left .message-bottom {
  margin-left: 68px;
}
/*.message-sub-top {
  margin-top: -46px;
  margin-bottom: 24px;
  }*/
.message-sub-top strong {
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.ticket-message-left .message-sub-top strong {
  background-color: #000000;
}
.ticket-message-right .message-sub-top strong {
  color: #000000;
  background-color: #fdf001;
}
.message-sub-top strong i,
.message-sub-top .text-muted i {
  margin-right: 5px;
  font-size: 11px;
  margin-left: -5px;
}
.ar .message-sub-top strong i,
.ar .message-sub-top .text-muted i {
  margin-right: -5px;
  margin-left: 5px;
}
.ticket-message-left .message-sub-top strong i {
  color: #fdf001;
}
.ticket-message-right .message-sub-top strong i {
  color: #000000;
}
.message-sub-top .text-muted {
  font-size: 10px;
  font-weight: 700;
  border: 1px solid;
  border-radius: 20px;
  padding: 3px 10px;
}
.ticket-message-left .message-sub-top .text-muted {
  color: #000000;
  border-color: #000000;
}
.ticket-message-right .message-sub-top .text-muted {
  color: #000000;
  border-color: #000000;
}
.ticket-submit .input-group {
  background-color: var(--header-icon-bg);
  border-radius: 10px;
  border: 1px solid var(--header-icon-border);
}
.ticket-submit .form-control {
  border: none;
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  height: 65px !important;
  background-color: transparent;
  resize: none;
  box-shadow: none;
}
.ticket-submit .form-control:focus {
  box-shadow: none;
}
.ticket-submit .btn.btn-default {
  background-color: #fdf001;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  min-width: 52px;
  border-radius: 16px;
  background-image: none;
  border: 1px solid #fdf001;
  padding: 0;
  margin-left: 6px;
}
.ticket-submit .btn.btn-default svg {
  height: 18px;
  width: 18px;
}

.ticket-msg-wrap {
  min-height: 480px;
  overflow-y: scroll;
  max-height: 480px;
}
.ticket-submit {
  position: relative;
  padding: 0 15px 15px 15px;
  margin-bottom: 0;
}
.media-attached {
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 4px 4px 6px -4px rgba(0, 0, 0, 0.57);
  margin-top: 10px;
  max-width: 180px;
}
.ticket-message-right .media-attached {
  background-color: #000;
  border-color: #000;
}
.media-attached .media-wrapper {
  display: inline-flex;
  align-items: center;
}
.media-attached .media-wrapper i {
  font-size: 14px;
  margin-right: 10px;
  color: #000000;
}
.ticket-message-right .media-attached .media-wrapper i {
  color: var(--primary-color);
}
.media-name {
  font-size: 12px;
  color: #000000;
}
.ticket-message-right .media-name {
  color: #ffffff;
}
.media-attached a {
  display: block;
  width: 30px;
  background-color: var(--primary-color);
  text-align: center;
  color: #000000;
  font-size: 14px;
  margin-right: -11px;
  margin-bottom: -6px;
  line-height: 33px;
  border-radius: 4px;
  margin-top: -6px;
}
.file-group #uploader-button {
  background-color: #ffffff !important;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--header-icon-border) !important;
}
.file-group #uploader-button .files-label {
  display: none;
}
.input-group {
  display: flex;
  align-items: center;
}
.input-group-btn.view-ticket-group {
  display: flex;
  max-width: 20%;
  flex: 0 0 49%;
  justify-content: space-around;
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: inherit;
  gap: 5px;
  right: 6px;
  z-index: 3333;
}

a.file-link {
  display: none;
}

.file-group #uploader-button .paperclip {
  color: #000;
}
.files-wrapper .alert-danger.text-danger.remove {
  background-color: #db4646 !important;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  margin: 0 !important;
}
.files-wrapper .alert-danger.text-danger.remove::before {
  content: "\f0c6";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 14px;
  color: #000;
  width: 26px;
  height: 26px;
  z-index: 1;
  position: absolute;
  top: -6px;
  background-color: var(--primary-color);
  border-radius: 30px;
  line-height: 24px;
  left: -5px;
  box-shadow: 0 0 12px -4px rgb(0, 0, 0);
}
.files-wrapper .files-loader .paperclip {
  font-weight: 400;
  font-size: 10px;
  color: #000;
  width: 20px;
  height: 20px;
  z-index: 1;
  position: absolute;
  top: -6px;
  background-color: var(--primary-color);
  border-radius: 30px;
  line-height: 20px;
  right: -5px;
  box-shadow: 0 0 12px -4px rgb(0, 0, 0);
  justify-content: center;
}

.files-wrapper .files-loader {
  position: relative;
  margin: 0;
  width: 43px;
}
.files-wrapper .files-loader .paperclip svg {
  width: 15px;
}
.files-wrapper .files-loader .files-loader__svg {
  margin: 0;
  width: 14px;
  height: 14px;
  position: absolute;
  top: -11px;
  right: -14px;
  z-index: 2;
}
.dashboard.nightmode .ticket-submit .form-control {
  background-color: #141414;
}
.nightmode .ticket-submit .input-group {
  border-color: #141414;
  background-color: #262626;
  border-radius: 10px;
}
.nightmode .file-group #uploader-button {
  background-color: #3f3f3f !important;
  border-color: #3f3f3f !important;
}
.nightmode .file-group #uploader-button .paperclip {
  color: #fff;
}
.nightmode .ticket-inner-detail-box {
  background-color: #262626;
  border-color: #252525;
}
.nightmode .ticket-details-inner > li {
  background-color: #141414;
  border-color: #141414;
}
.nightmode .ticket-sub-head {
  color: #969696;
}
.nightmode .ticket-main-head {
  color: #fff;
}
.nightmode .ticket-not-wrapper {
  background-color: #141414;
  border-color: #141414;
}

/* Order Page Button */
.nav-pills {
  margin-bottom: 10px;
}
.nav-pills > li > a {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid #eae5d6;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 5px;
}

.nav-pills > li > a .pill-icons {
  line-height: 0;
  font-size: 20px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}
.status-badge {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    height: 34px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
  }

  span.status-icon {
    font-size: 18px;
    line-height: 0;
    margin-right: 3px;
}

  .status-badge.badge-complete {
    background-color: #07AB20;
  }
  .status-badge.badge-pending {
    background-color: #bd6447;
  }
  .status-badge.badge-processing {
    background-color: #6B46B3;
  }
  .status-badge.badge-cancelled {
    background-color: #FF2D1D;
  }
  .status-badge.badge-partial {
    background-color: #0C79C6;
  }
  .status-badge.badge-inprogress {
    background-color: #FD7701;
  }

@media (max-width: 550px) {
  .card-head span {
    padding: 0px 15px;
  }
  .ticket-msg-wrap {
    padding: 0px;
    min-height: 350px;
  }
  .ticket-message-block {
    padding: 10px 0 0;
    width: 100%;
  }
  .message-top {
    width: 100%;
  }
  .message-sub-top strong {
    white-space: nowrap;
  }
  .message-sub-top .text-muted {
    white-space: nowrap;
  }
  .messsage-wrap {
    min-width: auto;
    max-width: 70%;
  }
  .ticket-submit {
    padding: 0;
  }
  .message-sub-bottom {
    margin-top: 10px;
  }
  .ticket-details-box {
    margin-bottom: 0;
    margin-top: 20px;
  }
  .input-group-btn.view-ticket-group {
    max-width: 30%;
    flex: 0 0 30%;
  }
  .ticket-submit .form-control {
    width: auto;
    font-size: 13px;
    padding: 10px 10px;
    height: 54px;
  }
  .file-group #uploader-button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .ticket-submit .btn.btn-default {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
  }
  .ticket-title span {
    padding: 0px 15px;
  }
  .ticket-inner-detail-box {
    padding: 10px;
  }
  .ticket-sub-head {
    font-size: 10px;
  }
  .ticket-main-head {
    font-size: 12px;
  }
  .ticket-details-inner > li,
  .ticket-not-wrapper {
    padding: 5px 10px;
  }
  .nav.nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
  }
  .nav.nav-pills li {
    margin-left: 0;
    flex: 1 1 calc(33.333% - 10px);
  }

  .nottable.table.order-table thead tr th:first-child {
    display: block;
  }

  .nottable.table.order-table thead tr > th:first-child .th-head {
    border-radius: 16px;
    padding-right: 4px;
    padding-left: 4px;
  }
  .nottable.table.order-table
    thead
    tr
    > th:first-child
    .th-head
    .th-head-inner {
    border-radius: 12px;
  }
  .nottable.table.order-table thead tr > th:first-child .th-head {
    border-radius: 16px;
    padding-right: 4px;
    padding-left: 4px;
  }
  .nottable.table.order-table thead tr > th:first-child {
    border-radius: 12px;
  }

  .nottable.table.order-table
    thead
    tr
    > th:first-child
    .th-head
    .th-head-inner::before {
    padding-left: 1px;
    padding-right: 1px;
    border-radius: 12px;
  }
}

@media (max-width: 550px) {
  .service-tools {
    flex-direction: column;
    gap: 10px 0;
  }
  .service-tools .input-group.service-search {
    max-width: 100%;
    flex: 0 0 100%;
    width: 100%;
  }
  .service-tools .dropdown.filter-dropdown {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
    width: 100%;
  }
  .input-group .form-control {
    height: 48px;
  }
  .service-tools .filter-dropdown .btn {
    height: 48px;
  }
  .inside-filter {
    padding: 12px 20px;
  }
  #service-table,
  #service-table thead,
  #service-table tbody,
  #service-table thead tr,
  #service-table tbody tr {
    display: block;
    width: 100%;
  }
  .table > tbody tr td.cate-name {
    width: 100%;
    margin-top: 8px;
    display: block;
  }
  .table > tbody tr td.serv-name {
    display: flex;
    width: 100%;
    border-radius: 12px !important;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--header-icon-bg) !important;
    border: 1px solid var(--header-icon-border) !important;
  }
  #service-table tbody tr.data-row {
    border: 1px solid #0000002d;
    border-radius: 16px;
    background-color: #fff;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 4px 0;
  }
  .th-item {
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
  }
  .td-item.td-badge {
    background-color: #ffffff;
    border-color: #ffffff;
    padding: 5px 10px;
    height: 34px;
  }
  .filter-dropdown .dropdown-menu {
    max-width: 360px;
  }
  .cate-wrapper-inner {
    padding: 10px;
    font-size: 14px;
  }
  .nightmode #service-table tbody tr.data-row {
    background-color: #141414;
    border-color: #252525;
  }
  .nightmode .table > tbody tr td.serv-name {
    background-color: #262626 !important;
    border-color: #252525 !important;
  }
  .nightmode .td-item.td-badge {
    background-color: #141414;
    border-color: #141414;
  }
  .nightmode .btn-order-now,
  .nightmode .btn-fav,
  .nightmode .td-item.btn-copy {
    background-color: #141414;
  }
  .services_title_part p {
    font-size: 18px;
    padding: 20px;
  }
  .brand-category .filter-text {
    display: none;
  }
  .filter-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
  }
  .filter-list li .brand-category {
    justify-content: center;
    padding: 10px 15px;
  }

  #statistic_sec .col-6:first-child {
    padding-right: 5px;
  }

  #statistic_sec .col-6:nth-child(2) {
    padding-left: 5px;
  }

  #statistic_sec .col-6:nth-child(3) {
    padding-right: 5px;
  }

  #statistic_sec .col-6:last-child {
    padding-left: 5px;
  }

  .ticket_instructions_wrapper .instruction_item {
    padding: 15px;
    flex: 0 0 calc(100% - 0px);
  }
  .step_count .step_inner span.top_small {
    font-size: 8px;
  }

  .step_count .step_inner span.bottom_big {
    font-size: 16px;
  }

  .nottable.table {
    display: block;
    width: 100%;
  }
  .nottable.table tbody,
  .nottable.table thead,
  .nottable.table thead tr {
    display: block;
    width: 100%;
  }
  .nottable.table thead tr th {
    display: none;
  }
  .nottable.table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 4px 0;
    margin-top: 10px;
  }
  .nottable.table tbody tr td {
    background-color: var(--header-icon-bg);
    border: 1px solid var(--header-icon-border);
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: var(--header-icon-border);
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30%;
    position: relative;
    min-height: 40px;
  }
  .nottable.table > tbody tr td:first-child,
  .nottable.table > tbody tr td:last-child {
    border-radius: 12px;
  }
  .nottable.table tbody tr td::before {
    content: attr(data-head);
    position: absolute;
    top: 50%;
    left: 10px;
    font-size: 12px;
    transform: translateY(-50%);
  }
}

/* media query */
@media (max-width: 991px) {
  .profile-info {
    align-items: start;
  }
  .side-bar {
    z-index: 99999;
  }

  .main-wrapper .side-bar {
    transform: translateX(-100%);
  }

  .active-sidebar .side-bar {
    transform: translateX(0px);
  }

  .top-bar-menu-right .toggle-button {
    display: block;
  }

  .top-bar-menu-right {
    justify-content: end;
  }

  .main-section {
    width: 100%;
    margin-left: 0;
  }

  .user-profile-card .content {
    flex-direction: row;
  }

  .icon-text {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --text-12: 11px;
    --text-14: 13px;
    --text-16: 15px;
    --text-18: 16px;
    --text-20: 18px;
    --text-24: 20px;
    --text-32: 26px;
  }

  .nav-container {
    display: block;
    position: fixed;
    padding: 5px 0px !important;
  }

  .side-bar .logo-section {
    height: 56px;
    max-height: 56px;
    min-height: 56px;
  }

  .top-bar-menu {
    height: 55px;
    padding: 10px 15px;
  }

  .custom-padding {
    padding-bottom: 0px;
  }

  .vertical-nav-menu li > a .nav-icon {
    font-size: 16px;
    width: 25px;
    height: 25px;
    border-radius: 4px;
  }
  .show-more-btn {
    font-size: 12px;
  }
  .vertical-nav-menu li > a {
    padding: 5px;
    border-radius: 6px;
  }
}

@media (max-width: 320px) {
  .logo-section {
    font-size: 25px;
  }

  .top-bar-menu-right {
    font-size: 15px;
  }

  .top-bar-menu-right .light-mode iconify-icon,
  .top-bar-menu-right .dark-mode iconify-icon {
    width: 25px;
    min-width: 25px;
    height: 25px;
  }

  .top-bar-menu-right .header-icon {
    width: 25px;
    min-width: 25px;
    height: 25px;
  }

  .top-bar-menu-right .header-icon.with-text {
    padding: 0 5px;
    height: 25px;
  }

  .top-bar-menu-right .header-icon.with-text iconify-icon {
    font-size: 15px;
  }

  .top-bar-menu-right {
    flex-wrap: wrap;
  }
}

/* ####media query */

/* -----------------------------------
   THEME DEFAULT STATES
------------------------------------ */
.light-mode {
  display: none;
}

/* Show sun icon in dark mode */
.dark-mode-active .dark-mode {
  display: none;
}

.dark-mode-active .light-mode {
  display: inline-block;
}

/* -----------------------------------
   DARK THEME 
------------------------------------ */
.dark-mode-active body,
.dark-mode-active .user-profile-card .content {
  background: var(--dark-body--color);
  color: var(--white);
}

.dark-mode-active .top-bar,
.dark-mode-active .nav-container,
.dark-mode-active .side-bar {
  background: var(--dark-mode-bg);
  color: var(--white);
}

.dark-mode-active .toggle-button,
.dark-mode-active .vertical-nav-menu li > a,
.dark-mode-active .nav-container a {
  color: var(--white);
}

.dark-mode-active .vertical-nav-menu li > a .nav-icon {
  background-color: var(--dark-body--color);
  border: 1px solid var(--dark-mode-border);
}

.dark-mode-active .vertical-nav-menu li.active > a iconify-icon,
.dark-mode-active .vertical-nav-menu li > a:hover iconify-icon {
  color: var(--white);
}

.dark-mode-active .input-group .form-control {
  border-color: #141414;
}

.dark-mode-active .table > tbody tr td.cate-name {
  background: transparent;
}

.dark-mode-active .table > tbody tr td.serv-name {
  background: #141414;
  color: #fff;
  border-color: #464646;
}

.dark-mode-active .service-name .td-item {
  color: #fff !important;
}

.dark-mode-active .btn-order-now,
.dark-mode-active .btn-fav {
  background: #384c65;
}

.dark-mode-active #service_des {
  background: #1f2a37;
}

.dark-mode-active #service-table tbody tr.data-row {
  background: #141414;
  border-color: #464646;
}

.dark-mode-active .table > tbody tr td.serv-name {
  background: #1f2a37 !important;
  border-color: #3f3f3f !important;
}

.dark-mode-active .th-item {
  color: #fff !important;
}

.dark-mode-active .card {
  --bs-card-bg: #141414;
}
