 .ws_add_grid-container,
 .ws_add_list-container {
     display: grid;
     gap: 20px;
 }

 .ws_add_grid-container {
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 }

 .ws_add_list-container {
     grid-template-columns: 1fr;
 }

 .ws_add_grid-container .ws_add_product-card {
     background: #fff;
     border: 1px solid #E7E0EB;
     box-shadow: 0px 2px 2px 0px #411D570D;
     border-radius: 10px;
     padding: 15px;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .ws_add_list-container .ws_add_product-card {
     background: #fff;
     border: 1px solid #E7E0EB;
     box-shadow: 0px 2px 2px 0px #411D570D;
     border-radius: 10px;
     padding: 15px;
     position: relative;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .ws_add_grid-container .ws_add_list-view-content {
     text-align: center;
 }

 .ws_add_list-container .ws_add_list-view-content {
     text-align: left;
     width: 100%;
     display: flex;
     gap: 5px;
     justify-content: space-between;
     flex-wrap: wrap;
 }


 .ws_add_grid-container .ws_add_qty-control {
     justify-content: center;
 }


 .ws_add_product-card input[type="checkbox"] {
     appearance: none;
     -webkit-appearance: none;
     background-color: #fff;
     border: 1px solid #E7E0EB;
     box-shadow: 0px 2px 2px 0px #411D570D;
     width: 18px;
     height: 18px;
     border-radius: 4px;
     cursor: pointer;
     position: absolute;
     top: auto;
     left: 15px;
     margin: 0;
 }

 .ws_add_product-card input[type="checkbox"]:focus {
     outline: none;
 }

 /* Style for the checked state */
 .ws_add_product-card input[type="checkbox"]:checked {
     background-color: #411D57;
     border-color: #411D57;
 }

 /* Optionally add a checkmark using a pseudo-element */
 .ws_add_product-card input[type="checkbox"]:checked::after {
     content: "";
     position: absolute;
     top: 2px;
     left: 6px;
     width: 5px;
     height: 10px;
     border: solid white;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
     border-radius: 1px
 }


 .ws_addon_product-img {
     object-fit: contain;
     width: 100%;
     max-width: 120px;
     border-radius: 5px;
     margin-left: 24px;
     height: 120px;
 }

 .ws_add_product-title {
     font-size: 14px;
     color: #411D57;
     margin-top: 0px;
     white-space: normal;
     overflow: hidden;
     text-overflow: ellipsis;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     display: -webkit-box;
     overflow: hidden;
     margin-right: 5px;
     line-height: normal;
 }

 .ws_add_grid-container .ws_add_product-title {
     margin-top: 15px;
 }

 .ws_add_grid-container .ws_add_product-price {
     gap: 5px;
 }

 .ws_add_product-price {
     color: #411D57;
     display: flex;
     font-size: 12px;
     flex-direction: column;
 }

 span.ws_addon_comparePrice {
     text-decoration: line-through;
 }

 span.ws_addon_regularPrice {
     font-weight: 700;
 }

 .ws_add_product-select {
     width: 150px;
     padding: 6px;
     border-radius: 6px;
     color: #411D57;
     box-shadow: 0px 2px 2px 0px #411D570D;
     border: 1px solid #E7E0EB;
     margin-top: 10px;
 }

 .ws_add_qty-control {
     display: flex;
     align-items: center;
     gap: 4px;
     margin-top: auto;
 }

 .ws_add_qty-control span {
     width: 30px;
     height: 30px;
     font-size: 18px;
     background: #fff;
     text-align: center;
     line-height: 28px;
     border-radius: 2px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0px 2px 2px 0px #411D570D;
     border: 1px solid #E7E0EB;
     border-radius: 6px;
 }

 .ws_add_qty-control span svg {
     width: 14px;
     height: 14px;
 }

 .ws_add_qty-control input {
     width: 40px;
     text-align: center;
     border: 1px solid #ccc;
     border-radius: 6px;
     padding: 5px;
     height: 30px;
     box-shadow: 0px 2px 2px 0px #411D570D;
     border: 1px solid #E7E0EB;
 }

 .ws_addon-total_price {
     text-align: right;
     font-size: 20px;
     margin: 20px auto;
 }

 p.ws_addon_total_price_main {
     color: #411d57;
 }

 .ws_total_price_text {
     font-weight: 700;
 }

 h2.ws_addon_heading {
     font-size: 18px;
     text-align: center;
     margin: 0px 0 24px 0;
     color: #411d57;
     font-weight: 700;
 }

 .ws_add_desktop_view {
     margin: 0 auto;
 }

 .ws_add_desktop_view.ws_add_list-container {
     width: 400px;
 }

 .ws_add_list-container.ws_add_mobile_view {
     width: 360px;
 }

 .ws_add_desktop_view.ws_add_grid-container {
     width: 400px;
 }

 .ws_add_list-container.ws_add_mobile_view,
 .ws_add_grid-container.ws_add_mobile_view {
     margin: 0 auto;
     max-height: 400px;
     overflow-y: scroll;
 }



 .ws_add_grid-container,
 .ws_add_grid-container.ws_add_mobile_view {
     width: 360px;
 }

 .ws_add_mobile_view.ws_add_grid-container,
 .ws_add_grid-container.ws_add_mobile_view {
     grid-template-columns: repeat(auto-fit, minmax(155px, 2fr));
 }

 .add_total_mobile_price {
     margin: 20px auto;
 }



 /* serch product css */

 .ws_fixed_product_wrapper {
     max-width: 350px;
     border: 1px solid #e0e0e0;
     padding: 12px;
     border-radius: 6px;
 }

 .ws_checkbox_label {
     display: flex;
     align-items: center;
     font-weight: 600;
     color: #411d57;
     margin-bottom: 10px;
 }

 .ws_checkbox_label input[type="checkbox"] {
     margin-right: 8px;
 }

 .ws_fixed_product_box {
     border-radius: 6px;
     padding: 10px;
     background: #fff;
     border: 1px solid #E7E0EB;
     box-shadow: 0px 2px 2px 0px #411D570D;
     margin-bottom: 15px;
 }

 input.ws_product_input:focus-visible {
     outline: 1px solid #E7E0EB;
 }

 .ws_input_add_wrap {
     position: relative;
     display: block;
 }

 .ws_product_input {
     flex: 1;
     width: 100%;
     border: 1px solid #C4B9CC;
     border-radius: 6px;
     padding: 10px;
     font-size: 14px;
     color: #411D57;
 }

 .ws_add_btn {
     background-color: #f3f4f6;
     border: 1px solid #ccc;
     padding: 6px 16px;
     border-radius: 4px;
     font-weight: bold;
     cursor: pointer;
 }

 .ws_product_table {
     border-collapse: collapse;
     font-size: 14px;
     background: #ffffff;
     z-index: 9;
     border-radius: 5px;
     width: 100%;
     max-height: 200px;
     overflow-y: auto;
     margin: 10px auto;
 }


 input#fixed_suggested_products {
     width: 100%;
     border: 1px solid #C4B9CC;
     border-radius: 6px;
     padding: 10px;
     font-size: 14px;
     color: #411D57;
     position: relative;
 }

 .ws_input_add_wrap span {
     position: absolute;
     right: 0;
     background: #F5F1F8;
     width: 40px;
     text-align: center;
     align-items: center;
     justify-content: center;
     border-top-right-radius: 6px;
     border-bottom-right-radius: 6px;
     top: 0;
     border: 1px solid #C4B9CC;
     display: inline-block;
     line-height: 42px;
     height: 42px;
 }

 input#fixed_suggested_products:focus-visible {
     outline: 1px solid #d0cad30d;
 }

 select.ws_add_product-select:focus-visible {
     outline: 1px solid #d0cad30d;
 }

 input#fixed_suggested_products::placeholder {
     color: #411d57;
     font-size: 12px;
     opacity: 0.5;
 }

 .ws-addon_resultItemProduct {
     display: flex;
     align-items: center;
     gap: 10px;
     margin: 8px 0;
     border: 1px solid #E7E0EB;
     padding: 8px;
     border-radius: 6px;
     position: relative;
 }

 .ws-addon_resultItemProduct label {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 0 !important;
 }

 .ws-adon_setimage {
     flex-shrink: 0;
     width: 40px;
 }

 .ws_addon_box {
     display: flex;
     justify-content: space-between;
 }

 .ws_addon_con {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .ws-addon_product_img {
     flex: 0 0 40px;
 }

 .ws_addon_remove-item {
     border: none;
     background: none;
     color: #ccc;
     font-size: 12px;
     text-align: center;
     padding: 0;
     width: auto;
     position: absolute;
     right: 8px;
     left: auto;
     top: 50%;
     transform: translateY(-50%);
     cursor: pointer;
 }

 li.ws_addon_fixed_product_item {
     position: relative;
     border: 1px solid #E7E0EB;
     border-radius: 5px;
     padding: 10px;
     box-shadow: 0px 2px 2px 0px #411D570D;
     gap: 4px;
     margin: 8px 0;
 }

 span.ws-addon_product_img img {
     width: 40px;
     height: 40px;
     object-fit: contain;
     flex-shrink: 0;
 }

 .ws_addon_remove-item:hover svg path {
     fill: #411D57;
 }

 input.form-control:focus-visible {
     outline: none;
 }

 p.ws_addon_total_price_main {
     display: flex;
     justify-content: center;
     gap: 10px;
     font-size: 18px;
 }

 .ws-addon_heading_stying,
 .ws_addon_price_stying {
     margin-bottom: 15px;
 }


 .ws-addon_resultItemProduct input[type="checkbox"] {
     appearance: none;
     -webkit-appearance: none;
     background-color: #fff;
     border: 1px solid #411D57;
     width: 18px;
     height: 18px;
     border-radius: 4px;
     cursor: pointer;
     position: absolute;
     right: 8px;
     margin: 0;
 }

 .ws-addon_resultItemProduct input[type="checkbox"]:focus {
     outline: none;
 }

 /* Style for the checked state */
 .ws-addon_resultItemProduct input[type="checkbox"]:checked {
     background-color: #411D57;
     border-color: #411D57;
 }

 /* Optionally add a checkmark using a pseudo-element */
 .ws-addon_resultItemProduct input[type="checkbox"]:checked::after {
     content: "";
     position: absolute;
     top: 2px;
     left: 6px;
     width: 5px;
     height: 10px;
     border: solid white;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
     border-radius: 1px
 }

 div#ws-addon-preview {
     padding: 15px;
 }

 .ws_add_grid-container .ws_addon_product-img {
     margin-left: 0;
 }

 .ws_add_grid-container .ws_add_product-price {
     margin-top: 10px;
 }

 .evm-video-instructions {
     display: none;
 }

 .ws_add_grid-container .ws_add_product-price {
     flex-direction: row;
     justify-content: center;
 }

 .ws_color_design {
     font-family: Arial, sans-serif;
     margin-bottom: 16px;
 }

 .ws_color_input_wrapper {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-top: 6px;
 }

 .ws_circleColor {
     width: 24px;
     height: 24px;
     border-radius: 50%;
     border: 1px solid #ccc;
     display: inline-block;
 }

 .ws_color_input_wrapper input.form-control {
     border: 1px solid #ccc;
     border-radius: 4px;
     padding: 6px 10px;
     font-size: 14px;
     width: 120px;
 }

 .addon_display_settings {
     margin-left: 30px;
 }

 .ws_addon_product_ttl {
     margin-right: 20px;
     white-space: normal;
     text-overflow: ellipsis;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     display: -webkit-box;
     overflow: hidden;
     line-height: normal;
 }

 .ws-addon_resultItemProduct .product-title {
     margin-right: 20px;
     white-space: normal;
     text-overflow: ellipsis;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     display: -webkit-box;
     overflow: hidden;
     line-height: normal;
 }

 .ws-addon_resultItemProduct label {
     gap: 10px;
 }

 .ws-addon_resultItemProduct input[type="checkbox"] {
     top: 10px;
 }

 #col-md-4 {
     position: sticky;
     top: 20px;
     /* distance from top */
     align-self: flex-start;
     /* fixes flexbox stretching issue */
 }

 .addon_row,
 #col-md-4,
 #col-md-8 {
     overflow: visible !important;
 }

 body {
     overflow: visible !important;
 }

 .info-icon {
     margin-left: 6px;
     position: absolute;
 }

 .info-icon .tooltip-text {
     visibility: hidden;
     opacity: 0;
     width: 240px;
     background-color: #fff;
     color: #411d57;
     text-align: left;
     padding: 8px 10px;
     position: absolute;
     z-index: 100;
     bottom: 26px;
     left: 0;
     transform: translateX(-65%);
     transition: opacity 0.3s;
     font-size: 12px;
     border: 1px solid #C4B9CC;
     border-radius: 6px;
 }

 .info-icon .tooltip-text a {
     color: #4ea1ff;
     text-decoration: none;
     margin-top: 5px;
     display: block;
 }

 .info-icon .tooltip-text a:hover {
     text-decoration: underline;
     cursor: pointer;
 }

 .info-icon:hover .tooltip-text {
     visibility: visible;
     opacity: 1;
 }

 .ws-addon_resultItemProduct:last-child {
     margin-bottom: 0;
 }

 li.ws_addon_fixed_product_item:first-child {
     margin-top: 0;
 }

 .ws_add_product-select {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;

     background-color: #fff;
     border: 1px solid #ccc;
     border-radius: 6px;
     padding: 6px 36px 6px 10px;
     /* space for arrow */
     font-weight: 500;
     color: #333;

     /* custom arrow from your SVG */
     background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill-rule='evenodd' d='M5.72 8.47a.75.75 0 0 1 1.06 0l3.47 3.47 3.47-3.47a.75.75 0 1 1 1.06 1.06l-4 4a.75.75 0 0 1-1.06 0l-4-4a.75.75 0 0 1 0-1.06Z'/></svg>");
     background-repeat: no-repeat;
     background-position: right 4px center;
     background-size: 16px;
 }

 .ws_add_list-container .ws_ttl_selectbox {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     width: 100%;
 }

 .page_icons_wrapper {
     position: relative;
     overflow: hidden;
     z-index: 99;
     background: #fff;
 }

 #page-wrapper {
     padding-top: 100px;
 }

 @media screen and (max-width: 1295px) {
     .info-icon .tooltip-text {
         width: 18em;
     }
 }

 @media screen and (max-width: 1220px) {

     .ws_add_grid-container,
     .ws_add_grid-container.ws_add_mobile_view {
         width: 455px;
     }

     .ws_addon_con {
         gap: 10px;
     }

     .ws_setup_manual_text {
         font-size: 12px;
     }

     .panel-body {
         padding: 15px 0;
     }

     .info-icon .tooltip-text {
         transform: translateX(-82%);
         width: 17em;
     }
 }

 @media screen and (max-width: 1024px) {
     .info-icon .tooltip-text {
         width: 16em;
     }
 }

 @media screen and (max-width: 768px) {
     .ws_add_grid-container {
         grid-template-columns: repeat(2, 1fr);
     }

     .ws_add_desktop_view.ws_add_list-container {
         width: 400px;
     }

     .ws_add_list-container .ws_add_product-card {
         align-items: center;
         text-align: center;
         grid-area: 15px;
     }

     .ws_add_list-container .ws_add_qty-control {
         justify-content: left;
     }

     .ws_add_qty-control {
         justify-content: center;
     }

     .ws_add_list-container .ws_add_product-title {
         text-align: left;
         padding-right: 25px;
     }

     .ws_add_list-container .ws_add_product-price {
         text-align: left;
         font-size: 12px;
     }

     .top-menu-bar {
         display: none;
     }

     #col-md-4 {
         position: relative;
     }
 }

 @media screen and (max-width: 550px) {
     .ws_add_grid-container {
         grid-template-columns: repeat(2, 1fr)
     }

     .ws_addon_form {
         padding: 10px;
     }

     .ws_add_product-select {
         width: 150px;
     }

     .ws_add_product-price {
         gap: 5px;
     }

     .ws_add_list-container .ws_add_product-card {
         grid-area: 10px;
     }

     div#ws-addon-preview {
         padding: 0;
     }

     p.ws_addon_total_price_main {
         gap: 10px;
         font-size: 16px;
     }

     .ws_add_list-container.ws_add_mobile_view {
         width: auto;
     }

     .info-icon .tooltip-text {
         width: 200px;
         bottom: 28px;
         transform: translateX(-82%);
     }


 }

 @media screen and (max-width: 425px) {
     .ws_add_grid-container {
         grid-template-columns: repeat(2, 12em)
     }

     .ws_add_mobile_view.ws_add_grid-container,
     .ws_add_grid-container.ws_add_mobile_view {
         grid-template-columns: repeat(1, 1fr);
     }

     .ws_add_list-container .ws_add_product-card {
         gap: 10px;
     }

     .ws_addon_product-img {
         max-width: 70px;
         height: 70px;
     }

     .ws_add_list-container .ws_add_product-title {
         padding-right: 10px;
     }

     .ws_add_product-price {
         gap: 5px;
     }

     .ws_add_list-container .ws_add_list-view-content {
         gap: 5px;
     }

     p.ws_addon_total_price_main {
         gap: 5px;
         font-size: 14px;
     }

     .ws_add_desktop_view.ws_add_list-container {
         width: 100%;
     }

     .ws_add_desktop_view.ws_add_grid-container {
         width: 100%;
     }
 }

 @media screen and (max-width: 375px) {
     .info-icon .tooltip-text {
         transform: translateX(-66%);
     }
 }

 @media screen and (max-width: 430px) {

     .ws_add_list-container {
         width: auto !important;
     }

     .ws_add_grid-container {
         width: auto !important;
         grid-template-columns: repeat(2, 12em);
     }
 }

 @media screen and (max-width: 425px) {
     .ws_add_grid-container {
         grid-template-columns: repeat(2, 12em)
     }

 }

 @media screen and (max-width: 414px) {
     .ws_add_grid-container {
         grid-template-columns: repeat(2, 11.5em)
     }

 }

 @media screen and (max-width: 375px) {
     .ws_add_grid-container {
         grid-template-columns: repeat(2, 10em)
     }

     .ws_add_product-select {
         width: 100px;
     }

     .info-icon .tooltip-text {
         width: 200px;
         transform: translateX(-90%);
     }
 }

 @media screen and (max-width: 320px) {
     .ws_add_grid-container {
         grid-template-columns: repeat(2, 9em);
     }

     .ws_add_grid-container {
         gap: 5px;
     }

     .ws_add_list-container .ws_add_product-price {
         flex: 1;
     }

     .ws_add_list-container .ws_add_product-title {
         flex: 1;
     }

     .info-icon .tooltip-text {
         transform: translateX(-65%);
     }
 }

 @media (resolution: 120dpi) {

     .ws_add_desktop_view.ws_add_grid-container {
         width: 400px;
     }

     .ws_add_grid-container {
         grid-template-columns: repeat(auto-fill, 165px);
     }
 }