/* xl - DESKTOP STYLES */ 
#custom-product-images .woocommerce img, #custom-product-images .woocommerce-page img {
    height: 100%;
    width: 100%;
}.about-hero-section:before{
	content:"";
	position: absolute;
	width: 100%; height: 100%;
	display: block;
	top:0;
background: linear-gradient(180deg, rgba(11, 23, 111, 0) 5.89%, rgba(11, 23, 111, 0.7) 51.36%, #0B176F 81.67%);
}

.unstylized-list li:before, li.unstylized-list , .unstylized-list li, .unstylized-list ul{
	list-style: none;
	color: inherit;
	padding-inline-start: 0 !important;
}

.unstylized-list li:before, .unstylized-list ul li:before, li.unstylized-list:before{
	display:none;
}

.ct-link-button.green-cta{
	background: #4FD1C5; 
border: none; border-radius: 1000px; box-shadow: 2px 2px 24px rgba(79,209,197,.24); 
transition: all 0.3s ease-in-out 0s; cursor: pointer; outline: none;
}

.ct-link-button.green-cta:hover{
	background: #29c1b3;
border: none; border-radius: 1000px; box-shadow: 1px 1px 8px rgba(79,209,197,.24); 
transition: all 0.3s ease-in-out 0s; cursor: pointer; outline: none;
}



.custom-akary-cart-item-content {
    padding: 0px;
	padding-top: 10px; 
    margin-bottom: 10px;
	display: flex;
		flex-direction: column;
}

.custom-akary-cart-item-content * {
	color: #637890 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.4em;
}

 #-mini-cart .custom-akary-cart-item-content {
    padding: 4px 0px 4px 40px;
}

 #-mini-cart .quantity .woocommerce-Price-amount {
	color: #637890 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.4em;
}



#-mini-cart .oxy-woo-mini-cart__flyout .woocommerce-mini-cart-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	position: relative;
}

#-mini-cart .woocommerce-mini-cart-item .quantity {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
	position: absolute;
    bottom: 0;
    right: 0;
}

#-mini-cart .woocommerce-mini-cart-item .remove {
    display:none;
}


#-mini-cart .woocommerce-mini-cart__buttons .wc-forward{
	border-color: #144be8;
	color: #144be8;
}

#-mini-cart .woocommerce-mini-cart__buttons .checkout.wc-forward{
	background: #144be8;
	color: white;
}

#-mini-cart img.size-woocommerce_thumbnail{
	width: 60px;
	height: auto;
	aspect-ratio: 1/1;
}


.oxy-woo-mini-cart__flyout{
	top: 80%  !important;
}

.searchtool-cta{
	 background: #4FD1C5;
background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
	border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(79,209,197,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
}


.searchtool-cta::before {
content: '';
  border-radius: 1000px;
  min-width: calc(100% + 22px);
  min-height: calc(100% + 22px);
  border: 2px solid #00FFCB;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.searchtool-cta:hover, 
.searchtool-cta:focus {
  color: #313133;
  transform: translateY(-4px);
}

.searchtool-cta:hover::before, 
.searchtool-cta:focus::before {
  opacity: 1;
}

.searchtool-cta::after {
  content: '';
  width: 30px; height:30px;
  border-radius: 100%;
  border: 2px solid #00FFCB;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.searchtool-cta:hover::after, 
.searchtool-cta:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: .2;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}










/*======================================================================================================*/

/* Container for the entire accordion */
.custom-accordion-container {
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}
/*
.accordion-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}*/

/* The clickable button for each main category */
.accordion-trigger {
    background-color: #ffffff;
    color: #000;
    cursor: pointer;
    padding: 18px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    position: relative;
    border-bottom: 1px solid #eee;
}

.accordion-trigger:hover {
    background-color: #f0f0f0;
}

/* Add a "+" icon to the right */
.accordion-trigger::after {
    content: '+';
    font-size: 22px;
    color: #777;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* Change the icon to "-" when active/open */
.accordion-trigger.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

/* The panel containing the subcategory list */
.accordion-panel {
    padding: 0 20px;
    background-color: white;
    max-height: 0; /* This is key for the animation */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* The list of subcategories */
.subcategory-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.subcategory-list li {
    padding: 4px 0;
}

.subcategory-list a {
    text-decoration: none;
    color: #637890;
	text-transform: capitalize;
    font-size: 16px;
}

.subcategory-list a:hover {
    text-decoration: underline;
	color: #144be8;
}





/* Accessibility class to hide labels visually */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* Wrapper for the search bar */
.support-search-wrapper {
    max-width: 100vw; /* Adjust width as needed */
    margin: 0 auto 0px auto; /* Center it and add space below */
}

/* The form itself, using Flexbox for alignment */
.support-search-form {
    display: flex;
    width: 100%;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
}

/* The text input field */
.support-search-field {
    flex-grow: 1; /* Takes up all available space */
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    outline: none; /* Remove default browser outline */
    color: #2d3748;
}

.support-search-field:focus {
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}

/* The submit button */
.support-search-submit {
    flex-shrink: 0; /* Prevents the button from shrinking */
    background-color: #fff; /* A nice blue, change as needed */
    color: #144be8;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.support-search-submit:hover {
    background-color: #144be8;
	color: white;
}

.support-content-header-wrapper{
	    background-image: linear-gradient(315deg, #ffffff 0%, #f7fafc 74%);
	padding: 48px;
	width: 100%;
}
.support-content-header-wrapper h3{ text-transform: capitalize;}

.support-side-nav{
	width:100%;
}

.support-section-columns{flex-wrap: nowrap !important; gap: 40px;}



/* Main breadcrumb container */
.custom-breadcrumbs {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

/* UL list styling */
.custom-breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on small screens */
    align-items: center;
}

.custom-breadcrumbs li {
    display: flex;
    align-items: center;
}

/* The separator (e.g., '>') between items */
.custom-breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #999;
}

/* Link styling */
.custom-breadcrumbs a {
    text-decoration: none;
    color: #637890;
    transition: color 0.2s ease;
}

.custom-breadcrumbs a:hover {
    color: #144be8;
    text-decoration: underline;
}

/* Styling for the current, non-clickable page */
.custom-breadcrumbs li[aria-current="page"] {
    color: #333;
    font-weight: bold;
}






/* The main grid container */
.category-cards-container {
    display: flex;
    /* Creates responsive columns: they will be at least 320px wide,
       and the browser will fit as many as it can per row. */
    flex-direction: row;
    gap: 20px; /* Space between the cards */
   justify-content: center;
	    flex-wrap: nowrap;
}

/* Styling for each individual card */
.category-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    overflow: hidden; /* Ensures the image corners are rounded */
    display: flex;
    flex-direction: column;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);

}

/* The card's image */
.category-card-image {
    width: 100%;
    height: 200px; /* Or use aspect-ratio: 16 / 9; */
    object-fit: cover; /* Prevents image stretching */
    display: block;
}

/* The container for the text below the image */
.category-card-content {
    padding: 24px;
    flex-grow: 1; /* Makes sure all cards have the same height in a row */
    display: flex;
    flex-direction: column;
}

/* The main category title */
.category-card-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
	text-transform: capitalize;
}

.category-card-title a {
    text-decoration: none;
    color: #1a202c;
}

.category-card-title a:hover {
    color: #144be8;
}

/* The list of subcategories */
.subcategory-list-cards {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
 
}

.subcategory-list-cards li {
    padding: 4px 0;
}

.subcategory-list-cards a {
    text-decoration: none;
    color: #637890;
}

.subcategory-list-cards a:hover {
    text-decoration: underline;
    color: #144be8;
}

.support-article-link a{
	color: #637890;
}

.support-article-link a:hover{
	color: #144be8;
}
/*===================================================*/

/* sm - SMARTPHONE LANDSCAPE STYLES */ 
@media (max-width: 767px) {
  .category-card {
      width: calc(50% - 20px);
  }
}

