/*
* Style of theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

    --white-color: #fff;
    --black-color: #000000;
    --black-color-200: #363636;
    --black-color-300: #1A1A1A;
    --light-green-color: #E3E6DF;
    --red-color: #A00B1A;
    --red-hover-color: #b70517;
    --red-color-200: #B2000D;
    --red-color-300: #FF0000;
    --grey-color-light: #c2c2c2;
    --grey-color: #B3B3B3;
    --grey-color-200: #F5F5F7;
    --grey-color-300: #999999;
    --grey-color-400: #CCCCCC;
    --grey-color-500: #808080;
    --grey-color-600: #BABDBF;
    --grey-color-700: #707070;
    --grey-color-800: #BCBEC0;
    --grey-color-900: #666666;
    --grey-color-1000: #F4F4F6;
    --grey-color-1200: #E6E6E6;
    --grey-color-1300: #A7A9AC;
    --blue-color: #0070B6;
    --green-color: #39B54A;
    --green-color-200: #2da83e;
   
    --inter-- : "Inter", sans-serif;
}


/* =========================== Global =========================== */
html,body { overflow-x: hidden }
.overflow-active { overflow: hidden !important; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--grey-color-200); font-size: 16px; line-height: 20px; font-weight: 400; padding-top: 85px; }
a { display: inline-block; transition: all 0.5s; -webkit-transition: all 0.5s; color: var(--blue-color); }
a:hover { color: var(--red-color); }
ul, ol { list-style: none; }
:focus-visible { outline: 0; }
h1, h2, h3, h4, h5, h6, ul, ol, li, a, p { margin: 0; padding: 0; }
a { text-decoration: none; transition: all 0.5s; -webkit-transition: all 0.5s; }
.scroll-lock { overflow: hidden; }  
.admin-bar header { top: 30px; }
pre,code { white-space: pre-wrap; font-family: "courier new",monospace; font-size: inherit !important; line-height: inherit !important; }
.wqm-pricing-table [data-item="price"] span > span{ font-weight: 700; }
.tooltip-inner {
    max-height: 200px;
    /* Set your desired max height */
    overflow-y: auto;
    text-align: left;
    /* Optional: for better readability */
    white-space: pre-wrap;
    /* Preserves line breaks */
}

/* Optional: Custom scrollbar styling */
.tooltip-inner::-webkit-scrollbar {
    width: 6px;
}

.tooltip-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.tooltip-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.tooltip-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.tooltip {
    pointer-events: auto !important;
    /* Allow mouse events on tooltip */
}


.heading-style-1 { font-size: 55px; line-height: 60px; font-weight: 700; }
.heading-style-2 { font-size: 50px; line-height: 60px; font-weight: 600; }
.heading-style-3 { font-size: 40px; line-height: 50px; }
.heading-style-4 { font-size: 35px; line-height: 50px; }
.heading-style-5 { font-size: 28px; line-height: 30px; font-weight: 600; }
.heading-style-6 { font-size: 26px; line-height: 32px; }
.text-sm { font-size: 14px; line-height: 22px; }
.text-md { font-size: 18px; line-height: 24px; }
.text-lg { font-size: 22px; line-height: 28px; }
.text-xl { font-size: 24px; line-height: 30px; }
.text-xxl { font-size: 30px; line-height: 38px; }
.link-hover { position: relative; }
.link-hover::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; width: 0%; height: 2px; background: var(--red-color); transition: all 0.5s; -webkit-transition: all 0.5s; }
.link-hover:hover { color: var(--red-color) !important; }
.link-hover:hover::after { width: 100%; }
.theme-btn { text-transform: capitalize; display: inline-block; font-size: 22px; line-height: 26px; font-weight: 600; padding: 19px 40px; background: var(--red-color); color: var(--white-color); border: 2px solid transparent; border-radius: 50px; transition: all 0.5s; -webkit-transition: all 0.5s; }
.theme-btn:hover { color: var(--white-color); background: var(--red-hover-color) ; }
.secondary-theme-btn { text-transform: capitalize; display: inline-block; min-width: 105px; text-align: center; font-size: 16px; line-height: 19px; font-weight: 600; padding: 12px 30px; background: var(--white-color); color: var(--red-color); border: 2px solid var(--red-color); border-radius: 50px; transition: all 0.5s; -webkit-transition: all 0.5s; }
.secondary-theme-btn:hover { background: var(--red-color); color: var(--white-color);  }
.btn-wrapper { margin-top: 88px; display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; gap: 22px; }
.btn-wrapper .btn { font-size: 22px; line-height: 26px; padding: 19px 40px; min-width: 190px; }
.btn-wrapper .btn.text-btn { min-width: unset; padding: 0px; }
.text-btn { padding: 0px; margin: 0px; color: var(--black-color); transition: all 0.5s; -webkit-transition: all 0.5s; text-decoration: underline; }
.text-btn:hover { color: var(--red-color); }
.text-btn:active { border-color: transparent !important; }
.not-sure .text-xxl { color: var(--red-color); margin-top: 60px; }
.not-sure .text-xxl a {  color: var(--black-color); transition: all 0.5s; -webkit-transition: all 0.5s; }
.not-sure .text-xxl a:hover { color: var(--red-color); } 
.container { max-width: 1400px; }
.common-desc-padding { padding-block: 80px; border-bottom: 1px solid  var(--grey-color-300); }
.common-title { max-width: 962px; margin: 0px auto 67px; }
.common-title .headline { margin-bottom: 18px; }
.secondary-common-title { margin-bottom: 52px; }
.secondary-common-title .title { font-weight: 700; }
.secondary-common-title .title strong { font-weight: 400; }
.secondary-common-title .desc:last-child { margin-bottom: 0px; }
.common-title .btn-wrapper .theme-btn, .common-title .btn-wrapper .secondary-theme-btn { font-size: 16px; line-height: 1; padding: 14px 26px; min-width: 142px; }
.common-title .btn-wrapper { margin-top: 48px; }


/*slick slider*/
.slick-dots { bottom: -40px; }
.slick-dots li, .slick-dots li button { padding: 0px; width: 15px; height: 15px;  }
.slick-dots li button::before { content: ''; display: none; }
.slick-dots li button::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; background: var(--grey-color);  }
.slick-dots li button:hover::after { background: var(--grey-color-light); }
.slick-dots .slick-active button::after { background: var(--black-color-200); }

/*searchbar wrapper*/
.searchbar-wrapper { position: relative; }
.searchbar-wrapper .searchbar-inner { position: relative; }
.searchbar-wrapper .searchbar-inner::before { content: '\f002'; font-family: 'fontawesome'; position: absolute; top: 50%; left: 20px; transform: translateY(-50%); font-size: 26px; line-height: 1; color: var(--grey-color-500); }
.searchbar-wrapper .searchbar-inner input { width: 100%; padding: 20px 140px 20px 60px; font-size: 20px; line-height: 1; border: none; border-radius: 8px; background: var(--white-color);  }
.searchbar-wrapper .searchbar-inner .clear-btn { position: absolute; top: 50%; right: 20px; transform: translateY(-50%); -webkit-transform: translateY(-50%); font-size: 14px; line-height: 1; padding: 14px 30px; }
.searchbar-wrapper.search-open .result-wrapper { display: block; }
.searchbar-wrapper.search-open input { border-bottom-left-radius: 0px !important; border-bottom-right-radius: 0px !important; }
.searchbar-wrapper .result-wrapper { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white-color); border-radius: 0px 0px 8px 8px; padding: 20px 20px 20px 60px; z-index: 1; box-shadow: 0px 80px 60px 0px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0px 80px 60px 0px rgba(0, 0, 0, 0.1); }
.searchbar-wrapper .result-wrapper .title { margin-bottom: 10px; }
.searchbar-wrapper .result-wrapper ul { max-height: 120px; overflow-y: auto; }
.searchbar-wrapper .result-wrapper li { position: relative; padding: 5px 0px 5px 16px; transition: all 0.5s; -webkit-transition: all 0.5s; cursor: pointer; font-size: 16px; line-height: 1.2; }
.searchbar-wrapper .result-wrapper li::before { content: '\f105'; font-family: 'fontawesome'; position: absolute; top: 4px; left: 0; color: var(--black-color); }
.searchbar-wrapper .result-wrapper li:hover { color: var(--red-hover-color); }

/*select2*/
.select2-container { width: 100% !important; display: block; }
.select2-container .select2-selection--single { height: unset; padding: 8px 0px; border: 1px solid var(--grey-color-800); border-radius: 6px; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 100%; }
.select2-container .select2-selection--single .select2-selection__rendered { font-size: 16px; line-height: 1.1; padding-block: 0px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b { margin-top: -4px; }
.select2-container--default .select2-search--dropdown .select2-search__field { border-radius: 4px; }
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] { background: var(--red-color); }
.select2-container--default .select2-selection--single .select2-selection__arrow b { display: none; }
.select2-container--default .select2-selection--single .select2-selection__arrow::after { content: '\f107'; font-family: 'fontawesome'; color: var(--black-color); font-size: 16px; line-height: 1; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); transition: all 0.5s; -webkit-transition: all 0.5s; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::after { transform: translate(-50%, -50%) rotate(180deg); -webkit-transform: translate(-50%, -50%) rotate(180deg); }

/*loader style*/
.overlay-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; background: rgba(255, 255, 255, 0.5); display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; z-index: 9999; }
.main-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; background: var(--white-color); display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; z-index: 99999; }
.overlay-loader .loader::before,
.main-loader .loader::before { display: none; }
.overlay-loader .loader, .main-loader .loader {
    border: 6px solid var(--grey-color-200);
    border-radius: 50%;
    border-top: 6px solid var(--red-color);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}


/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*modal style*/
.modal-body { min-height: 100px; }
.modal-body:has(>p) { display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; }
.modal-header .btn-close:focus { box-shadow: none; -webkit-box-shadow: none; }

/*wocommerce msg*/
.woocommerce-error, .woocommerce-info, .woocommerce-message { display: flex; display: -webkit-flex; gap: 16px; margin-bottom: 0px; }
.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    min-width: 120px;
    float: none;
    width: fit-content;
    margin: 0px -16px 0px auto;
    text-align: center;
}

.woocommerce .woocommerce-error .button { background: var(--red-color); color: var(--white-color); }
.woocommerce .woocommerce-error .button:hover { background: var(--red-hover-color); color: var(--white-color); }
.woocommerce .woocommerce-info .button { background: #0dcaf0; color: var(--white-color); }
.woocommerce .woocommerce-info .button:hover { background: #00b8d8; color: var(--white-color); }
.woocommerce .woocommerce-message { border-top-color: var(--green-color); }
.woocommerce .woocommerce-message::before { color: var(--green-color); }
.woocommerce .woocommerce-message .button { background: var(--green-color); color: var(--white-color); }
.woocommerce .woocommerce-message .button:hover { background: var(--green-color-200); color: var(--white-color); }


/*empty cart message*/
.woocommerce:has(> .wc-empty-cart-message) { padding-top: 85px; }
.woocommerce:has(> .wc-empty-cart-message) .woocommerce-info { display: block; text-align: center; border: none; padding: 0px; color: var(--black-color); font-weight: 600; }
.woocommerce:has(> .wc-empty-cart-message) .woocommerce-info::before { content: ''; display: none; }
.woocommerce:has(> .wc-empty-cart-message) .return-to-shop .button { display: block; background: var(--red-color); border: 2px solid transparent; font-weight: 600; text-transform: capitalize; color: var(--white-color); border-radius: 50px; transition: all 0.5s; -webkit-transition: all 0.5s; width: fit-content; margin: 0px auto; margin-top: 30px; font-size: 16px; line-height: 1; padding: 16px 30px; }
.woocommerce:has(> .wc-empty-cart-message) .return-to-shop .button:hover { background: var(--red-hover-color); color: var(--white-color); }


/*form style*/
.form-group { margin-bottom: 20px; }
.form-control { font-size: 18px; line-height: 1; border: 1px solid rgba(26, 26, 26, 0.2); border-radius: 10px; padding: 18px; color: var(--grey-color-900); }
textarea.form-control { resize: none; }
.form-control:focus { box-shadow: none; -webkit-box-shadow: none; border-color: var(--black-color-300); }
.form-wrapper .title { color: var(--red-color); margin-bottom: 42px; font-weight: 700; }
.form-group >:has(.wpcf7-submit), .form-group p >:has(.wpcf7-submit)  { margin-top: 36px; display: flex; display: -webkit-flex; justify-content: flex-start;  -webkit-justify-content: flex-start; flex-direction: row-reverse; -webkit-flex-direction: row-reverse; align-items: center; -webkit-align-items: center }
.wpcf7-submit { text-transform: uppercase; }
.wpcf7-not-valid-tip { font-size: 12px; line-height: 14px; text-align: left; margin: 6px 0 0 0px; color: var(--red-color); }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { background: #ffb900;color: var(--white-color); border-color: #ffb900; }
.wpcf7 form.failed .wpcf7-response-output { background: var(--red-color); color: var(--white-color); color: var(--red-color); }
.wpcf7 form.sent .wpcf7-response-output { background: #618c52; color: var(--white-color); color: #618c52; }
.wpcf7 form .wpcf7-response-output { border-radius: 4px; font-size: 14px; line-height: 22px; }

/* autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {transition: background-color 5000s ease-in-out 0s; -webkit-text-fill-color: var(--black) !important;}


/*breadcrumb*/
.breadcrumb-wrapper { background: var(--white-color); padding: 16px 0px; border-bottom: 1px solid var(--grey-color-300); }
.breadcrumb-wrapper .breadcrumb { margin: 0px; }
.breadcrumb-wrapper .breadcrumb-item , .breadcrumb-wrapper .breadcrumb-item a { font-size: 12px; line-height: 16px; color: var(--black-color); }
.breadcrumb-wrapper .breadcrumb-item a:hover { color: var(--red-color-200); }
.breadcrumb-wrapper .breadcrumb-item.active { color: var(--red-color-200); }
.breadcrumb-item + .breadcrumb-item::before { content: '\f105'; font-family: 'fontawesome';  }

/*knowledge base style*/
.page-template-template-knowledge-landing footer .footer-wrap > .container,
.single-spl_knowledgebase  footer .footer-wrap > .container { padding-top: 0px; border-top: none; }
.page-template-template-knowledge-landing .knowledge-flex-wrapper,
.single-spl_knowledgebase  .knowledge-flex-wrapper { position: relative; }
.page-template-template-knowledge-landing .knowledge-flex-wrapper::after,
.single-spl_knowledgebase  .knowledge-flex-wrapper::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); -webkit-transform: translateX(-50%); background: var(--grey-color-300); height: 1px; width: 98%; }


/* =========================== Header =========================== */
header { background-color: var(--white-color); position: fixed; top: 0; left: 0; width: 100%; z-index: 100; border-bottom: 1px solid var(--grey-color-300); }
header .navbar-brand  { padding: 0px; margin: 0px; }
header .navbar-brand img { width: 100%; height: auto; }
.header-wrapper .navbar { padding: 0px; }
.header-wrapper .main-menu { display: flex; display: -webkit-flex; justify-content: space-between; -webkit-justify-content: space-between; align-items: center; -webkit-align-items: center; }
.megamenu .main-nav-wrapper { display: flex; display: -webkit-flex; gap: 32px; }
.megamenu .main-nav-wrapper > .nav-item .nav-link { position: relative; font-size: 18px; line-height: 21px; padding: 32px 22px 32px 0px; font-weight: 500; color: var(--black-color); transition: all 0.5s; -webkit-transition: all 0.5s; text-transform: uppercase; }
.megamenu .main-nav-wrapper > .nav-item.menu-item-object-page  .nav-link { padding-right: 0px; }
.megamenu .main-nav-wrapper > .nav-item .nav-link::before { content: '\f107'; font-family: 'fontawesome'; position: absolute; top: 50%; right: 0; transform: translateY(-40%); -webkit-transform: translateY(-40%); font-size: 16px; line-height: 1; transition: all 0.5s; -webkit-transition: all 0.5s;  }
.megamenu .main-nav-wrapper > .nav-item:last-child .nav-link::before,
/* .megamenu .main-nav-wrapper > .nav-item:nth-last-child(2) .nav-link::before, */
.megamenu .main-nav-wrapper > .nav-item:nth-last-child(3) .nav-link::before  { display: none; }
.megamenu .main-nav-wrapper > .nav-item .nav-link::after { content: ''; position: absolute; bottom: 0px; left: 0; width: 0%; height: 4px; background: var(--red-color-200); border-radius: 50px; transition: all 0.5s; -webkit-transition: all 0.5s; }
.megamenu .main-nav-wrapper > .nav-item .nav-link:hover { color: var(--red-color-200); }
.megamenu .main-nav-wrapper > .nav-item.current-page-item .nav-link { color: var(--red-color-200); }
.megamenu .main-nav-wrapper > .nav-item.current-page-item .nav-link::after { width: 100%; }
.megamenu .main-nav-wrapper > .nav-item:hover > .sub-menu { border-top: 1px solid var(--grey-color-300); display: block; box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.02); -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.02); }
.megamenu .main-nav-wrapper .sub-menu { display: none; position: absolute; background: var(--white-color); top: 100%; left: 50%; transform: translateX(-50%); -webkit-transform: translateX(-50%); width: 100vw; padding: 50px 0px; }
.megamenu .main-nav-wrapper .sub-menu .container { padding: 0px 60px;}
.megamenu .sub-menu .flex-wrapper {  }
.megamenu .sub-nav-wrapper { max-height: calc(100dvh - 164px); overflow-y: auto; width: 266px; padding-right: 60px; border-right: 2px solid rgba(0, 0, 0, 0.1); background: var(--white-color);  }
.megamenu .sibling-sub-menu-inner { width: calc(100% - 266px); padding: 0px 35px; max-height: calc(100dvh - 164px); overflow-y: auto; }
.megamenu .sub-nav-item .sub-menu-inner { display: none; }  
.megamenu .sub-nav-item { margin-bottom: 20px; }
.megamenu .sub-nav-item:last-child { margin-bottom: 0px; }
.megamenu .sub-nav-item.current-page-item .sub-nav-link, .megamenu .sub-nav-item.current-page-item .sub-nav-link ~ .btn, 
.megamenu .sub-nav-item.active .sub-nav-link, .megamenu .sub-nav-item.active .sub-nav-link ~ .btn { color: var(--red-color-200) }
.megamenu .sub-nav-item .sub-nav-link ~ .btn:active, .megamenu .sub-nav-item .sub-nav-link ~ .btn:focus { border: transparent; outline: none; }
.megamenu .sub-nav-item .sub-nav-link { text-transform: capitalize; width: 100%; display: block; font-size: 20px; line-height: 26px; font-weight: 600; color: var(--black-color); transition: all 0.5s; -webkit-transition: all 0.5s; }
.megamenu .sub-nav-item .sub-nav-link:hover { color: var(--red-color-200); }
.megamenu .sub-nav-item .sub-nav-link-wrapper { display: flex; display: -webkit-flex; gap: 10px; justify-content: space-between; -webkit-justify-content: space-between; align-items: center; -webkit-align-items: center; }
.megamenu .sub-nav-item .sub-nav-link-wrapper .btn {  display: none; flex-shrink: 0; -webkit-flex-shrink: 0;  padding: 0px; border-radius: 0px; width: 20px; height: 20px;  justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; transition: all 0.5s; -webkit-transition: all 0.5s; }
.megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper { column-count: 2; }
.megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper:not(.active) { display: none; }
.megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item { margin-bottom: 10px; float: left; width: 100%;}
.megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item.current-page-item .sibling-sub-inner-nav-link { color: var(--red-color-200); }
.megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item .sibling-sub-inner-nav-link { color: var(--black-color); font-size: 16px; line-height: 1.4; transition: all 0.5s; -webkit-transition: all 0.5s; text-transform: capitalize; }
.megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item .sibling-sub-inner-nav-link:hover { color: var(--red-color-200); }
header .main-menu .action-btns-inner { display: flex; display: -webkit-flex; align-items: center; -webkit-align-items: center; gap: 20px;  }
header .main-menu .action-btns-inner li:not(.dropdown-menu li):first-child { display: none; }
header .main-menu .action-btns-inner .theme-btn { padding: 14px 26px; font-size: 16px; line-height: 1; }
header .main-menu .dgwt-wcas-ico-magnifier-handler { max-width: 16px; }
header .main-menu .action-btns-inner .action-link .fa-search { color: var(--black-color); font-size: 22px; }
header .main-menu .action-btns-inner .action-link { position: relative; }
header .main-menu .action-btns-inner .action-link .badge { position: absolute; top: -8px; right: -8px; width: 18px; height: 18px; padding: 0px; font-size: 8px; line-height: 1; background: var(--red-color); border-radius: 50%; display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; }
header .main-menu .action-btns-inner .dropdown a.btn { padding: 0px; border: none; background: transparent; color: var(--red-color-200); line-height: 1; }
header .main-menu .action-btns-inner .dropdown-menu[data-bs-popper] { left: auto; right: 0px; }
header .main-menu .action-btns-inner .dropdown-menu .dropdown-item { font-size: 15px; line-height: 1; }
header .main-menu .action-btns-inner .dropdown-menu .dropdown-item:hover,
header .main-menu .action-btns-inner .dropdown-menu .dropdown-item:focus,
header .main-menu .action-btns-inner .dropdown-menu .dropdown-item:active { background: var(--red-color); color: var(--white-color); }
header .main-menu .action-btns-inner .select-wrapper .select2-container .select2-selection--single .select2-selection__rendered,
.select2-results__option--selectable{  font-size: 14px;}
header .main-menu .action-btns .switcherBody .select2-container--default .select2-selection--single .select2-selection__arrow::after { font-size: 14px; }

/* ===== SINGLE MENU DROPDOWN ======= */
.megamenu .main-nav-wrapper > .nav-item.single-menu-item { position: relative;}
.megamenu .main-nav-wrapper > .nav-item.single-menu-item .nav-link { padding-right: 22px;}
.megamenu .main-nav-wrapper .single-menu-item .sub-menu.single-menu { min-width: 230px; padding: 20px; width: auto; box-shadow: 0px 5px 5px 6px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0px 5px 5px 6px rgba(0, 0, 0, 0.04);}
.megamenu .main-nav-wrapper .single-menu-item .sub-nav-wrapper { padding: 0; border: 0; width: auto;}

/*Searchbar plugin*/
header .dgwt-wcas-search-wrapp { position: unset; }
html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon .dgwt-wcas-search-form { top: calc(100% + 1px); left: auto !important; right: 0px; }
html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { border: 1px solid #eee; box-shadow: none; }
.dgwt-wcas-open .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { border-radius: 10px 10px 0px 0px; }
.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { padding-block: 14.5px; }
html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { border-color: var(--red-color-200); }
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { border-width: 1px; border-radius: 10px; }
.dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { padding-right: 98px; }
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover { background: none; box-shadow: none; -webkit-box-shadow: none; }
.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp { padding: 0px; background: transparent; border-radius: 0px; }
.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit { top: 6.5px; left: 12px; }
/* .dgwt-wcas-suggestions-wrapp { box-shadow: 0 0 0 1px #eee; } */

.dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp, .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp { border-color: #eee; }
/* .dgwt-wcas-open-pirx .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp,
.dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return { border-radius: 30px 30px 0px 0px; box-shadow: 0 0 0 1px #eee; } */
.dgwt-wcas-open-pirx .dgwt-wcas-suggestion-nores { text-align: center; padding: 10px; }
.dgwt-wcas-open-pirx .dgwt-wcas-details-outside .dgwt-wcas-details-wrapp,
.dgwt-wcas-open-pirx .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp { margin-top: 0px; }
.dgwt-wcas-open-pirx .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp { border-bottom-right-radius: 0px; }
.dgwt-wcas-open-pirx body.dgwt-wcas-details-right .dgwt-wcas-details-wrapp { border-top-right-radius: 0px; }
.dgwt-wcas-open-pirx .dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp>.dgwt-wcas-suggestion, 
.dgwt-wcas-open-pirx body.dgwt-wcas-details-left .dgwt-wcas-details-wrapp {  box-shadow: 0 0 0 1px #eee; border: none; }
.dgwt-wcas-product-details > a { display: block; }
.dgwt-wcas-details-main-image { width: 100%; min-height: unset; max-height: unset; height: auto ; padding-bottom: 10px; }
.dgwt-wcas-details-left .dgwt-wcas-details-main-image img { width: 100%; height: auto; object-fit: contain; max-height: 150px; min-height: unset; align-self: unset; object-fit: contain; }
a.dgwt-wcas-details-post-title:hover, a.dgwt-wcas-details-product-title:hover,
a.dgwt-wcas-details-more-products:hover { color: var(--red-color-200); }
.dgwt-wcas-pd-addtc-form { flex-wrap: wrap; -webkit-flex-wrap: wrap; gap: 16px; justify-content: flex-start; -webkit-justify-content: flex-start; }
.dgwt-wcas-pd-addtc-form>.quantity { width: 100%; margin: 0px; }

.dgwt-wcas-pd-addtc-form>.quantity { float: none; margin: 0px; display: flex; display: -webkit-flex; align-items: center; -webkit-align-items: center; }
.dgwt-wcas-pd-addtc-form>.quantity .qty-label { font-weight: 600; text-transform: uppercase;  margin-right: 18px; }
.dgwt-wcas-pd-addtc-form>.quantity .qty-btn {  width: 32px; height: 32px; border: 1px solid var(--grey-color-300); background: var(--white-color); font-size: 16px; line-height: 1; display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; }
.dgwt-wcas-pd-addtc-form>.quantity .qty-btn:hover { background: var(--red-color); color: var(--white-color); } 
.dgwt-wcas-pd-addtc-form>.quantity .qty-btn.qty-minus { border-radius: 8px 0px 0px 8px; }
.dgwt-wcas-pd-addtc-form>.quantity .qty-btn.qty-plus { border-radius: 0px 8px 8px 0px; }
.dgwt-wcas-pd-addtc-form>.quantity .input-text {  width: 60px; height: 32px; border: 1px solid var(--grey-color-300); background: var(--white-color); font-size: 16px; line-height: 1; text-align: center; border-left: none; border-right: none; }
.woocommerce .dgwt-wcas-pd-addtc-form .add_to_cart_button { text-transform: capitalize; display: inline-block; line-height: 1; font-weight: 600; padding: 12px 26px; background: var(--red-color); color: var(--white-color); border: 2px solid transparent; border-radius: 50px; transition: all 0.5s; -webkit-transition: all 0.5s; }
.woocommerce .dgwt-wcas-pd-addtc-form .add_to_cart_button:hover  { color: var(--white-color); background: var(--red-hover-color); }
.woocommerce .dgwt-wcas-pd-addtc-form a.added_to_cart  { padding: 0px; color: var(--black-color); margin-left: 10px; }
.woocommerce .dgwt-wcas-pd-addtc-form a.added_to_cart:hover  { color: var(--red-color-200); }

.dgwt-wcas-tax-product-details { padding: 5px 8px; border-radius: 6px; }


/* =========================== Inner Banner =========================== */
.inner-banner { padding: 60px 0px 47px; position: relative; border-bottom: 1px solid rgba(153, 153, 153, 0.4); }
.inner-banner::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: none; }
.inner-banner .container { position: relative; z-index: 1; }
.inner-banner .inner-banner-content { padding-left: 40px; }
.page-template-template-industry-info .inner-banner-content,
.page-template-template-software-info .inner-banner-content,
.page-template-template-about .inner-banner-content  { color: var(--white-color); }
.inner-banner .inner-banner-content .headline { margin-bottom: 16px; text-transform: capitalize; }
.inner-banner .inner-banner-content .desc { margin-bottom: 30px; }
.inner-banner .inner-banner-content .theme-btn { font-size: 16px; line-height: 1; padding: 14px 26px; min-width: 142px; }
.secondary-inner-banner .inner-banner-content { color: var(--white-color); }
.tax-product_cat .inner-banner .inner-banner-content { max-width: 34%; }
.tax-product_cat .product-list .product-list-inner:has(.woocommerce-no-products-found) { border-bottom: 1px solid rgba(0, 0, 0, 0.4); }
.tax-product_cat .product-list .product-list-inner .product-list-title:has(~.woocommerce-no-products-found)  { text-align: center; }
.tax-product_cat .product-list .product-list-inner .woocommerce-no-products-found .woocommerce-error, 
.tax-product_cat .product-list .product-list-inner .woocommerce-no-products-found .woocommerce-info,
.tax-product_cat .product-list .product-list-inner .woocommerce-no-products-found .woocommerce-message { justify-content: center; -webkit-justify-content: center; padding: 0px; border: none; gap: 0px; }
.tax-product_cat .product-list .product-list-inner .woocommerce-no-products-found .woocommerce-error::before, 
.tax-product_cat .product-list .product-list-inner .woocommerce-no-products-found .woocommerce-info::before,
.tax-product_cat .product-list .product-list-inner .woocommerce-no-products-found .woocommerce-message::before { display: none; } 


/* =========================== Need Anything section starts =========================== */
.need-anything-wrapper { background: var(--white-color); padding: 64px 0px; border-radius: 30px;  }
.need-anything .container { padding-bottom: 0px; border-bottom: none; }
.need-anything-card  { position: relative; padding: 0px 42px; height: 100%; }
.need-anything-card .icon { width: 136px; margin: 0px auto 43px;  }
.need-anything-card .icon img { width: 100%; height: auto; }
.need-anything-card .desc-title { margin-bottom: 17px; }
.need-anything-card .desc { height: calc(100% - 179px); display: flex; display: -webkit-flex; flex-direction: column; -webkit-flex-direction: column; justify-content: space-between; -webkit-justify-content: space-between; align-items: center; -webkit-align-items: center; }
.need-anything-card .desc-inner p { margin-bottom: 30px; }
.need-anything .row .row > .col-md-4 { position: relative; }
.need-anything .row .row > .col-md-4:not(:last-child)::after  { content: ''; position: absolute; bottom: 0px; right: 0px; height: calc(100% - 179px); background: var(--grey-color-400); width: 1px;  }
.need-anything-card .secondary-theme-btn { display: block; width: fit-content; margin-right: auto; }

/* =========================== 404 page =========================== */
.error404 .error-page  { padding: 85px 0px 0px; }
.error404 .error-page .heading-style-1, .error404 .error-page .heading-style-2,
.error404 .error-page .heading-style-5 { text-align: center; }
.error404 .error-page .heading-style-1 { font-size: 100px; line-height: 1; margin-bottom: 0px; }
.error404 .error-page .heading-style-2 { font-size: 34px; line-height: 1.2; margin-bottom: 35px;  }
.error404 .error-page .heading-style-5 { font-size: 16px; line-height: 1.4; }
.error404 .error-page .theme-btn { width: fit-content; margin: 0px auto; display: block; margin-top: 30px; font-size: 16px; line-height: 1; padding: 16px 30px; }


/* =========================== Footer =========================== */
footer { padding-top: 102px; }
footer .footer-wrap > .container { padding-top: 85px; border-top: 1px solid var(--grey-color-300); }
footer .widget-title { font-size: 14px; line-height: 18px; font-weight: 700; margin-bottom: 15px; text-transform: capitalize; }
footer .menu .menu-item:not(:last-child) { margin-bottom: 14px; }
footer .menu .menu-item .nav-link { display: inline-block; font-size: 14px; line-height: 18px; color: var(--black-color); transition: all 0.5s; -webkit-transition: all 0.5s; }
footer .menu .menu-item .nav-link:hover { color: var(--red-color-200); }
footer .footer-info-wrap figure.wp-block-image { width: 130px; margin-bottom: 38px;  }
footer .footer-info-wrap .wp-block-heading { font-size: 14px; line-height: 18px; font-weight: 700; margin-bottom: 14px; text-transform: capitalize; }
footer .footer-info-wrap .widget-sidebar p { font-size: 14px; line-height: 18px; margin-bottom: 14px; }
footer .footer-info-wrap .widget-sidebar a { /*color: var(--black-color);*/ transition: all 0.5s; -webkit-transition: all 0.5s; }
footer .footer-info-wrap .widget-sidebar a:hover { color: var(--red-color-200); }
footer .footer-info-wrap .widget:nth-last-child(2) { margin-top: 40px; }
footer .footer-info-wrap .widget:not(:last-child) a { color: var(--black-color);  }
footer .footer-info-wrap .widget:not(:last-child) a:hover { color: var(--red-color); }
footer .footer-copyright { margin-top: 32px; }
footer .footer-copyright .flex-wrapper { padding: 24px 0px; border-top: 1px solid rgba(0, 0, 0, 0.1); justify-content: space-between; -webkit-justify-content: space-between; align-items: center; -webkit-align-items: center; gap: 12px; }
footer .footer-copyright .flex-wrapper .footer-copyright-menu .widget-title { display: none; }
footer .footer-copyright .copyright-text p { font-size: 14px; line-height: 18px; color: var(--black-color); }
footer .footer-copyright .flex-wrapper .footer-copyright-menu .menu { display: flex; display: -webkit-flex; }
footer .footer-copyright .flex-wrapper .footer-copyright-menu .menu .menu-item { line-height: 1; }
footer .footer-copyright .flex-wrapper .footer-copyright-menu .menu .menu-item:not(:last-child) { margin: 0px; padding-right: 10px; border-right: 2px solid var(--black-color); }
footer .footer-copyright .flex-wrapper .footer-copyright-menu .menu .menu-item:not(:first-child) { padding-left: 10px; }
footer .footer-copyright .flex-wrapper .footer-copyright-menu .menu .menu-item .nav-link { line-height: 1; }

@media (min-width: 1170px) and (max-width: 1499px) {

    /* =========================== Global =========================== */
    body { padding-top: 82px; }
    .container { max-width: 1140px; }
    .dgwt-wcas-open-pirx .dgwt-wcas-details-outside .dgwt-wcas-details-wrapp, 
    .dgwt-wcas-open-pirx .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp { max-height: calc(100dvh - 200px) !important; overflow-y: auto; }

    .select2-container--default .select2-selection--single .select2-selection__arrow::after  { font-size: 14px; }
    /* =========================== Banner =========================== */
    .banner-slider .slider-left-desc  { padding-right: 0px !important; }
    
    /* =========================== Header =========================== */
    header .navbar-brand { width: 120px; }
    .megamenu .main-nav-wrapper > .nav-item .nav-link { font-size: 16px; line-height: 18px; }
    .megamenu .main-nav-wrapper .sub-menu { padding: 40px 0px; }
    .megamenu .sub-nav-item { margin-bottom: 16px; }
    .megamenu .sub-nav-item .sub-nav-link { font-size: 18px; line-height: 24px; }
    .megamenu .sub-nav-wrapper { max-height: calc(100dvh - 162px);  }
    .megamenu .sibling-sub-menu-inner {  max-height: calc(100dvh - 162px); }
    .megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item .sibling-sub-inner-nav-link { font-size: 14px;  }
    header .main-menu .action-btns-inner .theme-btn  { padding: 12px 26px; font-size: 14px; }
    header .main-menu .action-btns-inner .cart-img  { width: 18px; }
    header .main-menu .action-btns-inner .action-link .badge { top: -6px; right: -6px; width: 16px; height: 16px; font-size: 7px; }
    .need-anything-card { padding: 0px 25px; }
    .tax-product_cat .inner-banner .inner-banner-content { max-width: 36%; }
    
}



@media (min-width: 992px) and (max-width: 1169px) {

    /* =========================== Global =========================== */

    .heading-style-1 { font-size: 50px; line-height: 58px; }
    .heading-style-2 { font-size: 42px; line-height: 50px; }
    .heading-style-3 { font-size: 36px; line-height: 44px; }
    .heading-style-4 { font-size: 30px; line-height: 38px; }
    .heading-style-5 { font-size: 26px; line-height: 32px; }
    .heading-style-6 { font-size: 24px; line-height: 32px; }
    .text-sm { font-size: 14px; line-height: 22px; }
    .text-md { font-size: 16px; line-height: 24px; }
    .text-lg { font-size: 18px; line-height: 26px; }
    .text-xl { font-size: 20px; line-height: 28px; }    
    .text-xxl { font-size: 25px; line-height: 33px; }
    .theme-btn {  font-size: 18px; line-height: 22px; padding: 16px 36px; }
    .secondary-theme-btn { min-width: 105px; padding: 12px 30px;  }
    .not-sure .text-xxl {  margin-top: 50px; }
    .btn-wrapper { margin-top: 40px; gap: 16px; }
    .btn-wrapper .btn { font-size: 18px; line-height: 22px; padding: 16px 36px; min-width: 158px; }

    body { padding-top: 72px; }
    .container { max-width: 960px; }
    .common-desc-padding { padding-block: 60px;  }
    .common-title { max-width: 862px; margin: 0px auto 57px; }
    .secondary-common-title { margin-bottom: 48px; }
    .common-title .headline { margin-bottom: 16px; }
    .common-title .btn-wrapper { margin-top: 38px; }

    /*slick slider*/
    .slick-dots { bottom: -30px; }
    .slick-dots li, .slick-dots li button { padding: 0px; width: 12px; height: 12px;  }

    /*form style*/
    .form-group { margin-bottom: 16px; }
    .form-control { font-size: 16px; border-radius: 6px; padding: 14px;  }
    .form-wrapper .title { margin-bottom: 22px;  }
    .form-group >:has(.wpcf7-submit), .form-group p >:has(.wpcf7-submit)  { margin-top: 26px; }

    /*breadcrumb*/
    .breadcrumb-wrapper { padding: 10px 0px; }

    /*searchbar wrapper*/
    .searchbar-wrapper .searchbar-inner::before { left: 16px;  font-size: 16px;  }
    .searchbar-wrapper .searchbar-inner input { padding: 20px 120px 20px 40px; font-size: 16px; }
    .searchbar-wrapper .result-wrapper { padding: 20px 20px 20px 40px; }
    .searchbar-wrapper .searchbar-inner .clear-btn { padding: 12px 26px; right: 12px; }

    /*select2*/
    .select2-container .select2-selection--single .select2-selection__rendered,
    .select2-results__option { font-size: 14px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow::after  { font-size: 13px; }

    /*wocommerce msg*/
    .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
        padding: 15px 20px;   
        min-width: 110px;     
    }

    /*empty cart message*/
    .woocommerce:has(> .wc-empty-cart-message) { padding-top: 50px; }
    .woocommerce:has(> .wc-empty-cart-message) .return-to-shop .button { font-size: 14px; padding: 14px 20px; }

    /* =========================== Header =========================== */
    header .navbar-brand { width: 100px; }
    .megamenu .main-nav-wrapper { gap: 14px; }
    .megamenu .main-nav-wrapper > .nav-item .nav-link { font-size: 14px; line-height: 16px; padding: 28px 22px 28px 0px; }
    .megamenu .main-nav-wrapper .sub-menu { padding: 40px 0px; }
    .megamenu .sub-nav-wrapper { max-height: calc(100dvh - 152px); padding-right: 20px;  }
    .megamenu .sibling-sub-menu-inner {  max-height: calc(100dvh - 152px); }
    .megamenu .main-nav-wrapper > .nav-item:hover > .sub-menu { display: none; }
    .megamenu .main-nav-wrapper > .nav-item.active > .sub-menu { display: block; }
    .megamenu .sub-nav-item { margin-bottom: 16px; }
    .megamenu .sub-nav-item .sub-nav-link { font-size: 16px; line-height: 22px; position: relative; }
    .megamenu .sub-nav-item .sub-nav-link-wrapper .sub-nav-link::after { content: ''; position: absolute; background: rgba(0, 0, 0, 0.1); top: 2px; right: -6px; width: 1px; height: 18px; }
    .megamenu .sub-nav-item .sub-nav-link-wrapper .btn { display: flex; display: -webkit-flex; }
    .megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item .sibling-sub-inner-nav-link { font-size: 14px;  }

    .megamenu .main-nav-wrapper > .nav-item:not(.nav-item.current-page-item) .nav-link:hover, .megamenu .sub-nav-item:not(.sub-nav-item.current-page-item) .sub-nav-link:hover,
    .megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item:not(.sibling-sub-inner-nav-item.current-page-item) .sibling-sub-inner-nav-link:hover { color: var(--black-color); }

    header .main-menu .action-btns-inner { gap: 14px; }
    header .main-menu .action-btns-inner .theme-btn  { padding: 12px 26px; font-size: 14px; }
    header .main-menu .action-btns-inner .cart-img  { width: 18px; }
    header .main-menu .action-btns-inner .action-link .badge { top: -6px; right: -6px; width: 16px; height: 16px; font-size: 7px; }
    header .main-menu .action-btns-inner .dropdown a.btn { font-size: 15px; }
    header .main-menu .action-btns-inner .action-link .fa-search { font-size: 18px; }

    .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { padding-block: 8.5px; }
    .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input  { border-radius: 4px; }
    .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit { top: 1.5px; }
    .dgwt-wcas-open-pirx .dgwt-wcas-details-outside .dgwt-wcas-details-wrapp, 
    .dgwt-wcas-open-pirx .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp { max-height: calc(100dvh - 200px) !important; overflow-y: auto; }


    /* =========================== Inner Banner =========================== */
    .inner-banner { padding: 55px 0px 45px;  }
    .inner-banner .inner-banner-content { padding-left: 30px; }
    .inner-banner .inner-banner-content .headline { margin-bottom: 14px; }
    .inner-banner .inner-banner-content .desc { margin-bottom: 26px; }
    .tax-product_cat .inner-banner .inner-banner-content { max-width: 40%; }


    /* =========================== Need Anything section starts =========================== */
    .need-anything-wrapper {  padding: 44px 0px; border-radius: 16px;  }
    .need-anything-card  {  padding: 0px 6px; }
    .need-anything-card .icon { width: 76px; margin: 0px auto 23px;  }
    .need-anything-card .desc-title { margin-bottom: 16px; }
    .need-anything-card .desc-inner p { margin-bottom: 26px; }
    .need-anything-card .desc { height: calc(100% - 99px); }
    .need-anything .row .row > .col-md-4:not(:last-child)::after  { height: calc(100% - 99px);   }


    /* =========================== 404 page =========================== */
    .error404 .error-page  { padding: 50px 0px 0px; }
    .error404 .error-page .heading-style-1 { font-size: 70px;  }
    .error404 .error-page .heading-style-2 { font-size: 22px; margin-bottom: 30px; }
    .error404 .error-page .heading-style-5 { font-size: 14px; }
    .error404 .error-page .theme-btn { font-size: 14px;  padding: 14px 20px; }

    /* =========================== Footer =========================== */
    footer { padding-top: 50px; }
    footer .footer-wrap > .container{ padding-top: 50px; }
    footer .widget-title { margin-bottom: 14px; }
    footer .menu .menu-item:not(:last-child) { margin-bottom: 12px; }
    footer .footer-info-wrap figure.wp-block-image { margin-bottom: 28px; width: 100px; }
    /* footer .footer-info-wrap .wp-block-heading { margin-bottom: 14px; }
    footer .menu .menu-item .nav-link,
    footer .footer-info-wrap .widget-sidebar p,
    footer .footer-copyright .copyright-text p { font-size: 14px; line-height: 18px; } */
    footer .footer-copyright .flex-wrapper { padding: 20px 0px; }

}

@media (max-width: 992px) {
    .dgwt-wcas-open-pirx .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp,
    .dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return  { border-radius: 0px; box-shadow: none; }
}

@media (min-width: 768px) and (max-width: 991px) {

    /* =========================== Global =========================== */

    .heading-style-1 { font-size: 42px; line-height: 50px; }
    .heading-style-2 { font-size: 36px; line-height: 44px; }
    .heading-style-3 { font-size: 30px; line-height: 40px; }
    .heading-style-4 { font-size: 26px; line-height: 36px; }
    .heading-style-5 { font-size: 24px; line-height: 30px; }
    .heading-style-6 { font-size: 20px; line-height: 28px; }
    .text-sm { font-size: 12px; line-height: 22px; }
    .text-md { font-size: 14px; line-height: 22px; }
    .text-lg { font-size: 16px; line-height: 24px; }
    .text-xl { font-size: 18px; line-height: 26px; }    
    .text-xxl { font-size: 20px; line-height: 28px; }

    .theme-btn {  font-size: 16px; line-height: 20px; padding: 12px 32px; }
    .secondary-theme-btn { min-width: 105px; font-size: 14px; line-height: 17px; padding: 12px 30px;  }
    .not-sure .text-xxl {  margin-top: 30px; }
    .btn-wrapper { margin-top: 30px; gap: 12px; }
    .btn-wrapper .btn { font-size: 16px; line-height: 20px; padding: 12px 32px; min-width: 140px; }

    body { padding-top: 79px; }
    .container { max-width: 720px; }
    .common-desc-padding { padding-block: 40px;  }
    .common-title { max-width: 100%; margin: 0px auto 47px; }
    .secondary-common-title { margin-bottom: 42px; }
    .common-title .headline { margin-bottom: 16px; }
    .common-title .btn-wrapper { margin-top: 28px; }

    /*slick slider*/
    .slick-dots { bottom: -26px; }
    .slick-dots li, .slick-dots li button { padding: 0px; width: 12px; height: 12px;  }

    /*woocommerce*/
    .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
        font-size: 14px;
        min-width: 110px;     
    }
    /*empty cart message*/
    .woocommerce:has(> .wc-empty-cart-message) { padding-top: 40px; }
    .woocommerce:has(> .wc-empty-cart-message) .return-to-shop .button { font-size: 14px; padding: 14px 20px; }

    /*form style*/
    .form-group { margin-bottom: 16px; }
    .form-control { font-size: 14px; border-radius: 6px; padding: 12px;  }
    .form-wrapper .title { margin-bottom: 22px;  }
    .form-group >:has(.wpcf7-submit), .form-group p >:has(.wpcf7-submit)  { margin-top: 18px; }

    /*breadcrumb*/
    .breadcrumb-wrapper { padding: 10px 0px; }

    /*searchbar wrapper*/
    .searchbar-wrapper .searchbar-inner::before { left: 16px;  font-size: 14px;  }
    .searchbar-wrapper .searchbar-inner input { padding: 16px 100px 16px 40px; font-size: 14px; }
    .searchbar-wrapper .searchbar-inner .clear-btn { padding: 10px 20px; font-size: 12px; right: 10px; }
    .searchbar-wrapper .result-wrapper li { font-size: 14px; }

    /*select2*/
    .select2-container .select2-selection--single .select2-selection__rendered,
    .select2-results__option { font-size: 14px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow::after  { font-size: 12px; }

    /*wocommerce msg*/
    .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
        padding: 15px 20px;        
    }

    /* =========================== Header =========================== */
    header .dgwt-wcas-search-wrapp { position: relative; }
    header { padding: 10px 0px; }
    header .navbar-brand { width: 100px; }
    .megamenu { position: absolute; top: 68px; transition: transform 0.5s ease-in-out; -webkit-transition: transform 0.5s ease-in-out; left: 50%; transform: translate(100%, 0%); -webkit-transform: translate(100%, -0%); width: 100vw; background: var(--white-color); height: calc(100dvh - 78px); padding-right: 0px;  }
    body.open-menu .megamenu { transform: translate(-50%, 0%); -webkit-transform: translate(-50%, 0%); }
    .megamenu .main-nav-wrapper { gap: 0px; flex-direction: column; -webkit-flex-direction: column; width: 100%; max-width: 720px; margin: 0px auto; padding: 0px 16px; height: 100%; overflow-y: auto; }
    .megamenu .main-nav-wrapper > .nav-item .nav-link { font-size: 14px; line-height: 16px; padding: 20px 20px 20px 0px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .megamenu .main-nav-wrapper > .nav-item:last-child .nav-link::before { display: none; }

    .megamenu .main-nav-wrapper > .nav-item .nav-link::after { display: none; height: 2px; }
    .megamenu .main-nav-wrapper > .nav-item.active .nav-link::before { transform:  translateY(-40%) rotate(180deg); -webkit-transform:  translateY(-40%) rotate(180deg); }
    .megamenu .main-nav-wrapper .sub-menu { padding: 20px 0px 6px; }
    .megamenu .main-nav-wrapper > .nav-item:hover > .sub-menu { display: none; }
    .megamenu .main-nav-wrapper > .nav-item.active > .sub-menu { display: block; border: none; }
    .megamenu .main-nav-wrapper > .nav-item > .sub-menu { position: unset; transform: translate(0px, 0px); -webkit-transform: translate(0px, 0px); width: 100%; }
    .megamenu .main-nav-wrapper .sub-menu .container { padding: 0px; }
    .megamenu .sub-nav-wrapper { width: 100%; padding: 12px 20px; border: 1px solid rgba(0, 0, 0, 0.1);  border-radius: 10px; max-height: unset; }
    .megamenu .sub-nav-item { margin-bottom: 0px; }
    .megamenu .sub-nav-item .sub-nav-link { position: relative; font-size: 18px; line-height: 24px; width: 100%; display: block;  }
    .megamenu .sub-nav-item .sub-nav-link-wrapper:has(~ .sub-menu-inner) .sub-nav-link::after { content: ''; position: absolute; background: rgba(0, 0, 0, 0.1); top: 4px; right: -6px; width: 1px; height: 18px; }
    .megamenu .sub-nav-item .sub-nav-link-wrapper { padding: 10px 0px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .megamenu .sub-nav-item:first-child .sub-nav-link-wrapper { padding-top: 0px; }
    .megamenu .sub-nav-item:last-child .sub-nav-link-wrapper  { padding-bottom: 0px; border-bottom: none; }
    .megamenu .sub-nav-item.active  .sub-nav-link-wrapper { border-bottom: none; padding-bottom: 0px; }
    .megamenu .sub-nav-item .sub-nav-link-wrapper .btn { display: flex; display: -webkit-flex; transform: rotate(90deg); -webkit-transform: rotate(90deg); }
    .megamenu .sub-nav-item.active .sub-nav-link-wrapper .btn { transform: rotate(270deg); -webkit-transform: rotate(270deg); }
    .megamenu .sub-nav-item .sub-menu-inner { display: none; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 10px; padding: 12px 6px 12px 12px; margin: 10px 0px; }
    .megamenu .sub-nav-item.active .sub-menu-inner { display: block; }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-wrapper { max-height: 450px; overflow-y: auto; padding-right: 8px; }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-item.current-page-item .sub-inner-nav-link { color: var(--red-color-200); }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-link { color: var(--black-color); padding: 10px 0px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); display: block;  }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-item:first-child .sub-inner-nav-link { padding-top: 0px; }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-item:last-child .sub-inner-nav-link { border-bottom: none; padding-bottom: 0px; }

    .megamenu .sibling-sub-menu-inner { display: none; max-height: unset; }
    .megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item .sibling-sub-inner-nav-link { font-size: 14px;  }
    .megamenu .main-nav-wrapper > .nav-item:not(.nav-item.current-page-item) .nav-link:hover, .megamenu .sub-nav-item:not(.sub-nav-item.current-page-item) .sub-nav-link:hover,
    .megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item:not(.sibling-sub-inner-nav-item.current-page-item) .sibling-sub-inner-nav-link:hover { color: var(--black-color); }

    header .main-menu .action-btns-inner li:not(.dropdown-menu li):first-child { display: block; order: 1; }
    header .main-menu .action-btns-inner .menu-btn { color: var(--red-color); font-size: 26px; line-height: 1; width: 36px; height: 30px; display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; border: none; border-radius: 0px; padding: 0px; background: var(--white-color); }
    header .main-menu .action-btns-inner .menu-btn .fa-times { display: none; }
    header .main-menu .action-btns-inner .menu-btn.active .fa-times { display: block; }
    header .main-menu .action-btns-inner .menu-btn.active .fa-bars { display: none; }
    header .main-menu .action-btns-inner { gap: 14px; }
    header .main-menu .action-btns-inner .theme-btn  { padding: 12px 26px; font-size: 14px; }
    header .main-menu .action-btns-inner .cart-img  { width: 18px; }
    header .main-menu .action-btns-inner .action-link .badge { top: -6px; right: -6px; width: 16px; height: 16px; font-size: 7px; }
    header .main-menu .action-btns-inner .dropdown a.btn { font-size: 14px; }
    header .main-menu .action-btns-inner .dropdown-menu .dropdown-item { font-size: 14px; line-height: 1; }
    header .main-menu .action-btns-inner .action-link .fa-search { font-size: 16px; }
    header .main-menu .action-btns-inner li:nth-child(2) { display: none; }

    .megamenu .main-nav-wrapper .single-menu-item .sub-menu.single-menu { padding: 16px 0 4px; box-shadow: none;}
    .megamenu .main-nav-wrapper .single-menu-item .sub-nav-wrapper { border: 1px solid rgba(0, 0, 0, 0.1); padding: 10px;}
    .megamenu .main-nav-wrapper .single-menu-item .sub-nav-link-wrapper{ border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding: 10px 0;}
    .megamenu .main-nav-wrapper .single-menu-item .menu-item:first-child .sub-nav-link-wrapper{ padding-top:0;}
    .megamenu .main-nav-wrapper .single-menu-item .menu-item:last-child .sub-nav-link-wrapper{ padding-bottom:0; border-bottom: 0;}

    /*Searchbar plugin*/
    .dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp-mobile .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { padding-right: 40px;}
    .dgwt-wcas-open-pirx .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp,
    .dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return  { border-radius: 0px; box-shadow: none; }

    .dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp { border-top: none; }
    .js-dgwt-wcas-overlay-mobile .dgwt-wcas-om-bar  { border-bottom: 1px solid #e0e2e5; height: unset; }
    .dgwt-wcas-open-pirx .dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp>.dgwt-wcas-suggestion,
    .dgwt-wcas-open-pirx body.dgwt-wcas-details-left .dgwt-wcas-details-wrapp { box-shadow: none; -webkit-box-shadow: none; border-bottom: 1px solid #e0e2e5; }
    .dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline .dgwt-wcas-st { border-bottom: none; }
    .dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp { max-height: unset !important; }


    /* =========================== Inner Banner =========================== */
    .inner-banner { padding: 50px 0px 40px;  }
    .inner-banner .inner-banner-content { padding-left: 15px; }
    .inner-banner .inner-banner-content .headline { margin-bottom: 14px; }
    .inner-banner .inner-banner-content .desc { margin-bottom: 26px; }
    .tax-product_cat .inner-banner .inner-banner-content { max-width: 50%; }

    /* =========================== Need Anything section starts =========================== */
    .need-anything-wrapper {  padding: 24px 0px; border-radius: 12px;  }
    .need-anything-card  {  padding: 0px 6px; }
    .need-anything-card .icon { width: 56px; margin: 0px auto 23px;  }
    .need-anything-card .desc-title { margin-bottom: 16px; }
    .need-anything-card .desc-inner p { margin-bottom: 26px; }
    .need-anything-card .desc { height: calc(100% - 79px); }
    .need-anything .row .row > .col-md-4:not(:last-child)::after  { height: calc(100% - 79px);   }


    /* =========================== 404 page =========================== */
    .error404 .error-page  { padding: 40px 0px 0px; }
    .error404 .error-page .heading-style-1 { font-size: 50px; margin-bottom: 6px;  }
    .error404 .error-page .heading-style-2 { font-size: 22px; margin-bottom: 24px; }
    .error404 .error-page .heading-style-5 { font-size: 14px; }
    .error404 .error-page .theme-btn { font-size: 14px;  padding: 14px 20px; }


    /* =========================== Footer =========================== */
    footer { padding-top: 30px; }
    footer .footer-wrap > .container { padding-top: 30px; }
    footer .widget-title { margin-bottom: 14px; }
    footer .menu .menu-item:not(:last-child) { margin-bottom: 12px; }
    footer .footer-info-wrap figure.wp-block-image { margin-bottom: 28px; width: 100px; }
    /* footer .footer-info-wrap .wp-block-heading { margin-bottom: 14px; } */
    /* footer .menu .menu-item .nav-link,
    footer .footer-info-wrap .widget-sidebar p,
    footer .footer-copyright .copyright-text p { font-size: 14px; line-height: 18px; } */
    footer .footer-copyright .flex-wrapper { padding: 20px 0px; }
    footer .row .col-md-3 { margin-bottom: 30px; }

}

@media (max-width: 767px) {

    /* =========================== Global =========================== */

    .heading-style-1 { font-size: 34px; line-height: 42px; }
    .heading-style-2 { font-size: 30px; line-height: 38px; }
    .heading-style-3 { font-size: 26px; line-height: 34px; }
    .heading-style-4 { font-size: 22px; line-height: 30px; }
    .heading-style-5 { font-size: 20px; line-height: 26px; }
    .heading-style-6 { font-size: 18px; line-height: 26px; }
    .text-sm { font-size: 12px; line-height: 20px; }
    .text-md { font-size: 14px; line-height: 22px; }
    .text-lg { font-size: 16px; line-height: 24px; }
    .text-xl { font-size: 18px; line-height: 26px; }    
    .text-xxl { font-size: 20px; line-height: 28px; }
    .theme-btn {  font-size: 14px; line-height: 18px; padding: 12px 22px; }
    .secondary-theme-btn { min-width: 105px; font-size: 14px; line-height: 17px; padding: 10px 30px;  }
    .not-sure .text-xxl {  margin-top: 30px; }
    .btn-wrapper { margin-top: 30px; gap: 12px; }
    .btn-wrapper .btn { font-size: 14px; line-height: 18px; padding: 12px 22px; min-width: 130px; }
    body { padding-top: 58px; }
    .container { max-width: 100%; }
    .common-desc-padding { padding-block: 30px;  }
    .common-title { max-width: 100%; margin: 0px auto 40px; }
    .secondary-common-title { margin-bottom: 38px; }
    .common-title .headline { margin-bottom: 12px; }
    .common-title .btn-wrapper .theme-btn, .common-title .btn-wrapper .secondary-theme-btn { font-size: 14px; min-width: 105px; }
    .common-title .btn-wrapper { margin-top: 28px; }

    /*slick slider*/
    .slick-dots { bottom: -26px; }
    .slick-dots li, .slick-dots li button { padding: 0px; width: 12px; height: 12px;  }

    /*wocommerce msg*/
    .woocommerce-error, .woocommerce-info, .woocommerce-message { flex-direction: column; -webkit-flex-direction: column; align-items: flex-start; align-items: flex-start; }
    .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
        font-size: 14px;
        padding: 12px 18px;
        min-width: 110px;     
        margin: 0px;
    }

    /*empty cart message*/
    .woocommerce:has(> .wc-empty-cart-message) { padding-top: 40px; }
    .woocommerce:has(> .wc-empty-cart-message) .return-to-shop .button { font-size: 14px; padding: 14px 20px; }

    /*form style*/
    .form-group { margin-bottom: 16px; }
    .form-control { font-size: 14px; border-radius: 6px; padding: 12px;  }
    .form-wrapper .title { margin-bottom: 18px;  }
    .form-group >:has(.wpcf7-submit), .form-group p >:has(.wpcf7-submit)  { margin-top: 18px; }

    /*breadcrumb*/
    .breadcrumb-wrapper { padding: 10px 0px; }

    /*searchbar wrapper*/
    .searchbar-wrapper .searchbar-inner::before { left: 16px;  font-size: 14px;  }
    .searchbar-wrapper .searchbar-inner input { padding: 16px 80px 16px 40px; font-size: 14px; border-radius: 6px; }
    .searchbar-wrapper .result-wrapper { padding: 20px 20px 20px 40px; }
    .searchbar-wrapper .searchbar-inner .clear-btn { padding: 10px 16px; font-size: 12px; right: 8px; }
    .searchbar-wrapper .result-wrapper li { font-size: 14px; }

    /*select2*/
    .select2-container .select2-selection--single .select2-selection__rendered,
    .select2-results__option { font-size: 14px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow::after  { font-size: 12px; }

    /*loader style*/
    .overlay-loader .loader, .main-loader .loader {
        border: 5px solid var(--grey-color-200);
        border-top: 5px solid var(--red-color);
        width: 50px;
        height: 50px;
    }

    /* =========================== Header =========================== */
    header .dgwt-wcas-search-wrapp { position: relative; }
    header { padding: 10px 0px; }
    header .navbar-brand { width: 72px; }
    .megamenu { position: absolute; top: 48px; left: 50%; transition: transform 0.5s ease-in-out; -webkit-transition: transform 0.5s ease-in-out; left: 50%; transform: translate(100%, 0%); -webkit-transform: translate(100%, -0%); width: 100vw; background: var(--white-color); height: calc(100dvh - 58px); padding-right: 10px; }
    body.open-menu .megamenu { transform: translate(-50%, 0%); -webkit-transform: translate(-50%, 0%); }
    .megamenu .main-nav-wrapper { gap: 0px; flex-direction: column; -webkit-flex-direction: column; width: 100%; max-width: 100%; margin: 0px auto; padding: 0px 16px; height: 100%; overflow-y: auto; }
    .megamenu .main-nav-wrapper > .nav-item .nav-link { font-size: 12px; line-height: 14px; padding: 16px 20px 16px 0px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .megamenu .main-nav-wrapper > .nav-item:last-child .nav-link::before{ display: none; }
    .megamenu .main-nav-wrapper > .nav-item .nav-link::after { display: none; height: 2px; }
    .megamenu .main-nav-wrapper > .nav-item.active .nav-link::before { transform:  translateY(-40%) rotate(180deg); -webkit-transform:  translateY(-40%) rotate(180deg); }
    .megamenu .main-nav-wrapper .sub-menu { padding: 16px 0px 4px; }
    .megamenu .main-nav-wrapper > .nav-item:hover > .sub-menu { display: none;  }
    .megamenu .main-nav-wrapper > .nav-item.active > .sub-menu { display: block; border: none; }
    .megamenu .main-nav-wrapper > .nav-item > .sub-menu { position: unset; transform: translate(0px, 0px); -webkit-transform: translate(0px, 0px); width: 100%; }
    .megamenu .main-nav-wrapper .sub-menu .container { padding: 0px; }
    .megamenu .sub-nav-wrapper { width: 100%; padding: 10px; border: 1px solid rgba(0, 0, 0, 0.1);  border-radius: 10px; max-height: unset; }
    .megamenu .sub-nav-item { margin-bottom: 0px; }
    .megamenu .sub-nav-item .sub-nav-link { position: relative; font-size: 14px; line-height: 20px; width: 100%; display: block;  }
    .megamenu .sub-nav-item .sub-nav-link-wrapper:has(~ .sub-menu-inner) .sub-nav-link::after { content: ''; position: absolute; background: rgba(0, 0, 0, 0.1); top: 3px; right: -6px; width: 1px; height: 15px; }
    .megamenu .sub-nav-item .sub-nav-link-wrapper { padding: 10px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .megamenu .sub-nav-item:first-child .sub-nav-link-wrapper { padding-top: 0px; }
    .megamenu .sub-nav-item:last-child .sub-nav-link-wrapper  { padding-bottom: 0px; border-bottom: none; }
    .megamenu .sub-nav-item.active  .sub-nav-link-wrapper { border-bottom: none; padding-bottom: 0px; }

    .megamenu .sub-nav-item .sub-nav-link-wrapper .btn { display: flex; display: -webkit-flex; transform: rotate(90deg); -webkit-transform: rotate(90deg); }
    .megamenu .sub-nav-item.active .sub-nav-link-wrapper .btn { transform: rotate(270deg); -webkit-transform: rotate(270deg); }
    .megamenu .sub-nav-item .sub-menu-inner { display: none; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 10px; padding: 12px 6px 12px 12px; margin: 5px 0px; }
    .megamenu .sub-nav-item.active .sub-menu-inner { display: block; }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-wrapper { max-height: 400px; overflow-y: auto; padding-right: 8px; }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-item.current-page-item .sub-inner-nav-link { color: var(--red-color-200); }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-link { font-size: 14px; line-height: 20px; color: var(--black-color); padding: 10px 0px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); display: block;  }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-item:first-child .sub-inner-nav-link { padding-top: 0px; }
    .megamenu .sub-nav-item .sub-menu-inner .sub-inner-nav-item:last-child .sub-inner-nav-link { border-bottom: none; padding-bottom: 0px; }
    .megamenu .sibling-sub-menu-inner { display: none; max-height: unset; }
    .megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item .sibling-sub-inner-nav-link { font-size: 14px;  }
    .megamenu .main-nav-wrapper > .nav-item:not(.nav-item.current-page-item) .nav-link:hover, .megamenu .sub-nav-item:not(.sub-nav-item.current-page-item) .sub-nav-link:hover,
    .megamenu .sibling-sub-menu-inner .sibling-sub-inner-nav-wrapper .sibling-sub-inner-nav-item:not(.sibling-sub-inner-nav-item.current-page-item) .sibling-sub-inner-nav-link:hover { color: var(--black-color); }
    header .main-menu .action-btns-inner li:not(.dropdown-menu li):first-child { display: block; order: 1; }
    header .main-menu .action-btns-inner .menu-btn { color: var(--red-color); font-size: 26px; line-height: 1; width: 30px; height: 26px; display: flex; display: -webkit-flex; justify-content: center; -webkit-justify-content: center; align-items: center; -webkit-align-items: center; border: none; border-radius: 0px; padding: 0px; background: var(--white-color); }
    header .main-menu .action-btns-inner .menu-btn .fa-times { display: none; }
    header .main-menu .action-btns-inner .menu-btn.active .fa-times { display: block; }
    header .main-menu .action-btns-inner .menu-btn.active .fa-bars { display: none; }
    header .main-menu .action-btns-inner { gap: 9px; }
    header .main-menu .action-btns-inner .theme-btn  { padding: 8px; font-size: 12px; }
    header .main-menu .action-btns-inner .cart-img  { width: 14px; }
    header .main-menu .action-btns-inner .action-link .badge { top: 80%; right: auto; left: 50%; transform: translateX(-50%); -webkit-transform: translateX(-50%);  width: 14px; height: 14px; font-size: 7px; }
    header .main-menu .action-btns-inner .dropdown a.btn { font-size: 14px; }
    header .main-menu .action-btns-inner .dropdown-menu .dropdown-item { font-size: 14px; line-height: 1; }
    header .main-menu .action-btns-inner .select-wrapper .select2-container .select2-selection--single .select2-selection__rendered, .select2-results__option--selectable { font-size: 11px; padding-left: 4px; padding-right: 18px; }
    header .main-menu .action-btns-inner .action-link .fa-search { font-size: 14px; }
    header .main-menu .action-btns-inner li:nth-child(2) { display: none; }

    .megamenu .main-nav-wrapper .single-menu-item .sub-menu.single-menu { padding: 16px 0 4px; box-shadow: none;}
    .megamenu .main-nav-wrapper .single-menu-item .sub-nav-wrapper { border: 1px solid rgba(0, 0, 0, 0.1); padding: 10px;}
    .megamenu .main-nav-wrapper .single-menu-item .sub-nav-link-wrapper{ border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding: 10px 0;}
    .megamenu .main-nav-wrapper .single-menu-item .menu-item:first-child .sub-nav-link-wrapper{ padding-top:0;}
    .megamenu .main-nav-wrapper .single-menu-item .menu-item:last-child .sub-nav-link-wrapper{ padding-bottom:0; border-bottom: 0;}

    /*Searchbar plugin*/
    .dgwt-wcas-style-pirx.dgwt-wcas-search-wrapp-mobile .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input { padding-right: 40px;}
    .dgwt-wcas-open-pirx .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp,
    .dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-om-bar button.dgwt-wcas-om-return  { border-radius: 0px; box-shadow: none; }
    .dgwt-wcas-open-pirx.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp { border-top: none; }
    .js-dgwt-wcas-overlay-mobile .dgwt-wcas-om-bar  { border-bottom: 1px solid #e0e2e5; height: unset; }
    .dgwt-wcas-open-pirx .dgwt-wcas-full-width .dgwt-wcas-suggestions-wrapp>.dgwt-wcas-suggestion,
    .dgwt-wcas-open-pirx body.dgwt-wcas-details-left .dgwt-wcas-details-wrapp { box-shadow: none; -webkit-box-shadow: none; border-bottom: 1px solid #e0e2e5; }
    .dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline .dgwt-wcas-st { border-bottom: none; }
    .dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp { max-height: unset !important; }


    /* =========================== Inner Banner =========================== */
    .inner-banner { padding: 40px 0px;  }
    .inner-banner::after { display: block; }
    .inner-banner .inner-banner-content { color: var(--white-color); padding-left: 0px; }
    .inner-banner .inner-banner-content .headline br, 
    .inner-banner .inner-banner-content .desc br { display: none; }
    .inner-banner .inner-banner-content .headline { margin-bottom: 12px; }
    .inner-banner .inner-banner-content .desc { margin-bottom: 26px; }
    .inner-banner .inner-banner-content .theme-btn { font-size: 14px; padding: 14px 26px; min-width: 105px; }
    .tax-product_cat .inner-banner .inner-banner-content { max-width: 100%; }


    /* =========================== Need Anything section starts =========================== */
    .need-anything-wrapper {  padding: 20px 16px; border-radius: 12px;  }
    .need-anything-card  {  padding: 0px 0px 30px; text-align: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .need-anything-card .icon { width: 46px; margin: 0px auto 20px;  }
    .need-anything-card .desc-title { margin-bottom: 12px; }
    .need-anything-card .desc-title br { display: none; }
    .need-anything-card .desc-inner p { margin-bottom: 22px; }
    .need-anything-card .desc { height: auto; }
    .need-anything .row .row > .col-md-4:not(:last-child) { margin-bottom: 30px; }
    .need-anything .row .row > .col-md-4:not(:last-child)::after  {  display: none;   }
    .need-anything-card .secondary-theme-btn { margin-inline: auto; }


    /* =========================== 404 page =========================== */
    .error404 .error-page  { padding: 40px 0px 0px; }
    .error404 .error-page .heading-style-1 { font-size: 50px; margin-bottom: 6px;  }
    .error404 .error-page .heading-style-2 { font-size: 22px; margin-bottom: 24px; }
    .error404 .error-page .heading-style-5 { font-size: 14px; }
    .error404 .error-page .theme-btn { font-size: 14px;  padding: 14px 20px; }

    /* =========================== Footer =========================== */
    footer { padding-top: 30px; }
    footer .footer-wrap > .container { padding-top: 30px; }
    footer  .row .col-md-3 { margin-bottom: 30px; }
    footer .widget-title { margin-bottom: 14px; }
    footer .menu .menu-item:not(:last-child) { margin-bottom: 12px; }
    footer .footer-info-wrap figure.wp-block-image { margin-bottom: 28px; width: 100px; }
    /* footer .footer-info-wrap .wp-block-heading { margin-bottom: 14px; } */
    footer .footer-copyright { margin-top: 16px; }
    /* footer .menu .menu-item .nav-link,
    footer .footer-info-wrap .widget-sidebar p,
    footer .footer-copyright .copyright-text p { font-size: 14px; line-height: 18px; } */
    footer .footer-copyright .copyright-text p  { text-align: center; }
    footer .footer-copyright .flex-wrapper { padding: 20px 0px; flex-direction: column; -webkit-flex-direction: column; }

}

@media (min-width: 576px) and (max-width: 767px) {
    .container, .megamenu .main-nav-wrapper { max-width: 540px; }

}

code {
	border-radius: 3px !important;
    color: #000000 !important;
	background-color: var(--grey-color-1200) !important;
}
.product-characteristics .toggle_content { display: none; }