.ekwc_admin_page .card {
    border-color: #eee;
    max-width: 100%;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_nav .nav-tab-wrapper {
    border-color: #eee;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_nav .nav-tab-wrapper a.nav-tab-active,
.ekwc_admin_settings_page .ekwc_admin_settings_page_nav .nav-tab-wrapper a:hover {
    background-color: #fafafa;
    border-color: #fafafa;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_nav .nav-tab-wrapper a {
    margin-left: 0;
    margin-right: 7px;
    padding: 10px 20px;
    outline: none;
    box-shadow: none;
    border-color: #eee;
    background-color: #e5e5e5;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_content {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #eee;
    background-color: #fff;
    display: inline-block;
    width: 100%;
    margin: 0;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr.heading {
    border-bottom: 1px dashed #eeeeee;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_content table {
    margin: 0;
    padding: 0;
    border-spacing: 0;
    border-collapse: unset;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr th,
.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr td {
    padding: 15px 20px;
    border-bottom: 1px dashed #eee;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr th,
.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr td {
    padding: 15px 20px;
    border-bottom: 1px dashed #eee;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr.submit p {
    margin: 0;
    padding: 0;
}

.ekwc_admin_settings_page_nav .nav-tab {
    display: flex;
    gap: 10px;
}

.ekwc-select-field select,
.ekwc-number-field input[type="number"],
.ekwc-text-field input[type="text"] {
    min-width: 350px;
    padding: 3px 10px;
    border-radius: 2px;
}

.ekwc_admin_settings_page_content .heading th{
    font-size: 22px;
}

/*--------------------------- Start Switch Field ------------------------------*/
.ekwc-switch-field {
    display: flex;
    align-items: center;
}

.ekwc-switch-field input {
    display: none;
}

.ekwc-switch-field label {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ekwc-switch-field input:checked + label {
    background-color: #7f54b3;
}

.ekwc-switch-field label::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ekwc-switch-field input:checked + label::before {
    transform: translateX(20px);
}

.ekwc-switch-field .ekwc-switch-icon {
    position: relative;
    top: 50%;
    left: 72%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ekwc-switch-field .ekwc-icon-on,
.ekwc-switch-field .ekwc-icon-off {
    width: 14px;
    height: 15px;
}

.ekwc-switch-field input:checked + label .ekwc-icon-on {
    display: block;
}

.ekwc-switch-field input:not(:checked) + label .ekwc-icon-off {
    display: block;
}

.ekwc-switch-field input:not(:checked) + label .ekwc-icon-on {
    display: none;
}

.ekwc-switch-field input:checked + label .ekwc-icon-off {
    display: none;
}


.ekwc-switch-field svg.ekwc-icon-off {
    position: absolute;
    left: -11%;
}

.ekwc-switch-field .ekwc-switch-icon svg {
    stroke: #94a3b8;
    stroke-width: 2;
}

.ekwc-switch-field .ekwc-switch-icon .ekwc-icon-on {
    stroke: #7f54b3;
}

/*--------------------------- End Switch Field ------------------------------*/

.ekwc-input-group input[type="text"],
.ekwc-input-group button.ekwc-remove-field,
#ekwc_add_field{
    padding: 3px 10px;
    border-radius: 2px;
}

#product_compare_style option:disabled {
    background-color: #f2f2f2;
    color: #a0a0a0;
    cursor: not-allowed;
}

.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr.heading th, 
.ekwc_admin_settings_page .ekwc_admin_settings_page_content table tr th.ekwctitle {
    font-size: 18px;
    border-left: 4px solid #23282d;
    background-color: #fafafa;
}

.ekwc-size-field {
    display: flex;
    gap: 20px;
}

.ekwc-size-field input[type="number"] {
    padding: 3px 10px;
    border-radius: 2px;
    max-width: 163px;
}

/*---------------------Size chart Admin ------------------------*/
.ekwc-shortcode-wrap .code.ekwc-size-chart-input {
    width: 100%;
}

.ekwc-size-chart-config button.button.ekwc-remove-col,
.ekwc-size-chart-config button.button.ekwc-add-col {
    font-weight: 400;
}

#ekwc_display_rules .ekwc-row label{
    display: block;
    padding: 5px 2px;
}

#ekwc_display_rules .ekwc-row select{
    padding: 3px 10px;
    width: 100%;
}

.ekwc_assign_wrap {
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 3px;
}

.ekwc_assign_wrap  span.select2.select2-container.select2-container--default{
    width: 100% !important;
}

.ekwc-size-chart-styles .ekwc-color-picker-row {
    display: flex;
    gap: 60px;
}

.ekwc-size-chart-styles .ekwc-size-color-wrapper {
    display: flex;
    gap: 3px;
    flex-direction: column;
}

.ekwc_assign_option.products.ekwc_assign_pane .select2-container--default .select2-selection--multiple .select2-selection__choice{
    padding: 6px !important;
}