:root {
    --w-green: #003512;
    --w-light-green: #acdc71;
}


#select-color, #select-vehicle {
    font-weight: 800 !important;
    font-size: 16px;
    background-color: #003512;
    box-shadow: 0 0 12px 0 var(--w-green);
    line-height: 1rem;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    text-transform: uppercase;
    letter-spacing: .1em;
    border: unset !important;
    margin: 10px auto;
    width: 100%;
    padding: 31px;

}

#select-color:hover , #select-vehicle:hover {
    background-color: #acdc71;
    box-shadow: 0 0 12px 0 var(--w-light-green);
}

.step-show {
    display: flex !important;
}

#step1 , #step2 {
    border: 1px solid #ddd;
    padding: 16px;
    margin-top: 20px;
    display: none;
    flex-direction: column;
}

#step1 > label, #step2 > label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
}

#select-color-desktop {
    display: flex;
    flex-direction: column;
}

#select-color-desktop > label {
    margin-bottom: 20px;
    display: flex;
}

#color-title {
    color: #acdc71;
    margin-left: 6px;
    font-weight: 800;
}
.custom-arrow {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  margin-top: -5px;
}

.arrow-animate {
    animation: scaleUpDown 1.5s ease-in-out infinite;
    color: var(--w-light-green);
}

.inverted {
-webkit-mask: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%2060%22%3E%3Cpath%20d%3D%22M0%2C0H100A0%2C0%200%2C0%2C1%20100%2C0V30A10%2C10%200%2C0%2C1%2090%2C40H80A10%2C10%200%2C0%2C0%2070%2C50V50A10%2C10%200%2C0%2C1%2060%2C60H0A0%2C0%200%2C0%2C1%200%2C60V0A0%2C0%200%2C0%2C1%200%2C0Z%22%20fill%3D%22%23fff%22%20%2F%3E%3C%2Fsvg%3E') no-repeat center / contain;
    	mask: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%2060%22%3E%3Cpath%20d%3D%22M0%2C0H100A0%2C0%200%2C0%2C1%20100%2C0V30A10%2C10%200%2C0%2C1%2090%2C40H80A10%2C10%200%2C0%2C0%2070%2C50V50A10%2C10%200%2C0%2C1%2060%2C60H0A0%2C0%200%2C0%2C1%200%2C60V0A0%2C0%200%2C0%2C1%200%2C0Z%22%20fill%3D%22%23fff%22%20%2F%3E%3C%2Fsvg%3E') no-repeat center / contain;
	
    width: 100%;
    background-color: #e6e6e6;
    aspect-ratio: 1 / 1;
}


@keyframes scaleUpDown {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5); /* scale up to 1.3 times */
  }
}


.tabcolor {
    display: flex;
    flex-wrap: wrap;
}

.Choose-color-item {
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-selected {
    border: 2px solid red !important;
    border-radius: 50%;
} 


.Choose-color-item img {
    width:50px;
    height:50px;
    border-radius: 50%;
}

.color-selected img {
    width: 42px !important;
    height: 42px !important;
}

#cover-modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;left: 0;
    background-color: rgba(0,0,0,.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
}
#cover-modal {
    width: 60%;
    height: 90%;
    background-color: #fdfdfd;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
}

.cover-modal-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003512;
    color: #fff;
    padding: 0 20px;
}

.cover-modal-title p {
    color: #fff;
    font-size: 22px;
    text-align: left;
    font-weight: 600;
    letter-spacing: .25px;
    line-height: 1.5;
    margin: 0;
    padding: 16px 0;
}

#cover-modal-close {
    color: #fff;
    font-size: 32px;
    line-height: 2rem;
    text-align: center;
    font-weight: 400;
    background: unset;
    border: unset;
    padding: 0 !important;
}

#cover-modal-content {
    padding: 0 20px;
    flex-wrap: wrap;
}

#cover-modal-content > p , .modal-content-wrapper > p, #show-selected .modal-content-wrapper > p {
    font-size: 30px;
    width: 100%;
    margin-top: 2.25rem;
    font-weight: 700;
    line-height: 42px;
    vertical-align: top;
    color: #222;
    letter-spacing: .25px;
    margin-bottom: 10px;
    padding: 0;
}

.vehicle-select-container {
    width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 19px 0 3px;
}

.vehicle-select-container .vehicle-select {
    width: 32%;
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    color: #424242;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z' fill='rgba(117, 117, 117, 0.999)' /%3E%3C/svg%3E");
    background-position: right .5625rem top .6875rem;
    border-radius: 2px;
    padding: .75rem 3rem .75rem 1rem;
    -moz-appearance: none !important;
    background-color: #fff;
    font-size: 1rem;
    line-height: normal;
    cursor: pointer;
}

#find-vehicle-wrapper {
    width: 100%;
    display: flex;
    justify-content: end;
}

#find-vehicle {
    background-color: #003512;
    color: #fff;
    font-size: 16px;
    font-weight: 600 !important;
    padding: 10px 20px;
}

#discount-product {
  position: absolute;
  top: 16px;
  left: 12px;
  background: #eb462f;
  color: #FDFDFD;
  padding: 16px 9px;
  border-radius: 12px;
  font-size: 14px;
  z-index: 100;
  display: flex !important;
  font-weight: 800 !important;
}

#discount-wrapper {
    position: relative;
}







/* Product Details Tabs */
        .sku_wrapper , .sku_wrapper + span {
            display: none !important;
        }
        .product-details {
            padding: 60px 0;
            background: var(--w-green);
            margin-top: 40px;
        }

        .nasa-panels.nasa-desc-wrap h1,
        .nasa-panels.nasa-desc-wrap h2,
        .nasa-panels.nasa-desc-wrap h3,
        .nasa-panels.nasa-desc-wrap p,
        .nasa-panels.nasa-desc-wrap a,
        .nasa-panels.nasa-desc-wrap div {
            color: #fff !important;
        }
        .product_meta .sku_wrapper,
        .product_meta .sku_wrapper + span {
            display: none !important;
        }

        #main-product {
            display: flex !important;
        }

        .tab-navigation {
            display: flex;
            border-bottom: 2px solid #e5e5e5;
            margin-bottom: 40px;
        }

        .tab-button {
            background: none;
            border: none;
            padding: 15px 25px;
            font-size: 1rem;
            font-weight: 600;
            color: #fff !important;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
            border-radius: unset !important;
        }

        .tab-button:hover {
            color: var(--w-light-green) !important;
            background: unset !important;
            border-bottom-color: transparent;
        }

        .tab-button.active {
            color: var(--w-light-green);
            /* border-bottom-color: #c41e3a; */
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Features Grid */
        .features-overview {
            background: var(--w-green);
            color: #fff;
            padding: 40px;
            border-radius: 8px;
        }

        .features-overview h1,
        .features-overview h2,
        .features-overview h3,
        .features-overview p {
            color: #fff !important;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 20px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #c41e3a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 15px;
        }

        .feature-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        /* Specifications Table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .specs-table th {
            background: #c41e3a;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        .specs-table td {
            padding: 15px;
            border-bottom: 1px solid #e5e5e5;
        }

        .specs-table tr:nth-child(even) {
            background: #f8f9fa;
        }

        /* Installation Guide */
        .installation-steps {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #c41e3a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin: 0 auto 15px;
        }

        .step h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .step p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        /* Customer Photos Section */
        .customer-photos-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .customer-photo {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .customer-photo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .photo-placeholder {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #666;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .photo-placeholder::before {
            content: '📸';
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            opacity: 0.3;
        }

        .photo-content {
            font-weight: 600;
            line-height: 1.4;
        }

        .photo-info {
            padding: 20px;
        }

        .customer-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .vehicle-info {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 10px;
        }

        .photo-caption {
            font-size: 0.9rem;
            color: #c41e3a;
            font-style: italic;
            font-weight: 500;
        }

        .upload-cta {
            text-align: center;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .upload-cta h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .upload-cta p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .upload-button {
            background: linear-gradient(135deg, #c41e3a, #a01729);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .upload-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
        }

        /* Customer Reviews */
        .reviews-section {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .review {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid #c41e3a;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .reviewer-name {
            font-weight: 600;
            color: #333;
        }

        .stars {
            color: #ffc107;
            font-size: 1.1rem;
        }

        .review-text {
            color: #666;
            line-height: 1.6;
            font-style: italic;
        }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-description-content , .product-description-content p, .product-description-content li {
  margin: 20px 0;
  line-height: 24px;
  color: #fff;
}

.product-description-content b {
  font-weight: normal !important;
  color: #484848 !important;
}

.tab-content h2 {
    color: #003512;
    font-weight: 600 !important;
}

.avg-rating-number {
    color: #acdc71 !important;
}

.nasa-avg-rating .star-rating {
    margin-left: 9px;
}

.button.btn-add-new-review {
    margin-top: 16px !important;
    background: #003512 !important;
    display: flex !important; 
    width: fit-content !important;
}



#pqa-open-modal {
    border-color: #acdc71 !important;
    color: #acdc71 !important;
}

#products-container {
    width: 100%;
    height: auto;
    max-height: 300px;
    overflow-y: auto;
}

#cover-modal-content-2 , #show-selected{
    width: 100%;
    height: 100%;
    position: relative;
    display: none ;
    flex-wrap: wrap;
    flex-direction: column;
}

#cover-modal-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex ;
    flex-wrap: wrap;
    flex-direction: column;
}

.modal-content-wrapper {
    width: 100%;
    padding: 0 20px;
    position: relative;
    overflow-y: auto;
    max-height: calc(100% - 126px);
}

.modal-content-wrapper > p {
    margin-top: 10px;
}

#not-sure {
    margin-left: 20px;
    background-color: #003512;
    color: #fff;
}

.modal-content-dropdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 24px;
    border: 1px solid #acdc71;
    margin-top: 12px;
    align-items: center;
    overflow-y: auto;
}
.row-header-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row-header-wrapper > p {
    width: 70%;
    margin-bottom: 0 !important;
    font-size: 18px;
    font-weight: 700;
}

.row-header-wrapper > button {
    font-size: 12px;
    padding: 4px 14px;
    background-color: #003512;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600 !important;
    transition: all .3s ease-in;
}

.row-header-wrapper > button:hover {
    background-color: #003512;
    color: #fff;
}

.row-header-wrapper > span {
    font-size: 16px;
    font-weight: 600;
    color: var(--w-light-green) !important;
    cursor: pointer;
}

#cover-modal-content-2 footer, #show-selected footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 0 12px rgba(0,0,0,.15);
    position: absolute;
    bottom: 0;
    background-color: #fff;
} 

.price-as-configured {
    font-weight: 800;

}

.price-as-configured span {
    font-weight: 400 !important;
    margin-left: 20px;
}

#continue , #go-back, #go-back-2 , #addToCart {
    font-size: 16px;
    font-weight: 600 !important;
    padding: 10px 20px;
}

#continue , #addToCart {
    background-color: #003512;
    color: #fff;
}

#go-back, #go-back-2 {
    background: unset !important;
    border-color: #003512 !important;
    color: #003512 !important;
    margin-right: 20px;

}

.price-wrapper .selected-price {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 38px !important;
  display: inline-block !important;
}

#answer {
    display: none;
    letter-spacing: normal;
    margin-top: 12px;
    font-size: 16px;
    text-transform: none;
    width: 360px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 0 !important;
    top: 60px !important;
    text-align: left;
    -webkit-box-shadow: 15px 15px 15px rgba(0,0,0,.5);
    box-shadow: 15px 15px 15px rgba(0,0,0,.5);
    position: absolute;
    z-index: 99;
}

.dropdown-top {
    margin: -5px auto -8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 15px;
    height: 15px;
    margin: -5px 0 0 273px;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    background-color: #fff;
}

.dropdown-content {
    border-radius: 3px;
    padding: 20px 14px 18px 23px;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    line-height: 24px;
    color: #202020;
    font-weight: 400;
    background-color: #fff;
}

.dropdown-content strong {
    font-size: 16px;
  line-height: 24px;
  color: #202020;
  font-weight: 400;
}

.modal-content-products {
    width: 100%;
    display: none;
    margin-top: 12px;
}

li.product-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #acdc71;
    padding: 10px 0;
    margin: 0 !important;
}

li.product-item:last-child {
    border-bottom: unset !important;
}

li.product-item.selected {
    border-bottom: unset !important;
}

li.product-item.selected  .select-seatTtpe {
    background-color: var(--w-green) !important;
    color: var(--w-light-green) !important;
}

li.product-item img {
    width: 94px;
    object-fit: contain;
}

.ul-wrapper ul:empty {
    display: none !important;
}

.product-item ul li {
    list-style-type: disc !important;
}
.product-item ul li::marker {
    color: var(--w-green) !important; 
}

.image-wrapper {
    width: 40%;
}
.image-wrapper h3 {
    margin-left: 20px;
    align-self: center;
}
.ul-wrapper {
    width: 60%;
}
.ul-wrapper , .image-wrapper {
    display: flex;
}

.select-product-li {
    display: block;
    background: #ecedee;
    border: unset;
    color: #222;
    line-height: 1rem;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 13px;
    padding: 13px 24px;
    font-weight: 800 !important;
}
.select-product-li:hover {
    background-color: #ecedee;
    color: #222;
    border: unset !important;
}

.select-product-li.selected {
    background-color: var(--w-green) !important;
    color: var(--w-light-green) !important;
}
.select-product-li.selected:hover {
    background-color: var(--w-green) !important;
    color: var(--w-light-green) !important;
}

.select-seatTtpe {
    background-color: #ecedee;
    color: #202020;
    line-height: 1rem;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 13px;
    padding: 13px 24px;
    font-weight: 900 !important;
    border: unset;
}

.select-seatTtpe:hover {
    background-color: #ecedee;
    color: #202020;
}

.icon-selected {
    margin-right: 9px;
    color: var(--w-light-green);
    font-size: 24px;
}

#regular-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #8c9398;
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 0 !important;
}
#sell-price {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    display: inline-block;
    color: #eb5757;
    margin-bottom: 0 !important;
}
#price-not {
    color: #eb5757;
}

.selected-item-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.selected-item-row > p {
    font-size: 18px;
    color: #3f4b54;
    font-weight: 700;
    margin-bottom: 5px;
    display: inline-block;
}

.selected-item-row-inner {
    width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: start;
    align-items: center;
    background: #f9f9f9;
    border-top: 1px solid var(--w-light-green);
    padding: 10px;
}

#show-selected footer {
    justify-content: end;
    padding: 0 20px;
}

.selected-item-row-inner {
    display: flex;
    justify-content: start;
    align-items: center;
}
.selected-item-row-inner.select-row {
    justify-content: space-between !important;
}

.selected-item-row-inner.color img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.selected-item-row-inner.color b {
    margin-left: 16px;
}

.selected-item-row .rowName img {
    width: 50px;
}
.selected-item-row .rowName b {
    margin-left: 16px;
}

.selected-item-row .rowPrice {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    /* border-left: 2px solid var(--w-light-green); */
    position: relative;
}
.selected-item-row .rowPrice::before {
    content: '';
    width: 2px;
    height: 58px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: -15px;
}

.selected-item-row .rowPrice b {
    font-size: 16px;
}
.selected-item-row .rowPrice b:first-child {
    color: var(--w-green);
    font-weight: 800 !important;
    margin-right: 16px;
}
.selected-item-row .rowPrice b:last-child {
    font-weight: 500 !important;
    color: grey;
    text-decoration: line-through;
}

#sub-total-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}

#sub-total-wrapper > p {
    margin-left: 16px;
}

#sub-total-wrapper b , #sub-total-wrapper  span {
    font-size: 18px;
}
#sub-total-wrapper b:first-child , #sub-total-wrapper span {
    font-weight: 800 !important;
    margin-right: 6px;
} 
#sub-total-wrapper b:first-child {
    color: #eb462f;
}
#sub-total-wrapper b:last-child {
    font-weight: 500;
    color: grey;
    text-decoration: line-through;
}

#show-selected > footer {
    height: 120px !important;
}

#small-device {
    display: none;
}

.conf-row {
    margin-left: 12px;
    font-size: 14px;
    color: var(--wp--preset--color--vivid-red);
}
.conf-row:hover {
    color: var(--w-green) !important;
} 

.wbtn-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/* HTML: <div class="wgloader"></div> */
#wgloader-wrapper {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    z-index: 99;
}
#wgloader-wrapper.active {
    display: flex !important;
    background-color: rgba(0,0,0,.5);
}
#wgloader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--w-light-green);
  border-right-color: var(--w-green);
  animation: l2 1s infinite linear;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    z-index: 999;
}

@keyframes l2 {to{transform: rotate(1turn)}}












/* new part */
.edit-selection {
    background-color: #fff;
    color: var(--w-green) !important;
    border: 2px solid var(--w-green) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-left: 10px !important;
}

.edit-selection:hover {
    background-color: #fff;
    color: var(--w-green) !important;
    border: 2px solid var(--w-green) !important;
}   

.product-detail-wrapper {
    box-shadow: 0 0 9px 3px var(--w-light-green);
    padding: 3px 16px;
    border-radius: 6px;
}

#reset {
    color: #fff;
    background: #cf2e2e;
    font-weight: 800 !important;
    padding: 6px 12px;
    border-radius: 30px;
    border: unset;
    text-transform: capitalize !important;
    box-shadow: 0 0 7px 0 #cf2e2e;
}
#reset:disabled {
    background-color: #8c9398;
    box-shadow: 0 0 7px 0 rgba(0,0,0,.5);
}

.select-question {
    border: 2px solid var(--w-green);
    width: 60%;
    margin: 0 !important;
    text-transform: capitalize !important;
}

.question-wrapper {
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.question-wrapper.show {
    display: flex;
}
#q-seatType {
    display: flex;
}

.question-wrapper:last-child {
    margin-bottom: 0 !important;
}

.answer-wrapper {
    width: 35%;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.answer-wrapper label {
    color: var(--w-green);
    font-weight: 600;
    text-transform: capitalize !important;
}

.answer-wrapper strong {
    padding-left: 12px;
    font-size: 16px;
    font-weight: 800 !important;
    color: var(--w-light-green);
    text-transform: capitalize !important;
}

.fit-vehicle {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}
.fit-vehicle i {
    font-size: 55px;
    color: #008000;
}

#fit-vehicle {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}
#fit-vehicle b {
    font-weight: 900 !important;
    font-size: 20px !important;
    margin-bottom: 6px;
}

#fit-vehicle p {
    margin-bottom: 6px;
}
#fit-vehicle div {
    text-decoration: underline;
    cursor: pointer;
}



@media ( max-width: 1300px ) {
    .product-page {
        padding: 0 10px;
    }
    #cover-modal {
        width: 80% !important;
    }
}

@media ( max-width: 1050px ) {
    .my-custom-product-gallery , .summary.entry-summary {
        width: 50% !important;
    }
}

@media ( max-width: 768px ) {
    
    .question-wrapper {
        flex-direction: column;
    }
    .select-question, .answer-wrapper {
        width: 100%;
    }
    .answer-wrapper {
        justify-content: start !important;
        position: relative;
    }
    #reset {
        position: absolute;
        right: 0;
        top: 9px;
    }
    /*  */
    .my-custom-product-gallery , .summary.entry-summary {
        width: 100% !important;
    }
    .product.type-product.status-publish {
        flex-wrap: wrap;
    }
    .breadcrumb-row {
        margin-bottom: 20px !important;
    }
    #myImage {
        width: 100% !important;
    }
    .gallery-thumbnails {
        max-width: 96% !important;
        margin: 10px auto;
    }
    #small-device {
        display: flex;
        flex-direction: column;
    }
    .entry-summary .product_title {
        display: none;
    }
    .entry-summary .my-custom-product-rating {
        display: none;
    }
    #small-device .my-custom-product-rating {
        margin-bottom: 10px;
    }
    .tab-navigation {
        justify-content: space-between;
    }
    .tab-button {
        font-size: 13px !important;
        padding: 15px !important;
    }

    /* widget */
    #cover-modal {
        width: 100% !important;
        height: 100% !important;
    }
    .ul-wrapper {
        display: none;
    }
    #discount-product {
        top: 20px !important;
    }

    .entry-summary .sale-price {
        margin-bottom: 10px !important;
    }
    .Choose-color-item {
        margin: 4.6px;
    }

    .vehicle-select-container {
        flex-direction: column;
    }
    .vehicle-select-container .vehicle-select {
        width: 100% !important;
    }
    .image-wrapper {
        align-items: center !important;
    }
    .modal-content-wrapper {
        max-height: 75% !important;
    }

    #cover-modal-content > p, .modal-content-wrapper > p, #show-selected .modal-content-wrapper > p {
        font-size: 24px !important;
        display: flex;
        align-items: center;
    }
    .image-wrapper {
        width: 65% !important;
    }

    .price-as-configured {
        display: flex;
        flex-direction: column;
    }
    #price-not {
        margin-left: 0 !important;
    }
    #show-selected footer {
        position: static !important;
    }

}

@media ( max-width: 600px ) {
    .tab-navigation {
        flex-wrap: wrap;
    }

    /* widget */
    .row-header-wrapper > p {
        width: 60% !important;
    }
    #not-sure {
        font-size: 10px !important;
        padding: 6px !important;
    }
}

@media ( max-width: 480px ) {
    .row-header-wrapper > p {
        width: 50% !important;
    }
    .product-item {
        flex-wrap: wrap;
    }
    .image-wrapper {
        width: 100% !important;
        margin-bottom: 12px !important;
    }
    .answer-wrapper {
        height: auto !important;
        margin-top: 9px !important;
    }
    #reset {
        position: absolute;
        right: 60px;
        top: -100px;
        padding: 4px 10px !important;
    }

    .tab-button {
        width: 100% !important;
    } 
}