/* POPPINS FONT */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* INTER FONT */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

/* root */
:root {
  /* gradients */
  --red-blue-gradient: linear-gradient(0deg, #db2021 0%, #2f3192 100%);
  --webkit-red-blue-gradient: -webkit-linear-gradient(
    0deg,
    #db2021 0%,
    #2f3192 100%
  );
  --red-gradient: linear-gradient(0deg, #ed1c24 0%, #981b1b 100%);
  --red-webkit-gradient: -webkit-linear-gradient(
    0deg,
    #ed1c24 0%,
    #981b1b 100%
  );
  --blue-gradient: linear-gradient(0deg, #2f3192 0%, #081d4e 100%);
  --blue-webkit-gradient: -webkit-linear-gradient(
    0deg,
    #2f3192 0%,
    #081d4e 100%
  );

  /* --dark-blue: #024475; */
  /* red colors */
  --red: #db2021;
  --red-hover: #c51d1e;
  --red-active: #af1a1a;
  --light-red: #ed1c24;
  --darker-red: #4d0b0c;
  --red-light: #fbe9e9;
  --red-light-hover: #fadede;
  --red-light-active: #f4baba;
  --red-dark: #a41819;
  --red-dark-hover: #831314;
  --red-dark-active: #630e0f;
  /* blue colors */
  --blue: #2e3192;
  --light-blue: #045694;
  --blue-light: #eaeaf4;
  --blue-light-hover: #e0e0ef;
  --blue-light-active: #bfbfdd;
  --blue-normal: #2f3192;
  --blue-normal-hover: #2a2c83;
  --blue-normal-active: #262775;
  --blue-dark: #23256e;
  --blue-dark-hover: #1c1d58;
  --blue-dark-active: #151642;
  --blue-darker: #101133;
  /* dark blue colors */
  --dark-blue-Lighter: #8e939e;
  --dark-blue-Lighter-hover: #777d8b;
  --dark-blue-Lighter-active: #5c6373;
  --dark-blue-normal: #040f28;
  --dark-blue-normal-hover: #030d22;
  --dark-blue-normal-active: #030b1d;
  --dark-blue-dark: #01050e;
  --dark-blue-dark-hover: #01040a;
  --dark-blue-Dark-active: #000204;
  /* neutral colors */
  --white: #ffffff;
  --black: #1c1c2d;

  /* --dark-navy-blue: #020F2A;
    --lotion-gray: #FAFAFA;
    --light-silver: #D9D9D9; */
  --font-poppins: "Poppins", sans-serif;
}

::selection {
  color: var(--white);
  background: var(--red);
  -webkit-text-fill-color: #fff;
}

/* CSS RESET */
*,
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-poppins);
  font-weight: 400;
  color: var(--black);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* preset */

/* body colors */
.bg-white {
  background: var(--white);
}

.bg-gradient {
  background: var(--red-blue-gradient) !important;
  background: var(--webkit-red-blue-gradient) !important;
}

.bg-gradient-blue {
  background: var(--blue-gradient);
  background: var(--blue-webkit-gradient);
}

.text-white {
  color: var(--white);
}

.text-blue {
  color: var(--blue);
}

.text-red {
  color: var(--red);
}

.text-black {
  color: var(--black) !important;
}

.text-white {
  color: var(--white);
}

.text-white {
  color: var(--white);
}

.text-white {
  color: var(--white);
}

.text-white {
  color: var(--white);
}

/* font */
h1 {
  font-size: 120px;
  line-height: 130px;
}

h2 {
  font-size: 64px;
  line-height: normal;
}

h3 {
  font-size: 48px;
  line-height: normal;
}

h4 {
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

h5 {
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
}

h1.page-title {
  color: var(--black);
  font-size: 40px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-weight: 700;
}

.fs-28 {
  font-size: 28px;
}

.fs-24 {
  font-size: 24px;
}

.fs-20 {
  font-size: 20px;
}

.fs-16 {
  font-size: 16px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/* margin */

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mt-4 {
  margin-top: 4px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mt-96 {
  margin-top: 96px;
}

.mb-96 {
  margin-bottom: 96px;
}

.mt-128 {
  margin-top: 128px;
}

.mb-128 {
  margin-bottom: 128px;
}

.my-4 {
  margin-block: 4px !important;
}

.my-8 {
  margin-block: 8px;
}

.my-16 {
  margin-block: 16px;
}

.my-24 {
  margin-block: 24px;
}

.my-32 {
  margin-block: 32px;
}

.my-48 {
  margin-block: 48px;
}

.my-64 {
  margin-block: 64px;
}

.mt-80 {
  padding-top: 80px;
}

.mb-80 {
  padding-bottom: 80px;
}

.my-96 {
  margin-block: 96px;
}

.my-128 {
  margin-block: 128px;
}

/* padding */
.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.py-6 {
  padding-block: 6px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pt-48 {
  padding-top: 48px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pt-64 {
  padding-top: 64px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pt-96 {
  padding-top: 96px;
}

.pb-96 {
  padding-bottom: 96px;
}

.pt-128 {
  padding-top: 128px;
}

.pb-128 {
  padding-bottom: 128px;
}

.pt-264 {
  padding-top: 264px;
}

.pb-264 {
  padding-bottom: 264px;
}

.pt-140 {
  padding-top: 140px;
}

.pb-260 {
  padding-bottom: 260px;
}

.py-8 {
  padding-block: 8px;
}

.py-80 {
  padding-block: 80px;
}

.py-16 {
  padding-block: 16px;
}

.py-24 {
  padding-block: 24px;
}

.py-32 {
  padding-block: 32px;
}

.py-48 {
  padding-block: 48px;
}

.py-64 {
  padding-block: 64px;
}

.py-76 {
  padding-block: 76px;
}

.py-96 {
  padding-block: 96px;
}

.py-128 {
  padding-block: 128px;
}

.ps-64 {
  padding-left: 64px;
}

/* ELEMENTS */

/* buttons */
.bttn {
  padding: 9px 16px;
  font-family: var(--font-poppins);
  font-size: 20px;
  border-radius: 4px;
  text-transform: capitalize;
  border: 0;
  /* transition: all .3s ease-in; */
}

.bttn.btn-solid-red {
  background: var(--red);
  color: var(--white);
}

.bttn.btn-solid-blue {
  background: var(--blue);
  color: var(--white);
}

.bttn.btn-with-red-border {
  color: var(--red);
  border: 2px solid var(--red);
}

.bttn.btn-with-blue-border {
  color: var(--blue);
  border: 2px solid var(--blue);
}

.bttn.btn-with-gradient-border {
  color: var(--blue);
  border-image: var(--red-blue-gradient);
  background: var(--webkit-red-blue-gradient);
  border-width: 2px;
  border-style: solid;
}

.bttn.btn-solid-gray {
  background: var(--gray);
  color: var(--white);
}

.bttn.btn-with-gray-border {
  color: var(--gray);
  border: 2px solid var(--gray);
}

.bttn.btn-gradient {
  background: var(--red);
  background: var(--red-blue-gradient);
  background: var(--webkit-red-blue-gradient);
  color: var(--white);
}

.bttn.red-gradient-on-hover:hover {
  background: linear-gradient(to right, var(--red), var(--blue));
}

.social-icons-red-on-hover a:hover {
  border-color: var(--red) !important;
}

.social-icons-red-on-hover a:hover i {
  color: var(--red);
}

.text-gradient {
  background: linear-gradient(to right, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: fit-content;
  margin-inline: auto;
}

.text-gradient-with-border:hover {
  background: linear-gradient(to right, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 2px solid !important;
  border-image: linear-gradient(to right, var(--red), var(--blue)) 1 !important;
  /* border-radius: 4px; */
}

/* .text-gradient:hover::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(to right, var(--red), var(--blue));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
} */

/* pro-culb-pre-season */
section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-section {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  /* width: 100vw; */
}

.hero-section h1 {
  white-space: nowrap;
}

.hero-section .video-wrapper {
  padding: 0;
  min-height: 100%;
  position: relative;
}

.hero-section video {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(219, 32, 33, 0.6) 0%,
    rgba(47, 49, 146, 0.6) 100%
  );
  z-index: 1;
  /* opacity: .75; */
}

.vid-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* .book-now-cta a:hover {
    background: linear-gradient(to right, var(--red), var(--blue));
    border: inherit;
    margin: 2px;

}

.book-now-cta a {
    border: 2px solid var(--white);
    padding: 13px 32px;
    border-radius: 4px;
    font-size: 20px;
    display: inline-block;
    font-weight: 700;
} */

.scroll-down-svg {
  position: absolute;
  width: 100%;
  bottom: -10rem;
  animation: moveUpDown 2s ease-in-out infinite;
}

#playerAgency .scroll-down-svg {
  bottom: 10rem;
}

#playerAgency .scroll-down-svg path {
  stroke: #8e939e;
}

.scroll-down-svg i {
  font-size: 64px;
}

.social-link-wrapper {
  position: absolute;
  left: 5vw;
  height: 100vh;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  z-index: 3;
}

.social-link-wrapper .social-links {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.ultimate-desination-desc {
  max-width: 850px;
}

.ultimate-dest-img-wrapper .afs-logo {
  margin-inline: auto;
  padding-bottom: 5rem;
}

/* 
.ultimate-dest-img-wrapper .image-left {
    max-width: 532px;

}

.ultimate-dest-img-wrapper .image-right {
    max-width: 540px;

} */

.camp-management,
.accomodation-meals-tabs,
.setting-high-standard,
.club-teams {
  position: relative;
}

.camp-management::before,
.setting-high-standard::before {
  content: "";
  background: url(../images/svg/left-top.svg) no-repeat;
  position: absolute;
  height: 100%;
  width: 452px;
  top: 0;
  left: 0;
  background-position-x: 100%;
}

.camp-management::after,
.setting-high-standard::after {
  content: "";
  background: url(../images/svg/right-bottom.svg) no-repeat;
  position: absolute;
  height: 100%;
  width: 364px;
  bottom: 0;
  right: 0;
  background-position: 100% 100%;
}

.accomodation-meals-tabs::after,
.club-teams::after {
  content: "";
  background: url(../images/svg/right-top.svg) no-repeat;
  position: absolute;
  height: 100%;
  width: 380px;
  z-index: -1;
  top: 0;
  right: 0;
  background-position-x: 100%;
}

.accomodation-meals-tabs::before {
  content: "";
  background: url(../images/svg/left-bottom.svg) no-repeat;
  position: absolute;
  height: 100%;
  width: 496px;
  bottom: 0;
  left: 0;
  background-position: 100% 100%;
}

/* TABS */

.accomodation-meals-tabs .nav-pills .nav-link {
  border-left: 6px solid transparent;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: transparent !important;
}

#v-pills-tab {
  position: relative;
}

#tab-image-container .img-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

#tab-image-container .img-wrapper .img-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #000);
}

.img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: var(--white);
}

.accomodation-meals-tabs ul {
  list-style: disc;
  padding-left: 32px;
}

#tab-image-container .img-wrapper:nth-child(odd) {
  max-width: 500px;
  margin-left: auto;
}

#tab-image-container .img-wrapper:nth-child(even) {
  max-width: 355px;
  margin-right: auto;
}

.tabs-container::-webkit-scrollbar-thumb {
  background: transparent !important;
}

.tabs-container::-webkit-scrollbar {
  background: transparent !important;
}

.tabs-container::-webkit-scrollbar-track {
  background: transparent !important;
}

#v-pills-tab .nav-link {
  color: var(--dark-blue-Lighter);
}

#v-pills-tab .nav-link.active {
  color: var(--black);
}

.accomodation-meals-tabs #v-pills-tab::before {
  content: "";
  width: 3px;
  background: transparent;
  border: 3px solid #e6e6e6;
  left: 0;
  z-index: 2;
  height: 100%;
  position: absolute;
  border-radius: 10px;
}

.accomodation-meals-tabs .nav-link.active {
  position: relative;
}

.accomodation-meals-tabs .nav-link.active::before {
  content: "";
  width: 3px;
  background: transparent;
  border: 3px solid #000;
  left: -6px;
  z-index: 2;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  top: 0;
}

/* .tabs-container #tab-image-container {
    max-height: 550px;
    overflow-y: visible;
} */
.tabs-container {
  max-height: 550px;
  overflow-y: visible;
}

.tabs-nav-wrapper {
  position: sticky;
  top: 0;
  height: 100%;
}

/* dhruv plans css */
.package-card:hover,
.card:hover {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
}

.btn:hover {
  color: auto !important;
  background-color: auto !important;
  border-color: auto !important;
}

.package-card,
.card {
  border: 2px solid var(--blue-light);
  border-radius: 10px;
  background: var(--white);
  transition: all 0.3s ease-in;
}

.package-card {
  padding: 24px;
}

.package-card li span {
  color: var(--black);
}

.showcase-packages {
  background: #f5f5f5;
}

.pack-register {
  /* background: var(--red); */
  border: none;
  border-radius: 4px;
  padding: 9px 16px;
}

.included-contents li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.included-contents li i {
  font-size: 18px;
}

.included-contents li:last-child {
  margin-bottom: 0;
}

/* .included-contents li::marker {
    content: "\f272" !important;
    font-family: bootstrap-icons !important;
} */

.compare-plans {
  margin-top: 40px;
}

#pro-club-pre-season .showcase-packages .col-md-3 {
  padding-inline: 8px !important;
}

/* 308 - 146 gap 16 */
.scrolling-club-logos .logo-card {
  padding: 20px 114px 0 114px;
}

.scrolling-club-logos.training-images .logo-card {
  padding: 0;
}

.club-teams {
  text-align: center;
}

.scrolling-club-logos {
  overflow: hidden;
}

.logo-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.scrolling-club-logos.training-images .logo-track {
  display: flex;
  animation: scroll 10s linear infinite;
}

.scrolling-club-logos.training-images.reverese .logo-track {
  display: flex;
  animation: scrollReverse 10s linear infinite;
}

.logo-card {
  flex: 0 0 auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.pre-season-reviews {
  overflow: hidden;
}

.pre-season-reviews .container {
  overflow: visible;
}

.iframe-slider .slick-list {
  /* padding: 0 25% 0 0 !important; */
  /* margin-left: 19rem; */
  overflow: visible;
  /* margin-left: 50px; */
}

.pre-season-reviews .container {
  position: relative;
}

.review-iframe-wrapper .slick-arrow {
  position: absolute;
  right: 0;
  top: -64px;
}

.review-iframe-wrapper .slick-arrow.slick-prev {
  right: 56px;
  z-index: 9;
}

.iframe-wrapper {
  margin-right: 16px;
}

.iframe-wrapper iframe {
  max-width: 100%;
}

/* slick btns */
button.slick-arrow {
  border: 0;
  background: var(--light-blue);
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: var(--white);
  /* transition: all .3s ease-in-out; */
}

button.slick-arrow:hover {
  background: linear-gradient(-90deg, #db2021 0%, #2f3192 100%);
}

button.slick-arrow.slick-disabled {
  background: var(--dark-blue-Lighter);
  cursor: not-allowed;
}

/* CUSTOM VIDEO */

.testimonial-video {
  height: calc(100vh - 120px);
  width: 100%;
  object-fit: cover;
}

.video-controls {
  align-items: center;
}

.control-icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  cursor: pointer;
  fill: transparent;
}

.progress-container {
  width: 100%;
  background-color: #dddddd7b;
  height: 6px;
  position: relative;
  border-radius: 4px;
  margin-inline: 24px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

.text-desc-div {
  position: absolute;
  bottom: 80px;
  left: 0;
}

#mute-unmute:hover rect,
#mute-unmute:hover path,
#play-pause:hover rect,
#play-pause:hover path {
  stroke: var(--red);
}

.video-slider-wrapper .video-wrapper video {
  height: calc(100vh - 120px);
  width: 100%;
  position: relative;
  object-fit: cover;
}

.video-slider-wrapper .video-wrapper {
  position: relative;
}

.video-content {
  bottom: 110px;
  left: 15vw;
  position: absolute;
}

/* slick dots */
ul.slick-dots button {
  background: url(../images/svg/slider-dot.svg) no-repeat;
  background-size: cover;
  border: 0;
  color: transparent;
  min-width: 16px;
  background-size: 100% 100%;
  opacity: 0.5;
}

ul.slick-dots .slick-active button {
  opacity: 1;
}

ul.slick-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HEADER */
header {
  height: 120px;
  transition: all 0.3s ease-in;
}

.offcanvas-header {
  transition: all 0.3s ease-in;
}

header h3.logo-text {
  color: var(--white);
  margin-left: 24px;
}

header.bg-white h3.logo-text,
#normal-header header h3.logo-text {
  color: var(--black);
}

.navbar-brand {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
}

img.scrolled-logo {
  display: none;
}

header .offcanvas {
  width: 100vw !important;
  background: var(--light-blue);
}

.offcanvas-body a {
  color: var(--white) !important;
}

.offcanvas-header .btn-close {
  margin-left: 0;
}

.navbar-nav {
  gap: 16px;
  /* gap: 24px; */
}
header .navbar-nav {
  overflow: hidden;
}

header .nav-link {
  padding: 0;
}

/* Style for the offcanvas menu */

.offcanvas-start.show {
  background-image: url(../images/menu-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* transition: opacity 0.3s ease-in-out; */
  opacity: 1;
  /* animation: fadeInBackground 0.5s ease-out 2s forwards; */
}

@keyframes fadeInBackground {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.offcanvas-body ul.navbar-nav li {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.offcanvas-start.show .offcanvas-body ul.navbar-nav li {
  opacity: 1;
  transition-delay: 0.2s;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath stroke='rgba%28255, 255, 255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  height: 24px;
  width: 24px;
  background-size: cover;
}

header.bg-white .navbar-toggler-icon,
#normal-header header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath stroke='rgba%280, 0, 0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav h3 {
  transition: all 0.3s ease-in;
}

.navbar-nav h3:hover {
  transform: translateX(30px);
}

/* .navbar-toggler-icon {
    display: none;
} */

.btn-close:not(.modal-dialog .btn-close) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  height: 24px;
  width: 24px;
  background-size: cover;
}

.navbar-toggler {
  border: 0;
  padding-left: 68px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas-body,
.offcanvas-header {
  padding-left: 80px;
}

.menu-divider {
  background: var(--blue-light-active);
  height: 2px;
  width: 100%;
}

.offcanvas-body {
  flex-grow: unset;
  padding-block: 0;
}

header .navbar-nav li:last-child {
  margin-bottom: 24px;
}

/* menu footer */
.offcanvas-footer {
  padding-top: 40px;
  padding-bottom: 46px;
}

.footer-client-wrapper img {
  filter: grayscale(60%);
}

.footer-client-wrapper img:hover {
  filter: grayscale(0);
}

.offcanvas-footer .social-link-wrapper {
  position: relative;
  left: 80px;
  height: auto;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 24px;
  margin-bottom: 0;
  z-index: 2;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--black);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--red-gradient);
  border-radius: 8px;
}

/* FOOTER */
footer {
  padding-top: 40px;
  border-top: 8px solid !important;
  border-image: linear-gradient(to right, var(--red), var(--blue)) 1 !important;
}

.footer-border {
  height: 2px;
  width: 100%;
  background: var(--blue-light);
  margin-top: 36px;
  margin-bottom: 40px;
}

.copyright-text {
  padding-block: 16px 14px;
  color: var(--dark-blue-Lighter);
  font-size: 12px;
  font-weight: 600;
}

footer .social-link-wrapper .social-links {
  color: var(--black);
  border-color: var(--black);
}

footer .social-link-wrapper {
  position: relative;
  left: 0;
  height: auto;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 24px;
  margin-bottom: 0;
  z-index: 2;
}

.book-now-cta-fixed {
  position: fixed;
  display: none;
  right: 80px;
  bottom: 40px;
  z-index: 9;
}

.page-navigation {
  background: rgb(234 234 244 / 50%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  z-index: 9;
  display: none;
}

.page-navigation ul {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 0;
  padding: 16px 24px;
  border-radius: 4px;
}

.page-navigation ul a {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
}

.page-navigation ul a:hover {
  color: var(--red);
}

.page-navigation ul a.active {
  color: var(--black);
  border-bottom: 4px solid var(--red);
  padding-bottom: 12px;
}

.breadcrumb {
  z-index: 9;
  position: relative;
  /* top: 152px; */
  top: 130px;
  left: 0;
  max-width: fit-content;
}

.breadcrumb a {
  text-decoration: underline;
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb span {
  font-weight: 400;
  font-size: 14px;
}

.breadcrumb i {
  font-size: 14px;
}

/* POP UP CSS */
/* .modal-dialog {
  min-width: fit-content;
} */

.modal-dialog .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 64px;
  width: 64px;
  padding: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231C1C2D'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
}

.btn-close:focus {
  box-shadow: none;
}

.modal-body {
  max-height: 85vh;
  overflow-y: auto;
}

.modal-body::-webkit-scrollbar-thumb {
  background: gray;
  width: 2px !important;
}

/* POP-UPS */

.fees-table {
  margin-top: 20px;
}

.fees-table th,
.fees-table td {
  vertical-align: middle;
}

.table-head-color tr th {
  background: #f6f6f8 !important;
  color: #5c6373 !important;
}

.modal tbody,
.modal td,
.modal tfoot,
.modal th,
.modal thead,
.modal tr {
  border-color: transparent;
  border-style: none;
  border-width: 0;
  /*padding-top: 12rem;*/
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: transparent;
  border-style: none;
  border-width: 0;
}

.one h5 {
  font-size: 5rem;
  text-shadow: 12px 10px 1px var(--red);
  color: var(--blue-normal);
  -webkit-text-stroke: 3px var(--red-light);
}

.two h5 {
  font-size: 40px;
  text-shadow: 12px 10px 1px var(--red);
  color: var(--blue-normal);
  -webkit-text-stroke: 40px, var(--red-light);
}

.how-to-apply-para span {
  color: var(--black);
}

.table th,
.table td {
  vertical-align: middle;
}

.table thead th {
  color: #fff;
}

.table .bttn {
  margin-top: 10px;
}

.pre-season h5 {
  font-size: 48px !important;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center !important;
}

.after-pre-season {
  text-align: center !important;
}

.after-pre-season span {
  color: var(--black);
}

.thead-dark th {
  font-size: 20px !important;
  font-weight: 400;
  color: var(--black) !important;
}

.table-content {
  text-align: center !important;
  font-size: 24px !important;
}

.pre-season-left-content {
  font-size: 24px !important;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  width: 80%;
}

.indclude {
  color: var(--black);
  font-weight: 800 !important;
  font-size: 94px;
}

.thead-dark tr th {
  text-align: center;
  font-size: 16px !important;
}

.afs-showcase-pop-up span {
  font-size: 24px;
}

.afs-showcase-pop-up h5 {
  font-size: 40px;
  font-weight: 600;
}

.afs-residential-span {
  font-size: 32px;
  font-weight: 500;
}

.afs-residential-pop-up h5 {
  font-size: 40px;
  font-weight: 600;
}

.afs-juniors-span {
  font-size: 32px;
  font-weight: 500;
}

.afs-juniors-pop-up h5 {
  font-size: 40px;
  font-weight: 600;
}

/* .organize-pro-slider .slick-list {
    padding: 0 25% 0 0 !important;
} */

.organize-pro-slider .slick-arrow {
  position: absolute;
  bottom: -80px;
}

.organize-pro-slider .slick-arrow.slick-next {
  transform: translateX(-47%);
  right: 47%;
}

.organize-pro-slider .slick-arrow.slick-prev {
  transform: translateX(-47%);
  left: 47%;
}

#residential .main-img {
  position: relative;
  /* display: flex;
    justify-content: center;
    align-items: center; */
  max-width: fit-content;
  margin-inline: auto;
}

#residential .left-img {
  position: absolute;
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
}

#residential .content-right {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
  background: #fff;
  position: absolute;
  right: -40%;
  padding: 40px;
  max-width: 432px;
  top: 50%;
  transform: translateY(-50%);
}

#residential .content-right h5 {
  margin-bottom: 16px;
  color: var(--black);
}

#residential .content-right p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}

.organized-image-slider::after {
  content: "";
  background: url(../images/afs-residential/org-right-bottom.svg) no-repeat;
  position: absolute;
  height: 100%;
  width: 320px;
  background-size: contain;
  bottom: 0;
  right: 0;
  background-position: 100% 100%;
  z-index: -1;
}

.typical-day-section::after {
  content: "";
  background: url(../images/afs-residential/typical-top-right.svg) no-repeat;
  position: absolute;
  height: 100%;
  width: 320px;
  background-size: contain;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.typical-day-slider-wrapper {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
  border-radius: 10px;
  overflow: hidden;
}

.typical-day-slider-wrapper .content {
  padding: 64px;
  padding-bottom: 128px;
}

.typical-day-slider-wrapper .image-container {
  padding-right: 0;
  height: 100%;
}

.typical-day-slider-wrapper button.slick-arrow {
  position: absolute;
  bottom: -60px;
}

.typical-day-slider-wrapper button.slick-arrow.slick-prev {
  left: 0;
}

.typical-day-slider-wrapper button.slick-arrow.slick-next {
  left: 56px;
}

.typical-day-slider-wrapper .slick-list,
.typical-day-slider-wrapper .slick-track,
.typical-day-slider-wrapper img {
  height: 100%;
}

.typical-day-slider-wrapper img {
  object-fit: cover;
}

/* INNER PAGE  */
.inner-page-banner {
  min-height: 400px;
  max-height: 400px;
  position: relative;
}

.inner-page-banner h1 {
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}

#normal-header header {
  background: var(--white);
  position: sticky !important;
}

#normal-header header img.logo {
  display: none !important;
}

#normal-header header img.scrolled-logo {
  display: block !important;
}

.inner-page-content .content h3 {
  margin-bottom: 16px;
}

.inner-page-content .content h5 {
  margin-bottom: 8px;
}

.inner-page-content {
  background: url(../images/inner-page-bg.png) no-repeat;
  background-size: contain;
  background-attachment: fixed;
  background-position-x: right;
}

.inner-page-banner img {
  object-position: center;
  object-fit: cover;
  max-height: 400px;
}

/* about-us */
.afs-gallery-slider .slick-list {
  overflow: visible;
}

.afs-gallery-slider a {
  margin-right: 16px;
}

.afs-gallery-slider .slick-arrow {
  top: -78px;
}

/* ajay */

.about-us-form-left {
  position: relative;
  width: 100%;
}

.about-us-form-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(2 15 42 / 60%);
  z-index: 1;
}

.about-afs h2 {
  text-align: center;
  font-size: 48px;
}

.about-afs p {
  text-align: center;
  font-size: 24px;
}

.about-us-form-content {
  position: absolute;
  top: 10%;
  left: 10%;
  color: white;
  z-index: 2;
}

.about-us-form-para p {
  font-size: 32px;
}

.about-us-form {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.about-us-form-section-bg {
  background: #f5f5f5;
}

.about-form-container {
  overflow: hidden;
  padding: 32px 40px;
}

.contact-form a {
  color: var(--light-blue);
  text-decoration: underline;
}

.contact-form .form-control,
.form-control {
  padding: 12px 16px;
  color: var(--black);
  border: 1px solid var(--dark-blue-Lighter);
  border-radius: 4px;
}

.contact-form ::placeholder {
  font-size: 16px;
  color: var(--dark-blue-Lighter);
}

.contact-form .form-control:focus,
.form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--dark-blue-Lighter);
}

.about-form-container .form-checked {
  font-size: 16px;
  font-weight: 500;
}

.required-star {
  color: var(--red);
  margin-left: 4px;
}

.about-form-container .col-md-6 {
  padding-inline: 8px;
}

.form-control#inputMessage {
  resize: none;
  height: 150px !important;
}

.about-us-form-button {
  min-width: 200px;
}

.form-check-input {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  opacity: 1;
  visibility: visible;
}

.form-check-input:focus,
.form-check-input:active {
  outline: none;
  box-shadow: none;
  border: none;
}

/* custom checkbox */
/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox */
.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: transparent;
  border-radius: 4px;
  border: 2px solid var(--dark-blue-Lighter);
}

/* Checkmark (hidden by default) */
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 50%;
  top: 50%;
  width: 7px;
  height: 14px;
  border: solid var(--red);
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: var(--white);
  border: solid var(--red);
}

.custom-checkbox .checkmark::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 4px;
  border: 2px solid transparent;
  background: linear-gradient(to right, #db2021, #2f3192);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  display: none;
}

.custom-checkbox .checkmark:hover::before {
  display: block;
}

/* swiper css */

.afs-management-slider {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* .swiper-slide {
    width: 300px;
    height: 400px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    filter: blur(1px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
} */

/* .swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
} */

/* .swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #ecdbdb;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    height: 200px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.swiper-slide-active {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
} */

/* AGENCY */
.filter label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--black);
}

#filters label,
#filters input {
  user-select: none;
  -webkit-user-drag: none;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: transparent;
  box-shadow: none;
}

#filters .accordion-button {
  padding-top: 24px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  padding-inline: 0;
}

#filters .accordion-body {
  padding-block: 0 12px;
  padding-inline: 0;
}

#filters .custom-checkbox {
  margin-bottom: 12px;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231C1C2D' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231C1C2D' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

/* job card */
.job {
  padding: 24px;
  border: 2px solid #eaeaf4;
  border-radius: 10px;
  margin-bottom: 24px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 250px;
  background-color: var(--white);
  transition: all 0.3s ease-in;
}

.job[data-position="attack"],
.job[data-position="midfielder"] {
  background-image: url(../images/svg/striker-card-bg.svg);
}

.job[data-position="defense"] {
  background-image: url(../images/svg/defense-card-bg.svg);
}

.job[data-position="goalkeeper"] {
  background-image: url(../images/svg/gk-card-bg.svg);
}

.job ul {
  list-style: disc;
  padding-left: 28px;
}

a.read-more {
  color: var(--red-dark-hover);
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.job-details span {
  font-size: 14px;
  margin-inline: 4px;
}

.player-position-img-wrapper {
  max-width: 130px;
}

.job-position a {
  min-width: 226px;
}

#resetButton {
  border: 1px solid var(--dark-blue-Lighter);
}

#resetButton:hover {
  border: 1px solid var(--red);
  color: var(--red);
}

#sortDropdown {
  max-width: 143px;
  padding-block: 16px;
  font-weight: 600;
  font-size: 20px;
  border: 0;
}

#sortDropdown option {
  font-size: 16px;
}

.form-select:focus {
  box-shadow: none;
  border: 0;
}

.job:hover {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
}

.hero-desc {
  max-width: 40%;
}

#playerAgency {
  background-image: url(../images/player-agency-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: contain;
}

#playerAgency .hero-section {
  background: #f4e8ed;
  position: relative;
}

#playerAgency .hero-section video {
}

.video-mask {
  -webkit-mask-image: url(../images/svg/video-mask-shape2.svg);
  mask-image: url(../images/svg/video-mask-shape2.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  min-height: 1380px;
  min-width: 55vw;
  max-width: 55vw;
  mask-position: top right;
  mask-size: contain;
}

.video-mask::after {
  content: "";
  width: 100%;
  height: 1380px;
  background: linear-gradient(to right, var(--red), var(--blue));
  display: block;
  position: relative;
  opacity: 0.6;
  z-index: 0;
}

#playerAgency .logo-card {
  max-width: 308px;
}

#playerAgency .scrolling-club-logos.training-images .logo-track {
  gap: 16px;
  z-index: 9;
  position: relative;
}

.successful-players-section {
  background: #f4e8ed;
}

.cta-section {
  background-image: url(../images/agency/cta-section.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.cta-section h3,
.cta-section a {
  z-index: 9;
}

.cta-section::after {
  background: rgb(4 15 40 / 60%);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
}

/* dhruv scroll logo css start*/
.attended-leagues {
  position: relative;
}

#playerAgency .attended-leagues::before {
  content: none;
}

#playerAgency .attended-leagues::after {
  content: none;
}

.attended-leagues .attended-info {
  margin-bottom: 32px;
}

.attended-leagues .league-row-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 38px 0px;
}

.attended-leagues .league-row {
  display: flex;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
  height: 300px;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.attended-leagues .league-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-right: 10px;
  background: transparent;
  margin: 38px 50px;
  height: 300px;
}

.attended-leagues .league-card-content {
  display: inline-block;
  text-align: left;
}

.attended-leagues .league-card img {
  max-width: 200px;
  height: 200px;
  width: 200px;
  object-fit: contain;
}

.attended-leagues .league-card p {
  font-size: 20px;
  margin-top: 10px;
  color: #333;
  white-space: wrap;
  text-align: center;
}

/* dhruv scroll logo css end*/
#playerAgency .breadcrumb {
  left: 0;
  top: -100px;
  color: var(--black);
}

/* SUMMIT FOOTBALL PAGE CSS START */
#summit-football-institute .vision-tabs ul {
  gap: 24px;
}

#summit-football-institute h1 {
  white-space: nowrap;
}

#summit-football-institute .book-now-cta a {
  min-width: 165px;
  max-width: 165px;
  white-space: nowrap;
  padding-inline: inherit;
}

#summit-football-institute .book-now-cta .bttn.btn-solid-red {
  border-color: red;
}

.summit {
  position: relative;
}

.summit::before {
  content: "";
  background: url(../images/Summit-Football-Institute/blob.png) no-repeat;
  position: absolute;
  height: 308px;
  width: 452px;
  background-size: contain;
  top: 0;
  right: 0;
  background-position-x: 100%;
}

#summit-football-institute .nav-link:hover {
  border: 0 !important;
  color: var(--red-hover) !important;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

#summit-football-institute .football-journey .nav-tabs {
  gap: 24px;
}

#summit-football-institute .nav-tabs {
  border: 0 !important;
}

#summit-football-institute .nav-tabs .nav-item {
  margin-bottom: -1px;
}

#summit-football-institute .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0;
  transition: none;
  font-size: 24px;
  font-weight: 600;
}

#summit-football-institute .nav-tabs .nav-link.active {
  border-bottom: 4px solid var(--red-active) !important;
  margin-bottom: -4px;
}

.summit .content h3,
.summit .football-Pathway h3 {
  color: var(--black);
}

#summit-football-institute .nav-tabs .nav-link.active {
  border-bottom: 4px solid var(--red-active) !important;
  background: none;
}

#summit-football-institute .nav-tabs .nav-link {
  border: 0;
  color: rgb(0, 0, 0) !important;
  font-weight: 600;
  font-size: 24px;
}

.summit .gallery ul.slick-dots {
  bottom: 40px;
  top: auto;
  left: 50%;
  flex-direction: row;
  transform: translateX(-50%);
  right: auto;
}

.football-pathway-new {
  background: var(--blue-light);
  border-radius: 20px 0 0 20px;
}

.pathway-content {
  position: relative;
  width: 103%;
}

.pathway-content p {
  background: var(--blue-light);
  padding: 40px;
  border-radius: 20px;
  position: absolute;
  width: 103%;
}

.pathway-container {
  background: #fafafd;
  margin-top: 92px;
}

.p-40 {
  padding: 40px;
}

.football-curriculum {
  position: relative;
  display: inline-block;
}

/* pathway start */

#summit-football-institute .pathway-container .tab-content .tab-pane img {
  width: 45%;
}

#summit-football-institute
  .pathway-container
  .tab-content
  .tab-pane:nth-child(even)
  img {
  float: right;
  margin-left: 20px;
}

#summit-football-institute
  .pathway-container
  .tab-content
  .tab-pane:nth-child(odd)
  img {
  margin-right: 20px;
  float: left;
}

#summit-football-institute .pathway-container .tab-content .tab-pane p {
  overflow: hidden;
  font-size: 20px;
}

/* pathway end */

/* certification start */

.certificate-image {
  max-width: 100%;
  height: auto;
  padding: 10px;
}

.education-content {
  margin-bottom: 20px;
}

#summit-football-institute .links a {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  text-decoration: none;
}

.education-title {
  font-weight: bold;
}

.education-content ul {
  padding-left: 36px;
  list-style-type: disc;
}

.education-title {
  font-weight: bold;
}

.custom-container-certificate::before {
  content: "";
  background: url(../images/Summit-Football-Institute/blob-1.png) no-repeat;
  position: absolute;
  height: 100%;
  width: 320px;
  background-size: contain;
  top: 0;
  left: 0;
  z-index: -1;
}

.custom-container-certificate::after {
  content: "";
  background: url(../images/Summit-Football-Institute/blob-2.png) no-repeat;
  position: absolute;
  height: 100%;
  width: 320px;
  background-size: contain;
  bottom: 0;
  right: 0;
  background-position-y: 100%;
}

/* certification end */

/* addmission start */
.admissions-section::after {
  content: "";
  background: url(../images/Summit-Football-Institute/admission-top-right.svg)
    no-repeat;
  position: absolute;
  height: 100%;
  width: 320px;
  background-size: contain;
  top: 0;
  right: 0;
}

.addmission-right img {
  width: 291px;
  height: 518px;
}

.addmission-heading h3 {
  text-align: center;
  padding-bottom: 46px;
}

.get-started-buttons a {
  padding: 9px 26px;
}

.get-started h2 {
  font-size: 32px;
  font-weight: 500;
}

.addmission-right-gap img {
  padding-top: 40px;
}

.pop-ups-content button {
  background-color: transparent;
  color: var(--black);
}

.pop-ups-content:hover button {
  background: transparent;
  color: var(--black);
}

/* .btn-primary:focus,
.btn-primary:active,
button:focus:not(:focus-visible) {
    outline: 0;
    background: none;
} */

.tuition-and-fees {
  padding-top: 113px !important;
}

#summit-football-institute .slider img {
  width: 626px !important;
  height: 352px !important;
}

.link-item {
  padding-block: 24px;
  border-bottom: 1px solid #8e939e;
}

.addmission-btn a {
  font-weight: 600 !important;
}

/* addmission end */

/* accordian start */
.accordion {
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-button.collapsed {
  color: var(--black) !important;
  padding-left: 0;
}

.accordion-body {
  line-height: 1.5;
  padding-left: 0;
}

.accordion-button {
  color: var(--red) !important;
  box-shadow: none;
  font-size: 30px;
  padding-left: 0;
}

.accordion-item {
  border: none;
  border-bottom: var(--bs-accordion-border-width) solid
    var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed) {
  background-color: var(--white);
  border: none;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DB2021'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DB2021'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

/* accordian end */

/* institute start */

.institute-Location {
  padding-top: 204px !important;
}

.media-item {
  padding: 20px 10px !important;
  /* Add padding to create gaps */
}

/* institute end */

.right-arrow {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.left-arrow {
  transition: opacity 0.3s ease-in-out;
  display: none;
}

.animated-link:hover .right-arrow {
  opacity: 0;
}

.animated-link:hover .left-arrow {
  display: block;
  opacity: 1;
}

.animated-link a {
  transition: transform 0.3s ease-in-out;
  color: var(--black);
}

.animated-link a:hover {
  transform: translateX(20px);
  color: var(--red);
}

/* animated link end*/

/* Calender start */
.calender {
  overflow-x: hidden;
}

/* Calender end */

/* SUMMIT FOOTBALL PAGE CSS END */

/* dhruv css start */
/* AFS Showcase */

#showcase .book-now-cta {
  min-width: 157px;
}

.showcase-card-section {
  background: linear-gradient(to top, #020f2a, #020f2a);
  padding-bottom: 64px;
  padding-top: 1.5rem;
}

.showcase-card-section .bg-wrapper:nth-child(1) .card-wrapper {
  background: url("../images/afs-showcase/pro-showcase.png");
  background-size: cover;
  height: 554px;
}

.showcase-card-section .bg-wrapper:nth-child(2) .card-wrapper {
  background: url("../images/afs-showcase/player-id.png");
  background-size: cover;
  height: 554px;
}

.showcase-card-section .bg-wrapper:nth-child(3) .card-wrapper {
  background: url("../images/afs-showcase/pro-pathway.png");
  background-size: cover;
  height: 554px;
}

#showcase .card-wrapper {
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

#showcase .card-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #101133;
  opacity: 0.4;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

#showcase .card-wrapper:hover::before {
  opacity: 0.6;
}

#showcase .card-wrapper:hover {
  transform: translateY(-20px);
}

#showcase .card-content {
  position: relative;
  height: 100%;
  padding: 20px;
  background: transparent;
  overflow: hidden;
}

#showcase .card-content h3 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  transition: bottom 0.3s ease-in-out;
  white-space: nowrap;
}

#showcase .card-content .p-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 10px;
}

#showcase .card-content:hover h3 {
  bottom: 250px;
}

#showcase .card-content:hover .p-desc {
  opacity: 1;
}

.asia-football-showcase-section {
  background: var(--blue-dark-hover);
}

.asia-football-showcase {
  display: flex;
  align-items: center;
}

.bi-geo-alt::before {
  font-size: 3rem;
}

.asia-football-showcase-section video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.hardwork-section {
  position: relative;
  padding-block: 136px;
}

.hardwork-section::before {
  content: "";
  background: url(../images/afs-showcase/before-half.png) no-repeat;
  position: absolute;
  height: 100%;
  width: 452px;
  background-size: contain;
  top: 0;
  left: 0;
  background-position-x: 100%;
  z-index: -1;
}

.hardwork-section::after {
  content: "";
  background: url(../images/afs-showcase/after-half.png) no-repeat;
  position: absolute;
  height: 100%;
  width: 367px;
  background-size: cover;
  bottom: 0;
  right: 0;
  /* background-position-x: 100%; */
  z-index: -1;
}

/* TABS */
#showcase .nav-pills .nav-link {
  border-left: 6px solid transparent;
}

#showcase .nav-pills .nav-link.active,
#showcase .nav-pills .show.nav-link {
  background: transparent !important;
  /* border-left: 6px solid #000000;
    border-radius: 0;
    z-index: 3; */
}

#showcase #v-pills-tab {
  position: relative;
}

#showcase #tab-image-container img {
  /* border-image: fill 0 linear-gradient (#000, #000); */
  border-image: linear-gradient(#000, #000) 0 0 30 0;
  /* object-fit: contain; */
}

#showcase .accomodation-meals-tabs ul {
  list-style: disc;
  padding-left: 32px;
}

#showcase #tab-image-container .img-wrapper:nth-child(odd) img {
  max-width: 500px;
  margin-left: auto;
}

#showcase #tab-image-container .img-wrapper:nth-child(even) img {
  max-width: 355px;
  margin-right: auto;
}

#showcase .tabs-container::-webkit-scrollbar-thumb {
  background: transparent;
}

#showcase .tabs-container::-webkit-scrollbar {
  background: transparent;
}

#showcase #v-pills-tab .nav-link {
  color: var(--dark-blue-Lighter);
}

#showcase #v-pills-tab .nav-link.active {
  color: var(--black);
}

#showcase #v-pills-tab::before {
  content: "";
  width: 3px;
  background: transparent;
  border: 3px solid #e6e6e6;
  left: 0;
  z-index: 2;
  height: 100%;
  position: absolute;
  border-radius: 10px;
}

#showcase .nav-link.active {
  position: relative;
}

/* #showcase .nav-link.active::before {
    content: '';
    width: 3px;
    background: transparent;
    border: 3px solid #000;
    left: -6px;
    z-index: 2;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    top: 0;
} */

#showcase .tabs-container {
  max-height: 600px;
  overflow-y: auto;
}

#showcase .tabs-nav-wrapper {
  position: sticky;
  top: 0;
  height: 100%;
}

/* POST SELECTION PROCESS */
.post-selection-process {
  position: relative;
}

.post-selection-process::before {
  content: "";
  background: url(../images/afs-showcase/before-half.png) no-repeat;
  position: absolute;
  height: 452px;
  width: 308px;
  background-size: contain;
  top: 0;
  left: 0;
  background-position-x: 100%;
}

.post-selection-process::after {
  content: "";
  background: url(../images/afs-showcase/after-half.png) no-repeat;
  position: absolute;
  height: 452px;
  width: 308px;
  background-size: contain;
  bottom: 0;
  right: 0;
  background-position-x: 100%;
}

.attended-leagues {
  position: relative;
  padding-top: 128px;
}

.attended-leagues::before {
  content: "";
  background: url(../images/afs-showcase/top-right.png) no-repeat;
  position: absolute;
  height: 452px;
  width: 290px;
  background-size: contain;
  top: 0;
  right: 0;
  background-position-x: 100%;
}

.attended-leagues::after {
  content: "";
  background: url(../images/afs-showcase/bottom-left.png) no-repeat;
  position: absolute;
  height: 452px;
  width: 290px;
  background-size: contain;
  bottom: -195px;
  left: 0;
  background-position-x: 100%;
}

.attended-info {
  margin-bottom: 32px;
}

#showcase .book-now-cta:hover a {
  margin: 2px;
  background: linear-gradient(to right, #db2021 0%, #2f3192 100%);
  border: 0 !important;
}

#showcase .vision-tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9;
  transform: translateY(-180px);
  margin-bottom: -120px;
}

#showcase .vision-tabs .nav-link,
#showcase .vision-tabs .nav-tabs {
  border: 0 !important;
  color: #ffffff !important;
  font-weight: 600;
}

#showcase .vision-tabs.nav-link:hover {
  border: 0 !important;
  color: var(--red-hover) !important;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

#showcase .vision-tabs.nav-tabs {
  border: 0 !important;
  margin-left: -1rem;
}

#summit-football-institute .summit ul.slick-dots .slick-active button {
  background: url(../images/svg/slider-dot-active.svg) no-repeat;
  background-size: 100% 100%;
}

/* Add this CSS to your stylesheet */

.showcase-card-section .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.showcase-card-section .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 15px;
  transition: none;
}

.showcase-card-section .nav-link.active::before {
  border: none;
}

.showcase-card-section .nav-tabs#myTab .nav-link.active {
  border-bottom: 4px solid var(--red-active) !important;
  color: var(--white) !important;
  background: transparent !important;
}

.showcase-card-section .countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #ffffff;
}

.showcase-card-section .countdown div {
  margin: 0 10px;
  text-align: center;
  position: relative;
  min-width: 90px;
}

.countdown div span {
  display: block;
  font-size: 1.5rem;
}

.countdown div p {
  font-size: 14px;
  text-align: left;
}

.countdown div h3 {
  text-align: left;
}

.countdown div::after {
  content: ":";
  position: absolute;
  top: 60%;
  right: 0;
  height: 100%;
  transform: translateY(-50%);
  color: #bfbfdd;
}

.countdown div:last-child::after {
  content: none;
}

.before-countedown,
.before-countedown-nov {
  font-size: 40px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.before-countedown span,
.before-countedown-nov span {
  font-weight: 100;
  color: #bfbfdd;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 120px;
}

#showcase .tab-content,
#residential .tab-content {
  color: var(--white) !important;
}

#showcase .hero-section {
  position: relative;
  overflow: hidden;
}

#showcase .hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(to top, #020f2a, transparent);
}

#showcase .showcase-card-section::after {
  content: "";
  position: absolute;
  top: -226px;
  left: 0;
  width: 100%;
  height: 245px;
  background: linear-gradient(to top, #020f2a, transparent);
  overflow: auto;
  z-index: 1;
}

.hero-reg,
.hero-login {
  width: 200px;
}

/* toggle */
.toggle-button-cover {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 412px;
  height: 56px;
  box-sizing: border-box;
  z-index: 4;
}

.button-cover,
.knobs,
.layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button {
  position: relative;
  top: 50%;
  width: 100%;
  height: 100%;
  margin: -28px auto 0 auto;
  /* Adjust margin to center vertically */
  overflow: hidden;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  background-color: #ebf7fc;
  transition: 0.3s ease all;
  z-index: 1;
}

.button.r,
.button.r .layer {
  border-radius: 28px;
  /* Half of the height for perfect circle ends */
}

#button-3 .knobs:before {
  content: "AFS Showcase";
  position: absolute;
  top: 4px;
  left: 4px;
  /* 50% of 412px - 48px (half knob width) to center in the right half */
  width: 50%;
  height: 48px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 48px;
  background: linear-gradient(to top, #ed1c24, #981b1b);
  border-radius: 28px;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .knobs:after {
  content: "AFS Residential";
  position: absolute;
  top: 4px;
  left: 202px;
  /* 50% of 412px - 48px (half knob width) to center in the right half */
  width: 50%;
  height: 48px;
  color: var(--red);
  font-size: 20px;
  text-align: center;
  line-height: 48px;
  background: transparent;
  border-radius: 28px;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
  font-weight: 500;
}

#button-3 .checkbox:active + .knobs:before {
  width: 206px;
  border-radius: 28px;
}

#button-3 .checkbox:checked:active + .knobs:before {
  margin-left: -28px;
}

#button-3 .checkbox:checked + .knobs:before {
  content: "AFS Showcase";
  left: 4px;
  width: 50%;
  background-color: #03a9f4;
  font-weight: 500;
}

#button-3 .checkbox:checked ~ .layer {
  background-color: #fcebeb;
}

#button-3 {
  box-shadow: 0 0 20px 0 rgb(219 32 33 / 16%);
}

/* toggle-1 */
.toggle-button-cover-1 {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 412px;
  height: 56px;
  box-sizing: border-box;
  z-index: 4;
}

.button-cover-1,
.knobs-1,
.layer-1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button-1 {
  position: relative;
  top: 50%;
  width: 100%;
  height: 100%;
  margin: -28px auto 0 auto;
  /* Adjust margin to center vertically */
  overflow: hidden;
}

.checkbox-1 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs-1 {
  z-index: 2;
}

.layer-1 {
  width: 100%;
  background-color: #ebf7fc;
  transition: 0.3s ease all;
  z-index: 1;
}

.button-1.r-1,
.button-1.r-1 .layer-1 {
  border-radius: 28px;
  /* Half of the height for perfect circle ends */
}

#button-3-1 .knobs-1:before {
  content: "AFS Residential";
  position: absolute;
  top: 4px;
  left: 202px;
  /* 50% of 412px - 48px (half knob width) to center in the right half */
  width: 50%;
  height: 48px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 48px;
  background: linear-gradient(to top, #ed1c24, #981b1b);
  border-radius: 28px;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
  font-weight: 500;
}

#button-3-1 .knobs-1:after {
  content: "AFS Showcase";
  position: absolute;
  top: 4px;
  left: 4px;
  /* 50% of 412px - 48px (half knob width) to center in the right half */
  width: 50%;
  height: 48px;
  color: var(--red);
  font-size: 20px;
  text-align: center;
  line-height: 48px;
  background: transparent;
  border-radius: 28px;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
  font-weight: 500;
}

#button-3-1 .checkbox-1:active + .knobs-1:before {
  width: 206px;
  border-radius: 28px;
}

#button-3-1 .checkbox-1:checked:active + .knobs-1:before {
  margin-left: -28px;
}

#button-3-1 .checkbox-1:checked + .knobs-1:before {
  content: "AFS Showcase";
  left: 4px;
  width: 50%;
  background-color: #03a9f4;
}

#button-3-1 .checkbox-1:checked ~ .layer-1 {
  background-color: #fcebeb;
}

.v-shape {
  position: absolute;
  bottom: -50px;
  /* Adjust to cover any gap */
  left: 0;
  width: 100%;
  height: 100px;
  /* Adjust height as needed */
  background: transparent;
  /* Make it transparent */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
  pointer-events: none;
  /* Allow clicks to pass through */
}

/* Stroke section */
.stroke-section {
  background: var(--dark-blue-normal);
  padding-bottom: 128px;
  z-index: 0;
}

.text-img-stroke-wrapper {
  padding-top: 200px;
}

.team-text h3 {
  white-space: nowrap;
  z-index: 2;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff5e;
  text-shadow: -10px -9px 0px #ffffff;
}

.team-img {
  position: relative;
  z-index: -1;
}

.team-img {
  position: relative;
}

.team-img::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 100%;
  height: 100%;
  border: 6px solid;
  border-image: linear-gradient(to right, var(--red), var(--blue)) 1;
  /* Adjust the color and width as needed */
  box-sizing: border-box;
  pointer-events: none;
  /* Ensures the border doesn't interfere with interactions on the actual element */
  z-index: -2;
}

.text-img-stroke-wrapper:nth-child(even) .text-or-img:nth-child(even) {
  order: -1;
}

.text-img-stroke-wrapper:nth-child(even)
  .text-or-img:nth-child(odd)
  .team-text {
  position: relative;
  left: -120px;
}

.text-img-stroke-wrapper:nth-child(even)
  .text-or-img:nth-child(even)
  .team-img::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -40px;
  width: 100%;
  height: 100%;
  border: 6px solid;
  border-image: linear-gradient(to right, var(--red), var(--blue)) 1;
  /* Adjust the color and width as needed */
  box-sizing: border-box;
  pointer-events: none;
  /* Ensures the border doesn't interfere with interactions on the actual element */
  z-index: -2;
}

.text-img-stroke-wrapper:nth-child(2)
  .text-or-img:nth-child(2)
  .team-img::before {
  content: "AFS";
  position: absolute;
  font-size: 140px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff5e;
  top: -170px;
  left: -100px;
}

.text-img-stroke-wrapper:nth-child(3)
  .text-or-img:nth-child(2)
  .team-img::before {
  content: "RESIDENTIAL";
  position: absolute;
  font-size: 140px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff5e;
  top: -170px;
  left: -150px;
}

.text-img-stroke-wrapper:nth-child(even) .text-or-img p {
  margin-inline: 26px;
}

/* global section */

#residential .global-network::after {
  content: "";
  background: url(../images/afs-residential/global-bottom-right.svg) no-repeat;
  position: absolute;
  height: 308px;
  width: 320px;
  bottom: 0;
  right: 0;
  background-position: 100% 100%;
  background-size: contain;
}

.global-network p {
  font-size: 16px;
}

#residential .hardwork-section::before {
  content: "";
  background: url(../images/afs-residential/resi-before-half.png) no-repeat;
  position: absolute;
  height: 100%;
  width: 496px;
  top: 0;
  right: 0;
  left: auto;
  background-position-x: 100%;
  background-size: contain;
}

#residential .hardwork-section::after {
  content: "";
  background: url(../images/afs-residential/resi-after-half.png) no-repeat;
  position: absolute;
  height: 100%;
  width: 364px;
  bottom: 0;
  left: 0;

  background-position: 100% 100%;
  background-size: contain;
}

.organized-image-slider {
  position: relative;
  padding-top: 135px;
}

.organized-image-slider::before {
  content: "";
  background: url(../images/afs-showcase/before-half.png) no-repeat;
  position: absolute;
  height: 100%;
  width: 369px;
  top: 0;
  left: 0;
  background-position-x: 100%;
  background-size: contain;
}

/* Juniors Cup */
#juniors-cup
  .text-img-stroke-wrapper:nth-child(2)
  .text-or-img:nth-child(2)
  .team-img::before {
  content: "AFS JUNIORS CUP";
  position: absolute;
  font-size: 140px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff5e;
  top: -170px;
  left: -100px;
  white-space: nowrap;
}

#juniors-cup
  .text-img-stroke-wrapper:nth-child(even)
  .text-or-img:nth-child(odd)
  .team-text {
  position: relative;
  left: 30px;
}

#juniors-cup .asia-football-showcase-section video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

#juniors-cup .btn-secondary,
.form-select {
  background: transparent;
  color: var(--black);
}

.welcome-afs {
  background: url(/assets/images/afs-residential/welcome.png) no-repeat;
  background-size: cover;
}

.welcome-afs p,
.welcome-afs h2,
.welcome-afs h3,
.welcome-afs img {
  position: relative;
  z-index: 3 !important;
}

.welcome-afs h2 {
  color: var(--red);
}

.welcome-overlay {
  position: absolute;
  inset: 0;
  background: rgb(16 17 51 / 80%);
  z-index: 0;
}

.card-wlecome-afs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#residential .book-now-cta:hover a {
  margin: 2px;
  background: linear-gradient(to right, #db2021 0%, #2f3192 100%);
  border: 0 !important;
}

/* TABS */
#residential .nav-pills .nav-link {
  border-left: 0 !important;
  padding-left: 0 !important;
  border-bottom: 1px solid #bfbfdd;
  border-radius: 0;
}

#residential .nav-pills .nav-link.active,
#residential .nav-pills .show.nav-link {
  background: transparent !important;
  /* border-left: 6px solid #000000;
    border-radius: 0;
    z-index: 3; */
}

#residential #v-pills-tab {
  position: relative;
}

#residential #tab-image-container img {
  /* border-image: fill 0 linear-gradient (#000, #000); */
  border-image: linear-gradient(#000, #000) 0 0 30 0;
  /* object-fit: contain; */
}

#residential #tab-image-container .img-wrapper:nth-child(odd) img {
  max-width: 500px;
  margin-left: auto;
}

#residential #tab-image-container .img-wrapper:nth-child(even) img {
  max-width: 355px;
  margin-right: auto;
}

#residential .tabs-container::-webkit-scrollbar-thumb {
  background: transparent;
}

#residential.tabs-container::-webkit-scrollbar {
  background: transparent;
}

#residential #v-pills-tab .nav-link {
  color: var(--dark-blue-Lighter);
}

#residential #v-pills-tab .nav-link.active {
  color: var(--black);
}

#residential .tabs-container {
  background: #fafafd;
  border-radius: 20px;
  padding: 40px;
  padding-right: 0;
}

#residential .tabs-nav-wrapper {
  position: sticky;
  top: 0;
  height: 100%;
  width: 436px;
}

#residential .accomodation-meals-tabs p {
  padding-left: 6px;
  padding-top: 16px;
  padding-bottom: 24px;
  padding-right: 24px;
}

#residential .tab-content img {
  width: 100%;
  height: auto;
}

#residential .text-start {
  position: relative;
  transition: all 0.3s ease-in;
}

#residential .nav-link.text-start::after {
  content: "\F282";
  font-family: bootstrap-icons !important;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 24px;
}

#residential .text-start.nav-link.active::after {
  transform: rotate(180deg);
}

.video-fancy .vid-de {
  padding-bottom: 40px;
}

.afs-gallery-slider-residential {
  position: relative;
}

.playbutton img {
  position: absolute;
  width: 80px;
  height: 72px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.afs-gallery-slider-residential:hover {
  cursor: pointer;
}

/* dhruv css start end*/

/* high standard */
#highStandardsContent .tab-pane {
  background: #fafafd;
  border-radius: 20px;
  padding: 40px;
}

#highStandardsContent .tab-pane .col-md-6 {
  padding-inline: 4px;
}

.high-standards .nav-link {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  width: 100%;
  text-align: left;
  border: 0;
  border-top: 1px solid #bfbfdd;
  border-radius: 0;
  padding: 8px 16px;
}

.high-standards .nav-item:first-child .nav-link {
  border-color: transparent;
}

.high-standards .nav.nav-tabs {
  border: 0;
}

.high-standards .nav-link.active {
  border-radius: 4px;
  background: #fafafd !important;
  color: #045694;
  border-color: transparent;
}

.high-standards .nav-link.active::after {
  content: "\F282";
  font-family: bootstrap-icons !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 24px;
}

.supporters-packages-slider .card-content,
.supporters-packages-slider .included {
  padding: 24px;
}

.supporters-packages-slider .card-content {
  padding-bottom: 0;
}

.supporters-packages-slider h4 {
  color: var(--red);
}

.supporters-packages-slider img {
  width: 100%;
}

.supporters-packages-card.card {
  margin-right: 16px;
}

.supporters-packages-slider .slick-track {
  padding-top: 32px;
  padding-bottom: 24px;
}

.supporters-packages-slider .slick-arrow {
  position: absolute;
  bottom: -50px;
}

.supporters-packages-slider .slick-arrow.slick-next {
  transform: translateX(-46%);
  right: 46%;
}

.supporters-packages-slider .slick-arrow.slick-prev {
  transform: translateX(-46%);
  left: 46%;
}

.supporters-packages .container * {
  overflow: visible;
}

.supporters-packages {
  overflow: hidden;
}

/* #showcase .footer-cta a {
    min-width: 200px !important;
    white-space: nowrap;
    padding-inline: inherit !important;
    background: transparent;
    border: 2px solid var(--white);
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #fff;
} */
.border-white {
  border: 2px solid #fff;
}

.border-red {
  border: 2px solid var(--red);
}

.footer-cta-wrapper .bg-transparent {
  border: 2px solid #fff;
}

.whatsapp-cta {
  background: #44d255;
  color: #fff;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.whatsapp-cta {
  background: #44d255 !important;
  color: #fff !important;
}

.header-login-wrapper {
  transform: translateY(-50%);
  right: 5%;
  top: 50%;
  position: absolute;
}

.bg-white .header-login-wrapper .login-btn {
  border-color: var(--red) !important;
  color: var(--red) !important;
}

.bg-white .header-login-wrapper .login-btn:hover {
  color: #fff !important;
}

/* selection slider */
.post-selection-process .progress-container {
  width: calc(100% - 10rem);
  background-color: #f4f4f4;
  position: relative;
  height: 6px;
  margin-block: 20px;
  margin-inline: auto;
}

.post-selection-process .progress-bar,
.typical-day-slider-wrapper .progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--red), var(--blue));
  overflow: visible;
}

.post-selection-process .progress-bar::after,
.typical-day-slider-wrapper .progress-bar::after {
  content: url(../images/svg/slider-btn-image.svg);
  width: 44px;
  height: 40px;
  background-repeat: no-repeat;
  z-index: 9;
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.post-selection-process .cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 75px;
}

.post-selection-process .card.selection-process-card {
  width: 15%;
  padding: 45px 20px 20px 20px;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  transition: background-color 0.3s;
  border: 2px solid #eaeaf4;
}

.post-selection-process .card.selection-process-card .title {
  margin-bottom: 4px;
}

.post-selection-process .serial-number svg {
  min-width: 90px;
}

.post-selection-process .svg-container path {
  fill: white;
  stroke: #eaeaf4;
  stroke-width: 2;
  transition: fill 0.3s ease;
}

.post-selection-process .card.active .svg-container path {
  fill: url(#gradient);
}

.post-selection-process .serial-number .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.post-selection-process .card.active .serial-number .number {
  color: #fff;
}

.post-selection-process .card.active {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
}

.post-selection-process .card.selection-process-card.active .title {
  background: linear-gradient(to right, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.post-selection-process .card.selection-process-card .serial-number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  justify-content: center;
}

.post-selection-process.navigation-buttons {
  gap: 16px;
}

button[aria-disabled="true"] {
  background: var(--dark-blue-Lighter);
  cursor: not-allowed;
}

button[aria-disabled="true"]:hover {
  background: var(--dark-blue-Lighter);
  cursor: not-allowed;
}

.showcase-schedule {
  overflow: hidden;
  position: relative;
}

.showcase-schedule::before {
  content: "";
  background: url(../images/svg/top-left.svg) no-repeat;
  position: absolute;
  height: 100%;
  width: 496px;
  top: 0;
  left: 0;
  background-position-x: 100%;
  z-index: -1;
}

.showcase-schedule .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.showcase-schedule .swiper-slide {
  width: 308px;
  height: 584px;
  padding: 24px;
  border-radius: 10px;
  color: var(--black);
  border: 2px solid #eaeaf4;
  background: #fff;
}

.showcase-schedule .swiper-pagination-bullet,
.showcase-schedule .swiper-pagination-bullet-active {
  background: #fff;
}

.showcase-schedule .navigation-buttons,
.meet-our-team-slider .navigation-buttons {
  position: absolute;
  width: calc(100% - 10rem);
  justify-content: space-between !important;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.showcase-schedule .navigation-buttons,
.meet-our-team-slider .navigation-buttons {
  z-index: 999;
}

.showcase-schedule .slot {
  border-bottom: 1px solid #bfbfdd;
}

.showcase-schedule .slot:last-child {
  border-bottom: 0;
}

.showcase-schedule .swiper-slide-active {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
}

.showcase-schedule .nav.nav-tabs {
  gap: 16px;
  border: 0;
}

.showcase-schedule .nav.nav-tabs button {
  font-size: 20px;
  font-weight: 600;
  padding: 9px 16px;
  border: 2px solid var(--red);
  color: var(--red);
  background: #fff;
  border-radius: 4px;
}

.showcase-schedule .nav.nav-tabs button:hover,
.showcase-schedule .nav.nav-tabs button.active:hover,
.bttn.gradient-with-border:hover {
  background: linear-gradient(to right, var(--red), var(--blue));
  color: #fff;
  border: 0;
  padding: 11px 18px;
}

#residential .vid-content-wrapper .bttn.gradient-with-border {
  padding: 13px 32px;
}

#residential .vid-content-wrapper .bttn.gradient-with-border:hover {
  background: linear-gradient(to right, var(--red), var(--blue));
  color: #fff;
  border: 0;
  padding: 15px 34px;
}

.bttn.gradient:hover {
  background: linear-gradient(to right, var(--red), var(--blue));
  color: #fff;
}

.showcase-schedule .nav.nav-tabs button.active {
  color: var(--white);
  background: var(--red);
}

.fade:not(.show),
.fade-transition:not(.fade-transition.show) {
  display: none;
}

/* .fade-transition {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.fade-transition.show {
    opacity: 1;
    display: block;
} */
.residential-tab-wrapper {
  padding: 40px 0 40px 40px;
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
  border-radius: 20px;
  background: #fafafd;
}

.residential-tab-wrapper .accordion-button,
.residential-tab-wrapper .accordion-item {
  background: transparent;
}

.hero-cta-wrapper a {
  min-width: 165px;
}

/* login */
#summit-login,
#forgot-pwd,
#forgot-pwd-redirect {
  position: relative;
  background: url(../images/summit-login/summit-login.webp);
  background-size: cover;
  /* width: 100vw; */
  /* height: calc(100vh - 220px); */
}

.login-card {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  z-index: 2;
}

.form-container {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.forgot-pwd {
  color: var(--red);
}

.new-member {
  padding-bottom: 40px;
}

.new-member a {
  color: var(--red);
  white-space: nowrap;
  font-weight: 600;
}

.form-group span {
  color: var(--red);
}

.login-form {
  width: 100%;
}

.form-group {
  margin-bottom: 40px;
  position: relative;
}

.input-field {
  width: 416px;
  padding: 12px 16px;
  display: block !important;
  border: 1px solid #8e939e;
  border-radius: 4px;
}

.toggle-password {
  position: absolute;
  top: 55%;
  right: 10px;
  cursor: pointer;
}

.login-title {
  padding-top: 40px;
}

.forgot-pwd {
  padding-bottom: 24px;
}

#summit-login input,
#forgot-pwd input,
#forgot-pwd-redirect input {
  padding-left: 16px;
}

#summit-login label,
#forgot-pwd label,
#forgot-pwd-redirect label {
  font-size: 14px;
}

#forgot-pwd-redirect p {
  line-height: 2rem;
}

#forgot-pwd-redirect .form-container span {
  color: #045694;
  font-weight: 600;
}

#residential .hero-section video,
#juniors-cup .hero-section video {
  -webkit-mask-image: url(../images/afs-residential/hero-mask.png);
  mask-image: url(../images/afs-residential/hero-mask.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 2;
  mask-position: center;
  mask-size: 100% 100%;
}

#residential .hero-section .gradient-overlay,
#juniors-cup .hero-section .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(219, 32, 33, 0.6) 0%,
    rgba(47, 49, 146, 0.6) 100%
  );
  -webkit-mask-image: url(../images/afs-residential/hero-mask.png);
  mask-image: url(../images/afs-residential/hero-mask.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: 3;
}

#residential .hero-section .video-wrapper,
#juniors-cup .hero-section .video-wrapper {
  background: var(--dark-blue-normal);
}

#juniors-cup .book-now-cta a {
  display: flex;
  max-width: fit-content;
  margin-inline: auto;
  gap: 8px;
}

/* animated bttn style start*/
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 20px;
  border: 0;
  font-weight: 600;
  background: transparent;
  color: var(--black);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  /* position: absolute; */
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
  transform: translateX(-20px);
}

.animated-button .arr-2 {
  transform: translateX(-36px);
}

.animated-button:hover .arr-1 {
  transform: translateX(40px);
}

.animated-button:hover .arr-2 {
  /* left: 16px; */
  left: 0;
  transform: translateX(0);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  display: block;
  text-align: left;
  transform: translateX(-30px);
}

.animated-button:hover .text {
  transform: translateX(6px);
  color: var(--red);
}

/* animated bttn style end */
.lets-explore span.text {
  font-size: 18px !important;
}

#footballJourneyContent .slider-image-wrapper {
  position: relative;
  border-radius: 10px;
  margin-right: 16px;
  overflow: hidden;
  transition: all 0.3s ease-in;
}

#footballJourneyContent .slider-image-wrapper img {
  transition: all 0.3s ease-in;
}

#footballJourneyContent .slider-image-wrapper:hover img {
  transform: scale(1.2);
}

#footballJourneyContent .slider-image-wrapper:hover h5 {
  transform: translateY(-20px);
}

#footballJourneyContent .slider-image-wrapper .gradient-wrapper {
  font-size: 32px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, #000);
  width: 100%;
}

#footballJourneyContent .slider-image-wrapper .gradient-wrapper h5 {
  padding: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in;
}

#footballJourneyContent .slider-image-wrapper:before,
#footballJourneyContent .slider-image-wrapper:after {
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

#footballJourneyContent .slider-image-wrapper:before {
  bottom: 30px;
  display: block;
  height: 3px;
  width: 0%;
  content: "";
  background-color: #fff;
  z-index: 9;
  left: 32px;
}

#footballJourneyContent .slider-image-wrapper:after {
  left: 0;
  bottom: 5px;
  padding: 0.5em 0;
  position: absolute;
  content: attr(data-hover);
  color: #ffffff;
  white-space: nowrap;
  max-width: 0%;
  overflow: hidden;
}

#footballJourneyContent .slider-image-wrapper:hover:before {
  opacity: 1;
  width: calc(100% - 64px);
}

#footballJourneyContent .slider-image-wrapper:hover:after {
  max-width: 100%;
}

#footballJourneyContent .slick-arrow {
  position: absolute;
  left: 0;
  bottom: -60px;
}

#footballJourneyContent .slick-arrow.slick-arrow.slick-next {
  left: 56px;
}

/* * {
    transition: all .3s ease-in;
} */

.team-card {
  background: #045694;

  border-radius: 10px;
  /* overflow: hidden; */
  padding-top: 18px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.team-card .team-member-name {
  padding-block: 24px;
  transition: all 0.3s ease-in;
  position: relative;
}

.team-card .team-member-name h5 {
  white-space: nowrap;
  transition: all 0.3s ease-in;
  color: #fff;
}

.team-card h5.text-shadow {
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  font-size: 40px;
}

.team-card:hover .team-member-wrapper {
  transform: translateY(-60px);
  background: transparent;
}

.team-card:hover .team-member-name {
  padding-bottom: 0;
}

.team-member-description {
  position: relative;
  background: transparent;
  z-index: 1;
  padding-block: 24px;
}

.team-member-description::after {
  content: "";
  position: absolute;
  height: 200px;
  width: 100%;
  background: linear-gradient(to top, #045694 60%, transparent);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.team-member-wrapper {
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100px;
  z-index: 2;
  background: #045694;
}

.team-card .reflection {
  position: absolute;
  left: 0;
  bottom: -48px;
  width: 100%;
  z-index: 9;
}

.team-card .reflection h5 {
  transform: rotateX(180deg);
  color: #fff;
}

.team-card .reflection::before {
  content: "";
  display: block;
  height: 92px;
  background: linear-gradient(
    to bottom,
    rgb(4 86 148 / 61%),
    rgba(255, 255, 255, 0.1)
  );
  position: absolute;
  bottom: -134px;
  left: 0;
  z-index: 0;
  right: 0;
  transform: translateY(-100%);
}

.team-card .reflection h5.text-shadow {
  bottom: -50px;
  top: auto;
  width: 100%;
  transform: rotateX(180deg);
  left: 0;
}

.meet-our-team-slider .swiper-slide {
  width: 308px;
  height: 584px;
}

/* account overview start */
.thead-dark .include {
  padding-left: 8px;
}

.showcase-package-title .welcome-text h3 {
  font-size: 24px;
}

.showcase-package-title .account-user-name {
  font-size: 40px;
  font-weight: 600;
}

.showcase-package-title .application-pathway {
  font-size: 32px;
  font-weight: 500;
}

.showcase-package-title h3 {
  text-align: left !important;
  font-size: 32px;
  font-weight: 500;
  padding-top: 80px;
  padding-bottom: 24px;
}

.table-content,
tr {
  background-color: transparent !important;
  border-bottom: 1px solid var(--blue-light-active) !important;
  padding-block: 16px !important;
}

.after-pre-season,
.include {
  border-bottom: 1px solid #ffffff !important;
}

.after-pre-season img:hover {
  fill: var(--red);
  cursor: pointer;
}

.after-pre-season h5 {
  font-weight: 600;
}

.table-responsive .tablehead-bottom h5 {
  padding-top: 16px;
  font-weight: 500;
}

.table-responsive .tablehead-bottom button {
  margin-top: 8px;
  margin-bottom: 128px !important;
}

.after-pre-season path:hover {
  fill: var(--red);
  cursor: pointer;
}

.after-pre-season svg:hover path:nth-of-type(n + 3) {
  stroke: var(--white);
}

.continue-apply-container {
  background: var(--white);
  border: 2px solid #f6f6f8;
  border-radius: 10px;
  padding: 24px 32px;
  gap: 32px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%),
    0 4px 8px 0 rgb(255 255 255 / 80%) inset;
}

.continue-apply-container:hover {
  background: linear-gradient(
    to right,
    rgb(219 32 33 / 10%),
    rgb(47 49 146 / 10%)
  );
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 16%),
    0 4px 8px 0 rgb(255 255 255 / 80%) inset;
  border: 2px solid transparent;
}

.continue-apply-heading p {
  font-weight: 400;
  padding-top: 4px;
}

.continue-apply-icon {
  min-width: 70px;
}

/* account overview end */
#register-page,
#account-overview,
#application-status {
  background-image: url(../images/Summit-Football-Institute/background-img-logo.png);
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: fixed;
  background-size: contain;
}

/* MY ACCOUNT */
#pathway-application,
#booking-history,
#purchaseHistory
#myAccount {
  background-color: #f6f6f8 !important;
}


.form-tab {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  display: none;
}

/* .package-wrapper-conatiner img {
  position: absolute;
  left: 0;
  bottom: 38px;
} */

.package-wrapper-conatiner input {
  display: none;
}

.custom-radio {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  outline: 3px solid var(--dark-blue-Lighter);
  position: absolute;
  right: 12px;
  top: 12px;
  transition: none;
}

input[type="radio"]:checked ~ label .custom-radio {
  width: 12px;
  height: 12px;
  background: var(--red);
  outline-offset: 3px;
  outline: 2px solid var(--red);
}

.package-wrapper-conatiner label {
  cursor: pointer;
  box-shadow: 0 0 16px 0 rgb(219 32 33 / 16%);
  position: relative;
  transition: none;
  min-height: 600px;
}

.package-wrapper-conatiner label,
#myAccount input[type="radio"] ~ label {
  cursor: pointer;
  box-shadow: 0 0 16px 0 rgb(219 32 33 / 16%);
  position: relative;
  transition: none;
}

.package-wrapper-conatiner label:hover,
#myAccount input[type="radio"] ~ label:hover {
  box-shadow: 0 0 16px 0 rgb(219 32 33 / 16%);
}

.package-wrapper-conatiner input[type="radio"]:checked ~ label,
#myAccount input[type="radio"]:checked ~ label {
  border: 2px solid var(--red);
}

.package-wrapper-conatiner .nav-tabs {
  justify-content: center;
  margin-inline: auto;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 16px 0 rgb(219 32 33 / 16%);
  max-width: fit-content;
  padding: 4px;
  position: relative;
}

.package-wrapper-conatiner .nav-tabs li button {
  min-width: 202px;
  text-align: center;
  border-radius: 30px;
  font-weight: 500;
  font-size: 20px;
  background: transparent;
  color: var(--red);
  border: 0;
}

.package-wrapper-conatiner .nav-tabs li button.active {
  color: #fff;
  background: transparent;
}

.package-wrapper-conatiner .nav-tabs li .fs-20 {
  z-index: 1;
  position: relative;
}

.package-wrapper-conatiner .nav-tabs li .moving-bg {
  width: 50%;
  background: linear-gradient(to bottom, #981b1b, #ed1c24);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transform: translateX(202px);
  border-radius: 30px;
  z-index: 0;
  transition: all 0.3s ease-in;
}

.package-wrapper-conatiner .nav-tabs li:first-child .active .moving-bg {
  z-index: 0;
  transform: translateX(0);
}

.package-wrapper-conatiner .nav-tabs li .active .moving-bg {
  z-index: 0;
  transform: translateX(202px);
}

#month-1-tab-pane .package-card .date {
  color: var(--red);
}

#month-2-tab-pane .package-card .date {
  color: var(--light-blue);
}

.form-tab p {
  color: #5c6373;
  text-align: center;
}

#myAccount .form-tab p {
  color: var(--black);
  text-align: left;
}

.profile-photo-card img {
  position: static;
  top: 0;
  right: 40px;
  max-width: 75px;
}
#profile-photo .attribute-card-img-wrapper {
  display: flex;
  justify-content: flex-end;
}

.profile-photo-card {
  padding: 16px 40px;
  border-radius: 4px;
  box-shadow: 0 0 16px 0 rgb(219 32 33 / 16%);
  position: relative;
}

.attribute-card input {
  display: none;
}

#player-attributes .row > * {
  padding-inline: 8px;
}

#player-attributes .row {
  row-gap: 16px;
}

.attribute-card label {
  box-shadow: 0 0 16px 0 rgb(219 32 33 / 16%);
  border-radius: 4px;
  display: flex;
  position: relative;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  min-height: 92px;
  max-height: 92px;
  border: 2px solid transparent;
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  text-transform: capitalize;
}

.attribute-card label .fs-20.fw-500 {
  max-width: 70%;
  word-break: break-word;
}

.attribute-card img {
  max-width: 88px;
  position: absolute;
  top: 0;
  right: 0;
}

.attribute-card input:checked ~ label {
  background: #fbe9e9;
  border: 2px solid var(--red);
  transition: none;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

#signatureCanvas {
  border: 1px solid #8e939e;
  cursor: crosshair;
  border-radius: 4px;
  margin-inline: auto;
  background-color: #fff;
}

.canvas-wrapper {
  max-width: 540px;
  margin-inline: auto;
}

#clearBtn,
#saveBtn {
  font-size: 14px;
  background: transparent;
  border: 0;
}

.form-check label {
  color: #000;
}

.form-check a {
  color: #045694;
  text-decoration: underline;
}

#pathway-application .breadcrumb {
  top: auto;
}

#player-first-prefered-position,
#player-second-prefered-position {
  color: var(--red);
}

.field-wrapper img {
  margin-inline: auto;
}

.jersey-wrapper {
  max-width: fit-content;
}

.position-name:hover {
  transform: translateY(-10px);
}

.position-name {
  position: absolute;
  cursor: pointer;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  transition: all 0.3s ease-in;
}

#player-position .row.mt-40 .col-md-6:first-child {
  border-right: 1px solid #eaeaf4;
}

.position-name[data-player-position="LM"] {
  top: -9%;
  left: 20%;
}

.position-name[data-player-position="ST"] {
  top: -9%;
  left: 50%;
  transform: translateX(-50%);
}

.position-name[data-player-position="RM"] {
  top: -9%;
  right: 20%;
}

.position-name[data-player-position="N10"] {
  top: 5%;
  right: 30%;
}

.position-name[data-player-position="CAM"] {
  top: 10%;
  left: 30%;
}

.position-name[data-player-position="CDM"] {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
}

.position-name[data-player-position="LB"] {
  bottom: 27%;
  left: 14%;
}

.position-name[data-player-position="CBL"] {
  bottom: 24%;
  left: 30%;
}

.position-name[data-player-position="CBR"] {
  bottom: 24%;
  right: 30%;
}

.position-name[data-player-position="RB"] {
  bottom: 27%;
  right: 14%;
}

.position-name[data-player-position="GK"] {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.position-name[data-player-position="GK"] .collar {
  fill: #1c1c2d;
}

.position-name[data-player-position="GK"] .right-strip,
.position-name[data-player-position="GK"] .left-strip {
  fill: #1c1c2d;
}

.position-name[data-player-position="GK"] .jersey-front {
  fill: #060609;
}

.position-name[data-player-position="GK"] .position {
  color: #fff;
}

/* checked */
.player-position-input-wrapper input:checked ~ label {
  transform: translateY(-10px);
}

.player-position-input-wrapper input:checked ~ label .right-sleeve,
.player-position-input-wrapper input:checked ~ label .left-sleeve {
  fill: #fbe8e8;
}

.player-position-input-wrapper input:checked ~ label .right-sleeve-border,
.player-position-input-wrapper input:checked ~ label .left-sleeve-border {
  fill: #f4bcbc;
}

.player-position-input-wrapper input:checked ~ label .collar {
  fill: var(--red-active);
}

.player-position-input-wrapper input:checked ~ label .right-strip,
.player-position-input-wrapper input:checked ~ label .left-strip {
  fill: var(--red);
}

.player-position-input-wrapper input:checked ~ label .jersey-front {
  fill: #f8d2d3;
}

.player-position-input-wrapper input:checked ~ label .base {
  fill: var(--red);
}

.player-position-input-wrapper input {
  display: none;
}

.position-name[data-player-position="ST"]:hover,
.position-name[data-player-position="GK"]:hover {
  transform: translate(-50%, -10px);
}

.position-name[data-player-position="CDM"]:hover {
  transform: translate(-50%, -90%) !important;
}

.player-position-input-wrapper input:checked ~ label[data-player-position="ST"],
.player-position-input-wrapper
  input:checked
  ~ label[data-player-position="GK"] {
  transform: translate(-50%, -10px);
}

.player-position-input-wrapper
  input:checked
  ~ label[data-player-position="CDM"] {
  transform: translate(-50%, -90%) !important;
}

.position-name .position {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
}
.position-name .position.large {
  transform: translate(-50%, -50%) !important;
  text-align: center;
  line-height: 13px;
}

.player-position-input-wrapper
  input:checked
  ~ label[data-player-position="GK"]
  .jersey-front {
  fill: var(--red-dark-active);
}

#profile-details input,
#profile-details select {
  padding: 12px 16px !important;
  border: 1px solid #8e939e;
  border-radius: 4px;
}

#profile-details .row {
  row-gap: 32px;
}

.iti__country-container {
  position: relative;
  min-width: 132px;
  border: 1px solid #8e939e;
  border-radius: 4px;
}

.iti.iti--allow-dropdown {
  display: flex;
  gap: 8px;
}

select {
  color: #8e939e;
}

select option {
  color: var(--black);
}

.uploaded-thumbnail {
  align-items: center;
  position: relative;
}

.uploaded-thumbnail img {
  max-width: 100px;
}

.uploaded-thumbnail .file-info {
}

.uploaded-thumbnail .remove-btn {
  cursor: pointer;
  color: var(--red);
  height: 16px;
  width: 16px;
  position: absolute;
  top: 4px;
  right: 4px;
  background: #fbe9e9;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-info p {
  font-size: 14px;
}

/* biometrics */
/* .range-slider {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column-reverse;
}

#biometrics input[type="range"] {
    writing-mode: bt-lr;
    width: 300px;
    height: 20px;
    background: transparent;
    transform: rotate(270deg);
}

#biometrics input[type="range"]::-webkit-slider-runnable-track {
    height: 100%;
    width: 8px;
    background: #ddd;
    border: none;
}

#biometrics input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #000;
    cursor: pointer;
    border-radius: 50%;
    margin-top: -8px;
}

#biometrics input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #000;
    cursor: pointer;
    border-radius: 50%;
}

.height-value {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #000;
} */

.min-w-200 {
  min-width: 200px;
}

.mw-245 {
  max-width: 245px;
  margin-inline: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.ruler {
  position: relative;
  width: 60px;
  height: 406px;
  overflow: hidden;
  background-color: #fff;
}

.ruler::after,
.ruler::before {
  position: absolute;
  content: "";
  height: 25px;
  right: 0;
  width: 100%;
  z-index: 9;
}

.ruler::before {
  background: linear-gradient(to top, transparent, #fff);
  top: 0;
}

.ruler::after {
  background: linear-gradient(to bottom, transparent, #fff);
  bottom: 0;
}

.red-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: red;
  top: 53%;
  left: 0;
  transform: translateY(-53%);
}

.markings {
  position: absolute;
  width: 100%;
  height: 1000px;
  /* Larger than the ruler height to allow scrolling */
  top: 0;
  transition: top 0.1s ease;
  /* Smooth scrolling */
}

.cm {
  position: absolute;
  width: 100%;
  font-size: 16px;
  color: transparent;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.height-value {
  font-weight: bold;
  color: #000;
}

.cm::after {
  content: "";
  width: 12px;
  height: 1px;
  background: #8e939e;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 4px;
  color: transparent;
}

.cm-180::after,
.cm-190::after,
.cm-200::after,
.cm-210::after,
.cm-220::after,
.cm-170::after,
.cm-160::after,
.cm-150::after {
  width: 24px;
  background: rgb(142 147 158 / 50%);
}

.cm-180,
.cm-190,
.cm-200,
.cm-210,
.cm-220,
.cm-170,
.cm-160,
.cm-150,
.cm-140,
.cm-130,
.cm-120 {
  color: var(--black);
}

.weight-value {
  font-weight: bold;
  color: #000;
}

.steps-container .step:last-child {
  margin-bottom: 0;
}

.steps-container .step {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  position: relative;
}

.steps-container .step.active {
  font-weight: 500;
  color: var(--red);
}

.stepper-btn {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background-color: #8e939e;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps-container .step.active .stepper-btn,
.steps-container .step.finish.active .stepper-btn {
  background-color: var(--red);
}
.steps-container .step.finish .stepper-btn {
  background-color: #045694;
}

.stepper-btn::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.76837e-07 6.75L7.49999 6.75C7.49999 6.75 7.51185 5.28651 6.85209 3.72243C6.09494 1.92746 4.60779 9.19332e-08 3.80624 1.17412e-07C3.00469 1.4289e-07 1.48542 1.92746 0.698353 3.72243C0.012526 5.28651 4.76837e-07 6.75 4.76837e-07 6.75Z' fill='%238E939E'/%3E%3C/svg%3E%0A");
  top: -3px;
  left: 50%;
  width: 8px;
  height: 7px;
  transform: translateX(-50%);
}

.stepper-btn::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0H1.43049e-05C1.43049e-05 0 -0.0118515 1.46349 0.647907 3.02757C1.40506 4.82254 2.89221 6.75 3.69376 6.75C4.49531 6.75 6.01458 4.82254 6.80165 3.02757C7.48747 1.46349 7.5 0 7.5 0Z' fill='%238E939E'/%3E%3C/svg%3E%0A");
  bottom: -3px;
  left: 50%;
  width: 8px;
  height: 7px;
  transform: translateX(-50%);
}
.steps-container .step.finish .stepper-btn::before {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.76837e-07 6.75L7.49999 6.75C7.49999 6.75 7.51185 5.28651 6.85209 3.72243C6.09494 1.92746 4.60779 9.19332e-08 3.80624 1.17412e-07C3.00469 1.4289e-07 1.48542 1.92746 0.698353 3.72243C0.012526 5.28651 4.76837e-07 6.75 4.76837e-07 6.75Z' fill='%23045694'/%3E%3C/svg%3E%0A");
}
.steps-container .step.finish .stepper-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0H1.43049e-05C1.43049e-05 0 -0.0118515 1.46349 0.647907 3.02757C1.40506 4.82254 2.89221 6.75 3.69376 6.75C4.49531 6.75 6.01458 4.82254 6.80165 3.02757C7.48747 1.46349 7.5 0 7.5 0Z' fill='%23045694'/%3E%3C/svg%3E%0A");
}
.steps-container .step.active .stepper-btn::before {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.76837e-07 6.75L7.49999 6.75C7.49999 6.75 7.51185 5.28651 6.85209 3.72243C6.09494 1.92746 4.60779 9.19332e-08 3.80624 1.17412e-07C3.00469 1.4289e-07 1.48542 1.92746 0.698353 3.72243C0.012526 5.28651 4.76837e-07 6.75 4.76837e-07 6.75Z' fill='%23DB2021'/%3E%3C/svg%3E%0A");
}

.steps-container .step.active .stepper-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0H1.43049e-05C1.43049e-05 0 -0.0118515 1.46349 0.647907 3.02757C1.40506 4.82254 2.89221 6.75 3.69376 6.75C4.49531 6.75 6.01458 4.82254 6.80165 3.02757C7.48747 1.46349 7.5 0 7.5 0Z' fill='%23DB2021'/%3E%3C/svg%3E%0A");
}

.step:first-child .stepper-btn::before {
  content: none;
}

.step:last-child .stepper-btn::after {
  content: none;
}

.step::after {
  content: "";
  width: 2px;
  height: 50px;
  position: absolute;
  left: 11px;
  bottom: -35px;
  background: #8e939e;
  z-index: -1;
}
.step.finish::after {
  content: "";
  width: 2px;
  height: 50px;
  position: absolute;
  left: 11px;
  bottom: -35px;
  background: #045694;
  z-index: -1;
}

.step:last-child:after {
  content: none !important;
}

.step.active::after {
  content: "";
  width: 2px;
  height: 50px;
  position: absolute;
  left: 11px;
  bottom: -35px;
  background: linear-gradient(to bottom, var(--red), #8e939e);
}

.input-wrapper > div {
  margin-bottom: 32px;
}

.input-wrapper > div:last-child {
  margin-bottom: 0;
}

.application-10-wrapper {
  background: url(../images/showcase-pathway-application/frame-10.png) no-repeat;
  padding-top: 80px;
  padding-bottom: 128px;
  background-position-y: bottom;
  background-size: contain;
}

.content-container {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
}

#purchaseHistory {
  background-color: #f5f5f5;
  padding-bottom: 128px;
}

#purchaseHistory .title-wrapper,
#myAccount .title-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}

#purchaseHistory .package-title,
#myAccount .package-title {
  background: rgb(191 191 221 / 30%);
  padding: 24px 40px 16px 40px;
  border-radius: 8px 8px 0 0;
}

#myAccount .package-title {
  padding: 16px 24px !important;
}

#myAccount .package-title {
  background: rgb(234 234 244 / 30%);
}

#purchaseHistory .main-package-selected,
#myAccount .main-package-selected {
  background: #fff;
  padding: 24px 40px 32px 40px;
  border-radius: 0 0 8px 8px;
}

#myAccount .main-package-selected {
  padding: 24px !important;
}

#myAccount .cart-card .price,
#myAccount .main-package-wrapper .price,
#myAccount .addons-wrapper .price {
  color: var(--red);
  font-size: 20px;
  font-weight: 600;

}


.selected-value {
  color: var(--red);
  font-size: 24px;
  font-weight: 500;
}

#purchaseHistory .order-summary-wrapper .package-title {
  background: rgb(244 186 186 / 30%);
}

#myAccount .order-summary-wrapper .package-title {
  background: rgb(251 233 233 / 30%);
}

.price-container .package-name,
.price-container .price {
  font-size: 20px;
  color: #5c6373;
}

#myAccount .price-container .package-name,
#myAccount .price-container .price {
  font-size: 15px;
  color: var(--black);
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
}

.price-container:first-child {
  padding-top: 0;
}

.total,
.total-price {
  font-size: 24px;
}

.total-price {
  font-weight: 600;
  color: var(--red);
}

.total-container {
  border-top: 1px solid #eaeaf4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
}

.addon-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  border-bottom: 1px solid #eaeaf4;
}

.addon-name:first-child {
  padding-top: 0 !important;
}

.addon-name:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.quantity {
  font-size: 24px;
}

.quantity-price-wrapper {
  display: flex;
  align-items: center;
  gap: 120px;
}

.back-btn {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-btn i {
  color: #fff;
}

#flight-ticket ~ label,
#medical-upload ~ label,
#academic-transcripts ~ label,
#passport-files ~ label,
#passport-photo ~ label {
  border-radius: 4px;
  border: 1px dashed #8e939e;
  padding-block: 38px;
  font-size: 14px;

}

ol.pointer {
  list-style: decimal;
}

.pointer li {
  margin-bottom: 24px;
}

.pointer li:last-child {
  margin-bottom: 0;
}

.thumb1,
.thumb2 {
  width: 100px;
  height: 100px;
  border: 1px solid #ccc;
  background-size: cover;
  background-position: center;
  position: relative;
}

.thumb1 .file-info,
.thumb2 .file-info {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  text-align: center;
  font-size: 12px;
}

.delete-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  border: none;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #fbe9e9;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preview-container {
  display: flex;
  gap: 16px;
}

#preview-container .preview {
  max-width: 150px;
  position: relative;
}

#preview-container .preview img {
  object-fit: cover;
  object-position: center;
  max-height: 84px;
}

.file-info {
  margin-top: 10px;
}

.purchase-history-wrapper {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%),
    0 4px 8px 0 rgb(255 255 255 / 80%) inset;
  padding: 8px 16px;
  max-width: fit-content;
}

.purchase-history-wrapper img {
  max-width: 32px;
  margin-inline: auto;
}

#cart-tab-pane .package-card {
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.cart-card {
  padding: 24px;
  border-radius: 4px;
  border: 2px solid #8e939e;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.cart-card-wrapper {
  padding: 24px;
}


.cart-card-wrapper .row:not(.cart-card-wrapper .row:last-child) {
  margin-bottom: 48px;
}

.cart-card-wrapper .col-md-6 {
  margin-bottom: 16px;
}

#myAccountTabs {
  border-bottom: 0;
}

#myAccountTabs svg {
  min-width: 24px;
  max-width: 24px;
}

#myAccountTabs button.nav-link {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 4px;
  padding-inline: 8px;
  width: 100%;
  text-align: left;
  text-transform: capitalize !important;
}

#myAccountTabs button.nav-link.active {
  color: var(--red);
  background: #fbe9e9;
}

/* #myAccountTabs button.nav-link img {
    min-width: 40px;
} */
#myAccount .addons-wrapper,
#myAccount .main-package-wrapper {
  border: 1px solid #eaeaf4;
  border-radius: 8px;
}

#myAccount .order-summary-wrapper {
  border: 1px solid #fbe9e9;
  border-radius: 8px;
}

#myAccount .coupon-wrapper input[type="text"] {
  border: 1px solid #8e939e;
  padding-left: 16px;
}

#myAccount .coupon-wrapper input {
  border-radius: 4px;
  border: 0;
  width: 100%;
  height: 100%;
  padding-block: 8px;
}

.coupon-wrapper .row > * {
  padding-inline: 8px;
}

#myAccount .coupon-wrapper input[name="apply_coupon"] {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background: #045694;
  border: 0;
}

#myAccount .cart-card-wrapper input[type="checkbox"]:checked ~ label {
  border: 2px solid #db2021;
}

#myAccount .custom-checkbox input[type="checkbox"]:checked + .checkmark + span {
  color: red;
  /* Change the color of the label text */
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark + span {
  border: 2px solid blue;
  /* Change this to the desired border color and style */
}

/* ajay new */
/* application status start */
.application-status-text h1 {
  font-size: 40px;
}

.application-status-text p {
  font-size: 24px;
}

.application-status-btn a {
  font-weight: 600;
}

.gap-16 {
  gap: 16px;
}

/* application status end */

/* set password start */
.set-password-text h2 {
  font-size: 40px;
  font-weight: 500;
}

.set-password-text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-blue-Lighter-active);
  padding-top: 32px;
  text-align: start;
}

/* set password end */

/* booking page start */

#booking-history .back-button {
  background: var(--light-blue);
  width: 32px;
  height: 32px;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 8px;
}

#booking-history .booking-text {
  font-size: 40px;
  font-weight: 600;
}

.gap-24 {
  gap: 24px;
}

#booking-history {
  background-color: #f6f6f8;
}

.booking-history-container {
  background: var(--white);
  padding: 32px !important;
  border-radius: 8px;
}

.booking-history-container .history-date {
  color: var(--light-blue);
  font-size: 24px;
  font-weight: 500;
}

.booking-history-container .history-time {
  font-size: 24px;
  font-weight: 400;
  padding-top: 4px;
}

.booking-history-container .user-name {
  font-size: 16px;
  font-weight: 400;
  padding-top: 4px;
}

.booking-history-container .user-full-name {
  font-size: 24px;
  font-weight: 400;
  padding-top: 4px;
  font-weight: 500;
}

.booking-history-container .user-email {
  font-size: 16px;
  font-weight: 400;
  padding-top: 4px;
}

.booking-history-container .user-email-enter {
  font-size: 24px;
  font-weight: 400;
  padding-top: 4px;
  font-weight: 500;
}

/* booking page end */

/* residential preview register start */
#residential-preview-register-page
  .resdential-content-start
  .resdential-profile
  a {
  color: var(--light-blue);
  font-weight: 600;
  text-decoration: underline;
}

#residential-preview-register-page .input-name {
  color: var(--dark-blue-Lighter-active);
}

#residential-preview-register-page .user-name {
  color: var(--black);
}

#residential-preview-register-page .profile-photo-images .profile-photo-1,
#residential-preview-register-page .profile-photo-images .profile-photo-2 {
  max-width: 100px;
  gap: 46px !important;
}

/* residential preview register end */

/* residential register start */

#residential-register-page .residential-register-input {
  padding: 12px 16px;
  color: var(--black);
  border: 1px solid var(--dark-blue-Lighter);
  border-radius: 4px;
}

#residential-register-page .residential-date-of-birth {
  gap: 16px;
}

#residential-register-page .residential-citizenship button {
  font-size: 16px;
  color: var(--dark-blue-Lighter);
}

#residential-register-page .dropdown-toggle::after {
  display: inline-block;
  margin-left: 12.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.residential-checkbox input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox */
.residential-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

.residential-checkbox .residential-checkmark {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: transparent;
  border-radius: 4px;
  border: 2px solid var(--dark-blue-Lighter);
}

/* Checkmark (hidden by default) */
.residential-checkbox .residential-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.residential-checkbox
  input[type="checkbox"]:checked
  + .residential-checkmark:after {
  display: block;
}

.residential-checkbox .residential-checkmark:after {
  left: 50%;
  top: 50%;
  width: 7px;
  height: 14px;
  border: solid var(--red);
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.residential-checkbox input[type="checkbox"]:checked + .residential-checkmark {
  background-color: var(--white);
  border: solid var(--red);
}

.residential-checkbox .residential-checkmark::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 4px;
  border: 2px solid transparent;
  background: linear-gradient(to right, #db2021, #2f3192);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  display: none;
}

.residential-checkbox .residential-checkmark:hover::before {
  display: block;
}

.residential-dropdown-menu {
  max-height: 150px;
  overflow-y: auto;
}

.residential-dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.residential-dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 4px;
}

.residential-dropdown-menu::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* residential register end */

/* residential program apply start */
.thead-dark .residential-table .months h5 {
  font-weight: 500;
  color: #db2021;
}

.thead-dark .residential-table .charge h5 {
  font-weight: 600;
}

.btn-checkbox {
  display: none;
}

.btn-checkbox + label {
  display: inline-block;
  cursor: pointer;
  border: 2px solid red;
  background: white;
  color: black;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-checkbox:checked + label {
  background-color: red;
  color: white;
}

.residential-program-apply-btn {
  margin-top: 64px !important;
  margin-bottom: 128px !important;
  gap: 12px;
}

.residential-program-apply-btn button {
  min-width: 200px;
}

/* residential program apply end */

/* residential program apply options start */
#residential-program-apply-options .program-option {
  border: 1px solid var(--dark-blue-Lighter);
  padding: 16px;
  border-radius: 4px;
}

/* residential program  apply options end */

/* residential program start apply start */
#residential-program-start-apply .program-option {
  border: 1px solid var(--dark-blue-Lighter);
  padding: 16px;
  border-radius: 4px;
}

/* residential program start apply end */

/* residential upload profile start */
#residential-upload-profile .upload-profile-para {
  color: var(--dark-blue-Lighter-active);
}

.upload-profile-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 0 16px 0 rgb(219 32 33 / 16%);
}

.upload-profile-container .hedaing {
  padding-bottom: 4px;
}

#residential-upload-profile .description {
  font-size: 16px;
  color: #555;
}

.upload-profile-image {
  height: 144px;
}

.upload-profile-container .hedaing-para {
  padding-block: 28px !important;
}

.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.image-preview-wrapper {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  width: 100px;
}

.image-preview {
  max-width: 84px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.close-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  z-index: 10;
}

.image-preview-wrapper {
  position: relative;
  display: inline-block;
  border: 0;
  padding: 10px;
  text-align: center;
  width: 100px;
}

.image-info {
  color: #435254;
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}

.image-info strong {
  display: none;
}

/* residential upload profile end */

/* residential upload cv start */

#residential-upload-cv .upload-cv-start {
  border: 1px dashed var(--dark-blue-Lighter);
  padding-block: 38px;
  border-radius: 4px;
  gap: 8px;
}

#residential-upload-cv .btn-custom-border {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

#residential-upload-cv .upload-cv-container {
  border: 1px dashed var(--dark-blue-Lighter);
  padding-block: 38px;
}

#residential-upload-cv .cv-preview-container {
  width: 84px !important;
}

#residential-upload-cv .custom-close-icon {
  position: absolute;
  left: 19.5%;
  top: 31%;
}

/* residential upload cv end */

/* residential health start */

#residential-health-form .program-option {
  border: 1px solid var(--dark-blue-Lighter);
  padding: 16px;
  border-radius: 4px;
}

#residential-health-form .residential-health-input {
  border: 1px solid var(--dark-blue-Lighter);
  padding: 16px;
  border-radius: 4px;
}

/* residential health end */
/* ajay new end */
/*  */

#myAccount .custom-checkbox-btn {
  width: 20px;
  height: 20px;
  border: 2px solid var(--red);
  display: inline-block;
  border-radius: 3px;
  position: absolute;
  right: 8px;
  top: 8px;
}

.cart-card {
  position: relative !important;
}

#myAccount .custom-checkbox-btn::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: solid var(--red);
  border-width: 0 2px 2px 0;
  top: 2px;
  left: 6px;
  transform: rotate(45deg);
  opacity: 0;
}

#myAccount
  input[type="checkbox"]:checked
  + .cart-card
  .custom-checkbox-btn::before {
  opacity: 1;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

#myAccountTabs .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

#myAccountTabs .stepper {
  height: 24px;
  width: 24px;
  min-width: 24px;
  background: #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

#myAccountTabs .stepper.approved {
  background: var(--red);
}

#myAccountTabs .stepper::after {
  position: absolute;
  height: 34px;
  width: 2px;
  background: #8e939e;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  content: "";
  z-index: -1;
}

#myAccountTabs .stepper.approved::after {
  background: linear-gradient(to bottom, var(--red), #8e939e);
}

#myAccountTabs li:last-child .stepper::after {
  content: none;
}

.info-box {
  min-width: 14px;
}

.form-tab .row > * {
  margin-bottom: 32px;
}

.form-tab select {
  padding: 12px 16px !important;
  border: 1px solid #8e939e;
  border-radius: 4px;
  -webkit-appearance: none;
}
.myaccount-form-tab select {
  padding: 12px 16px !important;
  border: 1px solid #8e939e;
  border-radius: 4px;
}

#paymentTab {
  gap: 24px;
  border: 0;
}

#paymentTab li button {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  border: 0;
  border-bottom: 2px solid transparent;
  padding-inline: 0;
}

#paymentTab li button.active {
  border-bottom: 4px solid var(--red);
}

.pointer::marker {
  font-size: 20px !important;
  font-weight: 500 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

#profile-photo label {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* selection slider */
#additional-info .progress-container {
  width: calc(100% - 10rem);
  background-color: #f4f4f4;
  position: relative;
  height: 6px;
  margin-block: 20px;
  margin-inline: auto;
}

#additional-info .progress-bar,
.typical-day-slider-wrapper .progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--red), var(--blue));
  overflow: visible;
}

#additional-info .progress-bar::after,
.typical-day-slider-wrapper .progress-bar::after {
  content: url(../images/svg/slider-btn-image.svg);
  width: 44px;
  height: 40px;
  background-repeat: no-repeat;
  z-index: 9;
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}

#additional-info .cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 75px;
}

#additional-info .card.selection-process-card {
  width: 15%;
  padding: 45px 20px 20px 20px;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  transition: background-color 0.3s;
  border: 2px solid #eaeaf4;
}

#additional-info .card.selection-process-card .title {
  margin-bottom: 4px;
}

#additional-info .serial-number svg {
  min-width: 90px;
}

#additional-info .svg-container path {
  fill: white;
  stroke: #eaeaf4;
  stroke-width: 2;
  transition: fill 0.3s ease;
}

#additional-info .card.active .svg-container path {
  fill: url(#gradient);
}

#additional-info .serial-number .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#additional-info .card.active .serial-number .number {
  color: #fff;
}

#additional-info .card.active {
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
}

#additional-info .card.selection-process-card.active .title {
  background: linear-gradient(to right, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#additional-info .card.selection-process-card .serial-number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  justify-content: center;
}

#additional-info.navigation-buttons {
  gap: 16px;
}
.form-control.iti__tel-input {
  padding-left: 16px !important;
}
header {
  position: sticky !important;
}
header h3.logo-text {
  color: var(--black);
  font-size: 26px;
  font-weight: 600;
  margin-left: 0;
}
#register-page form label {
  margin-bottom: 4px;
}
#register-page .row,
#register-page-preview .row {
  row-gap: 24px;
}
.form-details-wrapper .personal-details {
  margin-bottom: 24px;
}
.form-details-wrapper {
  margin-top: 24px;
  margin-bottom: 40px;
}
.login-span a {
  color: var(--red);
}
#register-page,
#register-page-preview {
  padding-block: 44px 80px;
}
.password-container {
  position: relative;
}
.password-container button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath stroke='rgba%280, 0, 0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.logo a {
  width: 50px;
}
header {
  /* backdrop-filter: blur(8px); */
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
}
.navbar-toggler {
  padding-left: 0;
}
.form-title-text {
  font-size: 24px;
  color: var(--black);
}

.form-input-summary-title {
  font-size: 14px;
  color: #5c6373;
  margin-bottom: 4px;
}
.form-input-summary-value {
  font-size: 18px;
  color: var(--black);
}
.form-summary-wrapper:not(.form-summary-wrapper:last-child) {
  margin-bottom: 64px;
}
#register-page-preview .btn-wrapper {
  margin-top: 64px;
}
#register-page-preview .btn-wrapper button.border-red {
  background: transparent;
}
.modal-content * {
  text-align: center;
}
.modal-body {
  padding: 60px 58px;
  /* overflow-y: hidden; */
}
.modal-body img {
  margin-inline: auto;
}
.modal-body div:not(.modal-body div:last-child) {
  margin-bottom: 24px;
}
.modal-title-text {
  font-size: 24px;
  font-weight: 500;
}
.modal-info-text {
  font-size: 16px;
}
.custom-checkbox a {
  color: #045694;
  text-decoration: underline;
}
.login-card {
  max-width: 45%;
  margin-inline: auto;
}
#summit-login,
#forgot-pwd,
#forgot-pwd-redirect,
#set-password {
  padding-block: 80px;
}
.forgot-pwd {
  padding-bottom: 0;
  margin-block: 24px;
}
.new-member {
  padding-bottom: 0;
}
.login-form label {
  margin-bottom: 4px;
}
.login-card h4 {
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 24px;
}
.content-wrapper p {
  margin-bottom: 12px;
}
.content-wrapper p:last-child {
  margin-bottom: 24px;
}
.content-wrapper p {
  font-size: 14px;
  color: #5c6373;
}
.content-wrapper .email {
  margin-bottom: 12px;
  font-size: 18px;
  color: #045694;
  font-weight: 600;
}
.resend-email-countdown-btn {
  background: #8e939e;
  color: #fff;
}
#set-password .login-card {
  padding: 0;
}
#set-password .login-card p,
#set-password .login-card h4 {
  text-align: center;
}
.password-container-wrapper {
  margin-top: 24px;
}
#set-password .login-card a,
#set-password .login-card button[type="submit"] {
  margin-top: 40px;
}
#plansComparision ul .nav-link {
  background: #fff;
  color: var(--dark-blue-normal) !important;
  border-radius: 4px;
  border: 1px solid #040f28;
  display: block;
  width: 100%;
}
#plansComparision ul .nav-link.active {
  background: var(--red);
  color: var(--white) !important;
  border: 1px solid var(--red);
}
#plansTabContent .included {
  margin-top: 40px;
  margin-bottom: 18px;
}
.days-wrapper,
.duration-wrapper {
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
}
#plansTab {
  border-bottom: 0;
  justify-content: space-between;
  margin-bottom: 40px;
}
#plansTabContent .included {
  margin-top: 40px;
  margin-bottom: 18px;
}
#account-overview .row > * {
  margin-bottom: 0;
}
.plan-wrapper-mobile .single-plan-wrapper {
  padding: 16px;
  border-bottom: 0.7px solid #bfbfdd;
  row-gap: 24px;
  align-items: center;
}
.plan-wrapper-mobile .single-plan-wrapper .d-flex {
  gap: 8px;
}
.plan-value {
  text-align: center;
}
button.dropdown-toggle {
  display: flex;
  align-items: center;
  background: #fbe9e9;
  border-radius: 4px;
  padding: 6px 8px;
  border: 0;
}
button.dropdown-toggle.show,
button.dropdown-toggle:hover {
  background: #fbe9e9 !important;
}
.dropdown-toggle::after {
  content: "";
  border: 0 !important;
  background: url(../images/svg/profile-dropdown.svg) no-repeat;
  height: 4px;
  width: 8px;
  background-size: cover;
}
.dropdown-menu[data-bs-popper] {
  left: auto;
  right: 0;
}
.dropdown-menu.show {
  border-radius: 4px;
  box-shadow: 0px 0px 8px 0px rgba(1, 42, 45, 0.16);
  background: #fff;
  border: 0;
  padding: 8px;
}
.profile-wrapper .dropdown-menu.show .dropdown-item {
  padding-inline: 4px;
}
.profile-wrapper .dropdown-item:focus,
.profile-wrapper .dropdown-item:hover {
  background-color: transparent;
}
.user-name-wrapper {
  margin-block: 64px;
}
.showcase-package-title h3 {
  padding: 0;
}
.user-name-wrapper h3 {
  font-size: 24px;
  font-weight: 400;
  padding: 0;
  margin-bottom: 8px;
}
.user-name-wrapper .account-user-name {
  font-size: 40px;
  font-weight: 600;
}
.application-pathway,
.table-title {
  font-size: 32px;
  font-weight: 500;
}
.table-title {
  margin-bottom: 24px;
}
.duration-wrapper {
  width: 33%;
  max-width: 33%;
}
.duration-wrapper span {
  margin-top: 8px !important;
  display: block;
}
/* .account-user-name span {
  display: inline-block;
} */
.apply-cta-wrapper .cost {
  font-size: 28px;
  font-weight: 600;
}
.apply-cta-wrapper .dates {
  font-size: 14px;
  margin-block: 4px 12px;
}
.apply-cta-wrapper {
  margin-top: 28px;
  max-width: fit-content;
  margin-left: auto;
  text-align: center;
}
#plansComparision {
  padding-bottom: 80px;
}
.continue-apply-container p {
  margin-top: 4px;
}
.application-status-text.blue h4 {
  color: #045694;
}
.application-status-btn a {
  text-align: center;
  max-width: fit-content;
}
.form-tab .row > * {
  margin-bottom: 0;
}
.form-tab .row {
  row-gap: 24px;
}
.application-10-wrapper-mobile .content-container h5,
.application-10-wrapper-mobile .content-container p {
  text-align: center;
}
.application-10-wrapper-mobile .content-container p {
  font-size: 18px;
}
.application-10-wrapper-mobile .content-container ul li::marker {
  content: url(../images/svg/checkmark.png);
  margin-right: 26px;
}
.application-10-wrapper-mobile .content-container ul li {
  padding-left: 16px;
}
.content-container h5 span {
  color: var(--red);
}
.application-10-wrapper-mobile .content-container h5 {
  margin-bottom: 24px;
}
.application-10-wrapper-mobile .content-container ul {
  margin-top: 24px;
}

/* weight */
/* .ruler-horizontal {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: visible;
}

.markings-horizontal {
  position: absolute;
  height: 100%;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.markings-horizontal .cm {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  width: 10px;
}

.weight-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.weight-markings {
  left: 1794px;
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
}

.weight-markings .kg {
  width: 10px;
  text-align: center;
  font-size: 12px;
}

.red-line-vertical {
  position: absolute;
  height: 75px;
  width: 2px;
  background-color: red;
  top: 236px;
  left: 50%;
  transform: translateX(-50%);
}

.weight-display {
  text-align: center;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.kg {
  position: absolute;
  width: 100%;
  font-size: 16px;
  color: transparent;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.kg::after {
  content: "";
  width: 1px;
  height: 12px;
  background: #8e939e;
  position: absolute;
  right: 0;
  top: 30px;
  margin-left: 4px;
  color: transparent;
}
.weight-markings .kg.kg-500::after,
.weight-markings .kg.kg-510::after,
.weight-markings .kg.kg-520::after,
.weight-markings .kg.kg-530::after,
.weight-markings .kg.kg-540::after,
.weight-markings .kg.kg-550::after,
.weight-markings .kg.kg-560::after,
.weight-markings .kg.kg-570::after,
.weight-markings .kg.kg-580::after,
.weight-markings .kg.kg-590::after,
.weight-markings .kg.kg-600::after,
.weight-markings .kg.kg-610::after,
.weight-markings .kg.kg-620::after,
.weight-markings .kg.kg-630::after,
.weight-markings .kg.kg-640::after,
.weight-markings .kg.kg-650::after,
.weight-markings .kg.kg-660::after,
.weight-markings .kg.kg-670::after,
.weight-markings .kg.kg-680::after,
.weight-markings .kg.kg-690::after,
.weight-markings .kg.kg-700::after,
.weight-markings .kg.kg-710::after,
.weight-markings .kg.kg-720::after,
.weight-markings .kg.kg-730::after,
.weight-markings .kg.kg-740::after,
.weight-markings .kg.kg-750::after,
.weight-markings .kg.kg-760::after,
.weight-markings .kg.kg-770::after,
.weight-markings .kg.kg-780::after,
.weight-markings .kg.kg-790::after,
.weight-markings .kg.kg-800::after,
.weight-markings .kg.kg-810::after,
.weight-markings .kg.kg-820::after,
.weight-markings .kg.kg-830::after,
.weight-markings .kg.kg-840::after,
.weight-markings .kg.kg-850::after,
.weight-markings .kg.kg-860::after,
.weight-markings .kg.kg-870::after,
.weight-markings .kg.kg-880::after,
.weight-markings .kg.kg-890::after,
.weight-markings .kg.kg-900::after,
.weight-markings .kg.kg-910::after,
.weight-markings .kg.kg-920::after,
.weight-markings .kg.kg-930::after,
.weight-markings .kg.kg-940::after,
.weight-markings .kg.kg-950::after,
.weight-markings .kg.kg-960::after,
.weight-markings .kg.kg-970::after,
.weight-markings .kg.kg-980::after,
.weight-markings .kg.kg-990::after,
.weight-markings .kg.kg-1000::after {
  width: 1px;
  height: 24px;
  background: rgb(142 147 158 / 50%);
  top: 18px;
}
.weight-markings .kg.kg-500,
.weight-markings .kg.kg-510,
.weight-markings .kg.kg-520,
.weight-markings .kg.kg-530,
.weight-markings .kg.kg-540,
.weight-markings .kg.kg-550,
.weight-markings .kg.kg-560,
.weight-markings .kg.kg-570,
.weight-markings .kg.kg-580,
.weight-markings .kg.kg-590,
.weight-markings .kg.kg-600,
.weight-markings .kg.kg-610,
.weight-markings .kg.kg-620,
.weight-markings .kg.kg-630,
.weight-markings .kg.kg-640,
.weight-markings .kg.kg-650,
.weight-markings .kg.kg-660,
.weight-markings .kg.kg-670,
.weight-markings .kg.kg-680,
.weight-markings .kg.kg-690,
.weight-markings .kg.kg-700,
.weight-markings .kg.kg-710,
.weight-markings .kg.kg-720,
.weight-markings .kg.kg-730,
.weight-markings .kg.kg-740,
.weight-markings .kg.kg-750,
.weight-markings .kg.kg-760,
.weight-markings .kg.kg-770,
.weight-markings .kg.kg-780,
.weight-markings .kg.kg-790,
.weight-markings .kg.kg-800,
.weight-markings .kg.kg-810,
.weight-markings .kg.kg-820,
.weight-markings .kg.kg-830,
.weight-markings .kg.kg-840,
.weight-markings .kg.kg-850,
.weight-markings .kg.kg-860,
.weight-markings .kg.kg-870,
.weight-markings .kg.kg-880,
.weight-markings .kg.kg-890,
.weight-markings .kg.kg-900,
.weight-markings .kg.kg-910,
.weight-markings .kg.kg-920,
.weight-markings .kg.kg-930,
.weight-markings .kg.kg-940,
.weight-markings .kg.kg-950,
.weight-markings .kg.kg-960,
.weight-markings .kg.kg-970,
.weight-markings .kg.kg-980,
.weight-markings .kg.kg-990,
.weight-markings .kg.kg-1000 {
  color: #000;
} */
.attribute-card input:checked ~ label {
  color: var(--red);
}
.attribute-card input:checked ~ label svg path {
  stroke: var(--red);
}
.attribute-card img {
  display: none;
}
.attribute-card {
  height: 100%;
}
.attribute-card label .fs-20.fw-500 {
  word-break: break-word;
}
.static-breadcrumb-container .breadcrumb {
  position: static;
}
.static-breadcrumb-container {
  padding-block: 40px;
}
#drop-zone-passport {
  margin-bottom: 24px;
}
.payment-btn {
  margin-top: 16px;
}
#myAccount .tab-pane .info-box {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
}
.package-add-on-card-title {
  margin-right: 6px;
  max-width: 85%;
  line-height: 1.2;
}
header #username {
  font-size: 20px;
  color: var(--black);
  font-weight: 600;
}
.showcase-pathway-application-section {
  padding-bottom: 120px;
}
#saveLater {
  background: transparent;
}

#myAccount,
#summit-register-page,
#set-password,
#account-overview,
#pathway-application,
#application-status,
#purchaseHistory,
#booking-history,
#bookVisit {
    background: url(../images/my-account-bg.png) no-repeat;
    background-size: contain;
    background-attachment: fixed;
    background-position-x: right;

}
/* mobile */
@media (max-width: 720px) {
    footer .logo img{
        max-width: 75px;
    }
    header h3.logo-text {
    font-size: 22px !important;
}
header .logo img{
    max-width: 60px !important;
}
header .logo .d-block{
    margin-right: 10px !important;
}
  .modal-dialog {
    max-width: 90%;
    margin-inline: auto;
  }
  #prevBtn,
  #nextBtn {
    max-width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  #saveLater {
    min-width: 60% !important;
  }
  .application-pathway-container .step-icon {
    order: 2;
  }
  .application-pathway-container .step-label {
    order: 3;
  }
  .application-pathway-container.desktop .application-pathway-step {
    min-height: 180px;
    max-width: calc(100% / 10);
  }
  .application-pathway-container.desktop .application-pathway-step .step-label,
  .application-pathway-container.desktop .application-pathway-step .step-icon {
    display: none;
  }
  .application-pathway-container.mobile .application-pathway-step .step-number {
    display: none;
  }
  .application-pathway-container.mobile {
    flex-wrap: wrap;
    margin-block: 0;
  }
  .application-pathway-container.desktop {
    margin-bottom: 32px;
  }
  .application-pathway-container.mobile .application-pathway-step {
    min-height: 150px !important;
    width: calc(100% / 5) !important;
    max-width: calc(100% / 5) !important;
    flex: auto;
  }
  .application-pathway-container.desktop .application-pathway-step {
    min-height: auto !important;
  }
  .application-pathway-container .step-number::after {
    width: 30px !important;
  }
  .showcase-pathway-application-section {
    padding-bottom: 80px;
  }
  #plansTabContent .included {
    font-size: 14px;
    font-weight: 600;
  }
  h1 {
    font-size: 28px !important;
    line-height: 42px;
  }
  #register-page-preview .btn-wrapper {
    margin-top: 64px;
  }
  .login-card {
    max-width: 100%;
    margin-inline: auto;
  }
  #summit-login,
  #forgot-pwd,
  #forgot-pwd-redirect {
    padding-block: 60px 188px;
  }
  #set-password {
    padding-block: 60px;
  }
  .login-card {
    padding: 60px 25px;
  }
  .resend-email-countdown-btn {
    font-size: 16px;
  }
  #account-overview li.nav-item,
  #account-overview-resume li.nav-item {
    max-width: calc(25% - 8px) !important;
    width: calc(25% - 8px);
  }
  .logo a {
    margin-right: 10px !important;
  }
  .user-name-wrapper h3 {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 8px;
  }
  .user-name-wrapper .account-user-name {
    font-size: 24px;
    font-weight: 500;
  }
  .application-status-btn a {
    min-width: 60% !important;
  }
  #application-status .application-status-btn a {
    max-width: calc(50% - 10px) !important;
    min-width: auto;
  }
  .user-name-wrapper {
    margin-block: 40px 28px;
  }
  /* .application-status-btn a:first-child {
    margin-bottom: 16px;
  } */
  .application-pathway,
  .table-title {
    font-size: 18px;
  }
  #plansComparision ul .nav-link {
    font-size: 14px;
  }
  #plansComparision {
    padding-bottom: 80px;
  }
  .continue-apply-container {
    padding: 12px 16px;
    gap: 16px;
  }
  .continue-apply-icon {
    min-width: 40px;
  }
  .continue-apply-container .fs-24 {
    font-size: 16px;
  }
  .continue-apply-container p {
    font-size: 12px;
  }
  #application-status {
    margin-top: 0;
    padding-block: 40px 80px;
  }
  .application-status-text {
    text-align: center;
  }
  .application-status-text h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .application-status-text p {
    font-size: 18px;
    font-weight: 500;
  }
  .application-status-btn a {
    font-size: 16px;
    margin-top: 16px;
  }
  .application-status-btn {
    justify-content: center;
  }
  .form-tab {
    padding: 40px 16px;
  }
  .content-container h5 {
    font-size: 24px;
  }
  .application-10-wrapper-mobile .content-container h5 {
    margin-bottom: 24px;
  }
  .application-10-wrapper-mobile .content-container ul {
    margin-top: 24px;
  }
  .package-wrapper-conatiner .package-card h3 {
    font-size: 32px;
    margin-block: 8px;
  }
  .package-wrapper-conatiner .package-card h5 {
    font-size: 26px;
  }
  .package-wrapper-conatiner .package-card .fs-24 {
    font-size: 20px;
  }
  .package-wrapper-conatiner .package-card {
    padding-inline: 15px;
  }
  .package-wrapper-conatiner .package-card .date {
    font-size: 24px;
  }
  .package-wrapper-conatiner label {
    min-height: 500px;
  }
  .package-wrapper-conatiner .nav-tabs {
    width: 100%;
    min-width: 100%;
    justify-content: space-between;
  }
  .package-wrapper-conatiner li.nav-item {
    width: calc(50% - 8px) !important;
  }
  .package-wrapper-conatiner .nav-tabs li button {
    min-width: 100%;
  }
  .package-wrapper-conatiner .nav-tabs li .moving-bg {
    transform: translateX(100%);
  }
  .application-10-wrapper-mobile .content-container {
    padding: 40px 16px;
  }
  #profile-photo label {
    min-height: 120px;
  }
  /*.profile-photo-card img {*/
  /*  top: 50%;*/
  /*  right: 8px;*/
  /*  max-width: 127px;*/
  /*  transform: translateY(-50%);*/
  /*}*/
  .attribute-card label {
    flex-direction: column;
    min-height: 100%;
    max-height: 100%;
  }
  .attribute-card img {
    max-width: 60px;
    position: static;
  }
  .attribute-card svg {
    max-width: 36px;
  }
  .attribute-card label .fs-20.fw-500 {
    max-width: 100%;
    font-size: 16px;
    text-align: center;
    word-break: auto-phrase !important;
  }
  .steps-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-block: 40px;
  }
  .steps-container .step {
    font-size: 0;
    color: transparent;
    gap: 0;
    margin-bottom: 0;
  }
  .step::after,
  .step.active::after {
    width: 50px;
    height: 3px;
    left: 12px;
    bottom: auto;
    transform: translateY(-50%);
    top: 50%;
    z-index: -1;
  }
  .stepper-btn {
    transform: rotate(270deg);
  }
  .stepper-btn .btn-status {
    transform: rotate(90deg);
  }
  .step.finish::after {
    width: 50px;
    height: 2px;
  }
  #purchaseHistory .title-wrapper h4 {
    font-size: 24px;
  }
  #purchaseHistory .selected-value,
  #purchaseHistory .quantity,
  #purchaseHistory .fs-24 {
    font-size: 18px;
  }
  #purchaseHistory .fs-20 {
    font-size: 16px;
  }
  #purchaseHistory .fs-16 {
    font-size: 14px;
  }
  #purchaseHistory .order-summary-wrapper {
    margin-top: 24px;
  }
  #myAccount iframe {
    max-height: 205px;
  }
  #hotel-checkin-tab-pane ol.pointer {
    padding-left: 16px;
  }
  #myAccountTabs.myaccount-tab-desktop button.nav-link {
    display: none;
  }
  #myAccountTabs {
    display: flex;
    flex-direction: row !important;
  }
  #myAccountTabs li {
    width: calc(100% / 8);
    max-width: calc(100% / 8);
  }
  #myAccountTabs .stepper::after {
    height: 2px;
    width: 50px;
    left: 130%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #myAccountTabs.myaccount-tab-mobile .stepper {
    display: none;
  }
  #myAccountTabs.myaccount-tab-mobile {
    margin-block: 24px 40px;
  }
  #myAccountTabs.myaccount-tab-mobile button.nav-link {
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding-inline: 6px;
  }
  #myAccountTabs.myaccount-tab-mobile li {
    width: calc(100% / 4);
    max-width: calc(100% / 4);
  }
  #myAccountTabs.myaccount-tab-mobile svg {
    margin-inline: auto;
    margin-bottom: 4px;
  }
  #pathway-application .steps-container.step-title-wrapper .step {
    font-size: 14px !important;
    color: var(--black) !important;
    max-width: fit-content;
  }
  #pathway-application .steps-container.step-title-wrapper .stepper-btn {
    display: none !important;
  }
  #pathway-application .steps-container.step-title-wrapper {
    flex-wrap: wrap !important;
    justify-content: center !important;
    column-gap: 32px;
    row-gap: 8px;
  }
  #pathway-application .steps-container.step-title-wrapper .step::after,
  #pathway-application .steps-container.step-title-wrapper .step.active::after {
    content: ">";
    background: transparent;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    right: -20px;
    left: auto;
    font-size: 18px;
    width: fit-content;
  }
  #account-overview #myAccountTabs.myaccount-tab-desktop li.nav-item,
  #account-overview-resume #myAccountTabs.myaccount-tab-desktop li.nav-item {
    width: calc(100% / 10) !important;
    max-width: calc(100% / 10) !important;
  }
}
/* uptill tablet */
@media (max-width: 991.98px) {
    .attribute-card label .fs-20.fw-500 {
    word-break: normal !important;
}
    .application-10-wrapper {
    background: transparent !important;
    padding-top: 0 !important;
}
  .nav-container,
  .profile-wrapper {
    flex: 1;
  }
  .logo-container {
    flex: 4;
    justify-content: center;
  }
  .profile-wrapper {
    display: flex;
    justify-content: flex-end;
  }

  .application-pathway-container .step-label {
    font-size: 14px !important;
  }
  .application-pathway-container .step-icon {
    max-width: 28px !important;
  }
  .application-pathway-container .step-number {
    width: 24px;
    height: 24px;
  }

  #myAccount .tab-pane h5 {
    font-size: 24px;
  }
  #myAccount .tab-pane .fs-24 {
    font-size: 20px;
    font-weight: 600;
  }
  #myAccount .tab-pane a.bttn {
    font-size: 18px;
  }
  .addons-wrapper label .fs-20 {
    font-size: 16px;
  }
  .purchase-history-wrapper p {
    text-align: center !important;
  }
  .package-add-on-card-title {
    max-width: 93%;
  }
}
/* only tablet */
@media (min-width: 721px) and (max-width: 991.98px) {
  .application-pathway-container .step-number::after {
    width: 70px !important;
  }
  .application-status-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: end;
    gap: 0 !important;
  }
  .application-status-btn a {
    width: 100%;
    display: block;
    max-width: 100% !important;
  }
  .break-word-md {
    word-break: break-word;
  }
  #pathway-application form .min-w-200 {
    min-width: fit-content;
    font-size: 18px;
    padding: 12px 48px;
  }
  #pathway-application form #saveLater {
    padding: 12px;
  }
  .showcase-pathway-application-section {
    padding-bottom: 80px;
  }
  .form-tab {
    padding: 24px;
  }
  .modal-title-text {
    font-size: 28px;
  }
  .modal-info-text {
    font-size: 18px;
  }
  #summit-login,
  #forgot-pwd,
  #forgot-pwd-redirect,
  #set-password {
    padding-block: 64px;
  }
  .login-card {
    max-width: 85%;
    margin-inline: auto;
  }
  .user-name-wrapper h3 {
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 8px;
  }
  .user-name-wrapper .account-user-name {
    font-size: 38px;
    font-weight: 500;
    padding-bottom: 0;
  }
  .user-name-wrapper {
    margin-block: 48px 64px;
  }
  .application-pathway {
    font-size: 24px;
  }
  #plansComparision li.nav-item {
    max-width: calc(25% - 10px);
    width: calc(25% - 10px);
  }
  .continue-apply-icon {
    min-width: 56px;
  }
  .continue-apply-container .fs-24 {
    font-size: 20px;
  }
  .continue-apply-container p {
    font-size: 12px;
  }

  .application-status-text h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .application-status-text p {
    font-size: 18px;
    font-weight: 400;
  }
  #profile-photo label {
    min-height: 120px;
  }
  /*.profile-photo-card img {*/
  /*  top: 50%;*/
  /*  right: 8px;*/
  /*  max-width: 127px;*/
  /*  transform: translateY(-50%);*/
  /*}*/
  .attribute-card label {
    flex-direction: column;
    min-height: 100%;
    max-height: 100%;
  }
  .attribute-card img {
    max-width: 60px;
    position: static;
  }
  .attribute-card label .fs-20.fw-500 {
    max-width: 100%;
    font-size: 16px;
    text-align: center;
  }
  .attribute-card svg {
    max-width: 42px;
  }
  .step::after {
    height: 80px;
    bottom: auto;
    top: 50%;
  }
  .step.active::after {
    height: 80px;
    bottom: auto;
    top: 50%;
  }
  #purchaseHistory .title-wrapper h4 {
    font-size: 32px;
  }
  #purchaseHistory .selected-value,
  #purchaseHistory .quantity,
  #purchaseHistory .fs-24,
  #purchaseHistory .fs-20 {
    font-size: 18px;
  }
  #myAccountTabs button.nav-link {
    font-size: 14px;
    font-weight: 400;
    gap: 8px;
  }
  #myAccount iframe {
    max-height: 282px;
  }
  header #username {
    font-size: 16px;
  }

  /* .table-title {
    font-size: 28px;
  }
  .pre-season-left-content,
  table .table-content,
  table button.bttn {
    font-size: 16px !important;
  }
  table .fs-16 {
    font-size: 12px;
  }
  table .fs-24 {
    font-size: 14px;
  }
  table h5 {
    font-size: 24px;
  }
  .fs-24.mb-4.fw-400.d-flex.align-items-center.justify-content-center.gap-2 {
    white-space: nowrap;
  } */
}
/* tablet and larger devices */
@media (min-width: 721px) {
    footer .logo img{
        max-width: 90px;
    }
  .sticky-sidebar {
    position: sticky;
    top: 150px;
    height: 100%;
  }
  .profile-wrapper .dropdown-toggle::after {
    height: 8px;
    width: 14px;
  }
  h1 {
    font-size: 40px !important;
    line-height: 60px;
  }
  .navbar-toggler-icon {
    height: 38px;
    width: 38px;
  }
  .logo a {
    width: 63px;
  }
  header h3.logo-text {
    font-size: 33px;
  }
  .login-card {
    padding: 40px;
  }
  .content-wrapper p {
    font-size: 16px;
  }
  #application-status {
    padding-block: 64px;
    margin-top: 0;
  }
  .attribute-card img {
    position: static;
    display: none;
  }
  .showcase-pathway-application-section .page-title {
    margin-bottom: 40px;
  }
  button.dropdown-toggle {
    padding: 12px 16px;
  }
}
/* Desktop */
@media (min-width: 992px) {
  #summaryWrapper {
    position: sticky;
    top: 150px;
    height: 100%;
  }
  .modal-dialog {
    max-width: 650px;
  }
  .modal-dialog.large-modal {
    width: 75%;
    max-width: 75%;
  }
  #register-page form button.bttn {
    margin-inline: auto;
    display: block;
  }
  header h3.logo-text {
    font-size: 48px;
  }
  .application-status-text h4 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .application-status-text p {
    font-size: 24px;
    font-weight: 400;
  }
  .nav-container,
  .profile-wrapper {
    flex: 1;
  }
  .logo-container {
    flex: 2;
    justify-content: center;
  }
  .profile-wrapper {
    display: flex;
    justify-content: flex-end;
  }
}

/* slider */

/* Container for the slider */
.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}

.slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding-inline: 10px;
}

.slider-item {
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease;
  padding: 10px 5px;
  max-width: calc(100% / 6);
}
.slider-item img {
  max-width: 33px;
  margin-inline: auto;
  margin-bottom: 10px;
}
.slider-item p {
  font-size: 10px;
  text-align: center;
}
.slider-item.active p {
  font-size: 14px;
}

/* Scaling effect for the active slide */
.slider-item.active img {
  transform: scale(1.5);
}

/* Navigation Buttons */
.slider-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Progress Bar */
.addition-info-progress-bar {
  /* width: 100%; */
  width: calc(100% - 50px);
  height: 5px;
  background-color: #e0e0e0;
  margin-top: 20px;
  position: relative;
  overflow: visible;
}

.progress-indicator {
  width: 8.5%;
  /* width: 16.66%;  */ /* Start at 1/6 of the bar, since we have 6 items */
  height: 100%;
  background-color: var(--light-blue);
  transition: width 0.3s ease, transform 0.3s ease;
  position: relative;
}
.progress-indicator::after {
  content: url(../images/svg/slider-progress-icon.svg);
  width: 26.5px;
  height: 19.87px;
  background-repeat: no-repeat;
  z-index: 9;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 21-11 */

.application-pathway-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
  margin-block: 32px 80px;
}

.application-pathway-container .application-pathway-step {
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 200px;
}

.application-pathway-container .step-number {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ddd;
  color: white;
  font-weight: bold;
  z-index: 2;
  position: relative;
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 2;
}

.application-pathway-container
  .application-pathway-step.completed
  .step-number {
  background-color: #630e0f;
}

.application-pathway-container
  .application-pathway-step.in-review
  .step-number {
  background-color: var(--red);
}

.application-pathway-container
  .application-pathway-step.incomplete
  .step-number {
  background-color: #045694;
}

.application-pathway-container .step-label {
  margin-top: 4px;
  font-size: 20px;
  color: var(--black);
}

.application-pathway-container .step-number::after {
  position: absolute;
  height: 3px;
  width: 140px;
  background: #8e939e;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  z-index: -3;
}
.application-pathway-container
  .application-pathway-step.completed
  .step-number::after {
  background: #630e0f;
}
.application-pathway-container
  .application-pathway-step.in-review
  .step-number::after {
  background: var(--red);
}
.application-pathway-container
  .application-pathway-step.incomplete
  .step-number::after {
  background: #045694;
}
.application-pathway-container
  .application-pathway-step:last-child
  .step-number::after {
  content: none;
}
#myAccount .form-tab {
  display: block;
}

#prevBtn {
  background: transparent;
}

.step .btn-status {
  display: flex;
  justify-content: center;
  align-items: center;
}
.step .btn-status::before {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  color: #fff;
  font-weight: 900;
  font-size: 11px;
}
.step.finish .btn-status::before {
  font-size: 14px;
  content: "\f00c";
}
.step.active .btn-status::before,
.step.active.finish .btn-status::before {
  content: "\f1ce";
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  100% {
    transform: rotate(360deg); /* End at 360 degrees (one full rotation) */
  }
}

.dob-wrapper .col-3 {
  flex: 1;
}
.iti__selected-country {
  width: 100%;
  min-width: 100%;
}

.modal-title-text,
.modal-info-text {
  text-align: center;
}

select.w-100 {
  padding: 12px 16px;
  color: var(--black);
  border: 1px solid var(--dark-blue-Lighter);
  border-radius: 4px;
}

#username,
.account-user-name .name {
  text-transform: capitalize;
}

/* showcase weight slider */
.weight-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.ruler-horizontal {
  position: relative;
  display: flex;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar */
  -ms-overflow-style: none;
  cursor: grab;
}

.ruler-horizontal::-webkit-scrollbar {
  display: none;
}

.weight-ruler {
  width: 1px;
  min-width: 1px;
  height: 12px;
  background: #8e939e;
  margin-right: 6px;
  text-align: center;
}

.weight-ruler span {
  display: block;
  font-size: 12px;
}

.red-line-vertical {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 75px;
  background: #db2021;
  transform: translateX(-50%);
}

.weight-display {
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 30px;
}

/*  */
.weight-markings {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0; /* Adjust spacing */
  position: relative;
  user-select: none;
  white-space: nowrap;
  /* left: 215px; */
}

.weight-ruler {
  width: 1px; /* Adjust based on scale spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.weight-label {
  position: absolute;
  top: -20px; /* Moves numbers above ruler */
  font-size: 14px;
  color: var(--black);
  text-align: center;
  width: 30px;
}

.tab-pane:focus-visible {
  outline: none !important;
}
#pathway-application,
#myAccount,
#booking-history,
#purchaseHistory {
  background-color: #f6f6f8 !important;
}
@media(max-width: 575.98px){
    .bttn {
        padding: 10px !important;
        font-size: 14px !important;
        text-align: center;
    }
}