* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #F8F9FA;
}

body * {
    font-family: IRANYekanX, serif;
}

html {
    margin-top: 0 !important;
}

a {
    text-decoration: none;
    color: #343A40;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

input:focus-visible {
    outline: 1px solid #0096C7 !important;
}

select:focus-visible {
    outline: 1px solid #0096C7 !important;
}

textarea:focus-visible {
    outline: 1px solid #0096C7 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: IRANYekanX, serif !important;
}

/************* Panel *************/

.nwdrug_panel_row {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.nwdrug_panel_row_nowrap {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.nwdrug_panel_fixed_notic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background-color: #FFFFFF;
    margin-bottom: 15px;
    border-radius: 12px;
}

.nwdrug_panel_fixed_notic > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nwdrug_panel_fixed_notic p {
    color: #0096C7;
    font-weight: 400;
    font-size: 16px;
}

#nwdrug_panel_fixed_notic_close {
    cursor: pointer;
}

/***** sidebar *****/
.nwdrug_panel_sidebar {
    width: 30%;
    max-width: 300px;
    padding: 20px;
    max-height: 100vh;
    height: 100vh;
    overflow: auto;
    transition: all 0.3s linear;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nwdrug_panel_sidebar_logo {
    display: flex;
    justify-content: center;
}

.nwdrug_panel_sidebar_logo img {
    max-width: 60%;
    height: auto;
    margin: auto;
}

/******** sidebar mini *******/
.nwdrug_panel_sidebar.mini {
    width: 75px;
    padding: 10px;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu li p, .nwdrug_panel_sidebar.mini .nwdrug_panel_theme_switch {
    display: none;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu li i {
    margin: 0;
}

.nwdrug_panel_sidebar.mini .nirweb_panel_social_media {
    display: none;
}

.nwdrug_panel_sidebar_mini_logo {
    margin-bottom: 20px;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_logo {
    display: none;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_mini_logo {
    display: block;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu li a {
    justify-content: center;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu {
    border-bottom: none;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu li {
    height: 60px;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu li a:hover {
    position: absolute;
    z-index: 99;
    justify-content: start;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu li a:hover i {
    margin-right: 10px;
}

.nwdrug_panel_sidebar.mini .nwdrug_panel_sidebar_menu li a:hover p {
    display: block;
}

/*** menu ***/
.nwdrug_panel_sidebar_menu {
    list-style: none;
    margin-bottom: 15px;
    margin-top: 15px;
}

.nwdrug_panel_sidebar_menu li {
    margin-bottom: 8px;
    transition: all 0.2s ease-in-out;
}

.nwdrug_panel_sidebar_menu li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 16px;
    color: #343A40;
    transition: all 0.2s ease-in-out;
    gap: 5px;
}

.nwdrug_panel_sidebar_menu li a p {
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_sidebar_menu svg path {
    fill: #ADB5BD;
    transition: all 0.2s ease-in-out;
}

.nwdrug_panel_sidebar_menu li.active a, .nwdrug_panel_sidebar_menu li:hover a {
    background: #e0f2f8;
    color: #0096C7;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}

.nwdrug_panel_sidebar_menu li.active svg path, .nwdrug_panel_sidebar_menu li:hover svg path {
    fill: #0096C7;
    transition: all 0.2s ease-in-out;
}

.nwdrug_panel_li_logout {
    margin-bottom: 70px !important;
}

.nwdrug_panel_li_logout a p, .nirweb_panel_li_logout i {
    color: #0096C7;
}

/*** toggle switch ***/
.nwdrug_panel_theme_switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.switch_theme_nwdrug {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 82px;
    height: 37px;
    margin: 20px 0 0 0;
}

.switch_theme_nwdrug .input_switch_nirweb {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch_slider_nirweb {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F8F9FA;
    transition: .4s;
    border-radius: 8px;
}

.switch_slider_nirweb:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 8px;
    left: 5px;
    bottom: 3px;
    z-index: 2;
    background-color: #ffffff;
    transition: .4s;
    box-shadow: 0 2px 8px #B8B8B825;
}

.sun_nirweb svg {
    position: absolute;
    top: 7px;
    left: 8px;
    z-index: 5;
    width: 24px;
    height: 24px;
}

.moon_nirweb svg {
    /*fill: #73C0FC;*/
    position: absolute;
    top: 7px;
    right: 8px;
    z-index: 5;
    width: 24px;
    height: 24px;
}

.sun_nirweb svg {
    animation: rotate 15s linear infinite;
}

@keyframes rotate {

    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.moon_nirweb svg {
    animation: tilt 5s linear infinite;
}

@keyframes tilt {

    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.moon_nirweb svg {
    fill: #292D32;
}

.sun_nirweb svg {
    fill: #00B4D8;
}

.switch_theme_nwdrug .input_switch_nirweb:checked + span + .moon_nirweb svg {
    fill: #73C0FC;
}

.switch_theme_nwdrug .input_switch_nirweb:checked + .sun_nirweb svg {
    fill: #292D32;
}

.switch_theme_nwdrug .input_switch_nirweb:focus + .switch_slider_nirweb {
    box-shadow: 0 0 1px var(--wud-bakp-color);
}

.switch_theme_nwdrug .input_switch_nirweb:checked + span + span + .switch_slider_nirweb:before {
    transform: translateX(43px);
}

/***** header *****/
.nwdrug_panel_tel p {
    font-size: 14px;
    color: #343A40;
    font-weight: 400;
}

.nwdrug_panel_tel span {
    font-size: 16px;
    color: #0096C7;
    font-weight: 700;
}

.nwdrug_panel_header_flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nwdrug_panel_tel {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    margin-right: 15px;
}

.nwdrug_panel_operator_status, .nwdrug_panel_drugstore_status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    font-size: 14px;
    color: #FFFFFF;
    padding: 10px 16px;
    gap: 25px;
    cursor: pointer;
}

.nwdrug_panel_drugstore_status {
    cursor: default;
}

.nwdrug_panel_operator_status p {
    font-weight: 400;
}

.nwdrug_panel_drugstore_status p {
    color: #343A40;
    font-weight: 400;
}

.nwdrug_panel_operator_status span, .nwdrug_panel_drugstore_status span {
    font-weight: 700;
    position: relative;
}

.nwdrug_panel_operator_status span::before, .nwdrug_panel_drugstore_status span::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 25%;
    right: -17px;
    background-color: #FFFFFF;
}

.nwdrug_panel_operator_status.offline {
    background-color: #FF1818;
    border: 1px solid #FF1818;
}

.nwdrug_panel_drugstore_status.offline {
    border: 1px solid #FF7051;
}

.nwdrug_panel_drugstore_status.offline span {
    color: #FF7051;
}

.nwdrug_panel_drugstore_status.offline span::before {
    background-color: #FF7051;
}

.nwdrug_panel_operator_status.online p {
    color: #000000;
}

.nwdrug_panel_operator_status.online {
    color: #00D077;
    background-color: #FFFFFF;
    border: 1px solid #58DA90;
}

.nwdrug_panel_operator_status.online span::before {
    background-color: #58DA90;
}

.nwdrug_panel_drugstore_status.online {
    border: 1px solid #58DA90;
}

.nwdrug_panel_drugstore_status.online span {
    color: #00D077;
}

.nwdrug_panel_drugstore_status.online span::before {
    background-color: #58DA90;
}

.nirweb_panel_icon_list_header {
    position: relative;
}

.nwdrug_panel_drugstore_status_mobile {
    display: none;
}

.nwdrug_panel_operator_status.mobile {
    display: none;
}

.nwdrug_panel_header_status {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nirweb_panel_icon_list_header span {
    position: absolute;
    top: -4px;
    right: 0;
    font-size: 12px;
    font-weight: 400;
    border-radius: 50%;
    background-color: #00B4D8;
    color: #FFFFFF;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/***** content *****/
.nwdrug_panel_content_parent {
    width: 100%;
}

.nwdrug_panel_content {
    padding: 10px 35px 5px 60px;
}

.nwdrug_panel_header {
    border-bottom: 1px solid #ECECEC;
    padding: 15px;
    background-color: #FFFFFF;
}

.nwdrug_panel_icon {
    display: flex;
}

.nwdrug_panel_align_items_center {
    align-items: center;
}

.nwdrug_panel_menu_icon {
    cursor: pointer;
}

.nwdrug_panel_profile_header_row {
    display: flex;
    align-items: center;
    padding-left: 22px;
}

.nwdrug_panel_icon_list_header {
    display: flex;
    align-items: center;
}

.nwdrug_panel_icon_list_header > div {
    padding: 10px;
    font-size: 24px;
    margin: 0 5px;
    cursor: pointer;
}

.nwdrug_panel_profile_avatar_row {
    display: flex;
    align-items: center;
    margin-right: 50px;
    margin-left: 15px;
    cursor: pointer;
    position: relative;
    gap: 10px;
}

.nwdrug_panel_profile_dropdown_list {
    display: none;
    position: absolute;
    top: 66px;
    left: -10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px 0 #B8B8B840;
    width: max-content;
    padding: 10px 16px;
    border-radius: 16px;
}

.nwdrug_panel_profile_dropdown_list a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    border-bottom: 1px solid #DEE2E6;
    padding-bottom: 15px;
    margin-bottom: 15px;
    color: #343A40;
}

.nwdrug_panel_profile_dropdown_list a:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.nwdrug_panel_header_avatar {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 3px;
    top: 3px;
    border-radius: 80px;
}

.nwdrug_panel_header_avatar:before {
    width: 100%;
    max-width: 50px;
    height: auto;
}

.nwdrug_panel_header_avatar_box {
    position: relative;
    display: flex;
}

.CircularProgressbar-trail {
    stroke: #D9D9D9;
}

.CircularProgressbar .CircularProgressbar-path {
    stroke: #0096C7;
}

.nwdrug_panel_header_name_and_role {
    padding-left: 10px;
}

.nwdrug_panel_display_name {
    color: #343A40;
    font-size: 14px;
}

.nwdrug_panel_user_rol {
    color: #969696;
    font-size: 12px;
}

/***** desk *****/
#nwdrug_panel_desk_drug_req_btn span {
    font-size: 14px;
    font-weight: 700;
}

.nwdrug_panel_desk_main_row {
    display: flex;
    flex-wrap: wrap;
}

.nwdrug_panel_desk_drug_req_div {
    width: 100%;
}

.nwdrug_panel_desk_drug_req, .nwdrug_panel_desk_public_notic, .nwdrug_panel_desk_profile, .nwdrug_panel_desk_video {
    width: 50%;
    height: auto;
}

.nwdrug_panel_desk_drug_req > div, .nwdrug_panel_desk_public_notic > div {
    height: 550px;
    max-height: 550px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 2px 8px 0 #B8B8B840;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.nwdrug_panel_desk_profile > div, .nwdrug_panel_desk_video > div {
    height: 230px;
    max-height: 230px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 2px 8px 0 #B8B8B840;
    padding: 20px;
}

.nwdrug_panel_desk_video > div {
    background: linear-gradient(267.71deg, #0096C7 0.87%, #48CAE4 100%);
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #C8DAFF 0%, #48CAE4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_panel_desk_video_text {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nwdrug_panel_desk_video_text h2 {
    font-family: Morabba, sans-serif !important;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.nwdrug_panel_desk_video_text p {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
}

.nwdrug_panel_desk_drug_req {
    padding-left: 8px;
}

.nwdrug_panel_desk_public_notic {
    padding-right: 8px;
}

.nwdrug_panel_desk_profile {
    padding-top: 15px;
    padding-left: 8px;
}

.nwdrug_panel_desk_video {
    padding-top: 15px;
    padding-right: 8px;
}

.nwdrug_panel_desk_drug_req_list {
    border-collapse: separate;
    border-spacing: 0 10px;
    width: 100%;
    border: none;
    direction: rtl;
    text-align: right;
    min-height: 68.8px;
}

.nwdrug_panel_desk_drug_req_list_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background-color: #ffffff;
    border: 1px solid #ECEFF1;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.nwdrug_panel_desk_drug_req_list_item > * {
    width: 25%;
}

.nwdrug_panel_desk_drug_req_list_item .v_number, .nwdrug_panel_desk_drug_req_list_item .status {
    color: #37474F;
    font-weight: 700;
    font-size: 14px;
}

.nwdrug_panel_desk_drug_req_list_item .date {
    color: #37474F;
    font-weight: 400;
    font-size: 14px;
}

.nwdrug_panel_desk_drug_req_list_item .status.pending_queue {
    color: #0096C7;
    position: relative;
}

.nwdrug_panel_desk_drug_req_list_item .status.pending_queue::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 37%;
    right: -13px;
    background-color: #0096C7;
}

.nwdrug_panel_desk_drug_req_list_item .status.pending {
    color: #FF9926;
    position: relative;
}

.nwdrug_panel_desk_drug_req_list_item .status.pending::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 20%;
    right: -13px;
    background-color: #FF9926;
}

.nwdrug_panel_desk_drug_req_list_item .status.pending_pay {
    color: #0077B6;
    position: relative;
}

.nwdrug_panel_desk_drug_req_list_item .status.pending_pay::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 20%;
    right: -13px;
    background-color: #0077B6;
}

.nwdrug_panel_desk_drug_req_list_item .status.complete_face, .nwdrug_panel_desk_drug_req_list_item .status.complete_online {
    color: #00D077;
    position: relative;
}

.nwdrug_panel_desk_drug_req_list_item .status.complete_face::before, .nwdrug_panel_desk_drug_req_list_item .status.complete_online::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 20%;
    right: -13px;
    background-color: #00D077;
}

.nwdrug_panel_desk_drug_req_list_item .status.reject {
    color: #FF7354;
    position: relative;
}

.nwdrug_panel_desk_drug_req_list_item .status.reject::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 20%;
    right: -13px;
    background-color: #FF7354;
}

.nwdrug_panel_desk_drug_req_list_item .show {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border: 1px solid #0096C7;
    padding: 10px;
    color: #0096C7;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_drug_req_list_item .show:hover {
    background-color: #0096C7;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_drug_req_list_item .show svg > path {
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_drug_req_list_item .show:hover svg > path {
    fill: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_drug_req_show_btn, .nwdrug_panel_desk_drug_req_list {
    padding: 0;
}

.nwdrug_panel_desk_drug_req_show_btn {
    width: 100%;
    margin-top: 8px;
    transition: all 0.3s linear;
}

.nwdrug_panel_desk_drug_req_show_btn a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #0096C7;
    border-radius: 8px;
    color: #0096C7;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_drug_req_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    width: 100%;
}

.nwdrug_panel_desk_drug_req_title .title {
    font-size: 16px;
    font-weight: 700;
    color: #343A40;
}

.nwdrug_panel_desk_drug_req_title .btn {
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 10px 16px;
    gap: 5px;
    color: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}

.nwdrug_panel_desk_profile_div {
    display: flex;
    justify-content: space-around;
    position: relative;
}

.nwdrug_panel_desk_profile_svg {
    position: relative;
}

.nwdrug_panel_desk_profile_svg_text {
    position: absolute;
    top: 47%;
    left: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nwdrug_panel_desk_profile_svg_text strong {
    color: #495057;
    font-size: 36px;
    font-weight: 700;
}

.nwdrug_panel_desk_profile_svg_text p {
    color: #6C757D;
    font-size: 12px;
    font-weight: 400;
}

.nwdrug_panel_desk_profile_text {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.nwdrug_panel_desk_profile_link {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 5px;
    align-items: start;
    justify-content: center;
    text-decoration: none;
    color: #0096C7;
    font-size: 16px;
    font-weight: 700;
}

.nwdrug_panel_desk_profile_link.mobile {
    display: none;
}

/********************************/

.nwdrug_panel_desk_public_notic_list {
    border-collapse: separate;
    border-spacing: 0 10px;
    width: 100%;
    border: none;
    direction: rtl;
    text-align: right;
}

.nwdrug_panel_desk_public_notic_list_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #ECEFF1;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 10px;
}

.nwdrug_panel_desk_public_notic_list_item > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_panel_desk_public_notic_list_item .v_number, .nwdrug_panel_desk_public_notic_list_item .status {
    color: #37474F;
    font-weight: 700;
    font-size: 14px;
}

.nwdrug_panel_desk_public_notic_list_item .date {
    color: #37474F;
    font-weight: 400;
    font-size: 14px;
}

.nwdrug_panel_desk_public_notic_list_item .show {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border: 1px solid #0096C7;
    padding: 10px;
    color: #0096C7;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_public_notic_list_item .show:hover {
    background-color: #0096C7;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_public_notic_list_item .show svg > path {
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_public_notic_list_item .show:hover svg > path {
    fill: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.nwdrug_panel_desk_public_notic_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    margin-top: 15px;
    width: 100%;
}

.nwdrug_panel_desk_public_notic_title .title {
    font-size: 16px;
    font-weight: 700;
    color: #343A40;
    margin-bottom: 35px;
}

.nwdrug_panel_desk_public_notic_show_btn, .nwdrug_panel_desk_public_notic_list {
    padding: 0;
}

.nwdrug_panel_desk_public_notic_show_btn {
    width: 100%;
    margin-top: 7px;
}

.nwdrug_panel_desk_public_notic_show_btn a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #0096C7;
    border-radius: 8px;
    color: #0096C7;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

/************* Popup *************/
.nwdrug_complete_profile_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_complete_profile_popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_complete_profile_popup .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_complete_profile_popup .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_complete_profile_popup .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_complete_profile_popup .main_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_complete_profile_popup .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_complete_profile_popup .main_box p {
    color: #212529;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

.nwdrug_complete_profile_popup .main_box a {
    margin-top: 25px;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    padding: 10px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.nwdrug_complete_profile_popup .main_box > div p {
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
}

/***  ***/
.nwdrug_change_operator_status {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_change_operator_status.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_change_operator_status .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_change_operator_status .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_change_operator_status .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_change_operator_status .main_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_change_operator_status .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_change_operator_status input {
    display: none;
}

.nwdrug_change_operator_status label {
    cursor: pointer;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #ECEFF1;
    margin-bottom: 8px;
    border-radius: 4px;
    transition: all ease-in-out 0.3s;
}

.nwdrug_change_operator_status label.active, .nwdrug_change_operator_status label:hover {
    border: 1px solid #01CC52;
}

.nwdrug_change_operator_status button {
    border: 1px solid #0096C7;
    padding: 8px 20px;
    color: #0096C7;
    background-color: #FFFFFF;
    cursor: pointer;
    border-radius: 8px;
}

/***  ***/

.nwdrug_change_operator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_change_operator.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_change_operator .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_change_operator .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_change_operator .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_change_operator .main_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_change_operator .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_change_operator button {
    padding: 10px 16px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    cursor: pointer;
    border-radius: 8px;
    border: none;
    width: 100%;
}

.nwdrug_change_operator_form_div {
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: center;
    position: relative;
}

.nwdrug_change_operator_form_div > p {
    font-size: 14px;
    font-weight: 300;
    color: #212529;
    margin-bottom: 5px;
}

.nwdrug_change_operator_form_div_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #DEE2E6;
    color: #C1C7CE;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.nwdrug_change_operator_form_div_result {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    border: 1px solid #DEE2E6;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #FFFFFF;
    display: none;
}

.nwdrug_change_operator_form_div_result label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #DEE2E6;
    margin-bottom: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.nwdrug_change_operator_form_div_result label:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.nwdrug_change_operator_form_div_result .nwdrug_checkbox {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    font-weight: 400;
}

.nwdrug_change_operator_form_div_result label span {
    font-weight: 700;
}

.nwdrug_change_operator_form_div_result label span.online {
    color: #00D077;
}

.nwdrug_change_operator_form_div_result label span.offline {
    color: #C7C7C7;
}

/***  ***/

.nwdrug_operator_delete_registered_prescription {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_operator_delete_registered_prescription.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_operator_delete_registered_prescription .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_operator_delete_registered_prescription .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_operator_delete_registered_prescription .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_operator_delete_registered_prescription .main_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_operator_delete_registered_prescription .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_operator_delete_registered_prescription button {
    padding: 10px 16px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    cursor: pointer;
    border-radius: 8px;
    border: none;
    width: 100%;
}

.nwdrug_operator_delete_registered_prescription_div {
    display: flex;
    flex-direction: column;
}

.nwdrug_operator_delete_registered_prescription_div_item {
    width: 100%;
    cursor: pointer;
    text-align: center;
}

/*** ***/

.nwdrug_operator_send_to_doctor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_operator_send_to_doctor.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_operator_send_to_doctor .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_operator_send_to_doctor .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_operator_send_to_doctor .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_operator_send_to_doctor .main_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_operator_send_to_doctor .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_operator_send_to_doctor button {
    padding: 10px 16px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    cursor: pointer;
    border-radius: 8px;
    border: none;
    width: 100%;
}

.nwdrug_operator_send_to_doctor_form_div {
    display: flex;
    flex-direction: column;
}

.popup_form_title p {
    font-weight: 700;
    font-size: 17px;
}
.nwdrug_operator_send_to_doctor_form_div p{
    text-align: right;
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #0096C7;
}
.nwdrug_operator_send_to_doctor_form_labels label{
    letter-spacing: 1px;
    color: #4f4f4f;
}
.nwdrug_operator_send_to_doctor_form_labels{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 15px;
    width: 100%;
    gap: 8px;
}
.nwdrug_operator_send_to_doctor_form_div textarea{
    width: 100%;
    max-width: 100%;
    height: 200px;
    max-height: 200px;
    overflow: auto;
    border-radius: 6px;
    border: solid 1px #c5c5c5;
    padding: 10px;
}

/***  ***/

.nwdrug_change_prescription_status {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_change_prescription_status.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_change_prescription_status .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_change_prescription_status .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_change_prescription_status .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_change_prescription_status .main_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_change_prescription_status .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_change_prescription_status button {
    padding: 10px 16px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    cursor: pointer;
    border-radius: 8px;
    border: none;
    width: 100%;
}

.nwdrug_change_prescription_status_form_div {
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: center;
    position: relative;
}

.nwdrug_change_prescription_status_form_div > p {
    font-size: 14px;
    font-weight: 300;
    color: #212529;
    margin-bottom: 5px;
}

.nwdrug_change_prescription_status_form_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #DEE2E6;
    color: #C1C7CE;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.nwdrug_change_prescription_status_form_div_result {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    border: 1px solid #DEE2E6;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #FFFFFF;
    display: none;
}

.nwdrug_change_prescription_status_form_div_result label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #DEE2E6;
    margin-bottom: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.nwdrug_change_prescription_status_form_div_result label:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

/***  ***/

.nwdrug_delete_drug_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_delete_drug_popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_delete_drug_popup .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.ovl__nwdrug {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 99;
    background-color: #00000080;
    display: none;
}

.nwdrug_delete_drug_popup .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_delete_drug_popup .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_delete_drug_popup .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_delete_drug_popup button, .nwdrug_delete_drug_popup_form_btn_cancel {
    padding: 10px 16px;
    color: #FFFFFF;
    background-color: #FF4141;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #FF4141;
    width: 50%;
    font-size: 16px;
    font-weight: 500;
}

.nwdrug_delete_drug_popup_form_btn_cancel {
    border: 1px solid #0096C7;
    background-color: #FFFFFF;
    color: #0096C7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
}

.nwdrug_delete_drug_popup_form .button_row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nwdrug_delete_drug_popup_form_text {
    margin: 20px 0 50px 0;
    color: #212529;
    font-size: 16px;
    font-weight: 300;
}

/***  ***/

.nwdrug_rating_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_rating_popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_rating_popup .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_rating_popup .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_rating_popup .main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_rating_popup .main_box > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_rating_popup .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_rating_popup .main_box p {
    color: #212529;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

.nwdrug_rating_popup .main_box button {
    margin-top: 25px;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    padding: 10px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    min-width: 300px;
    border: none;
    cursor: pointer;
}

.nwdrug_rating_popup .main_box > div p {
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
}

/***  ***/

.nwdrug_send_request_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_send_request_popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_send_request_popup .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_send_request_popup .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_send_request_popup .main_box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_send_request_popup .main_box .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_send_request_popup .main_box .input {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.nwdrug_send_request_popup .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_send_request_popup .main_box p {
    color: #212529;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

.nwdrug_send_request_popup .main_box .national_code, .nwdrug_send_request_popup .main_box .national_code_label {
    width: 100%;
}

.nwdrug_send_request_popup .main_box .national_code {
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #F7F9FC;
    font-weight: 400;
    font-size: 16px;
    color: #626262;
    border: none;
    margin-top: 10px;
}

.nwdrug_send_request_popup .main_box .national_code.sending {
    filter: blur(2px);
}

.nwdrug_send_request_popup .main_box .national_code.error {
    border: 1px solid #EF5C53;
}

.nwdrug_send_request_popup .main_box .national_code::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #626262;
}

.nwdrug_send_request_popup .main_box button {
    margin-top: 25px;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    padding: 10px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    border: none;
    cursor: pointer;
}

.nwdrug_send_request_popup .main_box > div p {
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
}

/***  ***/

.nwdrug_send_request_popup_otp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_send_request_popup_otp.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_send_request_popup_otp .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_send_request_popup_otp .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_send_request_popup_otp .main_box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_send_request_popup_otp .main_box .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_send_request_popup_otp .main_box .input {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.nwdrug_send_request_popup_otp .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_send_request_popup_otp .main_box p {
    color: #212529;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

.nwdrug_send_request_popup_otp .main_box .national_code, .nwdrug_send_request_popup_otp .main_box .national_code_label {
    width: 100%;
}

.nwdrug_send_request_popup_otp .main_box .national_code_label.code_verification {
    display: none;
}

.nwdrug_send_request_popup_otp .main_box .national_code {
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #F7F9FC;
    font-weight: 400;
    font-size: 16px;
    color: #626262;
    border: none;
    margin-top: 10px;
}

.nwdrug_send_request_popup_otp .main_box .national_code.sending {
    filter: blur(2px);
}

.nwdrug_send_request_popup_otp .main_box .national_code.error {
    border: 1px solid #EF5C53;
}

.nwdrug_send_request_popup_otp .main_box .national_code::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #626262;
}

.nwdrug_send_request_popup_otp .main_box button {
    margin-top: 25px;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    padding: 10px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    border: none;
    cursor: pointer;
}

.nwdrug_send_request_popup_otp .main_box > div p {
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
}

/***  ***/

.nwdrug_send_request_popup_barcode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
}

.nwdrug_send_request_popup_barcode.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nwdrug_send_request_popup_barcode .back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #00000080;
    width: 100%;
    height: 100%;
}

.nwdrug_send_request_popup_barcode .box {
    z-index: 90;
    background-color: #FFFFFF;
    border-radius: 16px;
    width: 422px;
}

.nwdrug_send_request_popup_barcode .main_box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
}

.nwdrug_send_request_popup_barcode .main_box .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nwdrug_send_request_popup_barcode .main_box .input {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.nwdrug_send_request_popup_barcode .main_box .close {
    position: absolute;
    top: 37px;
    left: 20px;
    cursor: pointer;
}

.nwdrug_send_request_popup_barcode .main_box p {
    color: #212529;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

/*.nwdrug_send_request_popup_otp .main_box .national_code, .nwdrug_send_request_popup_otp .main_box .national_code_label {
    width: 100%;
}

.nwdrug_send_request_popup_otp .main_box .national_code_label.code_verification {
    display: none;
}

.nwdrug_send_request_popup_otp .main_box .national_code {
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #F7F9FC;
    font-weight: 400;
    font-size: 16px;
    color: #626262;
    border: none;
    margin-top: 10px;
}

.nwdrug_send_request_popup_otp .main_box .national_code.sending {
    filter: blur(2px);
}

.nwdrug_send_request_popup_otp .main_box .national_code.error {
    border: 1px solid #EF5C53;
}

.nwdrug_send_request_popup_otp .main_box .national_code::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #626262;
}

.nwdrug_send_request_popup_otp .main_box button {
    margin-top: 25px;
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    padding: 10px 16px;
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    border: none;
    cursor: pointer;
}

.nwdrug_send_request_popup_otp .main_box > div p {
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
}*/

/**********
* toast
**********/
.nirweb_panel_toast_box {
    transition: all 0.3s ease-in-out, visibility 0s ease-in-out 0.3s;
    background: #EAFAED;
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translate(-50%);
    padding: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px 0 #B8B8B840;
    width: 90%;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
}

.nirweb_panel_toast_box.active {
    transition: all 0.3s ease-in-out, visibility 0s;
    bottom: 100px;
    opacity: 1;
    visibility: visible;
}

.nirweb_panel_toast_line {
    height: 4px;
    width: 100%;
    background: #24AF53;
    border-radius: 6px;
}

.nirweb_panel_toast_content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 10px 15px 20px 15px;
}

.nirweb_panel_toast_content > i {
    color: #6C757D;
    line-height: 1em;
    font-size: 20px;
    cursor: pointer;
}

.nirweb_panel_toast_content strong {
    color: #24AF53;
    font-size: 14px;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    display: block;
}

.nirweb_panel_toast_content p {
    color: #24AF53;
    font-size: 14px;
    margin: 0;
}

.nirweb_panel_toast_text {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.nirweb_panel_toast_text i {
    margin-right: 15px;
    font-size: 24px;
    color: #24AF53;
    line-height: 1em;
}

.np_toast_success {
    background: #EAFAED;
}

.np_toast_success .nirweb_panel_toast_line {
    background: #24AF53;
}

.np_toast_success .nirweb_panel_toast_text i, .np_toast_success .nirweb_panel_toast_content p, .np_toast_success .nirweb_panel_toast_content strong {
    color: #24AF53;
}

.np_toast_error {
    background: #FCF2F2;
}

.np_toast_error .nirweb_panel_toast_line {
    background: #DA1515;
}

.np_toast_error .nirweb_panel_toast_text i, .np_toast_error .nirweb_panel_toast_content p, .np_toast_error .nirweb_panel_toast_content strong {
    color: #DA1515;
}

.np_toast_warning {
    background: #FFF3E2;
}

.np_toast_warning .nirweb_panel_toast_line {
    background: #FF8D24;
}

.np_toast_warning .nirweb_panel_toast_text i, .np_toast_warning .nirweb_panel_toast_content p, .np_toast_warning .nirweb_panel_toast_content strong {
    color: #FF8D24;
}

.np_toast_notice {
    background: #E2EFF9;
}

.np_toast_notice .nirweb_panel_toast_line {
    background: #0658B4;
}

.np_toast_notice .nirweb_panel_toast_text i, .np_toast_notice .nirweb_panel_toast_content p, .np_toast_notice .nirweb_panel_toast_content strong {
    color: #0658B4;
}

/********** 404 ***********/
.nw_404_page {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 25px 25px;
}

.nw_404_page a {
    border-radius: 8px;
    background: #0658B4;
    color: #ffffff;
    padding: 10px 25px;
    margin-top: 20px;
}

/**********
* notification
**********/
.nwdrug_panel_notification {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nwdrug_panel_notification h1 {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #343A40;
}

.nwdrug_panel_notification_tabs {
    margin-top: 10px;
    width: 100%;
    padding: 20px 35px;
    box-shadow: 0 2px 8px 0 #B8B8B840;
    background-color: #FFFFFF;
    border-radius: 16px;
}

.nwdrug_panel_notification_tabs span {
    color: #E9541F;
    font-weight: 400;
    font-size: 16px;
    padding: 2px 8px;
    background-color: #FFE0B6;
    border-radius: 4px;
    margin-right: -40px;
}

.nwdrug_panel_notification_tabs a {
    color: #6C757D;
    font-size: 16px;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
}

.nwdrug_panel_notification_tabs a.active {
    color: #FF8D24;
}

.nwdrug_panel_notification_result {
    padding: 10px 16px;
    border-radius: 16px;
    background-color: #FFFFFF;
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.nwdrug_panel_notification_result .row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nwdrug_panel_notification_result .row > div {
    display: flex;
    align-items: center;
}

.nwdrug_panel_notification_result .row > div p {
    color: #343A40;
    font-weight: 700;
    font-size: 16px;
}

.nwdrug_panel_notification_result .row > p {
    color: #6C757D;
    font-weight: 700;
    font-size: 16px;
}

.nwdrug_panel_notification_result > p {
    color: #6C757D;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    padding: 0 10px;
    margin-top: 10px;
}

.nwdrug_panel_new_request_non_prescription_req_btn p {
    margin: 0 !important;
    color: #0096C7 !important;
}

.nwdrug_panel_new_request_non_prescription_delete_btn p {
    margin: 0 !important;
    color: #EF5C53 !important;
}

/****** nirweb thank you ******/
.nirweb_thank_you {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(120, 120, 120, 0.2);
}

.nirweb_thank_you a {
    background: linear-gradient(90deg, #00B4D8 0%, #00ABE3 100%);
    margin-top: 25px;
    color: #fff;
    padding: 7px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.nirweb_thank_you > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 20px 0;
}

.nirweb_thank_you h1 {
    margin-bottom: 15px;
}

/****** sidebar menu mobile ******/
.nirweb_menu_sidebar {
    position: fixed;
    right: -300px;
    width: 300px;
    z-index: 100;
    height: 100vh;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nirweb_menu_sidebar.active {
    right: 0;
    transition: all 0.3s ease-in-out;
}

.nirweb_menu_sidebar li {
    padding: 5px;
}

.nirweb_menu_sidebar li a {
    color: #424242;
}

.nwdrug_panel_hover {
    position: relative;
    display: inline-block;
}

.hover-text {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 35px;
    background: #fff;
    padding: 5px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    white-space: nowrap;
}

.nwdrug_operators_change, .nwdrug_operators_edit {
    display: flex;
    align-items: center;
}

.select2-container .select2-selection--single {
    height: 35px !important;
}

.select2-container--default .select2-selection--single {
    border-radius: 8px !important;
}

#nwdrug_panel_upload_prescription {
    display: none;
}

.nwdrug_panel_upload_prescription {
    cursor: pointer;
    color: #0096C7;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #0096C7;
    padding: 10px 16px;
    border-radius: 8px;
}

.nwdrug_panel_upload_prescription_div {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nwdrug_panel_price_prescription_label {
    color: #212529;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nwdrug_panel_price_prescription_label input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #DEE2E6;
}

.nwdrug_panel_download_prescription {
    cursor: pointer;
    color: #0096C7;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #0096C7;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
}
.nw_back_notif_alert{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #2b2b2b60;
    z-index: 99;
}
.nw_notif_alert_popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nw_notif_alert_popup svg{
    margin-bottom: 20px;
}
.nw_notif_alert_popup h2{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
.nw_notif_alert_popup a{
    padding: 10px 20px;
    border-radius: 6px;
    background: #daeafb;
    color: #3981e3;
    font-size: 15px;
    font-weight: 500;
}