.uk-card-body:not([class*=sc-padding]) {
    padding: 15px 24px;
}

.text-white {
    color: #fff !important;
}

.default_raw:nth-child(odd) {
    background-color: #f5f5f5 !important;
}

#edit_order_data #extra_row .default_raw:nth-child(even) {
    background-color: #f5f5f5 !important;
}

#edit_order_data #extra_row .default_raw:nth-child(odd) {
    background-color: #ffffff !important;
}

.active_product .select2-container--default .select2-selection--single {
    background-color: #66bb6a !important;
}

.active_product .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
}

.paid .select2-container--default .select2-selection--single {
    background-color: green;
}

.paid .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
}

.minus,
.plus {
    height: 32px;
    width: 32px !important;
}

.cart {
    right: 5px;
    position: relative;
    top: 4px;
}

.category_list li {
    border-left: 1px solid #ccc;
    padding-right: 8px;
}

.current-page {
    background-color: #031D1F;
    color: #fff;
    min-width: 28px !important;
    height: 28px !important;
    text-align: center;
    display: inline-block;
    line-height: 30px;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 16px !important;
    cursor: pointer;
}

.perpage-link {
    background-color: #fff;
    color: #000;
    min-width: 28px !important;
    height: 38px !important;
    text-align: center;
    display: inline-block;
    line-height: 30px;
    border-radius: 4px;
    padding: 5px 10px;
    border: unset;
    cursor: pointer;
    font-size: 16px;
}

@media (min-width: 1366px) and (max-width: 1550px) {
    .all_order_list_table span.select2.select2-container {
        width: 100px !important;
    }

    .all_product_list_table span.select2.select2-container {
        width: 100px !important;
    }

    .product_img_box {
        height: 150px !important;
    }

    .product_meta .product_name {
        white-space: normal !important;
    }
}

.order_completed .select2-container--default .select2-selection--single {
    background-color: #66bb6a;
}

.new_order .select2-container--default .select2-selection--single {
    background-color: #ef5350;
}

.processing_order .select2-container--default .select2-selection--single {
    background-color: #ffa726;
}

.new_order .select2-container--default .select2-selection--single .select2-selection__rendered,
.order_completed .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #FFF !important;
}

.processing_order .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
}

.new_order .select2-container--default .select2-selection--single .select2-selection__arrow b,
.order_completed .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #FFF transparent transparent transparent !important;
}

.processing_order .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent !important;
}

.product_img {
    position: relative;
    width: 100px;
}

button.remove-image {
    cursor: pointer;
    position: absolute;
    font-size: 15px;
    background-color: red;
    color: #fff;
    border-radius: 15px;
    right: 0px;
    top: 0px;
}

/* tags css */

#tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}

#tag-container input {
    border: none;
    outline: none;
    flex-grow: 1;
    height: 30px;
}

.tag {
    background-color: #031D1F;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.tag .remove-tag {
    margin-left: 5px;
    cursor: pointer;
}

.uk-modal, .uk-modal-page .select2-container{
    z-index: 9999 !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f44336;
    /* OFF = red */
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4CAF50;
    /* ON = green */
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.switch-label {
    margin-left: 10px;
    font-weight: bold;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #f44336;
}

/* New Css */

.qty-round-btn {
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 22px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-round-btn:hover {
    background: #e0e0e0;
    border-color: #bbb;
}
.product-qty-row {
    gap: 10px;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 32px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.empty-cart-illustration {
    margin-bottom: 20px;
}

.empty-cart-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.empty-cart-subtitle {
    font-size: 1rem;
    color: #888;
}

@media (max-width: 600px) {
    .empty-cart-message {
        min-height: 180px;
        padding: 18px 10px;
    }

    .empty-cart-title {
        font-size: 1.2rem;
    }

    .empty-cart-subtitle {
        font-size: 0.95rem;
    }

    .empty-cart-illustration img {
        width: 80px;
    }
}

.uk-navbar-nav .cart .sc-button{
    background: #E0B070 !important;
}

.add-to-cart-btn{
    background: #031D1F !important;
}

.add-to-cart-btn{
    color: #E0B070 !important;
}

.uk-navbar-nav .cart i, .uk-navbar-nav .cart span{
    color: #031D1F !important;
}

.product-list-container .uk-card-body:not([class*=sc-padding]), #cart-section .uk-card-body:not([class*=sc-padding]){
    padding: 15px 12px !important;
}

.uk-button-primary:focus, .uk-button-primary:hover{
    background: #E0B070 !important;
    color: #031D1F !important;
}

.product-list-container .uk-input, #cart-section .uk-input{
    height: 32px !important;
}

.remove-cart-item-btn{
    top:5px !important;
    right:5px !important;
}

#cart-section{
    padding:15px 12px !important;
}

@media (max-width: 1199px) {
    html {
        font-size: 12px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1600px) {
    html {
        font-size: 14px !important;
    }
    .uk-button{
        height: 30px !important;
        line-height: 30px !important;
    }
    .category-tabs-scroll-wrapper .sc-widget-content{
        padding: 12px 18px !important;
    }
}
#cart-section{
    max-height:500px !important;
    overflow-y:auto;
}
.party-verification-code{
    height:unset !important;
    letter-spacing:2px !important;
}

div#search_result {
    width: 25%;
    position: absolute;
    left: 37.5%;
    top: 44px;
    overflow-y: auto;
    height: 500px;
}

#search_result .uk-card-body {
    padding: 10px;
}

#search_result img {
    height: 40px !important;
}

div#search_result li:not(.general-search-list-header):hover {
    background-color: #031D1F !important;
}

div#search_result li:not(.general-search-list-header):hover a {
    color: #E0B070 !important;
}

div#search_result li.page-links {
    padding: unset !important ;
}

div#search_result li.page-links a {
    width: 100%;
    display: block;
    padding: 8px;
}

#search_result .uk-card{
    border: 2px solid #031D1F !important;
}

#search_result .general-search-list-header {
    pointer-events: none !important;
    border: unset !important;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
    .search_area .uk-navbar-center:not(:only-child) {
        width: 25%;
    }
}

.uk-offcanvas-overlay.uk-open::before{
    opacity:0 !important;
}

.sc-touch-device #sc-sidebar-main {
    background:#FFF !important;
    position:fixed !important;
    touch-action: auto;
    user-select: none;
    -webkit-user-drag: none;
}

@media only screen and (max-width: 768px) {
    .sc-sidebar-menu{
       height:80vh !important;
       overflow-y:auto !important;
       -webkit-overflow-scrolling: touch;
    }
    table td .uk-input{
        min-width:75px !important;
    }
    table td .select2.select2-container{
        min-width:100px !important;
    }
    table thead th:last-child {
        min-width: 100px !important;
    }
}