:root {
    --default_bg_color: #f0f2f5;
    --default-color-01: #ededed;
    --default-color-01-hover: #e6e6e6;
    --red: rgb(182 45 45);
    --blue: rgba(45, 119, 182, 1);
    --purple: #ada7ff;
    --lightblue: rgb(224, 240, 255);
    --black: rgba(42, 42, 42, 1);
    --black-00: rgba(0, 0, 0, 1);
    --darkblue: rgba(18, 100, 163, 1);
    --graybg: rgba(248, 248, 248, 1);
    --lightgray: rgba(249, 249, 249, 1);
    --darkgray: rgb(213 213 213);
    --bluewhite: rgb(240 242 245 / 70%);
    --default_txt_black_color: rgba(20, 20, 20, 1);
    --default_txt_white_color: rgba(253, 253, 253, 1);
    --box_color: rgba(255, 255, 255, 1);
    --white-00: rgba(255, 255, 255, 1);
    --black-normal: rgba(42, 42, 42, 1);
    --white_dark: var(--white-00);
    --white_smoke: #e8e8e8;
    --messagebox_background_color: rgba(227, 243, 255, 1);
    --messagebox_title_color: rgba(212, 237, 255, 7.6);
    --disabled-button-background-whitetheme: #6b6b6b;
    --default_fixed_menu_top_height: 30px;
    --default_txt_align: right;
    --default_txt_dir: rtl;
    --default_float: none;
    --default_pos_left: auto;
    --default_pos_right: 0;
    --default_box_shadow: 0px 20px 40px rgba(5, 32, 58, 0.1);
    --input_backgroundColor: rgb(252 252 252);
    --input_borderColor: rgb(166, 166, 166);
    --input_borderFocusedColor: var(--black);
    --input_borderFocusedBGColor: var(--white-00);
    --input_borderRadius: 6px;
    --input_borderWidth: 1px;
    --input_labelScale: 0.77;
    --input_height: 45px;
    --input_fontSize: 16.5px;
    --input_margin: 0px 0px 0px 0px;
    --input_marginTr_flds: 0px 0px 20px 0px;
    --input_paddingRight: 8px;
    --input_paddingLeft: 8px;
    --input_labelColor: #80868b;
    --input_labelColorFocused: rgba(48, 115, 170, 1);
    --input_autoFill: rgba(255, 254, 221, 1);
    --input_boxShadow: none;
    --border_radius_6: 6px;
    --border_radius_8: 8px;
    --border_radius_10: 10px;
    --border_radius: 13px;
    --sumit_button_hover_color: rgba(58, 113, 158, 1);
    --search_icon: url(../images/search.svg);
    --loading_icon: url(../images/loading.gif);
    --men_anchor_hover: var(--default_bg_color);
    --men_anchor_active: var(--graybg);
    --nav-width: 96%;
    --nav-max-width: 1100px;
    --link-color: #06c;
    --tooltipBgColor: var(--black);
    --tooltipTxtColor: var(--white-00);
    --main_tr_even: var(--white-00);
    --main_tr_odd: rgb(230 230 230);
    --inner1_main_tr_even: #e5e5e5;
    --inner1_main_tr_odd: #f6f6f6;
    --inner_table_tr_bg: #dde7d3;
    --td_border_color: rgb(0, 0, 0);
    --table_border_color: rgb(0, 0, 0);

}


@font-face {
    font-family: "np";
    src: url('../fonts/np.woff2');
}

@font-face {
    font-family: "npl";
    src: url('../fonts/npl.woff2');
}

@font-face {
    font-family: "Roboto_500";
    src: url('../fonts/Roboto_500.woff2');
}








*, html, body {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: npl;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -ms-tap-highlight-color: transparent;
    -o-tap-highlight-color: transparent;
    outline: none;
    font-weight: normal;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    color: var(--default_txt_black_color);
    text-align: var(--default_txt_align);
    text-overflow: ellipsis;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    direction: var(--default_txt_dir);
    /* transition: all 0s; */
}

* {
    background-color: transparent;
    border: none;
    outline: none;
    position: relative;
    box-sizing: border-box;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    /* overflow-y: auto;
    overflow-x: hidden; */
}

html, body {
    background-color: var(--default_bg_color);
    padding-bottom: 20px;
}




.blockscroll {
    overflow: hidden !important;
    position: relative !important;
    padding-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    margin-left: 0;
    margin-top: 0;
}

.blockdivscroll {
    overflow: hidden !important;
}

*::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: var(--borderradius);
}

*::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: var(--borderradius);
}


input[type="time"], input[type="text"], input[type="email"], input[type="date"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="url"], select, textarea {
    font-size: var(--input_fontSize);
    height: var(--input_height);
    background-color: var(--input_backgroundColor);
    border-radius: var(--input_borderRadius);
    float: var(--default_float);
    text-align: var(--default_txt_align);
    margin: var(--input_margin);
    padding-left: var(--input_paddingLeft);
    padding-right: var(--input_paddingRight);
    border-color: rgb(0, 0, 0);
    border-width: var(--input_borderWidth);
    box-shadow: var(--input_boxShadow);
    border-style: solid;
    box-shadow: var(--input_boxShadow);
    /* padding-bottom: 2px; */
}

textarea {
    height: 90px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--input_borderFocusedColor);
    background-color: var(--input_borderFocusedBGColor);
    box-shadow: 0 0 0 1px #000000;
    transition: border-color .2s;
}

input[type=checkbox] {
    border-color: inherit;
    background-color: inherit;
    box-shadow: none;
    transition: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    -ms-appearance: textfield;
    -o-appearance: textfield;
    appearance: textfield;
}

input.large_input_number, select.large_input_number {
    height: 52px;
    border-width: 2px;
    background-color: rgb(255 255 255);
    font-weight: bold;
    font-size: 18px;
}

input.large_input_text {
    height: 52px;
    border-width: 3px;
    font-size: 18.6px;
    font-weight: bold;
    letter-spacing: 0.4px;
    word-spacing: 0.5px;
}

input[type=submit]:disabled, button:disabled {
    background-color: var(--disabled-button-background-whitetheme);
    pointer-events: none;
}

input[type=submit]:disabled:hover, button:disabled:hover {
    background-color: var(--disabled-button-background-whitetheme);
    opacity: .9;
}


a {
    text-decoration: none;
}

a:link,
a:visited,
a:link:active,
a:visited:active {
    color: inherit;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url(../images/down.png);
    background-position: left 7px center;
    background-size: 16px;
    background-repeat: no-repeat;
    cursor: pointer;
}

select option {
    font-size: 18px;
}

input.passtextinclude {
    padding-top: 5px !important;
}

input.buttons {
    width: 100%;
    height: 52px;
    overflow: hidden;
    background-color: var(--black);
    padding: 8px 8px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    border-radius: var(--input_borderRadius);
    color: var(--graybg);
    font-weight: normal;
    font-family: 'npl';
    letter-spacing: 0.4px;
    border: none;
}

input.buttons:hover {
    /* background-color: rgb(0 83 60); */
    color: var(--white-00);
    transition: all .2s ease-in-out;
}

div.main_content {
    margin: 0 auto;
    margin-top: var(--default_fixed_menu_top_height);
    width: 100%;
    height: auto;
    display: block;
}

div.container_center_page {
    padding: 20px;
    height: auto;
    display: block;
    background-color: var(--box_color);
    margin: auto;
    width: 600px;
    max-width: 86%;
    border-radius: var(--border_radius);
    box-shadow: 0 30px 60px 0 rgba(182, 185, 204, 1);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div.container_width_400 {
    width: 400px;
    max-width: 80%;
}

div.container_width_350 {
    width: 350px;
    max-width: 75%;
}


div.container_top_center_page {
    padding: 20px;
    height: auto;
    display: block;
    background-color: var(--box_color);
    margin: auto;
    width: 600px;
    max-width: 86%;
    border-radius: var(--border_radius);
    /* box-shadow: 0 30px 60px 0 rgba(182, 185, 204, 1); */
    box-shadow: -5px 12px 22px -15px rgba(182, 185, 204, 1);
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: var(--default_fixed_menu_top_height);
    margin-top: calc(var(--default_fixed_menu_top_height) + 30px);
}


.div_top_container::after {
    content: "";
    box-shadow: 0px 9px 15px -18px #646464;
    width: 95%;
    position: absolute;
    bottom: 0;
    border-radius: 10px;
}

div.div_top_container {
    margin-top: 0px;
    margin-bottom: 24px;
    padding: 0;
    padding-bottom: 18px;
}

div.div_top_container svg {
    width: 48px;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;

}

div.div_top_container svg path {
    fill: var(--black);
}

.dark_links:link, .dark_links:visited, a.dark_links:link:active, .dark_links:visited:active {
    color: var(--white-00);
}

div.div_top_container img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}


p.container_title {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
    font-family: np;
    font-size: 22px;
    color: var(--black);
    padding: 0px;
    display: block;
    border-radius: 8px;
    z-index: 2;
}



div.inner_input {
    width: 100%;
    height: auto;
    display: block;
}

div.inner_input {
    margin-top: 12px;
}



div.inner_input:first-child {
    margin-top: auto;
}

div.inner_input:last-child {
    margin-bottom: 0px;
}

div.inner_input input, div.inner_input select, div.inner_input textarea {
    width: 100%;
}

div.single_input {
    width: 100%;
    display: block;
}

div.single_input input, div.single_input select, textarea {
    width: 100%;
    display: block;
}


div.multi_input_withlbl {
    display: flex;
    flex-direction: row;
    gap: 5px 10px;
}

div.labeled_in_multi_input {
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
    /* flex: 0 0 35%; */
}

div.labeled_in_multi_input_70 {
    flex: 0 1 60%;
}

.lang_ltr div.labeled_in_multi_input {
    margin-left: 0px;
    margin-right: 10px;
}

div.inner_input textarea {
    padding: 8px 8px;
    font-size: 15px;
}

div.labeled_in_multi_input:last-child {
    margin-right: 0px;
    margin-left: 0px;
    flex: 1;
    width: auto;
}

div.labeled_in_multi_input label, label {
    margin-bottom: 3.5px;
    display: block;
    font-size: 14px;
    padding-left: calc(var(--input_paddingLeft) / 2);
    padding-right: calc(var(--input_paddingRight) / 2);
    font-family: np;
}

select.small_select {
    margin-left: 25px;
}

div.equaly_inputs div.labeled_in_multi_input {
    width: 50%;
}

div.equaly_inputs div.labeled_in_multi_input:last-child {
    margin-right: 0px;
    margin-left: 0px;
    flex: auto;
}





button, a {
    cursor: pointer;
}



div.nav_top {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: var(--default_fixed_menu_top_height);
    background-color: var(--white-00);
    display: block;
    z-index: 4;
    border-radius: 0px;
    box-shadow: 0px -18px 30px 3px #979cba;
}

.submitbuttons {
    margin-top: 15px;
}

form {
    display: block;
    /* overflow: hidden; */
    z-index: 2;
}


.ltr {
    direction: ltr !important;
}

.rtl {
    direction: rtl !important;
}

.lang_ltr {
    direction: ltr !important;
    text-align: left !important;
}

.lang_rtl {
    direction: rtl !important;
    text-align: right !important;
}

.force_trl {
    direction: rtl !important;
    text-align: right !important;
}

.actr:active {
    transform: translate(0px, 0px) scale(0.98);
    transition-duration: 0.2s;
}

.if_desktop_tr {
    display: table-row !important;
}

label {
    cursor: pointer;
}

.lbl_clrd {
    color: rgb(1 126 210);
    cursor: pointer;
}

div.messagebox {
    position: fixed;
    bottom: -400px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background-color: var(--messagebox_background_color);
    padding: 0;
    width: 380px;
    display: block;
    margin: 0 auto;
    border-radius: var(--border_radius);
    box-shadow: 6px 15px 40px -20px rgb(82 82 82 / 60%);
    transition-property: all;
    transition-duration: 0.4s;
    transition-delay: 0s;
    z-index: 99;
}


div.messagebox * {
    font-family: 'npl';
}

div.messagebox_inner {
    border-radius: var(--border_radius);
}

/* div.messagebox {
    bottom: 100px;
} */

div.div_messagebox_title {
    background-color: var(--messagebox_title_color);
    padding: 20px;
    border-radius: var(--border_radius);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-bottom: 9px;
    padding-top: 9px;
    overflow: hidden;
}

div.error_message {
    background-color: rgba(255, 229, 229, 1);
}

div.error_message div.div_messagebox_title {
    background-color: rgba(255, 215, 215, 1);
}

div.error_message {
    background-color: rgba(255, 229, 229, 1);
}

div.error_message div.div_messagebox_title {
    background-color: rgba(255, 215, 215, 1);
}

div.success_message {
    background-color: rgba(253, 255, 228, 1);
}

div.success_message div.div_messagebox_title {
    background-color: rgba(223, 249, 182, 0.4);
}

div.normal_message {
    background-color: rgba(227, 243, 255, 1);
}

div.normal_message div.div_messagebox_title {
    background-color: rgba(212, 237, 255, 7.6);
}

p.messagebox_title {
    font-size: 18px;
}

.div_messagebox_body {
    padding: 18px;
}

p.div_messagebox_message {
    font-size: 17px;
}

div.div_top_messagbebox_body {
    margin-bottom: 48px;
}

div.div_bottom_messagbebox_body {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background: var(--white-00);
    left: 0px;
    right: 0px;
    height: 48px;
    text-align: center;
    border-radius: var(--border_radius);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

svg.closemessage {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

svg.closemessage path {
    fill: var(--black);
}

svg.closemessage path {
    fill: var(--black);
}

div.div_messagebox_title button.closebutton:hover svg.closemessage path {
    fill: var(--red);
    transition: all 0.1s;
}

div.messagebox_buttons {
    display: none;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    height: auto;
    /* background-color: rgb(255 255 255 / 64%); */
    background-color: transparent;
    margin-bottom: -15px;
    padding: 0;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: row;
    /* box-shadow: 0px -8px 14px -14px #838383, 0px 8px 14px -14px #838383; */
    border-radius: var(--border_radius);
}

div.messagebox_buttons button {
    width: auto;
    height: auto;
    text-align: center;
    padding: 8px 10px;
    margin: 0;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-family: np;
    color: var(--white-00);
    width: 100%;
}

.np {
    font-family: np;
}

p.tooltip {
    display: none;
    position: fixed;
    top: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--tooltipBgColor);
    width: auto;
    -webkit-width: fit-content;
    -moz-width: fit-content;
    -ms-width: fit-content;
    -o-width: fit-content;
    width: fit-content;
    max-width: 240px;
    height: auto;
    padding: 5px 10px 5px 10px;
    font-family: npl;
    font-size: 15px;
    border-radius: 6px;
    color: #ffffff;
    outline: none;
    margin: 0px auto;
    z-index: 100;
    opacity: 1;
    -webkit-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    -moz-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    -ms-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    -o-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    overflow: inherit;
}

span.tooltip_txt {
    line-height: 28px;
    display: block;
    background-color: var(--tooltipBgColor);
    color: var(--tooltipTxtColor);
    opacity: 1;
    -webkit-animation: fadetooltip 0.62s cubic-bezier(0.4, 0, 1, 1);
    -moz-animation: fadetooltip 0.62s cubic-bezier(0.4, 0, 1, 1);
    -ms-animation: fadetooltip 0.62s cubic-bezier(0.4, 0, 1, 1);
    -o-animation: fadetooltip 0.62s cubic-bezier(0.4, 0, 1, 1);
    animation: fadetooltip 0.62s cubic-bezier(0.4, 0, 1, 1);
}


p.tooltip span.tooltip_arrow {
    opacity: 1;
    -webkit-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    -moz-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    -ms-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    -o-animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
    animation: fadetooltip 0.6s cubic-bezier(0.4, 0, 1, 1);
}

span.tooltip_arrow {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    right: auto;
    bottom: auto;
    background-color: var(--tooltipBgColor);
    z-index: -1;
}

p.tooltip span.tooltip_arrow_right {
    top: 50%;
    left: -5px;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 1px;
}

p.tooltip span.tooltip_arrow_bottom {
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}

p.tooltip span.tooltip_arrow_top {
    top: auto;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}

p.tooltip span.tooltip_arrow_left {
    top: 50%;
    left: auto;
    right: -5px;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 2px;
}

@keyframes fadetooltip {
    0% {
        opacity: 0;
        color: transparent;
        background-color: transparent;
    }

    25% {
        opacity: 0;
        color: transparent;
        background-color: transparent;
    }

    50% {
        opacity: 0;
        color: transparent;
        background-color: transparent;
    }

    75% {
        opacity: 0;
        color: transparent;
        background-color: transparent;
    }

    90% {
        opacity: 1;
        color: transparent;
        background-color: transparent;
    }

    100% {
        opacity: 1;
        color: var(--tooltipTxtColor);
        /* background-color: rgba(31, 31, 31, 0.65); */
        background-color: var(--tooltipBgColor);
    }
}

div.searchable_loading_lists {
    width: 100%;
    /* background-color: lightsteelblue; */
    background-color: var(--default_bg_color);
    margin: 0 auto;
    margin-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
}

div.searchable_loading_lists_middle {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 0;
    padding-top: 0px;
    max-height: 300px;
    margin-left: 8px;
    display: none;
    /* margin-top: 12px; */
    top: 12px;
    transition: all .2s;
}

div.nicescroll .loading_lists_item:hover {
    /* color: var(--input_borderColor); */
    /* font-weight: bold; */
    /* box-shadow: 0px 0px 2px 2px var(--input_borderColor); */
    background-color: rgb(230 242 255);
}

div.nicescroll::-webkit-scrollbar-thumb:hover {
    background: rgb(131, 131, 131);
    border-radius: 8px;
}

div.nicescroll::-webkit-scrollbar-thumb {
    background-color: rgb(151 151 151);
    border-radius: 8px;
}

div.nicescroll::-webkit-scrollbar {
    width: 10px;
    background-color: var(--white-00);
    border-radius: 8px;
}



/* body::-webkit-scrollbar-thumb:hover {
    background: rgb(131, 131, 131);
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(151 151 151);
    border-radius: 8px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
    border-radius: 8px;
} */


div.searchable_loading_lists_top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 0px 8px;
}

div.sloader_top_main {
    width: 100%;
    height: 45px;
    margin: 0 auto;
}

/* div.spacer_for_ne {
    display: none;
    height: 15px;
    background-color: transparent;
    position: relative;
    top: 0;
    z-index: 0;
    width: 100%;
    pointer-events: none;
} */



div.searchable_loading_lists_middle .loading_lists_item:last-child {
    margin-bottom: 0px;
}

div.searchable_loading_lists_middle .loading_lists_item {
    display: block;
    width: calc(100% - 16px);
    height: auto;
    margin: 0 auto;
    background-color: var(--white-00);
    margin-top: 0px;
    margin-bottom: 6px;
    padding: 8px 0px;
    padding-left: var(--input_paddingLeft);
    padding-right: var(--input_paddingRight);
    border-radius: 8px;
    font-size: calc(var(--input_fontSize) - 3px);
    transition: background-color .4s;
}

input.search_txt_loading_lists {
    width: 100%;
}

.buttons_style_blue {
    background-color: var(--blue);
    border: 2px solid var(--blue);
    color: var(--white-00);
}

.buttons_style_green {
    background-color: rgb(67 212 170);
    border: 2px solid rgb(57 210 166);
    color: var(--white-00);
}

.buttons_style_red {
    background-color: rgb(194 50 50);
    border: 2px solid rgb(194 50 50);
    color: var(--white-00);
}

button.buttons_btn_one_btn, button.buttons_btn_two_btn, button.buttons_btn_three_btn {
    display: none;
}

div.messagebox_buttons button:hover {
    opacity: .9;
}

div.div_messagebox_title button.closebutton {
    position: absolute;
    left: -3px;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: transparent;
    transform: translateY(-50%);
    text-align: center;
    background-image: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding: 0;
    margin: 0;
}

a.telmsg {
    font-family: 'np';
    font-weight: normal;
    color: var(--mgreen5);
}

div.messagebox_two_buttons button.two_buttons_btn_one_btn {
    background-color: #55b7f7;
    border: 2px solid #44b5ff;
    color: white;
}

table {
    width: 100%;
    /* border-collapse: collapse; */
    border-spacing: 0;
    padding: 0px 0px !important;
    border: 2px solid var(--table_border_color);
}

table tr {
    border: none;
}

td:nth-child(1) {
    border-right: none;
}

table thead tr th {
    border: 1px solid var(--td_border_color);
    border-top: none;
}

table thead tr th:last-child {
    border-left: none;
}

table thead tr th:first-child {
    border-right: none;
}


td:last-child {
    border-left: none;
}

td {
    border: 1px solid var(--td_border_color);
}



table.wasl_now_tbl tr.main_wsltr:nth-last-child(1) td {
    border-bottom: none;
}

table.counters_tbl tr.main_wsltr:nth-last-child(2) td {
    border-bottom: none;
}

table.counters_tbl tr.main_wsltr:first-child td {
    border-top: none;
}

/* tr.main_wsltr:last-child td {
    border-bottom: none !important;
} */

table, th, td {
    padding: 2.5px 5px;
    font-size: 15px;
}

table tfoot, table tfoot tr, table tfoot tr td {
    border-bottom: none;
}

table tfoot tr.tr_prnt_btn td {
    border-top: 2px solid var(--td_border_color);
}






table.all_en {
    direction: ltr;
    text-align: left;
    margin-top: 10px;
}

.text_center {
    text-align: center !important;
}

div.list_of_drugs_main p.l_d_plus_sign {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0px 0px;
    font-size: 32px;
    line-height: 25px;
    background-color: transparent;
    color: rgb(0 0 0 / 40%);
    font-family: np;
    pointer-events: none;
}



div.inner_lsts_dr {
    background: rgb(255 255 255);
    padding: 10px 10px;
    top: -10px;
    width: calc(100% + 20px);
    margin: 0 auto;
    display: block;
    left: -10px;
    padding-bottom: 0px;
    float: left;
    z-index: 2;
    margin-bottom: -5px;
}

input.pt_search_txt {
    height: 40px;
}

div.pa_v_lists_main_div div.pv_tests p {
    font-size: 17px;
    line-height: 29px;
}




button.okmessagbebox {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20px;
    background-color: var(--white-00);
    color: var(--black);
    border-radius: var(--border_radius);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

td.pnametd {
    font-family: npl;
    font-size: 17px;
}

div.top_content {
    text-align: center;
    margin-top: calc(var(--default_fixed_menu_top_height) + 0px);
    background: transparent;
    padding: 20px 0px;
    background-image: url(../images/slide_bg_1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 400px;
}

div.main_c_t_hrefs {
    margin: 0 auto;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    width: 366px;
    max-width: 90%;
    background: rgb(255 255 255 / 41%);
    margin-top: 6px;
    padding: 10px;
    border-radius: var(--border_radius_8);
    gap: 10px;
}

a.c_t_hrefs {
    color: var(--link-color);
    background-color: var(--white-00);
    padding: 10px 70px 10px 12px;
    border-radius: var(--border_radius_8);
}

a.c_t_hrefs::before {
    content: "";
    background-image: url(../images/up.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    right: 6px;
    left: auto;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background-size: 11px;
}

a.c_t_hrefs:hover {
    color: var(--black-00);
}

p.content_title {
    text-align: center;
    color: var(--black);
    font-size: 40px;
    font-family: npl;
    background: transparent;
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
}


div.inner_nav {
    height: 100%;
    width: var(--nav-width);
    max-width: var(--nav-max-width);
    margin: 0px auto;
    background: transparent;
    position: absolute;
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

button.btn_mens {
    padding: 0;
    margin: 0;
    outline: none;
    text-align: center;
    z-index: 3;
    display: inline-block;
    position: relative;
    width: 46px;
    height: 46px;
    cursor: pointer;
    transition: all .2s;
    border: none;
    border-radius: 100%;
    background-color: var(--default_bg_color);
}

div.men_right_btns {
    right: 0px;
    left: auto;
    background: transparent;
    z-index: 2;
    width: 270px;
    top: 50%;
    transform: translateY(-50%);
}

button.prntbtn {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}



div.menus_parts {
    background-color: transparent;
    display: inline-block;
    padding: 0;
    margin: 0;
    border: 0;
    height: 100%;
    width: auto;
    position: absolute;
    z-index: 2;
}

div.men_center_btns {
    display: none;
    /* display: flex; */

    text-align: center;
    width: auto;
    margin: 0 auto;
    position: absolute;
    left: 200px;
    top: 50%;
    height: calc(100% - 15px);
    /* background: lightblue; */
    transform: translateY(-50%);
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 10px;
    border-left: 1px solid var(--default-color-01);
    padding-left: 15px;
}

div.men_center_btns a {
    color: var(--black-00);
    font-size: 16px;
    font-family: npl;
    background-color: transparent;
    padding: 15px 10px;
    border-radius: var(--border_radius_6);
}

button.btn_mens svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div.cats_dropdown_main {
    display: none;
    top: calc(var(--default_fixed_menu_top_height) + 1.5px);
    z-index: 10;
    text-align: center;
    background: rgba(232, 232, 237, .4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    visibility: visible;
    position: fixed;
    opacity: 1;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0s;
}

div.cats_dropdown {
    width: var(--nav-width);
    max-width: var(--nav-max-width);
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    background-color: var(--white-00);
    height: auto;
    overflow: hidden;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: -5px 12px 22px -15px var(--default-color-01-hover);
    transform: translateX(-50%);
    opacity: 1;
    transition: all 0s;
}

button.btn_mens:hover {
    background-color: var(--default-color-01);
}

button.btn_mens:hover svg path.btn_mens_path {
    fill: var(--black);
    transition: fill .1s;
}




div.mens_right_r {
    top: 50%;
    right: 0px;
    background: transparent;
    transform: translateY(-50%);
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

div.men_left_btns {
    background: transparent;
    left: 0px;
    right: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 250px;
    pointer-events: none;
}

a.nav_home_btn {
    position: absolute;
    left: 0;
    font-size: 12px;
    text-transform: capitalize;
    font-family: npl;
    color: var(--black);
    height: 100%;
    /* background-color: rgb(227 227 227 / 62%); */
    top: 50%;
    padding: 0;
    margin: 0;
    z-index: 0;
    width: 40px;
    text-align: center;
    transform: translateY(-50%);
    line-height: 85px;
    border-radius: 4px;
    pointer-events: all;
    background-image: url(../images/logo.svg);
    background-position: center;
    background-size: 35px;
    background-repeat: no-repeat;
}


p, span, button, img, table, div, caption, tr, td, tbody, tfoot, thead, a {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

.not_selection {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

select {
    font-weight: bold;
}


p.name_of_hospital_mens {
    position: relative;
    top: calc(50% + -5px);
    text-align: left;
    transform: translateY(-50%);
    font-size: 18px;
    left: 46px;
    pointer-events: none;
    font-family: np;
    font-weight: normal;
}

p.sub_name_of_hospital_mens {
    font-size: 11px;
    position: absolute;
    bottom: 9px;
    left: 46px;
    text-transform: uppercase;
    font-family: np;
    color: var(--black);
    pointer-events: none;
}


.notshow {
    display: none;
    pointer-events: none;
}

.not_show {
    display: none;
    pointer-events: none;
}

.print_show {
    display: none;
    pointer-events: none;
}



span.loading_xhr_icons_right::after, span.loading_xhr_icons_left::after {
    position: absolute;
    top: 50%;
    display: block;
    width: 26px;
    height: 26px;
    background-color: transparent;
    transform: translateY(-50%);
    background-image: url(../images/loading.gif);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    pointer-events: none;
    z-index: 2;

}

span.loading_xhr_icons_right_active::after {
    content: "";
    left: auto;
    right: 8px;
}

span.loading_xhr_icons_left_active::after {
    content: "";
    left: 8px;
    right: auto;
}



span.input_icons_right::after, span.input_icons_left::after {
    position: absolute;
    top: 50%;
    display: block;
    width: 26px;
    height: 26px;
    background-color: transparent;
    transform: translateY(-50%);
    /* background-image: url(../images/loading.gif); */
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    pointer-events: none;
    z-index: 2;

}

span.input_icons_right input, span.input_icons_right select, span.input_icons_right textarea {
    padding-right: calc(var(--input_paddingRight) + 27px);
}

span.input_icons_left input, span.input_icons_left select, span.input_icons_left textarea {
    padding-left: calc(var(--input_paddingLeft) + 27px);
}

span.search_icon::after {
    background-image: var(--search_icon);
}

span.search_icon::after {
    background-image: var(--search_icon);
}


span.input_icons_right:after {
    content: "";
    left: auto;
    right: 8px;
}

span.input_icons_left:after {
    content: "";
    left: 8px;
    right: auto;
}

span.input_user_icon::after {
    background-image: url("../images/user_login.svg");
    background-size: 17px;
}

span.input_user_pass::after {
    background-image: url("../images/lock.svg");
    background-size: 20.5px;
}




.wrapper_check {
    display: none;
    height: 30px;
    width: 30px;
    background-color: var(--graybg);
    opacity: 1;
    z-index: 3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    border-radius: 100%;
    padding: 10px 10px;
    pointer-events: none;
}

.wrapper_check_right {
    right: 8px;
    left: auto;
}

.wrapper_check_left {
    right: auto;
    left: 8px;
}

.animated-check {
    height: 24px;
    width: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.animated-check path {
    fill: none;
    stroke: #7ac142;
    stroke-width: 4;
    stroke-dasharray: 23;
    stroke-dashoffset: 23;
    stroke-linecap: round;
    stroke-linejoin: round
}

.animated-checked path {
    animation: draw 0.3s linear forwards;
}

p.form_inner_one_title {
    color: var(--black);
    background-color: rgba(237, 239, 250, 0.76);
    font-size: 20px;
    font-family: npl;
    margin-bottom: 0px;
    padding-bottom: 5.5px;
    padding-top: 8px;
    border-bottom: 1px solid var(--black);
    line-height: 27px;
    padding-left: var(--input_paddingLeft);
    padding-right: var(--input_paddingRight);
    border-radius: 0;
}

form.form_hastitle {
    margin-top: 10px;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0
    }
}


div.form_loading_xhr_icons_enabled {
    pointer-events: inherit;
}

div.form_loading_xhr_icons_disabled {
    pointer-events: none;
}

div.form_loading_xhr_icons::before {
    content: "";
    background-color: var(--white-00);
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: .9;
    border-radius: 8px;
    padding: 0px;
    margin: 0;
    border: 4px solid var(--white-00);
    background-image: url(/asset/images/loading.gif);
    background-size: 15%;
}

div.form_loading_xhr_icons_enabled::before {
    display: block;
}

div.form_loading_xhr_icons_disabled::before {
    display: none;
}


div.inner_q_loaders button.loading_lists_item_qaza_as_title {
    pointer-events: none;
    background-color: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 6px;
    margin-top: 0px;
    font-size: 16.5px;
    font-family: npl;
}



div.inner_q_loaders div.na7ya_loader_inners {
    display: inline-flex;
    gap: 10px 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
    padding-top: 1px;
    flex-wrap: wrap;
}

div.inner_q_loaders div.na7ya_loader_inners button.loading_lists_na7ya {
    flex: none;
    width: auto;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* div.inner_q_loaders button.qaza_has_no_na7ya {
    display: none;
} */

/* div.inner_q_loaders div.na7ya_has_no_na7ya {
    display: none;
} */


div.ne_not_found_ {
    display: none;
    position: relative;
    width: 100%;
    height: 40px;
    background-color: lightblue;
    margin: 0 auto;
    margin-bottom: -8px;
    border-radius: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-top: 5px;
}

p.ne_not_found_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-family: npl;
}

div.nav_list_menu {
    display: none;
    position: absolute;
    width: 220px;
    height: auto;
    background-color: var(--white-00);
    top: calc(var(--default_fixed_menu_top_height) - 1px);
    z-index: 99;
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    right: 0px;
}

/* div.inner_nav_list_menu {
    padding: 10px 10px;
    background: transparent;
    border-radius: 8px;
} */



div.inner_nav_list_menu a.nav_logout_link::before {
    background-image: url(../images/logout2.svg);
}

div.inner_nav_list_menu a.fullscreenbtn::before {
    background-image: url(../images/fullscreen.svg);
    background-size: 28px;
}

div.inner_nav_list_menu a.open_sub_mens::before {
    background-image: url(../images/down.svg);
    background-size: 16.5px;
}

div.inner_nav_list_menu a.open_sub_mens_act::before {
    background-image: url(../images/down.svg);
    background-size: 16.5px;
    transform: rotate(180deg) translateY(50%);
}

div.inner_nav_list_menu a.fullscreenbtn {
    padding-top: 15px;
}

div.inner_nav_list_menu a:hover {
    background-color: rgb(242, 242, 242);
}










a.links_icons_right::before, a.links_icons_left::before {
    position: absolute;
    top: 50%;
    display: block;
    width: 26px;
    height: 26px;
    background-color: transparent;
    transform: translateY(-50%);
    /* background-image: url(../images/loading.gif); */
    background-size: 22px;
    background-repeat: no-repeat;
    transform-origin: center center;
    background-position: 50% 50%;
    pointer-events: none;
    z-index: 2;
    transition: all .3s;
}


a.links_icons_right::before {
    content: "";
    right: auto;
    left: 8px;
}

a.links_icons_left::before {
    content: "";
    left: 8px;
    right: auto;
}

div.hlinks {
    margin-top: 65px;
}

div.top_page_links {
    margin-bottom: 20px;
    border-bottom: 2px solid lightgray;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px 0px;
    margin-top: -8px;
}

div.top_page_links a {
    font-family: npl;
    padding: 5px 12px;
    font-size: 15.5px;
}

div.top_page_links a:hover {
    color: var(--black);
}



div.p_code_loader {
    box-shadow: 0px 0px 32px -3px gray;
    padding: 25px 25px;
    border-radius: 8px;
    text-align: center;
    background-color: white;
}

div.p_code_loader p {
    text-align: center;
    font-size: 16px;
    line-height: normal;
}

div.p_code_loader p.pp_code {
    font-size: 40px;
    font-family: npl;
    margin: 5px 0px 5px 0px;
    color: var(--black);
}

div.p_code_loader_main {
    padding: 25px 25px;
    border-radius: 8px;
    text-align: center;
    background-color: transparent;
}

button.close_pp_pcode {
    position: relative;
    bottom: -10px;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    background: white;
    text-align: center;
    border-radius: 8px;
    font-family: npl;
    font-size: 17px;
}

button.close_pp_pcode:hover {
    background-color: rgb(255 234 234);
}



div.main_content div.wide_content {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0px;
    margin-top: calc(var(--default_fixed_menu_top_height) + 0px);
}

div.main_content div.wide_content div.div_top_container {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0;
    padding-bottom: 0px;
}

div.main_content div.wide_content div.div_top_container::after {
    content: "";
    box-shadow: 0px 9px 10px -11px #9e9e9e;
    width: 600px;
    max-width: 90%;
    position: absolute;
    bottom: 0px;
    border-radius: 0;
    /* border-bottom: 1px solid; */
    top: 24px;
}

div.wide_content_inner {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    margin-top: 25px;
}

div.main_content div.wide_content div.div_top_container p.container_title {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
    font-family: npl;
    font-size: 20px;
    color: var(--black);
    padding: 0px;
    display: block;
    border-radius: 8px;
    z-index: 2;
}


a.home_btn {
    position: absolute;
    font-size: 12px;
    text-transform: capitalize;
    font-family: npl;
    color: var(--black);
    background-color: transparent;
    top: -15px;
    left: -15px;
    padding: 0;
    margin: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 100%;
    pointer-events: all;
    cursor: pointer;
    z-index: 1;
}

a.home_btn:hover {
    background-color: rgb(227 227 227 / 62%);
}

a.home_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background: transparent;
    border: 2px solid var(--black);
    border-radius: 4px;
}

div.menu_list {
    display: none;
    position: fixed;
    width: 300px;
    height: auto;
    top: calc(var(--default_fixed_menu_top_height) + 5px);
    background-color: var(--white-00);
    padding: 10px;
    border-radius: 10px;
    box-shadow: -5px 12px 22px -15px #868686;
    z-index: 10;
}

div.menu_list a {
    transition: all .2s;
}

div.menu_list a:hover {
    background-color: var(--men_anchor_hover);
}

div.menu_list a:active {
    background-color: var(--men_anchor_active);
}

div.men_user_info {
    display: block;
    width: 100%;
    height: 65px;
    background-color: var(--default_bg_color);
    position: relative;
    margin: 0 auto;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s;
}

div.men_user_info:hover {
    background-color: rgba(204, 210, 220, 0.556);
}

button.men_btn_profile_settings svg {
    width: 21px;
    height: 21px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

div.men_user_info:hover svg {
    fill: var(--black);
}

div.men_user_info p {
    pointer-events: none;
    position: absolute;
}

.pf_img_men {
    width: 42px;
    height: 42px;
    position: absolute;
    pointer-events: none;
    background-color: white;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    background-image: url(../images/user_login.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    border-radius: 40px;
}

p.men_user_email {
    bottom: 16px;
    left: 60px;
    font-size: 13px;
}

p.men_user_name {
    left: 60px;
    top: 11px;
    font-size: 17px;
    font-family: 'np';
    color: var(--black);
}

button.men_btn_profile_settings {
    display: block;
    width: 32px;
    height: 32px;
    background-color: transparent;
    background-image: url(../images/settings.svg);
    background-size: 20px;
    border-radius: 100%;
    opacity: .8;
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 10px 10px;
}

div.menu_otherlinks {
    margin-top: 10px;
}

div.menu_otherlinks a {
    display: block;
    /* background-color: var(--default_bg_color); */
    background-color: rgb(240 242 245 / 70%);
    height: 50px;
    width: 100%;
    border-radius: 8px;
    margin: 0 auto;
    margin-top: 5px;
    font-family: npl;
    font-weight: bold;
    padding: 15px 10px;
    color: var(--black);
    font-size: 16px;

}

.large_td {
    font-size: 20px;
}

.large_td span {
    font-size: 20px;
    font-family: np;
    top: 3px;
}


div.menu_otherlinks a:hover {
    background-color: rgba(204, 210, 220, 0.556);
    color: var(--black);
}

div.menu_otherlinks a.men_logout_btn:hover {
    color: var(--red);
}


.padding_zero {
    padding: 0px 0px !important;
}


/* button.men_btn_profile_settings:active {

    background-color: var(--default_bg_color);

} */

div.popupbox_main, div.popupbox_main_notxhr {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 46%);
    z-index: 6;
    margin: 0 auto;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

div.popupbox, div.popupbox_notxhr {
    display: block;
    width: max-content;
    max-width: 90%;
    height: auto;
    background-color: var(--white-00);
    position: relative;
    z-index: 11;
    margin: 0 auto;
    border-radius: var(--border_radius_10);
    margin-top: calc(var(--default_fixed_menu_top_height) + 20px);
    margin-bottom: 45px;
    -webkit-box-shadow: 0 11px 34px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 11px 34px 0 rgba(0, 0, 0, .2);
}




div.popbox_titlebar {
    display: block;
    height: 48px;
    background-color: transparent;
    border-radius: var(--border_radius_10);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: 1px solid rgb(153 155 157);
    max-width: 100%;
}

div.popbox_title_content {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 6px;
    align-content: center;
    width: 100%;
}

p.popbox_title, p.popbox_title_notxhr {
    font-family: npl;
    font-size: 18px;
    color: var(--black);
    pointer-events: none;
    font-weight: bold;
    margin-top: 0px;
}

span.popup_loading {
    width: 26px;
    height: 26px;
    background-color: transparent;
    background-image: url(../images/loading.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
}

span.closepopup, span.closepopup_notxhr {
    display: block;
    width: 50px;
    height: 45px;
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    cursor: pointer;
    background-image: url(../images/close_rounded_80.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    border-top-right-radius: 10px;
}

span.closepopup:hover, span.closepopup_notxhr:hover {
    opacity: 0.7;
}

div.inner_popnotxhr {
    width: 400px;
    max-width: 100%;
    display: block;
    padding: 20px;
    margin-top: 0px;
}

input#input_user_profile_pass {
    padding-top: 0px;
    font-size: 18px;
}

.force_rtl {
    text-align: right !important;
    direction: rtl !important;
}

table * {
    font-family: npl;
    font-size: 12pt;
}

.btns_with_bg {
    background-image: url(../images/search_white.svg);
    background-size: 19px;
    background-position: 10px center;
}

div.innderpopupdiag {
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 20px;
    margin-top: 0px;
}

.bold {
    font-weight: bold !important;
}

div.sub_mens {
    display: none;
}

span.input_icons_left {
    display: block;
}

div.sub_mens a {
    height: 38px;
    line-height: 12px;
    background-color: #e7e7e7;
    font-size: 14px;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 0px;
    width: auto;
}

div.sub_mens a:last-child {
    margin-bottom: 10px;
}

div.above_panels_main {
    display: flex;
    text-align: center;
    background-color: var(--default-color-01-hover);
    /* background-color: transparent; */
    border-radius: 20px;
    margin: 0 auto;
    margin-top: 0px;
    width: 760px;
    max-width: 95%;
    padding: 10px;
    flex-wrap: wrap;
    /* gap: 20px 20px; */
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    /* text-align: right; */
    align-items: center;
    align-content: center;
}


div.above_panels_ {
    display: flex;
    background: white;
    border-radius: 20px;
    background-repeat: no-repeat;
    box-shadow: -4px 8px 10px -4px rgb(167 169 169);
    flex-grow: 0;
    flex-shrink: 0;
    height: 165px;
    flex-basis: 165px;
    min-width: calc(100% / 3 - 20px);
    min-width: 0px;
    padding: 0px;
    background-repeat: no-repeat;
    /* margin: 10px 10px; */
    /* left: -2px; */
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-image: none !important;
    float: right;
}

div.above_panels_ button {
    width: 36px;
    height: 36px;
    background: var(--default_bg_color);
    position: absolute;
    top: auto;
    left: 10px;
    bottom: 10px;
    border-radius: 100px;
    background-image: url(../images/up.svg);
    transform: rotate(-90deg);
    background-size: 19px;
    background-repeat: no-repeat;
    background-position: 48% 7px;
    opacity: 0.6;
}

div.large_panel {
    /* flex-shrink: 0; */
    /* flex-basis: 20%; */
    /* flex-grow: 0; */
    min-width: 350px;
}

div.above_panels_A {
    background-image: url(../images/panels/bc.png);
    background-position: -32px -76px;
    background-size: 180%;
}

div.above_panels_B {
    background-image: url(../images/panels/b.png);
    background-position: -32px -76px;
    background-size: 180%;
}

div.above_panels_C {
    background-image: url(../images/panels/c.png);
    background-position: -6px -27px;
    background-size: 130%;
}

div.above_panels_D {
    background-image: url(../images/panels/d.png);
    background-position: -1px -6px;
    background-size: 177%;
}

div.above_panels_E {
    background-image: url(../images/panels/e.png);
    background-position: -1px -6px;
    background-size: 122%;
}

div.above_panels_F {
    background-image: url(../images/panels/f.png);
    background-position: 0px -16px;
    background-size: 124%;
}



div.above_panels_ a {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    padding: 20px;
    border-radius: 20px;


}

p.ab_p_title {
    font-size: 28px;
    font-family: npl;
    font-weight: bold;
    text-shadow: -1px 1px 1px #00000017;
}

span.ab_p_title_txt {
    font-size: 14px;
    display: block;
    margin-top: 8px;
}


@media screen and (max-width: 805px) {
    div.large_panel {
        min-width: calc(100% / 2 - 20px) !important;
        flex-grow: 1 !important;
    }

    div.above_panels_ {
        flex-grow: 0;
        min-width: 0px;
    }

    div.above_panels_main {
        background-color: var(--default-color-01-hover);
        width: auto;
        max-width: 575px;
    }

    .if_desktop_tr {
        display: none !important;
    }
}



@media screen and (max-width: 625px) {
    div.above_panels_main {
        background-color: var(--default-color-01-hover);
        width: auto;
        max-width: 390px;

    }


    span.ab_p_title_txt {
        font-size: 6px;
        margin-top: 8px;
    }


    div.above_panels_ {
        flex-grow: 1;
        min-width: 0px;
    }

    div.above_panels_last {
        flex-grow: 0;
    }

    div.large_panel {
        min-width: calc(100% - 20px) !important;
        flex-grow: 1 !important;
    }

    div.above_panels_ a {
        padding: 10px;
    }
}

@media screen and (max-width: 440px) {
    div.above_panels_main {
        max-width: 95%;
    }

    div.above_panels_ {
        height: 150px;
        flex-basis: 150px;

    }

}

@media screen and (max-width: 780px) {
    p.tooltip {
        display: none !important;
    }

    div.mens_right_r {
        gap: 10px;
    }

    span.closepopup, span.closepopup_notxhr {
        width: 58px;
        height: 45px;
        background-size: 16px;
        background-position: center center;
        outline: none;
        border-top-right-radius: 8px;
    }
}

@media screen and (max-width: 520px) {





    button.btn_mens {
        background-color: rgb(236 236 236 / 80%);
    }

    div.popupbox, div.popupbox_notxhr {
        max-width: 90%;
    }


    div.inner_nav_list_menu a.fullscreenbtn {
        display: none;
    }

    div.main_content div.wide_content div.div_top_container p.container_title {
        font-size: 16px;
    }

    form.form_hastitle {
        margin-top: 20px;
    }

    div.list_of_drugs_main p.l_d_plus_count.l_d_plus_count {
        right: 25px;
        font-size: 14px;
    }

    p.form_inner_one_title {
        margin-bottom: 15px;
        font-size: 18px;
    }





    div.container_top_center_page {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: calc(var(--default_fixed_menu_top_height) + 5.5%);
        max-width: 90%;
    }

    div.div_top_container svg {
        width: 45px;
        margin-bottom: 8px;
    }

    div.div_top_container {
        margin-top: 0px;
        margin-bottom: 20px;
        padding: 0;
        padding-bottom: 15px;
    }





    p.container_title {
        font-size: 18px;
    }



    a.nav_home_btn {
        font-size: 0px;
        height: 100%;
        color: transparent;
    }

    a.nav_home_btn:hover {
        background-color: transparent;
        color: transparent;
    }

    a.nav_home_btn::before {
        top: 50%;
        width: 16px;
        height: 16px;
        border: 2px solid var(--input_borderFocusedColor);
        border-radius: 5px;
        transform: translate(-50%, -50%);
    }




    button.btn_mens:hover {
        background-color: rgb(236 236 236 / 90%);
    }

    button.btn_mens:hover svg path.btn_mens_path {
        fill: black;
    }

    select.small_select {
        margin-left: 0px;
    }

    body.large_content div.nav_top div.inner_nav {
        max-width: calc(95% - 20px);
    }

    body.large_content div.nav_top div.inner_nav div.men_left_btns {
        left: calc(0% - 20px);
    }

    input.filterbypid {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
        float: none !important;
        font-size: 16px !important;
    }


    div.pt_list_main p {
        font-size: 13px;
    }

    div.pt_list_main div.pt_list_loader div.list_of_drugs_main {
        gap: 4px 4px;
        padding: 10px 8px;
        padding-right: 50px;
    }

    div.pt_list_main div.list_of_drugs_main * {
        font-size: 12px;
    }

    div.pt_list_main div.list_of_drugs_main span.generic_name {
        font-size: 15px;
    }

    div.pt_list_top input {
        height: 38px;
        font-size: 16px;
    }

    div.pt_list_main {
        padding: 7px 7px;
    }


    input.quantity_number {
        width: 40px !important;
        height: 25px !important;
    }



    div.list_of_drugs_main p.l_d_plus_sign {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        padding: 0px 0px;
        font-size: 25px;
        line-height: 20px;
        background-color: transparent;
        color: rgb(109 109 109 / 50%);
        font-family: npl;
        pointer-events: none;
    }

    div.popupbox, div.popupbox_medium {
        margin-top: 5% !important;
    }
}



input.nafaqat_ama_mqdra {
    font-size: 25px;
    font-weight: bold;
    /* direction: ltr; */
    /* text-align: left; */
}

p.bellow_inputs {
    font-size: 15px;
    margin: 0;
    margin-top: 3px;
    text-align: left;
    direction: ltr;
}

div.labeled_in_multi_input_addr {
    flex: 1 1 100% !important;
}

div.labeled_in_multi_input_p1m {
    flex: 0 0 20% !important;
}

div.labeled_in_multi_input_m3 {
    flex: 0 0 20% !important;
}

div.wasl_admin_note_pm {
    flex: 1 1 100% !important;
}

div.wasl_payment_date_pm {
    flex: 1 1 auto !important;
}


form.post_data_login_form input {
    height: 45px !important;
}



@media screen and (max-width: 490px) {


    p.name_of_hospital_mens {
        font-size: 15px;
        top: calc(50% + -6px);
    }

    p.sub_name_of_hospital_mens {
        font-size: 9.5px;
        bottom: 10px;
    }

    div.container_top_center_page {
        margin-top: calc(var(--default_fixed_menu_top_height) + 3%);
        max-width: 95%;
    }

    div.div_top_container svg {
        width: 40px;
    }

    p.messagebox_title {
        top: 1px;
    }

    input.large_input {
        height: 48px;
        border-width: 2px;
        font-size: 17px;
    }






    div.inner_nav {
        max-width: 95%;
    }

    div.men_right_btns {
        right: 0px;
    }



    :root {
        --border_radius: 8px;
    }




    input.large_input_text {
        font-size: 17px;
        font-weight: bold;
        height: 46px;
        border-width: 2px;
    }


}



@media screen and (max-width: 425px) {

    button.btn_user_login {
        display: none;
    }

    a.nav_home_btn {
        background-size: 32px;
    }

    p.name_of_hospital_mens {
        font-size: 14.8px;
        top: calc(50% + -5px);
        left: 42px;
    }

    p.sub_name_of_hospital_mens {
        font-size: 9px;
        bottom: 12.5px;
        left: 42px;
    }
}

@media screen and (max-width: 340px) {
    div.men_left_btns p {
        display: none;
    }
}

@media screen and (max-width: 380px) {
    div.container_top_center_page {
        margin-top: calc(var(--default_fixed_menu_top_height) + 1.8%);
        max-width: 97%;
    }

    div.messagebox {
        width: 93%;
    }

    div.messagebox_buttons button {
        padding: 6px 6px;
    }
}

@media screen and (max-width: 680px) {
    div.s_parts form input[type="date"] {
        width: 123px !important;
    }

    .fit_left {
        left: 0px;
    }

    .btns_with_bg {
        background-size: 20px;
        background-position: 13px 11px;
    }

    .bigtxtbtn {
        font-size: 15px !important;
        line-height: normal !important;
        padding: 10px 0px 0px 0px !important;
    }

    .div_js_filter_main {
        padding: 10px 0px !important;
    }

    div.js_filters {
        padding: 0px 0px 0px 0px !important;
        background-color: transparent !important;
    }


    .div_js_filter_main_container {
        padding-top: 5px;
    }

    .div_js_filter {
        flex: 1 1 20% !important;
    }

    div.innderpopupdiag {
        padding: 15px;
    }

    div.labeled_in_multi_input label, label {
        margin-bottom: 2px;
        font-size: 12px;
        word-spacing: -1px;
    }

    input.large_input_number, select.large_input_number {
        font-size: 16px;
        font-weight: bold;
        height: 44px !important;
        border-width: 2px;
    }

    input.cos_name {
        font-weight: bold;
        font-size: 16px !important;
    }

    input[type="time"], input[type="text"], input[type="email"], input[type="date"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="url"], select, textarea, div.inner_input input, div.inner_input select, div.inner_input textarea {
        height: 36px;
        font-size: 16px;
    }

    button.submitbuttons, input[type="submit"], input.submits {
        height: 42px !important;
    }


    input.wasl_add_m3 {
        font-size: 17px !important;
    }

    .zhpmp_txt, .driver_id_for_pmp_txt, .driver_id_for_pmp_txt option {
        font-size: 15px;
    }

    button.wsl_mpa_add {
        padding: 0px 10px !important;
        margin-bottom: 5px !important;
        border-radius: 5px !important;
        font-size: 16px !important;
        height: 37px;
        margin-left: -1px !important;
        margin-right: -1px !important;
    }

    input.submits {
        padding: 0px 8px !important;
        font-size: 16px !important;
    }

    div.multi_input_withlbl {
        gap: 5px 8px !important;
    }

    div.inner_input.multi_input_withlbl.multi_input_submits {
        gap: 5px 8px !important;
    }

    /* div.multi_input_withlbl {
        display: flex;
        flex-direction: column;
        gap: 0px 0px;
    }
     */
    .top_functions .sub_mensshow {
        top: 105% !important;
    }
}

@media screen and (max-height: 620px) {
    div.messagebox {
        width: 70%;
    }

    div.messagebox div.div_messagebox_title {
        border-radius: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    div.container_top_center_page {
        margin-top: calc(var(--default_fixed_menu_top_height) + 20px);
    }
}

a.print_code.not_print {
    display: block;
    text-align: center;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 20px;
    line-height: 47px;
}




@media (max-height: 950px) {
    div.popupbox, div.popupbox_notxhr {
        margin-top: calc(var(--default_fixed_menu_top_height) + -20px);
    }

    div.popupbox_medium {
        margin-top: calc(var(--default_fixed_menu_top_height) + 40px);
    }

}

@media print {


    .th_w_ {
        width: auto !important;
        max-width: unset !important;
        min-width: auto !important;
    }

    .print_show {
        display: table-caption !important;
    }

    .not_print, .nav_top, .top_btns {
        display: none !important;
    }

    div.container_top_center_page, div.main_content {
        margin-top: 0px !important;
    }

    body, html {
        background-color: white !important;
    }

    button.prntbtn {
        display: none;
    }

    div.main_content {
        width: 100% !important;
    }

    div.main_content div.tppcntr {
        width: 100% !important;
        margin-top: 0px !important;
        box-shadow: none !important;
    }

}


input[type="text"]:disabled {
    background-color: rgb(238 238 238) !important;
}