* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  background-color: #FFFFFF;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
}

a img {
  border: none;
  text-decoration: none;
  outline: none;
}

a {
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-decoration: none;
  cursor:pointer;
}

/*
a:hover{color:var(--secondary-color)}
*/
a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  font-size: 16px;
  color: #252525;
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ol,
ul,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

input:focus {
  outline: none;
}

textarea {
  outline: none;
  resize: none;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.p0 {
  padding: 0px;
}

:root {
  --primary-color: #148F3F;
  --secondary-color: #f7f8fa;
}

.form-check-input:checked {
  background-color: #008000;
  border-color: #008000;
}

::-webkit-input-placeholder {
  /* Edge */
  color: rgb(34, 34, 34, .7);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(34, 34, 34, .7);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
}

::placeholder {
  color: rgb(34, 34, 34, .7);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
}

.btn-theme {
  background-color: #9F86D9;
  border: 1px solid #9F86D9;
}

.w100 {
  width: 100%;
}

.container {
  max-width: 1350px;
  width: 96%;
}

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

.navbar {
  padding-top: 5px;
  padding-bottom: 0px;
  margin-left: 35px;
}

.radius-20 {
  border-radius: 20px;
}


.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.bnr-img a {
  display: block;
}

.banner-img-04 {
  margin-top: 18px;
}

.bottom-fixed {
  display: none;
}

.bottom-fixed ul {
  display: flex;
  justify-content: space-around;
}

/* .bottom-fixed ul li {
  width: 25%;
  text-align: center;
} */

.side-menu {
  position: absolute;
  left: 0px;
  width: 35px;
  padding-left: 0px;
  padding-right: 0px;
}

.side-menu i {
  color: #fff;
  cursor: pointer;
  margin-top: 5px;
  display: inline-block;
  margin-left: -2px;
}

.sidebar-navigation {
  width: 400px;
  height: auto;
  background-color: #fff;
  margin: 50px auto;
  -webkit-box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.16);
}

.sidebar-navigation .title {
  display: block;
  font-size: 1.2em;
  background-color: #1e1e1e;
  padding: 20px 25px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sidebar-navigation>ul>li>a {
  text-transform: uppercase;
}

.sidebar-navigation ul {
  margin: 0;
  padding: 0;
}

.sidebar-navigation ul li {
  display: block;
}

.sidebar-navigation ul li a {
  position: relative;
  display: block;
  font-size: 1em;
  font-weight: 600;
  padding: 20px 25px;
  text-decoration: none;
  color: #2e2e2e;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #eee;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.sidebar-navigation ul li a em {
  font-size: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  border-radius: 50%;
}

.sidebar-navigation ul li:hover>a,
.sidebar-navigation ul li.selected>a {
  background-color: #ecf0f1;
  color: #495d62;
  border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-navigation ul li ul {
  display: none;
}

.sidebar-navigation ul li ul.open {
  display: block;
}

.sidebar-navigation ul li ul li a {
  color: #495d62;
  border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-navigation ul li ul li a:before {
  content: "";
  width: 10px;
  height: 1px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  background-color: #495d62;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.sidebar-navigation ul li ul li:hover>a,
.sidebar-navigation ul li ul li.selected>a {
  background-color: #e6ebed;
}

.sidebar-navigation ul li ul li:hover>a:before,
.sidebar-navigation ul li ul li.selected>a:before {
  margin-right: 10px;
}

.sidebar-navigation ul li ul li.selected.selected--last>a {
  background-color: #94aab0;
  color: #fff;
}

.sidebar-navigation ul li ul li.selected.selected--last>a:before {
  background-color: #fff;
}

.subMenuColor1 {
  background-color: #fbfcfc;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.subMenuColor2 {
  background-color: white;
}

.close-ic img {
  width: 35px;
}

.right-blk .dropdown-menu {
  width: 200px;
  border-top: 5px solid var(--primary-color);
  padding-top: 5px;
  padding-top: 5px;
}

.right-blk .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.right-blk .dropdown-menu li {
  display: block;
}

.right-blk .dropdown-toggle::after {
  display: none;
}

.right-blk .dropdown-menu li a {
  color: #000;
  padding: 5px 15px;
}

.right-blk .dropdown-menu li a:hover {
  background-color: #555555;
  color: #fff;
}

@keyframes slideup {
  from {
    transform: translateY(-20%);
  }

  to {
    transform: translateY(0);
  }
}

.title {
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  color: #222222;
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 10px;
  /* text-transform: uppercase; */
}

.c_margin {
  margin-top: 35px;
}

.custompad {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* .custompad-2 {
  padding-top: 30px;
  padding-bottom: 30px;
} */

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

/* .search-dropdown .form_fi {
  border: none;
  border-bottom: 1px solid #222222;
  border-radius: 0px;
  padding-bottom: 7px;
  padding-left: 30px;
} */

.search-dropdown .form_fi {
  border: none;
  border-radius: 0px;
  background: transparent;
  width: 100%;
}

/* .btn-search {
  position: absolute;
  left: 0px;
  background-color: transparent;
  padding: 0;
  border: 0;
  top: -2px;
} */

.fa-search {
  width: 20px;
}


.banner-sec {
  position: relative;
}


.clamp {
  --lines: 3;
  /* change this to limit lines */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: var(--lines);
  /* core property */
  line-clamp: var(--lines);
  /* future syntax (some engines) */
  /* optional niceties */
  text-overflow: ellipsis;
}

.one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

footer {
  background-color: #2D2D2D;
  padding-top: 40px;
  padding-bottom: 40px;
}

footer .col1 p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
  color: #fff;
}

footer .footer-logo {
  margin-bottom: 20px;
}

/* footer .footer-col .links {
  column-count: 2;
  column-gap: 30px;
} */

footer ul.social-links li {

  background-color: #585047;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
}

footer ul.social-links li:hover {
  background-color: var(--primary-color);
}

footer ul.social-links li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

footer ul.social-links li i {
  color: #ffffff;
  font-size: 18px;
}

footer ul.links li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  display: block;
  padding-bottom: 50px;
  text-transform: uppercase;
}

footer ul.links li a:hover {
  color: var(--primary-color);
}

footer ul.links li:first-child a {
  padding-top: 0px;
}

footer ul.links li:last-child a {
  padding-bottom: 0px;
}

footer ul.links li:nth-child(3) a {
  padding-top: 0px;
}

footer .col3 h5 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
}

footer .col3 a {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

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

footer .connectwith-us {
  margin-top: 40px;
}

footer .social-links {
  margin-top: 20px;
}

footer .connectwith-us h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.search-dropdown2 {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 90%;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 8888;
}

.assured img {
  width: 140px;
}


.login-modal .modal-content {
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
}

.login-modal .modal-header {
  border-bottom: none;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}

.login-modal .modal-body {
  padding: 0;
  text-align: center;
}

.login-modal .modal-body-content {
  padding: 30px;
  background: #f2f2f2;
  width: 50%;
  /* display: flex;
  /* flex-direction: column;
  justify-content: center; */
}

.login-modal .login-header {
  color: #1e1e1e;
  text-align: left;
  font-size: 30px;
  line-height: normal;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 10px;
}

.login-modal .login-subtext {
  color: #1E1E1E;
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.5;
  font-family: "Nunito Sans", sans-serif;
}

.login-modal input.form-control {
  border-radius: 8px;
  /* margin-bottom: 15px; */
  padding: 10px;
}

.login-modal .btn-login {
  background-color: #43A047;
  color: #ffffff;
  font-weight: 500;
  width: 100%;
  border-radius: 8px;
  height: 50px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
}

.login-modal .social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.login-modal .social-login button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
}

.login-modal .form-control {
  color: #1e1e1e;
  text-align: left;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.4;
  background-color: #fff;
  height: 50px;
}

.form-control-label {
  color: #222222;
  text-align: left;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  width: 100%;
  /* margin-bottom:10px; */

}

.login-modal .top-icons {
  display: flex;
  justify-content: center;
  /* gap: 20px; */
  width: 50%;
}

.login-modal .top-icons img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* otp */

.otp-wrapper>h2 {
  color: #1e1e1e;
  text-align: left;
  font-size: 30px;
  line-height: 150%;
  font-weight: 600;
  margin-bottom: 10px;
}

.otp-wrapper p {
  color: #1e1e1e;
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.5;
}

.otp-wrapper .resend {
  font-size: 14px;
  color: rgb(34, 34, 34, .5);
  cursor: pointer;
  margin-left: 5px;
}

.resend span {
  color: rgb(34, 34, 34);
}

.back-login {
  color: #1e1e1e;
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  opacity: 0.5;
  width: 100%;
  display: flex;
}

.back-login:hover {
  text-decoration: underline;
}

.register {
  text-align: right;
  color: rgba(30, 30, 30, 0.5);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  width: 100%;
}

.register>span {
  font-size: 14px;
  color: #f37021;
  cursor: pointer;
  margin-left: 5px;
}

.btn-closeme {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 44;
  padding: 0px;
  background-color: transparent;
  border: none
}

.password-toggle {
  position: absolute;
  top: 75%;
  right: 15px;
  transform: translateY(-75%);
  cursor: pointer;
  color: #6c757d;
}

.fg-pwd {
  color: #222222;
  margin-bottom: 10px;
}

.clikregister {
  font-size: 13px;
}

.login-modal .modal-dialog {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.backtome {
  color: rgb(30, 30, 30, .5);
  font-size: 16px;
}

.backtome .fa-chevron-left {
  font-size: 12px;
}

hr.style1 {
  border-color: #DFDFDF;
  margin-top: 15px;
  margin-bottom: 15px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px 12px;
  cursor: pointer;
}

header {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.country-select .select2-container {
  box-sizing: border-box !important;
  width: 140px !important;
  /* fallback; primary set via JS option */
}

/* Selected box */
.country-select .select2-container .select2-selection--single {
  height: 45px;
  display: flex !important;
  align-items: center !important;
  justify-content: start !important;
  padding-left: 8px;
  border: 1px solid rgb(170, 170, 170, .7);
  border-radius: 8px;
}

.country-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
}

/* Text inside selected */
.country-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
}

/* Image inside selected option */
.country-select .select2-container--default .select2-selection--single .select2-selection__rendered img {
  width: 28px;
  height: 28px;
  border-radius: 50px;
  object-fit: contain;
}

/* Dropdown items */
.country-select .select2-results__option {
  display: flex !important;
  align-items: center !important;
  gap: 6px;
  font-size: 14px;
  padding: 6px;
}

.country-select .select2-results__option img {
  width: 28px;
  height: 28px;
  border-radius: 50px;
}

.right-blk {
  display: flex;
  gap: 20px;
  align-items: center;
}

.right-blk ul li a {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #222222;
}

.menu ul li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.menu ul li a {
  font-weight: 400;
  font-size: 20px;
  color: #222222;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;
}

.menu ul li a.active {
  font-weight: 600;
  color: #148F3F;
  border-bottom: 2px solid #148F3F;
}

.menu ul li a:hover {
  color: #148F3F;
  font-weight: 600;
}

.logo {
  width: 70px;
}

.logo a {
  display: block;
}

.myBanner .swiper-slide {
  width: 80%;
  /* center width */
}

.myBanner .swiper-slide.swiper-slide-prev img {
  opacity: .5;
}

.myBanner .swiper-slide.swiper-slide-next img {
  opacity: .5;
}

.myBanner .swiper-slide img {
  border-radius: 30px;
}

.myBanner .swiper-wrapper {
  margin-bottom: 40px;
}

.myBanner .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.myBanner .swiper-pagination-bullet {
  background-color: rgb(20, 143, 63, .7);
  width: 10px;
  height: 10px;
}

.myBanner .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  height: 20px;
}

.r-md-30 {
  border-radius: 30px;
}

.custom_bg_1 {
  background-image: url(../images/without-streak_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* .workoutstreak{padding:30px 30px} */
.workoutstreak .wrap {
  padding: 30px 30px
}

.workoutSwiper {
  width: 100%;
  padding: 40px 0 0px;
}

.workoutSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.workoutSwiper .day {
  width: 90px;
  height: 200px;
  /* background: linear-gradient(to bottom, #222, #111); */
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  /* opacity: 0.6; */
  background-color: rgb(255, 255, 255, .10);
  border: 1px solid rgb(255, 255, 255, .10);
}

.workoutSwiper .status {
  font-size: 24px;
  margin-bottom: 6px;
  color: #fff;
}

/* .workoutSwiper .done {
  color: #a9f77a;
} */
/* .workoutSwiper .miss {
  color: #f77979;
} */
.workoutSwiper .upcoming {
  color: #94a38b;
}

.workoutSwiper .weekday {
  font-size: 12px;
  letter-spacing: 0.6px;
  opacity: 0.9;
  font-weight: 600;
}

.workoutSwiper .date {
  font-size: 30px;
  font-weight: 600;
  margin-top: 4px;
}

.workoutSwiper .label {
  font-size: 12px;
  margin-top: 8px;
  color: #aaa;
}

.workoutSwiper .currentdate {
  font-size: 11px;
  color: #bbb;
  margin-top: 40px;
}

/* Highlight center (today) */
.workoutSwiper .swiper-slide-active .day {
  transform: scale(1.25);
  opacity: 1;
  background: linear-gradient(to top,
      rgb(234, 255, 84, .9) 0%,
      rgb(234, 255, 84, .5) 25%,
      rgba(94, 99, 61, 0) 50%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.workoutSwiper .swiper-slide-active .status {
  margin-top: -40px;
  margin-bottom: 40px;
}

.workoutSwiper .today {
  background: linear-gradient(to bottom, #4d523b, #a2a942);
  opacity: 1;
}

.workoutSwiper .status {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  border: 1px solid #D2F1DD;
  text-align: center;
}

.workoutSwiper .status.upcoming {
  border: dashed 1px #fff
}

.cal-ic {
  cursor: pointer;
}

.arrow-space {
  display: flex;
  gap: 5px;
}

.swiper-button-prev1.swiper-button-disabled,
.swiper-button-next1.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
  /* disable click */
}

/* .activity-slider .swiper-slide{padding:30px 30px} */
.swiper-slide .activity-box {
  background-image: url(../images/activity_1.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* .swiper-slide .box-1{background-image:url(../images/activity_1.png);background-repeat: no-repeat;background-size: cover;}
.swiper-slide .box-2{background-image:url(../images/activity_2.png);background-repeat: no-repeat;background-size: cover;}
.swiper-slide .box-3{background-image:url(../images/activity_3.png);background-repeat: no-repeat;background-size: cover;} */
.user-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.user-name i {
  display: inline-block;
  margin-right: 15px;
}

.user-name i img {
  border-radius: 50px;
}

.workout-name-label {
  font-size: 14px;
}

.workout-name {
  font-size: 24px;
  font-weight: 600;
}

.activity-box p {
  font-size: 12px;
  font-weight: 400;
}

.workout-time {
  padding: 13px 17px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}

.workout-time p {
  color: #99DD33;
  margin-bottom: 0px;
  font-weight: 600;
}

.play_btn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #99DD33;
  text-align: center;
  cursor: pointer;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16/9;
}

.video-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.video-content .close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.viewall {
  font-size: 20px;
  font-weight: 600;
  color: #148F3F;
}

.coach-area .cate-link {
  color: #222222;
  font-size: 18px;
  font-weight: 600;
  display: block;
  text-align: center;
}

.coach-area .img-box {
  width: 160px;
  height: 160px;
  position: relative;
  background: #fff;
  border-radius: 222px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.coach-area img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0px;
  left: 0;
  margin: auto;
  max-width: 99%;
  max-height: 99%;
  border-radius: 222px;
}

.workout-slider .swiper-slide {
  height: auto;
}

.workout-box {
  padding: 30px 20px;
  border-radius: 30px;
  height: 100%;
}

.workout-box:before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background: #1DB954;
  background: linear-gradient(180deg, rgba(29, 185, 84, 1) 0%, rgba(13, 83, 38, 1) 100%);
  z-index: 1;
  border-radius: 20px;
}

.user-level {
  background-color: rgb(210, 241, 221, .4);
  color: #fff;
  display: inline-block;
  padding: 4px 15px;
  border-radius: 20px;
}

.days-re,
.excise-type {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 15px;
}

.fa-whatsapp,
.fa-envelope {
  color: var(--primary-color);
}

.profile-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
}

.profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.edit-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #148F3F;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.edit-btn:hover {
  background: #009ba0;
}

.profile-container input[type="file"] {
  display: none;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group.style2 i {
  position: absolute;
  left: 0px;
  top: 15px;
  color: rgba(0, 0, 0, 0.8);
}

.form-group.style2 input {
  width: 100%;
  padding: 12px 12px 12px 30px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  transition: border-color 0.3s;
  background-color: transparent;
}

.otp-container {
  margin-top: 20px;
}

.otp-container label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

.otp-inputs {
  display: flex;
  gap: 40px;
}

.otp-inputs input {
  width: 25%;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}

.otp-inputs input:focus {
  border-color: #000;
}

.or-div {
  text-align: center;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

.or-div span {
  font-size: 14px;
  font-weight: 500;
  padding: 0px 10px;
  background-color: #f5f5f5;
  position: relative;
  z-index: 2;
}

.or-div:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(34, 34, 34, .1);
  z-index: 1;
}

.plan-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  padding: 14px 18px;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.plan-card:hover {
  border-color: #4caf50;
}

/* Hide default radio */
.plan-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

/* Add tick when checked */
.plan-card input[type="radio"]:checked {
  border-color: #148F3F;
  background-color: #148F3F;
}

.plan-card input[type="radio"]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 13px;
  position: absolute;
  top: 0px;
  left: 4px;
}

.plan-details h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 5px;
}

.plan-details p {
  font-size: 14px;
  color: #222222;
  margin-bottom: 0px;
}

/* Active card border when checked */
.plan-card input[type="radio"]:checked~.plan-details h4 {
  color: #2e7d32;
}

.plan-card input[type="radio"]:checked~.plan-details p {
  color: #2e7d32;
}

.plan-card input[type="radio"]:checked:focus-visible {
  outline: none;
}

.freeworkout .workout-box {
  position: relative;
}

.freeworkout .workout-box .wrap {
  position: relative;
  z-index: 5;
}

.freeworkout .workout-box .img-area {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  right: 0px;
  z-index: 4;
}

.freeworkout .col-blk {
  margin-top: 12px;
  margin-bottom: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0px 0 0;
}

.page {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #222222;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  font-weight: 700;
}

/* active page */
.page.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* hover effect */
.page:hover:not(.active) {
  background: var(--primary-color);
  color: #fff;
}

/* prev / next special styling */
.page.prev,
.page.next {
  border: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  /* keep items in one line */
  overflow-x: auto;
  /* enable horizontal scroll */
  white-space: nowrap;
  /* prevent wrapping */
  scrollbar-width: thin;
  /* Firefox thin scrollbar */
}

.bread-crumb-wrap {
  padding-bottom: 30px;
}

.breadcrumb li a {
  font-weight: 400;
  font-size: 20px;
  color: rgb(34, 34, 34, .5);
}

.breadcrumb-item.active {
  font-weight: normal;
  font-size: 20px;
  color: #000;
}

.breadcrumb-item+.breadcrumb-item::before {
  font-size: 20px;
}

/* ==== Scoped Modern Green Theme for #datepicker2 only ==== */

#datepicker2 .ui-datepicker {
  width: 100%;
  padding: 20px 30px;
  border: none;
  border-radius: 16px;
  background: #F4F4F4;
  height: 100%;
}

#datepicker2 .ui-datepicker-header {
  background: none;
  border: none;
  color: #333;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
}

#datepicker2 .ui-datepicker-title {
  font-size: 30px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 20px;
}

#datepicker2 .ui-datepicker-prev,
#datepicker2 .ui-datepicker-next {
  cursor: pointer;
  color: rgb(34, 34, 34, 0.5);
  top: 10px;
}

#datepicker2 .ui-datepicker-prev:hover,
#datepicker2 .ui-datepicker-next:hover {
  background: none;
  color: #1b5e20;
}

#datepicker2 .ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

#datepicker2 .ui-datepicker-calendar th {
  color: #148F3F;
  font-weight: 400;
  padding: 6px 0;
  font-size: 24px;
  text-transform: uppercase;
}

#datepicker2 .ui-datepicker-calendar td {
  padding: 8px 0;
}

#datepicker2 .ui-state-default {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  border-radius: 50px;
}

#datepicker2 .ui-state-default:hover {
  background: #e0f2f1;
}

#datepicker2 .ui-state-active {
  background: #2e7d32 !important;
  color: #fff !important;
  font-weight: 500;
}

#datepicker2 .ui-datepicker-calendar td a {
  font-size: 24px;
}

#datepicker2 .ui-datepicker-calendar td.ui-state-disabled span {
  color: #ccc;
}

#datepicker2 .ui-datepicker-prev span,
#datepicker2 .ui-datepicker-next span {
  display: none;
}

#datepicker2 .ui-datepicker-prev:before {
  content: url(../images/cal-left.svg);
}

#datepicker2 .ui-datepicker-next:before {
  content: url(../images/cal-right.svg);
}

.f-30 {
  font-weight: 600;
  font-size: 30px;
}

.today-summary {
  padding: 30px 30px;
  background-color: #F4F4F4;
  border-radius: 16px;
}

.today-summary h3 {
  margin-bottom: 30px;
}

.accord_wrap .custom_accordion {
  padding: 15px 15px;
  background-color: #fff;
  margin-top: 25px;
  border-radius: 20px;
}

.accord_wrap .accordion-button:not(.collapsed) {
  background-image: url(../images/up-arrow.svg);
  background-position: right;
  /*transform: rotate(180deg);*/
}

.accord_wrap .accordion-button {
  background-image: url(../images/down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  background-position: center right 0px;
}

.accord_wrap .accordion-button {
  font-size: 20px;
  font-weight: 600;
}

.face-01 {
  display: inline-block;
}

.face-01 img {
  width: 20px;
}

.name-01 {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
}

.video-thumb {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* video fills box */
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.play-icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
}

.c-completed {
  font-size: 14px;
  color: #148F3F;
  text-align: end;
}

.c-completed i {
  margin-top: -5px;
  position: relative;
}

.not-completed {
  font-size: 14px;
  color: #FF0000;
  text-align: end;
}

.not-completed i {
  margin-top: -5px;
  position: relative;
}

.video-block {
  margin-bottom: 1rem;
}

.video-block:last-child {
  margin-bottom: 0px;
}

.video-block ul li {
  display: inline-block;
  font-size: 14px;
}

.video-block h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-specs {
  margin-top: 20px;
}

.coach-box {
  border: 1px solid #148F3F;
  padding: 20px 20px;
  border-radius: 30px;
}

.coach-name {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 10px;
}

.total-workout {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 10px;
}

.total-participant {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  display: flex;
  align-items: center;
}

.coach-box .img-box img {
  border-radius: 20px;
  width: 100%;
}

.total-participant ul {
  display: flex;
  margin-left: 5px;
  flex-shrink: 0;
}

.total-participant ul li {
  display: flex;
  margin: 0px -5px;
}

.total-participant ul li img {
  width: 24px;
  border-radius: 50%;
}

.all-coaches .col-blk {
  margin-top: 12px;
  margin-bottom: 12px;
}

.single-line-text {
  white-space: nowrap;
  /* Prevents text from wrapping to the next line */
  overflow: hidden;
  /* Hides any content that overflows the element's box */
  text-overflow: ellipsis;
  /* Displays an ellipsis (...) to indicate truncated text */
}

.coach-block {
  border-radius: 30px;
  text-align: center;
  background-color: #F4F4F4;
  border-radius: 30px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coach-block .coach-thumb {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.bg-grey {
  background-color: #F4F4F4;
}

.about_trainer {
  padding: 30px 30px;
  border-radius: 30px;
  height: 100%;
}

.about_trainer h2 {
  color: #222222;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #148F3F;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.about_trainer p {
  font-size: 18px;
  line-height: 36px;
}

.coach-album-images {
  padding: 30px 30px;
  border-radius: 30px;
  height: 100%;
}

.coach-album-images h2 {
  color: #222222;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 10px;
}


.album-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.album-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  width: 25%;
  padding: 0px 15px;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

.album-item:hover {
  transform: scale(1.05);
}

.album-item img,
.album-item video {
  width: 100%;
  height: 95px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.album-item .play-icon-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-content {
  max-width: 700px;
  text-align: center;
}


.lightbox-content img,
.lightbox-content video {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
  margin: auto;
}

.lightbox.active .lightbox-content img,
.lightbox.active .lightbox-content video {
  opacity: 1;
  /* transform: scale(1); */
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.play-icon-2 img {
  width: 24px;
  height: 24px;
}

.add-list {
  background-color: rgb(255, 255, 255, .2);
  padding: 7px 13px;
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: none
}

.plan-type {
  padding: 7px 13px;
  color: #222222;
  border-radius: 50px;
  font-size: 12px;
  background-color: #BEFFAF;
  font-size: 12px;
  font-weight: 600;
}

.chat-now {
  font-size: 16px;
  font-weight: 600;
  background-color: #148F3F;
  border-radius: 50px;
  width: 140px;
  height: 40px;
  border: none;
  color: #fff;
  text-align: center;
  line-height: 40px;
}

.workout-details .box1 {
  text-align: center;
  position: relative;
  padding: 20px 20px;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.workout-details .box1:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0px;
  left: 0;
  background-image: url(../images/bg_overlay.png);
  background-position: bottom;
  z-index: 0;
  background-size: cover;
}

.workout-details .box1 h4 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.workout-details .box1 .wrap {
  position: relative;
  z-index: 55;
}

.workout-details .box1 p {
  font-size: 12px;
  color: #fff;
}

.sub_btn {
  background-color: #148F3F;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  height: 45px;
  line-height: 45px;
  width: 100%;
}

.about_trainer-2 {
  padding: 20px 20px;
  border-radius: 20px;
  height: 100%;
}

.about_trainer-2 h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about_trainer-2 p {
  font-size: 15px;
  line-height: 30px;
  color: rgb(34, 34, 34, .7);
}

.head-1 img {
  width: 50px;
}

.create_pro {
  border: 1px solid #148F3F;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #148F3F;
  height: 45px;
  line-height: 45px;
  width: 100%;
}

.workout-details-wrap {
  padding: 20px 20px;
  border-radius: 20px;
  height: 100%;
}

.workout-details-wrap h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222222;
}

.workout-details-wrap .box {
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  border-radius: 15px;
  padding: 20px;
  margin-top: 15px;
}

.workout-card {
  width: 100%;
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.workout-header {
  background-color: #C8E7D3;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.workout-header h3 {
  font-size: 30px;
  font-weight: 600;
  color: #222;
}

.completed-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #1a7f40;
}

.completed-mark input {
  accent-color: #1a7f40;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  appearance: none;
  border: 2px solid #1a7f40;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.pending {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pending input {
  accent-color: #FFFFFF;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  appearance: none;
  border: none;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  color: #222222;
}

.completed-mark input:checked {
  background-color: #1a7f40;
}

.completed-mark input:checked::after {
  content: '✔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 12px;
  color: white;
}

.exercise-list {
  border: 1px solid #DFDFDF;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  overflow: hidden;
}

.exercise-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}

.exercise-item:last-child {
  border-bottom: none;
}

.exercise-left {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 50%;
}


.exercise-left span {
  font-size: 22px;
  font-weight: 400;
  color: #222;
}

.exercise-right {
  font-size: 20px;
  color: rgb(34, 34, 34, .7);
  width: 50%;
  text-align: right;
}

.exercise-item:nth-child(even) {
  background-color: #f7f8f9;
}

.exercises .col-blk {
  margin-bottom: 20px;
}

.backto a {
  color: rgb(34, 34, 34, .5);
  font-size: 20px;
}

.video_block {
  position: relative;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.video_block::after {
  position: absolute;
  top: 0px;
  height: 50%;
  left: 0px;
  right: 0px;
  background-color: #E8F8DE;
  content: "";
  z-index: -2;
}

.video_block .video-container {
  position: relative;
  width: 100%;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
}

.video_block .video-container .custom-video {
  width: 100%;
  height: auto;
  display: block;
}

.video_block .video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 2em;
  border-radius: 50%;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, opacity 0.3s;
  opacity: 1;
  animation: fadeIn 0.5s;
  width: 90px;
  height: 90px;
}

.video_block .video-container .play-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.video_block .video-container .play-button:focus {
  outline: none;
}

.video_block .video-container .play-button.hidden {
  opacity: 0;
  pointer-events: none;
  animation: fadeOut 0.5s;
}

.video_block .video-container .play-button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.excercise-details .box {
  padding: 20px 20px;
  background-color: #F4F4F4;
  border-radius: 20px;
  height: 100%;
}

.excercise-details .box h4 {
  font-size: 24px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 10px;
}

.excercise-details .box p {
  font-size: 15px;
  color: rgb(34, 34, 34, .7);
}

.excercise-details .box-in {
  background-color: #D2F1DD;
  border-radius: 10px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sets-tracker {
  padding: 17px 17px;
  background-color: #FFFFFF;
  border-radius: 10px;
}

.sets-tracker h3 {
  font-size: 20px;
  color: #222222;
}

.next-exercise {
  margin-top: 20px;
}

.next-exercise .exercise-list {
  border: none;
  background-color: #F4F4F4;
  border-radius: 20px;
}

.next-exercise .exercise-itemt {
  padding: 20px 20px;
  background-color: #F4F4F4;
}

.duration {
  color: #222222;
  font-size: 20px;
}

.custom-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999999;
  /* higher so it stays above everything */
}

.custom-video-modal video {
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
}

.custom-video-modal .custom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1000000;
}


.subscription-box {
  padding: 35px 20px;
  background: #1DB954;
  background: linear-gradient(180deg, rgba(29, 185, 84, 1) 0%, rgba(13, 83, 38, 1) 100%);
  border-radius: 30px;
  text-align: center;
}

.sub-coach-thumb {
  width: 80px;
  border-radius: 50px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.sub-coach-name {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

.subplan-type {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
}

.subplan-price {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.subplan-price span {
  font-weight: 300;
}

.choose-myplan {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  width: 100%;
  padding: 10px 30px;
  margin-top: 15px;
  display: block;
}

.plandetails-sub .col-blk {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.f-24 {
  font-size: 24px;
  font-weight: 500;
  color: #222222;
}

.custom_bg {
  background-color: #F4F4F4;
}

.my-account-tab {
  background-color: #FFFFFF;
  padding: 15px 15px;
  border-radius: 10px;
}

.my-account-tab ul li {
  margin-bottom: 15px;
}

.my-account-tab ul li:last-child {
  margin-bottom: 0px;
}

.my-account-tab ul li a {
  padding: 15px 15px;
  display: block;
  background-color: #F4F4F4;
  color: #222222;
  border-radius: 10px;
}

.icon-c2 {
  background-color: #222222;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-decoration: none;
}

.my-account-tab ul li a:hover {
  background-color: rgb(67, 160, 71,.1);
  color: #43A047;
}

.my-account-tab ul li a:hover .icon-c2 {
  background-color: var(--primary-color);
}

.my-account-tab ul li a.active {
  background-color: rgb(67, 160, 71, .1);
  color: #43A047;
}

.my-account-tab ul li a.active .icon-c2 {
  background-color: #43A047;
}

.person-info {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 10px;
}

.person-info .img-box {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  background-color: rgb(50, 192, 196, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.person-info .img-box img {
  border-radius: 50%;
  object-fit: cover;
}

.person-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.person-info h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 0px;
  color: #32C0C4;
}

.person-info p {
  font-size: 16px;
  margin-bottom: 3px;
  color: rgb(33, 33, 33, .5)
}

.edit_pro {
  padding: 12px 30px;
  border-radius: 10px;
  background-color: rgb(67, 160, 71, .1);
  color: var(--primary-color);
  display: inline-block;
  text-align: center;
}

.order-info {
  background-color: #fff;
  padding: 25px 25px;
  border-radius: 20px;
}

.icon-h3 {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #43A047;
  line-height: 50px;
  text-align: center;
}

.order-info2 h3 {
  color: #222222;
  font-size: 20px;
  font-weight: 500;
}

.order-info2 p {
  font-size: 14px;
  font-weight: 400;
  color: rgb(34, 34, 34, .7);
}

.c_btn {
  padding: 10px 20px;
  bordeR: 1px solid #32C0C4;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-block;
}

.c_btn2 {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-block;
}

.training-info {
  background-color: #D2F1DD;
  padding: 30px 30px;
  border-radius: 20px;
  height: 175px;
}

.training-info .col {
  border-right: 1px solid rgb(34, 34, 34, .5)
}

.training-info .col:last-child {
  border-right: none;
}

.plan-card-2 {
  width: 100%;
  background: #0e8f49;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 10px 10px;
  height: 175px;
}

.plan-card-2 h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}


.plan-card-2 p {
  color: #fff;
  margin-bottom: 0px;
}

.plan-card-2 .price {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.validity-text {
  margin: 0 0 5px;
  font-size: 14px;
  opacity: 0.9;
  color: #fff;
}

.status-badge {
  background: #D2F1DD;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #148F3F;
}

.plan-card-2 .value {
  font-size: 16px;
  font-weight: 600;
}

.edit-profile-wrap{padding:20px 20px;border-radius:10px;}
.form-label {
  color: rgb(34, 34, 34, .5);
  font-size:16px;
}

.form-control {
  padding: 15px 15px;
  background-color:#F4F4F4;
}

.buttons {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.buttons button {
  /* padding: 10px 20px; */
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
}

.cancel-btn {
  color: var(--primary-color);
  background-color: transparent;
  margin-right: 1rem;
  height: 40px;
  line-height: 40px;
  text-align: center;

}

.save-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  min-width: 140px;
  border-radius: 5px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.plan-box{padding:20px 20px;background-color:#fff;border-radius:20px;}
.plan-box h5{color:rgb(34, 34, 34,.5);font-size:16px;font-weight:600;margin-bottom:0px;}
.plan-price{font-size:16px;font-weight:700;}
.plan-price span{font-weight:400;}
.plan-status{font-size:14px;padding:3px 10px;border-radius:5px;border-radius:50px;}
.plan-status.active{color:#148F3F;background-color:rgb(20, 143, 63,.1);}
.plan-status.expired{color:#FF0000;background-color:rgb(255, 0, 0,.1);}
.trainer-name img{width:24px;margin-right:10px;}
.trainer-name,.valid-till{font-size:16px;color:#222222;font-weight:700;display:flex;line-height:normal;}
.valid-till{text-align: right;}
.my-plan .col-blk{margin-top:12px;margin-bottom:12px;}
.renew-plan{color:#148F3F;font-size:16px;font-weight:600;}
.plan-box p{font-size:16px;}


/* Left sidebar */
.user-list {
    background: #fff;
    border-right: 1px solid #ddd;
    height: 100%;
    overflow-y: auto;
    border-radius: 20px;
}
.user-item {
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 12px;
}
.user-item.active .user-name-2 {
    background: rgba(20,143,63,.2);
}

.user-item .user-name-2 {
    padding: 7px 15px 7px 25px;
    margin-bottom: 0px;
    margin-left: -25px;
    width: 75%;
    border-top-right-radius:50px;
    border-bottom-right-radius:50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:14px;
    font-weight:600;
}

.user-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

/* Header */
.chat-header {
    background: #C9E8D4;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #c3d9c3;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
}
.chat-header-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Chat body */
.chat-body {
    padding: 20px;
    height:620px;
    overflow-y: auto;
    background: #fafafa;
}

.date-label {
    text-align: center;
    background: #e2e2e2;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 12px;
    margin: 10px auto;
}

/* Bubbles */
.msg {
    padding: 12px 16px;
    border-radius: 15px;
    margin-bottom: 15px;
    max-width: 70%;
    position: relative;
}
.msg.them {
    background: #f0f0f0;
    color: #222;
}
.msg.me {
    background: #25a351;
    color: white;
    margin-left: auto;
}

.msg-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
    display: block;
    text-align: right;
}

/* Footer */
.chat-footer {
    padding: 12px;
    background: #fff;
    border-top: 1px solid #ddd;
}
.footer-input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: #f0f0f0;
    border-radius: 20px;
}
.footer-btn {
    width: 42px;
    height: 42px;
    background: #25a351;
    border-radius: 50%;
    border: none;
    color: white;
}

.unread-count {
    background: #25a351;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: auto;
}
     
.unread-count:empty{
    display: none !important;
}

.terms-page h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #222222;
}
.terms-page h5{margin-bottom:10px;}
.terms-page p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: rgb(34, 34, 34, .7);
  margin-bottom:10px;
}

.terms-page ul {
  padding-left: 33px;
  margin-bottom:10px;
}

.terms-page ul li {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  color: rgb(34, 34, 34, .7);
  list-style: disc;
}

.empty-sapce{height:55px;}