@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

@font-face {
  font-family: "Albra TRIAL";
  src: url("/assets/fonts/AlbraTRIAL-Regular.woff2") format("woff2"),
    url("/assets/fonts/AlbraTRIAL-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "Albra TRIAL Medium";
  src: url("/assets/fonts/AlbraTRIAL-Medium.woff2") format("woff2"), url("/assets/fonts/AlbraTRIAL-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap
} */

@font-face {
  font-family: "Albra TRIAL Bold";
  src: url("/assets/fonts/AlbraTRIAL-Bold.woff2") format("woff2"),
    url("/assets/fonts/AlbraTRIAL-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.footer {
  background: #6b0606;
  color: #fdf3ec;
  font-size: 16px;
  font-family: "Albra TRIAL Medium";
}

@media (max-width: 768px) {
  .footer .info-data {
    border-right: 0 !important;
    padding: 8px !important;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer .info-data {
    font-size: 14px;
  }
}

.footer .footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer .footer-social-icons {
    justify-content: center;
  }

  .footer .footer-social-icons .follow-text {
    width: 100%;
  }
}

.footer .footer-social-icons .social-ico {
  width: 40px;
  height: 40px;
  border: 1px solid #fdf3ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.footer .footer-social-icons .social-ico:active,
.footer .footer-social-icons .social-ico:hover {
  background-color: #fdf3ec;
  transition: 0.3s ease;
}

.footer .footer-social-icons .social-ico.facebook-ico {
  background-image: url("/assets/img/facebook-ico.svg");
}

.footer .footer-social-icons .social-ico.facebook-ico:active,
.footer .footer-social-icons .social-ico.facebook-ico:hover {
  background-image: url("/assets/img/facebook-ico-hover.svg");
}

.footer .footer-social-icons .social-ico.insta-ico {
  background-image: url("/assets/img/instagram-ico.svg");
}

.footer .footer-social-icons .social-ico.insta-ico:active,
.footer .footer-social-icons .social-ico.insta-ico:hover {
  background-image: url("/assets/img/instagram-ico-hover.svg");
}

.footer .footer-social-icons .social-ico.linkedin-ico {
  background-image: url("/assets/img/linkedin-ico.svg");
}

.footer .footer-social-icons .social-ico.linkedin-ico:active,
.footer .footer-social-icons .social-ico.linkedin-ico:hover {
  background-image: url("/assets/img/linkedin-ico-hover.svg");
}

.footer .footer-social-icons .social-ico.whatsapp-ico {
  background-image: url("/assets/img/whatsapp-ico.svg");
}

.footer .footer-social-icons .social-ico.whatsapp-ico:active,
.footer .footer-social-icons .social-ico.whatsapp-ico:hover {
  background-image: url("/assets/img/whatsapp-ico-hover.svg");
}

.close-btn {
  background: 0 0;
  border: none;
  color: #6b0606;
  font-size: 24px;
  margin-left: auto;
  margin-right: 30px;
  margin-top: 30px;
}

.close-btn:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .close-btn {
    font-size: 16px;
    margin-right: 10px;
  }
}

.btn-link {
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.btn-link.btn-link-primary {
  color: #6b0606;
  transition: 0.3s ease;
}

.btn-link.btn-link-primary:active,
.btn-link.btn-link-primary:hover {
  color: #191514;
  transition: 0.3s ease;
}

.btn.btn-uniite {
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.btn-uniite:active,
.btn.btn-uniite:hover {
  transition: 0.3s ease;
}

.btn.btn-primary-filled {
  background: #6b0606;
  color: #fdf3ec;
}

.btn.btn-primary-filled:active,
.btn.btn-primary-filled:hover {
  background: #191514;
  color: #fdf3ec;
}

.btn.btn-darker {
  background: #191514;
  color: #fdf3ec;
}

.btn.btn-darker:active,
.btn.btn-darker:hover {
  background: #6b0606;
  color: #fdf3ec;
}

.btn.btn-peach {
  background: #f88a8a;
  color: #191514;
}

.btn.btn-peach:active,
.btn.btn-peach:hover {
  background: #6b0606;
  color: #fdf3ec;
}

.btn.btn-white {
  background: #fdf3ec;
  color: #191514;
}

.btn.btn-white:active,
.btn.btn-white:hover {
  background: #6b0606;
  color: #fdf3ec;
}

.btn.btn-primary-hover-opposite {
  background: #6b0606;
  color: #fdf3ec;
}

.btn.btn-primary-hover-opposite:active,
.btn.btn-primary-hover-opposite:hover {
  color: #191514;
  background: #fdf3ec;
}

.btn.btn-pink-lighter {
  background: #fdf3ec;
  color: #6b0606;
}

.btn.btn-pink-lighter:active,
.btn.btn-pink-lighter:hover {
  background: #6b0606;
  color: #fdf3ec;
}

.btn.btn-outline-primary {
  border: 1px solid #6b0606;
  color: #6b0606;
}

.btn.btn-outline-primary:active,
.btn.btn-outline-primary:hover {
  color: #191514;
  border-color: #191514;
  background: 0 0;
}

.header {
  top: 0;
  left: 0;
  z-index: 20;
  background: #fdf3ec;
  transition: 0.3s ease;
  padding: 12px 24px 12px 16px;
}

@media (max-width: 576px) {
  .header {
    padding: 12px 16px;
  }
}

.header .logo {
  height: 80px;
}

@media (max-width: 576px) {
  .header .logo {
    /* height: 34px */
    height: 75px;
  }
}

.header .navbar-toggler {
  color: #191514;
  padding: 0;
  border: none;
}

.header .navbar-toggler:active,
.header .navbar-toggler:hover {
  outline: 0;
  box-shadow: none;
}

.header .header-overlay {
  display: none;
}

@media (max-width: 768px) {
  .header .header-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(25, 21, 20, 0.54);
    width: 100%;
    height: 100%;
    display: none;
  }

  .header .header-overlay.show {
    display: block;
  }
}

@media (max-width: 768px) {
  .header .navbar-collapse {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 80%;
    background: #fdf3ec;
    transition: 0.3s ease;
    display: block;
  }

  .header .navbar-collapse.show {
    right: 0;
    transition: 0.3s ease;
  }
}

.header .header-navbar {
  display: inline-flex;
  align-items: center;
  width: 100%;
  /* padding-left: 24%; */
  padding-left: 60%;
  justify-content: space-between;
  padding-right: 6%;
}

@media (max-width: 768px) {
  .header .header-navbar {
    display: block;
    padding: 16px;
  }
}

.header .header-navbar li {
  margin-right: 16px;
}

@media (max-width: 768px) {
  .header .header-navbar li {
    margin-bottom: 16px;
    margin-right: 0;
  }
}

.header .header-navbar li:last-child {
  margin-right: 0;
}

.header .header-navbar li a {
  color: #191514;
  text-decoration: none;
  position: relative;
  padding: 0 16px 8px;
  font-family: "Albra TRIAL Medium";
}

@media (max-width: 768px) {
  .header .header-navbar li a {
    display: block;
    padding: 0 0 8px;
  }
}

.header .header-navbar li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #6b0606;
  top: 100%;
  left: 0;
  transition: 0.3s ease;
}

.header .header-navbar li a.active,
.header .header-navbar li a:active,
.header .header-navbar li a:hover {
  color: #6b0606;
}

.header .header-navbar li a.active::before,
.header .header-navbar li a:active::before,
.header .header-navbar li a:hover::before {
  width: 100%;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .header .header-signup-link {
    margin-left: 16px;
    width: calc(100% - 32px);
  }
}

.header .sidebar {
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  background: #fdf3ec;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  z-index: 15;
}

@media (max-width: 576px) {
  .header .sidebar {
    right: -70%;
    width: 70%;
  }
}

.header .sidebar.open {
  right: 0;
}

.header .main-logo,
.header .sidebar-menu {
  transition: opacity 0.3s ease-in-out;
}

.header .menu-list {
  list-style: none;
  padding: 120px 0 0;
}

@media (max-width: 576px) {
  .header .menu-list {
    padding-top: 20px !important;
  }
}

.header .menu-list a {
  color: #191514;
  text-decoration: none;
  border-bottom: 1px solid #191514;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 32px;
  display: block;
  transition: 0.3s ease;
}

.header .menu-list a .active {
  transition: 0.3s ease;
  color: #6b0606;
  font-weight: 700;
}

.header .menu-list a:active,
.header .menu-list a:focus,
.header .menu-list a:hover {
  background: #6b0606;
  color: #fdf3ec;
  transition: 0.3s ease;
}

@media (max-width: 576px) {
  .header .menu-list a {
    font-size: 16px;
  }
}

.header-prof-ico {
  width: 54px;
  height: 54px;
  border-radius: 50px;
  border: 1px solid #fdf3ec;
  color: #fdf3ec;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.header-prof-ico:active,
.header-prof-ico:hover {
  background: #fdf3ec;
  color: #6b0606;
  transition: 0.3s ease;
}

@media (max-width: 576px) {
  .header-prof-ico {
    width: 40px;
    height: 40px;
  }
}

.sidebar-menu {
  transform: rotate(90deg);
  transition: opacity 0.3s ease-in-out;
  height: 80px;
}

@media (max-width: 576px) {
  .sidebar-menu {
    height: 36px;
  }
}

.sidebar-menu .menu-btn {
  border: none;
  background: 0 0;
  color: #fdf3ec;
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
}

.sidebar-menu .menu-btn:hover {
  text-decoration: underline;
}

.sidebar-menu .menu-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 576px) {
  .sidebar-menu .menu-btn {
    font-size: 16px;
  }
}

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 21, 20, 0.8);
  transition: 0.3s ease;
  z-index: 9;
  display: none;
}

.sidebar.open + .overlay {
  display: block;
}

@media (max-width: 768px) {
  .header-logo {
    align-items: center;
  }

  .sidebar-menu {
    display: block;
  }
}

.form {
  width: 500px;
  border-radius: 20px;
  z-index: 5;
}

@media (max-width: 768px) {
  .form {
    width: 400px;
  }
}

@media (max-width: 576px) {
  .form {
    width: 100%;
  }
}

.form .form-text {
  color: #191514;
  margin-top: 0;
  font-size: 16px;
}

.form .input-data {
  border-radius: 5px;
  border: 1px solid #191514;
  padding: 8px 12px;
  transition: 0.3s ease;
}

.form .input-data:focus,
.form .input-data:hover {
  outline: 0;
  background-color: rgba(107, 6, 6, 0.04);
  transition: 0.3s ease;
}

.form .alert-message {
  font-size: 16px;
  color: #d80232;
}

.form .alert-message-common {
  font-size: 16px;
  color: #d80232;
}

.form .text-data {
  border-radius: 5px;
  border: 1px solid #191514;
  height: 90px;
  resize: none;
  padding: 8px 12px;
  transition: 0.3s ease;
}

.form .text-data:focus,
.form .text-data:hover {
  outline: 0;
  background-color: rgba(107, 6, 6, 0.04);
  transition: 0.3s ease;
}

.card.uniite-card {
  border: 1px solid #f88a8a;
  background: 0 0;
  transition: 0.3s ease;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #191514;
}

.h1,
h1 {
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 768px) {
  .h1,
  h1 {
    font-size: 42px;
    word-wrap: break-word;
  }
}

.h2,
h2 {
  font-size: 44px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .h2,
  h2 {
    font-size: 28px;
  }
}

.h3,
h3 {
  font-size: 32px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .h3,
  h3 {
    font-size: 24px;
  }
}

.h4,
h4 {
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .h4,
  h4 {
    font-size: 20px;
  }
}

.h5,
h5 {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .h5,
  h5 {
    font-size: 18px;
  }
}

.h6,
h6 {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .h6,
  h6 {
    font-size: 16px;
  }
}

body {
  font-family: "Albra TRIAL Medium";
  background: #fdf3ec;
  margin-top: 80px;
  color: #191514;
  overflow-x: hidden;
}

@media (max-width: 576px) {
  body {
    margin-top: 64px;
  }
}

.flip-scale-x {
  transform: scaleX(-1);
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-22 {
  font-size: 22px;
}

@media (max-width: 768px) {
  .font-22 {
    font-size: 18px;
  }
}

.text-lemon-yellow {
  color: #fffbdd;
}

.text-frosted-sky {
  color: #eef7fc;
}

.bg-primary {
  background: #193380 !important;
}

.font-weight-bold {
  font-weight: 700;
}

.text-heading-title {
  color: #191514;
}

.text-body-text {
  color: #191514;
}

.text-red {
  color: #6b0606;
}

.bg-red {
  background: #6b0606;
}

.bg-body-brown {
  background: #191514;
}

.text-pink-lighter {
  color: #fdf3ec;
}

.text-peach {
  color: #f88a8a;
}

.bg-peach {
  background: #f88a8a;
}

.text-golden {
  color: #ece6d0;
}

.bg-pink-lighter {
  background: #fdf3ec;
}

.text-gray {
  color: #5e5f68;
}

.text-gray-50 {
  color: rgba(25, 21, 20, 0.5);
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.max-w-70 {
  max-width: 70%;
}

.max-w-50 {
  max-width: 50%;
}

.cursor-pointer {
  cursor: pointer;
}

.font-italic {
  font-style: italic;
}

.font-normal {
  font-style: normal;
}

.font-albra-regular {
  font-family: "Albra TRIAL";
}

.font-albra-medium {
  font-family: "Albra TRIAL Medium";
}

.font-albra-bold {
  font-family: "Albra TRIAL Bold";
}

.word-nowrap {
  white-space: nowrap;
}

.text-justify {
  text-align: justify;
}

.hero-section {
  position: relative;
  background-color: #fdf3ec;
  padding-top: 60px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.hero-section .intro-content {
  background: #fdf3ec;
  margin-left: -24%;
  top: 13%;
  position: relative;
}

@media (max-width: 992px) {
  .hero-section .intro-content {
    margin-left: 0;
    top: 0;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.hero-section .intro-content h1 {
  font-size: 80px;
}

@media (max-width: 768px) {
  .hero-section .intro-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section .sub-title-name {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero-section .intro-subline {
    font-size: 16px;
  }
}

.hero-section .intro-img-left .intro-img {
  border-radius: 8px;
  max-width: 68%;
}

@media (max-width: 768px) {
  .hero-section .intro-img-left .intro-img {
    max-width: 100%;
  }
}

.uniite-slider {
  display: flex;
  align-items: center;
  animation-name: infiniteScroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 2600px;
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.uniite-slider-opposite {
  display: flex;
  align-items: center;
  animation-name: infiniteScrollOpposite;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 2600px;
}

@keyframes infiniteScrollOpposite {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.whyit-works .whyit-title-para {
  font-size: 24px;
}

@media (max-width: 992px) {
  .whyit-works .whyit-title-para {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .whyit-works .whyit-data-row {
    padding: 12px;
  }
}

.whyit-works .whyit-data-row .whyit-data {
  border-right: 1px solid #191514;
  padding: 48px;
}

@media (max-width: 992px) {
  .whyit-works .whyit-data-row .whyit-data {
    border-bottom: 1px solid #191514;
    border-right: none;
  }
}

@media (max-width: 768px) {
  .whyit-works .whyit-data-row .whyit-data {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .whyit-works .whyit-data-row .whyit-data {
    padding: 0;
  }
}

.whyit-works .whyit-data-row .whyit-data.second-card {
  border: 0;
}

@media (max-width: 992px) {
  .whyit-works .whyit-data-row .whyit-data.second-card {
    border-bottom: 1px solid #191514;
  }
}

@media (max-width: 768px) {
  .whyit-works .whyit-data-row .whyit-data.second-card {
    padding: 16px;
  }
}

.whyit-img-wrap {
  height: 100px;
  border: 1px solid #6b0606;
}

.whyit-img-wrap .whyit-img {
  color: #191514;
  font-size: 50px;
  overflow: visible;
  height: 100px;
  width: 100px;
  padding: 15px;
  animation: heartBeat1 1.35s linear 0s infinite;
}

@keyframes heartBeat1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  15% {
    transform: scale(0.8);
  }

  20% {
    transform: scale(0.85);
    opacity: 1;
  }

  35% {
    transform: scale(1.12);
    opacity: 0.8;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.home-approach-card {
  border: 1px solid #fdf3ec;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  transition: 0.3s ease;
}

@media (max-width: 576px) {
  .home-approach-card {
    padding: 16px;
  }
}

.home-approach-card h4,
.home-approach-card h5,
.home-approach-card i {
  color: #fdf3ec;
  word-wrap: break-word;
  width: 100%;
}

.home-approach-card p {
  color: #fdf3ec;
  margin-bottom: 0;
  font-size: 20px;
}

@media (max-width: 576px) {
  .home-approach-card p {
    font-size: 16px;
  }
}

.home-approach-card:active,
.home-approach-card:hover {
  background: #fdf3ec;
  box-shadow: 0 6px 16px rgba(25, 21, 20, 0.16);
  transition: 0.3s ease;
}

.home-approach-card:active h4,
.home-approach-card:active h5,
.home-approach-card:active i,
.home-approach-card:active p,
.home-approach-card:hover h4,
.home-approach-card:hover h5,
.home-approach-card:hover i,
.home-approach-card:hover p {
  color: #191514;
}

.contact-bg-img {
  background-image: url("/assets/img/intro-bg-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.join-today {
  color: #6b0606;
}

@keyframes rotation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(359deg);
  }
}

.progress-vert-sec .progress-vertical {
  position: relative;
}

@media (max-width: 768px) {
  .progress-vert-sec .progress-vertical {
    display: none;
  }
}

.progress-vert-sec .progress-vertical::before {
  content: "";
  left: 50%;
  top: 2px;
  background: #191514;
  width: 1px;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.progress-vert-sec .progress-vertical .process-circle {
  width: 16px;
  height: 16px;
  background: #191514;
  display: inline-flex;
  position: relative;
  z-index: 2;
}

.progress-vert-sec .progress-desc {
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .progress-vert-sec .mobile-vertical-prog {
    position: relative;
    padding-left: 16px;
  }

  .progress-vert-sec .mobile-vertical-prog::before {
    content: "";
    left: 7px;
    top: 6px;
    background: #5e5f68;
    width: 1px;
    height: 100%;
    position: absolute;
    z-index: 1;
  }

  .progress-vert-sec .mobile-vertical-prog:after {
    content: "";
    width: 16px;
    height: 16px;
    background: #191514;
    display: inline-flex;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 5px;
  }
}

.about-section {
  padding: 32px 40px;
  background: #fdf3ec;
}

@media (max-width: 768px) {
  .about-section {
    padding: 0 24px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 0 12px;
  }
}

.about-section .our-team-section {
  margin-bottom: 20px;
}

.about-section .our-team-section .sub-title-name {
  font-size: 26px;
  color: #191514;
}

@media (max-width: 576px) {
  .about-section .our-team-section .sub-title-name {
    font-size: 18px;
  }
}

.about-section .our-team-para {
  font-size: 20px;
  color: #191514;
}

@media (max-width: 768px) {
  .about-section .our-team-para {
    font-size: 14px;
  }
}

.about-section .our-team-img {
  border-bottom: 1px solid #191514;
}

.about-section .our-team-content-section {
  border-top: 1px solid #191514;
}

@media (max-width: 576px) {
  .about-section .our-team-content-section {
    margin-top: 24px !important;
  }
}

.about-section .our-team-content-section .our-team-content-1 {
  border-bottom: 1px solid #191514;
}

.about-section
  .our-team-content-section
  .our-team-content-1
  .content-title-name {
  font-size: 32px;
  color: #191514;
}

@media (max-width: 576px) {
  .about-section
    .our-team-content-section
    .our-team-content-1
    .content-title-name {
    font-size: 24px;
    margin-top: 24px !important;
  }
}

@media (max-width: 576px) {
  .about-section
    .our-team-content-section
    .our-team-content-1
    .content-img-para {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .about-section
    .our-team-content-section
    .our-team-content-1
    .content-img-para
    .content-img {
    text-align: center;
  }
}

.about-section
  .our-team-content-section
  .our-team-content-1
  .content-img-para
  .content-img
  .content-title-img {
  max-width: 100%;
}

.about-section
  .our-team-content-section
  .our-team-content-1
  .content-img-para
  .content-title-para {
  font-size: 20px;
  color: #191514;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .about-section
    .our-team-content-section
    .our-team-content-1
    .content-img-para
    .content-title-para {
    font-size: 16px;
  }
}

.services-section .title-name {
  font-size: 60px;
  color: #6b0606;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .services-section .title-name {
    font-size: 34px;
  }
}

.services-section .sub-title-name {
  font-size: 32px;
  color: #191514;
  font-weight: 400;
  text-align: center;
}

.services-section .sub-title-name.sub-title-highlight {
  font-size: 38px;
}

@media (max-width: 768px) {
  .services-section .sub-title-name.sub-title-highlight {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .services-section .sub-title-name {
    font-size: 18px;
  }
}

.services-section .sub-title-name .sub-title-free {
  color: #6b0606;
  font-weight: 600;
}

.pricing-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .pricing-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.faq-section {
  background: #fdf3ec;
}

@media (max-width: 576px) {
  .faq-section {
    padding: 12px !important;
  }
}

.faq-section .faq-form {
  margin-top: 200px;
  width: 584px;
  background-color: #fff;
}

@media (max-width: 576px) {
  .faq-section .faq-form {
    width: auto;
    padding: 12px;
    margin-top: 100px;
  }
}

.faq-section .faq-form .first-line {
  font-size: 14px;
  color: #777;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .faq-section .faq-form .first-line {
    flex-wrap: wrap;
  }
}

.faq-section .faq-form .first-line .data-name {
  border: 0;
  border-bottom: 2px solid #777;
  border-radius: 0;
  padding: 8px 12px;
}

.faq-section .faq-form .first-line .data-name:active,
.faq-section .faq-form .first-line .data-name:focus {
  border-color: #df3131;
  box-shadow: none;
}

.faq-section .faq-form .first-line .about-input {
  margin-right: 12px;
  border: 2px solid #d3d3d3 !important;
}

.faq-section .faq-form .first-line .about-data {
  font-weight: 400;
}

.faq-section .faq-form .data-textarea {
  border: 0;
  border-bottom: 2px solid #777;
  border-radius: 0;
  padding: 16px 12px;
}

.faq-section .faq-form .data-textarea:active,
.faq-section .faq-form .data-textarea:focus {
  border-color: #df3131;
  box-shadow: none;
}

.faq-section .faq-form .data-textarea:focus-within {
  outline: 0;
}

.contact-section {
  background: #fdf3ec;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-section .contact-today {
  padding-top: 100px;
  font-size: 200px;
  color: #191514;
}

@media (max-width: 1400px) {
  .contact-section .contact-today {
    font-size: 180px;
  }
}

@media (max-width: 1200px) {
  .contact-section .contact-today {
    font-size: 150px;
  }
}

@media (max-width: 992px) {
  .contact-section .contact-today {
    font-size: 116px;
  }
}

@media (max-width: 768px) {
  .contact-section .contact-today {
    font-size: 80px;
    padding: 100px 24px 0 24px;
  }
}

@media (max-width: 576px) {
  .contact-section .contact-today {
    font-size: 44px;
    padding: 100px 12px 0 12px;
  }
}

.contact-section .working-section-main .working-section {
  border-top: 1px solid #191514;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .contact-section .working-section-main .working-section {
    margin-bottom: 20px !important;
  }
}

.contact-section .working-section-main .working-section .working-hours {
  font-size: 120px;
  color: #191514;
}

@media (max-width: 992px) {
  .contact-section .working-section-main .working-section .working-hours {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .contact-section .working-section-main .working-section .working-hours {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .contact-section .working-section-main .working-section .working-hours {
    font-size: 48px;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  .contact-section .working-section-main .working-section .working-hours {
    font-size: 40px;
    margin-bottom: 0 !important;
  }
}

.contact-section .working-data {
  font-size: 24px;
  color: #191514;
}

@media (max-width: 576px) {
  .contact-section .working-data {
    font-size: 16px;
  }
}

.question-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .question-section {
    padding-bottom: 40px;
  }
}

.question-section .ready-to-meet {
  color: #191514;
  text-align: center;
  font-size: 60px;
}

@media (max-width: 768px) {
  .question-section .ready-to-meet {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .question-section .ready-to-meet {
    font-size: 28px;
  }
}

/* 6-may-2025 add new ============================================================= */
/* ================================================================================ */

/*# sourceMappingURL=style.css.map */

/* New css Add */

/* otp css */

.otp-field {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.bottom-space-10 {
  padding-bottom: 15px;
}

/* loading message */
.loadingmess {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #6b0606;
  font-weight: bold;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .ipadview {
    width: 80%;
    margin-left: 10px;
  }
}

/*Questionnaire.js buttons*/
.action-button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.action-button {
  width: 110px;
  background: #6b0606;
  font-weight: bold;
  color: #fdf3ec;
  border: 0 none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  margin: 10px 5px;
  text-decoration: none;
  font-size: 14px;
}

/* .action-button:hover,
.action-button:focus {
  box-shadow: 0 0 5px white, 0 0 5px #E37300; // commented
  box-shadow: 0 0 10px #9A2E33;
} */

/* photo upload css */
.btn-upload {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  max-width: 124px;
  border-radius: 8px;
  vertical-align: top;
}

.btn-upload label {
  display: block;
  height: 39px;
  padding: 0;
  color: #fdf3ec;
  background: #6b0606;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 10px;
  margin-top: 18px;
  text-align: center;
}

.btn-upload label:hover {
  /* background: #191514; */
  background: #191514;
  color: #fdf3ec;
}

.btn-upload input[type="file"] {
  position: relative;
  left: -86px;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  margin-top: -34px;
  outline: 0;
  cursor: pointer;
}

/* .file-preview-item {
  display: flex;
  margin-bottom: 10px;
} */

.file-preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.file-preview-item img {
  /* width: 120px;
  height: 120px; */
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}

.file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.file-image {
  height: 40px;
  margin-left: 10px;
  margin-right: 10px;
}

.close-button {
  height: 30px;
  width: 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  font-size: 24px;
  line-height: 30px;
}

/* step 10 image upload and selfie step css */

@media (max-width: 480px) {
  .file-preview-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* .file-preview-item img {
    width: 90px;
    height: 90px;
  } */

  .file-preview-item li {
    max-width: 180px;
    font-size: 13px;
    margin-top: 5px;
  }

  @media (min-width: 375px) and (max-width: 430px) {
    .file-preview-item img {
      /* width: 100px;
      height: 100px; */
      object-fit: cover;
    }

    .file-preview-item li {
      max-width: 220px;
      font-size: 14px;
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .file-preview-item img {
      /* width: 120px;
      height: 120px; */
      object-fit: cover;
    }

    .file-preview-item li {
      font-size: 15px;
      max-width: 260px;
    }
  }

  @media (min-width: 1024px) and (max-width: 1366px) {
    .file-preview-item img {
      /* width: 130px;
      height: 130px; */
      object-fit: cover;
    }

    .file-preview-item li {
      max-width: 300px;
      font-size: 16px;
    }
  }
}

/* .button-size {
  width: 100px; 
} */

#customRadio {
  accent-color: #191514;
}

.fs-title {
  justify-content: center;
  display: flex;
  /* color: #2A0C0F; */
  font-family: "Albra sans";
  text-decoration: underline;
  font-weight: bold;
  font-size: 28px;
}

.detail-title-set {
  margin-top: 20px;
}

.form-select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #2a0c0f;
  border-radius: 5px;
  width: 100%;
  background-color: #fff;
  color: #191514;
}

.form-select:focus {
  outline: none;
  border-color: #2a0c0f;
  box-shadow: 0 0 10px #9a2e33;
}

/* home.js css */
.profile-picture {
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  transform: rotate(0deg);
  /* margin: 10px; */
}

.profile-picture img {
  width: 100%;
  height: auto;
}

/* MyProfile.js login page css */
.login-section {
  padding-top: 90px !important;
}

@media (max-width: 768px) {
  .login-section {
    padding-top: 50px !important;
  }

  .ready-to-meet {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .ready-to-meet {
    font-size: 28px;
  }
}

.ready-to-meet {
  color: #333333;
  text-align: center;
  font-size: 60px;
}

.stay-sign-btn {
  top: 0px !important;
}

/* Animatioin effect */
.cssanimation,
.cssanimation span {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.cssanimation span {
  display: inline-block;
}

.rollFromLeft {
  animation-name: rollFromLeft;
}

@media (min-width: 992px) {
  .reasons-box {
    width: 40%;
  }

  .reasons-title {
    width: 30%;
  }

  .reasons-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .reasons-content::after {
    content: "";
    width: 30%;
  }
}

@media (max-width: 991.98px) {
  .reasons-box {
    width: 100%;
  }
}

.typing {
  background-color: inherit;
  /* Keeps the background fixed */
  border: none;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  margin: 0px;
  width: 100%;
  text-overflow: ellipsis;
}

.typing p {
  display: inline-block;
  vertical-align: middle;
  border-right: 2px solid #fdf3ec;
  /* animation: typing 2s steps(12, end), cursor .6s steps(1, end) infinite; */
  animation: typing 10s steps(34, end) infinite alternate,
    cursor 0.6s steps(1, end) infinite;
  overflow: hidden;
  white-space: nowrap;
  /* width: 34ch; */
  margin: 0px;
  /* width: 100%; */
}

@keyframes typing {
  0% {
    width: 0;
    text-overflow: unset;
  }

  95% {
    text-overflow: unset;
  }

  100% {
    width: 100%;
    text-overflow: ellipsis;
  }
}

@keyframes cursor {
  50% {
    border-color: transparent;
  }
}

/* .typing {
  width: 473px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #7E2EA0;
  animation: typing 2s steps(12, end), cursor .2s steps(12, end) infinite;
  animation: typing 2s steps(12, end) infinite alternate, cursor .6s steps(1, end) infinite;
}
@keyframes typing {
  from { width: 0 }
}
@keyframes cursor {
  50% { border-color: transparent }
} */

/* .hu__hu__ { animation: hu__hu__ infinite 2s ease-in-out }
@keyframes hu__hu__ {
    50% { transform: translateY(30px) }
} */

/* calender.js */

.profile-pic-calender {
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  height: 60px;
  transform: rotate(0deg);
  margin: 10px;
}

.profile-pic-calender img {
  width: 100%;
  height: auto;
}

#calendar {
  border: 1px solid #7a7a7a;
}

.appointment-table td {
  background-color: #fdf3ec;
}

.appointment-table .allowday {
  /* background-color: #fff;
  color: #0fdf32; */
  background-color: #fdf3ec;
  color: #16b601;
  font-weight: bold;
}

.appointment-table .selectdate {
  /* background-color: #86be65;
  color: #fff; */
  background-color: #70ec7b;
  color: #333333;
}

.appointment-table .disabled-date {
  background-color: #fdf3ec;
  color: #191514;
  pointer-events: none;
}

/* Modal styling */
.modalDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.modalDialog.show {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog > div {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 80%;
  max-width: 400px;
}

.modalDialog h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.modalDialog button {
  background-color: #073763;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.modalDialog button:hover {
  background-color: #05598a;
}

/* Custom Checkbox Style */
.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #2a0c0f;
  border-radius: 4px;
  background-color: white;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-checkbox:checked {
  background-color: #2a0c0f;
  border-color: #2a0c0f;
}

.input,
.textarea,
.Select {
  /* border-color: #2A0C0F !important; */
  border: 1px solid #2a0c0f !important;
  background-color: #fdf3ec !important;
  color: #191514 !important;
  font-family: "Poppins" !important;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fdf3ec inset !important;
  box-shadow: 0 0 0px 1000px #fdf3ec inset !important;
  -webkit-text-fill-color: #191514 !important;
  background-color: #fdf3ec !important;
  font-family: "Poppins", sans-serif !important;
  border: 1px solid #2a0c0f !important;
}

.selectdate {
  background-color: #f39c12;
  color: white;
}

.react-international-phone-input-container {
  /* border: none !important; */
  /* width: 300px; */
  /* font-family: "Red Hat Display", "WixMadefortextRegular" !important; */
  /* font-family: "Poppins" !important; */
  /* font-size: 14px !important; */
  /* color: #2A0C0F !important; */
  /* background-color: #fdf3ec !important; */

  width: 100%;
  border: 1px solid #2a0c0f !important;
  background-color: #fdf3ec !important;
  color: #191514 !important;
  font-family: "Poppins" !important;
  padding: 2px 0px !important;
  border-radius: 5px !important;
}

.react-international-phone-input-container input {
  border: none !important;
  /* width: 300px; */
  /* font-family: "Red Hat Display", "WixMadefortextRegular" !important; */
  /* font-family: "Poppins" !important; */
  /* font-size: 14px !important; */
  /* color: #2A0C0F !important; */
  background-color: #fdf3ec !important;
  font-size: var(--bs-body-font-size) !important;
}

.react-international-phone-input-container
  .react-international-phone-country-selector-button {
  background-color: #fdf3ec !important;
}

.stdropdown-input input {
  border: none !important;
  width: 300px;
  /* font-family: "Red Hat Display", "WixMadefortextRegular" !important; */
  font-family: "Poppins" !important;
  font-size: 14px !important;
  color: #191514 !important;
  background-color: #fdf3ec;
}

/* Time zone selection css */
.select-half-width {
  width: 49%;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .select-half-width {
    width: 60%;
  }
}

@media (max-width: 992px) {
  .select-half-width {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .select-half-width {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .select-half-width {
    width: 100%;
  }
}

input::-ms-reveal {
  display: none;
}

/* profile picture set in header like first an last name */
.profile-picture-header {
  width: 50px;
  height: 50px;
  background-color: #6b0606;
  /* color: white; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.profile-initials {
  font-size: 20px;
  font-weight: bold;
  color: #fdf3ec;
}

/* new css add */

.alert-danger {
  color: #fdf3ec;
  background: #f88a8a;
}

.password-eye-icon {
  color: #6b0606;
  width: 30px;
  margin-top: 14px;
  position: absolute;
  cursor: pointer;
  margin-left: -28px;
}

.form .form-text {
  font-size: 18px;
}

.color-191514 {
  color: #191514;
}

.box-shadow-none {
  box-shadow: none !important;
}

.address-input {
  border: 1px solid #2a0c0f;
  border-radius: 5px;
  font-family: "Poppins";
  font-size: var(--bs-body-font-size);
  color: #191514;
  background-color: #fdf3ec;
}

.address-input input {
  /* font-family: "Poppins" !important; */
  font-size: var(--bs-body-font-size) !important;
  outline: none !important;
}

.address-input input :focus-visible {
  outline: none;
}

.address-input .stdropdown-item:hover,
.address-input .stdropdown-item.selected {
  background-color: #f88a8a;
  color: #fdf3ec;
}

.font-poppins {
  font-family: Poppins;
}

.sport-title {
  width: 114px;
}

.text-decoration-udl {
  text-decoration: underline;
}

.height-100px {
  height: 100px;
}

.file-upload-btn {
  max-width: unset;
}

.file-upload-input {
  opacity: 0;
  margin-left: 10px;
}

.set-background-fdf3ec {
  background-color: #fdf3ec;
}

.appointment-time {
  max-height: 360px;
  overflow: auto;
  border: none;
}

.reasons-box {
  background: #6b0606;
  color: #fdf3ec;
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
}

.pre-wrap-text {
  white-space: pre-wrap;
}

@media screen and (orientation: landscape) {
  .min-70vh {
    min-height: 70vh;
  }
}

/* Profile show css admin */
/* .profile-info {
  border: 1px solid #ccc; 
  margin: 20px;
  padding: 10px;
  background-color: #fdf3ec
} */

/* Margin for search box (filter input) */
.data-table-extensions {
  margin: 10px !important;
}

/* schedule time show css admin */
/* Input Fields */
input[type="date"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
}

/* Labels */
.label-color {
  font-weight: 600;
  font-size: 14px;
}

/* Buttons */
.btn-submit,
.btn_cancel,
.btn-danger {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
}

.btn-submit {
  background-color: #6b0606;
  border-color: #6b0606;
}

.btn-submit:hover {
  background-color: #8b0a0a;
}

.btn_cancel {
  background-color: #888;
  border-color: #888;
}

.btn-danger {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.errorMsg {
  color: #d9534f;
  font-size: 16px;
  margin-top: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #6b0606;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Icon Buttons */
.get-more-genre {
  cursor: pointer;
  transition: color 0.3s ease;
}

.get-more-genre:hover {
  color: #8b0a0a;
}

.disable-text {
  color: #aaa;
}

.storetime-li {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.storeAdd-from {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

/* h5 {
  font-weight: bold;
  color: #6b0606;
} */

/* Modal styling */
.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 500;
  opacity: 1;
  -webkit-transition: fadeIn 900ms ease-in;
  -moz-transition: fadeIn 900ms ease-in;
  transition: fadeIn 900ms ease-in;
  pointer-events: auto;
  overflow: auto;
}

.modalDialog > div {
  position: relative;
  margin: 8vh auto;
  overflow: auto;
  border-radius: 12px;
  background: #fff;
  padding: 1rem 1rem 0rem 1rem;
}

@media (min-width: 767px) {
  .modalDialog > div {
    width: 760px;
    margin: 8vh auto;
  }
}

.modalDialog .modal-bottom-view {
  padding: 1rem 0rem;
}

.modalDialog-hide {
  display: none;
}

.modalDialog-show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.content-blur {
  filter: blur(5px);
  transition: filter 0.3s ease-in-out;
}

.set-width300 {
  width: 300px;
}

.left-column,
.right-column {
  width: 300px;
}

.border_remove {
  border: none !important;
}

.adminTimeslotShowBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2;
}

/* Overlay background */
.quick-view-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal box */
.quick-view-modal {
  background-color: #fff;
  width: 90%;
  max-width: 850px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* Table inside the modal */
.quick-view-table th,
.quick-view-table td {
  font-size: 14px;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

/* OK button styling */
.modal-button-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* AIMatchProfile icon styling */
.email-icon-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

.email-badge {
  position: absolute;
  top: -6px;
  right: 0px;
  background-color: rgb(240, 115, 115);
  color: black;
  border-radius: 50%;
  /*padding: 2px 6px;*/
  font-size: 11px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: 1px;
  background-color: rgb(188, 202, 243);
  color: black;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.name_dashboard {
  white-space: normal;
  font-weight: bold;
  font-size: 14px;
}

.status-toggle {
  display: flex;
  align-items: center;
}

.expandbuttonMatchReport {
  background: none;
  border: none;
  color: #8b0a0a;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 5px;
}

.MatchReportDashbordTitle {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 3px;
}

.ShowProfileMatchReport {
  /* color: #8b0a0a; */
  cursor: pointer;
}

/* dashboard page filter css   ----------------- */

.filters-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 15px;
  /* background-color: #fff;
  border: 1px solid #ddd; */
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.filters-container label {
  display: block;
  font-weight: 600;
  color: black;
  font-size: 14px;
  margin-bottom: 5px;
}

.filters-container select,
.filters-container input[type="text"],
.filters-container input[type="number"] {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
  width: 160px;
  transition: all 0.2s ease-in-out;
}

.filters-container input:focus,
.filters-container select:focus {
  /* border-color: #b37447; */
  box-shadow: 0 0 0 2px rgba(179, 116, 71, 0.2);
  outline: none;
}

.filters-container input::placeholder {
  color: #aaa;
  font-size: 13px;
}

.filters-container div {
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .filters-container {
    flex-direction: column;
    align-items: stretch;
  }
  .filters-container div {
    width: 100%;
  }
}

/* calender view in Scheduletime.js file css */
.slot-item {
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.slot-confirmed {
  background-color: #28a745;
  color: white;
}

.slot-inreview {
  background-color: #ffc107;
  color: #000;
}

.slot-available {
  background-color: #f8f9fa;
  color: #333;
}

.slot-label {
  flex: 1;
  font-weight: 500;
}

.slot-status {
  font-weight: 600;
  font-size: 14px;
  margin-left: 10px;
}
