/* Hide sub menus on mobile, display on click or tap | 6567775-zen bb */
 
@media only screen and (max-width: 559px) {
.wp-block-navigation li.has-child ul.wp-block-navigation__submenu-container {
    display: none;
}
 
.wp-block-navigation li.has-child:hover > ul.wp-block-navigation__submenu-container {
    display: block;
}
}
/* decrease the price font size in grouped product SS-6618271*/
.wp-block-add-to-cart-form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item__price del,  .wp-block-add-to-cart-form .woocommerce-grouped-product-list .woocommerce-Price-amount.amount {
   font-size: 20px;
}
/* Change join us now button styling to match with add to cart button */  
.woocommerce div.product form.cart button.single_add_to_cart_button, .woocommerce div.product form.cart button[name=add-to-cart] {
   background-color: #f571b1;
   padding: 10px;
   border: none;
   border-radius: 20px;
   color: #fff;
   font-size: 16px  
}
/* Override CSS from Sensei to get the custom logo width | -zen JA*/
.sensei-course-theme .wp-block-site-logo img {
    max-height: inherit;
}
/* Customize Learning Mode Colors */
body {
    --sensei-secondary-color: #f571b1;
    --sensei-course-progress-bar-inner-color: #f571b1;
    --wp--custom--form--border--color: #efefef;
}
/** Update the font-size value here to the desired value for the Course Navigation block **/
nav.sensei-lms-course-navigation.wp-block-sensei-lms-course-navigation li {
    font-size: 18px;
}

/** Update the font-size value here to the desired value for the Lesson Actions block. **/
.sensei-course-theme-lesson-actions.wp-block-sensei-lms-course-theme-lesson-actions button.wp-element-button {
    font-size: 18px;
}
css
.meraki-menu li.menu-item-has-children:hover > ul {
    display: none;
}

.meraki-menu li.menu-item-has-children:focus-within > ul {
    display: block;
}
/* Ensure proper padding around mobile menu items | 7351003-zen JP */
@media only screen and (max-width: 599px) {
    ul.wp-block-navigation__container.has-background {
        padding: 1.25em 2.375em;
    }
}
/* Set the single product upsells to display 2 per row  | 8044392-zen RB */

@media (max-width: 600px) {
.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}


/* 8971272-zd | Fixing menu background color issue | Sabbir A */
.wp-block-navigation.has-background .wp-block-navigation__submenu-container {
  background-color: #FFFFFF !important;
  border: 1px solid #F571B1;
}

@media only screen and (max-width: 559px) {
    .wp-block-navigation li.has-child:hover > ul.wp-block-navigation__submenu-container {
        border-right: 1px solid black !important;
    }
	.wp-block-navigation-item__label {
    font-size: 14.811px !important;
  }
}

/* center product image blocks | 8996397-zen */
.wc-block-components-product-image img {
	display: block;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-currency-switcher .currency-switcher-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
/* Stack the label and dropdown vertically */
.woocommerce-currency-switcher .wcml_currency_switcher {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.95em; /* Make the whole converter slightly smaller */
  margin-bottom: 0.5em;
}

/* Space between label and dropdown */
.woocommerce-currency-switcher .wcml_currency_switcher label {
  margin-bottom: 4px;
}

/* Disclaimer styling */
.woocommerce-currency-switcher small,
.currency-disclaimer {
  font-size: 0.8em;
  color: #666;
  display: block;
  margin-top: 4px;
}

