/**
 * Main CSS.
 *
 * @package wp-theme-boilerplate
 * @author Store Boost Kit <storeboostkit@gmail.com>
 * @version 1.0
 */

/** 
 * ------------------------------
 *  Header 
 * ------------------------------
*/
/* .home .header-wrapper {
  position: absolute;
  width: 100%;
  z-index: 9;
} */

.header {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

/* .home .header {
  margin: 32px 0 0 0;
} */

.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-element-wrapper {
  display: flex;
  gap: 12px;
}

.header .menu-title,
.header .menu-close-icon {
  display: none;
}

.header-element-wrapper .mobile-nav {
  display: none;
  background: var(--color-light-bg);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
}

.mobile-nav > span {
  font-size: clamp(20px, 4vw, 28px);
  cursor: pointer;
}

.header .menu-close-icon {
  position: absolute;
  top: 50px;
  right: 30px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--color-light-bg);
  border-radius: 50px;
  cursor: pointer;
}

.header .menu-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  margin: 0 0 24px 0;
}


.header ul.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-menu > li {
  margin: 0;
  padding: 0;
  position: relative;
}

.main-menu > li > a {
  display: inline-block;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--color-heading);
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* .home .main-menu > li > a {
  color: #fff;
} */

.main-menu li > a:hover,
.main-menu li.current-menu-item > a {
  color: var(--color-primary);
}

/* Hide submenu by default */
.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 2px 2px 0 #00000010;
  border-radius: 12px;
  padding: 10px 0;
  z-index: 1000;
}

/* Show submenu on hover */
.menu-item-has-children:hover .sub-menu {
  display: block;
}

/* Submenu items styling */
.sub-menu li {
  list-style: none;
}

.sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Optional: Add smooth transition effect */
.menu-item-has-children .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.apply-overlay main:after {
  position: fixed;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: '';
  cursor: pointer;
}

/* === Avatar === */
.my-profile-element-wrapper {
  background: var(--color-light-bg);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
}

.my-profile-element-wrapper:hover .my-profile-dropdown {
  opacity: 1;
  visibility: visible;
}

.my-profile-element-wrapper > span {
  font-size: 28px;
  cursor: pointer;
}

.my-profile-dropdown {
  position: absolute;
  right: -10px;
  top: 40px;
  width: 220px;
  background: #fff;
  border: var(--border-dark);
  border-radius: 12px;
  max-width: 240px;
  padding: 20px 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}

.my-profile-dropdown p {
  margin: 0;
}

.my-profile-dropdown-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 12px 0;
}

.my-profile-dropdown img {
  border-radius: 50px;
}

.my-profile-dropdown .profile-link {
  font-size: 14px;
}

/** 
 * ------------------------------
 *  Content Area 
 * ------------------------------
*/

.main-wrapper {
  margin: 60px 0;
}

/** 
 * ------------------------------
 *  My Account
 * ------------------------------
*/

/* === Table === */

#edd_user_history,
#edd_sl_license_keys {
  border-bottom: none;
  border-top: 1px solid var(--border-light);
  text-align: left;
  width: 100%;
  border-spacing: 0;
}

#edd_user_history td,
#edd_user_history th,
#edd_sl_license_keys td,
#edd_sl_license_keys th {
  border-bottom: var(--border-light);
  border-top: none;
  padding: 3px 5px;
  text-align: left;
}

/* === Button === */
#edd-purchase-button,
.edd-submit,
[type=submit].edd-submit {
  border: 0;
}

/* === Tab === */
.my-account-header {
  margin: 80px 0 0 0;
}

.my-account-header .welcome-text {
  font-family: var(--font-primary);
  font-weight: var(--fw-semi-bold);
  font-size: var(--fs-xxl);
  margin: 0;
}

.my-account-tabs-nav {
  margin: 40px 0 0 0;
}

.my-account-tabs-nav ul {
  display: flex;
}

.my-account-tabs-nav li a {
  padding: 16px 32px;
  background: var(--color-light-bg);
}

.my-account-tabs-nav li:first-child a {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.my-account-tabs-nav li:last-child a {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.my-account-tabs-nav li a.active {
  border-bottom: var(--border-dark);
  color: var(--color-primary);
  border-color: var(--color-primary);
  border-width: 2px;
}

.my-account-tabs-content > div {
  display: none;
}

.my-account-tabs-content > div.active {
  display: block;
}

.my-account-tabs-content {
  margin: 40px 0 0 0;
}


/* === Download Tab === */
#edd_user_history th {
  background: none;
  font-weight: var(--fw-semi-bold);
}

/* === Profile Tab === */
#edd_profile_editor_form fieldset {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: var(--border-light);
  padding: 0px 0 8px 0;
  margin: 24px 0 0 0;
}

#edd_profile_editor_form fieldset:last-child {
  border-bottom: 0;
}

#edd_profile_editor_form fieldset legend {
  font-weight: var(--fw-semi-bold);
  margin: 0 0 12px 0;
}

#edd_profile_editor_form fieldset > p {
  width: 49%;
  margin: 0 0 20px 0;
}

#edd_profile_editor_form fieldset p:nth-last-child(2n+1) {
  margin: 0;
}

/* === Login/Register Form === */
.my-account-form-wrapper,
.reset-password-form-wrapper {
  width: 400px;
  min-height: 460px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
}

.my-account-form-wrapper p,
.reset-password-form-wrapper p {
  text-align: left;
}

.my-account-form-wrapper input[type="submit"] {
  width: 100%;
}

.my-account-form-wrapper .edd-lost-password,
.my-account-form-wrapper legend + p,
.reset-password-form-wrapper legend + p {
  text-align: center;
}

.login-form-wrapper,
.register-form-wrapper {
  display: none;
  width: 100%;
}

.login-form-wrapper.active,
.register-form-wrapper.active {
  display: block;
}

#edd_login_form legend,
#edd_register_form legend,
.reset-password-form-wrapper legend {
  font-size: 21px;
  margin-bottom: 1em;
}

.reset-password-form,
.request-reset-form {
  width: 100%;
}

/** 
 * ------------------------------
 *  Downloads 
 * ------------------------------
*/

.edd_download {
  border: var(--border-dark);
  padding: 40px;
  border-radius: 24px;
}

.edd_downloads_list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.edd_download_image {
  width: 80px;
}

.edd_download_image img {
  border-radius: 16px;
}

.edd_download_title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  margin: 16px 70px 32px 0;
}

.edd_download .edd_price {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi-bold);
  text-align: right;
  margin: 32px 0 0 0;
}

/** 
 * ------------------------------
 *  Single Downloads 
 * ------------------------------
*/

.single-download article {
  margin: 60px 0 0 0;
}

.download-banner img {
  border-radius: 16px;
}

.download-content {
  margin: 60px 0;
}

.purchase-box {
  border: var(--border-dark);
  border-radius: 24px;
  padding: 32px;
  margin: 0 0 32px 0;
}

.attributes-box {
  background: var(--color-light-bg);
  border-radius: 24px;
  padding: 32px;
  margin: 0 0 32px 0;
}

.purchase-box-title {
  font-size: var(--fs-md);
  margin: 0;
}

.single-download .edd_download_purchase_form {
  margin: 16px 0 24px 0;
}

.purchase-box .price {
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
}

.purchase-box li {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px 0;
}

.purchase-box li span {
  font-size: 20px;
}

.purchase-box .edd-submit.button.blue {
  font-weight: var(--fw-medium);
  color: var(--color-bg);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  width: 100%;
  padding:0.6em 0;
  font-size: var(--fs-md);
}

.related-downloads {
  margin: 80px 0;
}

.download-cards {
  margin: 40px 0 0 0;
}

.attributes-box > ul > li {
  margin: 0 0 12px 0;
}

.attribute-title {
  font-weight: var(--fw-medium);
}

.edd-cart-added-alert svg {
  display: none !important;
}

/* === Accordion === */

.accordion-wrapper h3 {
  font-size: var(--fs-xl);
}
.accordion-item {
	padding: 8px 0 0 0;
}

.accordion-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  border-bottom: var(--border-dark);
  padding: 0 0 8px 0;
  margin: 0 0 8px 0;
  cursor: pointer;
}

.accordion-content {
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* === FAQ === */
.single-download .accordion-content {
  padding: 20px 0;
}

.faq .accordion-title {
  font-size: var(--fs-md);
}

/* === Changelogs === */

.changelog {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-sm, 0.875rem);
  line-height: 1.6;
  white-space: pre-wrap;
  position: relative;
}

.changelog span::before {
  font-weight: bold;
  display: inline-block;
  margin-right: 0.5rem;
}

/** 
 * ------------------------------
 *  Pricing Page 
 * ------------------------------
*/

/* === Pricing Plan === */
.pricing-plan-wrapper {
  flex-wrap: nowrap;
  gap: 32px;
}

.pricing-plan {
  border: var(--border-dark);
  padding: 32px;
  border-radius: 24px;
  height: 100%;
}

.pricing-plan .plan-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  margin: 0;
}

.pricing-plan .plan-desc {
  margin: 0 0 24px 0;
}

.pricing-plan .price {
  font-size: var(--fs-xxl);
  font-weight: var(--fw-medium);
}

.pricing-plan .plan-features {
  margin: 32px 0 0 0;
}

.pricing-plan .plan-features li {
  margin: 0 0 8px 0;
}

/* === Trust Box === */
.icons-box-wrapper {
  margin: 60px 0;
}

.icons-box {
  display: flex;
  gap: 12px;
}

.trust-main-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);  
  text-align: center;
}

.icons-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
}

.icon span {
  font-size: 32px;
}

/** 
 * ------------------------------
 *  Footer 
 * ------------------------------
*/

.footer-wrapper {
  padding: 60px 0;
}

.footer-inner {
  display: flex;
}

.footer-logo-wrapper {
  width: 400px;
}

.footer-widgets-wrapper {
  width: 100%;
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
}

.footer-widgets .widget-title {
  font-weight: var(--fw-semi-bold);
  font-size: var(--fs-lg);
}

/** 
 * ------------------------------
 *  Document Page 
 * ------------------------------
*/
.doc-toc-container {
  max-width: 1140px;
}

.doc-toc {
	position: sticky;
	top: 100px;
	padding: 32px;
	margin: 20px 0 100px 0;
	border: var(--border-dark);
	border-radius: 24px;
}

.doc-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.doc-toc li {
	margin: 6px 0;
}

.doc-toc a {
	color: var(--color-heading);
}

.doc-toc a:hover {
  color: var(--color-primary);
}

.doc-content {
  padding: 0 0 0 10px;
}

html {
  scroll-behavior: smooth;
}

.doc-toc a.active {
  color: var(--color-primary);
}

/** 
 * ------------------------------
 *  Shortcodes 
 * ------------------------------
*/

/* === Icon Card === */

.iconcard {
  display: flex;
  gap: 8px;
  margin: 0 0 28px 0;
}

.iconcard .icon span {
  font-size: 32px;
}

.iconcard .text {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
}

/* === Highlight Text === */

.highlight-text {
  padding: 8px 12px;
  background: #fff;
  border: var(--border-dark);
  display: inline-block;
  border-radius: 8px;
}

/* === Product Card === */

.product-card {
  background: #fff;
  border: var(--border-dark);
  padding: 24px;
  border-radius: 16px;
  float: left;
  width: 100%;
  cursor: pointer;
  margin: 0 0 28px 0;
}

.product-card .icon {
  background: var(--color-primary);
  border-radius: 8px;
  width: 60px;
  height: 60px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px 0 0;
}

.product-card .icon img {
  border-radius: 8px;
}

.product-card .text {
  font-size: 16px;
  font-weight: var(--fw-medium);
  margin: 4px 0 0 0;
}

/* === Highlight Box === */

.highlight-box {
  border-radius: 40px;
  background: var(--color-light-bg);
  padding: 60px 80px;
}

.highlight-box.white {
  border: var(--border-dark);
  background: none;
}

.highlight-box .row {
  justify-content: space-between;
  align-items: center;
}

/* === Callout === */

.callout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 48px;
  border: 1px solid;
  border-radius: 24px;
  align-items: center;
  gap: 2%;
}

.callout > div:first-child {
  width: 76%;
}

.callout > div:last-child {
  width: 22%;
}

/* === Contact Form 7 === */

.wpcf7-form-control-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 0 0 24px 0;
}

.wpcf7 label span {
  color: var(--color-danger);
  padding: 0 0 0 4px;
}

.error-page-content {
  margin: 40px 0 0 100px;
}

.error-page-content p {
  margin: 0 0 40px 0;
}

.error404 h1  {
  font-size: var(--fs-xxl);
}

/* === Validation Form === */
#validation-form {
  display: flex;
  justify-content: center;
  margin: 0 0 12px 0;
}

.validation-form-wrapper {
  text-align: center;
}

.validation-form-wrapper [name="email"] {
  width: 70%;
  height: 56px;
}

#validation-form button {
  margin: 0 0 0 -8px;
  padding: 12px 20px;
  width: 180px;
}

/** 
 * ------------------------------
 *  Subscribe Form 
 * ------------------------------
*/

#more-tools-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

#more-tools-subscribe-form {
  background: #fff;
  text-align: center;
  max-width: 90%;
  width: 420px;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  z-index: 9999;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  animation: fadeInScale 0.3s ease;
}

#more-tools-subscribe-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

#more-tools-subscribe-form #more-tools-subscribe-title span {
  font-size: 1rem;
}

#more-tools-subscribe-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border: var(--border-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

#more-tools-subscribe-form button {
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#more-tools-subscribe-form span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-align: center;
}

@keyframes fadeInScale {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

#more-tools-subscribe-form .close-popup {
  position: absolute;
  right: 20px;
  top: 8px;
  font-size: 1.5rem;
  cursor: pointer;
}

#slicewp-affiliate-register-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.slicewp-field-wrapper {
  width: 49%;
}

.slicewp-field-wrapper[data-type="textarea"] {
  width: 100%;
}

#slicewp-affiliate-login-form {
  max-width: 400px;
  margin: 0 auto;
}

#slicewp-affiliate-login-form .slicewp-field-wrapper {
  width: 100%;
}

#slicewp-affiliate-login-form .slicewp-button-primary {
  display: block;
  width: 100%;
}

/** 
 * ------------------------------
 *  Blog Page
 * ------------------------------
*/
.blog h1 {
  text-align: center;
  font-size: var(--fs-xxl);
  margin: 0 0 12px 0;
}

.blog .col-4 {
  margin: 0 0 32px 0;
}

.blog article {
  border: var(--border-dark);
  padding: 32px;
  border-radius: 16px;
}

.blog article h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  margin: 0 0 12px 0;
}

.blog article li span,
.single-post .post-header li span {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: var(--color-heading);
  display: inline-block;
}

.blog article p {
  margin: 0;
}

.blog article img {
  margin: 0 0 24px 0;
  border-radius: 12px;
}

.page-description {
  font-size: var(--fs-md);
  text-align: center;
  margin: 0 0 60px 0;
}

/** 
 * ------------------------------
 *  Single Post
 * ------------------------------
*/

.single-post article {
  max-width: 1400px;
  margin: 0 auto;
}

.single-post .post-header {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

.single-post article .post-header ul {
  justify-content: center;
  margin: 0 0 40px 0;
}

.single-post .post-header h1 {
  font-size: 62px;
  margin: 0 0 8px 0;
}

.single-post .post-content {
  max-width: 800px;
  margin: 0 auto;
}

.single-post article h2 {
  margin: 0 auto 12px auto;
  font-size: 28px;
}

.single-post article img {
  border-radius: 24px;
  margin: 0 0 52px 0;
  display: inline-block;
}

.single-post .post-content p,
.single-post .post-content a,
.single-post .post-content li {
  font-size: 18px;
}

.single-post .post-content ol {
  list-style: initial;
  list-style-type: decimal;
}

.single-post .post-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.single-post table {
    border-collapse: collapse;
}

.single-post .post-content td {
    border: 1px solid;
    padding: 12px 24px;
    border-color: #d1d1ff70;
}

.single-post .post-content .wedocs-doc-nav a {
  color: var(--color-description);
}

.single-post .post-content .wedocs-doc-nav a:hover {
  color: var(--color-primary);
}

.single-post section {
  margin: 0 0 36px 0;
}

.single-post .table-of-contents {
    margin: 0 0 32px 0;
}



.single-post .post-content h1,
.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4,
.single-post .post-content h5,
.single-post .post-content h6 {
  margin: 0;
  margin: 0 0 16px 0;
}

.single-post .post-content ul {
  margin-bottom: 24px;
  margin-left: 1.25em;
}

.single-post .post-content ul ul {
  margin: 12px 0 28px 24px;
}

.single-post .post-content ul + h3,
.single-post .post-content ul + h4,
.single-post .post-content ol + h3,
.single-post .post-content ol + h4,
.single-post .post-content p + h3,
.single-post .post-content p + h4 {
  margin: 24px 0 12px 0;
}

.single-post .post-content h2 + h3,
.single-post .post-content h2 + h4 {
  margin: 28px 0 16px 0;
}

.single-post .post-content ul + h2,
.single-post .post-content ol + h2,
.single-post .post-content p + h2 {
  margin: 32px 0 12px 0;
}

.single-post .doc-content a {
  color: #6366F1;
  border-bottom: 1px solid;
}

.single-post h3 {
  font-size: 1.5rem;
}

.single-post p:has(+ ul),
.single-post p:has(+ ol) {
  margin: 0 0 8px 0;
}

.single-post ul + p,
.single-post ol + p {
	margin: 16px 0;
}

/* Minimal, neutral styles for inline and block code */
code {
  font-size: 18px;
  background: #fbfbff;
  padding: 0.15em 0.35em;
  border-radius: 6px;
  border: 1px solid #d8d8fe;
  line-height: 1.6;
  white-space: nowrap; /* inline code should not wrap by default */
  margin: 4px 0;
  display: inline-block;
}

pre {
  font-family: inherit;
  font-size: 0.9em;
  line-height: 1.45;
  background: #fbfbff;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #d8d8fe;
  overflow: auto;            /* horizontal scroll for long lines */
  white-space: pre;          /* preserve formatting */
  tab-size: 4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 24px 0;
  /* border: 0; */
}

/* keep code inside pre from doubling background/padding */
pre code {
  font-family: 'JetBrains Mono';
  background: transparent;
  padding: 0;
  border: none;
  display: block;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.single-post blockquote {
  font-family: inherit;
  font-size: 0.9em;
  line-height: 1.45;
  background: #f4f2ff;
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid #d1cced;
  tab-size: 4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 24px 0;
}

.single-post blockquote.warning {
  background: #fffcf2;
  border: 1px solid #ededcc;
}

.single-post blockquote p{
  margin: 0 0 0 52px;
  position: relative;
}

.single-post blockquote p::before {
  content: ''; /* This should show the word TEST */
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('../img/tips-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  /* margin-right: 10px; */
  position: absolute;
  left: -50px;
}

/** 
 * ------------------------------
 *  Blank Template
 * ------------------------------
*/
.page-template-page-blank .container {
  max-width: 1240px;
}

.page-template-page-blank .main-wrapper {
  margin: 0;
}

.edd-alert-error {
    color: var(--color-danger);
    padding: 0;	
	background: none;
    border: 0;
}

.edd-alert-error a {
    border-bottom: 1px solid;
}

#edd_checkout_form_wrap {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}


#edd_checkout_form_wrap .edd-description {
	color: #1a1a1a;
	font-size: 14px;
}

#edd_checkout_form_wrap legend.screen-reader-text {
	display: none;
}

#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__items,
#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__row-header,
#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__items,
#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__row-header,
#edd_checkout_form_wrap.wp-block-edd-checkout #edd_purchase_form .edd-blocks-form {
	border-color: #E2E8F0;
}

.edd-blocks-form__cart .edd-blocks-cart__action-remove, .edd-blocks-form__cart .edd_discount_remove {
background: none !important;
}

a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn:after {
    content: "\e90b";
    font-family: 'material-icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

.edd-receipt #edd_purchase_receipt,
.edd-receipt #edd_purchase_receipt_products {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.edd-receipt #edd_purchase_receipt + h3 {
  text-align: center;
  font-size: 24px;
  margin: 36px 0 20px 0;
  font-weight: 500;
}

.edd-receipt .edd_license_keys,
.edd-receipt .edd_license_key,
.edd-receipt .edd_purchase_receipt_files {
  display: none;
}

.edd-receipt table {
  width: 100%;
  border-collapse: collapse; /* removes gaps between borders */
}

.edd-receipt th, .edd-receipt  td {
  border: var(--border-light);
  padding: 10px;
  text-align: left;
}

.edd-receipt th {
  width: 60%;
  font-weight: 500;
}

table#edd_purchase_receipt_products .edd_purchase_receipt_product_name {
  font-weight: 400;
}

.edd_purchase_row .edd_license_key {
  display: none;
}

.edd_sl_license_row a,
.edd_sl_license_row br {
  display: none;
}

#edd_sl_license_keys td {
  padding: 0 0 16px 0;
}

.edd_sl_license_row input {
  max-width: 400px;
  margin: 24px 0 0 0;
}

.main-title {
  text-align: center;
  font-size: 36px;
}

.knowledge-base-inner {
  gap: 32px 0;
}

.product-lists-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.dropdown-inner {
  border: 1px solid;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 8px;
  cursor: pointer;
}

.dropdown-inner p {
  margin: 0;
  font-size: 18px;
}

.dropdown {
  display: none;
  position: absolute;
  background: rgb(255, 255, 255);
  width: 100%;
  padding: 24px;
  border: 1px solid rgb(26, 26, 26);
  border-top: 0;
  border-radius: 0px 0px 16px 16px;
  margin: -16px 0px 0px;
}

.dropdown li {
  font-size: 18px;
}

.dropdown li:last-child {
  margin: 0;
}

.knowledge-base-category-wrapper {
  border: 1px solid #1a1a1a;
  padding: 32px;
  border-radius: 16px;
}

.knowledge-base-category-wrapper h4 {
  margin: 0 0 24px 0;
}

.knowledge-base-wrapper {
  margin: 120px 0 0 0;
}

.knowledge-base-sidebar {
  border: 1px solid;
  padding: 28px;
  border-radius: 20px;
  position: relative;
}

.knowledge-base-dropdown-wrapper {
  position: relative;
}

.current-knowledge-base {
  border: 1px solid;
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
}

.knowledge-base-dropdown {
  width: 100%;
  padding: 24px;
  border: 1px solid #1a1a1a;
  display: none;
  position: absolute;
  border: 1px solid #1a1a1a;
  border-top: 0;
  background: #fff;
  top: 45px;
  border-radius: 0 0 8px 8px;
  z-index: 9;
}

.knowledge-base-dropdown li:last-child {
  margin: 0;
}

.knowledge-base-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.knowledge-base-posts {
  margin: 32px 0 0 0;
  position: relative;
}

.knowledge-base-dropdown-wrapper {
  position: relative;
}

#select-knowledgebase-article {
  display: none;
}

.knowledge-base-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid;
  border-bottom: 1px solid;
  align-items: center;
  padding: 16px 0;
  margin: 40px 0 0 0;
}

.knowledge-base-footer p {
  margin: 0;
}

.knowledge-base-footer p,
.knowledge-base-footer span {
  font-size: 21px;
}

.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
  margin: 0;
  margin: 0 0 16px 0;
}

.single-post ul {
  margin: 0 0 24px 0;
}

.single-post ul + h3,
.single-post ul + h4,
.single-post ol + h3,
.single-post ol + h4,
.single-post p + h3,
.single-post p + h4 {
  margin: 24px 0 12px 0;
}

.single-post ul + h2,
.single-post ol + h2,
.single-post p + h2 {
  margin: 32px 0 12px 0;
}

.single-post .doc-content a,
.single-post .knowledge-base-content a {
  color: #6366F1;
  border-bottom: 1px solid;
}

.single-post h2 {
  font-size: 1.75rem;
}

.single-post h3 {
  font-size: 1.5rem;
}

.single-post p:has(+ ul),
.single-post p:has(+ ol) {
  margin: 0 0 6px 0;
}

@media (max-width: 1440px) {
  .container {
    max-width: 94%;
  }
  
  .knowledge-base-toc {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 1240px) {
  .col-3,
  .col-4,
  .col-5 ,
  .col-7{
    width: 50%;
    max-width: 50%;
    flex: none;
  }      
}

@media (max-width: 1080px) {
  .single-knowledge_base .main-wrapper {
    margin: 0;
  }

  #select-knowledgebase-article {
    border: 1px solid;
    height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-radius: 8px;
    cursor: pointer;
  }

  .knowledge-base-toc {
    position: fixed;
    max-width: 94%;
    flex: 0 0 94%;
    width: 94%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    top: 48px;
    padding: 20px;
    z-index: 10;
  }

  .knowledge-base-posts ul {
    position: absolute;
    background: #fff;
    width: 100%;
    padding: 24px;
    border: 1px solid;
    border-radius: 0 0 8px 8px;
    border-top: 0;
    top: 40px;
    display: none;
  }

  .knowledge-base-posts ul li:last-child {
    margin: 0;
  }

  .knowledge-base-title {
    display: none;
  }

  .knowledge-base-content {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 280px 0 0 0;
  }
}

@media (max-width: 768px) {
  [class^="col-"],
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
}

/* Single Document */
.wedocs-single-wrap {
  padding: 120px 0 0 0;
}

.wedocs-shortcode-wrap.pro ul.wedocs-docs-list li.wedocs-docs-single .wedocs-doc-link a
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_parent > a,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_item > a,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_ancestor > a,
.wedocs-shortcode-wrap.pro ul.wedocs-search-input,
footer.entry-footer.wedocs-entry-footer.on .help-content .help-button #wedocs-stuck-modal {
  background: var(--color-primary);
}

.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_parent li.current_page_item > a,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_item li.current_page_item > a,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_ancestor li.current_page_item > a {
  border: 0;
  color: var(--color-heading);
  font-weight: 500;
}

.wedocs-single-search-input,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li.wd-state-open > a > .wedocs-caret,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li.wd-state-closed > a > .wedocs-caret,
.wedocs-single-wrap .wedocs-single-content,
.wedocs-single-wrap .wedocs-single-content article .entry-content img,
.wedocs-doc-nav {
  border-color: #d1d1ff70;
}

.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li.wd-state-open > a > .wedocs-caret,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li.wd-state-closed > a > .wedocs-caret {

  /* color: #eee; */
}

.wedocs-single-search-input .search-submit {
  display: none;
}

.wedocs-single-wrap .wedocs-single-content {
  width: 70%;
  padding-left: 60px;
}

#wedocs-single-doc-search-modal {
  z-index: 9999;
}

.wedocs-single-wrap .wedocs-sidebar {
  width: 30%;
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 100vh;
}

.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li ul.children {
  border: 0;
  margin: 12px 0 12px 12px;
}

footer.entry-footer.wedocs-entry-footer .feedback-content {
  width: 100%;
}

.wedocs-single-search-input .search-field,
#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-header {
  border-color: #d1d1ff70;
}

footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-feedback-wrap a.negative,
footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-feedback-wrap a.negative:hover {
  border-color: #d1d1ff70;
  color: var(--color-text) !important;
  background: #fff;
}

footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-alert {
  margin: 0;
}

footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-feedback-wrap a.positive,
footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-feedback-wrap a.positive:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}

footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-feedback-wrap {
  color: var(--color-text);
  border-color: #d1d1ff70;
  text-align: right;
}

.entry-content .wd-state-closed a {
  margin: 0 0 8px 0;
  font-size: 20px;
  border-bottom: 1px solid #d1d1ff70;
  display: inline-block;
  color: var(--color-text);
  text-decoration: none;
}

.entry-content .page_item_has_children > a {
  text-transform: uppercase;
  border: 0;
  margin: 0 0 12px 0;
  font-weight: 600;
  font-size: 18px;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result:hover .parent-doc-nav, #wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result:hover .section-doc-nav, #wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result:hover .doc-search-hit-title {
  color: var(--color-text) !important;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result:hover .doc-search-hit-icon, #wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result:hover .doc-search-hit-path {  
  background: var(--color-light-bg) !important;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result .doc-search-hit-container .doc-search-hit-content-wrapper .wd-docs-navigation .parent-doc-nav .doc-search-hit-path, #wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result .doc-search-hit-container .doc-search-hit-content-wrapper .wd-docs-navigation .section-doc-nav .doc-search-hit-path {
  background: #fff !important;
  color: var(--color-text) !important;
  border: 1px solid #d1d1ff70;
  font-weight: 500;
  padding: 4px 16px;
  font-size: 14px;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result .doc-search-hit-container .doc-search-hit-icon {
  box-shadow: none;
  background: #fff !important;
  border: 1px solid #d1d1ff70;
}

#wedocs-single-doc-search-modal path {
    stroke: var(--color-primary) !important;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result {
  box-shadow: none;
  background: #fff !important;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result .doc-search-hit-container .doc-search-hit-content-wrapper .wd-docs-navigation .parent-doc-nav,
#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result .doc-search-hit-container .doc-search-hit-content-wrapper .wd-docs-navigation .section-doc-nav,
.wedocs-single-search-input .search-field::placeholder {
  color: var(--color-text);
  font-weight: 600;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal {
  background: #fff;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result {
  box-shadow: none;
  background: #fff !important;
  border: 1px solid #d1d1ff70;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result .doc-search-hit-container .doc-search-hit-content-wrapper .doc-search-hit-title {
  color: var(--color-text);
  font-weight: 400;
  margin: 0 0 12px 0;
  font-size: 18px;
}

#wedocs-single-doc-search-modal .doc-search-container .doc-search-modal .modal-body .doc-search-dropdown-container .doc-search-hits #doc-search-list .doc-search-hit .doc-search-hit-result .doc-search-hit-container .doc-search-hit-content-wrapper hr {
  display: none;
}

.single-post .post-content .entry-content ul {
  margin-left: 0;
}

.single-post .post-content .entry-content ul ul {
  margin-left: 0;
}

/* .page_item_has_children .children li {
  font-size: 18px;
}

.page_item_has_children .children li a {
  color: var(--color-description);
} */

.page_item_has_children .children li a:hover {
  color: var(--color-primary);
}

/* Callout */
.sbk-callout {
  position: relative;
}

.callout-container {
  background-image: url('../img/callout-bg.jpg');
  max-width: 1320px;
  margin: 0 auto;
  padding: 90px 0;
  border-radius: 24px;
  text-align: center;
}

.callout-container h2 {
  font-size: clamp(24px, 4vw, 40px);
  color: var(--color-heading);
  font-weight: 600;
  margin: 0 0 16px 0;
}

.callout-container p {
 font-size: clamp(14px, 2vw, 20px);
  color: var(--color-description);
}

.callout-content {
  max-width: 720px;
  margin: 0 auto 32px auto;
}

.sbk-callout span.line {
  background: #d1d1ff70;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 100px;
  z-index: -1;
}

.btn {
  display: inline-block;
  font-weight: var(--fw-medium);
  color: var(--color-bg);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  /* Prevent text shifting during transform */
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  transform: translateZ(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
  transform: scale(1.05) translateZ(0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  filter: brightness(1.0);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.98) translateZ(0);
  filter: brightness(0.95);
  box-shadow: var(--shadow-sm);
}


/* Responsive */
@media (min-width: 1920px) {
  .container {
    max-width: 1240px;
  }
}

@media (max-width: 1600px) {
  .edd_download_title {
    margin: 16px 32px 32px 0;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 90%;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .single .post-content {
    max-width: 88%;
    margin: 0 auto;
  }
}

@media (max-width: 1280px) {
  .callout > div:first-child,
  .callout > div:last-child {
    width: 100%;
  }

  .edd_download_title {
    margin: 16px 0;
  }

  .callout {
    gap: 24px 0;
  }
}

@media (max-width: 1240px) {
  .col-3,
  .col-4,
  .col-5 ,
  .col-7{
    width: 50%;
    max-width: 50%;
    flex: none;
  }

  .highlight-box {
    padding: 48px;
    border-radius: 28px;
  }

  .product-card {
    display: block;
  }

  .footer-widgets {
    gap: 24px 0;
  }
      
}

@media (max-width: 1024px) {
  .header-element-wrapper .mobile-nav {
    display: flex;
  }

  .header-wrapper nav {
    position: fixed;
    padding: 60px 40px;
    top: 0;
    right: -290px;
    height: 100vh;
    background: #fff;
    width: 280px;
    max-width: 280px;
    z-index: 10;
    box-shadow: -1px 0px 4px 0px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease, color 0.3s ease;
  }

  .header-wrapper.mobile-nave-active nav {
    right: 0;
    transition: right 0.3s ease, color 0.3s ease;
  }

  .main-menu li {
    width: 100%;
  }

  .header .menu-close-icon {
    display: flex;
  }

  .header-wrapper .main-menu > li > a {
    padding: 0;
    display: block;
  }

  .header .menu-title {
    display: inline-block;
  }

  .main-menu {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .highlight-box .col-5 {
    width: 100%;
    max-width: 100%;
  }

  .highlight-box .col-7 img,
  .highlight-box .col-7 svg {
    display: none;
  }    
}

@media (max-width: 940px) {
  .product-card {
    display: flex;
    flex-direction: column;
    min-height: 165px;
  }

  .faq-page .space {
    margin: 0 0 40px 0 !important;
  }
}

@media (max-width: 768px) {
  [class^="col-"],
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .footer-inner {
    display: block;
  }

  .product-card {    
    display: block;
    min-height: auto;
  }

  .contact-page-wrapper .space,
  .support-page-wrapper .space,
  .pre-sale-questions-page-wrapper .space {
    display: none;
  }

  .contact-page-wrapper .wpcf7,
  .support-pge-wrapper .wpcf7,
  .pre-sale-questions-page-wrapper .wpcf7 {
    margin: 20px 0 0 0;
  }

  .slicewp-field-wrapper {
    width: 100%;
  }

  .footer-logo-wrapper {
    margin: 0 0 28px 0;
  }

  .icons-box {
    padding: 0 0 24px 0;
  }
}

@media (max-width: 640px) {
  .product-card {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .blog article ul,
  .single-post article ul {
    gap: 4px;
    margin: 0 0 14px 0;
    flex-direction: column;
  }
}

