* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html{
  height: 100%;
}

.loader{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #feeae3;
  height: 100vh;
}

.loader img{
  width: 200px;
}

@font-face {
  font-family: 'BrandonText';
  src: url('../fonts/HVD-Fonts-BrandonText-Regular.otf') format('opentype'),
    url('../fonts/HVD-Fonts-BrandonText-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BrandonText';
  src: url('../fonts/HVD-Fonts-BrandonText-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'BrandonText';
  src: url('../fonts/HVD-Fonts-BrandonText-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'OrganettoBold';
  src: url('../fonts/Fontspring-DEMO-organetto-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* body {
  font-family: 'Brandon Grotesque', sans-serif;
} */

body {
  font-family: 'BrandonText', sans-serif;
}

/* @font-face {
  font-family: 'Brandon Grotesque', sans-serif;
  src: url('./fonts/HvDTrial_Brandon_Grotesque_regular-BF64a625c9311e1.otf') format('otf'),
} */



/* .phone-input {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  flex: 1; 
} */

/* .country-code {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
}

.flag-icon {
  width: 20px;
  height: 15px;
}

.phone-number {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding-left: 10px;
}

button {
  min-width: 120px;
  height: 45px;
  border-radius: 8px;
  background: #ff7342;
  color: white;
  border: none;
  cursor: pointer;
} */


p.text-danger.er {
  font-size: 14px;
}


#floatingSelectGrid {
  background-color: #EFF1F999;
  /* Light blue background */
  color: #000;
  /* Text color */
  border: 0px solid #ccc;
  /* Optional border styling */
  /* padding: 8px;  */
  box-shadow: none;
  border-radius: 4px;
  /* Optional rounded corners */
}

:root {
  --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  --hover-color: linear-gradient(90deg, rgb(246 101 109) 0%, rgb(251 99 107) 51%, rgb(249 98 156) 100%);
}

.main-bg {
  background-color: #feeae3;
      padding-top: 65px;
}

.step-display{
  text-align: start;
  list-style: none;
}

.geo-alert{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px;
  height: 100vh;
}

.geo-alert h1{
  font-size: 46px;
  font-weight: 600;
  color: #421F3F;
}

.geo-alert p{
      font-size: 20px;
}

.navbar-collapse-flex {
  justify-content: space-between;
}

input.otp-box {
  width: 50px !important;
  height: 50px;
  text-align: center !important;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  font-size: 18px;
  outline: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* General styles for the navigation links */
.nav-link {
  color: #333;
  /* Default text color */
  text-decoration: none;
  padding: 0.5rem 1rem;
  /* Spacing around the links */
  position: relative;
}

/* Style for the active navigation link */
.nav-link.active {
  background: none !important;
  color: #FF7342 !important;
  border: none !important;
  font-weight: 700;
  /* color: #007bff; */
  /* Active link text color */
  /* border-bottom: 2px solid #007bff; */
  /* Bottom border for active link */
  font-weight: bold;
  /* Optional: Make the active link bold */
}

/* Add hover effect for other links */
.nav-link:hover {
  color: #0056b3;
  /* Change color on hover */
  text-decoration: none;
  /* Remove underline */
}

/* Optional: For smooth transitions */
.nav-link {
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

header {
  background-color: white;
  border-radius: 0 0 27px 27px;
  position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999999;
}

header nav .demo {
  position: relative;
  background: var(--main-color);
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  border-radius: 25px;
  box-shadow: #ff7f7f69 0px 9px 41px;
  transition: .3s ease;
  text-decoration: none;
}

header nav .demo:hover {
  background: var(--hover-color);
}

header .nav-link {
  position: relative;
  display: block;
  padding: 16px 0;
  margin: 0 12px;
  line-height: 16px;
  transition: color 0.1s, background-color 0.1s, padding 0.2s ease-in;
}

/* header .nav-link::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #FF7F8F;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: color 0.1s, transform 0.2s ease-out;
} */

header .nav-link:active::before {
  background-color: #000;
}

header .nav-link:hover::before,
a:focus::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


 .comment-pin-box {
       position: relative;
    background-color: #421F3F;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-left: 0;
    max-width: 400px;
    color: white;
    }

    .comment-pin-box::before {
          content: "";
    position: absolute;
    left: -11px;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 12px solid #421F3F;
    }

    .comment-pin-box::after {
        content: "";
    position: absolute;
    left: -13px;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 13px solid #ddd;
    z-index: -1;
    }

   .comment-pin-box .comment-text {
    font-size: 13px;
    color: white;
    }

.start-content h1 {
  /* font-family: HvDTrial Brandon Text; */
  font-size: 58px;
  font-weight: 700;
  line-height: 51px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #303030;
}

.start-content p {
  /* font-family: HvDTrial Brandon Text; */
  font-size: 32px;
  font-weight: 400;
  line-height: 44.88px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: 665px;
  margin-left: auto;
  margin-right: auto;

}

section {
  padding-top: 30px;
}

.start .location {
  background: var(--main-color);
  border: none;
  border-radius: 30px;
  width: 287px;
  height: 53px;
  color: #FFFFFF;
  /* font-family: Brandon Text; */
  font-size: 20.12px;
  font-weight: 600;
  line-height: 39.53px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.start form input {
  border: none;
  /* padding: 10px 12px; */
  border-radius: 30px;
  width: 375px;
  height: 53px;
  /* font-family: Brandon Text; */
  font-size: 20.12px;
  font-weight: 390;
  line-height: 27.67px;
  letter-spacing: -0.2263636440038681px;
  text-align: left;
  /* text-underline-position: from-font; */
  /* text-decoration-skip-ink: none; */
  color: #3D3D3D;
  padding: 0px 47px;
}

.nav-pills-tab .nav-pills {
  justify-content: center !important;
}

.nav-pills-tab .nav-pills .nav-item {
  display: flex;
  align-items: center;
}


.border-radius-home {
  border: 1px solid #83838340;
  border-radius: 15px;
}

.bi-search-position {

  position: absolute;
  top: 10px;
  left: 21px;
  color: #FF7F9E;
  font-size: 21px;


}

.pay-now-flex {
  display: flex;
  gap: 10px;
}

.start .home-img {
  /* width: 43%; */
  margin-top: 30px;
}

.form-check-input:checked {
  background-color: rgba(255, 127, 176, 1);
  color: rgba(255, 127, 176, 1);
  border: none;
  box-shadow: none;
  --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  /* --hover-color: linear-gradient(90deg, rgb(246 101 109) 0%, rgb(251 99 107) 51%, rgb(249 98 156) 100%); */
}

.profile-main-img{
  max-height: 476px;
      background: #fbfbfb;
}

.profile-main-img img{
    max-height: 476px;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.people-single.py-4.mt-2 {
    padding-top: 80px !important;
}

.start .home-img-sec {
  /* width: 44%; */
  display: block;
  margin: auto;
  margin-top: 28px;
  border-radius: 17px;
}

.home-works .home-work-card {
  border: 1px solid #D6D6D6;
  padding: 10px;
  border-radius: 15px;
  margin-top: 15px;
}

.home-works-text h2 {
  /* font-family: Brandon Text; */
  font-size: 68px;
  font-weight: 600;
  line-height: 64px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0F051D;
}

.work-content h3 {
  /* font-family: Brandon Text; */
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0D0D0D;

}

.work-content p {
  /* font-family: Brandon Text; */
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;

}

.home-benefits-head p {
  /* font-family: Brandon Text; */
  font-size: 38px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.home-benefits-head h2 {
  /* font-family: Brandon Text; */
  font-size: 68px;
  font-weight: 600;
  line-height: 64px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0F051D;
}

.home-benefit h3 i {
  color: #FF7FAF;
}

.home-benefit h3 {
  /* font-family: Brandon Text; */
  font-size: 24px;
  font-weight: 390;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0D0D0D;
}

.home-benefit ul li {
  /* font-family: Brandon Text; */
  font-size: 16px;
  font-weight: 390;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #303030;
}

.connection-div {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    /* object-fit: cover; */
    background: black;
}

.connection-div img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.home-benefit .demo {
  background: var(--main-color);
  border: none;
  padding: 4px 40px;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 25px;
  /* font-family: Brandon Text; */
  font-size: 21.45px;
  font-weight: 600;
  line-height: 42.14px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.home-benefit .call {
  background: white;
  border: 1px solid #D6D6D6;
  padding: 8px 20px;
  border-radius: 25px;
  /* font-family: Brandon Text; */
  font-size: 21.45px;
  font-weight: 390;
  line-height: 32.18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0D0D0D;
}

.home-form {
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  /* font-family: Arial, sans-serif; */
  max-width: 1150px;
  border: 1px solid #DDE2E5;
}

.home-form h2 {
  /* font-family: HvDTrial Brandon Text; */
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #303030;
  margin-bottom: 0.5rem;
}

.home-form p {
  /* font-family: HvDTrial Brandon Text; */
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #303030;
}

.home-form .form-control {
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  padding: 0.8rem;
  background: #EFF1F999;
}

.home-form form select {
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  padding: 0.8rem;
  /* background: #EFF1F999; */
  /* background-image:url(./assets/images/icon-drop.svg) */
}

.home-form .form-control:focus {
  box-shadow: none;
  border-color: #f06292;
}

.home-form .phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.home-form .phone-input-group .form-select,
.home-form .phone-input-group .form-control {
  /* flex: 1; */
  width: max-content;
}

.home-form .register-btn {
  width: 100%;
  background: var(--main-color);
  border: none;
  padding: 0.7rem;
  border-radius: 25px;
  cursor: pointer;
  /* font-family: Brandon Text; */
  font-size: 24px;
  font-weight: 600;
  line-height: 33.36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffff;
}

.home-form .register-btn:hover {
  background: linear-gradient(45deg, #f8a5c2, #f06292);
}

.footer-container {
  background-color: #feeae3;
  color: #000;
  border-top: 1px solid #ddd;
}

.footer-container .fw-bold {
  font-weight: bold;
}

.join-text {
  font-family: 'BrandonTextRegular' sans-serif;
  font-weight: 1000;
  color: #421F3F;
  font-size: 34px;


}

.button-connect {
  background-image: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  /* --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%); */
  /* --hover-color: linear-gradient(90deg, rgb(246 101 109) 0%, rgb(251 99 107) 51%, rgb(249 98 156) 100%); */
  margin: auto;
  padding: 14px;
  border-radius: 26px;
}

a.arrow-left-a.arrow-inner {
  text-decoration: none;
  color: #303030;
}

.footer-container a {
  color: #000;
  transition: color 0.3s;
}

label.form-check-label {
  color: #170F49;
}

.footer-container a:hover {
  color: #007bff;
}

.footer-container i {
  font-size: 1.2rem;
}

.about-care .home-work-card {
  border: none;
}

.about-value .home-work-card {
  border-bottom: 1px solid #D6D6D6;
  padding-bottom: 31px;
  padding-top: 31px;
}

.about-we .first {
  position: relative;
}

.about-we .img-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 90%;
  margin: auto;
  background: #F8F8F8;
  padding: 10px 30px;
  right: 0;
  border-radius: 10px;
}


.about-we .img-content p {
  margin: 0;
}

/* Parent class for the pricing section */
.pricing-section {
  /* background: linear-gradient(135deg, #fce4ec, #e0f7fa); */
  color: #333;
}

.pricing-section .section-title {
  color: #FF7F88;
  font-weight: bold;
  /* font-family: Brandon Text; */
  font-weight: 450;
  font-size: 22px;
  line-height: 20px;
  letter-spacing: 10%;

}

.pricing-section .section-subtitle {
  font-size: 1.75rem;
  color: #000;
  line-height: 1.5;
  max-width: 600px;
  margin: auto;
}

.pricing-section .highlight-text {
  color: #ff4081;
}

.pricing-section .section-description {
  color: #000 !important;
  max-width: 500px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pricing-section .pricing-card {
  border: none;
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  /* max-width: 368px; */
  margin: auto;
  border-radius: 20px;
}

.pricing-section .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.pricing-section .popular-card {
  background: #feeae3;
  color: #fff;
}

.pricing-section .popular-card .get-started-btn {
  /* background: #fff; */
  --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  --hover-color: linear-gradient(90deg, rgb(246 101 109) 0%, rgb(251 99 107) 51%, rgb(249 98 156) 100%);
  color: #fff;
  font-weight: bold;
  padding: 13px 14px;
  border-radius: 32px;
}

.pricing-card.active {
  /* background-color: #feeae3 !important; */
  /* Light gray background */
  border: 0px solid #007bff;
  /* Optional: Add a border to highlight */
  background-color: #feeae3 !important;
  --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  /* --hover-color: linear-gradient(90deg, rgb(246 101 109) 0%, rgb(251 99 107) 51%, rgb(249 98 156) 100%); */

}

.pricing-card.popular-card {
  background-color: #fff !important;
}

.pricing-section .popular-badge {
  /* background-color: #feeae3; */
  width: 100%;
  background-image: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  /* background: #ffffff5e; */
  /* background-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%); */
  /* --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%); */
  color: white;
  font-size: 0.85rem;
  padding: 14px 18px;
  border-radius: 7px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.join-the-table {
    font-family: 'OrganettoBold', sans-serif !important;

  /* font-family: 'BrandonTextRegular' sans-serif; */
  font-weight: 1000;
  color: #421F3F;
  font-size: 42px;
}

.pricing-section .price {
  font-size: 1.75rem;
  color: #170F49;
}

.pricing-section .price-period {
  font-size: 1rem;
  color: #6F6C90;
}

.pricing-section .included-title {
  font-weight: bold;
  margin-top: 15px;
  color: #170F49;
}

.included-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #170F49;
}

.pricing-section .card-body {
  text-align: start;
}

.popular-card .price {
  color: #170F49;
}

.popular-card .price-period {
  color: #170F49;
}

.included-list li {
  color: #170F49;
}

.popular-card .included-title {
  color: #170F49;
}



.included-list li i {
  margin-right: 8px;
  color: #FF7FAF;
}

.pricing-section .btn-primary {
  background: var(--main-color);
  border: none;
  font-weight: bold;
  padding: 13px 14px;
  border-radius: 32px;
}

.included-list li i {
  color: #FF7FAF;
}

.pay-btn{
  background: var(--main-color);
  border: none;
  font-weight: bold;
  padding: 13px 14px;
  border-radius: 32px;
  width: 100%;
  color: white;
}

.pricing-section .btn-primary:hover {
  background: var(--hover-color);
}

.pricing-section .btn-light:hover {
  background: #f8f9fa;
}

.checkout-container {
  /* background: linear-gradient(90deg, #ffe4e1, #f5f7ff); */
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.checkout-container .progress-bar-container {
  max-width: 500px;
}

.checkout-container .step {
  width: 40px;
  height: 40px;
  /* background-color: #ddd; */
  border: 1px solid #979797;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
}

.checkout-container .step.active {
  background-color: black;
  color: #fff;
}

.checkout-container .divider {
  flex: 1;
  height: 1px;
  background-color: #979797;
  align-self: center;
}

.form-row{
  display: block !important;
}

.form-row .col-md-4{
  width: 100%  !important;
}

.form-row .react-tel-input input{
  width: 100% !important;
  border: none !important;
}

.css-13cymwt-control{
  border: none !important;
}

.checkout-container .checkout-card {
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
}

.plan-box{
  border-radius: 7px;
}

.plan-card{
  background: #feeae3 !important;
}

.plan-header{
  background-color: #feeae3;
  background-image: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  /* background: #ffffff5e; */
  /* --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%); */
  color: white;
  font-size: 0.85rem;
  padding: 14px 18px;
  border-radius: 7px;
  font-weight: 500;
  display: inline-block;
  /* margin-bottom: 10px; */
  width: 100%;
}

.included{
  margin-top: 15px;
    color: #170F49;
    font-size: 19px;
    font-weight: 700;
}

.checkout-container .decrement,
.checkout-container .increment {
  background-color: #FF7342;
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  /* font-size: 1.5rem; */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.checkout-container .qr-count {
  font-size: 13px;
  font-weight: 400;
  color: #7B7583;
  border: 1px solid #FF7342;
  padding: 8px;
  border-radius: 7px;
}

.checkout-container .description {
  font-size: 0.9rem;
  color: #666;
  text-align: start !important;
  margin: 0
}

.checkout-container .order-summary h5 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.checkout-container .order-summary ul {
  padding-left: 1rem;
  color: #575757;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  text-align: end;
}

.checkout-container .total-amount {
  font-size: 1.1rem;
}


.checkout-container .pay-now {
  background: var(--main-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
  transition: .3s;
}

.checkout-container .pay-now:hover {
  background: var(--hover-color);
}

.checkout-container .checkout-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.login .main-bg {
  max-width: 625px;
  margin: auto;
  padding: 10px 64px;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto 2%;
  transition: .3s;
}

.login .main-bg:hover {
  transform: translateY(-5px);
}


.login .main-bg i {
  text-align: start !important;
  display: flex;
  justify-content: start !important;
  align-items: start !important;
  width: 100%;
  position: relative;
  left: -22px;
  font-size: 30px;
}

.login .fun-btn {
  background: linear-gradient(45deg, rgba(159, 175, 255, 1) 0%, rgba(159, 175, 255, 1) 27%, rgba(192, 203, 255, 1) 100%);
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.login .login-btn {
  background-image: var(--main-color);
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 15px;
  box-shadow: #ff7f7f69 0px 9px 41px;
  transition: background-image 0.3s ease;
}

.login .login-btn:hover {
  background-image: var(--hover-color);
}

.profile .circle {
  background: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed #FF7342;

}

.profile .circle i {
  width: auto;
  position: static;
  color: #FF7342;
}

.profile ul li {
  list-style: none;
  background: white;
  padding: 3px 12px;
  border-radius: 23px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  width: max-content !important;
  align-items: center;
}

.active-profile-ui img {
  width: 21px;
  height: 13px;
}

.profile ul {
  border-top: 1px solid #ffffff7d;
  padding-top: 20px !important;
}

.profile label {
  display: block;
  margin-top: 13px;
}

.profile input,
.profile textarea {
  display: block;
  width: 100%;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  margin-top: 7px;
}

.details .select {
  color: #5D5D5D;
  font-weight: 500;
  text-align: start !important;
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding-bottom: 20px;
}

.choice {
  width: 100%;
}

.choice ul {
  display: flex;
  gap: 10px;
  padding-inline-start: 0;
  background: #ffffffa8;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.choice ul li {
  list-style: none;

}

.choice ul li.active button {
  color: #FF7342;
}

.choice ul li button {
  color: #3B3B3B;
  background: white;
  padding: 4px 10px;
  border: 1px solid #EEEEEE;
  border-radius: 23px;
}

.choice h6 {
  color: #5D5D5D;
  margin-top: 15px;
}



/* Tabs Styling */
.connections-container .nav-tabs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.connections-container .nav-tabs .nav-link {
  color: #333;
  padding: 10px 15px;
  font-weight: bold;
  border: none;
}

.connections-container .nav-tabs .nav-link.active {
  color: #ff7043;
  /* border-bottom: 3px solid #ff7043; */
  background: transparent;
}

.connections-container .nav-tabs .nav-link:not(.active) {
  color: #999;
}

.people-card .interests {
  color: #5D5D5D;
  font-size: 13px;
}

.people-card .gender span {
  font-weight: 500;
  font-size: 14px;
}

.people-card .status {
  color: #27AE60;
  font-size: 13px;
  font-style: italic;
}

.people-card .approval {
  color: #B0B0B0;
  font-size: 13px;
  font-style: italic;
}

.people-card .btn-message {
  background: var(--main-color);
  color: white;
  border-radius: 25px;
  margin-top: 3px;
  font-weight: 500;
  font-size: 14px;
}

.people-card .btn-view-profile {
  background: #F6E5E7;
  color: #303030;
  border-radius: 25px;
  margin-top: 3px;
  border: 1px solid #0000001A;
  font-weight: 500;
  font-size: 14px;
}

.people-card .btn-rqst-sent {
  background: #B0B0B0;
  color: white;
  border-radius: 25px;
  margin-top: 3px;
  border: 1px solid #0000001A;
  font-weight: 500;
  font-size: 14px;
}

.people-card {
  border-bottom: 2px solid #D7D7D7;
  padding-bottom: 23px;
  padding-top: 23px;
}

/* .phone-input-container {

} */

img.uploaded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
}

.plan-modal-content{
  max-width: 500px;
  max-height: 800px;
  overflow-y: scroll;
  background: #feeae3 !important;
  padding: 20px;
  border-radius: 17px;
  width: 100%;
}

.plan-modal-close{
  background: transparent;
  border: none;
  display: flex
;
  align-items: end;
  justify-content: end;
  width: 100%;
  font-size: 26px;
}

.plan-modal-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex
;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
}

.send-otp {
    background-image: var(--main-color);
    border: none;
    padding: 13px 11px;
    width: 122px;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px !important;
    margin-bottom: 15px;
    box-shadow: #ff7f7f69 0px 9px 41px;
    transition: background-image 0.3s ease;
}

.phone-input-container {
  /* max-width: 400px;  */
  margin: auto;
  text-align: center;
  margin-left: 0 !important;
  display: flex;
  align-items: center; 
  gap: 10px; 
  justify-content: space-between;
  width: 100%; 
  /* font-family: 'Arial', sans-serif; */
}

.phone-input-container p {
  text-align: left;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #EAEAEA;
  border-radius: 50px;
  padding: 13px 15px;
  background: white;
  flex:1
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.phone-input .country-code {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.phone-input .flag-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 2px;
}

.phone-input select {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.phone-input-container .phone-input .phone-number {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding-left: 5px;
  background: transparent;
}

.btn-danger-next {
  background-image: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  /* --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%); */
  /* --hover-color: linear-gradient(90deg, rgb(246 101 109) 0%, rgb(251 99 107) 51%, rgb(249 98 156) 100%); */
  margin: auto;
  padding: 14px;
  border-radius: 26px;
  width: 100%;
  border: none;
}

.fun-game-btn {
  border: none;
  background-image: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%);
  /* --main-color: linear-gradient(90deg, rgba(255, 127, 176, 1) 0%, rgba(255, 127, 134, 1) 51%, rgba(255, 127, 134, 1) 100%); */
  /* --hover-color: linear-gradient(90deg, rgb(246 101 109) 0%, rgb(251 99 107) 51%, rgb(249 98 156) 100%); */
}

.phone-input-container .otp-input {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.phone-input-container .otp-input .otp-box {
  width: 50px;
  height: 50px;
  text-align: center;
  border: none;
  border-radius: 50%;
  margin: 0 5px;
  font-size: 18px;
  outline: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-input-container .otp-input .dash {
  font-size: 18px;
  margin: 0 5px;
  color: #ccc;
}


/******** people-single paeg ui ********/

.people-single .connect-btn {
  background: linear-gradient(to right, #FF7FB7, #FF7F7F);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
     max-width: 500px;
    width: 100%;
        box-shadow: #FF7FA43D 0px 8px 24px;
}

.people-single .connect-btn:hover {
  background: linear-gradient(to right, #FF7F7F, #FF7FB7);
}

.people-single .tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.people-single .tags span {
  background: #EAECFF;
  padding: 11px 70px;
  border-radius: 20px;
  font-size: 12.21px;
  /* font-weight: 390; */
  line-height: 18.32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.profile-details-single h1 {
  font-size: 28px;
  /* font-weight: 600; */
  line-height: 36.26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
}

.profile-details-single h2 {
  font-size: 16px;
  /* font-weight: 600; */
  line-height: 22.24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
}

.profile-details-single p.gender {
  font-size: 14px;
  /* font-weight: 390; */
  line-height: 19.46px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #303030;
  margin-bottom: 0px;
}

.profile-details-single .tags-bg {
  padding: 20px;
  background-color: #F7F7F7;
}

.profile-details-single .film {
  padding: 15px;
  background-color: #F7F7F7;
}

.profile-details-single .film p {
  margin-bottom: 0px;
}

.people-single .people-single-card {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.profile-details-mt {
  margin-bottom: 1.5rem !important;
  margin-top: 1rem !important;
}

.connect-btn-mt {
  margin-top: 3rem !important;
}





/****** people-single paeg ui end ********/

/************ chat ui *********/
.chat .main-bg {
  max-width: 1057px;
  margin: auto;
  padding: 10px 64px;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto 2%;
  transition: .3s;
}

.chat .main-bg:hover {
  transform: translateY(-5px);
}


.chat .main-bg i {
  text-align: start !important;
  display: flex;
  justify-content: start !important;
  align-items: start !important;
  width: 100%;
  position: relative;
  left: -22px;
}

/* .chat-card-img {
  position: absolute;
  bottom: 30px;
  left: -94px;

} */

@media(max-width: 767px) {
  .chat-card-img {
    left: 0 !important;
    bottom: 0 !important;
  }
}

.chat-card-img h1 {
  font-size: 28.34px;
  font-weight: 600;
  line-height: 39.39px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  /* width: 234px; */

}

header .nav-link:active {
  color: red;
}

button.absolute.cross-btn.top-0.right-0.bg-red-500.text-white.text-xs.px-2.rounded-full {
  background: red;
  border-radius: 5px;
}


.input-container-al {
  display: flex;
  align-items: center;
  /* border: 1px solid #ccc; */
  gap: 5px;
  padding: 17px 10px;
  border-bottom-left-radius: 5px;
  border-radius: 0px;
  padding: 0px;
  width: 100%;
  background-color: #EFF1F999;
}

.input-container-al .country-code {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}

.input-container-al .country-flag {
  width: 20px;
  height: 15px;
}

.input-container-al .city-input {
  border: none;
  flex: 1;
  padding: 15px;
  outline: none;
  font-size: 16px;
  background: #EFF1F999;
}

.Restaurants-text p {
  /* font-family: Brandon Text; */
  font-size: 24px;
  font-weight: 390;
  line-height: 30px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #303030;
}

.Restaurants-text b {
  /* font-family: Brandon Text; */
  font-size: 24px;
  /* font-weight: 600; */
  line-height: 30px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #303030;
}

/******** chat ui ************/

.img-fluid-cafe {
  width: 65px;
}

/***********************************header ****************************/
.header-al .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-al .logo img {
  height: 40px;
}

.header-al .nav-links {
  display: flex;
  list-style: none;
  /* padding: 0; */
  margin-bottom: 0px !important;
}

.header-al .nav-links li {
  margin: 0 15px;
}

.header-al .nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  position: relative;
  padding: 5px 5px;
}

.header-al a.nav-link.active-link::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff69b4;
}

.header-al .nav-links a.active {
  color: #303030;
  /* Pink color for the active class */
}

.header-al .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff69b4;
}

.header-al .demo-btn {
  background: linear-gradient(to right, #ff7eb3, #ff69b4);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.header-al .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.header-al .menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
}



/* General styles for header */
.header-al {
  background-color: #f8f9fa;
  /* Adjust background as per design */
  /* padding: 10px 0; */
}

/* Navbar container */
.navbar {
  padding: 0;
}

/* Logo styles */
.navbar-brand-me {
  display: flex;
  align-items: center;
}

.img-fluid-cafe {
  max-width: 100%;
  height: auto;
}

/* Navbar links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a.active {
  color: #007bff;
  /* Highlight active link */
}

.join-table {
  font-family: 'BrandonTextRegular';
  font-weight: 1000;
  color: #421F3F;
  display: none;

}

/* Book demo button */
.book-demo {
  margin-left: auto;
}

.demo {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.demo:hover {
  background-color: #0056b3;
}

/* WElcome Css */
.main-verification {
  text-align: left !important;
}

.verification-otp {
  justify-content: start !important;
}

.text-left {
  text-align: left;
}

/* Profilew */
.upload-profile p {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  color: #5D5D5D;
}

.profile-form-wrapper label {
  font-weight: 500;
  font-size: 14px;
  line-height: 19.46px;
  letter-spacing: 0.11px;
  color: #303030;
}

.mt-profile-details {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #303030;
}

/* chat style */
.left-msg {
  text-align: left;
}

.right-msg .d-flex {
  justify-content: end;
}

.msg-info-name {
  background: #FF734266;
  border-radius: 40px 40px 40px 0;
  padding: 10px;
  font-weight: 390;
  font-size: 12px;
  line-height: 16.68px;
  letter-spacing: 0%;
  color: #fff;
}

.img-upload-flex {
  background-image: url(./assets/images/dating-app.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  border-radius: 30px;
}

.card-footer-none-al {
  background-color: #fff;
}

/* 
.chat-card-img h1 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22.24px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
} */

.card-footer-none-al {
  display: block !important;
}

@media(min-width: 768px) {
  .fun-game-btn {
    border-radius: 40px !important;
    padding: 10px 30px !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 16.68px;
    letter-spacing: 0.11px;
    text-align: center;
  }
}

@media(max-width: 767px) {
  .fun-game-btn {
    border-radius: 40px !important;
    padding: 6px 15px !important;
    font-weight: 600;
    font-size: 12px;
    line-height: 16.68px;
    letter-spacing: 0.11px;
    text-align: center;
  }
}

.compatibility--wrapper .compatibility-inner {
  max-width: 500px;
  margin: 1rem auto 1rem;
  text-align: center;
}

.compatibility--wrapper .list-group li {
  background-color: transparent !important;
  margin-bottom: 14px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.compatibility--wrapper .list-group li input {
  padding: 8px !important;
}

.compatibility--wrapper button {
  width: 100%;
}

.ideal-btn-bg {
  width: 100% !important;
  background-color: #FF7F88;
  padding: 5px 31px;
  border-radius: 8px;
  border: none;
  color: #fff;
}

.manage-your-cafe .large-uploads {
  max-width: 300px;
  max-height: 250px;
  min-height: 155px;
}

.manage-your-cafe .small-uploads {
  max-width: 150px;
  max-height: 150px;
  min-height: 150px;
}


.ideal-btn-bg:hover{
  background-color: #FF7F88;
}
.img-fluidmy{
  background-color: white;
  height: 80px;
  width: 100%;
  object-fit: cover;
  padding: 21px;
}

.card-body-buz{
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.main-bg-cafe {
  background: white;
  margin-top: 0 !important;
}
/* Cafe Board Css */
.cafeboard-wrapper .ideal-btn-bg {
  max-width: 100px !important;
}

.upload-edit {
  position: relative;
}

.upload-edit .position-relative {
  position: absolute !important;
  right: 20px;
  top: 20%;
  width: 100% !important;
  max-width: 300px;
  margin-right: 0 !important;
  text-align: right;
}

.card-body-buz h1 {
  font-weight: 500;
  font-size: 38px;
  line-height: 36.26px;
  letter-spacing: 0px;
  color: #303030;
  margin-bottom: 1.1rem;
  padding-top: 1.2rem;
}

.card-body-buz h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36.26px;
  letter-spacing: 0px;
}

.card-body-buz p {
  font-weight: 390;
  font-size: 20px;
  line-height: 27.8px;
  letter-spacing: 0%;
  color: #5D5D5D;
}

.cafeboard-wrapper .carousel-control-next {
  background: #a39d9d;
  max-height: 40px;
  margin: auto;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 50%;
  width: 43px;
  opacity: 1 !important;
  padding: 10px;
  right: 10px !important;
}

.cafeboard-wrapper .carousel-control-prev {
  background: #a39d9d;
  max-height: 40px;
  margin: auto;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 50%;
  width: 43px;
  opacity: 1 !important;
  padding: 10px;
  left: 10px !important;
}

/*  Current plan css */
.card-current-plan h1 {
  font-weight: 390;
  font-size: 28px;
  line-height: 38.92px;
  letter-spacing: 0%;
  color: #000;
}

.card-current-plan p {
  color: #575757;
  font-weight: 390;
  font-size: 18px;
  line-height: 25.02px;
  letter-spacing: 0%;
}

.card-current-plan .renew-Now-btn {
  margin-top: 1rem;
  border: 1px solid #dcc;
  border-radius: 40px;
  text-align: center;
  width: 100%;
}

.card-current-plan .box i {
  color: #FF7342 !important;
  padding: 10px;
}

.card-current-plan .qr-btn {
  border-color: #FF7342 !important;
  color: #7B7583 !important;
  font-family: Brandon Text;
  font-weight: 390;
  font-size: 18.44px;
  line-height: 25.81px;
  letter-spacing: 0px;
  text-align: center;
  background-color: #fff !important;
}

.card-current-plan .can-you {
  font-weight: 390;
  font-size: 16px;
  line-height: 22.24px;
  letter-spacing: 0%;
  color: #575757;
}

.card-current-plan .Total-amount h2 {
  font-weight: 390;
  font-size: 25px;
  line-height: 34.75px;
  letter-spacing: 0%;
  color: #303030;
}

/* my-transactions css */
.my-transactions-wrapper .card-header {
  background-color: #fff !important;
  font-weight: 390;
  font-size: 28px;
  line-height: 38.92px;
  letter-spacing: 0%;
  color: #000;
}

.my-transactions-wrapper h2 {
  font-weight: 600;
  font-size: 16.55px;
  line-height: 24.82px;
  letter-spacing: 0%;
  color: #191919;
}

.my-transactions-wrapper p {
  font-weight: 400;
  font-size: 12.41px;
  line-height: 16.55px;
  letter-spacing: 0%;
  color: #9F9F9F;
}

.my-transactions-wrapper img {
  width: 60px !important;
  margin-bottom: 0px;
  margin-top: 0px;
  background-color: #dddd;
  padding: 1rem;
  border-radius: 10px;
}

/* Pricing Single */

.progress-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.progress-container {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto;
}

.progress-container::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  max-width: 66%;
  margin: 0 auto;
  left: -10%;
  top: 9px;
  z-index: -1;
}

.progress-container .step {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.progress-container .circle {
  height: 20px;
  width: 20px;
  background-color: #FF7342;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.progress-container .circle-outline {
  border: 1px solid #000 !important;
  background-color: #fff !important;
  color: gray !important;

}

.progress-container p {
  font-weight: 390;
  font-size: 12px;
  line-height: 16.68px;
  letter-spacing: 0%;
  color: #000;
  margin-top: 8px;
}

.order-summary h5 {
  font-weight: 390;
  font-size: 16px;
  line-height: 22.24px;
  color: #000;
  letter-spacing: 0%;
}

.order-summary ul li {
  font-weight: 300;
  font-size: 11.52px;
  line-height: 17.28px;
  letter-spacing: 0%;
  text-align: right;
  color: #575757;
  margin-bottom: 10px;
}

.react-tel-input .form-control {
width: 100% !important;
}

/*  manage-your-cafe css */

/* .manage-your-cafe {
  margin: 1rem !important;
} */

.manage-your-cafe .upload {
  max-width: 800px;
  margin: 0 auto;
}

.manage-your-cafe h1 {
  font-weight: 600;
  font-size: 28px;
  line-height: 38.92px;
  letter-spacing: 0px;
  color: #303030;
  text-align: center;
}

.manage-your-cafe .upload-style {
  width: 100%;
  height: 337px;
  border-radius: 10px;
  border: 2px dashed #D7D7D7;
  margin: 0 auto;
  position: relative;
}

.manage-your-cafe .upload-style img{
  object-fit: cover;
  width: 100%;
}

.manage-your-cafe .large-upload {
  max-width: 300px;
  max-height: 250px;
  min-height:155px;
}

.manage-your-cafe .small-uploads {
  max-width: inherit;
  max-height: 150px;
  min-height: 150px;
  margin-top: 10px;
}

.cross-btn{
  position: absolute;
  top: 0 !important;
  right: 0 !important;
  background: transparent;
  border: 0;
}

.upload-container{
  padding: 14px;
}

.manage-your-cafe .upload-icon {
  border: 1px solid #000;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.manage-your-cafe .phone-input input {
  border: none !important;
}

.manage-your-cafe .upload-style label {
  position: absolute;
  bottom: 0;
  display: flex
;
  justify-content: center;
  align-items: center;
  width: max-content;
  font-size: 1.5rem;
  top: 0;
  left: 0;
  margin: auto;
  right: 0;
}

.manage-your-cafe .upload-style label input{
  width: 100%;
  position: absolute;
  opacity: 0;
}

.manage-your-cafe .phone-input input:focus {
  outline: none;
}

.manage-your-cafe .phone-input {
  margin-left: 0 !important;
}

.manage-your-cafe .add-more {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #808080;
  letter-spacing: 0%;
  border: 1px solid #D7D7D7;
  border-radius: 30px;
  width: 100%;
  padding: 10px;
}

.Cafe-information h2 {
  color: #303030;
  font-weight: 600;
  font-size: 28px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}

/* Indez page css */
.home-form-ui .container-ui {
  position: relative;
  display: flex;
  align-items: center;
}

.home-form-ui .country-list {
  background-color: #fff;
  padding: 14px !important;
  border-radius: 10px;
  position: absolute;
  /* bottom: 0; */
  z-index: 1;
  top: 50px;
  list-style-type: none !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.home-form-ui .country-list li:not(:last-child) {
  margin-bottom: 10px;
}

.home-form-ui .country-list li {
  border-bottom: 1px solid #fff;
  padding: 4px 0 4px 0;
  cursor: pointer;
}

.home-form-ui .country-list li:hover {
  border-bottom: 1px solid #ccc;
}

.home-form-ui .selected-code {
  cursor: pointer;
}

@media(max-width:480px){
  .profile-main-img img {
    max-height: 200px;
  }
}