.wc-product-configurator__container {
    display: flex;
    margin-top: 50px;
    gap: 30px;
}

.wc-product-configurator__left-column {
    width: 70%;
}

.wc-product-configurator__right-column {
    width: 30%;
}
.wc-product-configurator__add-to-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.wc-product-configurator__add-to-cart .fa-spinner {
    margin-right: 5px;
}
.wc-product-configurator__tooltip {
    position: absolute;
    display: none;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1000;
    max-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.wc-product-configurator__info-icon {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23555d66"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></svg>') no-repeat center;    
    cursor: pointer;
    margin-right: 15px;
}
.wc-product-configurator__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wc-product-configurator__heading {
    font-size: 1.5em;
    font-weight: 600;
    color: #23282d;
    margin: 0;
}

.wc-product-configurator__reset-button {
    background-color: transparent !important;
    border: 1px solid #1f1f1e !important;
    color: #1f1f1e !important;
}
.wc-product-configurator__reset-button:hover,
.wc-product-configurator__reset-button :active,
.wc-product-configurator__reset-button :focus{
    background-color: #1f1f1e !important;
    color: #fff !important;
}
.wc-product-configurator__reset-button i, 
button.button.wc-product-configurator__add-to-cart i{
    margin-right: 8px;
}

.wc-product-configurator__configure-now {
    background: #0073aa;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.wc-product-configurator__configure-now:hover {
    background: #005177;
}

.wc-product-configurator__frontend-accordion {
    margin-top: 10px;
}

.wc-product-configurator__accordion-section {
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.wc-product-configurator__accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-weight: 500;
    color: #23282d;
    cursor: pointer;
    position: relative;
    background: #fff;
    border: 2px solid #e9e9e9;
    padding: 16px 20px;
    border-radius: 8px;

}
.wc-product-configurator__accordion-title.active{
        border-radius: 8px 8px 0 0;
}

.wc-product-configurator__accordion-title.active .wc-product-configurator__accordion-carrot i {
    transform: rotate(180deg);
}

.wc-product-configurator__accordion-carrot i {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.wc-product-configurator__required {
    color: #d63638;
    margin-left: 5px;
}

.wc-product-configurator__accordion-title-left {
    display: flex;
    align-items: start;
    flex-direction: column;

}
.wc-product-configurator__accordion-title-left .wc-product-configurator__title-text{
    font-size: 1.3125rem;
}

.wc-product-configurator__accordion-selected {
    font-size: 0.9em;
    color: #555d66;
    display: none;
}

.wc-product-configurator__accordion-content {
    padding: 16px 12px;
}
.wc-product-configurator__option-label-left {
    color: #000;
    font-weight: 500;
}
.wc-product-configurator__option-label-right {
    display: flex;
    align-items: center;
    color: #000;
}
.wc-product-configurator__option:not(:last-child) {
    border-bottom: 1px solid #dddd;
}

span.product-quantity--green {
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-block;
    background: #00a76b;
    border-radius: 50%;
    margin-right: 15px;
}
span.product-quantity--orange {
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-block;
    background: #ff9800;
    border-radius: 50%;
    margin-right: 15px;
}
span.product-quantity--red {
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-block;
    background: #f44336;
    border-radius: 50%;
    margin-right: 15px;
}
.wc-product-configurator__group-title {
font-size: 14px;
    font-weight: 700;
    margin: 0;
    position: relative;
    min-height: 48px;
    padding: 8px 16px;
    box-sizing: border-box;
    cursor: default;
    display: flex;
    align-items: center;
}

.wc-product-configurator__group-options {
padding: 0 16px;
    border-radius: 8px;
    background-color: #fff;
}

.wc-product-configurator__option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
    position: relative;
    margin: 0;
    padding: 12px 0 12px 8px;
    line-height: 1.15;
}

.wc-product-configurator__option-label input[type="radio"],
.wc-product-configurator__option-label select {
    margin-left: 10px;
}

.wc-product-configurator__option-label select {
    width: 55px;
    height: 32px;
    padding: 6px;
    border: 1px solid #8c8f94;
    border-radius: 3px;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
    background-image: none;
}

.wc-product-configurator__option-label select:disabled {
    background: #f1f1f1;
    cursor: not-allowed;
}

.wc-product-configurator__option-label-right  .wc-product-configurator__option-price {
    padding-right: 15px;
    padding-left: 15px;
    border-left: 1px solid #d8d8d8;
    font-size: 16px;
    font-weight: 500;
}

.wc-product-configurator__info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23555d66"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></svg>') no-repeat center;
    cursor: pointer;
        margin-right: 15px;
}

.wc-product-configurator__summary-box {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0, 36, 61, .1);
    background-color: #fff;
}

.wc-product-configurator__summary-heading {
    padding: 16px 20px;
    display: block;
    background-color: #0298fe;
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.wc-product-configurator__product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f1f1e;
    margin: 0 0 10px;
}

.wc-product-configurator__selections {
    list-style: none;
    padding: 0;
    margin: 0 0 0px;
    overflow-y: scroll;
    scrollbar-width: auto;
    scrollbar-color: #d9d9d9 #f7f7f7;
}

.wc-product-configurator__selections li {
    margin: 0;
    border-bottom: 1px solid #d8d8d8;
    background-color: #f7f7f7;
    padding: 10px 35px 10px 20px;
    padding-right: 20px;
}
.wc-product-configurator__right-column-btm {
    padding: 16px 20px;
}
.wc-product-configurator__selections li:nth-child(2n) {
    background-color: #fff;
}
.wc-product-configurator__selections li strong{
    display: block;
}
.wc-product-configurator__price {
    margin-bottom: 15px;
}
.wc-product-configurator__price .configured-tag{
        margin: 5px 0;
    display: block;
    color: #666;
    font-size: .875rem;
}

.wc-product-configurator__price p {
    margin: 5px 0;
}

.wc-product-configurator__price-excl-tax,
.wc-product-configurator__price-incl-tax {
    font-size: 18px;
    color: #333;
}
.wc-product-configurator__price-excl-tax .price{
        line-height: 1.1;
    font-weight: 700;
    font-size: 2.0625rem;
}
.configure-height{
    height: 170px;
}

.wc-product-configurator__add-to-cart,
.wc-product-configurator__share-button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.wc-product-configurator__add-to-cart {
    background: #0073aa;
    color: #ffffff;
}

.wc-product-configurator__add-to-cart:hover {
    background: #005177;
}

.wc-product-configurator__add-to-cart--loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.wc-product-configurator__add-to-cart--loading {
    pointer-events: none;
    opacity: 0.7;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.wc-product-configurator__share-button {
    background: #00a0d2;
    color: #ffffff;
}

.wc-product-configurator__share-button:hover {
    background: #007a9b;
}

.wc-product-configurator__tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    max-width: 200px;
    z-index: 1000;
    display: none;
}
.wc-product-configurator__error {
    color: red;
    text-align: center;
}

/* ============================= Responsive Media Query =================================== */

@media only screen and (max-width: 768px) {
.wc-product-configurator__container{
        flex-direction: column-reverse;
}
.wc-product-configurator__left-column {
    width: 100%;
}
.wc-product-configurator__right-column {
    width: 100%;
}
}

@media only screen and (max-width: 480px){
.wc-product-configurator__header{
flex-direction: column;
    align-items: start;
    gap: 15px;
}    
.wc-product-configurator__option-label{
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.wc-product-configurator__accordion-content {
    padding: 16px 6px;
}
.wc-product-configurator__group-title{
        padding: 8px 8px;
}
.wc-product-configurator__group-options {
    padding: 0 8px;
}
span.product-quantity--green{
        margin-right: 10px;
}
.wc-product-configurator__price-excl-tax .price{
    font-size: 2rem;
}
.wc-product-configurator__option-label-left span{
        line-height: 22px;
    font-size: 14px;
}
}