/*GENERIC CSS*/

/*********************************CUSTOM FONTS*/

@font-face {
    font-family: "Droid Arabic Kufi";
    /* Add other properties here, as needed. For example: */
    src: url(../fonts/DroidKufi-Regular.woff2) format('woff2');
}

@font-face {
    font-family: "Droid Arabic Kufi";
    /* Add other properties here, as needed. For example: */
    src: url(../fonts/DroidKufi-Bold.woff2) format('woff2');
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff');
    /*    font-display: swap;*/
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'), url('../fonts/Poppins-ExtraBold.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff');
    /*    font-weight: 600;
    font-style: normal;
    font-display: swap;*/
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff');
}


* {
    box-sizing: border-box;
    font-family: "Droid Arabic Kufi",Poppins, sans-serif, Arial;
    margin: 0;
    padding: 0;
    scroll-behavior: auto !important;
}

ul, li, a, p {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    padding: 0px;
}

img {
    width: 100%;
}


:root {
    --main_color: #20409A;
    --must: #FF3D00;
    --secondry: #05a1d7;
}

.primary_btn {
    padding: 7.91px 45px;
    border-radius: 19.775px;
    border: 0px;
    background: linear-gradient(90deg, #05A1D7 32.42%, #20409A 98.62%);
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    transition: 0.5s ease-in;
    line-height: 14px;
}

primary_btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.secondry_btn {
    display: inline-block;
    padding: 11px 20px !important;
    border-radius: 10px !important;
    border: 0px;
    background: linear-gradient(90deg, #05A1D7 32.42%, #20409A 98.62%);
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    transition: 0.5s ease-in;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 14px;
}

.delete_btn {
    padding: 9px 10px !important;
    border-radius: 50px !important;
    border: 0px !important;
    background: red;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    transition: 0.5s ease-in;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: 14px;
    z-index: 0 !important;
}

.find_btn {
    background: #ff6552 !important;
    margin-right: 10px !important;
    color: #fff !important;
}

.reset_btn {
    background-color: #6c757d;
    float: right;
}

.right_side_btn .btn_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn_wrap .back_btn {
    background: transparent;
    border: 1px solid var(--main_color) !important;
    color: var(--main_color) !important;
    padding: 10px 16px !important;
}

.back_btn:hover {
    color: var(--main_color) !important;
}

.create_new {
    text-align: right;
}

.secondry_btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.fa-solid {
    line-height: 1;
}

.save_btn .secondry_btn {
    float: right;
}


/*TFM ANIMATION CSS*/
body, html {
    margin: 0;
    padding: 0;
}

.cursor-circle {
    position: absolute;
    font-size: 11px;
    color: #05A1D7; /* Text color */
    font-weight: bold;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.20s ease, opacity 0.3s ease;
    opacity: 1;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


/*LOADER ANIMATION CSS*/
/* Fullscreen loading screen */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Loading text style */
.loadingText {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 17px;
    color: var(--main_color);
}

/* Bouncing dots animation */
.loader {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ff6552;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

    .dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.4s;
    }

/* Keyframes for bouncing effect */
@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}
/******************************************Main DASHBOARD PAGE CSS START FROM HERE*/


/*DASHBoard Layout Css Start here*/

.main_date .c_date {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    font-size: 12px;
}

.main_date .c2_date {
    border-top-right-radius: 7px !important;
    border-bottom-right-radius: 7px !important;
    font-size: 12px;
}

.dashboard_layout .top_numbers p {
    color: #05a1d7;
}

.dashboard_layout .top_numbers h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--main_color);
}

.statistics-details {
    gap: 5px;
}

.dashboard_layout .top_numbers .card_div {
    background-color: #cad6f4;
    border-radius: 10px;
    padding: 10px 10px;
    width: 100%;
    max-width: 170px;
}

    .dashboard_layout .top_numbers .card_div:nth-child(even) {
        background-color: #fff;
        border: 1px solid #dce0ed;
    }

    .dashboard_layout .top_numbers .card_div .right_text .item_img {
        width: 37px;
        height: 37px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #05a1d72e;
        z-index: 2;
        position: relative;
        box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
    }

.statistics-details .card_div:nth-child(odd) .right_text .item_img {
    background-color: #fff;
}

.dashboard_layout .top_numbers .card_div .right_text .item_img img {
    width: 17px;
}



/****Aside nav section CSS*/

.custom_container {
    max-width: 100%;
}

.aside_nav .main_wraper_nav {
    display: flex;
}

.top_toggle {
    padding-bottom: 16px;
}

    .top_toggle p {
        position: absolute;
        right: 10px;
        top: 10px;
        color: var(--main_color);
    }

#ff {
    display: none;
}

.gs {
    /*display: flex;
    transition: 0.3s ease-in;*/
    /*    word-break:break-word;*/
}

.gs_s {
    display: flex;
    /*    text-align: center;*/
}

.left_sec {
    width: 100%;
    max-width: 185px;
    min-height: 100vh;
    position: sticky;
    background: linear-gradient(180deg, rgb(243 246 254) 0%, rgb(202 214 244) 85.23%);
    transition: 0.6s ease-in;
}

    .left_sec .top_logo {
        width: 100%;
        max-width: 100px;
        margin: 0 auto;
        margin-bottom: 5px;
    }

    .left_sec .nav_item {
        padding: 30px 15px;
    }

    .left_sec .list_item ul li {
        position: relative;
    }

        .left_sec .list_item ul li .nav_li.bigg {
            flex-direction: column;
            padding: 5px 5px;
            font-size: 9px;
            text-align: center;
        }

        .left_sec .list_item ul li .nav_li {
            display: flex;
            align-items: center;
            flex-direction: row;
            column-gap: 2px;
            width: 100%;
            padding: 5px 0px;
            color: var(--main_color);
            margin-bottom: 5px;
            font-size: 12px;
            font-weight: 500;
            transition: 0.7s ease;
            text-align: left;
        }

            .left_sec .list_item ul li .nav_li::before {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                transition: width 0.7s ease;
                background: #05A1D7;
            }

            .left_sec .list_item ul li .nav_li:hover {
                transform: scale(1.2);
                font-weight: 600;
            }

                .left_sec .list_item ul li .nav_li:hover::before {
                    width: 90%;
                }


.selected_btn {
    transform: scale(1.0);
    background-color: #05a1d72e;
}

.left_sec .list_item ul li .nav_li.selected_btn:after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: #05A1D7;
}

.left_sec .list_item ul li .item_img {
    max-width: 20px;
    /*margin-right: 9px;*/
    display: inline-block
}

.left_sec .last_nv_li {
    border-top: 1px solid rgba(168, 168, 168, 0.50);
    padding-top: 25px;
}

    .left_sec .last_nv_li li .item_img {
        width: 18px;
        display: inline-block;
    }

    .left_sec .last_nv_li li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--main_color);
        font-size: 9px;
        font-weight: 600;
        padding: 0px 0px;
        text-align: center;
    }

    .left_sec .last_nv_li li:first-child {
        margin-bottom: 20px;
    }

.left_sec .nav_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    /*  row-gap:200px;*/
    /*  height:100%;*/
}

/*RIGHT section CSS START FROM HERE*/

/*MODAL CSS color-profile LANGUAGE*/
.modal-header .btn-close {
    background-size: 10px;
    padding: 0.6rem .6rem;
    border-radius: 50px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    margin: unset !important;
}

.modal-dialog .secondry_btn {
    margin-bottom: 0px;
}

.form-check .form-check-input {
    margin-left: -2.5em;
}

.form-check {
    padding-left: 2.5em;
}

.modal_b_wraper {
    padding: 20px 10px;
}

    .modal_b_wraper .lang_select {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .modal_b_wraper .l_s {
        max-width: 160px;
        width: 100%;
        border: 2px solid #000;
        border-radius: 10px;
        padding: 10px 15px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }

    .modal_b_wraper .modal-footer {
        border-top: 0px;
    }



.aside_nav .main_wraper_nav .right_sec {
    width: calc(100% - 185px);
    position: relative;
    transition: 0.4s ease-in;
    display: flex;
    flex-direction: column;
}

.aside_nav .full_wraper {
    padding-bottom: 20px;
}

.md_screen {
    display: none;
}

.lg_screen {
    display: inline-block;
}

.aside_nav .right_sec .top_search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    column-gap: 50px;
    position: relative;
}

    .aside_nav .right_sec .top_search::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        border-bottom: 1px solid #d4cbcb;
        animation: border_anim 3s linear forwards;
    }

@keyframes border_anim {
    0% {
        width: 0%;
    }

    35% {
        border-bottom: 1px solid var(--main_color);
    }

    100% {
        width: 100%;
        border-bottom: 1px solid #d4cbcb;
    }
}

.right_sec .full_wraper .left_breadcumbs p {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

.left_breadcumbs .u_well {
    font-size: 20px;
    font-weight: 600;
}

.left_breadcumbs .u_name {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondry);
    text-transform: capitalize
}

.right_sec .filter_sec {
    border-bottom: 0px !important;
}

    .right_sec .filter_sec .icon_div {
        display: flex;
        align-items: center;
    }

.right_sec .icon_div a {
    color: #000;
    font-size: 13px;
}

.right_sec .filter_sec .icon_div img {
    max-width: 20px;
}

.right_sec .filter_sec .icon_div span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: #000;
    display: inline-block;
    margin-left: 5px;
}

.right_sec .outer_wal_search.lg_screen {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.right_sec .mid_search {
    position: relative;
}

    .right_sec .mid_search .search_icon {
        max-width: 20px;
    }

    .right_sec .mid_search .search_icon {
        position: absolute;
        left: 19px;
        top: 50%;
        transform: translateY(-53%);
    }

    .right_sec .mid_search input[type=text] {
        padding: 10px 45px;
        border-radius: 15px;
        background: linear-gradient(90deg, #f7f7f7 0%, #1238a596 100%);
        color: #000;
        font-size: 12px;
        font-weight: 400;
        border: 1px solid #fff;
        width: 100%;
        transition: background 4s ease-in;
    }

        .right_sec .mid_search input[type=text]:focus-visible {
            outline: none;
            border: 1px solid #20409A;
            background: linear-gradient(#f7f7f7, #a1ddf1eb) padding-box, linear-gradient(to right, #238fc8 0%, rgba(27, 170, 219, 0.92) 100%) border-box;
        }

        .right_sec .mid_search input[type=text]::placeholder {
            color: #495057;
            font-size: 12px;
        }

.right_sec .top_search .right_div {
    display: flex;
    align-items: center;
}

    .right_sec .top_search .right_div .img_wrap {
        margin-left: 20px;
    }

    .right_sec .top_search .right_div .img_wrap {
        max-width: 20px;
    }

.right_div .img_wrap a img {
    transition: 0.4s ease-in;
}

    .right_div .img_wrap a img:hover {
        transform: scale(1.2);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        border-radius: 3px;
    }

.img_wrap .dropdown {
    cursor: pointer;
}

.img_wrap .dropdown-menu.show {
    transform: translate(-133px, 32px) !important;
    border-radius: 10px;
}

.log_drop ul li img {
    max-width: 25px;
}

.log_drop ul li a {
    font-weight: 600 !important;
    font-size: 12px;
    color: var(--main_color);
}

.top_tabs_order {
    margin-top: 10px;
    column-gap: 8px;
    row-gap: 10px;
}

    .top_tabs_order .nav-link {
        color: #000;
        border-color: #f0f1f1 #f0f1f1 #dee2e6;
        background-color: #05a1d72b;
    }

        .top_tabs_order .nav-link:hover {
            border-color: #d3d5d8 #d3d5d8 #dee2e6;
            border-bottom: 5px solid #ff6552;
            background-color: #05a1d74a;
        }

    .top_tabs_order .nav-link {
        /*border-top-left-radius: .95rem;*/
    }

        .top_tabs_order .nav-link.active {
            background-color: #05a1d7;
            color: #fff;
            border-bottom: 5px solid #ff6552;
        }

.right_sec .buttons_wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;
    column-gap: 10px;
}

    .right_sec .buttons_wraper .btn_wrap {
        width: 100%;
        max-width: 220px;
    }

        .right_sec .buttons_wraper .btn_wrap a {
            display: inline-flex;
            align-items: center;
            padding: 7px 20px;
            border-radius: 10px;
            background: #FFF;
            box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15);
            font-size: 13px;
            color: #000;
            border: none;
        }

    .right_sec .buttons_wraper .dropdown {
        max-width: 200px;
        width: 100%;
    }

        .right_sec .buttons_wraper .dropdown button {
            display: inline-flex;
            align-items: center;
            padding: 7px 20px;
            border-radius: 10px;
            background: #FFF;
            box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15);
            font-size: 14px;
            color: #000;
            border: none;
            max-width: 200px;
            width: 100%;
        }

.dropdown-toggle::after {
    margin-left: 4.255em;
}
/*.right_sec .buttons_wraper .btn_wrap:nth-child(even) {
    margin-right: 50px;
}*/
.buttons_wraper .left_side_btn {
    display: flex;
    align-items: center;
    width: 100%;
    row-gap: 15px;
    column-gap: 24px;
    margin-bottom: 10px;
}

.buttons_wraper .btn_wrap img {
    width: 13px;
    margin-right: 5px;
}

.buttons_wraper .left_side_btn .btn_wrap input {
    padding: 7px 20px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    color: #000;
    border: none;
    width: 100%;
    max-width: 220px;
}

.p_index {
    max-width: 250px;
    width: 100%;
}

.saturate {
    filter: contrast(200%);
}

.disabel {
    min-height: calc(1.9em +(.75rem + 2px)) !important;
}

.form-control:focus {
    box-shadow: none !important;
}

.form-check-input:focus {
    box-shadow: none !important;
}
/******filter section CSS START*/
.filter_sec .outer_wal_search .mid_buttons {
    border-radius: 15px;
    background: #EFEFEF;
    max-width: 375px;
    margin: 0 auto;
    padding: 7px 13px;
    text-align: center;
}

.filter_sec .mid_buttons a {
    display: inline-block;
    color: #000;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    padding: 8px 20px;
}

.filter_sec .outer_wal_search .active_one {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15);
    font-weight: 400;
    padding: 8px 28px;
}

.filter_sec .right_btn {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    margin: 0 auto;
    max-width: 275px;
    width: 100%;
}

    .filter_sec .right_btn .btn_wrap a {
        display: inline-flex;
        align-items: center;
        border-radius: 10px;
        background: #FFF;
        box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15);
        font-size: 13px;
        font-weight: 400;
        color: #000;
        padding: 10px 25px;
    }

        .filter_sec .right_btn .btn_wrap a img {
            width: 13px;
            margin-right: 5px;
        }
/*User page switch buttton*/
.switch_btn_custom {
    display: flex;
    align-items: center;
}

    .switch_btn_custom .slider {
        border: 1px solid #05a1d7;
    }

        .switch_btn_custom .slider:before {
            height: 16px !important;
            width: 16px !important;
            left: 1px !important;
            top: 1px !important;
            /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);*/
        }

    .switch_btn_custom .switch {
        width: 36px !important;
        height: 19px !important;
    }

    .switch_btn_custom input:checked + .slider:before {
        -webkit-transform: translateX(16px) !important;
        -ms-transform: translateX(16px) !important;
        transform: translateX(16px) !important;
    }

.switch_text {
    font-size: 13px;
    margin-left: 5px;
}



/*footer section CSS START*/
footer {
    padding: 10px 15px;
    background: linear-gradient(90deg, rgba(35, 143, 200, 0.60) 0%, #20409A 100%);
    text-align: center;
}

    footer p {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }



/********************************COUNTRY PAGE FORM CSS*******************************/

.form_section {
    margin: 0px 10px;
    margin-bottom: 50px;
    /*background: linear-gradient(180deg, #FAF8F8 15%, rgba(3 42 150 / 14%) 100%);*/
    background: linear-gradient(180deg, #a8c0f624 15%, rgb(201 211 239 / 76%) 100%);
    border-radius: 15px;
    padding: 10px 10px;
    /*min-height: 100vh;*/
    flex: 1;
}

    .form_section h2 {
        padding-bottom: 14px;
        /*border-bottom: 0.5px solid #000;*/
        font-size: 20px;
        font-weight: 600;
    }

.country_wraper .inner_most {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 50px;
}
/*.country_wraper .form_container .btn_wrap{
    text-align:right;

}*/
/*.buttons_wraper .left_side_btn .btn_wrap input {
    width: max-content !important;
}*/
.primary_input {
    margin: 10px 0px;
}

.chek_m {
    margin-top: 42px;
    max-width: 150px;
}

.input_custom {
    padding: 7px 8px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #fff;
    box-shadow: 2px 2px 4px 0px rgba(236, 236, 236, 0.25);
    color: #495057;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
}

    .input_custom::placeholder {
        color: #495057;
        font-size: 12px;
        font-weight: 400;
        text-transform: capitalize;
    }

    .input_custom:focus {
        border-color: #05a1d7;
        box-shadow: unset;
        outline: 0px;
    }

.k-input.input_custom.k-focus, .k-input:focus {
    box-shadow: unset !important;
    outline: 0px !important;
}

.custom_kendo_input.k-input-inner {
    padding: 3px 8px !important;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #fff;
    box-shadow: 2px 2px 4px 0px rgba(236, 236, 236, 0.25) !important;
    color: #495057;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
}

    .custom_kendo_input.k-input-inner:focus {
        border-color: #05a1d7;
    }

.custom_select {
    border: 1px solid transparent !important;
    border-radius: 5px !important;
    background-color: #fff !important;
    box-shadow: 2px 2px 4px 0px rgba(236, 236, 236, 0.25) !important;
    color: #495057 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

    .custom_select:focus {
        box-shadow: unset !important;
    }

    .custom_select::placeholder {
        color: #AAAAAA !important;
    }

.primary_input textarea {
    background-color: #fff;
    width: 100%;
    border-radius: 5px;
}

.primary_label {
    font-size: 13px;
    font-weight: 400;
    color: #1A2142;
    margin-bottom: 3px;
}

.primary_input input[type="file"] {
    border: 1px solid transparent;
    padding: 7px 8px;
    color: #495057;
    width: 100%;
    font-size: 12px;
    background: #fff;
    border-radius: 4px;
}

    .primary_input input[type="file"]::file-selector-button {
        background-color: #05A1D7;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 12px;
        padding: 3px 5px;
    }

.img_sec_Show {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
/*.img_sec_Show img {
    width: 30px;
    height:30px
}*/
.last_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*************************************************ORDER details PAGE CSS START*/

.custom_tab_order .nav-tabs {
    border-bottom: 1px solid #7bbcde;
}

    .custom_tab_order .nav-tabs .nav-link.active {
        background-color: #7bbcde !important;
        color: #FFF !important;
        border-top-left-radius: 1.15rem;
    }

.custom_tab_order .nav-link {
    color: #000 !important;
}

#shipperDetail {
    background-color: #0048ff0f;
    border-radius: 10px;
    padding: 15px 18px;
}

.alert_custom {
    background-color: #7bbcde;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 15px;
}

.IntactQuantity {
    padding: 0.475rem .75rem !important;
    font-size: 12px !important;
}



/***********************************************LISTING PAGE CSS*/
/*SCROOLBAR CSSS*/
/* width */
.k-grid-content table tr td::-webkit-scrollbar {
    height: 5px !important;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(357deg, #05A1D7 32.42%, #20409A 98.62%);
    border-radius: 5px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #71b6f4;
    }

.km-native-scroller::-webkit-scrollbar {
    height: 8px;
    width: 6px;
}

.k-auto-scrollable::-webkit-scrollbar {
    height: 8px;
}

.k-pager-md::-webkit-scrollbar {
    height: 8px !important;
}

.tab-content::-webkit-scrollbar {
    height: 4px !important;
}
/*TABEL section CSS*/
.plus_s {
    color: #fff;
    margin-right: 5px;
}


/*KENDO TABEL CSS START HERE*/

.k-grid-header th.k-header {
    padding: 8px 8px !important;
}

.k-grid td {
    padding: 6px 9px !important;
}

.k-grid-display-block {
    border: none !important;
    background-color: transparent !important;
}

.k-grouping-header {
    line-height: 22px !important;
}

div.k-grid-header {
    border-bottom: 2px solid #fff !important;
    /*    background-color: #2dafdc24 !important;*/
}

.k-grid-header-wrap {
    border: none !important;
}

.k-grid-header th.k-header {
    border: 0px !important;
    /*    background-color: #fafafa30 !important;*/
}

th.k-header {
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.k-pager-info.k-label {
    font-size: 12px !important;
}
/*.k-column-title {
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-overflow:unset !important;
}*/
.k-grid .k-alt {
    /*    background-color: transparent !important;*/
}

.k-grid-content table tr td {
    color: #292D32 !important;
    font-size: 12px !important;
    /*overflow:auto !important;*/
}
/*.k-grid-content table tr:first-child td {
    text-align: left !important;
}*/
.k-filter-row th, .k-grid-header th.k-header {
    text-align: unset !important;
}

.k-pager-wrap {
    border: 0px !important;
}

.k-master-row td {
    border-bottom: 3px solid #fff !important;
}

.k-input-inner {
    padding: 0px 4px !important;
}

.k-icon-button {
    width: unset !important;
}

.action_logo {
    color: var(--main_color);
    padding: 7px 7px;
    /*    width:11px;
    height:11px;*/
    background-color: #a1ddf1eb;
    border-radius: 50px;
    font-size: 11px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .action_logo:hover {
        transform: scale(1.1);
    }

.grid-icon-btn-group a:nth-child(2) .action_logo {
    background-color: #ff0202 !important;
    color: #fff;
}

.k-link .k-icon {
    padding: 6px 8px !important;
    border-radius: 4px !important;
    border: 1px #EEE !important;
    background: #F5F5F5 !important;
    font-size: 12px !important;
    color: #404B52 !important;
}

.k-state-selected {
    border-radius: 4px !important;
    border: 1px rgba(89, 50, 234, 0.16) !important;
    background: #28A0D3 !important;
    font-size: 12px !important;
    color: #fff !important;
    padding: 4px 6px !important;
}

.k-pager-wrap .k-pager-numbers .k-link {
    font-size: 12px !important;
}

.k-button.k-button-icon, .k-icon-button {
    padding: 6px 4px !important;
}

.k-pager-wrap .k-pager-numbers {
    align-self: auto !important;
}

.k-state-disabled .k-icon {
    opacity: 1 !important;
    color: #404B52 !important;
}

.k-pager-wrap {
    background-color: transparent !important
}

.k-picker, .k-widget.k-picker {
    border-radius: 4px !important;
    border: 1px #EEE !important;
    background: #F5F5F5 !important;
    width: 5.5em !important;
}

.k-pager-wrap .k-dropdown {
    display: flex;
    align-items: center;
    height: 25px;
}

.k-pager-sizes {
    font-size: 12px;
}

.k-pager-wrap .k-pager-info {
    color: var(--main_color) !important;
}

.k-link .k-icon {
    padding: 7px 7px;
    background-color: #a1ddf1eb;
    border-radius: 50px;
    font-size: 13px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    color: var(--main_color) !important;
    opacity: 1 !important;
}

.k-grid tr:hover {
    /*    background-color: #a1ddf133 !important;*/
}

.k-state-focused {
    box-shadow: unset !important;
}

.k-upload .k-upload-button {
    background-color: #05A1D7;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    padding: 3px 7px;
}

.k-file.k-file-success {
    font-size: 14px;
    background-color: aliceblue;
    padding: 6px 10px;
    border-radius: 5px;
    color: var(--main_color);
    max-width: 400px;
    margin: 5px 5px;
}

.inner_img {
    position: relative;
}

.close {
    position: absolute;
    top: 50%;
    right: 40%;
    transform: translateY(-50%);
    background-color: transparent;
    border-radius: 50px !important;
    padding: 6px 8px !important;
    border: 0px;
    font-size: 20px;
    /*   border-radius: 50px;
    background-color: #42b8e1;*/
    color: red;
    line-height: normal !important;
    visibility: hidden;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.inner_img:hover img {
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

.inner_img:hover .close {
    visibility: visible;
    z-index: 1;
}

.icon_img {
    max-width: 200px;
    border: 1px solid #000;
    margin-top: 10px;
}

    .icon_img img {
        height: 125px;
        object-fit: contain;
    }

.k-dropzone .k-dropzone-hint {
    font-size: 12px;
    font-style: normal;
}
/*.k-upload .k-upload-button {
    font-size: 12px !important;
}*/
/*SMART WIZARD STYLING*/
.sw-theme-arrows > .nav {
    border-top: 1px solid #eee;
    margin-bottom: 30px !important;
}

.sw > .nav .nav-link {
    padding: 15px 10px !important;
}

.sw-theme-arrows > .nav .nav-link {
    margin-left: 0px !important;
}

    .sw-theme-arrows > .nav .nav-link::after {
        border-left: 30px solid #f8f8f8 !important;
    }

    .sw-theme-arrows > .nav .nav-link::before {
        border-left: 37px solid #eee !important;
    }

    .sw-theme-arrows > .nav .nav-link.active {
        background: #20439c !important;
    }

    .sw-theme-arrows > .nav .nav-link.done {
        background: #05a1d7 !important;
    }

        .sw-theme-arrows > .nav .nav-link.done::after {
            border-left-color: #05a1d7 !important;
        }

    .sw-theme-arrows > .nav .nav-link.active::after {
        border-left-color: #20439c !important;
    }

.sw-theme-arrows[dir=rtl] > .nav .nav-link.active::after {
    border-right-color: #20439c !important;
}

.sw-theme-arrows {
    border: 0px !important;
}

    .sw-theme-arrows > .nav .nav-link {
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 16px;
    }

        .sw-theme-arrows > .nav .nav-link.default {
            color: #2f57cd !important;
        }

        .sw-theme-arrows > .nav .nav-link.done {
            color: #fff !important;
        }

.tab-content {
    height: 100% !important;
    /*overflow-x:auto;*/
}

.sw-btn-prev, .sw-btn-next {
    padding: 8px 25px !important;
    border-radius: 10px !important;
    border: 0px;
    background: linear-gradient(90deg, #05A1D7 32.42%, #20409A 98.62%);
    color: #FFF;
    font-weight: 500;
    transition: 0.5s ease-in;
    margin-top: 0px;
    margin-bottom: 20px;
}

.sw-btn-next {
    background: #20409A !important;
}

.sw .toolbar > .sw-btn.disabled, .sw .toolbar > .sw-btn:disabled {
    /*opacity: .25 !important;*/
    display: none;
}

#btnFinish {
    padding: 8px 25px !important;
    border-radius: 10px !important;
    border: 0px;
    background: #098b09 !important;
    color: #FFF;
    font-weight: 500;
    transition: 0.5s ease-in;
    margin-top: 0px;
    margin-bottom: 20px;
}

.alert {
    padding: 0px;
    margin-bottom: 0px;
}

.alert-danger {
    background-color: transparent;
    border-color: transparent;
}

.to_Show {
    display: inline-block;
    border-radius: 4px;
    color: var(--main_color);
    padding: 2px 8px;
    background-color: #a1ddf1eb;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    position: fixed;
    bottom: 45px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
}

.showw {
    opacity: 1;
    visibility: visible;
}

.to_Show i {
    font-size: 12px;
    animation-name: topBottom;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes topBottom {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-7px);
    }
}



/*SELECT2 CSS FROM HERE*/
.select2-container--default .select2-selection--single {
    padding: 2px 0px !important;
    border: 1px solid transparent !important;
    border-radius: 5px !important;
    background-color: #fff !important;
    box-shadow: 2px 2px 4px 0px rgba(236, 236, 236, 0.25) !important;
    color: #495057 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    height: 33px !important;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 50%;
        transform: translateY(-50%);
    }


/********************************************SHIPPER PAGE START FROM HERE*/

/*SHIPPER CREATE PAGE CSS*/

.accor_sec .top_text {
    background-color: #05a1d72b;
    padding: 10px 10px;
    border-radius: 4px;
    margin-top: 15px;
}

    .accor_sec .top_text h3 {
        font-size: 20px;
        font-weight: 500;
    }

.accor_sec .body_accor_wraper {
    margin-top: 10px;
    padding: 0px 10px;
}

.custom-option-class {
    color: blue;
    font-weight: bold;
}

.custom-selection-class {
    background-color: lightgray;
}

.custom-select2-container {
    border: 2px solid red;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid transparent;
    box-shadow: 2px 2px 4px 0px rgba(236, 236, 236, 0.25);
    padding: 4px 8px !important;
}

.select2.select2-container.select2-container--default.select2-container--open {
    border: 1px solid #05a1d7 !important;
}

.select2.select2-container.select2-container--default {
    border: 1px solid transparent;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid transparent !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-size: 12px;
    background-color: transparent;
}
/* Select2 dropdown ke options ke liye */
.select2-results__option {
    color: #000 !important;
    background-color: #f0f0f0;
    padding: 10px !important;
    font-size: 12px !important;
}

.select2-container--default .select2-results__option--selected {
    font-weight: bold !important;
}

/* Select2 selected item ke liye */
.custom-selection-class .select2-selection {
    background-color: lightblue !important;
    border: 2px solid #0056b3 !important;
    padding: 5px !important;
}

/* Hover effect for dropdown options */
.custom-dropdown-class .select2-results__option--highlighted {
    background-color: #d1e7dd;
    color: #000;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #085ed2 !important;
    color: #fff !important;
}

/*SHIPPER GERNAL CONTACT section CSS*/
.pdf_file a {
    font-size: 14px;
    background-color: aliceblue;
    padding: 8px 15px;
    border-radius: 2px;
    color: var(--main_color);
}

.k-grid td.k-group-cell {
    background-color: transparent !important;
}

.k-grid .k-grouping-row + tr td {
    border-top: 0px;
}

.table > :not(caption) > * > * {
    border-bottom: 0px !important;
    font-size: 13px !important;
}

.k-grid .k-column-title {
    color: #000;
}

.prd_desc {
    font-size: 12px;
    color: #444;
    height: 37px !important;
    line-height: 23px !important;
}

.modal_in p {
    font-size: 13px;
}


/************************************************************ARABI VEIW CSS********************************************************/
/* RTL-specific styles for .new_arabic */
[dir="rtl"] {
    .new_arabic

{
    text-align: left !important;
}

.content {
    right: 50px;
    left: 0px;
}

.arabic_u {
    text-align: left !important;
}

.sw-theme-arrows > .nav .nav-link::before {
    border-left: 0px solid #eee !important;
}

.sw-theme-arrows > .nav .nav-link::after {
    border-left: 0px solid #eee !important;
}

.sw-theme-arrows[dir=rtl] > .nav .nav-link.active::after {
    border-right-color: #20439c;
}

.sw-theme-arrows[dir=rtl] > .nav .nav-link.default::before {
    border-right-color: #464242;
}

.find_btn {
    margin-left: 10px !important;
}

.main_date .c2_date {
    border-top-left-radius: 7px !important;
    border-bottom-left-radius: 7px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    font-size: 13px;
}

.main_date .c_date {
    border-top-right-radius: 7px !important;
    border-bottom-right-radius: 7px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    font-size: 13px;
}

.d-search-btn {
    margin-right: 10px !important;
    margin-left: 0px !important;
}

.switch_btn_custom p {
    margin-right: 5px;
}

.img_wrap .dropdown-menu.show {
    transform: translate(0px, 32px) !important;
}

.fa-arrow-right-from-bracket {
    padding-left: 5px !important;
}

.custom_select {
    background-position: left .75rem center;
}

.fa-solid.fa-plus {
    margin-left: 5px;
}

.to_Show {
    left: 30px;
    right: unset;
}

.top_toggle p {
    right: unset;
    left: 10px;
}

.btn_wrap {
    text-align: end !important;
}

.save_btn {
    display: flex;
    justify-content: end;
}

.switch_btn_custom {
    flex-direction: row-reverse;
    justify-content: right;
}

.fa-angle-right {
    margin-right: 8px;
    margin-left: 8px;
    transform: rotate(180deg)
}

.select2-container--default .select2-selection--multiple::after {
    right: unset;
    left: 10px;
}

.sw-theme-arrows[dir=rtl] > .nav .nav-link.done::after {
    border-right-color: #05a1d7 !important;
}

.first_e .material-icons {
    margin-left: -5px;
}

.modal_b_wraper .lang_select {
    flex-direction: row-reverse;
}

}

[lang="ar"] text {
    text-anchor: end; /* Align text to the end in Arabic */
    direction: rtl;
}



/******************************************MEDIA QUERIES****************************************************/

@media(max-width:1366px) {
    .secondry_btn {
        font-size: 12px !important;
    }

    .primary_label {
        font-size: 13px;
    }

    .statistics-details {
        flex-wrap: wrap;
        justify-content: flex-start !important;
        gap: 5px;
    }

    .right_sec .buttons_wraper .btn_wrap {
        margin-top: 15px;
        justify-content: end;
        max-width: 100%;
    }

    .right_sec .buttons_wraper .right_side_btn {
        width: 100%;
        text-align: end
    }

    .right_sec .buttons_wraper {
        flex-wrap: wrap;
    }

    .switch_text {
        font-size: 12px;
        margin-left: 5px;
    }

    th.k-header {
        font-size: 12px !important;
    }

    .k-grid-content table tr td {
        font-size: 12px !important;
    }

    .right_sec .buttons_wraper .btn_wrap a {
        font-size: 12px;
    }
}

@media(max-width:1240px) {
    .right_sec .outer_wal_search.lg_screen {
        max-width: 280px !important;
    }

    .right_sec .mid_search input[type=text] {
        padding: 7px 45px;
    }

    .aside_nav .right_sec .top_search {
        column-gap: 18px;
    }

    .country_wraper .inner_most {
        gap: 30px;
    }

    .filter_sec .right_btn {
        display: flex;
        justify-content: space-between;
        column-gap: 15px;
        margin: 0 auto;
        max-width: 245px;
    }

    .filter_sec .mid_buttons a {
        padding: 8px 8px;
    }

    .filter_sec .outer_wal_search .active_one {
        padding: 8px 15px;
    }

    .buttons_wraper .left_side_btn {
        flex-wrap: wrap;
    }

    /*colgroup col{
        width:150px !important;
    }*/
    /*colgroup col:first-child{
        width:30px !important;
    }
        #createBulkGrid colgroup col {
            width: 130px !important;
        }*/
}

@media(max-width:1024px) {

    .form_section h2 {
        padding-bottom: 10px;
        font-size: 17px !important;
    }

    .buttons_wraper .left_side_btn {
        flex-wrap: wrap;
        gap: 15px;
    }

    #initialMessage h5 {
        font-size: 14px;
    }

    footer p {
        font-size: 14px;
    }
}


@media(max-width:991px) {
    /*.primary_btn {
    margin-top: 20px;
}*/

    /*.left_sec {
    max-width: 185px;
}

.aside_nav .main_wraper_nav .right_sec {
    width: calc(100% - 185px);
}*/

    .chek_m {
        margin-top: 0px;
    }

    .right_sec .full_wraper .left_breadcumbs p {
        font-size: 16px;
    }

    .right_sec .mid_search input[type=text] {
        padding: 10px 30px;
    }

    .right_sec .mid_search .search_icon {
        left: 12px;
        max-width: 17px;
    }

    /*.aside_nav .right_sec .filter_sec {
    flex-wrap: wrap;
    row-gap: 20px;
}*/

    /*.filter_sec .left_breadcumbs {
    display: block;
    width: 100%;
}*/

    .country_wraper .inner_most {
        grid-template-columns: repeat(2, 1fr);
    }

    .primary_input {
        margin: 10px 0px;
    }

    .country_wraper .inner_most {
        column-gap: 20px;
        row-gap: 0px;
    }

    .country_wraper .form_container .btn_wrap {
        text-align: center;
    }

    .p_index {
        max-width: 100%;
        width: 100%;
    }
}

@media(max-width:768px) {
    .form_section h2 {
        font-size: 14px !important;
    }

    .primary_btn {
        padding: 5px 40px;
        font-size: 13px;
    }

    .accor_sec .top_text h3 {
        font-size: 15px
    }

    .top_toggle p {
        top: 3px;
        font-size: 14px;
    }

    .left_sec .top_logo {
        max-width: 60px;
    }

    .md_screen {
        display: block;
        /* width: 100%;*/
    }

    .lg_screen {
        display: none;
    }

    .right_sec .mid_search input[type=text] {
        padding: 5px 35px;
        font-size: 13px;
    }

    .aside_nav .full_wraper {
        padding-bottom: 0px;
    }

    .form_section {
        margin: 0px 0px;
        border-radius: 0px;
    }

    .primary_label {
        font-size: 13px;
    }

    .custom_select {
        font-size: 13px !important;
    }

    .select2-container--default .select2-selection--single {
        font-size: 12px !important;
    }

    .select2-container::placeholder {
        font-size: 13px !important;
        font-weight: 100 !important;
    }

    th.k-header {
        font-size: 12px !important;
    }

    .k-column-title {
        font-size: 12px !important;
    }

    .k-grid td {
        padding: 6px 12px !important;
    }

    .k-grid-header th.k-header {
        padding: 6px 12px !important;
    }

    .left_sec .list_item ul li .nav_li {
        max-width: 145px;
        padding: 7px 8px;
        margin-bottom: 0px;
    }

    .left_sec .list_item ul li .item_img {
        width: 17px;
    }

    .k-upload-button {
        font-size: 12px !important;
    }

    .to_Show i {
        font-size: 12px;
    }

    .to_Show {
        padding: 2px 10px;
    }
    /*.aside_nav .right_sec .top_search {
    flex-wrap: wrap;
    row-gap: 20px;
}*/
    .action_logo {
        color: var(--main_color);
        padding: 5px 5px;
        border-radius: 5px;
        font-size: 9px;
    }

    .secondry_btn {
        margin-bottom: 10px;
        padding: 9px 15px !important;
        font-size: 12px !important;
        border-radius: 5px !important;
    }

    footer p {
        font-size: 14px;
    }

    .p_index {
        max-width: 100%;
    }

    .left_sec .nav_item {
        padding: 10px 10px;
    }

    .mat-mdc-unelevated-button {
        height: 31px !important;
        padding: 0px 4px !important;
    }

    .order_product_section > div {
        flex-wrap: wrap;
    }

    .top_add_btn {
        width: 100%;
        margin-right: 0px;
        margin-top: 0px;
    }
}

@media(max-width:576px) {
    /*LOGIN PAGE CSS START FROM HERE*/

    .home_page .left_side {
        position: relative;
    }

    .home_page .right_side {
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #ffffffd1;
        transform: translate(-50%, -50%);
        max-width: 465px;
        width: 100%;
    }
}

@media(max-width:640px) {
    .secondry_btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }

    #btnFinish {
        padding: 6px 15px !important;
        border-radius: 5px !important;
        margin-bottom: 10px;
        font-size: 12px
    }

    .primary_input {
        margin: 5px 0px;
    }

    .input_custom {
        padding: 5px 6px;
    }

        .input_custom::placeholder {
            font-size: 11px;
        }

    .buttons_wraper .left_side_btn .btn_wrap input {
        padding: 5px 6px;
    }

    .select2-container--default .select2-selection--single {
        padding: 2px 0px !important;
        height: 32px !important;
    }

    .right_sec .buttons_wraper {
        padding: 0px 0px;
    }

        .right_sec .buttons_wraper .btn_wrap a {
            padding: 8px 12px !important;
            font-size: 11px !important;
            line-height: 1;
        }

    .left_breadcumbs .u_well {
        font-size: 14px;
    }

    .left_breadcumbs .u_name {
        font-size: 12px;
    }

    .sw-btn-prev, .sw-btn-next {
        padding: 6px 15px !important;
        border-radius: 5px !important;
        margin-bottom: 10px;
        font-size: 12px
    }

    .log_drop ul li a {
        font-size: 10px;
    }

    .left_sec .list_item ul li .nav_li {
        font-size: 10px;
    }

    .right_sec .top_search .right_div .img_wrap {
        margin-left: 10px;
    }

    footer p {
        font-size: 12px;
    }

    .card-title {
        font-size: 15px;
    }
    /*    .k-pager-numbers-wrap select.k-dropdown {
        height: 64%;
    }*/
    select.k-dropdown {
        padding: 0px 8px !important;
    }

    .k-picker {
        font-size: 11px;
    }

    .top_add_btn input {
        font-size: 11px;
    }

    .top_add_btn div:nth-child(2) {
        flex-wrap: wrap;
        margin: 5px 0px;
    }
}

@media(max-width:440px) {
    .secondry_btn {
        padding: 6px 12px !important;
        border-radius: 5px !important;
        margin-bottom: 5px !important;
    }

    .primary_label {
        font-size: 12px;
    }

    .right_sec .mid_search .search_icon {
        left: 11px;
        max-width: 14px;
        transform: translateY(-45%);
    }

    .right_sec .mid_search input[type=text] {
        font-size: 11px;
        padding: 5px 28px;
        /*padding: 10px 20px;*/
    }

    footer p {
        font-size: 12px;
    }


    .outer_wal_search {
        text-align: right;
    }

    .country_wraper .inner_most {
        grid-template-columns: repeat(1, 1fr);
    }

    .form_section {
        margin: 0px 0px;
        border-radius: 0px;
    }

    .k-upload .k-upload-button {
        padding: 3px 3px;
        font-size: 11px !important;
    }

    .primary_input textarea {
        height: 65px;
    }

    .k-pager-nav {
        padding: 4px 4px !important;
    }

    .k-pager-sm .k-pager-numbers-wrap {
        margin: 0px !important;
    }

    .k-pager-nav {
        min-width: 1em !important;
    }
}

/*MEDIA QUERIES ENd Here*/

.k-grid-content-expander {
    width: 100% !important;
}



.select2.select2-container.select2-container--default {
    width: 100% !important;
    text-transform: capitalize;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #2196F3;
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }

.badge-success {
    background-color: #28a745;
    color: white;
    padding: 0.5em 0.75em;
    border-radius: 0.2rem;
    font-size: 0.675rem;
    font-weight: 700;
    display: inline-block;
}

.badge-info {
    background-color: #17a2b8;
    color: white;
    padding: 0.5em 0.75em;
    border-radius: 0.2rem;
    font-size: 0.675rem;
    font-weight: 700;
    display: inline-block;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
    padding: 0.5em 0.75em;
    border-radius: 0.2rem;
    font-size: 0.675rem;
    font-weight: 700;
    display: inline-block;
}

/*.input_custom:focus ~ label, .textarea textarea:focus ~ label,
.input_custom:valid ~ label, .textarea textarea:valid ~ label {
    transform: translateY(-20px);
    font-size: 14px;
    color: #3498db;
}

.input_custom:focus label {
    transform: translateY(-20px);
    font-size: 24px;
    color: #3498db;
}
*/
.select2-container .select2-search--inline .select2-search__field {
    font-weight: 400;
    font-size: 12px !important;
}

    .select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder {
        color: #495057 !important;
        text-transform: capitalize !important;
    }
/*#RoleId {
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.15) !important;
}*/

/******************************************
 * Prevent text wrapping, hide overflow, 
 * and show ellipsis in grid cells.
 ******************************************/

.grid-icon-btn-group-ful {
    display: flex;
    align-items: center;
}

.small-link-btn {
    background: transparent;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

.switch-wrapper {
    display: inline-block;
    vertical-align: middle;
}

.switch {
    position: relative;
    display: inline-block;
    width: 39px;
    height: 19px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: background-color 0.4s; /* Changed for clarity */
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 18px;
        left: 0px;
        top: 0px;
        background-color: white;
        transition: transform 0.4s; /* Changed for clarity */
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: red;
}

    input:checked + .slider:before {
        transform: translateX(20px); /* Adjusted for better alignment */
    }

.slider:hover {
    background-color: #bbb;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/*.small-link-btn:hover {
    background-color: #bbb;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}*/
#CustomerGrid .k-grid-content td,
#ProductTransferGrid .k-grid-content td,
#productGrid .k-grid-content td,
#FulfillmentCenterGrid .k-grid-content td {
    /*    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;*/
}

.k-grid.k-widget.k-grid-display-block {
    height: auto !important;
}

.k-grid-content.k-auto-scrollable {
    height: auto !important;
    min-height: 180px !important;
    overflow-y: auto;
}

.show-pricing-container {
    height: 300px;
    overflow-y: auto;
}

.toolbar-left {
    float: left;
    margin-right: auto;
    font-size: 13px !important;
}

.toolbar-right {
    float: right;
}

.k-button.k-grid-excel {
    text-transform: none;
}

.k-grid-header {
    /*    background-color: #d9e4eb !important;*/
}

.k-grid td {
    color: #292D32 !important;
    font-size: 12px !important;
    border-width: 0px;
}

.k-toolbar {
    display: block !important;
    width: 100%;
    text-align: right;
}

.page-count {
    font-size: 12px;
    letter-spacing: 0.2em;
    cursor: pointer;
}

#pdf-nav {
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

#download-pdf {
    text-align: center;
    cursor: pointer;
    background: #24a241; /* Green color for the download button */
    color: white;
}

#pdf-nav button {
    font-size: 13px;
}

#download-pdf:hover {
    background-color: #218838; /* Darker green on hover */
}

.scrollable-div {
    width: 100%; /* Set the desired width */
    height: 700px; /* Set the fixed height */
    overflow-y: auto; /* Enable vertical scrollbar */
    border: 1px solid #ccc; /* Optional: Border for better visibility */
    padding: 10px; /* Optional: Padding for content */
}

/*.ss{
    top:50px !important;
}*/
