.listSelect {
    position: relative;
    display: inline-block;
    width: 200px;
}

.lS_main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dropdown-toggle {
    width: 100%;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    /* Left side of the arrow */
    border-right: 5px solid transparent;
    /* Right side of the arrow */
    border-top: 5px solid #333;
    /* Top side of the arrow (colored part) */
    margin-left: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    margin: 0;
    z-index: 1000;
    max-height: 300px;
}

.dropdown-menu li {
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
}

.dropdown-menu li:hover {
    background-color: #f8f9fa;
}

.dropdown-menu.show {
    display: block;
}

.listSelect .dropdown-menu.show {
    width: 100%;
    overflow: hidden;
}

.lS_overflow_min_h {
    min-height: 24px;
    text-overflow: ellipsis;
}

.lS_searchbox input {
    width: 100%;
}

.lS_ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lS_ul_c {
    position: relative;
}

.lS_ul_scroll {
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1 1 auto;
}

.lS_ul li {
    user-select: none;
    font-size: 13px;
    padding: 5px;
    margin-top: 5px;
}

.lS_ul li:last-child {
    margin-bottom: 0 !important;
}

.lS_ul li:hover,
.lS_ul li.scrlSelect {
    background: #eeeeee;
    border-radius: 5px;
}

.filter_page {
    display: inline-block;
    margin-right: 10px;
}

.filter_page .dropdown-toggle {
    padding: 6px;
}

/*CSS Starts Here*/
.cstm-holder {
    padding-top: 30px;
}

.action-holder {
    /*font-family: "Poppins", Sans-serif;*/
    font-size: 20px;
    font-weight: 400;
}

.colr-2 {
    color: #E8514F;
}

/* Flexbox utilities */
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.align-baseline {
    align-items: baseline;
}

.flex-fill {
    flex: 1 1 auto !important;
}

/* Margin */
.m-0 {
    margin: 0;
}

.m-10 {
    margin: 10px;
}

.m-20 {
    margin: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mr-10 {
    margin-right: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-10 {
    margin-left: 10px;
}

.d-none {
    display: none;
}

/* Padding */
.p-0 {
    padding: 0;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pr-10 {
    padding-right: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pl-10 {
    padding-left: 10px;
}

/* Text alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.break-line {
    padding-bottom: 30px;
    border-bottom: 2px solid #999999;
    margin-bottom: 30px;
}

.elementor-element-5eca3d9 {
    display: none !important;
}

.filter-c {
    padding: 0;
    background: #fefaf9;
}

.filter-c .gap-3 {
    margin: 30px 0;
}

.attr-selector {
    /*font-family: "Poppins", Sans-serif;*/
    width: 280px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    background-color: white;
    margin: 20px;
}

.attr-title {
    margin: 0 0 18px 0;
    font-size: 18px;
    color: #333;
}

.attr-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attr-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.attr-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.attr-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #aaa;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background-color: white;
}

/* Checkmark/tick design */
.custom-checkbox::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #E8514F;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.attr-options-scroll {
    height: 250px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
}

.attr-option input[type="checkbox"]:checked~.attr-option-content .custom-checkbox {
    border-color: #000;
    background-color: #fff;
}

.attr-option input[type="checkbox"]:checked~.attr-option-content .custom-checkbox::after {
    opacity: 1;
}

.attr-option input[type="checkbox"]:focus~.attr-option-content .custom-checkbox {
    box-shadow: none;
}

.attr-range {
    font-size: 15px;
    color: #555;
    transition: color 0.2s ease;
}

.attr-count {
    font-size: 14px;
    color: #777;
    transition: color 0.2s ease;
}

/* Disabled state */
.attr-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.right-break {
    margin-right: 20px;
    border-right: 2px solid #999999;
    padding-right: 20px;
}

.sort_field {
    /*font-family: "Poppins", Sans-serif;*/
    font-size: 18px;
    font-weight: 400;
    border: 1px solid #69727d;
    color: #1f2124;
    background: none;
    padding: 5px 0px 5px 10px;
}

.cstm-pagination {
    margin-top: 30px;
    font-weight: 500;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    flex-wrap: wrap;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.cstm-pagination li a,
.cstm-pagination li span.page-numbers {
    font-size: 14px;
    color: #333333 !important;
    border: solid 1px #dddddd;
    background: none;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: #ffffff;
    margin: 5px;
    display: inline-block !important;
    top: 0 !important;
}

.cstm-pagination li a:hover {
    color: #333333 !important;
}

.cstm-pagination li span.current,
.cstm-pagination li:hover span.current {
    color: #ffffff !important;
    background-color: #E8514F !important;
    border: solid 1px #E8514F;
}

.dark-scheme .cstm-pagination li:not(.active) a {
    border-color: rgba(255, 255, 255, .1);
    background: none;
    color: #ffffff;
}

.cstm-pagination li:last-child a {
    border-right: solid 1px #dddddd;
}

.dark-scheme .cstm-pagination li:last-child a {
    border-right-color: rgba(255, 255, 255, .1);
}

.cstm-pagination>.active>a {
    color: #ffffff;
}

body .remove-this {
    display: none !important;
}

.cstm_loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #E8514F;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cstm_loader_mc {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1000;
    background: #eee6;
    top: 0;
    left: 0;
    color: #000000;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.src-btn {
    min-width: 200px;
    padding: 5px !important;
}

.mbl-frm {
    display: none;
}

@media (max-width: 1000px) {
    .dsktp-frm {
        display: none;
    }

    .mbl-frm {
        display: block;
    }

    .src-btn {
        min-width: 100%;
    }

    .attr-selector {
        width: auto;
    }

    .attr-options-scroll {
        height: auto;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.fade {
    transition: opacity .15s linear;
}

.modal.fade.show .modal-dialog.dialog-animated {
    height: 100%;
    transform: translate(0, 0);
}

.modal.fade .modal-dialog.dialog-animated {
    transform: translate(100%, 0)scale(1);
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px);
}

.dialog-animated {
    min-height: 100%;
    margin: 0 0 0 auto;
    overflow: hidden;
}

.dialog-animated .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-dialog {
    max-width: 500px;
}

.modal-dialog {
    position: relative;
    width: auto;
    background-color: #ffffff;
}

.overflow-hidden {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: none;
}

.modal-backdrop.show {
    opacity: .5 !important;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-header {
    padding: 10px;
    border-bottom: 1px solid #999999;
    text-align: right;
}

#wpadminbar {
    z-index: 1000 !important;
}

.cls-btn {
    font-size: 18px;
    padding: 5px 12px;
    border-radius: 5px;
    background-color: #E8514F !important;
    border: solid 1px #E8514F;
    color: #ffffff;
    display: inline-block;
}

.trgBM {
    font-family: "Poppins", Sans-serif;
    font-size: 18px !important;
    font-weight: 500 !important;
    border-radius: 10px 0px 10px 0px !important;
    padding: 10px 40px 10px 40px !important;
    background-color: #E8514F !important;
}

.shw_price_hd {
    font-family: "Poppins", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #333333;
}

.shw_terms_c {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #E8514F;
}

.selected-filters {
    border-bottom: 1px solid #999999;
    padding: 0 20px 20px 20px;
    max-width: 1280px;
}

.filter-group {
    margin-right: 20px;
    margin-top: 20px;
    display: inline-block;
}

.filter-tag {
    border: 1px solid #999999;
    padding: 2px 5px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.remove-filter {
    background: #E8514F;
    height: 25px;
    width: 22px;
    display: inline-block;
    border-radius: 5px;
    color: #fff;
    padding: 0px 5px;
    margin: 2px;
    cursor: pointer;
}