.btn-stripe {
  background: #ffc439;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.btn-stripe:hover {
  background: #ffc439;
  box-shadow:
    0 7px 14px rgba(50, 50, 93, 0.1),
    0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn-stripe:active {
  background: #ffc439;
  transform: translateY(0);
}

.btn-stripe svg {
  flex-shrink: 0;
  width: 50px;
  margin-right: 5px;
}

/* * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body {
        background: #0f172a;
        color: #fff;
    } */

/* SECTION */
/* SECTION */
.class-section {
  background: #0b0f14;
  color: #fff;
  padding: 60px 40px;
  /* LEFT & RIGHT MARGIN EFFECT */
}

/* TITLE */
.class-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* GRID */
.class-section .class-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 30px; */
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .class-section {
    padding: 60px 30px;
  }
}

@media (max-width: 992px) {
  .class-section .class-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .class-section .class-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .class-section {
    padding: 50px 20px;
  }
}

@media (max-width: 576px) {
  .class-section .class-grid {
    grid-template-columns: 1fr;
  }

  .class-section {
    padding: 40px 15px;
  }
}

/* CARD */
.class-section .class-card {
  background: #111 !important;
  border-radius: 6px;
  padding: 15px;
  /* text-align: center; */
  margin-bottom: 4rem;
  margin-right: 1rem;
}

/* IMAGE */
.class-section .class-img {
  background: #fff;
  height: 300px;
  border-radius: 4px;
  margin-bottom: 15px;
  width: 100%;
}

/* TEXT */
.class-section .class-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
  text-align: left;
}

/* BUTTON */
.class-section .btn-orange {
  background: #ffc439;
  color: #fff;
  padding: 8px 23px;
  font-size: 16px;
  /* border-radius: 3px; */
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
  margin-top: 10px;
  width: 100%;
}

.class-section .btn-orange:hover {
  background: #ffae42;
}

.class-section .class-price {
  color: #f7941d;
  font-weight: 600;
  margin-bottom: 6px;
}

.class-section .price-wrpper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.class-section .class-time {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.class-section #subscription-form {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* PAGINATION */
/* Pagination Styles */
.class-section .pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 8px;
  font-family: Arial, sans-serif;
}

.class-section .pagination a,
.class-section .pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Hover effect */
.class-section .pagination a:hover {
  background-color: #f7941d;
  color: #fff;
  border-color: #f7941d;
}

/* Current page */
.class-section .pagination .current {
  background-color: #f7941d;
  color: #fff;
  border-color: #f7941d;
  font-weight: bold;
}

/* Prev/Next buttons */
.class-section .pagination .prev,
.class-section .pagination .next {
  font-weight: bold;
}

/* Disabled state */
.class-section .pagination .disabled {
  color: #aaa;
  border-color: #eee;
  cursor: not-allowed;
}

.class-section .scs-email-input {
  color: #000;
}

.class-section #cross-btn {
  background-color: #f7941d;
  border: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 77px;
  right: 10px;
  transition: color 0.3s ease;
  padding: 3.5px 15px;
}

.class-section #cross-btn:hover {
  /* color: #000; */
  background-color: #ffae42;
  /* Orange hover color */
}

/* .paypal-subscribe-btn {
                        min-height: 45px;
                    } */

.class-section .pp-loading {
  font-size: 14px;
  color: #fff;
}

/* #cross-btn:hover {
                        position: relative;
                    } */

.single-class-wrapper .btn-stripe {
  background: #ffc439;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.single-class-wrapper .btn-stripe:hover {
  background: #ffc439;
  box-shadow:
    0 7px 14px rgba(50, 50, 93, 0.1),
    0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.single-class-wrapper .btn-stripe:active {
  background: #ffc439;
  transform: translateY(0);
}

.single-class-wrapper .btn-stripe svg {
  flex-shrink: 0;
  width: 50px;
  margin-right: 5px;
}

.single-class-wrapper .class-single-wrapper {
  /* background: radial-gradient(circle at top, #1c1c1c, #0b0b0b); */
  /* padding: 40px 60px; */
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* BREADCRUMB */
.single-class-wrapper .class-breadcrumb {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

.single-class-wrapper .single-class-wrapper .class-breadcrumb span {
  color: #fff;
  font-weight: 500;
}

/* MAIN LAYOUT */
.single-class-wrapper .single-class-wrapper .class-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* IMAGE BOX */
.single-class-wrapper .single-class-wrapper .class-image {
  background: #fff;
  /* padding: 40px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-class-wrapper .class-image img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.single-class-wrapper .class-details {
  padding-top: 10px;
}

/* TITLE */
.single-class-wrapper .class-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* PRICE */
.single-class-wrapper .class-price {
  font-size: 18px;
  font-weight: 600;
  color: #ff9800;
  margin-bottom: 20px;
}

/* ACTIONS */
.single-class-wrapper .class-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.single-class-wrapper .class-actions input {
  width: 60px;
  padding: 8px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  text-align: center;
}

.single-class-wrapper .class-actions #cross-btn {
  background: #ffc439;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  /* width: 100%; */
}

.single-class-wrapper .class-actions #cross-btn:hover {
  background: #e56d00;
}

/* CATEGORY */
.single-class-wrapper .class-category {
  font-size: 14px;
  color: #aaa;
}

.single-class-wrapper .class-category span {
  color: #ff9800;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .single-class-wrapper .class-layout {
    grid-template-columns: 1fr;
  }

  .single-class-wrapper .class-image {
    padding: 20px;
  }

  .single-class-wrapper .class-title {
    font-size: 28px;
  }
}

.single-class-wrapper .related-classes {
  /* padding: 80px 60px; */
  /* background: radial-gradient(circle at top, #1c1c1c, #0b0b0b); */
  color: #fff;
}

.single-class-wrapper .related-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
  font-family: "Protest Strike", sans-serif;
}

/* GRID */
.single-class-wrapper .related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.single-class-wrapper .related-card {
  text-align: left;
}

/* IMAGE */
.single-class-wrapper .related-image {
  display: block;
  background: #f5f7f5;
  /* padding: 40px; */
  margin-bottom: 20px;
}

.single-class-wrapper .related-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* TITLE */
.single-class-wrapper .related-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-class-wrapper .related-name a {
  color: #fff;
  text-decoration: none;
}

/* PRICE */
.single-class-wrapper .related-price {
  font-size: 18px;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 20px;
}

/* BUTTON */
.single-class-wrapper .related-btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.single-class-wrapper .related-btn:hover {
  background: #e58900;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .single-class-wrapper .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .single-class-wrapper .related-grid {
    grid-template-columns: 1fr;
  }

  .single-class-wrapper .related-classes {
    padding: 60px 20px;
  }
}

.single-class-wrapper .class-tabs-section {
  /* background: radial-gradient(circle at top, #1c1c1c, #0b0b0b); */
  /* padding: 60px; */
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* TAB HEADER */
.single-class-wrapper .tabs-header {
  display: flex;
  border-bottom: 1px solid #ff9800;
  margin-bottom: 30px;
}

/* TAB BUTTON */
.single-class-wrapper .tab-btn {
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

/* ACTIVE TAB */
.single-class-wrapper .tab-btn.active {
  background: #ff9800;
  color: #fff;
  border-radius: 4px 4px 0 0;
}

/* TAB CONTENT */
.single-class-wrapper .tabs-content {
  max-width: 1000px;
}

.single-class-wrapper .tab-panel {
  display: none;
}

.single-class-wrapper .tab-panel.active {
  display: block;
}

.single-class-wrapper .tab-panel h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.single-class-wrapper .tab-panel p {
  font-size: 15px;
  line-height: 1.7;
  color: #dcdcdc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .single-class-wrapper .class-tabs-section {
    padding: 40px 20px;
  }
}

.single-class-wrapper #cross-btn {
  background-color: #ffc439;
  border: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 77px;
  right: 10px;
  transition: color 0.3s ease;
  padding: 4.5px 15px;
}

.single-class-wrapper #cross-btn:hover {
  /* color: #000; */
  background-color: #ffc439;
  /* Orange hover color */
}

.single-class-wrapper .btn-orange {
  background: #ffc439;
  color: #fff;
  padding: 8px 12px;
  font-size: 16px;
  /* border-radius: 3px; */
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
  margin-top: 10px;
  width: 100%;
}

.single-class-wrapper .btn-orange:hover {
  background: #ffae42;
}

.single-class-wrapper .mainclass-btn {
  width: 100%;
}

.single-class-wrapper .mainclass-btn .scs-subscribe-btn {
  width: 76%;
}

.single-class-wrapper .mainclass-btn #cross-btn {
    width: 50px;
    padding: 5px 0;
    top: 0;
    left: calc(100% + 20px);
}

.single-class-wrapper .mainclass-btn .scs-email-input {
  width: 96%;
  color: #fff !important;
}

.single-class-wrapper .paypal-subscribe-btn {
  width: 100% !important;
}

.single-class-wrapper .pp-loading {
  font-size: 14px;
  color: #fff;
}
