@charset "UTF-8";
/**
 * Variables
 * =================================
 * - Typography
 * - Breakpoints
 * - Paths
 * - Layout & Grid
 * - App-specific
 */
/* stylelint-disable indentation */
/**
 * MYFITNESS reset
 * =================================
 * We use normalize.css for the bulk of our 'reset'
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?tic56m');
  src:  url('../fonts/icomoon.eot?tic56m#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?tic56m') format('truetype'),
    url('../fonts/icomoon.woff?tic56m') format('woff'),
    url('../fonts/icomoon.svg?tic56m#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-fi-rr-upload:before {
  content: "\e904";
}
.icon-fi-rr-trash:before {
  content: "\e905";
}
.icon-fi-rr-edit:before {
  content: "\e906";
}
.icon-fi-rr-download:before {
  content: "\e907";
}
.icon-fi-rr-print:before {
  content: "\e908";
}
.icon-double-check:before {
  content: "\e909";
}
.icon-fi-sr-check:before {
  content: "\e90a";
}
.icon-fi-rr-badge:before {
  content: "\e90b";
}
.icon-fi-rr-box-alt:before {
  content: "\e90c";
}
.icon-fi-rr-credit-card:before {
  content: "\e90d";
}
.icon-fi-rr-shield:before {
  content: "\e90e";
}
.icon-fi-rr-bell:before {
  content: "\e90f";
}
.icon-fi-rr-book-alt:before {
  content: "\e910";
}
.icon-fi-rr-gym:before {
  content: "\e911";
}
.icon-fi-rr-user:before {
  content: "\e912";
}
.icon-fi-rr-sign-in:before {
  content: "\e903";
}
.icon-fi-rr-settings:before {
  content: "\e900";
}
.icon-fi-rr-calendar:before {
  content: "\e901";
}
.icon-fi-rr-home:before {
  content: "\e902";
}


html {
  box-sizing: border-box;
}
html * {
  box-sizing: inherit;
}

body,
button,
h1,
h2,
h3,
h4,
h5,
h6,
input,
nav,
select,
textarea,
ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

/*********
  hovers
 ********/
a,
button,
input[type=submit] {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
a:hover,
button:hover,
input[type=submit]:hover {
  cursor: pointer;
  color: #2494EA;
}


/**************
  decorations
 *************/
a,
button,
input,
select,
textarea {
  background: none;
  color: inherit;
  border: none;
  text-transform: none;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-enquiry-btn {
  padding: 10px 10px;
  border-radius: 5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  line-height: 18px;
  display: flex;
  gap: 15px;
  position: fixed;
  bottom: 5%;
  right: 0;
  z-index: 999;
  transition: all 0.5s ease;
}
.text-primary{
  color: rgba(3, 53, 180, 1) !important;
}
/**
 * Paragraphs
 */
body {
    font-family: "Inter", sans-serif;
}

p {
  font-size: 1rem;
  font-weight: normal;
  color: #000000;
  line-height: 1.5;
}

/**
 * Headings
 */
h1 {
  font-size: 58px;
  font-weight: 600;
  color: #000000;
}

h2 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #000000;
}

h3 {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
}

h4 {
  font-size: 34px;
  font-weight: 500;
  color: #000000;
}

h5 {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
}

h6 {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

* + h1,
* + .h1,
* + .alpha,
* + h2,
* + .h2,
* + .beta,
* + h3,
* + .h3,
* + .gamma,
* + h4,
* + .h4,
* + .delta {
  margin-top: 0px;
}

.section-heading {
    margin-bottom: 45px;
    text-align: center;
    margin-top: 0;
}
.section-heading h6 {
  font-size: 14px;
  color: #2494EA;
}
.section-heading h2 {
  color: #16213e;
}

.heading-h6 {
  color: #2494EA;
  font-size: 14px;
}

.heading-h2-bs {
  color: #16213e;
  margin-top: 10px;
  line-height: 64px;
}

.heading-h1-bs {
  color: #16213e;
}

.description-p {
  font-size: 17px !important;
  color: #41444b !important;
  line-height: 28px !important;
}

.section-padding {
  padding: 64px 0px;
}
/**
 * Base button styles
 */
.btn {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 16px;
  cursor: pointer;
  border: none;
  margin: 0;
  width: 100%;
  max-width: 230px;
  line-height: 2.5;
  height: 56px;
  padding: 8px 24px 8px 24px;
  overflow: visible;
  text-align: center;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  color: #ffffff;
  transition: all 0.5s ease;
}
.btn.btn-sm {
    height: 32px !important;
    max-width: max-content;
    padding: 0px 16px !important;
}
.btn.gray-btn {
    background-color: #2C3A4B;
    padding: 0px 10px;
    display: flex;
    align-items: center;
}
.btn.tran-btn {
    background-color: transparent;
    padding: 0px 10px;
    display: flex;
    color: #2C3A4B;
    align-items: center;
    border: solid 1px #2C3A4B;
}
.btn.tran-btn:hover {
  color: #da1919;
  border-color: #da1919;
}
.btn:hover {
  color: #ffffff;
}
.btn.disabled, .btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.5;
}

.btn-primary {
  background-color: rgba(23, 79, 223, 1);
  color: #fff;
  transition: all 0.5s ease;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: rgba(3, 53, 180, 1);
  color: #ffffff;
}
.btn-primary:focus {
  outline: 2px solid #333;
}

.btn-light{
  color: rgba(44, 58, 75, 1);
  background-color: #ffffff;
}
.btn-light:hover, .btn-light:active, .btn-light:focus{
   color: rgba(3, 53, 180, 1);
}
.btn-light img{
  transition: filter 0.3s ease;
}
.btn-light:hover img {
    filter: invert(16%) sepia(98%) saturate(4330%) hue-rotate(220deg) brightness(87%) contrast(95%);
}

input[type=submit].btn--block,
input[type=reset].btn--block,
input[type=button].btn--block {
  width: 100%;
}

.js-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 1);
  z-index: 9999999;
  box-shadow: 0px 0px 0px 1px rgba(218, 222, 227, 1);
}
.js-header nav.navbar {
    padding: 0px 0px;
}
.js-header .navbar-brand {
  max-width: 155px;
  margin-right: 80px !important;
}
.js-header .navbar .main-menu .nav-item .nav-link {
  color: rgba(44, 58, 75, 1);
  padding: 39px 10px;
  font-weight: 400;
  font-size: 14px;
}
.js-header .your-location {
  border-radius: 70px;
  border: solid 1px rgba(218, 222, 227, 1);
  height: 48px;
  width: 138px;
  text-align: center;
  padding: 11px 0px;
  margin-right: 32px !important;
  transform: scale(1);
  color: rgba(44, 58, 75, 1);
  font-weight: 500;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
.js-header .form-group {
  width: 340px;
}
.js-header .form-group .search-icon {
  position: absolute;
  top: 11px;
  left: 15px;
}
.js-header .navbar .main-menu {
  margin-left: 32px;
}
.js-header .form-group .search-input {
  border-radius: 70px;
  border: solid 1px rgba(218, 222, 227, 1);
  width: 100%;
  display: inline-block;
  height: 48px;
  padding: 10px 23px 10px 42px;
  font-size: 14px;
}
.js-header .navbar .main-menu .nav-item .dropdown #languageDropdown {
  color: rgba(44, 58, 75, 1);
  font-size: 14px;
  font-weight: 400;
  padding: 13px 10px;
  margin-left: 32px;
  width: auto;
  margin-top: 23px;
}
.js-header .navbar .nav-item .nav-link.login-btn {
  padding-right: 0;
  padding-top: 36px;
  padding-bottom: 37px;
}
.js-header .navbar .main-menu .nav-item .dropdown #languageDropdown:focus,
.js-header .navbar .main-menu .nav-item .dropdown #languageDropdown:hover {
  background-color: transparent;
  color: rgba(44, 58, 75, 1);
  font-size: 14px;
  outline: none;
  font-weight: 400;
  box-shadow: 0px 0px;
}
.js-header .navbar .main-menu .nav-item .dropdown #languageDropdown .fi {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-size: cover;
}
#locationModal .modal-body {
  padding: 15px 40px;
}
#locationModal .modal-dialog {
  max-width: 600px;
}
#locationModal .modal-dialog .modal-content {
  min-height: 414px;
  border-radius: 16px;
 overflow: hidden;
}
#locationModal .modal-dialog .modal-content .modal-title {
  font-size: 24px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
}
#locationModal .modal-body .input-group .form-control {
  border-radius: 0px 8px 8px 0px;
  border-color: rgba(218, 222, 227, 1);
  height: 50px;
}
#locationModal .modal-body .input-group .input-group-text {
  border-radius: 8px 0px 0px 8px;
  border-color: rgba(218, 222, 227, 1);
}
#locationModal .save-list h4 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1);
}
#locationModal .save-list ul li {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 24px !important;
}

#locationModal .save-list ul li .address {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
#locationModal .save-list ul li h6 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1);
  margin-bottom: 6px;
}
#locationModal .save-list ul li span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(44, 58, 75, 1);
}
#locationModal .map-btn {
  position: absolute;
  z-index: 9999;
  bottom: 30px;
  width: 100%;
}
#termsModal,
#couponModal,
#yogaModal,
#forgotPasswordModal,
#signinModal,
#locationModal {
  z-index: 99999999;
}
#termsModal .modal-dialog, #couponModal .modal-dialog {
    max-width: 450px;
}
.modal-backdrop {
  z-index: 9999999;
}
#forgotPasswordModal .modal-content .modal-header .modal-title ,
#signinModal .modal-content .modal-header .modal-title {
  font-size: 32px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
}
#signinModal .modal-content .modal-body {
  padding: 35px;
  padding-top: 69px;
}
#signinModal .modal-content .modal-body .nav li.nav-item .nav-link {
  background-color: #ffffff;
  height: 48px;
  font-size: 16px;
  color: rgba(44, 58, 75, 1);
  font-weight: 500;
}
#signinModal .modal-content .modal-body .nav li.nav-item .nav-link.active {
  color: #fff;
  background-color: rgba(44, 58, 75, 1);
}
#signinModal .modal-content .modal-body .nav {
  border: solid 1px rgba(218, 222, 227, 1);
  border-radius: 9px;
}

#signinModal .modal-content .modal-body .nav .nav-item:nth-child(1) .nav-link {
  border-radius: 8px 0px 0px 8px;
  border-right: solid 1px rgba(218, 222, 227, 1);
}
#signinModal .modal-content .modal-body .nav .nav-item:nth-child(2) .nav-link {
  border-radius: 0px 8px 8px 0px;
}
#signinModal .form-group label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1);
  margin-bottom: 11px;
}
#signinModal .form-group .form-control {
  height: 50px;
  border: solid 1px rgba(218, 222, 227, 1);
  border-radius: 8px;
  font-size: 14px;
}
#signinModal .form-group .forgot-password {
  font-size: 14px;
  font-weight: 400;
  color: rgba(133, 140, 148, 1);
}
.btn.btn-outline-secondary {
  border: solid 1px rgba(218, 222, 227, 1);
  height: 50px;
  color: rgba(44, 58, 75, 1);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
}
.btn.btn-outline-secondary:hover {
  background-color: #ffffff;
}
.gym-details .widget .info-deta p {
    font-size: 12px;
}
.gym-details .widget .info-deta {
    position: absolute;
    left: 0;
    background-color: #f7f7f7;
    right: 0;
    width: 100%;
    padding: 10px;
    overflow: auto;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
.gym-details .widget .info-details:hover ~ .info-deta {
    opacity: 1;
    visibility: visible;
}
.btn-outline-secondary.active {
  background-color: transparent;
  border: solid 1px rgba(3, 53, 180, 1);
  color: rgba(3, 53, 180, 1);
  font-weight: 600 !important;
}
#forgotPasswordModal .modal-body .btn.btn-primary:hover,
#signinModal .btn.btn-primary:hover {
  background-color: #1144c3;
  color: #ffff;
}
#signinModal .border-or {
  position: relative;
}
#signinModal .border-or span {
  background-color: #fff;
  z-index: 999;
  position: relative;
  padding: 0px 16px;
}
#signinModal .border-or:after {
  position: absolute;
  content: '';
  width: 100%;
  background-color: rgba(165, 171, 179, 1);
  height: 1px;
  left: 0;
  top: 10px;
}
#signinModal .strong-password {
  margin-top: 17px;
  margin-bottom: 32px;
}
#signinModal .strong-password li {
  font-size: 12px;
  font-weight: 400;
  color: rgba(84, 93, 105, 1);
  margin: 3px;
}
#signinModal .strong-password li.active {
  color: rgba(42, 157, 69, 1);
}
#signinModal .strong-password li.active svg rect {
  fill: rgba(42, 157, 69, 1);
}
#forgotPasswordModal p {
  text-align: center;
  font-size: 14px;
  color: rgba(133, 140, 148, 1);
  font-weight: 400;
}
#forgotPasswordModal .modal-body {
  padding: 34px;
}
#forgotPasswordModal .modal-body .input-group .form-control {
  height: 50px;
  border: solid 1px rgba(218, 222, 227, 1);
  border-radius: 0px 8px 8px 0px;
}
#forgotPasswordModal .modal-body .input-group .input-group-text {
  border-radius: 8px 0px 0px 8px;
  border: solid 1px rgba(218, 222, 227, 1);
}
.search-drop {
  padding: 28px 0px 69px 0px;
  display: none;
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  top: 99px;
}
.search-drop .container {
  max-width: 977px;
}
.search-drop .container .btn.btn-outline-secondary {
  width: auto;
  border-radius: 8px !important;
  min-width: 95px;
  height: 39px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.search-drop hr{
  margin: 40px 0px;
  background-color: rgba(218, 222, 227, 1);
  opacity: 1;
}
.search-drop .form-select {
  height: 53px;
}
.search-drop label.form-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1);
}
.search-drop .btn.btn-primary.px-4 {
  height: 53px;
  width: 200px;
}
.js-header .form-group .clearIcon {
  position: absolute;
  right: 15px;
  top: 13px;
  display: none;
}
.search-result.search-result-mo-deta {
    display: none;
}
.search-result .course-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 21px;
}
.search-result .course-card img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.search-result .badge-tag {
  background-color: #f0f3ff;
  color: #5a5f73;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  padding: 3px 8px;
}
.search-result .course-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.search-result .course-price {
  font-size: 12px;
  margin: 0;
}
.search-result .course-price span {
  font-weight: bold;
  color: #000;
}
.js-header .search-result {
  position: absolute;
  top: 74px;
  background-color: #fff;
  width: 100%;
  max-width: 340px;
  right: 0;
  border-radius: 0px 0px 8px 8px;
  display: none;
  padding: 15px 0px;
}
.search-drop .form-group .clearIconMobile {
  position: absolute;
  top: 8px;
  right: 11px;
}
.mega-manu {
  padding: 26px 0px 67px 0px;
  display: none;
  position: fixed;
  top: 99px;
  z-index: 999;
  background-color: #fff;
  width: 100%;
  left: 0;
  box-shadow: 0px 0px 0px 1px rgba(218, 222, 227, 1);
}
.mega-manu .widget h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(47, 47, 47, 1);
}
.mega-manu .widget ul {
  padding-left: 42px;
  margin-top: 8px;
}
.mega-manu .widget ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(109, 117, 128, 1);
  padding: 5px 0px !important;
  display: block;
  transition: padding-left 0.3s ease;
}
.mega-manu .widget ul li a:hover {
  padding-left: 8px !important;
  color: #1650df;
}
.mega-manu .container {
  max-width: 1200px;
}


.banner-section {
  position: relative;
  height: 574px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  color: #fff;
  padding-top: 90px;
}
.banner-section .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  height: 574px;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 574px;
  background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.banner-section .banner-heading {
  font-size: 56px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 19px;
  line-height: 120%;
}
.banner-section .banner-dis {
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 40px;
}


.category-section .category-slider .item {
  text-align: center;
  padding: 10px 0px;
}
.category-section .category-slider .item .icon img {
  margin: 0 auto;
  transition: all 0.3s ease-in-out; 
  border-radius: 50%;
}
.category-section .category-slider .item:hover .icon img {
  box-shadow: 0px 4px 8px 3px rgba(44, 58, 75, 0.15);

}
.category-section .category-slider .item h4 {
  font-size: 16px;
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
  margin-top: 16px;
}
.category-section.section-padding {
    padding-bottom: 55px;
}
 .slick-dots li {
  width: auto;
  margin: 0 3px;
}
.slick-dots li button::before {
  width: 12px;
  font-size: 0;
  background-color: rgba(218, 222, 227, 1);
  border-radius: 10px;
  left: 10px;
  height: 12px;
  left: 0;
  opacity: 1;
  right: 0;
  margin: 0 auto;
}
.slick-dots li button {
  padding: 0 !important;
  width: 25px !important;
}
.slick-dots li button,
.slick-dots li.slick-active button::before {
  width: 25px !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-dots {
  margin-top: 57px;
  position: static;
}
.categorys-sliders .owl-nav button.owl-prev,
.categorys-sliders .owl-nav button.owl-next,
.slick-arrow {
  width: 36px;
  height: 36px;
  top: -46px;
  right: 56px;
  left: auto;
  border: solid 1px #ccc;
  border-radius: 50%;
  background-color: rgba(142, 142, 147, 1);
  font-size: 16px;
  color: #fff;
}
.categorys-sliders .owl-nav button.owl-prev:hover,
.categorys-sliders .owl-nav button.owl-next:hover{
  background-color: rgba(142, 142, 147, 1);
}
.slick-arrow.slick-next {
    left: auto;
    right: 5px;
}
.slick-prev:before, .slick-next:before{
  display: none;
}
.slick-arrow.slick-disabled {
    background-color: #ffffff;
    color: #000;
}
.slick-arrow:hover {
    color: #000;
}
.categorys-sliders .item {
  padding: 0;
}
.categorys-sliders .categorys-image{
  padding: 8px;
}
.categorys-sliders .content {
  padding: 8px;
  padding-top: 3px;
}
.categorys-sliders .content .tag span {
  background-color: rgba(232, 238, 255, 1);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(44, 58, 75, 1);
}
.categorys-sliders .content h4{
  font-size: 16px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
  margin-top: 15px;
}
.categorys-sliders .content p{
  font-size: 12px;
  font-weight: 400;
  color: rgba(44, 58, 75, 1);
  margin: 3px 0
}
.categorys-wrapper.section-padding {
    padding-bottom: 58px;
}
.categorys-wrapper .categorys-sliders .item {
    margin-bottom: 55px;
}

button#loadMoreBtn {
    width: 178px;
    margin-top: 7px;
}
.categorys-sliders .content h5{
  font-size: 16px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
}
.categorys-wrapper .header-heading {
    margin-bottom: 22px;
}
.categorys-wrapper .header-heading h4 {
  font-size: 36px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  letter-spacing: 2px;
}
.categorys-sliders .owl-nav {
    position: absolute;
    top: -78px;
    right: 0px;
}
.categorys-sliders .owl-nav button.owl-prev {
    margin-right: 12px;
}
.categorys-sliders .owl-nav button.owl-prev.disabled,
.categorys-sliders .owl-nav button.owl-next.disabled {
    background-color: transparent;
    color: #000;
}

.why-fitu-wrapper {
    padding-top: 30px;
}
.why-fitu-wrapper .widget .content h4{
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
}
.why-fitu-wrapper .section-heading p {
    margin-top: 16px;
    margin-bottom: 0px;
}
.why-fitu-wrapper .widget{
  height: 100%;
}
.why-fitu-wrapper .widget .content p{
  text-align: justify;
  color: rgba(44, 58, 75, 1);
  font-weight: 400;
  font-size: 14px;
}

.why-fitu-wrapper .section-heading {
    margin-bottom: 64px;
}
.why-fitu-wrapper .container .row {
  background-color: rgba(235, 238, 242, 1);
  padding: 45px 27px;
  border-radius: 16px;
  margin: 0px 0px;
}
.why-fitu-wrapper .widget {
  background-color: #ffffff;
  text-align: center;
  padding: 24px 22px;
  border-radius: 16px;
}
.success-stories .section-heading {
    margin-bottom: 40px;
}
.why-fitu-wrapper .widget .icon {
  margin-bottom: 23px;
}
.success-stories.section-padding {
    padding-top: 80px;
}
.success-stories.section-padding h4 {
    margin-bottom: 16px;
}
.success-stories .section-heading {
    margin-bottom: 68px;
}
.testimonial-slider{
  margin: 0px 57px;
}
.testimonial-slider .item {
  margin: 0px 30px;
}
.testimonial-slider {
    padding: 30px 0px;
}
.testimonial-slider .item .user-details .user-name h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: rgba(44, 58, 75, 1);
}
.testimonial-slider .item .user-details .user-name p {
  font-size: 14px;
  color: rgba(108, 117, 125, 1);
  font-weight: 400;
  margin-bottom: 0;
}
.testimonial-slider .item {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 24px;
}
.testimonial-slider .item .content .rating{
  color: rgba(255, 179, 0, 1);
  margin-bottom: 10px;
}
.testimonial-slider .item .content h4 {
  color: rgba(44, 58, 75, 1);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.testimonial-slider .item .content p{
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  color: rgba(44, 58, 75, 1);
}

.testimonial-slider .item .user-details {
  margin-top: 40px;
}
.first-booking-wrapper {
  z-index: 9999;
  position: relative;
}
.first-booking-wrapper .container .row {
  background-color: rgba(218, 222, 227, 1);
  padding: 64px 48px;
  margin: 0 88px;
  border-radius: 10px;
}
.first-booking-wrapper .content h4 {
  font-size: 36px;
  font-weight: 500;
}
.first-booking-wrapper .content p {
  font-size: 18px;
  margin-top: 10px;
}
.first-booking-wrapper .form-widget .input-group-text.bg-dark {
  background-color: rgba(44, 58, 75, 1) !important;
  height: 48px !important;
  width: 44px !important;
  border-radius: 4px 0px 0px 4px !important;
}
.first-booking-wrapper .form-widget input.form-control {
  height: 48px;
  border-radius: 0px !important;
  margin-right: 11px;
  border-radius: 0px 4px 4px 0px !important;
}

.first-booking-wrapper .form-widget button.btn.btn-primary {
  max-width: 172px;
  height: 48px;
  justify-content: center;
}


.main-footer {
  background: rgba(244, 246, 249, 1);
  position: relative;
  z-index: 9;
  padding-top: 200px;
  margin-top: -150px;
}
.main-footer .widget h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}
.main-footer .widget h5 {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;

}
.main-footer .widget p {
  max-width: 400px;
}
.main-footer .widget .contact-us {
  color: #ffffff;
}
.main-footer .widget .contact-us label {
  font-size: 22px;
}
.main-footer .widget .contact-us .social-icon li a {
  width: 40px;
  display: inline-block;
  text-align: center;
  font-size: 26px;
  color: #2494EA;
  padding-left: 0px;
}
.main-footer .widget ul li {
  margin-top: 6px;
}
.main-footer .widget ul li a {
  color: rgba(0, 0, 0, 1);
  transition: 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 400;
}
.main-footer .widget ul li a:hover {
  padding-left: 10px;
}
.main-footer .widget .social-icon a i{
  font-size: 25px;
  color: rgba(84, 93, 105, 1);
}
.main-footer .footer-btm {
  padding: 30px 0px;
}
.main-footer .footer-btm hr{
  border: solid 1px rgba(153, 153, 153, 1);
}
.main-footer .footer-btm .copyrights {
  font-size: 11px;
}
.main-footer .footer-btm p {
  margin: 0;
  font-size: 14px;
}
.section-heading h4 {
  font-size: 36px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}
.section-heading p {
  font-size: 20px;
  font-weight: 400;
  color: rgba(44, 58, 75, 1);
}
.breadcrum-wrapper {
  margin-top: 42px;
}
.categorys-sliders .sub-content {
    margin-top: 62px;
}
.categorys-sliders .sub-content h4 {
  font-size: 16px;
  color: rgba(44, 58, 75, 1);
  font-weight: 500;
  margin-bottom: 6px;
}
.categorys-sliders .sub-content ul {
  list-style: disc;
  padding-left: 15px;
}
.categorys-sliders .sub-content ul li {
  font-size: 14px;
  font-weight: 400;
  color: rgba(44, 58, 75, 1);
  padding: 3px 0px;
}
.categorys-sliders .sub-content button.btn {
  color: rgba(23, 79, 223, 1);
  padding: 0px 16px !important;
  max-width: max-content;
  height: auto;
  margin-top: 15px;
}
.order-summary .card-box {
  border: solid 1px rgba(218, 222, 227, 1);
  padding: 20px 15px;
  border-radius: 16px;
  margin-top: 16px;
}
.order-summary .card-box h5 {
  font-size: 20px;
  font-weight: 500;
}
.order-summary .card-box h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}
.order-summary .card-box p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(44, 58, 75, 1);
  margin-bottom: 12px;
}
.order-summary .card-box .summary-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.order-summary .card-box .summary-item-details .label {
  font-size: 14px;
  color: rgba(109, 117, 128, 1);
  font-weight: 500;
}
.order-summary .card-box .summary-item-details .value {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-align: right;
}
.order-summary .card-box .summary-item-details .value.fw-semibold {
    font-weight: 700;
}
.product-details-wrapper{
  padding-bottom: 80px;
}
.product-details-wrapper .main-heading {
  font-size: 17.96px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
  margin-bottom: 15.55px;
  visibility: hidden;
}
.product-details-wrapper .categorys-sliders.widget {
  border: solid 1px rgba(218, 222, 227, 1);
  border-radius: 16px;
  padding: 16px;
}
.product-details-wrapper .widget .card-box.custom-mt-4 {
    margin-top: 37px;
}
.product-details-wrapper .widget .progress-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(44, 58, 75, 1);
}
.product-details-wrapper .widget .card-box {
  border: solid 1px rgba(218, 222, 227, 1);
  border-radius: 16px;
  margin-top: 16px;
}
.product-details-wrapper .widget .card-box .step {
  padding: 16px;
}
.product-details-wrapper .card-box .progress-container .step {
  display: none;
}
.product-details-wrapper .widget .card-box .buttons {
    margin-bottom: 28px;
}
.product-details-wrapper .card-box .progress-container .step.active {
  display: block;
}
.radio-btn {
  gap: 16px;
  margin-bottom: 32px;
}
.radio-btn .form-group label {
  width: 56px;
  height: 48px;
  border: solid 1px rgba(218, 222, 227, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: rgba(44, 58, 75, 1);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.radio-btn.radio-btn-time{
  gap: 12px;
}
.radio-btn.radio-btn-time .form-group label {
  height: 32px;
  padding: 0px 10px !important;
  width: 125px !important;
  font-size: 14px;
}
.radio-btn.radio-btn-date .owl-nav button.owl-prev {
  position: absolute;
  left: -14px;
  top: 40px;
  font-size: 20px;
  margin: 0;
}
.radio-btn.radio-btn-date .owl-nav button.owl-next {
  position: absolute;
  right: -12px;
  top: 40px;
  font-size: 20px;
  margin: 0;
}
.product-details-wrapper .widget .buttons .btn.btn-primary:hover, .product-details-wrapper .widget .buttons .btn.btn-primary:focus {
    background-color: #0b4dad;
    color: #ffff;
}
.product-details-wrapper .widget .buttons .btn.btn-primary:hover img {
    filter: invert(0);
}
.radio-btn.radio-btn-date .owl-nav button:hover {
  background-color: transparent;
  color: #000000;
}
.radio-btn.radio-btn-date .owl-nav button.owl-next.disabled,
.radio-btn.radio-btn-date .owl-nav button.owl-prev.disabled {
    display: none;
}
.radio-btn.radio-btn-date .form-group span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(109, 117, 128, 1);
  margin-bottom: 12px;
}
.gym-details .widget {
  border: solid 1px rgba(218, 222, 227, 1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.gym-details .widget .info-details {
  position: absolute;
  top: 4px;
  right: 5px;
  z-index: 9999;
}
.gym-details input{
  display: none;
}
.gym-details input:checked ~ label.widget {
  border-color: rgba(3, 53, 180, 1);
}
.gym-details input:checked ~ label.widget .gym-header .gym-name h3 {
  font-weight: 700;
  color: rgba(3, 53, 180, 1);
}
.gyn-footer-view .widget a {
  font-size: 12px;
  color: rgba(23, 79, 223, 1);
}
.gyn-footer-view {
  margin-bottom: 32px;
}
.product-details-wrapper .widget .card-box .apply-coupon {
    color: rgba(42, 157, 69, 1);
}
.product-details-wrapper .widget .card-box a.text-primary {
  font-size: 14px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1) !important;
}
.gym-details .gym-footer {
  background-color: rgba(244, 246, 249, 1);
  padding: 6px 21px;
}
.gym-details .gym-footer p {
  margin: 0;
  font-size: 12px;
  color: rgba(44, 58, 75, 1);
  text-align: center;
}
.gym-details .gym-header .gym-name h3 {
  font-size: 14px;
  font-weight: 400;
}

.gym-details .gym-header {
  gap: 8px;
  padding: 11px 13px;
}
.radio-btn.radio-btn-time .form-group input[disabled] ~ label {
  border-color: rgba(218, 222, 227, 1);
  color: rgba(165, 171, 179, 1);
}
.radio-btn .form-group input:checked ~ label {
  border: solid 1px rgba(3, 53, 180, 1);
  background-color: rgba(232, 238, 255, 1);
  color: rgba(3, 53, 180, 1);
  font-weight: 700;
}
.radio-btn .form-group input{
  display: none;
}
.product-details-wrapper .widget .card-box .progress-container .content h4 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
  margin-bottom: 16px;
}
.radio-btn.radio-btn-name .form-group label {
  padding: 0px 28px;
  width: auto;
}
.radio-btn.radio-btn-name-icon .form-group label {
  flex-direction: column;
  height: auto !important;
  padding: 6px 28px !important;
  width: 110px;
  gap: 10px;
}
.product-details-wrapper .widget .card-box button#prevBtn {
  width: auto;
}
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1230px;
  }

#yogaModal .modal-dialog {
  max-width: 600px;
}
#yogaModal .modal-body .categorys-image {
  width: 100%;
  height: 173px;
}
#yogaModal .modal-body .categorys-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 17px;
}
#yogaModal .modal-header button.btn-close {
  position: absolute;
  right: -30px;
  background-color: #fff;
  opacity: initial;
  top: 8px;
  border-radius: 50%;
}
#yogaModal .modal-header h5 {
  font-size: 32px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
}
#yogaModal .modal-content {
  border-radius: 16px;
}
.product-details-wrapper .card-box .progress-container .step .account-details {
  padding: 16px;
  border-top: solid 1px rgba(204, 204, 204, 1);
}
.product-details-wrapper .card-box .progress-container .step .account-details p {
  font-size: 14px;
}
.product-details-wrapper .card-box .progress-container .step .account-details label {
  font-weight: 700;
  font-size: 14px;
}
.product-details-wrapper .card-box .progress-container .step .account-details ul {
  margin-top: 19px;
}
.product-details-wrapper .card-box .progress-container .step .bill-heading {
  padding: 16px;
}
.product-details-wrapper .card-box .progress-container .step .account-details .info-box p {
  font-size: 12px;
  margin: 0;
  color: rgba(84, 93, 105, 1);
  margin-left: 5px;
  line-height: 140%;
}
.product-details-wrapper .card-box .progress-container .step .account-details .info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(244, 246, 249, 1);
  max-width: 368px;
  border-radius: 8px;
  padding: 10px;
  margin: 20px 0px 20px 0px;
}
#couponModal .modal-body .form-group label h5 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(109, 117, 128, 1);
}
#couponModal .modal-body .form-group .form-control {
  height: 50px;
  border: solid 1px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: rgb(123, 123, 123);
  border-radius: 8px;
}
#couponModal .modal-body .form-group .form-control ~ a {
  position: absolute;
  right: 14px;
  top: 15px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(218, 222, 227, 1);
  letter-spacing: 0.1px;
}
#couponModal .modal-body .form-group label p {
  margin: 0;
  font-size: 14px;
  color: rgba(109, 117, 128, 1);
  line-height: 150%;
}
#couponModal .modal-body .form-group label {
  position: relative;
  padding-left: 34px;
}
#couponModal .modal-body .form-group input{
  display: none;
}
.product-details-wrapper .widget .card-box .coupon-code span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(42, 157, 69, 1);
}
.product-details-wrapper .widget .card-box .applied-coupon .text-black strong {
    color: rgba(44, 58, 75, 1);
}
.product-details-wrapper .widget .card-box .applied-coupon a.edit-btn {
  border: solid 1px rgba(23, 79, 223, 1);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 400;
  color: rgba(23, 79, 223, 1) !important;
}
.product-details-wrapper .widget .card-box .applied-coupon a.edit-btn:hover{
  background-color: transparent;
}
#couponModal .modal-body .form-group label:after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #ccc;
  border-radius: 4px;
}
#couponModal .modal-body .form-group input:checked ~ label:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 8px;
  border: solid 2px #212121;
  left: 5px;
  top: 5px;
  border-right: 0;
  border-top: 0;
  border-radius: 0px 0px 0px 2px;
  transform: rotate(-45deg);
  z-index: 999;
}
#couponModal .modal-body .form-group label a {
  font-size: 12px;
  color: rgba(109, 117, 128, 1);
}
#termsModal .modal-content,
#couponModal .modal-content {
  border-radius: 16px !important;
}
#termsModal .modal-content .modal-header h5,
#couponModal .modal-content .modal-header h5 {
  font-size: 32px;
  color: rgba(44, 58, 75, 1);
}
#couponModal .modal-content .modal-body .form-group.position-relative {
  font-family: "Roboto", sans-serif;
}
/* Default (most browsers) */
#couponCode::placeholder {
color: rgba(218, 222, 227, 1);
}

/* Chrome, Safari, Edge (WebKit) */
#couponCode::-webkit-input-placeholder {
color: rgba(218, 222, 227, 1);
}

/* Firefox 19+ */
#couponCode::-moz-placeholder {
color: rgba(218, 222, 227, 1);
}

/* Firefox 4 - 18 */
#couponCode:-moz-placeholder {
color: rgba(218, 222, 227, 1);
}

/* Internet Explorer 10-11 */
#couponCode:-ms-input-placeholder {
color: rgba(218, 222, 227, 1);
}

/* Microsoft Edge (old) */
#couponCode::-ms-input-placeholder {
color: rgba(218, 222, 227, 1);
}
#termsModal .modal-body li {
  font-size: 14px;
  color: rgba(109, 117, 128, 1);
  margin-bottom: 8px;
  padding-left: 30px;
  background-image: url('../images/icon/chevron-right.svg');
  background-repeat: no-repeat;
  background-position: left;
  background-size: 18px;
}
.confirmation-card {
  box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  max-width: 690px;
  margin: 80px auto;
  border-radius: 16px;
  padding: 32px 75px 90px 75px;
}
.confirmation-card .summary-box {
  background-color: rgba(244, 246, 249, 1);
  padding: 24px;
  border-radius: 8px;
  border: solid 1px rgba(218, 222, 227, 1);
}
.confirmation-card .checkmark {
  text-align: center;
  margin-bottom: 24px;
}
.confirmation-card p {
  text-align: center;
  font-size: 14px;
  color: rgba(133, 140, 148, 1);
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 0px 24px 0px;
}
.confirmation-card .summary-box h6.heading {
  font-size: 16px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1);
}
.confirmation-card .summary-box h6.heading {
  font-size: 16px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1);
  margin-bottom: 10px !important;
}
.confirmation-card .summary-box span.title {
  font-size: 14px;
  color: rgba(133, 140, 148, 1);
  font-weight: 400;
}
.confirmation-card .summary-box .s-details {
  font-size: 14px;
  font-weight: 700;
  color: rgba(44, 58, 75, 1);
}
.confirmation-card .summary-box .item {
  margin-bottom: 15px;
}
.confirmation-card h3.main-heading {
  font-size: 32px;
  font-weight: 500;
  color: rgba(44, 58, 75, 1);
  text-align: center;
}
.confirmation-card .calendar-btn {
  background-color: rgba(244, 246, 249, 1);
  border: solid 1px rgba(218, 222, 227, 1);
  border-radius: 8px;
  width: 157px;
  height: 36px;
  font-size: 14px;
  color: rgba(44, 58, 75, 1);
  margin: 0px 5px;
}
.confirmation-card a.btn {
  max-width: 258px;
  height: 56px;
}
.js-header .navbar .nav-item.dropdown .sub-menu {
  border: solid 1px rgba(222, 226, 230, 1);
  border-radius: 6px;
  box-shadow: -14px 18px 50px -20px var(--ColorbgBlack60);
  width: 220px;
  position: absolute;
  background-color: #fff;
  right: 0;
  display: none;
}
.js-header .navbar .nav-item.dropdown .sub-menu .user-card {
  display: flex;
}
.js-header .navbar .nav-item.dropdown:hover .sub-menu {
  display: block;
}
.js-header .navbar .nav-item.dropdown .sub-menu ul li a:hover {
  font-weight: 600;
}
.js-header .navbar .nav-item.dropdown .sub-menu .user-card .user-details h4 {
  font-size: 14px;
  font-weight: 600;
}
.js-header .navbar .nav-item.dropdown .sub-menu .user-card .user-details p {
  font-size: 14px;
  color: rgba(108, 117, 125, 1);
  margin: 0;
}
.js-header .navbar .nav-item.dropdown .sub-menu .user-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border-bottom: solid 1px rgba(222, 226, 230, 1);
}
.js-header .navbar .nav-item.dropdown .sub-menu ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(108, 117, 125, 1);
  padding: 6px 16px;
  display: block;
}
.js-header .navbar .nav-item.dropdown .sub-menu ul {
  padding: 12px 0px;
}
.js-header .navbar .nav-item.dropdown .sub-menu .footer {
  border-top: solid 1px rgba(222, 226, 230, 1);
}
.about-wrapper {
  background-color: #EBEEF2;
}
.about-wrapper .widget {
  max-width: 765px;
  margin: 0 auto;
}
.about-wrapper .widget h2 {
  font-size: 56px;
  color: #2C3A4B;
  font-weight: 500;
  margin-bottom: 44px;
}
.about-wrapper .widget p {
  font-size: 20px;
  color: #2C3A4B;
  font-weight: 400;
}
.service-wrapper .section-heading h2 {
  font-size: 56px;
  color: #2C3A4B;
  font-weight: 500;
  margin-bottom: 40px;
}
.service-wrapper .section-heading p {
  font-size: 24px;
  color: #2C3A4B;
}
.service-wrapper .widget .details {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px;
}
.service-wrapper .widget .details p {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0;
}
.service-wrapper .widget .details h4 {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}
.building-wrapper {
  background-color: #EBEEF2;
}
.building-wrapper .item {
  background-color: #ffffff;
  box-shadow: 0px 1px 2px 0px #0000004D;
  border-radius: 8px;
  padding: 50px 60px;
  margin-bottom: 30px;
}
.building-wrapper .item h4 {
  font-size: 36px;
  font-weight: 500;
  color: #0335B4;
  margin-top: 24px;
  margin-bottom: 8px;
}
.building-wrapper .item p {
  font-size: 14px;
  color: #2C3A4B;
  font-weight: 400;
}
.building-wrapper .widget h4 {
  font-size: 56px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 24px;
}
.building-wrapper .widget h4 span{
  color: #174FDF;
}
.building-wrapper .widget p {
  font-size: 16px;
  color: #2C3A4B;
  font-weight: 400;
  margin-bottom: 24px;
}
.building-wrapper .widget ul{
  margin-bottom: 48px;
}
.building-wrapper .widget ul li {
  font-size: 16px;
  color: #2C3A4B;
  margin-bottom: 16px;
}
.building-wrapper .widget ul li img {
  margin-right: 16px;
}
.what-we-offer-wrapper .container .row {
  background-color: transparent;
  padding: 0;
}
.what-we-offer-wrapper .widget {
  box-shadow: 0px 1px 6px 1px #0000004D
}
.what-we-offer-wrapper {
  padding: 64px 0px !important;
}
.business-partner-form {
  box-shadow: 0px 1px 2px 0px #0000004D;
  background-color: #ffffff;
  padding: 32px 34px;
  border-radius: 8px;
}
.business-partner-form .form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.business-partner-form .form-group {
  margin-bottom: 16px;
}
.business-partner-form .form-group .form-control {
  font-size: 14px;
  padding: 10px 18px;
  background-color: #EBEEF2;
  border: 0;
}
.business-partner-form .form-group .select-wrapper {
  position: relative;
}
.business-partner-form .form-group .select-wrapper:before {
  position: absolute;
  content: '';
  border: 2px solid #828181;
  width: 10px;
  height: 10px;
  right: 14px;
  top: 13px;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}
.business-partner-form h4 {
  font-size: 24px;
  color: #2C3A4B;
  margin-bottom: 24px;
  font-weight: 500;
}
.business-partner-form p {
  font-size: 14px;
  color: #6D7580;
}
.faq-wrapper .accordion-item {
  border: 0;
  box-shadow: 0px 1px 2px 0px #0000004D;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}
.faq-wrapper .accordion-item .accordion-header .accordion-button {
  background: transparent;
  box-shadow: 0px 0px;
  font-size: 16px;
  font-weight: 700;
  color: #2C3A4B;
}
.faq-wrapper h4 {
  font-size: 36px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 24px;
}
.faq-Didnt-find-wrapper {
  background-color: #0335B4;
}
.faq-Didnt-find-wrapper .section-heading h4 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 24px;
}
.faq-Didnt-find-wrapper .section-heading p {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
}
.faq-Didnt-find-wrapper .widget {
  text-align: center;
  background-color: #4375F4;
  border-radius: 8px;
  padding: 32px 55px;
}
.faq-Didnt-find-wrapper .widget h4 {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.faq-Didnt-find-wrapper .widget p {
  color: #ffffff;
}
.contact-wrapper .widget .item {
  box-shadow: 0px 1px 2px 0px #0000004D;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  margin-bottom: 20px;
}
.contact-wrapper .widget .item .content {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-wrapper .widget .item .content h5 {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
.contact-wrapper .widget .item .content p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.social-lisk h4 {
  font-size: 36px;
  font-weight: 500;
}
.contact-wrapper .business-partner-form {
  box-shadow: 0px 0px;
  padding: 0;
}
.contact-wrapper h2 {
  font-size: 36px;
  color: #2C3A4B;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-wrapper p {
  font-size: 20px;
  color: #2C3A4B;
  margin-bottom: 24px;
}
.content-wrapper h2 {
  font-size: 36px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 24px;
}
.content-wrapper p {
  font-size: 16px;
  color: #2C3A4B;
  font-weight: 400;
}
.content-wrapper .gray-widget {
  background-color: #F4F6F9;
  padding: 20px 0px;
  border-radius: 8px;
}
.content-wrapper .gray-widget h5 {
  font-size: 16px;
  font-weight: 700;
  color: #2C3A4B;
}
.content-wrapper .gray-widget p {
  font-size: 16px;
  font-weight: 400;
  color: #2C3A4B;
  margin-bottom: 24px;
}
.content-wrapper blockquote {
  background-color: #EEF2FA;
  border-left: solid 8px #2E5AAC;
  padding: 24px;
  border-radius: 15px;
  color: #2E5AAC;
  font-size: 16px;
  font-weight: 600;
}
.content-wrapper ul {
  list-style: disc;
  padding-left: 24px;
}
.content-wrapper ul li {
  margin-bottom: 24px;
  color: #2C3A4B;
}
.content-wrapper .derk-gray {
  background-color: #EEF2FA;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
}
.content-wrapper .light-red{
  background-color: #FEEFEF;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
}
.content-wrapper .gray-widget h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2C3A4B;
  margin-bottom: 8px;
}
.content-wrapper .green-widget-list {
  background-color: #EDF9F0;
  padding: 24px 40px;
  border-radius: 8px;
}
.dashboard-header{
  z-index: 1;
  position: relative;
  padding: 0rem;
  background: #ffffff;
  z-index: 7;
  padding-left: 250px;
  transition: all 0.2s ease;
  padding-right: 6px;
}
.address-book .widget .btn-sm button i {
    font-size: 20px;
}
button.btn.add-address {
    max-width: max-content;
}
.address-book .widget .btn-sm button {
  padding: 5px 8px;
  border: solid 1px #DADEE3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #2C3A4B;
  font-size: 14px;
}
.address-book .widget .btn-sm button:hover {
  color: #2C3A4B;
}
.address-book .widget .btn-sm button i.icon-fi-rr-trash {
    color: #DA1414;
}
.dashboard-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}
.dashboard-header .header-content .notification {
    position: relative;
    cursor: pointer;
}
.dashboard-header .header-content .right-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}
.dashboard-header .header-content .notification span {
  font-size: 11px;
  font-weight: 500;
  background-color: #EF4D5D;
  width: 16px;
  height: 16px;
  display: flex;
  border-radius: 50%;
  color: #fff;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -10px;
}
.icnav {
  width: 250px;
  padding-bottom: 10px;
  height: 100%;
  position: absolute;
  z-index: 6;
  background-color: #ffffff;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  position: fixed;
  top: 0;
  z-index: 99;
  border-right: solid 1px #DADEE3;    
}
.icnav .metismenu li {
  position: relative;
}
.icnav .metismenu > li {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.icnav .metismenu a {
  position: relative;
  display: block;
  padding: 10px 22px;
  outline-width: 0;
  text-decoration: none;
  transition: all 0.2s;
  color: #969fb5;
}
.icnav .metismenu > li > a .menu-icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: auto;
  width: auto;
  text-align: center;
  border-radius: 0.125rem;
  line-height: 1;
  border-radius: 0.125rem;
}
.icnav .metismenu > li > a i {
  color: #969fb5;
  font-size: 16px;
  margin-right: 10px;
  margin-top: -2px;
}
.icnav .icnav-footer {
  padding: 12px 12px;
  margin-bottom: -10px;
}
.icnav .icnav-scroll {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.icnav .metismenu a.active,
.icnav .metismenu a:hover {
  background-color: #DADEE3;
  border-radius: 8px;
  color: #2C3A4B;
  font-weight: 600;
}
.icnav .metismenu a.active i,
.icnav .metismenu a:hover i{
  color: #2C3A4B;
}
.content-body {
  background-color: #f4f6f9;
  min-height: calc(100vh - 69px);
  width: 100%;
  padding-left: 250px;
}
.content-body .page-header {
  padding: 20px 0px;
}
.content-body .page-header h4 {
  font-size: 24px;
  font-weight: 500;
  color: #2C3A4B;
}
.content-body .new-user-modal {
  border: 1px solid var(--Neutral7, #DADEE3);
  background-color: #ffffff;
  max-width: 599px;
  border-radius: 16px;
  margin: 0 auto;
  padding: 32px 40px;
  text-align: center;
}
.content-body .new-user-modal i {
  font-size: 48px;
}
.content-body .new-user-modal h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-top: 24px;
  margin-bottom: 13px;
}
.content-body .new-user-modal p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
}
.content-body .welcome-widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #dadee3;
  padding: 32px 24px;
  border-radius: 16px;
}
.content-body .welcome-widget .name-widget h4 {
  font-size: 24px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 8px;
}
.content-body .welcome-widget .name-widget p {
  font-size: 16px;
  color: #545D69;
  margin-bottom: 0;
}
.content-body .card {
  border: 0;
  border-radius: 16px;
  padding: 24px 27px;
  border: 1px solid #dadee3;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.content-body .card .content p {
  font-size: 14px;
  color: #545D69;
  font-weight: 400;
  margin-bottom: 0;
}
.content-body .card .content h4 {
  color: #0335B4;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
.content-body .section-heading {
  text-align: start;
  margin-bottom: 16px;
}
.content-body .section-heading h4 {
  color: #2C3A4B;
  font-size: 20px;
  font-weight: 500;
}
.content-body .active-widget {
  border: 1px solid #dadee3;
  padding: 24px;
  border-radius: 16px;
  background-color: #fff;
}
.content-body .active-widget .item {
  background-color: #F4F6F9;
  padding: 16px;
  border-radius: 16px;
}
.content-body .active-widget .item .content h5 {
  color: #2C3A4B;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.content-body .active-widget .item .content p {
  font-size: 14px;
  color: #545D69;
  margin-bottom: 4px;
}
.content-body .active-widget .item .content ul li {
  font-size: 14px;
  color: #545D69;
}
.content-body .active-widget .item .sessions {
  border: solid 1px #C1D2FE;
  background-color: #E8EEFF;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #0335B4;
}
.content-body .active-widget .progress-bar-wrapper{
  margin-top: 9px;
}
.content-body .active-widget .progress-bar-wrapper label {
  font-size: 14px;
  font-weight: 600;
  color: #545D69;
  margin-bottom: 10px;
}
.content-body .active-widget .progress-bar-wrapper .progress-line-light {
  background-color: #DADEE3;
  width: 100%;
  height: 7px;
  border-radius: 4px;
  position: relative;
}
.content-body .active-widget .progress-bar-wrapper .progress-line-dark {
  width: 33.33%;
  height: 8px;
  background-color: #2C3A4B;
  border-radius: 4px;
}
.content-body .active-widget .progress-bar-wrapper .progress-colm p {
  font-size: 12px;
  color: #545D69;
  margin-top: 8px;
}
.content-body .active-widget .user-name {
  background-color: #E8EEFF;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0335B4;
  font-weight: 500;
  border-radius: 50%;
}
.content-body .active-widget .user-details {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 60px;
  z-index: 9;
}
.content-body .active-widget .user-details .content h5 {
  font-size: 16px;
  color: #2C3A4B;
  font-weight: 600;
}
.content-body .active-widget .user-details .content p {
  margin: 0;
  font-size: 14px;
  color: #545D69;
}
.content-body .active-widget .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 70px;
  padding: 0;
  padding-bottom: 15px;
}
.content-body .active-widget .accordion-button:focus{
  box-shadow: 0px 0px;
}
.content-body .active-widget .accordion-button:after {
  position: absolute;
  right: 18px;
}
.content-body .active-widget .accordion-button:not(.collapsed)::after {
  background: none;
  width: 12px;
  height: 12px;
  border: solid 2px #1B1B1B;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.content-body .active-widget .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: 0px 0px;
}
.content-body .active-widget .accordion-button[aria-expanded="true"]{
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.content-body .active-widget .accordion-item {
  border: 0;
}
.content-body .nav-tabs {
  border-bottom: solid 1px #A5ABB3;
  margin-bottom: 37px;
}
.content-body .nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border: 0;
  font-size: 14px;
  color: #545D69;
  display: flex;
  align-items: center;
  font-weight:600;
}
.content-body .nav-tabs .nav-item .nav-link i{
  font-size: 24px;
  margin-right: 16px !important;
}
.content-body .nav-tabs .nav-item .nav-link:hover,
.content-body .nav-tabs .nav-item .nav-link.active {
  border-bottom: solid 2px #0335B4;
  color: #0335B4;
}
.content-body .welcome-widget .tran-btn.no-border {
    font-size: 24px;
    color: #2C3A4B;
}
.content-body .card .form-group label {
    font-size: 14px;
    color: #2C3A4B;
    font-weight: 400;
    margin-bottom: 12px;
}
.content-body .card .form-group .form-control {
    background: #EBEEF2;
    padding: 8px 18px;
    border: 0;
    margin-bottom: 24px;
    border-radius: 8px;
}
.radio-group {
  display: flex;
  gap: 40px; /* buttons ke beech space */
}
.radio {
  position: relative;
  cursor: pointer;
}
.radio input {
  display: none; /* default radio chhupa diya */
}
.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #1c2733; /* dark border */
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: #fff;
}
.radio input:checked + .checkmark {
  border: 5px solid #1c2733; /* dark border */
}
.content-body .card .form-group label.radio {
  display: flex;
  gap: 10px;
  color: #000000;
}
.checked-group label.checked {
  position: relative;
  padding-left: 30px;
  margin-right: 20px;
}
.checked-group label.checked input{
  display: none;
}
.checked-group span.checkmark {
  border-radius: 4px;
  position: absolute;
  left: 0;
}
.checked-group label.checked input:checked + .checkmark:after {
  content: '';
  position: absolute;
  border: solid 2px #000;
  width: 7px;
  height: 13px;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  left: 4px;
}
.content-body .card.notif-card .notif-left-icon {
  font-size: 24px;
  color: #4375F4;
  margin-right: 20px;
}
.content-body .card.notif-card .notif-title {
  font-size: 14px;
  font-weight: 600;
  color: #2C3A4B;
  margin-bottom: 2px;
}
.content-body .card.notif-card .notif-body {
  font-size: 14px;
  color: #2C3A4B;
  font-weight: 400;
}
.content-body .card.notif-card .notif-meta .badge-high {
  padding: 2px 10px;
  height: 20px;
  border-radius: 14px;
  font-size: 12px;
  color: #000;
}
.content-body .card.notif-card .notif-meta .badge-high.red {
  background-color: #DA1414;
  color: #fff;
}
.content-body .card.notif-card{
  margin-bottom: 24px;
}
.content-body .card.notif-card .notif-meta .text-muted {
  font-size: 14px;
  font-weight: 400;
  color: #6D7580;
}
.content-body .card.notif-card .btn-outline-danger {
  color: #DA1414;
  font-size: 14px;
  padding: 0 !important;
}
.content-body .card.notif-card .btn-outline-danger:hover {
  background-color: transparent;
}
.content-body .card.notif-card .btn-outline-secondary {
  color: #2C3A4B;
  font-size: 14px;
  padding: 0 !important;
}
.content-body .card.notif-card .btn-outline-secondary i{
  font-size: 16px;
}
.content-body .card.notif-card .btn-outline-danger:focus:not(:focus-visible),
.content-body .card.notif-card .btn-outline-secondary:focus:not(:focus-visible){
  box-shadow: 0px 0px;
}
.cyan{
  color: #00BCD4;
}
.blue{
  background-color: #4375F4;
  color: #ffffff !important;
}
.amber{
  color: #FFB300;
}
.gray{
  color: #6D7580;
}
.content-body .card.privacy-policies h5 {
  font-size: 14px;
  font-weight: 600;
  color: #2C3A4B;
  margin-bottom: 8px;
}
.content-body .card.privacy-policies p {
  font-size: 14px;
  font-weight: 400;
  color: #6D7580;
}
.content-body .card .table-dark th {
  background-color: transparent;
  border: 0 !important;
  font-size: 14px;
  font-weight: 600;
  color: #2C3A4B;
}
.content-body .card .table-dark {
  border: 0;
  border-bottom: 1px solid var(--Neutral7, #DADEE3);
}
.content-body .card tbody tr td {
  border: 0;
  font-size: 14px;
  color: #2C3A4B;
  font-weight: 400;
  padding: 15px 10px;
}
.content-body .card .table-striped>tbody>tr:nth-of-type(odd){
  --bs-table-accent-bg: transparent;
}
.content-body .card tbody tr td:first-child {
  color: #0335B4;
  font-weight: 600;
}
.content-body #innerAccordion .accordion-item {
  border: solid 1px #DADEE3;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 16px;
}
.content-body #innerAccordion .accordion-item .accordion-button {
  padding-bottom: 0;
  box-shadow: 0px 0px;
}
.content-body #innerAccordion .accordion-item .accordion-button:focus{
  box-shadow: 0px 0px;
}
.session-table-card {
  background-color: #F4F6F9;
  padding: 15px 27px;
  border-radius: 16px;
}
.session-table-card thead tr th {
  font-size: 14px;
  font-weight: 400;
  color: #6D7580;
  padding: 10px 0px;
}
.session-table-card tbody tr td {
  font-size: 14px;
  font-weight: 600;
  color: #2C3A4B;
}
#innerAccordion .accordion-body {
  padding: 0;
  padding-top: 20px;
}
.content-body .active-widget .user-details .competed {
  background-color: #EDF9F0;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 12px;
  color: #2A9D45;
  font-weight: 500;
  height: 20px;
}
.content-body #innerAccordion .accordion-item.not-accordion .user-details {
  padding-right: 0;
}
.content-body #innerAccordion .accordion-item.not-accordion .accordion-button:not(.collapsed)::after{
  display: none;
}
.content-body #innerAccordion .accordion-item.not-accordion .user-details .scheduled{
  background-color: #EEF2FA;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 12px;
  color: #2E5AAC;
  font-weight: 500;
  height: 20px;
}
.content-body #innerAccordion .accordion-item.now-scheduled-accordion .scheduled {
  background-color: #174FDF !important;
  color: #fff !important;
}
#myModal.schedule-modal {
  z-index: 99999999;
}
.schedule-modal .modal-body .progress-container .step {
  display: none;
}
.schedule-modal .modal-body .progress-container .step.active {
  display: block;
}
#myModal.schedule-modal .modal-dialog {
  max-width: 620px;
}
#myModal.schedule-modal .modal-dialog .modal-content {
  border-radius: 16px;
}
#myModal.schedule-modal .modal-dialog .modal-content button.btn-close {
  right: 15px;
  position: absolute;
  top: 15px;
  z-index: 999;
}
#myModal.schedule-modal .content h4 {
  font-size: 20px;
  color: #2C3A4B;
  font-weight: 500;
  margin-bottom: 16px;
}
#myModal.schedule-modal .content h3 {
  font-size: 24px;
  color: #2C3A4B;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 50px;
}
.change-session-widget {
  border: solid 1px #DADEE3;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 32px;
}
.change-session-widget .content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2C3A4B;
}
.change-session-widget .content p {
  font-size: 14px;
  font-weight: 400;
  color: #545D69;
  margin-bottom: 0;
}
.change-session-widget a {
  color: #174FDF;
  font-size: 14px;
  font-weight: 400;
}
#myModal.schedule-modal .modal-dialog .modal-body {
  padding: 15px 34px;
}
#myModal.schedule-modal .content .order-summary {
  background-color: #F4F6F9;
  margin-bottom: 48px;
}
#myModal.schedule-modal .content select.form-control {
  margin-bottom: 32px;
  background-color: #F4F6F9;
  border-radius: 8px;
  height: 32px;
  padding: 3px 18px;
}
#changeSessionModal {
  z-index: 99999999;
}
.changesessionmodal .modal-dialog {
  max-width: 560px;
}
.changesessionmodal .modal-dialog .modal-content {
  border-radius: 16px;
}
.changesessionmodal .modal-dialog .modal-content .widget {
  padding: 56px 34px;
}
.changesessionmodal .modal-dialog .modal-content .widget .content h3 {
  color: #2C3A4B;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.changesessionmodal .modal-dialog .modal-content .widget .content p {
  font-size: 14px;
  color: #2C3A4B;
  font-weight: 400;
}
.changesessionmodal .modal-dialog .modal-content .widget .content .item label {
  border: solid 1px #DADEE3;
  border-radius: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  align-items: center;
  cursor: pointer;
}
.changesessionmodal .modal-dialog .modal-content .widget .content .item{
  margin-bottom: 16px;
}
.changesessionmodal .modal-dialog .modal-content .widget .content .item input{
  display: none;
}
.changesessionmodal .modal-dialog .modal-content .widget .content .item input:checked ~ label,
.changesessionmodal .modal-dialog .modal-content .widget .content .item label:hover {
  background-color: #E8EEFF;
}
.changesessionmodal .modal-dialog .modal-content .widget .content .item label .icon {
  background-color: #E8EEFF;
  padding: 10px;
  border-radius: 8px;
}
.changesessionmodal .modal-dialog .modal-content .widget .content .item label h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2C3A4B;
}
.changesessionmodal button.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 9999;
}
.option-menu .dropdown-menu li {
  padding: 7px 4px;
  display: flex;
  gap: 13px;
  border-radius: 8px;
}
.option-menu .dropdown-menu {
  right: 0;
  padding: 8px;
  border: 0px;
  box-shadow: 0px 4px 4px 0px rgb(12 12 13 / 10%);
  border-radius: 8px;
}
span.option-menu.active .dropdown-menu {
  display: block;
}
.option-menu .dropdown-menu li:hover {
  background-color: #E8EEFF;
}
.content-body .select-wrapper select.form-control {
  padding: 6px 40px 6px 16px;
  border: solid 1px #DADEE3;
  border-radius: 8px;
}
.content-body .select-wrapper {
  position: relative;
}
.content-body .select-wrapper:after {
  position: absolute;
  content: '';
  border: solid 2px;
  width: 10px;
  height: 10px;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  right: 19px;
  top: 12px;
}
.notification .dropdwon-menu {
  border-radius: 16px;
  max-width: 393px;
  box-shadow: 0px 4px 4px 0px rgb(12 12 13 / 10%);
  padding: 32px 0px;
  position: absolute;
  width: 393px;
  right: 0;
  background-color: #fff;
  z-index: 99999;
  display: none;
}
.notification .dropdwon-menu li {
  display: flex;
  gap: 16px;
  padding: 10px 20px;
  border-top: solid 1px #DADEE3;
}
.notification .dropdwon-menu li .content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2C3A4B;
}
.notification .dropdwon-menu li .content p {
  font-size: 14px;
  font-weight: 400;
  color: #545D69;
  max-width: 90%;
  margin-bottom: 0;
}
.notification .dropdwon-menu h3 {
  font-size: 24px;
  font-weight: 500;
  color: #2C3A4B;
  padding: 0px 20px;
  margin-bottom: 24px;
}
.notification.active .dropdwon-menu {
  display: block;
}
#scheduleAccordion {
  z-index: 1;
  position: relative;
}
.quick-actions .icon {
  border-radius: 8px;
  width: 48px;
  height: 48px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-actions .icon.icon01 {
  background-color: #174FDF;
}
.quick-actions .icon.icon02 {
  background-color: #0AAF0A;
}
.quick-actions .icon.icon03 {
  background-color: #FF5722;
}
.quick-actions .icon img {
  filter: brightness(0) invert(1);
}
.quick-actions .card {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 24px;
  padding: 31px 24px;
}
.quick-actions .card .content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2C3A4B;
}
.content-body .active-widget .next-session p {
  font-size: 16px;
  color: #545D69;
  font-weight: 400;
  margin-bottom: 2px;
}
.content-body .active-widget .next-session h4 {
  font-size: 16px;
  color: #2C3A4B;
  font-weight: 600;
  margin: 4px 0px;
}
.content-body .active-widget .next-session h4 ~ p {
  font-size: 14px;
}
.content-body .active-widget .next-session h4 ~ p strong {
  font-weight: 500;
}
.content-body .active-widget .next-session .btn-wrapper a.btn {
  color: #6D7580;
  width: auto;
  max-width: max-content;
  border: solid 1px;
  padding: 0px 15px;
  height: auto;
  font-size: 14px;
  font-weight: 500;
}
.content-body .active-widget .next-session .btn-wrapper {
    margin-top: 26px;
}
.content-body .active-widget .next-session .btn-wrapper a.btn.blue-btn {
  color: #174FDF;
}
body.dashboard-slidebar .icnav {
    width: 80px;
}
body.dashboard-slidebar .icnav .metismenu a .nav-text {
    display: none;
}
body.dashboard-slidebar .icnav .metismenu li a .menu-icon i {
    margin: 0;
}
body.dashboard-slidebar .icnav .metismenu li a {
    padding: 10px 15px;
}
.icnav .icnav-footer a {
    padding: 10px 15px;
}
body.dashboard-slidebar .icnav-footer a span {
    display: none;
}
body.dashboard-slidebar .content-body,
body.dashboard-slidebar .dashboard-header {
    padding-left: 80px;
}
.content-body button.btn.markal-read-btn {
  color: #2C3A4B;
  font-size: 14px;
  font-weight: 500;
  border: solid 1px #6D7580;
  padding: 0px 16px !important;
  max-width: fit-content;
  height: 37px;
  background-color: #fff;
}
.content-body .card tbody tr td .action-sm-btn {
  width: 36px;
  height: 36px;
  background-color: #E8EEFF;
  border-radius: 8px;
}
.content-body .card tbody tr td .action-sm-btn.blue i {
    color: #0335B4;
}
.content-body .card tbody tr td .action-sm-btn.gray{
  background-color: #EBEEF2;
  margin-left: 10px;
}
.content-body .card tbody tr td .action-sm-btn.gray i {
  color: #2C3A4B;
}
.faq-wrapper .container {
  max-width: 800px;
}
#changeAddressModal {
  z-index: 99999999;
}
.changeAddressModal-header .content h5 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0px;
}
.changeAddressModal-header .content p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #6D7580;
}
#changeAddressModal .modal-content {
  padding: 51px 34px;
  border-radius: 16px;
}
#changeAddressModal .modal-dialog {
  max-width: 560px;
}
#changeAddressModal .modal-dialog button.btn-close {
  position: absolute;
  right: 33px;
  top: 60px;
}
#changeAddressModal .modal-content .modal-body h4 {
  font-size: 16px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 12px;
}
.changeAddressModal-header {
  margin-bottom: 24px;
}
#changeAddressModal .modal-content .modal-body .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 12px;
}
#changeAddressModal .modal-content .modal-body .form-control {
  height: 40px;
  background: #EBEEF2;
  border: 0;
  border-radius: 8px;
}

#changeAddressModal .modal-content .modal-body .address-type label.btn.btn-outline-primary {
  padding: 7px 16px;
  height: 37px;
  line-height: normal;
  max-width: min-content;
  border: solid 1px #2C3A4B !important;
  color: #2C3A4B !important;
}
#changeAddressModal .modal-content .modal-body .address-type  .btn.btn-outline-primary:hover,
#changeAddressModal .modal-content .modal-body .address-type .btn-check:checked + .btn.btn-outline-primary {
    color: #fff !important;
}
#changeAddressModal .modal-dialog .modal-footer button.btn.btn-secondary {
  max-width: max-content;
  background-color: transparent;
  border: solid 1px #DADEE3;
  color: #2C3A4B;
}
.address-book .widget {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: solid 1px #DADEE3;
  margin-top: 24px;
}
.address-book .widget .address-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.address-book .widget .address-header .content p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}
.address-book .widget .address-header .content h5 {
  font-size: 16px;
  color: #2C3A4B;
  font-weight: 600;
}
.address-book .widget .address-header .content h5 ~ p {
  font-size: 14px;
  font-weight: 500;
  color: #545D69;
}
.address-book .widget .address-header .icon {
  background-color: #DBE5FE;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0335B4;
}

.address-book .widget p {
  font-size: 14px;
  font-weight: 400;
  color: #545D69;
  margin-bottom: 0;
}
.address-book .widget h4 {
  font-size: 14px;
  font-weight: 600;
  color: #545D69;
  margin: 16px 0px;
}


/* Responsive css */
@media only screen and (max-width: 1500px) {
  .search-drop .container {
    max-width: 1030px !important;
  }
}
@media only screen and (max-width: 1399.98px) {
  p {
    font-size: 16px;
  }
  h3 {
    font-size: 34px;
  }
  h2 {
    font-size: 45px;
  }
  h4 {
    font-size: 30px;
  }
  .main-footer .widget ul li a{
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .mt-00 {
    margin-top: 0 !important;
  }
  .mt-30 {
    margin-top: 30px !important;
  }
  .mt-60 {
    margin-top: 60px !important;
  }
  .mt-90 {
    margin-top: 90px !important;
  }
}
@media only screen and (max-width: 1200px) {
  .js-header .form-group{
    width: 230px;
  }
  .js-header .your-location {
    width: 120px;
        margin-right: 18px !important;
  }
  .js-header .navbar-brand {
    max-width: 140px;
    margin-right: 40px !important;
  }
    .js-header .navbar .main-menu {
    margin-left: 18px;
  }
  .js-header .navbar .main-menu .nav-item .dropdown #languageDropdown {
    margin-left: 18px;
  }
}
@media only screen and (max-width: 991.98px) {
  .js-header .navbar .main-menu {
    max-width: 320px;
    width: 100%;
    top: 0;
    position: fixed;
    background-color: #ffffff;
    margin-top: 0px;
    right: 0;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.5s ease;
    z-index: 999;
  }
  .js-header .navbar.open .main-menu {
    transform: translateX(0);
    box-shadow: 0px 0px 8px 0px #000;
    padding: 50px 10px;
  }
  .js-header .form-group{
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .js-header nav.navbar .mobile-search {
    width: calc(100% - 130px);
    justify-content: end;
  }
  .js-header .your-location {
    margin-right: 8px !important;
    font-size: 14px;
    border-radius: 4px;
    height: 32px;
    padding: 5px 10px;
  }
  .js-header .form-group .search-icon{
    position: static;
    filter: brightness(0) saturate(100%);
  }
  .mega-manu {
    z-index: 9999999;
    height: 100vh;
    top: 0;
  }
  .banner-content{
    max-width: 100%;
    text-align: center;
  }
  .js-header .navbar .main-menu .nav-item .dropdown #languageDropdown {
    padding: 12px 10px;
  }
  .js-header .navbar li.nav-item a.nav-link.login-btn {
    padding: 0;
  }
  .banner-content .btn {
    max-width: 100%;
  }
  .js-header .navbar.open:after {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 53%);
    content: '';
    width: 100%;
    height: 100%;
    max-width: 100%;
    right: 0;
    z-index: -1;
  }
    .js-header .navbar-brand {
      max-width: 90px;
      margin-right: 0px !important;
  }
  .js-header .navbar .main-menu .nav-item .nav-link {
    padding: 14px 10px;
  }
  .js-header nav.navbar.open a.nav-link.menu-btn.on {
    background-color: #fff;
    border-radius: 50%;
  }
  .js-header nav.navbar a.nav-link.menu-btn.on {
    width: 38px;
    display: flex;
    height: 38px;
    align-items: center;
    padding: 15px;
    justify-content: center;
    margin-right: 20px;
  }
  .testimonial-slider{
    margin: 0px 0px;
  }
  .first-booking-wrapper .container .row{
    margin: 0;
  }
     .first-booking-wrapper .content {
    text-align: center;
   }
  .first-booking-wrapper .content h4 {
    font-size: 32px;
  }
  .first-booking-wrapper .container .row {
      padding: 38px 17px;
  }
  .main-footer{
    margin-top: -50px;
    padding-top: 80px !important;
  }
  .js-header nav.navbar {
    padding: 14px 0px;
    height: 74px;
  }
  .search-drop {
    top: 0;
    overflow: auto;
    height: 100vh;
    z-index: 99999999;
  }
  .search-drop .form-group .form-control {
    border: solid 1px rgba(218, 222, 227, 1);
    border-radius: 70px;
    height: 38px;
    padding: 0px 40px;
  }
  .search-drop .btn.btn-primary.px-4 {
    height: 53px;
    width: 100%;
    max-width: 100%;
  }
  body.search-open {
    overflow: hidden;
    position: relative;
  }
  body.search-open:after {
    position: absolute;
    content: '';
    background-color: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }
  #forgotPasswordModal .modal-dialog,
  #signinModal .modal-dialog,
  #locationModal .modal-dialog {
      margin: 0;
  }
  #forgotPasswordModal .modal-dialog .modal-content,
  #signinModal .modal-dialog .modal-content,
  #locationModal .modal-dialog .modal-content {
    border: 0;
    border-radius: 0;
  }
  #locationModal .modal-dialog{
    max-width: 100%;
  }
  #locationModal .mobile-back-btn {
    position: absolute;
    left: 30px;
    top: 20px;
  }
  #forgotPasswordModal .modal-content .modal-header .modal-title, #signinModal .modal-content .modal-header .modal-title {
      font-size: 24px;
  }
  #forgotPasswordModal .mobile-back-btn,
  #signinModal .mobile-back-btn {
    padding: 20px 0px 0px 30px;
  }
  #signinModal .modal-content ,
  #forgotPasswordModal .modal-content {
      height: 100vh;
      overflow: auto;
  }
  .search-drop .form-group .mobile-back-btn {
    position: absolute;
    top: 6px;
    left: 10px;
  }
  #forgotPasswordModal .modal-dialog, #signinModal .modal-dialog, #locationModal .modal-dialog {
    margin: 0;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  h3 {
    font-size: 30px;
  }
  h2 {
    font-size: 34px;
  }
  h1 {
    font-size: 45px;
  }
  .testimonial-slider .item{
    margin: 5px;
  }
  .categorys-wrapper .header-heading h4{
    font-size: 24px;
  }
  .slick-arrow {
    top: -39px;
  }
  .categorys-sliders .item{
    padding: 0;
  }
  .section-padding {
    padding: 46px 0px;
  }
    .search-deta-list .mobile-w-100 {
    width: 100%;
  }
  .slick-arrow.slick-next {
    left: auto;
    right: 0px;
  }
  .slick-arrow {
    right: 60px;
  }
  .banner-section .banner-dis {
    font-size: 20px;
  }
  .radio-btn.radio-btn-name .form-group label {
    padding: 0px 20px;
    height: 38px;
  }
  .product-details-wrapper .widget .card-box .progress-container .content h4 {
    font-size: 18px;
  }
  .radio-btn {
    gap: 8px;
    margin-bottom: 20px;
  }
  .gym-details{
    margin-top: 35px;
  }
  .order-summary .card-box h5 {
    font-size: 16px;
  }
  .icnav {
    width: 80px;
  }
  .icnav .metismenu a .nav-text {
      display: none;
  }
  .icnav .metismenu li a .menu-icon i {
      margin: 0;
  }
  .icnav .metismenu li a {
      padding: 10px 15px;
  }
  .icnav .icnav-footer a {
      padding: 10px 15px;
  }
  .icnav-footer a span {
      display: none;
  }
  .content-body,
  .dashboard-header {
      padding-left: 80px;
  }
  .content-body .welcome-widget {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .content-body .active-widget .user-details {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .session-table-card table {
    width: 620px !important;
  }
  .session-table-card {
    overflow: scroll;
  }
  .content-body #innerAccordion .accordion-item.not-accordion .user-details {
    flex-direction: row;
  }
  .content-body .active-widget .item .content ul {
      gap: 8px !important;
      flex-wrap: wrap;
      margin-bottom: 24px;
  }
  .content-body .welcome-widget.user-profile-wrapper {
    flex-direction: row;
    position: relative;
    padding: 15px;
  }
  .content-body .welcome-widget.user-profile-wrapper .edit-icon {
    position: absolute;
    right: 30px;
    top: 10px;
  }
  .content-body .welcome-widget.user-profile-wrapper .user-profile-content {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
  }
  #billing .card {
    overflow: scroll;
    display: block;
}
.content-body .card .radio-group {
    flex-wrap: wrap;
    gap: 20px;
}
#billing .card table.table {
    width: 720px;
}
}
@media only screen and (max-width: 575.98px) {
  h1 {
    font-size: 36px;
  }
  .main-footer .footer-btm {
    text-align: center;
  }
    .banner-section .banner-heading{
    font-size: 36px;
    margin-bottom: 24px;
  }
  #yogaModal .modal-header button.btn-close {
    position: static;
  }
  .confirmation-card{
    margin: 50px 30px;
    padding: 32px 15px 40px 15px;
  }
  .icnav {
    transform: translateX(-100%);
  }
  body.dashboard-slidebar .icnav{
    transform: translateX(0%);
  }
  .content-body, .dashboard-header{
    padding-left: 0;
  }
  .notification .dropdwon-menu {
    position: fixed;
    top: 73px;
  }
}
@media only screen and (max-width: 400px) {
  h1 {
    font-size: 28px;
  }

}
.skiptranslate {
    display: none;
    height: 0;
}
div#google_translate_element {
    height: 0;
	display: none;
}
#goog-gt-original-text, #goog-gt-tt{
display: none !important;	
}
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q{
	background-color: transparent !important;
	box-shadow: 0 0 0 transparent !important;
}
html body {
    top: 0 !important;
}






/*========================================================================================================================*/


.dashboard-header .navbar .nav-item.dropdown .sub-menu {
  border: solid 1px rgba(222, 226, 230, 1);
  border-radius: 6px;
  box-shadow: -14px 18px 50px -20px var(--ColorbgBlack60);
  width: 220px;
  position: absolute;
  background-color: #fff;
  right: 0;
  display: none;
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu .user-card {
  display: flex;
}
.dashboard-header .navbar .nav-item.dropdown:hover .sub-menu {
  display: block;
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu ul li a:hover {
  font-weight: 600;
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu .user-card .user-details h4 {
  font-size: 14px;
  font-weight: 600;
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu .user-card .user-details p {
  font-size: 14px;
  color: rgba(108, 117, 125, 1);
  margin: 0;
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu .user-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border-bottom: solid 1px rgba(222, 226, 230, 1);
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(108, 117, 125, 1);
  padding: 6px 16px;
  display: block;
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu ul {
  padding: 12px 0px;
}
.dashboard-header .navbar .nav-item.dropdown .sub-menu .footer {
  border-top: solid 1px rgba(222, 226, 230, 1);
}

footer.dashboard-footer {
    padding: 2rem;
    background: #ffffff;
}
.message {
    width: 96%;
    padding: 15px 15px 0;
    border: 1px solid #d2d2d2;
    margin: 0 2%;
    background: #f5f5f5;
    box-shadow: 0px 0px 6px #c2c2c2;
    text-align: center;
	display:none;
}
.user-profile img {
    max-height: 80px;
    max-width: 80px;
    border-radius: 50%;
}
.user-img img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.user-details {
    word-wrap: break-word;
    word-break: break-word;
}
.content-body .active-widget a.btn.blue-btn.active-btn {
  font-size: 14px;
  color: #0335B4;
  border: solid 1px #C1D2FE;
  background-color: #E8EEFF;
  width: 64px;
  height: 32px;
  line-height: normal;
  padding: 7px 0px;
}

/*=================================================LOADER=======================================================================*/
#loader-wrapper {
  position: fixed; /* Stays in place even when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* Or any background color/image */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999999; /* Ensure it's on top of other content */
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey border */
  border-top: 16px solid #3498db; /* Blue border for the spinning part */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite; /* Animation for spinning */
  position: absolute;
  left: 45%;
  top: 45%;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*============================================= Dashboard Logo =============================================*/
body img.img-fluid.sm-logo {
    display: none;
}
body img.img-fluid.lg-logo {
    display: block;
}
body.dashboard-slidebar img.img-fluid.lg-logo {
    display: none;
}
body.dashboard-slidebar img.img-fluid.sm-logo {
    display: block;
}

/*=======================================Edit Modal=========================================*/

#changeAddressModal2 {
  z-index: 99999999;
}
#changeAddressModal2 .modal-content {
  padding: 51px 34px;
  border-radius: 16px;
}
#changeAddressModal2 .modal-dialog {
  max-width: 560px;
}
#changeAddressModal2 .modal-dialog button.btn-close {
  position: absolute;
  right: 33px;
  top: 60px;
}
#changeAddressModal2 .modal-content .modal-body h4 {
  font-size: 16px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 12px;
}
#changeAddressModal2 .modal-content .modal-body .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #2C3A4B;
  margin-bottom: 12px;
}
#changeAddressModal2 .modal-content .modal-body .form-control {
  height: 40px;
  background: #EBEEF2;
  border: 0;
  border-radius: 8px;
}

#changeAddressModal2 .modal-content .modal-body .address-type label.btn.btn-outline-primary {
  padding: 7px 16px;
  height: 37px;
  line-height: normal;
  max-width: min-content;
  border: solid 1px #2C3A4B !important;
  color: #2C3A4B !important;
}
#changeAddressModal2 .modal-content .modal-body .address-type  .btn.btn-outline-primary:hover,
#changeAddressModal2 .modal-content .modal-body .address-type .btn-check:checked + .btn.btn-outline-primary {
    color: #fff !important;
}
#changeAddressModal2 .modal-dialog .modal-footer button.btn.btn-secondary {
  max-width: max-content;
  background-color: transparent;
  border: solid 1px #DADEE3;
  color: #2C3A4B;
}
.probody{
min-height: calc(100vh - 220px);
}