/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient. Project: GWG
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0.1
*/

/* My account css */
nav.woocommerce-MyAccount-navigation .mt-membership-card h6{
    margin-top:8px;
}
.accordion-wrapper {
}
/* Entry accordian css */
.accordian-wrap{
  margin-top: 20px;
}
.accordion-wrapper .order-entry-accordion {
    background-color: #bbef00;
    color: #444;
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-radius: 30px !important;
}

.order-entry-accordion::after {
    content: '\002B'; /* Plus sign */
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.order-entry-active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(0deg);
}

.order-entry-accordion:hover {
    opacity: 0.7; 
}

.order-entry-panel {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: white;
}

.order-entry-panel.active {
    max-height: 500px; /* Adjust based on your content height */
}

  
