/* Direct Seller Page CSS */

/* START - Page Banner */
.page-banner {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #bbccfc;
  margin-bottom: 40px;
  height: 40px;
  text-align: center;
  align-items: center;
  z-index: 200;
}

@media (max-width: 575px) {
	.page-banner {
		min-height: 32px;
	}
}

.page-banner p {
  margin-bottom: 0;
  font-size: 12px;
}

header#main-header.has-page-banner {
  top: 40px;
}

header#main-header.has-page-banner.top-nav-fixed {
  top: 0;
}

/* END - Page Banner */

/* START - Navbar */
.ds-header {
  margin-top: 32px;
  height: 104px;
  display: flex;
}

.ds-header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.ds-header .container-fluid .ds-logo {
  margin-left: 60px;
  font-size: 28px;
  font-weight: 500;
}

.ds-header .container-fluid .ds-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
}

@media (max-width: 992px) {
  .ds-header .container-fluid .ds-nav {
    display: none;
  }
}

.ds-header .container-fluid .ds-nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

.ds-header .container-fluid .ds-cta {
  background-color: #ffffff;
  border-radius: 0;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  letter-spacing: 1px;
}

.ds-header .container-fluid .ds-cta:hover {
  color: #363636;
}

/* END - Navbar */

/* START - Hero Section */
.ds-hero {
  margin-top: 80px;
  margin-bottom: 80px;
}

.ds-hero__grid {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.ds-hero__image {
  border-radius: 20px;
  overflow: hidden;
  width: 600px;
  display: flex;
  justify-content: center;
}

.ds-hero__image img {
  height: 100%;
}

.ds-hero__content {
  width: 600px;
  background-color: #c3d0f2;
  border-radius: 14px;
  padding: 40px;
  padding-top: 50px;
}

.ds-hero__badge {
  background-color: #ffffff;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.ds-hero__content h1 {
  margin: 20px 0;
}

.ds-hero__content h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.ds-hero__content p {
  color: #737373;
  font-size: 18px;
  line-height: 24px;
}

@media (max-width: 992px) {
  .ds-hero__grid {
    flex-direction: column;
    align-items: center;
  }

  .ds-hero__content,
  .ds-hero__image {
    width: 90%;
  }
}

/* END - Hero Section */

/* START - Component Logo + Testimonial */
.logo-testimonial-section {
  padding: 2rem 0;
  text-align: center;
  padding-bottom: 69px;
}

.logo-testimonial-section .background-blue {
  background-color: rgb(186 205 255 / 50%) !important;
}

.testimonial-display {
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.4rem;
  color: #333;
  margin: 0 auto;
  max-width: 800px;
  font-family: "Simula";
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider-title {
  font-size: 16px;
  color: var(--color-dark-gray);
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 50px;
}

.logo-slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.logo-slider {
  display: flex;
  gap: 4rem;
}

.logo-slide {
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex: 1 1 auto;
}

.logo-slide img {
  width: auto;
  max-height: 30px;
}

.dots-wrapper {
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #979797;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--color-black);
}

@media (min-width: 768px) {
  .logo-testimonial-section .dots-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonial-text {
    min-height: 300px;
  }
  .logo-testimonial-section {
    padding: 2rem 0.5rem;
  }
  .logo-slider {
    flex-wrap: nowrap;
  }
  .logo-slide {
    flex: 0 0 100%;
  }
  .logo-slide img {
    width: auto;
    max-height: 26px;
  }
}
/* END - Component Logo + Testimonial */

/* START - Logo Slider Component */
.logo-slider-section {
  overflow: hidden;
  position: relative;
  background-color: #eee;
}

@media (max-width: 575px) {
	#main-content > section:not(:first-of-type):not(.whats-included-section):not(.animated-number-grid-section).logo-slider-section {
		padding-bottom: 60px;
	}
}

.logo-slider-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.logo-slider-track .logo-slider-wrapper {
  display: flex;
  animation: slideLogos 30s linear infinite;
  width: max-content;
  gap: 3rem;
}

.logo-slider-track .logo-item {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider-track .logo-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-slider-track .logo-item {
    padding: 0;
  }

  .logo-slider-track .logo-item img {
    max-height: 20px;
  }

  .logo-slider-track {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
  }
}
/* END - Logo Slider Component */

/* START - Shop Options Section */

.shop-options-card-section.shop_options_card {
  padding: 110px 0 !important;
}

.shop-options-card-section.shop_options_card .section-paragraph {
  font-size: 17px;
  margin-bottom: 40px;
}

.shop-options-card-section.shop_options_card .shop-options-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.shop-options-card-section.shop_options_card .shop-option a {
  display: flex;
  border-radius: 100px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  height: 48px;
  width: fit-content;
  min-width: 178px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.shop-options-card-section.shop_options_card .shop-option.women-option a {
  border: 1px solid #bbbbbb;
  background: transparent;
}

.shop-options-card-section.shop_options_card .shop-option.men-option a {
  color: #f2f1e6;
  border: 1px solid var(--color-dark-gray);
  background: rgba(54, 54, 54, 1);
}

/* END - Shop Options Section */

/* START - Top Products Section */
.page-template-template-direct-seller .related-products-section .carousel-card:first-of-type img,
.page-template-template-direct-seller-landing .related-products-section .carousel-card:first-of-type img {
  padding: 40px;
}

.related-products-section .card-details {
  margin-bottom: 30px;
}

.page-template-template-direct-seller .related-products-section .product-title {
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2px;
}

.related-products-section .product-excerpt {
  color: #737373;
}

.related-products-section .product-price {
  color: #737373;
  font-size: 16px;
}

.related-products-section .top-product-learn-more {
  width: 100%;
  font-size: 12px;
  font-weight: 100;
  margin-bottom: 10px;
  padding: 22px;
}

.related-products-section .top-product-get-started {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  padding: 22px;
  background-color: #e5e5e5;
  color: #575757;
  border-color: #c0c0c0;
}

.page-template-template-direct-seller .related-products-section .carousel-track {
  gap: 40px;
  padding: 0;
}

.page-template-template-direct-seller .related-products-section .carousel-slider {
  width: auto;
  padding: 0;
}

.page-template-template-direct-seller .related-products-section .carousel-card {
  flex: calc((100% - 2rem) / 3);
}

.page-template-template-direct-seller .related-products-section .carousel-card img {
  background-color: #ffffff;
}

.page-template-template-direct-seller .related-products-section .carousel-card .product-badges {
  display: none;
}

@media (max-width: 767px) {
  .page-template-template-direct-seller .related-products-section .carousel-track {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-content: center;
  }
}

@media (min-width: 768px) {
  .related-products-section .carousel-card .card-content {
    height: initial;
    margin-top: initial;
    position: initial;
    display: flex;
    flex-direction: column;
  }
}

/* END - Top Products Section */

/* START - Comparison Grid Section */

.comparison-products-grid-cards-section .section-header {
  margin-bottom: 20px;
}

.comparison-products-grid-cards-section .section-header h2 {
  font-size: 32px;
  margin-bottom: 0;
}

.page-template-template-direct-seller .comparison-products-grid-cards-section .cards-grid,
.page-template-template-direct-seller-landing .comparison-products-grid-cards-section .cards-grid {
  grid-template-columns: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-template-template-direct-seller .comparison-products-grid-cards-section .comparison-card,
.page-template-template-direct-seller-landing .comparison-products-grid-cards-section .comparison-card {
  width: 408px;
}

.page-template-template-direct-seller .comparison-products-grid-cards-section .product-name,
.page-template-template-direct-seller-landing .comparison-products-grid-cards-section .product-name {
  max-width: 280px;
}

.comparison-products-grid-cards-section .product-image {
  max-height: 90%;
}

.page-template-template-direct-seller .comparison-products-grid-cards-section .comparison-card:nth-child(2),
.page-template-template-direct-seller .comparison-products-grid-cards-section .comparison-card,
.page-template-template-direct-seller-landing .comparison-products-grid-cards-section .comparison-card:nth-child(2),
.page-template-template-direct-seller-landing .comparison-products-grid-cards-section .comparison-card {
  background: #fff;
}

#ds-step-3 .step-intro {
  max-width: 580px;
}

#ds-step-3>button {
  padding: 10px 30px;
  border-color: #bbbbbb;
  color: #363636;
}

.strikethrough-price {
  margin-left: 8px;
  text-decoration-line: line-through;
}

@media (max-width: 1399px) {
  .page-template-template-direct-seller .comparison-products-grid-cards-section .cards-grid,
  .page-template-template-direct-seller .bundles-section .bundle-grid,
  .page-template-template-direct-seller-landing .comparison-products-grid-cards-section .cards-grid,
  .page-template-template-direct-seller-landing .bundles-section .bundle-grid {
    justify-content: center;
  }

  .bundles-section-title {
    margin: initial;
    margin-bottom: 10px;
    width: fit-content;
  }

  .bundle-grid {
    width: 644px;
    gap: 80px;
  }
}

@media (max-width: 1199px) {
  .page-template-template-direct-seller .comparison-products-grid-cards-section,
  .page-template-template-direct-seller-landing .comparison-products-grid-cards-section {
    padding: initial;
  }
}

@media (max-width: 768px) {
  .page-template-template-direct-seller .bundles-section .bundles-section-title,
  .page-template-template-direct-seller-landing .bundles-section .bundles-section-title {
    margin: initial;
    margin-bottom: 10px;
    width: fit-content;
    font-size: 22px;
  }

  .page-template-template-direct-seller .bundles-section .bundle-grid,
  .page-template-template-direct-seller-landing .bundles-section .bundle-grid {
    width: 80vw;
    gap: 60px;
  }

  .page-template-template-direct-seller .bundles-section .bundle-image,
  .page-template-template-direct-seller-landing .bundles-section .bundle-image {
    height: 80vw;
    width: 80vw;
    margin-bottom: 20px;
  }

  .page-template-template-direct-seller .bundles-section .bundle-name,
  .page-template-template-direct-seller-landing .bundles-section .bundle-name {
    font-size: 20px;
  }

  .page-template-template-direct-seller .bundles-section .bundle-subtitle,
  .page-template-template-direct-seller-landing .bundles-section .bundle-subtitle {
    font-size: 14px;
  }

  .page-template-template-direct-seller .bundles-section .bundle-price,
  .page-template-template-direct-seller-landing .bundles-section .bundle-price {
    font-size: 14px;
  }

  .page-template-template-direct-seller .bundles-section .select-bundle-btn,
  .page-template-template-direct-seller-landing .bundles-section .select-bundle-btn {
    width: 120px;
    height: 40px;
  }
}

/* END - Comparison Grid Section */

/* START - Landing Page Hero Section */
body.page-template-template-direct-seller,
body.page-template-template-direct-seller-landing {
  background-color: #f7f7f7;
}

.dsl-hero {
  background-color: #eee;
  padding-top: 200px;
  padding-bottom: 120px;
  margin-bottom: 50px;
}

.dsl-hero__grid {
  display: flex;
  gap: 40px;
}

.dsl-hero__image {
  border-radius: 10px;
  overflow: hidden;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 680px;
}

.dsl-hero__image img {
  width: 100%;
}

.dsl-hero__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dsl-hero__content h3 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 30px;
}

.dsl-hero__content h3 span {
  color: #939393;
  font-style: italic;
}

.dsl-hero__grid .dsl-hero__content p {
  margin-bottom: 30px;
  font-weight: 400;
  color: #535353;
  font-size: 18px;
}

.page-template-template-direct-seller .ds-hero__content p:last-of-type {
  margin-bottom: 20px;
}

.dsl-hero__grid .dsl-hero__content .dsl-hero__cta,
.page-template-template-direct-seller .ds-hero__content .dsl-hero__cta {
  font-size: 12px;
  padding: 18px 14px;
  display: block;
  width: max-content;
  background-color: #363636;
  color: #e6e6e6;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .dsl-hero__grid {
    align-items: center;
  }

  .dsl-hero__image {
    height: min-content;
  }
}

@media (max-width: 767px) {
  .dsl-hero__grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .dsl-hero__content,
  .dsl-hero__image {
    width: 100%;
  }
}

/* END - Landing Page Hero Section */

/* START - Direct Seller Benefits Section */

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.benefit-card {
  position: relative;
  width: 308px;
  height: 308px;
  background-color: #dee6fa;
  border-radius: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-start;
}

.benefits-grid .benefit-card .benefit-card__img img {
  margin-bottom: 0;
  max-width: 240px;
}

.benefits-grid .benefit-card .benefit-card__label {
  position: absolute;
  top: 0;
  padding: 30px;
  font-size: 18px;
  text-align: center;
  color: #363636;
  font-family: 'simula';
  line-height: 26px;
}

@media (max-width: 1399px) {
  .benefit-card {
    width: 264px;
  }
}

@media (max-width: 1199px) {
  .benefit-card {
    width: 308px;
  }
}

/* END - Direct Seller Benefits Section */


/* START - Recommendations Section */

.recommendation-card-section .recommendation-card {
  justify-content: center;
  text-align: center;
}

.recommendation-card-section .recommendation-card .card-overlay {
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 10%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.recommendation-card-section .recommendation-card .text-content {
  max-width: unset;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 40px;
}

.recommendation-card-section .recommendation-card .text-content h2 {
  max-width: unset;
}

.recommendation-card-section .recommendation-card .text-content .wysiwyg-content p {
  width: 100%;
  font-size: 18px;
  font-weight: 100;
}

/* END - Recommendations Section */

/* START - Header */

.page-template-template-direct-seller .mobile-and-search-menu .cta-button,
.page-template-template-direct-seller-landing .mobile-and-search-menu .cta-button {
  background: #fff;
}

.page-template-template-direct-seller .mobile-and-search-menu .cta-button:hover,
.page-template-template-direct-seller-landing .mobile-and-search-menu .cta-button:hover {
  background: #363636;
}

.page-template-template-direct-seller .mega-menu-header.top-nav-fixed .mobile-and-search-menu .cta-button,
.page-template-template-direct-seller-landing .mega-menu-header.top-nav-fixed .mobile-and-search-menu .cta-button {
  background: #363636;
  color: #fff;
}

.page-template-template-direct-seller .mega-menu-header.top-nav-fixed .mobile-and-search-menu .cta-button:hover,
.page-template-template-direct-seller-landing .mega-menu-header.top-nav-fixed .mobile-and-search-menu .cta-button:hover {
  background: #000;
}

/* END - Header */

/* START - How It Works Section */

.how-it-works-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.how-it-works-card {
  width: 180px;
}

.how_it_works_card .section-title {
  margin-bottom: 40px;
}

.how-it-works-card__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #EEEEEE;
  background: linear-gradient(154deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 35%, rgba(186, 205, 255, 1) 100%);
  margin-bottom: 40px;
  padding: 30px;
}

.how-it-works-card__img img {
  width: 100%;
}

.how-it-works-card__label {
  text-align: center;
  font-weight: 600;
  color: #535353;
  margin-bottom: 20px;
  font-size: 12px;
}

.how-it-works-card__desc {
  text-align: center;
  font-size: 18px;
  color: #535353;
}

/* END - How It Works Section */

/* START - FAQ Section */

.page-template-template-direct-seller .faq-section .faq-title-wrapper h2,
.page-template-template-direct-seller-landing .faq-section .faq-title-wrapper h2 {
  max-width: 280px;
  margin-bottom: 60px;
}

/* END - FAQ Section */

/* START - Direct Seller Signup Modal */

html.ds-modal-open {
  overflow: hidden;
}

#directSellerSignupModal .ds-step {
  display: none;
}

#directSellerSignupModal .ds-step.active {
  display: block;
}

.progress {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  border-radius: 0;
  height: 10px;
  background-color: #bbbbbb;
}

.progress-bar {
  background-color: #535353;
}

.direct-seller-signup-modal {
  padding-right: 0 !important;
}

.direct-seller-signup-modal .modal-dialog .modal-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  max-width: none;
  background-clip: initial;
  border: none;
}

.direct-seller-signup-modal .modal-dialog .modal-content .modal-body {
  background-color: #e5e5e5;
}

.direct-seller-signup-modal .signup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  margin-bottom: 20px;
}

.direct-seller-signup-modal .back-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.direct-seller-signup-modal .back-btn svg {
  min-width: 24px;
  border-radius: 500px;
  border: 2px solid #737373;
  padding: 5px;
  height: auto;
}

.direct-seller-signup-modal .logo img {
  height: 25px;
  width: auto;
}

.direct-seller-signup-modal .exit-btn .close-btn {
  background-color: transparent;
  border: none;
  color: #363636;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.direct-seller-signup-modal .step-label {
  color: #535353;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.direct-seller-signup-modal .form-control {
  border: none;
  border-bottom: 1px solid #838383;
  padding: 18px 0 4px 0;
  font-size: 12px;
  background: transparent;
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 0;
}

.direct-seller-signup-modal .form-control:focus {
  outline: none;
  box-shadow: none;
}

.direct-seller-signup-modal .form-control::after {
  display: block;
  content: " ";
  transform: scale(0);
}

.error .form-control {
  border-bottom-color: #b10f0f;
}

.direct-seller-signup-modal .ds-step#ds-step-2.active {
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -180px;
}

.direct-seller-signup-modal .ds-step form {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.direct-seller-signup-modal .ds-step form button {
  background: var(--color-dark-gray);
  color: var(--color-white);
  display: inline-block;
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-weight: 100;
  border-radius: 100px;
  transition: background-color .3s, color .3s;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding-left: 5rem;
  padding-right: 5rem;
  margin-top: 80px;
}

#dsTermsModal .modal-dialog {
  backdrop-filter: blur(10px);
}

#dsTermsModal .modal-content {
  max-width: 900px;
  padding: 100px 34px 0 34px !important;
}

#dsTermsModal .modal-content #ds-terms-body {
  max-height: 50vh;
  margin: 0 10px;
  margin-top: 80px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

#dsTermsBody {
  scrollbar-width: auto;
  max-height: 50vh;
  padding: 0 120px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  text-align: left;
}

#dsTermsBody::before,
#dsTermsBody::after {
  content: "";
  position: sticky;
  display: block;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .15s ease;
  height: 200px;
  width: 110%;
  margin-left: -10px;
}

#dsTermsBody::before {
  top: 0;
  margin-top: -200px;
  background: linear-gradient(to bottom, #fff, rgba(255,255,255,0));
}

#dsTermsBody::after {
  bottom: 0;
  margin-top: -200px;
  background: linear-gradient(to top, #fff, rgba(255,255,255,0));
}

#dsTermsBody.has-fade-top::before {
  opacity: 1;
}

#dsTermsBody.has-fade-bottom::after {
  opacity: 1;
}

#dsTermsBody::-webkit-scrollbar {
  width: 10px;
}

#dsTermsBody::-webkit-scrollbar-track {
  background: #E2E2E2;
  border-radius: 999px;
}

#dsTermsBody::-webkit-scrollbar-thumb {
  background: #535353;
  border-radius: 999px;
}

#dsTermsBody::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}

#dsTermsBody::-webkit-scrollbar-button {
  display: none;
}

#dsTermsModal .btn-close {
  font-size: 8px;
  padding: 4px;
  margin: 30px;
  position: absolute;
  top: 0;
  right: 0;
}

.accept-button {
  display: flex;
  color: #e6e6e6;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  height: 38px;
  width: fit-content;
  min-width: 178px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  background: rgb(54 54 54);
  letter-spacing: 1.5px;
  margin: 40px auto;
}

.accept-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.accept-button.disabled:hover {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  transform: none;
}

.bundles-section {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 100px;
}

.bundles-section-title {
  font-family: 'Simula';
  text-align: left;
  font-size: 24px;
  margin-bottom: 10px;
}

.bundle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bundle-image {
  height: 644px;
  width: 644px;
  background-color: #eeeeee;
  margin-bottom: 40px;
}

.bundles-section.men-bundles .bundle-image {
  background-color: #2b2b2b;
}

.bundle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bundle-info {
  position: relative;
  text-align: left;
}

.bundle-info .bundle-name {
  font-family: 'Simula';
  font-size: 24px;
  color: #363636;
}

.bundle-info .bundle-subtitle {
  color: #737373;
  margin-bottom: 30px;
}

.bundle-info .bundle-price {
  color: #737373;
}

.select-bundle-btn {
  position: absolute;
  top: 0;
  right: 0;
  text-transform: uppercase;
  height: 50px;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 300;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 100px;
  background-color: #363636;
  color: #fff;
  font-family: "Basis Grotesque", sans-serif;
  border: none;
}

.select-bundle-btn:hover {
  background-color: #000;
  color: #fff;
}

/* END - Direct Seller Signup Modal */
