@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

p, strong {
  margin: 0px;
}

:root {
  --size-80: 80px;
  --size-76: 76px;
  --size-70: 70px;
  --size-64: 64px;
  --size-58: 58px;
  --size-52: 52px;
  --size-48: 48px;
  --size-44: 44px;
  --size-40: 40px;
  --size-36: 36px;
  --size-32: 32px;
  --size-28: 28px;
  --size-24: 24px;
  --size-20: 20px;
  --size-18: 18px;
  --size-16: 16px;
  --size-14: 14px;
  --size-12: 12px;
  --size-10: 10px;
  --size-8: 8px;
  --muslish: "Mulish", sans-serif;
}

.shimmer {
  position: relative;
}

.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: shimmer 1s infinite reverse;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.desk-h100-slider img {
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .mobile-h100-slider img, .desk-h100-slider img {
    height: 100vh !important;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
:root {
  --white:#fff;
  --black:#000;
  --secondary-color:#222222;
  --theme-pink:#EF59C4;
  --theme-purple:#B74BDC;
  --theme-gray: #323945;
  --radius-5:5px;
  --radius-10:10px;
  --radius-15:15px;
  --radius-20:20px;
}

body {
  width: 100%;
  float: left;
  font-family: var(--muslish);
  font-weight: 500;
  overflow-x: hidden;
}
body ul > li {
  list-style: none;
}
body a {
  text-decoration: none;
}
body img {
  max-width: 100%;
}
body h2 {
  font-size: 28px;
  font-weight: 700;
}

.main {
  width: 100%;
  float: left;
}

.btn-gradient {
  padding: 12px 20px;
  border: 1px solid var(--theme-pink) !important;
  border-radius: 10px;
  display: flex;
  align-items: center;
  color: var(--theme-pink) !important;
}
.btn-gradient img {
  margin-right: 10px;
}

.header {
  position: fixed;
  top: 0;
  padding: 10px 0px;
  box-shadow: 2px 4px 20px #D8E1ED;
  background-color: var(--white);
  z-index: 1;
  /* Icon 1 */
}
.header .navbar {
  display: none;
}
.header .animated-icon1, .header .animated-icon2, .header .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header .animated-icon1 span, .header .animated-icon2 span, .header .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .animated-icon1 span {
  background: #222222;
}
.header .animated-icon1 span:nth-child(1) {
  top: 0px;
}
.header .animated-icon1 span:nth-child(2) {
  top: 10px;
}
.header .animated-icon1 span:nth-child(3) {
  top: 20px;
}
.header .animated-icon1.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.header .animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .animated-icon1.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}
.header .animated-icon1.open {
  position: fixed;
  top: 0;
  z-index: 10000000000000000;
  right: 30px;
  top: 30px;
}
.header .navbar-toggler {
  border: 0px !important;
  box-shadow: none !important;
  z-index: 100000;
  padding: 0px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .logo {
  display: flex;
}
.header .logo a {
  display: flex;
  align-items: center;
}
.header .nsw-logo img {
  width: 70px;
}
.header .v-logo {
/*  border-left: 2px solid #E6F1F9;
*/  padding-left: 15px;
  margin-left: 15px;
  display: none !important;
}
.header .navbar-nav {
  display: none;
}
.header .navbar-nav li {
  margin-right: 15px;
}
.header .navbar-nav li a {
  background: #F1F4F8;
  padding: 5px 15px;
  font-size: var(--size-14);
  border-radius: 50px;
  color: var(--theme-gray);
  font-weight: 600;
  border: 1px solid transparent;
}
.header .navbar-nav .selected-laguage a {
  border-color: var(--theme-purple) !important;
  background: transparent;
}
.header .btn-gradient {
  display: none;
}

.header-expanded .navbar {
  display: block !important;
}
.header-expanded .container {
  justify-content: space-between !important;
}
.header-expanded .container .v-logo, .header-expanded .container .navbar-nav, .header-expanded .container .btn-gradient {
  display: flex !important;
}

.main-wrap {
  min-height: auto;
  height: auto;
  background-image: url(../images/curve-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.hero-flex {
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
}
.hero-flex .row {
  align-items: center;
  justify-content: center;
}
.hero-flex .row .img-part {
  display: flex;
  justify-content: center;
}
@keyframes imgleft {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0px);
  }
}
.hero-flex .row .img-part img {
  width: 470px;
}
@keyframes textright {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0px);
  }
}
.hero-flex .row .text-part .welcome-txt {
  font-size: var(--size-18);
  display: block;
  margin-bottom: 15px;
}
.hero-flex .row .text-part .virtual-logo {
  width: 300px;
}
.hero-flex .row .text-part .dropdown {
  display: flex;
  justify-content: space-between;
  width: 300px;
  margin-top: 20px;
}
.hero-flex .row .text-part .dropdown #selectedLanguageIcon {
  margin-right: 10px;
}
.hero-flex .row .text-part .dropdown button {
  width: 100%;
  text-align: left;
  background: transparent;
  border-color: var(--theme-pink);
  padding: 10px 20px;
  color: var(--theme-gray);
  font-weight: 600;
  margin: 0px !important;
  position: relative;
  border-radius: var(--radius-10);
}
.hero-flex .row .text-part .dropdown button::after {
  content: "";
  border: 0px;
  background: url("../images/dropdown-icon.svg");
  position: absolute;
  width: 15px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
}
.hero-flex .row .text-part .dropdown-menu.show {
  display: block;
  height: 150px;
  overflow-y: scroll;
  width: 300px;
}
.hero-flex .row .text-part .dropdown-menu.show .dropdown-item {
  font-weight: 600;
}
.hero-flex .row .text-part .dropdown-menu.show .dropdown-item span {
  margin-right: 10px;
}
.hero-flex .row .text-part #goButton {
  align-items: center;
  margin-left: 10px;
  background: rgb(239, 89, 196);
  background: linear-gradient(273deg, rgb(239, 89, 196) 35%, rgb(183, 75, 220) 100%);
  border-color: var(--theme-pink);
  border-radius: var(--radius-10);
}

.footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #F1F4F8;
  padding: 20px 0px;
  color: var(--theme-gray);
  font-weight: 600;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer .container ul {
  margin: 0px;
  padding: 0px;
  display: flex;
}
.footer .container ul li {
  margin-left: 10px;
}
.footer .container ul li a {
  color: var(--theme-gray);
}
.footer .footer-logo {
  width: 130px;
  position: absolute;
  left: 0;
}
.footer .bot-message-sec {
  position: absolute;
  right: 0;
  top: -50px;
}
.footer .bot-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  box-shadow: 2px 4px 20px #D8E1ED;
}
.footer .bot-btn img {
  width: 25px;
  height: 25px;
}
.footer .bot-message {
  width: 200px;
  position: absolute;
  right: 0;
  bottom: 70px;
  box-shadow: 2px 4px 20px #D8E1ED;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  transform: scale(0.9);
  transform: translate(0px, 100px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.footer .bot-message-active {
  transform: scale(1);
  transform: translate(0px, 0px);
  opacity: 1;
  pointer-events: all;
}

.help-flex {
  display: flex;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  text-align: center;
}
.help-flex .main-input {
  position: relative;
  width: 100%;
  border: 1px solid var(--theme-pink);
  border-radius: var(--radius-15);
  overflow: hidden;
  background-color: var(--white);
  margin-top: 50px;
}
.help-flex .main-input .typing-icon {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-flex .main-input .typing-icon img {
  width: 40px;
}
.help-flex .main-input input {
  padding: 15px 15px 15px 60px !important;
}
.help-flex .main-input #startButton {
  position: absolute;
  background: transparent;
  border: 0;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}
.help-flex .main-input #startButton img {
  width: 20px;
}

@keyframes vibration {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
#startButton.vibrating {
  animation: vibration 0.5s infinite;
}

.bot-incoming-msg {
  text-align: left;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.1294117647);
  color: var(--theme-gray);
  animation: carddown 1s ease 0s 1 normal none;
   margin-bottom: 10px;
}
@keyframes carddown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}
.bot-incoming-msg .bot-msg-innner {
  display: flex;
}
.bot-incoming-msg .img-part {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
  flex: 0 0 auto;
}
.bot-incoming-msg .text-part h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}
.bot-incoming-msg .text-part a {
  color: var(--theme-gray) !important;
  text-decoration: underline;
  font-weight: 500;
}

.guide-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  font-weight: 600;
 justify-content: flex-end; 
 }
.guide-sec .speak-guide {
  font-size: var(--size-12);
}
.guide-sec .speak-guide img {
  width: 20px;
  margin: 0px 10px;
}
.guide-sec .msg-guide {
  font-size: var(--size-12);
  background: #E6F1F9;
  padding: 8px 20px;
  border-radius: 50px;
}

.accordian-sec {
  border-top: 1px solid var(--theme-pink);
  margin: 12px 0px 0px 0px;
  display: flex;
  padding-top: 15px;
  justify-content: space-between;
}
.accordian-sec .accordion-body {
  padding: 0px;
}
.accordian-sec .accordion-button:not(.collapsed)::after,
.accordian-sec .accordion-button::after {
  background-image: url("../images/dropdown-icon.svg");
  width: 15px;
  background-size: contain;
  top: 6px;
  position: relative;
  transform: rotate(0deg) !important;
}
.accordian-sec .accordion-item {
  border: 0px;
}
.accordian-sec #accordionExample {
  width: 50%;
}
.accordian-sec #accordionExample button {
  padding: 0px;
  border: 0px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  background: transparent;
  border: 0px !important;
  box-shadow: none;
  color: var(--theme-gray);
}
.accordian-sec .ref-card {
  border: 1px solid #EF59C4;
  border-radius: 10px;
  display: flex;
  padding: 10px;
  font-size: var(--size-14);
  margin-top: 15px;
  position: relative;
  align-items: center;
}
.accordian-sec .ref-card a {
  color: var(--theme-gray);
  font-weight: 600;
}
.accordian-sec .ref-card a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.accordian-sec .ref-card .number {
  background: #fddfeb;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--theme-pink);
}

.offcanvas-backdrop.show {
  opacity: 1;
  position: static;
}

.offcanvas.offcanvas-end {
  width: 330px;
  padding: 100px 15px 15px 15px;
  z-index: 0;
  background: #FEF2FA;
  border-left: 2px solid #fff;
  overflow-y: scroll;
}
.offcanvas.offcanvas-end .btn-close {
  background: none;
  padding: 0px;
  width: 20px;
  height: 20px;
}
.offcanvas.offcanvas-end .offcanvas-header {
  align-items: center;
  border-bottom: 1px solid var(--theme-pink);
  padding: 15px 0px;
  font-weight: 600;
}
.offcanvas.offcanvas-end .offcanvas-body {
  direction: rtl;
  text-align: left;
  margin-left: -15px;
}
.offcanvas.offcanvas-end .offcanvas-body h3 {
  font-size: 16px;
  color: var(--theme-pink);
  margin-bottom: 15px;
}

.scrollbar, body {
  --sb-track-color: #E6F1F9;
  --sb-thumb-color: #ffffff;
  --sb-size: 14px;
  border-radius: var(--radius-10);
}

.scrollbar::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: var(--sb-size);
}

.scrollbar::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.scrollbar::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  border: 2px solid #EF59C4;
}

@supports not selector(::-webkit-scrollbar) {
  .scrollbar, body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.myaccount-flex {
  padding-top: 135px;
  animation: cardtop 0.5s ease 0s 1 normal none;
}
@keyframes cardtop {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}

.com-flex h2 {
  margin-bottom: 20px;
}

.main-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-15);
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.06);
  color: var(--theme-gray);
  margin-bottom: 80px;
  height: auto;
}
.main-card .tab-flex {
  min-height: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-card #pills-tab {
  border-bottom: 1px solid var(--theme-pink);
  position: relative;
  margin-bottom: 30px !important;
}
.main-card #pills-tab button {
  color: var(--theme-gray);
}
.main-card #pills-tab .active {
  background: transparent;
  font-weight: 700;
  border-bottom: 3px solid var(--theme-purple);
  border-radius: 0px;
}
.main-card #pills-tab .account-settings-tab {
  position: absolute;
  right: 0;
}

.tab-cards .col-12 {
  margin-bottom: 30px;
}

.pending-booking-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #F1F4F8;
  border-radius: var(--radius-10);
  align-items: center;
  margin-bottom: 20px;
}
.pending-booking-card .img-part {
  width: 18%;
  flex: 0 0 auto;
  margin-right: 15px;
}
.pending-booking-card .text-part {
  padding: 15px 15px 15px 0px;
  display: flex;
  justify-content: space-between;
  width: 80%;
  align-items: center;
  color: var(--theme-gray);
}
.pending-booking-card .text-part .head-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.pending-booking-card .text-part .head-flex h4 {
  font-size: var(--size-20);
  font-weight: 700;
}
.pending-booking-card .text-part .time-date {
  margin: 12px 0px;
  display: block;
  font-size: var(--size-14);
}
.pending-booking-card .text-part .status {
  font-size: var(--size-14);
}
.pending-booking-card .text-part .cancel-edit-buttons a {
  color: var(--theme-pink);
  font-weight: 700;
  text-decoration: underline;
  margin-right: 10px;
}
.pending-booking-card .text-part .action-part {
  display: flex;
  align-items: center;
}
.pending-booking-card .text-part .action-part .percentage {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-pink);
  font-weight: 600;
  border: 2px solid var(--theme-pink);
  margin-left: 20px;
}
.pending-booking-card:nth-last-of-type(1) {
  margin-bottom: 0px;
}

.incomplete-btn {
  background: rgb(240, 89, 196);
  background: linear-gradient(273deg, rgb(240, 89, 196) 35%, rgb(183, 75, 220) 100%);
  padding: 10px 20px;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.assistance-btn {
  padding: 10px 25px;
  border: 1px solid var(--theme-pink) !important;
  color: var(--theme-pink) !important;
}
.assistance-btn img {
  width: 15px !important;
  height: 15px !important;
}

.btn-save {
  background: rgb(240, 89, 196);
  background: linear-gradient(273deg, rgb(240, 89, 196) 35%, rgb(184, 74, 219) 100%);
  color: var(--white) !important;
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.question-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.question-sec .question-icon-part {
  display: flex;
  align-items: center;
}
.question-sec .question-icon-part img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
}
.question-sec .text-part h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

input {
  background-color: #F1F4F8 !important;
  padding: 10px !important;
}

.has-selected {
  background-image: url(../images/right-tik.svg);
  background-position: center right;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position-x: 96%;
  padding-right: 40px !important;
  border-color: var(--theme-purple) !important;
}

label {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--theme-gray);
}

form .col-12 {
  margin-bottom: 20px;
}
form .col-12 .dropdown .btn {
  background-color: #F1F4F8 !important;
  padding: 10px !important;
  color: gray;
  width: 100%;
  text-align: left;
}

.appointment-flex .head-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.appointment-flex .head-flex h2 {
  margin-bottom: 0px;
  color: var(--black);
}
.appointment-flex .main-card {
  padding: 30px;
}

.appoinment-select-btn-sec {
  height: 160px;
  overflow-y: scroll;
  margin-top: 15px;
  padding-right: 15px;
  border-radius: 0px;
}
.appoinment-select-btn-sec button {
  width: 100%;
  border: 1px solid var(--theme-pink) !important;
  margin-bottom: 15px;
  height: 40px;
}
.appoinment-select-btn-sec .active {
  border-color: var(--theme-purple) !important;
  color: var(--theme-purple) !important;
  position: relative;
}
.appoinment-select-btn-sec .active::after {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  background: url("../images/right-tik.svg");
  right: 15px;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn-right-icon {
  position: relative;
}
.btn-right-icon img {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.form-select, .form-control {
  padding: 10px 15px;
}

.form-check label {
  padding-left: 10px;
}
.form-check .form-check-input:checked {
  position: relative;
  border: 1px solid var(--theme-pink);
  box-shadow: none !important;
  background-color: transparent !important;
}
.form-check .form-check-input:checked::after {
  width: 25px;
  height: 26px;
  content: "";
  position: absolute;
  background: url("../images/right-tik.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: -3px;
  left: 5px;
}

.calendar-icon-flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.calendar-icon-flex h3 {
  font-size: 22px;
}
.calendar-icon-flex img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.form-select {
  background-color: #F1F4F8;
  background-image: url("../images/dropdown-icon.svg");
}

.location {
  margin: 15px 0px;
}
.location a {
  background: #fef2fa;
  padding: 10px 15px;
  display: block;
  border-radius: var(--radius-5);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-pink) !important;
}

.drop-btn button {
  width: 100%;
  text-align: left;
  background: #F1F4F8 !important;
  border-color: #F1F4F8 !important;
  color: var(-black) !important;
  padding: 10px;
  position: relative;
}
.drop-btn button::after {
  background-image: url(../images/dropdown-icon.svg);
  width: 16px;
  height: 16px;
  position: absolute;
  content: "";
  top: 5px;
  bottom: 0;
  margin: auto;
  display: block;
  right: 12px;
  background-repeat: no-repeat;
  background-size: contain;
}

.appointment-top {
  margin-bottom: 25px;
}

.inter-sec h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.select-appointment #appointment-select-btn {
  margin-top: 15px;
}
.select-appointment .head-flex {
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  gap: 6px;
  position: relative;
}
.select-appointment .head-flex .selected-date {
  color: var(--theme-purple) !important;
  font-size: var(--size-16) !important;
  font-weight: bold;
  position: absolute;
  right: 0;
}
.select-appointment .head-flex span, .select-appointment .head-flex a {
  font-size: var(--size-12);
  color: var(--theme-gray);
}
.select-appointment h3 {
  font-size: 24px;
  font-weight: 700;
}

.endicator {
  color: var(--theme-gray);
  margin-top: 10px;
}

.confirm-info {
  background: #fef2fa;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  position: relative;
}
.confirm-info .view-booking {
  position: absolute;
  bottom: 25px;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
}
.confirm-info .view-booking a {
  justify-content: center;
}

.calendar-icon-flex-small {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--theme-pink);
  margin-bottom: 20px;
}
.calendar-icon-flex-small img {
  width: 33px;
  height: 33px;
  margin-right: 15px;
}
.calendar-icon-flex-small h3 {
  font-size: 20px;
}

.booked-time-info .location-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--theme-pink);
  margin-bottom: 15px;
}
.booked-time-info .location-flex img {
  margin-right: 10px;
}
.booked-time-info span {
  font-size: var(--size-24);
  display: block;
  font-weight: 700;
}
.booked-time-info span:nth-last-of-type(1) {
  color: var(--theme-pink);
}

.head-icon-flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.head-icon-flex img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.head-icon-flex h3 {
  font-size: var(--size-24);
  font-weight: 600;
}

.bottom-part {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}
.bottom-part a {
  padding: 13px 20px;
  display: block;
  border: 1px solid var(--theme-pink);
  border-radius: 5px;
  margin-top: 15px;
  text-align: center;
  color: var(--theme-pink);
}

.step-sec {
  margin: 60px 0px;
  position: relative;
}
.step-sec .step-completed {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 0;
  bottom: 28px;
  color: var(--theme-pink);
}
.step-sec ul {
  padding: 0px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 90%;
}
.step-sec ul li {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 50%;
  text-align: center;
  position: relative;
}
.step-sec ul li span {
  padding-top: 20px;
  display: block;
}
.step-sec ul li img {
  width: 45px;
  height: 45px;
  margin: 0px auto 15px auto;
}
.step-sec ul li::after {
  border-bottom: 2px solid #fcdef3;
  width: 100%;
  position: absolute;
  content: "";
  bottom: 38px;
}
.step-sec ul .active::before {
  width: 2px;
  height: 16px;
  position: absolute;
  right: 0;
  content: "";
  background: #13D002 !important;
  bottom: 31px;
}
.step-sec ul .active::after {
  border-color: #13D002 !important;
}

.btn-gradient-bg {
  background: rgb(240, 89, 196) !important;
  background: linear-gradient(276deg, rgb(240, 89, 196) 0%, rgb(184, 74, 219) 100%) !important;
  justify-content: center !important;
  color: var(--white) !important;
}

.login .btn-part {
  display: flex;
  gap: 14px;
  margin: -12px 0px 20px 0px;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .login .btn-part {
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center align buttons */
    width: 100%; /* Ensure full width */
    float: none; /* Remove float on small screens */
  }
  .login .btn-part a {
    width: 80%; /* Adjust button width for better mobile fit */
    text-align: center;
    max-width: 300px;
        min-width: 130px;
  }
}
.login .btn-part .btn-save {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  font-size: 14px;
  max-width: 300px;
  min-width: 130px;
}
.login h2 {
  text-align: center;
  margin: 0px 0px 20px 0px;
  font-size: 24px;
}
.login span a {
  color: #454545 !important;
  float: right;
  margin-bottom: 10px;
}
.login .sign-social {
  text-align: center;
}
.login .sign-social .logn-with {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0px 0px 0px;
}
.login .sign-social .logn-with a {
  background: #000;
  width: 36px !important;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .sign-social .logn-with i {
  color: #fff !important;
  font-size: 14px;
}
.login .sign-social .logn-with a:nth-child(1) {
  background: #1877F2 !important;
}
.login .sign-social .logn-with a:nth-child(2) {
  background: #1DA1F2 !important;
}
.login .sign-social .logn-with a:nth-child(3) {
  background: #CD5C5C !important;
}

#Ancestry-part {
  margin-top: 30px;
}
#Ancestry-part .row {
  align-items: start !important;
  justify-content: center;
}
#Ancestry-part h2 {
  margin-bottom: 16px;
  width: 91%;
}

#choose-midwife #selec-midwife {
  width: 80%;
  margin: 130px auto;
}
#choose-midwife h2 {
  margin-bottom: 16px;
}
#choose-midwife .btn.btn-save.float-end {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  margin-top: 10px;
}
#choose-midwife .midwife-part {
  position: relative;
  margin: 10px 0px;
  box-shadow: 0px 0px 20px 15px rgba(169, 165, 165, 0.13) !important;
  
}

#choose-midwife .midwife-part .form-check {
  position: absolute;
  right: 20px;
  top: 15px;
}
#choose-midwife .midwife-part:hover {
  border: 1px solid var(--theme-pink) !important;
}
#choose-midwife .midwife-part .img-part {
  width: 240px !important;
  height: 240px !important;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: 25px;
  display: flex;
  align-items: center;  /* vertical centering */
  justify-content: center;  /* horizontal centering */
  flex: 0 0 auto;
    
}
#choose-midwife .midwife-part h3 {
  font-size: var(--size-18);
  font-weight: 700 !important;
  margin-bottom: 3px;
  display: flex;
  align-items: center;  /* vertical centering */
  justify-content: center;  /* horizontal centering */
}
#choose-midwife .midwife-part span {
  color: var(--theme-pink);
}
#choose-midwife .midwife-part h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-gray);
  padding: 6px 20px 6px 0px;
}
#choose-midwife .midwife-part .content-part {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.selected-midwife {
  background-color: #ffffff;
  border: 1px solid var(--theme-pink) !important;
}

#midwife-step {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  float: left;
  margin: auto;
}

.animation-none {
  transform: none !important;
  animation: none !important;
}/*# sourceMappingURL=main.css.map */
.bot-outgoing-msg {
  max-width: 70%; /* Limit the width of the chat box */
  text-align: left;
 
  background:#D1E5F4 ;/*  //#E6F1F9;Blue background */
  padding: 15px;
  margin-bottom:15px;
  margin-top:15px;
  border-radius: 20px; /* Rounded border */
  box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.1294117647);
  color: #000; /* White text color */
  animation: cardup 1s ease 0s 1 normal none; /* Animation to make it appear */
  position: relative; /* Positioning for the pseudo-element */
   margin-left: auto;
}


.bot-outgoing-msg .text-part h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.5;
}