@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --green-color: #1b9b9f;
  --dark-green-color: #1b9b9f;
  --yellow-color: #f1ca38;
  --white-color: #ffffff;
  --text-color: #282b29;
  --text-alt-color: #484949;
  --section-color: #fdfdfd;
  --box-shadow: 0px 4px 4px 0px #00000040;
  --josef-font: "Josefin Sans", sans-serif;
  --nunito-font: "Nunito", sans-serif;
  --montserrat-font: "Montserrat", sans-serif;
  --inter-font: "Inter", sans-serif;
  scrollbar-width: thin;

  /* Chatbot Css variables */
  --bg-color: #f5f5f5;
  --container-bg-color: #ffffff;
  --header-bg-color: #fdd835; /* yellow */
  --header-text-color: #000000; /* black */
  --input-bg-color: #f9f9f9;
  --button-bg-color: #ffffff; /* white button for light mode */
  --button-text-color: #000000; /* black text for light mode */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--nunito-font);
  overflow-x: hidden;
}
body.hide {
  overflow-y: hidden;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
.main-btn {
  background-color: var(--yellow-color);
  font-weight: 700;
  padding: 8px 56px;
  border-radius: 30px;
  color: var(--text-color);
  width: fit-content;
}
.main-btn.back-btn {
  background-color: var(--white-color);
  color: var(--text-color);
  border: 1px solid var(--yellow-color);
}
.back-btn:hover {
  color: var(--text-color);
}
.dedcription-btn {
  position: relative;
  display: block;
  border-radius: 30px;
  background-color: #fcfcfc;
  color: var(--dark-green-color);
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  padding: 9px 40px;
  width: fit-content;
  transition: all 0.3s;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid var(--yellow-color);
  z-index: 1;
}
.dedcription-btn .btn-icon {
  background-color: var(--yellow-color);
  width: 58px;
  height: 100%;
  float: right;
  position: absolute;
  border-radius: 30px 30px 30px 0;
  right: 0px;
  top: 0px;
  transition: all 0.3s;
}
.name-descripeion {
  position: relative;
  z-index: 9999;
}
.btn-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 45px solid #fcfcfc;
  border-right: 40px solid transparent;
  position: absolute;
  top: 0px;
  left: 0px;
}
.dedcription-btn:hover .btn-icon {
  width: 100%;
  border-radius: 30px;
}
.dedcription-btn:hover .btn-icon::after {
  display: none;
  opacity: 0.1;
}
.btn-icon img {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #fff;
  width: 15px;
  transition: transform 0.5s ease;
}
.dedcription-btn:hover {
  color: #fff !important;
}
.dedcription-btn:hover .btn-icon img {
  transform: scale(1.5);
}
.hero-section {
  padding-top: 52px;
  background-image: url('/frontend/img/transp-hero.png');
  background-position: top right;
  background-repeat: no-repeat;
}
.blue-circle {
  bottom: 0;
}
header{
  height: 80px;
}
nav {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 0 34px;
  height: 73px;
  transition: all 0.4s ease;
}
nav.fixed {
  width: 100%;
}
.navbar {
  padding: 0;
  transition: top 0.3s ease-in-out;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1030; 
  height: 78px; 
}
nav .nav-link,
.navbar-brand {
  padding: 0;
}
.navbar-brand {
  padding-bottom: 6px;
}
.page-nav li {
  margin-right: 30px;
}
.page-nav .dropdown-menu li {
  margin-right: 0px;
}
nav .log-btn {
  display: block;
  color: var(--text-color);
  border: 1px solid var(--yellow-color);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 12px 24px;
}
section {
  background-color: var(--section-color);
}
section.commitment {
  padding-bottom: 100px;
}
.nav-link {
  padding: 0 !important;
  font-size: 1.14rem;
  color: var(--green-color);
  transition: .2s linear;
}
.nav-link:hover {
  color: #F1CA38
}
.nav-link.active {
  position: relative;
  font-weight: 700;
  color: var(--green-color);
}
.nav-link.active::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--green-color);
  bottom: -3px;
  left: 0;
}
/* feature */
.features h3 {
  font-weight: 600;
  color: var(--green-color);
  font-size: 32px;
}
.feature {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  text-align: center;
  padding: 18px 24px;
  min-height: 250px;
  transition: all 0.3s ease;
}
.feature:hover {
  background-color: #f1ca38c4;
}
.feature h6 {
  font-size: 16px;
  color: var(--green-color);
  font-weight: 700;
}
.feature p {
  color: var(--text-color);
}
/* donate section */
.donates {
  background: #1b9b9f;
  background-image: url(../img/bg_pattern_banner.png);
  color: var(--text-color);
  padding-top: 54px;
  padding-bottom: 73px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.light_light {
  /* left: -200px;
  top: 130px; */
  display: none !important;
}
.donates .left_circles {
  left: 0;
  top: 0;
}
.donates .right_circles {
  right: 0;
  top: 0;
}
.left_shadow {
  /* left: -100px;
  top: 50%;
  transform: translateY(-50%); */
  display: none !important;
}
.right_shadow {
  /* right: -30px;
  top: 50%;
  transform: translateY(-50%); */
  display: none !important;
}
.donate_lamp {
  /* bottom: 40px;
  right: 20%;
  width: 100px; */
  display: none !important;
}
.donates h4 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 32px;
  color: #fff;
}
.donates p {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
}
/******************************** blog page ********************************/
.blog_section {
  background-size: cover;
  background: #1b9b9f;
  position: relative;
  background-position-y: 60px;
  height: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.blog_section:before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #1b9b9f 100%
  );
}
.blog_section h1 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.blog_card {
  background-color: var(--white-color);
  border-radius: 14px;
  box-shadow: var(--box-shadow);
  padding: 14px 13px;
  margin-bottom: 30px;
  min-height: 392px;
}
.blog_card .img-container img {
  border-radius: 14px;
  min-height: 200px;
  max-height: 200px;
  object-fit: cover;
  width: 100%;
}
.blog_card .img-container {
  margin-bottom: 20px;
}
.blog_card_text h1,
.blog_card_text h2,
.blog_card_text h3,
.blog_card_text h4,
.blog_card_text h5,
.blog_card_text h6 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-green-color);
  margin-bottom: 8px;
}
.blog_card_text a h1,
.blog_card_text a h2,
.blog_card_text a h3,
.blog_card_text a h4,
.blog_card_text a h5,
.blog_card_text a h6 {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--text-color);
  text-transform: capitalize !important;
}
.blog_card_text p {
  color: #9c8d8d;
}
.read_more_btn {
  display: block;
  color: var(--green-color);
  text-align: end;
  font-weight: 700;
  margin-top: 12px;
  margin-right: 8px;
}
.read_more_btn:hover {
  color: var(--green-color);
}
.our_blog {
  padding-top: 60px;
  padding-bottom: 80px;
}
/******************************** single blog page ********************************/
.single_blog {
  padding-top: 32px;
}
.single_blog_details {
  padding-top: 24px;
}
.blog_share_social img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.single_blog_sidebar {
  min-width: 250px;
}
.single_blog_links li:not(:last-child) {
  padding-bottom: 32px;
}
.blog_upper_text p {
  font-weight: 600;
  color: #736666;
}
.blog_upper_text p img {
  margin-top: -1px;
}
.blog_upper_text p strong {
  color: var(--dark-green-color);
}
.single_blog_links li a {
  display: block;
  color: #64717dcc;
  position: relative;
}
.single_blog_links li a.active {
  color: var(--text-color);
}
.single_blog_links li a.active::before {
  position: absolute;
  content: " ";
  height: 100%;
  width: 2px;
  border-radius: 32px;
  background-color: var(--dark-green-color);
  left: -21px;
  top: 0;
}
.single_blog_links {
  padding-left: 20px;
  padding-right: 20px;
  border-left: 2px solid #64717d36;
}
.blog_share_social h5 {
  color: var(--text-color);
  margin-top: 52px;
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: bold;
}
.single_blog_content p {
  color: #64717dcc;
  margin-bottom: 24px;
}
.single_blog_content h4 {
  color: var(--text-color);
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
}
.single_blog_upper .img-container {
  margin-top: 32px;
}
.img-container img {
  border-radius: 14px;
  width: 100%;
}
.blog_upper_text span {
  background-color: #64717d26;
  border-radius: 34px;
  padding: 6px 18px;
  color: #736666;
}
.blog_upper_text h2 {
  font-size: 21px;
  max-width: 450px;
  font-weight: 700;
  color: var(--text-color);
  margin-inline: auto;
  margin-bottom: 12px;
  margin-top: 12px;
}
.back_icon {
  color: var(--text-color) !important;
  display: block;
  margin-bottom: 32px;
  font-weight: 500;
}
.back_icon img {
  margin-right: 6px;
}
.single_blog .our_blog {
  padding-bottom: 12px;
  padding-top: 0;
}
.single_blog .our_blog .blog_card h3 {
  font-size: 18px;
}
.single_blog .our_blog .blog_card p,
.single_blog .our_blog .read_more_btn {
  font-size: 15px;
}
.single_blog .our_blog h2 {
  font-size: 24px;
  font-weight: 700;
  padding-top: 12px;
  margin-bottom: 28px;
  color: var(--dark-green-color);
  text-align: center;
}
.get_in_touch {
  padding-bottom: 40px;
  padding-top: 12px;
  color: var(--white-color);
}
.get_in_touch .butn {
  margin-top: 20px;
  border-radius: 4px;
}
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 8px;
  background-color: var(--dark-green-color);
  z-index: 9999;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}
.blog_video {
  padding-bottom: 40px;
}
.blog_video iframe {
  border-radius: 8px;
}
.get_in_touch h2 {
  margin-bottom: 30px;
  color: var(--yellow-color);
}
.get_in_touch span {
  color: #64717d;
}
.get_in_touch form input,
.get_in_touch form textarea {
  background-color: transparent;
}
.get_in_touch .form-control:focus {
  border-color: var(--yellow-color);
  background-color: transparent;
  box-shadow: none;
}
.get_in_touch form textarea {
  height: 100px;
}
.get_in_touch form input {
  height: 40px;
}
.get_in_touch form input {
  margin-bottom: 20px;
}
@media (min-width: 991px) {
  .rest_of_page {
    padding-left: 60px;
    padding-right: 60px;
  }
  .blog_video iframe {
    border-radius: 14px;
    height: 600px;
  }
  .blog_video {
    padding-bottom: 80px;
  }
  .get_in_touch {
    padding-bottom: 60px;
  }
  .get_in_touch form input:not(:last-child) {
    margin-bottom: 20px;
  }
  .single_blog_details {
    padding-top: 70px;
  }
  .single_blog .our_blog h2 {
    font-size: 28px;
  }
  .single_blog_upper .img-container {
    margin-top: 50px;
  }
  .single_blog_details {
    padding-top: 40px;
  }
  .single_blog_content p {
    margin-bottom: 32px;
  }
  .single_blog_content h4 {
    margin-bottom: 12px;
  }
  .blog_upper_text h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }
  .back_icon img {
    margin-right: 12px;
  }
}
/* footer */
footer {
  background-color: #0f1a2a;
  color: #8da0b3;
  padding-top: 57px;
}
footer h2 {
  font-size: 36px;
  margin-bottom: 9px;
}
footer h4 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}
footer h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 27px;
}
footer ul li a {
  color: #8da0b3;
}
footer ul li {
  margin-bottom: 12px;
}
footer ul li a:hover {
  color: #1b9b9f;
}
.payments img {
  margin-right: 20px;
}
.copyright {
  margin-top: 66px;
  padding-bottom: 34px;
}

/*==== about-page ====*/
/* commitment */
.commitment-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 20px;
}
.commitment-text p {
  font-size: 18px;
  line-height: 24.55px;
  color: var(--text-color);
  margin-bottom: 20px;
}
/*=== privacy page ===*/
.privacy ul li {
  list-style: disc;
  margin-left: 24px;
}
/*=== contact-us page ===*/
.contact-section h3 {
  color: var(--dark-green-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-section .profile-form {
  box-shadow: none;
  padding: 0;
}
/*=== tip-now Page ===*/
.teacher-btn {
  padding: 4px 20px;
  border: 1px solid var(--yellow-color);
  background-color: transparent;
  border-radius: 30px;
  font-size: 20px;
  color: var(--text-color);
  box-shadow: var(--box-shadow);
}
.teacher-btn.active,
.teacher-btn:hover {
  background-color: var(--yellow-color);
  color: var(--text-color);
}
.teacher-search {
  padding: 16px;
  border: 1px solid var(--yellow-color);
  box-shadow: var(--box-shadow);
  border-radius: 30px;
}
.teacher-search {
  padding: 0 40px;
  border: 1px solid var(--yellow-color);
  box-shadow: var(--box-shadow);
  border-radius: 30px;
  height: 44px;
  font-size: 16px;
}
.search_Icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
}
.teacher-search:focus {
  box-shadow: var(--box-shadow);
  border-color: var(--yellow-color);
}
.teacher h5 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 14px;
  margin-top: 21px;
}
.teacher .dedcription-btn {
  margin: auto;
}
/* === Role page ===*/
.role,
.forget-pass,
.tip,
.about,
.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
}
.role h1 {
  margin-bottom: 104px;
  color: var(--green-color);
  font-weight: 700;
}
.role-choices {
  gap: 99px;
}
.role-choice {
  transform: rotate(45deg);
  border: 1px solid var(--green-color);
  width: 200px;
  height: 200px;
  border-radius: 18px;
  box-shadow: 0px 2px 6px 0px #00000040;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.role-choice span {
  transform: rotate(315deg);
  margin-top: -18px;
  margin-left: -20px;
}
.role-choice span img {
  width: 200px;
  height: 150px;
}
.role-choice:hover {
  background-color: #f1ca38c4;
}
.role-choice h2 {
  font-size: 35px;
  font-weight: 600;
  color: var(--green-color);
}
.form-check .form-check-input {
  height: 15px;
  border-radius: 50%;
  width: 15px;
}
.form-check .form-check-input:checked {
  box-shadow: none;
  background-color: var(--yellow-color);
  color: var(--white-color);
  border: none;
}
.forgt-pass,
.form-check-label {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}
.forgt-pass:hover,
.form-check-label:hover {
  color: var(--text-color);
}
.forget-pass p a {
  font-weight: 700;
  color: var(--text-color);
  font-size: 20px;
}
/*===Popup ===*/
.popup {
  background-color: var(--section-color);
  border-radius: 25px 25px 0px 0px;
  padding-bottom: 138px;
  padding-top: 20px;
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: none;
  transition: display 0.4s;
}
.forget-pass input[type="checkbox"]:checked,
.forget-pass .form-group label,
.sign-in .form-group + a {
  color: var(--text-color);
}
.sign-in input[type="checkbox"]:checked {
  background-color: var(--yellow-color);
  border-color: var(--yellow-color);
}
.popup-img {
  left: 0;
}
.popup-overlay {
  position: absolute !important;
  background-color: #1b9b9f;
  opacity: 10%;
  width: 100%;
  height: 65%;
  left: 0;
  top: 0;
  border-radius: 30px 30px 0 0;
  z-index: -1;
}
.upload-pic {
  gap: 46px;
}
.upload-pic img {
  /* max-width: 166px;
  width: 100%; 
  transform: rotate(-45deg);*/
  width: 200px;
  /*height: 200px;*/
  border-radius: 50%;
  /*border: 2px solid var(--dark-green-color);*/
  overflow: hidden;
}
.upload-pic .avatar-preview {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  /*transform: rotate(45deg);*/
  border: 2px solid var(--green-color);
}
.upload-pic input {
  display: none;
}
.upload-pic label {
  cursor: pointer;
  padding: 8px 40px;
}
.cancel,
.submit-form-btn {
  display: block;
  font-size: 18px;
  font-weight: 700;

  padding: 12px 0;
  width: fit-content;
  border-radius: 30px;
  margin-top: 17px;
}
.cancel {
  background-color: #dedede;
  color: #676767;
}
.cancel:hover {
  color: #676767;
}
.submit-form-btn {
  background-color: var(--yellow-color);
  color: var(--text-color);
}
.submit-form-btn:hover {
  color: var(--text-color);
}
/* teacher dashboard */
.tch-dash .sidebar {
  background-color: var(--white-color);
}
.sidebar .sidbar-logo {
  margin-bottom: 23px;
}
.sidebar ul li a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 6px;
  border-radius: 15px;
}
.sidebar .sidebar-img {
  margin-right: 12px;
  width: 30px;
  height: 30px;
  /* border-radius: 12px; */
  /* box-shadow: 0px 3.500000238418579px 5.500000476837158px 0px #00000005; */
  /* background-color: var(--white-color); */
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar span {
  font-size: 14px;
  color: var(--green-color);
  font-weight: 600;
}
.sidebar ul li a.active,
.sidebar ul li a:hover {
  background-color: #64717d21;
  box-shadow: 0px 3.500000238418579px 5.500000476837158px 0px #00000005;
}
.sidebar ul li a.active .sidebar-img {
  /* background-color: var(--dark-green-color); */
  color: var(--white-color);
}
.sidebar-img i {
  color: var(--green-color);
}
/* .sidebar ul li a.active .sidebar-img svg path {
  fill: var(--white-color);
} */
.contact-box {
  background-color: var(--dark-green-color);
  padding: 27px 9px;
  border-radius: 20px;
  height: 188px;
  overflow: hidden;
  margin-top: 35px;
}
.contact-box .trouble-icon {
  background-color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  width: 35px;
  height: 35px;
  margin-right: 8px;
}
.contact-box .trouble-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
}
.contact-box a {
  display: block;
  background-color: var(--white-color);
  color: var(--text-color);
  font-family: Nunito;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 30px;
  border-radius: 12px;
  width: fit-content;
  margin: 38px auto 0;
}
.contact-box .yell-shape {
  bottom: 0;
  right: 0;
}
/* dashboard*/
.filter_tips {
  margin-bottom: 20px;
  margin-top: 34px;
}
select#filter-options:focus {
  box-shadow: none;
  border-color: var(--yellow-color);
}
label[for="filter-options"] {
  white-space: nowrap;
  margin-right: 8px;
  color: var(--dark-green-color);
}
select#filter-options {
  max-width: 200px;
}
.dash-header + h3 {
  margin-top: 40px;
}
.dashboard {
  padding-top: 40px;
  padding-bottom: 40px;
}
.teacher-dash .container {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 64px;
}
.user-dash .container {
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 150px;
}
.dash-header {
  position: relative;
  z-index: 1;
}
.dash-header::before {
  position: absolute;
  content: " ";
  left: -11px;
  height: 87%;
  width: calc(100% + 11px);
  z-index: -1;
  top: 0;
  border-radius: 8px;
  background-color: #4fd1c5;
  opacity: 0.3;
}
.dash-title {
  height: 248px;
  background-color: var(--dark-green-color);
  border-radius: 8px;
}
.dash-title h3 {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 700;
  padding: 69px 42px;
}
.dash-title .yell-shape0 {
  bottom: 0;
}
.dash-title .yell-shape1 {
  right: 0;
  top: 0;
}
.dash-owner {
  border: 1.5px solid #ffffff;
  border-radius: 15px;
  padding: 16px 11px;
  margin-right: 11px;
  box-shadow: 0px 1.9999998807907104px 5.499999523162842px 0px #00000005;
  background: linear-gradient(
    112.83deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.8) 110.84%
  );
  margin-bottom: 24px;
}
.dash-owner .owner-info {
  margin-left: 15px;
}
.dash-owner .owner-info h5 {
  color: #2d3748;
  font-size: 18px;
  font-weight: 700;
  font-family: Helvetica, sans-serif;
}
.dash-owner .owner-info p {
  font-size: 14px;
  font-weight: 400;
  color: #718096;
  font-family: Helvetica, sans-serif;
}
.dashboard .sayhi {
  color: var(--yellow-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 13px;
}
.after-greet {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 32px;
}
.earnings {
  color: var(--text-color);
  margin-bottom: 24px;
}
.earnings h3 {
  font-size: 22px;
  font-weight: 700;
}
.earnings span {
  font-size: 18px;
  font-weight: 600;
  margin-left: -3px;
}
.earnings svg {
  margin-left: -7px;
}
.dashboard .sayhi img {
  margin-right: 10px;
}
.progress-circle {
  stroke-dasharray: 189;
  stroke-dashoffset: 189;
}
.chart {
  border: 1px solid #f6f7f8;
  padding: 36px 2px;
  border-radius: 40px;
  height: 332px;
  width: 100%;
  display: flex;
  background-color: #fff;
}
.chart-numbers li span,
.chart-dates li span {
  font-size: 14px;
  font-weight: 500;
  color: #969696;
}
ul.chart-numbers li {
  height: 50px;
  width: 66px;
  text-align: right;
}
.chart-dates {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex: 1;
  align-items: flex-end;
}
.chart-dates li {
  position: relative;
  width: 80px;
  margin-left: 15px;
  margin-right: 15px;
  height: 220px;
}
.chart-dates li span {
  position: absolute;
  bottom: -30px;
  width: 100%;
  text-align: center;
  font-family: var(--montserrat-font);
}
.chart-dates li .monthbalance {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #444444;
}
.chart-dates .bar {
  display: block;
  background-color: rgba(241, 202, 56, 0.85);
  width: 100%;
  border-radius: 14px 14px 0px 0px;
  position: absolute;
  bottom: 0;
  transition: 0.5s;
  transition-property: background-color, box-shadow;
}
.chart-dates .bar:hover {
  background-color: #e2fbd7;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(85, 239, 196, 0.6);
}
.balance {
  background-color: var(--green-color);
  color: var(--white-color);
  padding: 26px 22px;
  border-radius: 20px;
  overflow: hidden;
}
.balance .balance-header {
  margin-bottom: 11px;
}
.balance div span.icon {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.balance div:has(.icon) {
  display: flex;
  align-items: center;
}
.balance div > span:nth-child(2) {
  font-size: 1.4rem;
  font-weight: 500;
}
.dropdown-toggle.balance-drop-btn {
  background-color: transparent;
}
.dropdown-toggle::after {
  display: none;
}
.balance-drop-btn span {
  width: 3.5px;
  height: 3.5px;
  display: block;
  background: var(--white-color);
  border-radius: 50%;
  margin-bottom: 3px;
}
.balance h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.balance a:not(.purchase-supplies-btn) {
  background-color: var(--white-color);
  color: var(--text-color);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 13px;
  box-shadow: 0px 1.9999998807907104px 5.499999523162842px 0px #0000000f;
  border-radius: 12px;
}
.balance-img {
  bottom: 0;
  right: 0;
}
.recent-tips span.icon {
  margin-right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #1B9B9F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tips-recieved {
  padding: 11px 16px;
  background-color: var(--white-color);
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 10px;
  max-width: 700px;
}
.tips-lists li .tip-amount {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}
.tips-lists li .tip-date {
  color: rgba(41, 41, 41, 0.7);
  font-size: 11.89px;
  font-weight: 500;
}
.tip-rec-header span {
  font-size: 18px;
  font-weight: 400;
  color: rgba(44, 44, 44, 0.7);
}
.tips-list-header span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(130, 130, 130, 1);
}
.tips-list-header a {
  font-size: 8px;
  color: rgba(130, 130, 130, 1);
  font-weight: 700;
}
/* tipping page */
.tipping {
  padding-top: 3rem;
  color: var(--text-color);
  padding-bottom: 14vh;
}
.tipping-details h3 {
  font-size: 23px;
  font-weight: 700;
  color: var(--text-color);
}
.total-tip-num {
  font-size: 23px;
  font-weight: 700;
}
.tipping input[type="radio"] {
  width: 20px;
  height: 20px;
}
.tipping label {
  font-size: 18px;
  font-weight: 600;
}
.tipping textarea {
  resize: none;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  height: 120px;
}
.tipping textarea:focus {
  outline: none;
  border-color: var(--yellow-color);
}
.tipping .tipping-last input {
  max-width: 238px;
}
.tipping .tipping-btn {
  padding: 15px 37px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
}
/*=== withdraw teacher admin page ===*/
.withdraw-cont {
  border: 1px solid #f2f2f2;
  padding: 36px 32px;
  border-radius: 40px;
  min-height: 330px;
  width: 100%;
}
/*=== tip-history page ===*/
table {
  padding: 0;
  width: 870px;
}
table h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 25px;
}
th,
td {
  padding: 20px 20px 20px 0;
  text-align: start;
}
tr td:last-child {
  padding: 20px 0;
}
th {
  font-size: 14px;
  font-weight: 600;
  color: rgba(41, 41, 41, 0.7);
}
table tbody {
  font-family: var(--inter-font);
}
table td:not(.tip-id, .tip-his-amount, .tip-freq) {
  font-size: 12px;
  font-weight: 600;
  color: rgba(41, 41, 41, 0.7);
}
table .tip-his-amount {
  font-size: 16px;
  font-weight: 500;
  color: rgba(41, 41, 41, 0.7);
}
table .tip-id {
  color: var(--dark-green-color);
  font-size: 14px;
  font-weight: 600;
}
table .tip-freq {
  font-size: 12px;
  font-weight: 500;
}
tbody tr:nth-child(odd) {
  border-bottom: 1px solid #f5f5f5;
}
/*=== checkout page ===*/
.check-out,
.form-page,
.features,
.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--section-color);
}
.checkout-form {
  background-color: var(--white-color);
  border: 2px solid #d9d9d9;
  border-radius: 6px;
  padding: 40px;
}
.checkout-form h3 {
  color: #000000;
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 500;
}
.checkout-form .form-check-input[type="checkbox"] {
  height: 28px;
  width: 28px;
}
.checkout-form .form-check-input:checked[type="checkbox"] {
  background-color: #007fffa8;
}
.check-out h2 + a {
  font-size: 23px;
  font-weight: 700;
  color: var(--green-color);
  text-decoration-line: underline;
}
.cvc-img {
  width: 20px;
}
.check-out .payments button {
  border: 0;
  background-color: transparent;
}
/*=== confirm-tip page ===*/
.tip-summary {
  margin-top: 50px;
}
.tip-summary h1 {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
  margin-bottom: 10px;
}
.tip-summary h3 {
  text-align: center;
  margin-bottom: 20px !important;
  font-weight: 700;  
}
.blnc-calc {
  margin-bottom: 24px;
  border-bottom: 1px solid #accef7;
  padding-bottom: 2px;
  span:last-child {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
  }
}
.blnc-calc div:first-child {
  margin-bottom: 10px;
}
.after-topup {
  margin-top: 24px;
  background-color: rgba(241, 202, 56, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 42px;
}
.after-topup div:last-child {
  font-weight: 600;
  color: var(--text-alt-color);
}
.tip-total,
.after-topup div span {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.text-14 {
  font-size: 14px;
  font-weight: 600;
  color: #b7aeae;
}
.inform,
.save-payment,
.return {
  font-size: 14px;
  font-weight: 700;
}
.inform {
  color: #d9d9d9;
}
.save-payment {
  color: var(--text-color);
}
.return {
  color: #0088ff;
}
.confirm-tip-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
}
/* table*/
table .success,
table .inprogress,
table .processing {
  width: 12px;
  display: inline-block;
  height: 12px;
  border-radius: 50%;
  margin-bottom: -2px;
  margin-right: 5px;
}
table .success {
  border: 2.97px solid #6ffc2d;
}
table .inprogress {
  border: 2.97px solid var(--yellow-color);
}
table .processing {
  border: 2.97px solid #ff0000;
}
table td:has(.processing) {
  color: #ff0000;
}
table td:has(.success) {
  color: #6ffc2d;
}
table td:not(.child):has(.inprogress) {
  color: var(--yellow-color);
}
.tip-date {
  font-size: 11.89px;
  font-weight: 500;
  color: rgba(41, 41, 41, 0.7);
}
.stop-btn {
  background-color: #e13939;
  color: var(--white-color);
  border-radius: 3px;
  padding: 2px 10px;
}
.stop-btn:hover {
  color: var(--white-color);
}
.user-dash table tbody {
  font-family: var(--nunito-font);
}
.copyright {
  font-size: 18px;
}
.section-title {
  margin-bottom: 40px;
}
.section-title h2,
.section-title h1 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--green-color);
}
.section-title h2 {
  font-size: 32px;
}
.section-title h1 {
  font-size: 32px;
}
.section-title p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-alt-color);
}
.form-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-alt-color);
  span {
    margin-bottom: 8px;
  }
}
.profile-form {
  box-shadow: 0 0 16px #e9ecef;
  padding: 64px 40px 40px 40px;
  border-radius: 16px;
}
.profile-form input,
.profile-form textarea {
  background-color: white;
  border-radius: 8px;
  font-size: 16px;
  resize: none;
  color: var(--text-color);
}
.profile-form input {
  height: 40px;
}
.profile-form input::placeholder,
.profile-form textarea::placeholder {
  color: #b7aeae;
  font-size: 14px;
  font-weight: 300;
}
.profile-form input:focus,
.profile-form textarea:focus {
  background-color: var(--white-color);
  box-shadow: none;
  border: 1px solid var(--yellow-color);
}
.navbar-toggler {
  border: none;
  width: 32px;
  height: 32px;
  color: var(--green-color);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.table-section {
  overflow-x: auto;
  width: 100%;
}
.table-section::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.table-section::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  visibility: hidden;
}
/* 17-9-2024 */
td::before {
  background-color: #f1ca38 !important;
  top: 21px !important;
  border: unset !important;
  box-shadow: 0 0 3px #f1ca38 !important;
}
/* End 17-9-2024 */
.sayhi img {
  animation-name: wave-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}
@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.butn,
.butn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  background-color: var(--yellow-color);
  background-image: linear-gradient(90deg, #f1ca38, #f1ca38);
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.butn::before {
  background: #fff;
  content: "";
  height: 155px;
  opacity: 0;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  width: 50px;
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.butn::after {
  background: #fff;
  content: "";
  height: 20rem;
  opacity: 0;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 8rem;
}
.butn__new::before {
  left: -50%;
}

.butn__new::after {
  left: -100%;
}

.butn:hover,
.butn:active {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.butn__new:hover::before {
  left: 120%;
  opacity: 0.5s;
}

.butn__new:hover::after {
  left: 200%;
  opacity: 0.6;
}
.butn span {
  z-index: 20;
}
.shared-sec-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-green-color);
  margin-bottom: 4px;
}
.about p {
  max-width: 527px;
}
.privacy p {
  max-width: 827px;
}
.forget-pass .banner .butn:link,
.butn:visited {
  padding: 8px 56px;
}
.tch-dash-contact-popup,
.user-dash-contact-popup,
.ver_pop_container {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #0000008c;
  transition: display 1s ease;
  z-index: 100000;
}

.sidebar-close-icon,
.sidebar-close-btn {
  width: 30px;
  right: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
}
.sidebar-close-btn {
  top: 0px;
}
.tch-dash-contact-popup .sidebar-close-icon,
.user-dash-contact-popup .sidebar-close-icon {
  top: 20px;
}
.tch-dash-contact-popup p {
  font-size: 16px;
}
.tch-dash .popup-textarea:focus {
  border: 1px solid var(--yellow-color);
  box-shadow: none;
}
.tch-contact-popup h3 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-color);
}
.tch-contact-popup h3 + p {
  font-size: 23px;
  font-weight: 500;
  color: var(--text-color);
}
.tch-contact-popup {
  box-shadow: none;
}
.forget-pass .profile-form {
  box-shadow: none;
  border: 1px solid #e4ebe4;
  background-color: var(--white-color);
}
.forget-pass-page {
  padding-top: 155px;
  padding-bottom: 155px;
}
#tech-popup-thank a {
  width: 50%;
  color: var(--white-color);
}
.form-text {
  font-size: 16px;
  color: #6c757d;
}
.tch-contact-popup .img-container {
  max-width: 250px;
  margin: auto;
}
.popup-white {
  color: var(--white-color);
}
.profile-form.tipping-details {
  padding: 0;
}
.navbar .butn {
  border: 0;
}
.teachers-filter > * {
  padding: 0 !important;
}
.teacher > div > img {
  width: 214px;
  height: 214px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  object-fit: contain;
}
.owner-pic {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--dark-green-color);
  overflow: hidden;
}
.owner-pic img{
  height:100%;
  object-fit:cover;
}
.teacher-img {
  max-height: 520px;
  max-width: 520px;
  overflow: hidden;
  border-radius: 8px;
}
.upload-pic img {
  width: 254px;
  /*height: 254px;*/
  margin: auto;
  border: 2px solid var(--dark-green-color);
  /*border-radius: 50%;*/
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.teacher-dash .position-relative .dropdown-icon{
  position: absolute;
  right: 5px;
  top: 12px;
}
/* New Sections CSS */
.new_hero {
  background-image: url(../img/home_img.jpg);
  background-size: cover;
  position: relative;
}
.new_hero::before {
  position: absolute;
  content: " ";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero_text {
  max-width: 400px;
  color: var(--white-color);
  position: relative;
  z-index: 9;
}
.hero_text h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}
.hero_text .banner {
  margin-inline: auto;
  margin-top: 32px;
}
.hero_text .banner a {
  padding-inline: 52px !important;
}
.hero_text p {
  margin-top: 32px;
}
.hub_section .commitment-img {
  height: 415px;
}
.hub_section .commitment-img img {
  height: 100% !important;
}
/* End New Section */
/* Start OTP Verifcation */
.verify_page {
  padding-top: 40px;
  padding-bottom: 100px;
}
.verifi_box {
  width: fit-content;
  margin-inline: auto;
  background-color: var(--white-color);
  padding: 40px 80px;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.disclaimer {
  background-color: rgb(252 165 165 / 1);
  color: rgb(153 27 27 / 1);
  width: fit-content;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 12px 46px;
  margin-inline: auto;
  font-weight: 700;
  font-size: 14px;
}
.verifi_box .form_group {
  margin-bottom: 48px;
}
.otp {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: white;
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-color);
  border: 1px solid #ced4da;
}
.otp:focus {
  border: 3px solid var(--yellow-color);
  box-shadow: none !important;
  outline: none;
}
.verify_heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 32px;
}
.verify_btn {
  background-color: var(--yellow-color);
  color: var(--text-color);
  border: none;
  padding: 8px 32px;
  font-size: 18px;
  border-radius: 4px;
  font-weight: 600;
  display: block;
  margin-inline: auto;
  margin-block-start: 24px;
}
.verify_btn:hover {
  background-color: #f1ca38d6;
}
.verifi_title {
  color: #282b29;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.verify_popup h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-color);
  margin-block: 24px;
}
.verify_popup .img_container {
  width: 200px;
  margin-inline: auto;
}
.verify_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 570px;
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}
.verify_popup p {
  font-size: 23px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 52px;
}
.verify_page .banner {
  width: fit-content;
  margin-inline: auto;
}
.verify_page .butn:link,
.verify_page .butn:visited {
  margin-top: 72px;
  padding-inline: 92px;
}
/* End OTP Verifcation */
.socials a img {
  width: 24px;
}
.copyright img {
  width: 18px;
  margin-right: 3px;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 34px;
  background-color: rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease-in-out;
}
.socials a:hover {
  background-color: #1a9ba1;
}
/* Break Points (( Media Quieries)) */
@media (max-width: 767px) {
  .inform,
  .save-payment,
  .return,
  .earnings span,
  .text-14,
  .tip-total,
  .after-topup div span {
    font-size: 10px;
  }
  .checkout-form span > img {
    width: 15px;
  }
  .tch-contact-popup h3 {
    font-size: 25px;
  }
  .tch-contact-popup h3 + p,
  .tip-summary h1 {
    font-size: 18px;
  }
  .tch-contact-popup input {
    height: 36px;
  }
  .teacher .btn-icon img {
    right: 7px;
    top: 10px;
  }
  .commitment-text p {
    margin-bottom: 0;
  }
  .commitment-text h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .submit-form-btn,
  .cancel,
  .tipping-details h3 {
    font-size: 16px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .section-title h2,
  .section-title h1 {
    font-size: 22px;
    margin-bottom: 0;
  }
  section.about,
  section.privacy,
  .contact-section,
  .form-page,
  .features {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  section.commitment {
    padding-bottom: 52px;
    padding-top: 0;
  }
  .role-ch-img {
    min-width: 110px;
    height: 80px;
    width: 110px;
    border-radius: 50%;
    max-height: 110px;
  }
  .profile-form {
    padding: 20px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .tipping h3.after-greet,
  .checkout-form h3 {
    font-size: 16px;
  }
  .after-greet {
    margin-bottom: 15px;
  }
  .dash-title h3 {
    padding: 69px 23px;
  }
  .features h3 {
    font-size: 25px;
  }
  .sign-in .form-group label,
  .sign-in .form-group + a,
  .dash-owner .owner-info h5,
  .dashboard .sayhi,
  .earnings h3,
  .form-label span {
    font-size: 15px;
  }
  .dedcription-btn,
  .butn:link,
  .butn:visited,
  .section-title p,
  .commitment-text p,
  .upload-pic label,
  .tch-contact-popup h3 + p {
    font-size: 14px;
  }
  .contact-section h3,
  .total-tip-num {
    font-size: 18px;
  }
  .tipping .tipping-btn,
  table .tip-his-amount {
    font-size: 13px;
    padding: 10px 25px;
  }
  .tipping label {
    font-size: 14px;
  }
  .dash-title h3,
  .profile-form .input,
  .forget-pass p a {
    font-size: 15px;
  }
  .dash-owner .owner-info p,
  table .tip-freq,
  .forgt-pass,
  .form-check-label {
    font-size: 10px;
  }
  .chart-numbers li span,
  .chart-dates li span {
    font-size: 7px;
  }
  ul.chart-numbers li {
    width: unset;
  }
  .chart {
    padding: 20px;
    width: 100%;
  }
  .chart-dates {
    padding-left: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .chart-dates .bar {
    width: 20px;
  }
  .chart-dates li {
    width: 40px;
    margin-left: 0;
  }
  .teacher > div > img {
    width: 70px;
  }
  .teacher .dedcription-btn {
    padding: 8px 38px 8px 10px;
    overflow: hidden;
  }
  .teacher-btn {
    padding: 8px 12px;
    font-size: 10px;
  }
  .tch-contact-popup {
    position: absolute;
    top: 20px;
    left: 5%;
    width: 90%;
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 12px;
  }
  .tipping input[type="radio"] {
    width: 17px;
    height: 17px;
  }
  .checkout-form .form-check-input[type="checkbox"] {
    height: 15px;
    width: 15px;
    margin-bottom: 5px;
  }
  .tipping {
    padding-top: 5vh;
  }
  .teacher > div > img {
    width: 70px;
    height: 70px;
  }
  .upload-pic img {
    width: 100px;
    height: 100px;
    border-width: 2px;
  }
  /* Start OTP Responsive Css */
  .verify_page {
    padding-bottom: 52px;
  }
  .verifi_box {
    padding: 24px 24px 32px 24px;
  }
  .verify_page .section-title {
    margin-bottom: 32px;
  }
  .verifi_title {
    font-size: 18px;
  }
  .verify_btn,
  .verify_heading {
    font-size: 14px;
  }
  .otp {
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }
  .disclaimer {
    border-radius: 8px;
    font-size: 12px;
    padding: 12px 20px;
  }
  .verify_popup {
    min-width: 300px;
    padding: 32px 12px 34px;
  }
  .verify_popup .img_container {
    max-width: 134px;
  }
  .verify_popup p {
    margin-bottom: 32px;
    font-size: 16px;
  }
  .verify_popup h3 {
    font-size: 24px;
    margin-block: 18px;
  }
  /* End OTP Responsive Css */
  .navbar-brand img {
    height: 46px;
    width: auto;
  }
}
@media (min-width: 539px) and (max-width: 991px) {
  .chart-dates .bar {
    width: 45px;
  }
}
@media (min-width: 768px) {
  .earnings span {
    margin-left: -20px;
  }
  .tch-contact-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 570px;
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 12px;
  }
  .tch-dash .popup-textarea {
    min-height: 150px;
  }
  .filter_tips {
    margin-bottom: -30px;
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .page-nav .nav-item {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
    padding: 10px 0;
  }
  .page-nav .nav-item .nav-link {
    text-align: center;
  }
  .dropdown-menu[data-bs-popper] {
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    text-align: center;
    background-color: rgb(47 113 82 / 90%);
    color: #fff;
    border-radius: 8px;
  }
  .navbar .dropdown-item {
    padding: 12px 18px !important;
    color: #fff;
  }
  .butn.dropdown-toggle:hover,
  .butn.dropdown-toggle:active {
    box-shadow: none;
  }
  .navbar-collapse .log-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-top: 12px;
    width: fit-content;
  }
  .navbar-collapse {
    background-color: var(--white-color);
    z-index: 1000;
    padding: 12px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  .navbar-nav {
    margin-top: 7vh;
  }
  .nav-link.active::after {
    height: 1px;
  }
  .navbar-close-btn {
    width: 18px;
    right: 20px;
    top: 26px;
    cursor: pointer;
  }
  #progress-bar {
    height: 4px;
  }
  footer .row > div {
    margin-bottom: 70px;
  }
  .about-section {
    padding-top: 52px;
  }
  footer h2 {
    font-size: 25px;
  }
  footer h3 {
    font-size: 20px;
  }
  .payments img {
    margin-right: 10px;
    width: 30px;
  }
  .navbar-nav {
    position: relative;
    z-index: 100;
  }
  .teacher h5,
  .teacher a {
    font-size: 12px;
  }
  .role-choices {
    gap: 100px;
  }
  .role-choice {
    width: 150px;
    height: 150px;
  }
  .role-choice img {
    width: 100px;
  }
  .role-choice h2 {
    font-size: 20px;
  }
  .user-dash {
    padding-bottom: 30px;
  }
  /* New Sections CSS Responsive */
  .hub_section .commitment-img {
    height: 320px;
    text-align: center;
  }
  .hub_section .commitment-img img {
    height: 100% !important;
  }
  .hero_text h2 {
    font-size: 30px;
  }
  .hero_text p {
    font-size: 14px;
  }
  .hero_text {
    max-width: 300px;
    padding-bottom: 62px;
  }
  /* End New Sections */
  .dropdown-menu.show {
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
  /*teacher add button */
  .tch-contact-popup {
    position: absolute;
    top: 20px;
    left: 5%;
    width: 90%;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
  }
}
@media (min-width: 992px) {
  .navbar-nav li:has(.log-btn) .log-btn,
  .navbar-nav + li:has(.log-btn) .log-btn {
    border: 1px solid var(--yellow-color);
    border-radius: 32px;
  }
  .navbar-brand img {
    margin-top: 10px;
  }
  .signup-img {
    margin-right: -30px;
  }
  .user-dash {
    padding-bottom: 100px;
  }
  .tip-summary {
    margin-top: 83px;
  }
  .commitment-text {
    max-width: 527px;
  }
}
@media (max-width: 1023px) {
/*  .sidebar ul {
    padding-inline: 12px;
  } */
  .signup-img {
    text-align: center;
  }
  .sign-in.reset .signup-img {
    margin-bottom: -50px;
  }
  .sidebar {
    position: relative;
  }
  .sidebar .sidbar-logo {
    padding-left: 16px;
  }
  .tch-dash .col-12:has(.sidebar) {
    max-width: 300px;
    transition: transform 2s ease;
    position: fixed !important;
    height: 100%;
    overflow: auto;
    z-index: 100;
    padding: 0;
    left: -300px;
    top: 0;
    padding-top: 16px;
    padding-bottom: 40px;
    min-height: 100vh;
    background-color: var(--white-color);
  }
  ::-webkit-scrollbar {
    width: 0;
  }
  .dashboard .dash-icon {
    top: 8px;
    position: fixed !important;
    left: 0px;
    cursor: pointer;
    z-index: 2;
  }
  .contact-box {
    margin-left: 16px;
    margin-right: 16px;
  }
  .dash-icon {
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: var(--white-color);
  }
  .dashboard {
    padding-top: 0;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .dash-cards {
    display: flex;
    gap: 50px;
  }
  .balance .balance-header {
    margin-bottom: 35px;
  }
  .balance,
  .tips-recieved {
    width: 250px;
    min-height: 235px;
  }
  .teacher > div > img {
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .role {
    padding-top: 130px;
    padding-bottom: 260px;
  }
  .pop-password {
    padding-top: 140px;
  }
  .popup p {
    margin-bottom: 20px;
  }
  .tipping-last input {
    margin-bottom: 10px;
  }
}
@media (min-width: 1023px) and (max-width: 1279px) {
  .contact-section,
  .forget-pass,
  .form-page {
    padding-top: 16vh;
    padding-bottom: 16vh;
  }
  .teacher-btn {
    font-size: 17px;
  }
}
@media (min-width: 1025px) {
  .tipping-last {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
  }
  .tch-dash .sidebar {
    padding: 36px 27px;
  }
}
.stripe-elements-container {
  padding-top: 10px;
  height: 40px;
  background-color: white;
  border-radius: 8px;
  font-size: 16px;
  resize: none;
  color: var(--text-color);
}
.asterisk-mandatory{
  color: #ff204e;
  font-size: .7rem;
}
.active-btn-paypal {
  background-color: #02be37;
  color: var(--white-color);
  border-radius: 3px;
  padding: 2px 10px;
}
.profile-form select,
.profile-form textarea {
  background-color: white;
  border-radius: 8px;
  font-size: 16px;
  resize: none;
  color: var(--text-color);
}
.profile-form select {
  height: 40px;
}
.profile-form select::placeholder,
.profile-form textarea::placeholder {
  color: #b7aeae;
  font-size: 14px;
  font-weight: 300;
}
.profile-form select:focus,
.profile-form textarea:focus {
  background-color: var(--white-color);
  box-shadow: none;
  border: 1px solid var(--yellow-color);
}

/* singup forms css */

.sign_container p {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.3px;
  margin: 20px 0;
}

.sign_container span {
  font-size: 12px;
}
.sign_container button {
  background-color: #f1ca38;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 45px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-transform: uppercase;
  margin-top: 10px;
  cursor: pointer;
}
.sign_container button:not(.hidden) {
  color: #282b29;
}
.sign_container button.hidden {
  background-color: transparent;
  border-color: #fff;
}

.sign_container form {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  height: 100%;
}

.sign_container input:not([type="checkbox"]) {
  padding: 10px 15px;
  width: 100%;
  outline: none;
  min-height: 40px;
  background-color: white;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid #ced4da;
  box-shadow: none;
  color: #282b29;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.sign_container .signup-email-teacher{
  width: 100%;
}
.sign_container .signup-email-teacher input[type="email"],
.sign_container .phone-input-container input[type="tel"]{
  width: 93%;
  margin-right: auto;
}
.signup-email-teacher .tooltip-teacher-form,
.phone-input-container .tooltip-teacher-form{
  cursor: help;
  color: #FFF;
  border: 1px solid #333;
  border-radius: 50%;
  height: 19px;
  width: 19px;
  background: #1B9B9F;
  display: inline-block;
  padding-left: 6px;
  font-size: 12px;
}
@media (min-width: 992px) {
  .w-lg-75 {
    width: 75% !important;
  }
}
.setup-teacher{
  background:#FDFDFD;
}
.container input:focus {
  border-color: #f1ca38;
}

.toggle-panel h1 {
  font-size: 40px;
  font-weight: 600;
}
.toggle-left {
  transform: translateX(-200%);
}

.sign_container.active .toggle-left {
  transform: translateX(0);
}
.toggle-right {
  right: 0;
  transform: translateX(0);
}
form h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #1b9b9f;
}
.phone-input-container {
  width: 100%;
  position: relative;
  margin-block: 8px;
  border-radius: 8px;
  overflow: hidden;
}
.phone-input-container:before {
  position: absolute;
  content: "";
  height: 40.8px;
  width: 1px;
  background-color: #ced4da;
  left: 70px;
  top: 0;
}
.flag {
  height: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  width: 70px;
  display: flex;
  align-items: center;
}
.flag img {
  width: 24px;
  margin-right: 4px;
}
.flag span {
  font-weight: 700;
  font-size: 16px;
}
input[type="tel"] {
  height: 40.8px;
  padding-left: 80px !important;
  margin-block: 0;
}
.form-check .form-check-input {
  height: 15px;
  border-radius: 50%;
  width: 15px;
}
.forgt-pass,
.form-check-label {
  color: #282b29;
  font-size: 14px;
  font-weight: 500;
}
.forgt-pass:hover {
  color: #282b29;
}
.sign-in input[type="checkbox"]:checked {
  background-color: #f1ca38;
  border-color: #f1ca38;
}
.form-check .form-check-input:checked {
  box-shadow: none;
  background-color: #f1ca38;
  color: var(--white-color);
  border: none;
}
.toggle-right:before,
.toggle-left:before {
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0.1;
}
.form_text {
  position: relative;
  z-index: 10;
}
.sign_light {
  width: 200px;
  top: 50%;
  right: -90px;
  opacity: 0.55;
}
.sign_book {
  width: 200px;
  top: 20%;
  left: -60px;
  opacity: 0.55;
}
.outer_sign_container {
  padding-block: 100px;
}
.requirement-list li i {
  width: 20px;
  color: #ff204e;
  font-size: 1rem;
}
.password_condition,
.requirement-list li span {
  font-size: 18px;
  color: #333;
}
.requirement-list {
  margin-block: 12px;
}
.requirement-list li.valid i {
  font-size: 18px;
  color: #87a922;
}
.requirement-list li.valid span {
  color: #999;
}
@media (min-width: 768px) {
  .sign_container {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 15px #ccc;
    position: relative;
    overflow: hidden;
    width: 870px;
    max-width: 100%;
    min-height: 600px;
  }
  .form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
  }

  .sign-in {
    left: 0;
    width: 50%;
    z-index: 2;
  }

  .sign_container.active .sign-in {
    transform: translateX(100%);
  }

  .sign-up {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
  }

  .container.active .sign-up {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: move 0.6s;
  }

  @keyframes move {
    0%,
    49.99% {
      opacity: 0;
      z-index: 1;
    }
    50%,
    100% {
      opacity: 1;
      z-index: 5;
    }
  }
  .toggle-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    border-radius: 20px;
    z-index: 100;
  }

  .container.active .toggle-container {
    transform: translateX(-100%);
    border-radius: 20px;
  }

  .toggle {
    background-color: #1b9b9f;
    height: 100%;
    color: #fff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
  }
  .sign_container.active .toggle {
    transform: translateX(50%);
  }

  .toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
  }
}
.outer_sign_container {
  padding-inline: 32px;
}
@media (min-width: 1023px) and (max-width: 1239px) {
  .sign_light,
  .sign_book {
    width: 90px;
  }
  .sign_book {
    left: -30px;
  }
  .sign_light {
    right: -30px;
  }
}

/* checkout page */
.check-section {
  padding-block: 70px;
  background-color: #f1ca38;
  overflow: hidden;
  padding-inline: 16px;
}
.checkout_shape {
  top: 40px;
  left: -700px;
}
.check-section .container {
  padding: 20px 20px 40px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 0 16px #6c757d42;
  position: relative;
  z-index: 99;
}
@media (max-width: 480px) {
  .payment_details .nav-link {
    margin-right: 7px !important;
  }
  .tipnow-section input#email {
    width: 100% !important;
  }
  .tipnow-section .search_form .green-btn{
    margin-top: 1rem;
  }
}
.payment_details .nav-link {
  border: none;
  margin-right: 20px;
  font-size: 11px;
}
.payment_details .nav-tabs {
  border-bottom: none;
}
.payment_details .nav-link.active::after {
  bottom: -10px;
}
.check-section h3 {
  color: #1b9b9f;
  margin-bottom: 18px;
  font-size: 21px;
}
.visa_data input {
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
}
.visa_data input:focus {
  box-shadow: none;
  border-color: #1b9b9f;
}
.visa_details {
  margin-block: 30px;
}
.payment_details .inform {
  color: #1b9b9f;
}
.form-check-input:checked {
  background-color: #f1ca38;
  border-color: #f1ca38;
}
.inform,
.payment_details label.save-payment {
  font-size: 10px;
}
.payment_details label {
  font-size: 15px;
  color: #282b29;
  font-weight: 600;
}
.outer-tip {
  background-color: #e6e8ed;
  padding: 12px;
  border-radius: 13px;
  margin-top: 30px;
}
.tip-summary {
  box-shadow: 0px 22px 22.2px 0px #00000017;
  padding: 30px 20px;
  border-radius: 14px;
  background-color: #fff;
  margin-top: unset !important;
}
.tip-summary .banner {
  margin-top: 32px;
}
.tip-total {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
.tip-summary {
  margin-top: 50px;
}
.visa {
  width: fit-content;
  margin-bottom: 20px;
}
.visa div {
  color: #fff;
  font-weight: 600;
}
.visa div span {
  font-size: 12px;
}
.visa .bank_name {
  top: 20px;
  left: 25px;
}
.visa .visa_number {
  top: 40%;
  left: 20px;
  font-size: 18px;
  font-weight: 700;
}
.visa .visa_bottom {
  bottom: 20px;
  left: 20px;
  max-width: 90%;
}
.visa .visa_bottom img {
  width: 30px;
}
.paypal_link {
  display: block;
  color: #282b29;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
  margin-block: 30px;
  width: fit-content;
  background-color: #f1ca38 !important;
  padding-inline: 32px;
  padding-block: 14px;
  border-radius: 4px;
}
.paypal_link img {
  width: 16px;
  transition: all 0.4s ease-in-out;
}
.paypal_link:hover {
  transform: translateY(-10px);
  color: #282b29;
}
.paypal_link:hover img {
  margin-left: 10px;
}
@media (min-width: 992px) {
  .check-section {
    padding-inline: unset;
  }
  .check-section .container {
    padding: 50px;
  }
  .outer-tip {
    margin-top: 60px;
  }
  .visa_details {
    margin-block: 50px;
  }
  .check-section h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .visa {
    min-width: 343px;
    margin-right: 50px;
    margin-bottom: unset;
  }
  .visa .visa_number {
    font-size: 25px;
  }
  .visa .visa_bottom img {
    width: unset;
  }
  .payment_details .nav-link {
    margin-right: 5px;
  }
  .inform,
  .payment_details label.save-payment {
    font-size: 12px;
  }
  .paypal_link {
    font-size: 16px;
    margin-block: 60px;
  }
  .paypal_link img {
    width: unset;
  }
  .payment_details .nav-link {
    font-size: 18px;
  }
  .total-tip-num,
  .tip-summary h1 {
    font-size: 23px;
  }
}

.footer_text {
  font-size: 15px;
  margin-bottom: 12px;
  margin-right: 32px;
}

/* dashboard page css*/
.table thead th {
  white-space: nowrap;
  vertical-align: bottom;
  border-top: unset !important;
  font-weight: 700;
  color: #1b9b9f !important;
  font-size: 14px !important;
  border-bottom: 3px solid #f4f5f8 !important;
  background-color: #f4f5f8;
  border-inline-end: 3px solid #fdfafa !important;
}
.table {
  border-collapse: separate !important;
  border: 1px solid #f4f5f8;
}
.table > :not(caption) > {
  border-bottom-width: 0;
}
.table td {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  color: rgba(41, 41, 41, 0.7);
  border-bottom: 3px solid #f4f5f8 !important;
  border-top: unset !important;
  border-inline-end: 3px solid #fdfafa !important;
}
div.dataTables_wrapper div.dataTables_filter label {
  color: #1b9b9f !important;
  font-weight: 600;
}
div.dataTables_wrapper div.dataTables_info {
  font-size: 12px;
  color: #1b9b9f;
}
#tips-table_filter > label > input {
  padding: 0 40px;
  border: 1px solid #f7b924;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 30px;
  height: 44px;
  font-size: 16px;
}
#tips-table_filter > label > input.form-control {
  background-color: #fff !important;
}
#tips-table_filter > label > input {
  padding-inline: 8px !important;
  max-height: 32px;
  max-width: 170px;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #008000 !important;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-item.active .page-link {
  background-color: #1b9b9f !important;
  border-color: #1b9b9f !important;
  color: var(--white-color) !important;
}
.page-item.disabled .page-link {
  color: #70657b !important;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.page-link:focus {
  box-shadow: none;
}
div.dataTables_wrapper div.dataTables_filter label {
  color: #1b9b9f !important;
  font-weight: 600;
}

@media (max-width: 400px) {
  #admins-datatable_filter > label > input {
    max-width: 140px;
  }
}
@media (max-width: 768px) {
  .footer-bottom > div.d-flex {
    flex-direction: column;
  }
}

/* Loader container */
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050; /* Ensure it appears above other content */
  display: none; /* Hidden by default */
  width: 100px;
  height: 100px;
}

/* Loader inner container */
.loader-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Dot animation */
.dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background: linear-gradient(45deg, #f1ca38, #f4a261); /* Gradient color */
  border-radius: 50%;
  animation: bounce 1.5s infinite;
}

/* Positioning the dots */
.dot:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: -0.6s;
}
.dot:nth-child(2) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -0.3s;
}
.dot:nth-child(3) {
  top: 0;
  left: 100%;
  transform: translateX(-100%);
}

/* Bounce animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.dataTables_processing {
  display: none !important;
}
.sign-in .profile-form,
.sign-up .profile-form {
  box-shadow: none;
}

.coming_soon_bar {
  width: 100%;
  padding-block: 12px;
  background-color: #1b9b9f;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* teacher add button */
.tch-dash-contact-popup,
.user-dash-contact-popup,
.ver_pop_container,
.form_bg_overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #0000008c;
  transition: display 1s ease;
  z-index: 100000;
}
.add_teacher_form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: var(--white-color);
  padding: 52px 40px 32px;
  border-radius: 8px;
  min-width: 450px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.close_add_teacher_form {
  top: 20px;
  right: 20px;
  max-width: 17px;
  cursor: pointer;
}
.tch-contact-popup {
  box-shadow: none;
}
.about-tabs .img-container {
  display: flex;
  justify-content: center;
}
.about-tabs .img-container img {
  width: auto;
  object-fit: cover;
  object-position: center;
}
.tch-contact-popup h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-color);
}
.tch-contact-popup h3 + p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-alt-color);
}
.popup-white {
  color: var(--text-color);
  padding-inline: 72px;
}
.add-teacher-btn {
  background-color: var(--yellow-color);
  color: var(--text-color);
  box-shadow: var(--box-shadow);
  border-radius: 30px;
  padding: 4px 20px;
}

.tch-contact-popup .img-container {
  max-width: 250px;
  margin: auto;
}

/* chatbot css*/

.chat-container {
  width: 100%;
  max-width: 500px;
  height: 80vh;
  background-color: var(--container-bg-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background-color 0.3s ease;
  display: none; /* Initially hidden */

  /* Positioning for center alignment */
  position: fixed;
  bottom: 80px; /* Adjust as per your need */
  right: 20px; /* Adjust as per your need */
  z-index: 1000; /* Ensure it stays on top */
}
.header {
  height: 80px;
  background-color: var(--header-bg-color);
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--header-text-color);
  position: relative;
}
/* Toggle Button */
.theme-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 10px;
  background-color: var(--button-bg-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  color: var(--button-text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.chat-box {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: var(--container-bg-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: background-color 0.3s ease;
}
.chat-box .message {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  max-width: 100%;
}
.message.user {
  justify-content: flex-end;
  align-self: flex-end;
}
.message.bot {
  justify-content: flex-start;
  align-self: flex-start;
}
.message-content {
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 75%;
  word-wrap: break-word;
}
.message.user .message-content {
  background-color: #006400; /* dark green */
  color: white;
}
.message.bot .message-content {
  background-color: #e0e0e0; /* light grey for bot */
  color: #000000;
}
.message .icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.message.user .icon {
  margin-right: 0;
  margin-left: 10px;
}

body.dark {
  --bg-color: #121212;
  --container-bg-color: #1e1e1e;
  --header-bg-color: #1f1f1f;
  --header-text-color: #fdd835; /* yellow for text */
  --input-bg-color: #2c2c2c;
  --button-bg-color: #fdd835; /* yellow button for dark mode */
  --button-text-color: #000000; /* black text for dark mode */
}

/* Ensure "Please start chatting..." text is white in dark mode */
body.dark .chat-box p {
  color: white;
}

.input-area {
  display: flex;
  border-top: 1px solid #e0e0e0;
  padding: 10px;
  background-color: var(--input-bg-color);
  transition: background-color 0.3s ease;
}
.input-area input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}
.input-area button {
  background-color: #fdd835; /* yellow */
  color: #000000; /* black */
  border: none;
  border-radius: 20px;
  padding: 10px 15px;
  margin-left: 10px;
  cursor: pointer;
}
.input-area button:hover {
  background-color: #ffeb3b; /* brighter yellow */
}
/* Chat Toggle Button */
.chat-toggle-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fdd835;
  color: #000000;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.chat-toggle-button:hover {
  background-color: #ffeb3b; /* brighter yellow */
}
@media only screen and (max-width: 767px) {
  .password_condition,
  .requirement-list li span {
    font-size: 13px;
  }
  .outer_sign_container {
    padding-inline: 12px;
    padding-block: 70px;
  }
  form h1 {
    font-size: 24px;
  }
  .sign_container form {
    padding: 0 14px;
  }
  .toggle-panel {
    padding: 0 10px;
  }
  .sign_book,
  .sign_light {
    width: 124px;
  }
  .toggle-panel h1 {
    font-size: 28px;
  }
  .sign_container p {
    font-size: 12px;
    margin: 10px 0;
  }
  .sign-in .form-group label,
  .sign-in .form-group + a,
  .sign_container input:not([type="checkbox"]),
  .flag span {
    font-size: 12px;
  }
  .sign_container input:not([type="checkbox"]) {
    padding: 10px;
  }
  .phone-input-container:before {
    left: 40px;
  }
  input[type="tel"] {
    padding-left: 48px !important;
  }
  .flag img {
    width: 12px;
  }
  .flag {
    width: 40px;
  }
  .toggle-right:before,
  .toggle-left:before {
    display: none;
  }
  .sign-up,
  .sign-in {
    position: relative;
    width: 100%;
    padding-block: 32px;
    overflow: hidden;
    border-radius: 12px;
  }
  .toggle-container {
    display: none;
  }
  .sign-in {
    display: none;
  }
  .sign-in.active {
    display: block;
  }
  .form-container:not(.active) {
    display: none;
  }
  .sign-up::before,
  .sign-in::before {
    position: absolute;
    width: 100%;
    z-index: 2;
    opacity: 0.1;
    width: 100%;
    left: 0;
    top: 0;
  }
  .sign-up::before {
    content: url(" ../img/Green rec.png");
  }
  .sign-up.tipper_sign_up:before {
    content: url(" ../img/Green rec (3).png");
  }
  .sign-in::before {
    content: url(" ../img/Green rec (1).png");
  }
  .sign-in.tipper_sign_in:before {
    content: url(" ../img/Green rec (2).png");
  }
  .sign-up:after,
  .sign-in::after {
    background-color: #1b9b9f;
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
  }
  .sign-up form,
  .sign-in form {
    position: relative;
    z-index: 99;
  }
  .sign_container form {
    background-color: unset;
  }
  .sign-up .form-text,
  form h1,
  .sign-in .form-text,
  .sign-in .form-group label,
  .sign-in .form-group + a {
    color: #fff;
  }
  .sign_container .form-check {
    margin-bottom: 0;
  }
  .sign_container button {
    width: 100%;
  }
  .sign_container .form-text span {
    display: block;
    margin-inline: auto;
    margin-block: 8px;
  }
  .sign_container .form-text button {
    margin-top: 0;
  }
  /* donates */
  .donates {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .donates h4 {
    font-size: 28px;
    margin-top: 18px;
  }
  .donates p {
    font-size: 15px;
  }
  /* blog page */
  .blog_section {
    height: 175px;
  }
  .blog_section h1 {
    font-size: 36px;
  }
  .our_blog {
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .blog_card {
    min-height: 333px;
  }
  .blog_card_text h3 {
    font-size: 21px;
  }
  .blog_card_text p,
  .read_more_btn {
    font-size: 15px;
  }
  .blog_card .img-container img {
    min-height: 150px;
    max-height: 150px;
  }
  .navbar-toggler {
    padding: 0;
  }
  .tch-contact-popup .img-container {
    max-width: 150px;
  }
  .img-container img {
    max-height: 200px;
  }
  .tch-contact-popup h3 {
    font-size: 25px;
  }
  .popup-white {
    padding-inline: 26px;
  }
  .add_teacher_form {
    min-width: 90%;
    padding: 24px;
  }
  .teacher-tip-btn {
    padding: 8px 12px;
    font-size: 10px;
  }
  .form-label,
  .form-control {
    font-size: 14px;
  }
  .teacher-search {
    height: 32px;
  }
  .search_Icon {
    width: 16px;
    top: 5px;
  }
}

/*timeline css*/
.timeline {
  padding: 0 0 100px;
}
.timeline h2 {
  color: var(--green-color);
  text-align: center;
  font-size: 28px;
  margin-bottom: 12px;
}
.timeline > p {
  color: var(--text-alt-color);
  font-size: 18px;
  margin-bottom: 80px;
  text-align: center;
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  background: var(--green-color);
}
.timeline ul li:not(:first-child) {
  padding-top: 50px;
}

.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  border: 2px solid var(--yellow-color);
  color: var(--text-color);
}

.timeline ul li div::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -16px;
  border-width: 8px 16px 8px 0;
  border-color: transparent var(--yellow-color) transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -16px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent var(--yellow-color);
}
.timeline ul li i {
  font-size: 32px;
  margin-bottom: 18px;
  color: var(--yellow-color);
}
time {
  display: block;
  font-size: 14px;
  margin-bottom: 16px;
}
.timeline ul li h4 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--dark-green-color);
}
.timeline ul li p {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-alt-color);
}
.timeline_status {
  padding: 5px 16px;
  border-radius: 43px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.timeline_inprogress {
  background-color: #f1ca385c;
  color: #0a0804;
  border: 1px solid #f4d560;
}
.timeline_planned {
  background: #fafdfd;
  color: #1b9b9f;
  border: 1px solid #1b9b9f;
}
.timeline_Conceptual {
  background-color: #e4c5fd;
  color: #51018e;
  border: 1px solid #51018e;
}
.timeline ul li::after {
  transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: var(--yellow-color);
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 91px);
    padding-top: 52px;
  }
  .timeline ul li:nth-child(even) div {
    left: 45px;
  }
  .timeline ul li:nth-child(even) div::before {
    left: -16px;
    border-width: 8px 16px 8px 0;
    border-color: transparent var(--yellow-color) transparent transparent;
  }
  .timeline ul li h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .timeline_status {
    font-size: 12px;
  }
  .timeline ul li i {
    font-size: 24px;
  }
  .timeline ul li p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .timeline ul li::after {
    width: 20px;
    height: 20px;
  }
  .timeline h2,
  .timeline > p {
    padding-inline: 16px;
  }
  .timeline h2 {
    font-size: 22px;
  }
  .timeline > p {
    font-size: 15px;
    margin-bottom: 50px;
  }
  .timeline ul li {
    width: 2px;
  }
  .timeline {
    padding: 0 0 70px;
  }
}
.hero_text h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 3.2rem;
  color: #111;
}
.hero_text .main-btn {
  margin-top: 24px;
}
.main-btn:hover {
  color: var(--black-color);
}
.hero_text .main-btn {
  padding: 9px 24px;
  background-color: #f7c125;
  font-weight: 700;
  font-size: 15px;
  color: #000;
  border-radius: 5px;
  display: block;
  border: none;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
}
.hero_text p {
  margin-top: 14px;
  color: #000;
}
.diamond-grid {
  --grid-max-width: 570px;
  --grid-column-count: 8;
  --grid-gap-count: calc(var(--grid-column-count) / 2 - 1);
  --grid-gap: 16px;
  --grid-unit-width: calc(
    (var(--grid-max-width) - var(--grid-gap) * var(--grid-gap-count)) /
      var(--grid-column-count) * 2);
  --sqrt: 1.41421356237;
  --transform-unit-width: calc(var(--grid-unit-width) / var(--sqrt));
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: var(--grid-gap);
  max-width: var(--grid-max-width);
  width: 100%;
}
.aligned_grid {
  margin-top: -70px;
}
.colored_main {
  color: #1a9ba1;
  font-size: 2.2rem;
  font-weight: 600;  
}
.colored_green_main {
  color: #1a9ba1;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}
span.colored_green_main::after {
  content:"";
  position: absolute;
  border-bottom: 2px solid #1a9ba1;
  width: 100%;
  bottom: 0;
  left:0;
}
.colored_yellow_main {
  color: #f1ca38;
  font-size: 2.4rem;
  font-weight: 700;  
}
.grid-unit {
  grid-column-end: span 2;
  grid-row-end: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--grid-unit-width);
  height: var(--grid-unit-width);
  margin-top: 20px;
}
.grid-unit:nth-child(odd) {
  grid-row-start: 1;
}
.grid-unit:nth-child(even) {
  grid-row-start: 2;
}
.grid-unit:nth-child(1) {
  grid-column-start: 1;
}
.grid-unit:nth-child(2) {
  grid-column-start: 2;
}
.grid-unit:nth-child(3) {
  grid-column-start: 3;
}
.grid-unit:nth-child(4) {
  grid-column-start: 4;
}
.grid-unit:nth-child(5) {
  grid-column-start: 5;
}
.grid-unit:nth-child(6) {
  grid-column-start: 6;
}
.grid-unit:nth-child(7) {
  grid-column-start: 7;
}
.grid-unit a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: var(--transform-unit-width);
  height: var(--transform-unit-width);
  overflow: hidden;
  transform: rotate(45deg);
  border-radius: 16px;
}
.grid-unit a:hover img {
  transform: scale(1.2) rotate(-45deg);
}
.grid-unit img {
  display: block;
  height: var(--grid-unit-width);
  transform: rotate(-45deg);
  transition: all ease 0.3s;
}
@media (max-width: 768px) {
  .diamond-grid {
    --grid-max-width: 340px;
    margin-inline: auto;
  }
  .grid-unit a {
    border-radius: 8px;
  }
  .hero-section {
    margin-top: 18px;
  }
  .hero_text {
    max-width: unset;
    padding-bottom: unset;
    padding-top: 24px;
  }
  .hero_text h1 {
    font-size: 28px;
    line-height: 46px;
  }
  .hero_text p {
    margin-top: 6px;
    font-size: 12px;
  }
  .hero_text .main-btn {
    padding: 6px 32px;
    font-size: 12px;
    margin-top: 16px;
  }
  .coming_soon_bar h4 {
    font-size: 12px;
  }
  .chat-toggle-button {
    padding: 6px 12px;
    font-size: 12px;
  }
}
#resend_email_btn,
#resend_sms_btn {
  background-color: #1b9b9f94 !important;
  padding: 6px 20px;
  border-radius: 4px;
  text-decoration: none !important;
}
.verify_page .section-title {
  margin-bottom: 24px;
  font-size: 28px;
}
.verify_page .section-title h2 {
  color: var(--black-color);
}
/* Style for DataTable length menu dropdown */
.dataTables_length select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='gray'><path fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 30px;
}
.dataTables_length select:focus {
  border-color: var(--yellow-color);
  box-shadow: none;
}
/* Style for the Filter Tips dropdown */
#filter-options {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='gray'><path fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 30px;
}

.tab-pane {
  padding-block-end: 24px;
}
.nav-tabs {
  margin-block-start: 24px;
  margin-block-end: 22px;
  gap: 10px;
}
.nav-tabs .nav-link {
  padding-block: 14px !important;
  border: none;
  font-size: 14px;
  color: rgba(41, 41, 41, 0.7) !important;
  flex-grow: 1;
  padding-inline: 14px !important;
  background-color: var(--green-color);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  color: #fff !important;
}
.nav-tabs .nav-link.nav-link.active {
  color: var(--green-color) !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: 1px solid;
}
.our_story p {
  color: #161616;
  line-height: 21px;
}
.our_story p:not(:last-child) {
  margin-block-end: 10px;
}
.our_story p span {
  font-weight: 700;
  color: var(--green-color);
}
/* our-team */
.our_team .big_text {
  margin-bottom: 40px;
}
.our_team .team-member {
  position: relative;
  margin-top: 80px;
  margin-bottom: 24px;
  padding: 20px;
  padding-top: 80px;
  background-color: #fff;
  border-radius: 16px;
  background: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  min-height: 475px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.our_team .team-member:hover {
  /* transform: scale(1.1); */
  background-color: #1b9b9f2e;
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.our_team .team-member:hover .card_img img {
  padding: 6px;
}
.team-member span {
  color: #707070;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-top: 14px;
}
.team-member .card_img img {
  border-radius: 16px;
  border-radius: 50%;
  max-height: 150px;
  width: 150px;
  object-fit: cover;
  background-color: var(--green-color);
  border: 1px solid var(--green-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card_img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team-member h4 {
  font-size: 20px;
  font-weight: 700;
  margin-block: 14px;
  color: var(--green-color);
}
.team-member p {
  font-weight: 500;
  color: #707070;
}
@media (max-width: 768px) {
  .our_team .team-member {
    min-height: 355px;
  }
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .nav-tabs .nav-link {
    white-space: nowrap;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    font-size: 12px;
    padding-block: 8px !important;
  }
  .nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .our_story_text {
    padding-block-start: 16px;
  }
  .nav-tabs {
    margin-block-end: 24px;
  }
  .our_story p {
    font-size: 12px;
    line-height: 18px;
  }
  .our_story p:not(:last-child) {
    margin-block-end: 6px;
  }
}
/* expand menu */
.expandable {
  position: relative;
}
.expandable::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 32px;
  color: var(--green-color);
}
.expandable.expanded::before {
  content: "\f0d8";
}
.expandable + div {
  display: none;
}
.expandable.expanded + div {
  display: block;
}
.expandable.expanded + div ul li a {
  position: relative;
  color: rgba(41, 41, 41, 0.7);
  font-size: 12px;
  padding-left: 72px;
  padding-block: 6px;
}
.expandable.expanded + div ul {
  margin-top: -8px;
}
.expandable.expanded + div ul li a::before {
  position: absolute;
  content: " ";
  width: 12px;
  height: 2px;
  background-color: rgba(41, 41, 41, 0.7);
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
}
@media (max-width: 767px) {
  .role-choices {
    gap: 46px;
  }
  .role-choice {
    width: 100px;
    height: 100px;
  }
  .role-choice img {
    width: 58px;
  }
  .role-ch-img {
    min-width: 62px;
    height: 46px;
    width: 110px;
    border-radius: 50%;
    max-height: 110px;
  }

  .role-choice span {
    transform: rotate(315deg);
    margin-top: -15px;
    margin-left: -10px;
  }
  .role h1 {
    margin-bottom: 52px;
  }
}
.footer_text a {
  color: #1b9b9f;
  text-decoration: none;
  transition: .2s linear;
}

.footer_text a:hover {
  color: #fff;
  text-decoration: underline;
  transition: .2s linear;
}

/* Remove arrows Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Remove arrows Firefox */
input[type=number] {
  appearance: textfield;
}

.green-btn {
  width: auto;
  background: #1a9ba1;
  color: #fff;
  transition: 0.2s linear;
}
.green-btn:hover {
  background: #f1ca38;
  color: #111;
}

.yellow-btn {
  width: auto;
  background: #f1ca38;
  color: #222222;  
  transition: 0.2s linear;
  font-weight: 700;
  font-size: 1.1rem;
}
.yellow-btn:hover {
  background: #1a9ba1;
  color: #ffffff;
}

.tip-amount-input{
  display: flex; 
  align-items: center;
}
.tip-amount-input span{
  border-right:0;
  border-radius: 8px 0 0 8px;
  padding: .435rem .75rem;
}
.tip-amount-input input{
  border-radius: 0 8px 8px 0;
  margin-right: 5px;
}
.tip-amount-input input::placeholder {
  font-size: 16px;
}

.generic-donation-section{
  padding-top: 6.2rem;
  padding-bottom: 6.2rem;
}

.generic-donation-section form label{
  font-weight: 600;
}