@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* font-family: "Open Sans", sans-serif; */

:root {
    /* --bodyfont: 'IBM Plex Sans', sans-serif;
    --bodyfont2: 'Raleway', sans-serif;*/
    --bodyfont: "Open Sans", sans-serif;
    --orangecolor: #EB7B1A;
    --bluecolor: #1770be;
    --blackcolor: #212121;
    --deepskycolor: #4A96A4;
    --graycolor: #E4EBF1;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    color: #414141;
    font-family: var(--bodyfont);
    /* background: #f4f3ef; */
}

.wrapper.mm-page {
    /* z-index: 0; */
    position: initial;
}

button {
    transition: all 0.5s ease-in-out;
}

input:not(input[type="submit"], input[type="checkbox"], input[type="radio"]) {
    width: 100%;
    /* height: 48px; */
    padding: 10px 15px;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

span,
mark {
    display: inline-block;
}

a {
    transition: all 0.5s ease-in-out;
    display: inline-block;
    color: #1695ec;
}

a:hover {
    color: #1695ec;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

section {
    padding: 80px 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}


/* checkbox  */

.checkbox {
    position: relative;
    margin-left: 20px;
    padding-left: 30px;
    font-size: 18px;
    color: #000;
}

.checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.checkbox input:checked~span::after {
    background-size: 15px;
}

.checkbox span::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    border: 2px solid #000;
    border-radius: 3px;
}

.checkbox span::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    background: url(../images/check.svg) no-repeat center center;
    background-size: 0;
    transition: 0.2s all ease-in-out;
}


/* checkbox  end*/


/* custom radio  */

.radioBtn {
    position: relative;
    margin-left: 20px;
    padding-left: 30px;
    font-size: 18px;
    color: #000;
}

.radioBtn input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.radioBtn input:checked~span::after {
    background: #000;
    transform: translateY(-50%) scale(1);
}

.radioBtn span::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    border: 2px solid #000;
    border-radius: 50%;
}

.radioBtn span::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background-size: 0;
    transition: 0.2s all ease-in-out;
    border-radius: 50%;
}


/* custom radio end */


/* custom file upload  */

.fileupload {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.fileupload span {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

.fileupload mark {
    height: 100%;
    background: #ecebeb;
    padding: 10px 20px;
}

.fileupload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}


/* custom file upload end */


/*======START MOBILE MENU SECTION=======*/

.mobileMenuSection {
    display: none;
}

.mobilemenuBtn {
    display: none;
}

.mobilemenuBtn span {
    background: #2C3087;
    display: block;
    width: 25px;
    height: 2px;
    margin: 0 0 5px 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.mobilemenuBtn span:last-child {
    margin: 0;
}

.mm-wrapper--opened .mobilemenuBtn span:first-child {
    transform: rotate(45deg) translate(4px, 6px);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: rotate(45deg) translate(4px, 6px);
    -moz-transform: rotate(45deg) translate(4px, 6px);
    -ms-transform: rotate(45deg) translate(4px, 6px);
    -o-transform: rotate(45deg) translate(4px, 6px);
}

.mm-wrapper--opened .mobilemenuBtn span:last-child {
    transform: rotate(-45deg) translate(4px, -6px);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: rotate(-45deg) translate(4px, -6px);
    -moz-transform: rotate(-45deg) translate(4px, -6px);
    -ms-transform: rotate(-45deg) translate(4px, -6px);
    -o-transform: rotate(-45deg) translate(4px, -6px);
}

.mm-wrapper--opened .mobilemenuBtn span:nth-child(2) {
    opacity: 0;
}

.mm-navbar {
    background: #EB7B1A;
    box-shadow: 0 2px 14px -2px rgb(0, 0, 0, .2);
    border: 0;
    min-height: 45px;
}

.mm-navbar .mm-navbar__title {
    font-size: 20px;
    line-height: 25px;
    color: #ffff !important;
    font-weight: 600;
    font-family: var(--bodyfont);
}

.mm-listview>li>a,
.mm-listview>li>span {
    font-size: 15px;
    line-height: 24px;
    /* font-weight: 500; */
    color: #202124 !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mm-listview>li>a:hover,
.mm-listview>li.active>a {
    color: #000;
}

.mm-listitem {
    border-color: #ddd;
}

.mm-listview>li:not(.mm-divider):after {
    left: 0;
}

.mm-menu .mm-listview>li .mm-next:after {
    border-color: rgb(0, 0, 0);
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: #000;
    width: 6px;
    height: 6px;
}

.mm-btn--prev:before {
    width: 8px !important;
    height: 8px !important;
    border-color: #fff !important;
}

.mmenu-open-fade .mobileMenuSection {
    display: none;
}

.mmenu-open-fade .mobileMenuSection {
    display: none;
}

.mm-btn--prev:before {
    border-color: #2C3087 !important;
}

.mm-menu--position-bottom,
.mm-menu--position-left-front,
.mm-menu--position-right-front,
.mm-menu--position-top {
    z-index: 999;
}

.mm-wrapper--position-bottom .mm-wrapper__blocker,
.mm-wrapper--position-left-front .mm-wrapper__blocker,
.mm-wrapper--position-right-front .mm-wrapper__blocker,
.mm-wrapper--position-top .mm-wrapper__blocker {
    z-index: 3;
}


/*=======END MOBILE MENU SECTION=======*/

.site-main {
    padding-top: 60px;
}


/* header */

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    transition: 00.5s ease-in-out;
    filter: drop-shadow(0px 4px 10px rgba(9, 54, 96, 0.15));
    background: #fff;
}



.main-menu nav>ul {
    display: flex;
    align-items: center;
}

.main-menu nav li a {
    color: #878F98;
    font-weight: 400;
    /* padding: 10px 0; */
    display: inline-block;
    position: relative;
}

.main-menu>nav>ul>li.has-submenu>a {
    padding-right: 17px;
}

.main-menu nav li.current-menu-item>a,
.main-menu nav li>a:hover {
    color: var(--blackcolor);
}

.main-menu>nav>ul>li {
    padding: 0 18px;
    position: relative;
}

.main-menu>nav>ul>li:first-child {
    padding-left: 0;
}


/* sub menu*/

.has-submenu .has-submenu-sub:hover>.sub-menu {
    opacity: 1;
    transform: translate(0, 0px);
    pointer-events: inherit;
}

.has-submenu {
    position: relative;
}

.has-submenu>a {
    padding-right: 15px;
    position: relative;
}

.has-submenu>a:after {
    content: '\f2f9';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    color: #03629E;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.has-submenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 70px);
    background: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    width: 250px;
    padding-top: 0px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    z-index: 999;
}

.has-submenu:hover>.sub-menu {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: all;
}

.has-submenu .sub-menu>li {
    height: auto;
    line-height: 20px;
}

.has-submenu .sub-menu>li>a {
    padding: 9px 15px;
    display: block;
    font-size: 14px;
    color: #000;
    transition: all 0.5s ease-in-out;
    background: #f7f7f7;
}

.has-submenu .sub-menu>li>a {
    background: #0055a5;
    color: #fff;
}

.has-submenu:hover>a:after {
    color: #0055a5;
}

.has-submenu .sub-menu>li>a:hover {
    color: #fff;
    background: #00B7C2 !important;
}

.has-submenu .has-submenu-sub {
    position: relative;
}

.has-submenu .has-submenu-sub>a {
    position: relative;
}

.has-submenu .has-submenu-sub>a:after {
    content: '\f2f6';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    color: #fff;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

.has-submenu .sub-menu>li:not(:last-child) {
    border-bottom: 1px solid #fff;
}

.has-submenu .has-submenu-sub:hover>a {
    background: #0055a5;
    color: #fff;
}

.has-submenu .has-submenu-sub:hover>a:after {
    color: #fff;
}

.has-submenu .has-submenu-sub .sub-menu {
    left: 100%;
    transform: translate(0, 70px);
    transition: all 0.5s ease-in-out;
    top: 0;
    width: 250px;
}


/* sub menu end*/
/* 22/06/2023 */

/* header  */

.top_hdr {
    background: var(--orangecolor);
    padding: 10px 0;
}

.top_hdr p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}





.right_user_info>ul>li>a {
    color: var(--blackcolor);
    font-size: 14px;
}

.right_user_info>ul>li>a:hover {
    color: #949CA6;
}

.drop_item {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #f4f3ef;
    width: 160px;
}

.userDrop.drop_item {
    display: block;
}

.right_user_info .dropdwn.arrow span {
    transform: rotateX(-190deg);
}

.drop_item li a img {
    width: 15px;
}

.drop_item li a {
    padding: 10px 7px;
    color: #575353;
    display: block;
    border-bottom: 1px solid #FFE4CC;
    font-size: 15px;
}

.right_vhat_close i {
    font-size: 20px;
}

.drop_item li:last-child a {
    border: 0;
}

.drop_item li a:hover {
    background: #FFE4CC;
    padding-left: 15px;
}

.dropdwn {
    display: flex;
    align-items: center;
}

.dropdwn figure {
    margin-bottom: 0;
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    overflow: hidden;
    border: 5px solid #FFE4CC;
    border-radius: 50%;
    margin-right: 18px;
}

.dropdwn span i {
    font-size: 30px;
}

.header-bottom-hldr {
    padding: 15px 0;
    flex-wrap: wrap;
}

.right_user_info {
    margin-left: auto;
}

.ball {
    position: relative;
}

.ball span {
    background: #FF0000;
    border: 1.5px solid #FFFFFF;
    font-weight: 600;
    font-size: 10px;
    color: #fff;
    width: 17px;
    height: 17px;
    min-width: 17px;
    min-height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

.dropdwn span {
    transition: .4s all ease-in-out;
    transform: rotate(0deg);
}

.dropdwn.actv span {
    transform: rotateX(180deg);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #D9E6F0;
    width: 239px;
    transition: .4s all ease-in-out;
    padding-right: 0px;
}

.active .logo {
    width: 40px;
    border: 0;

}

.active .logo h1 {
    font-size: 0;
}

.active span.toggle_btn {
    margin-left: 11px;
}



.main-menu {
    padding-left: 30px;
}

.hide_icon {
    cursor: pointer;
    min-width: 15px;
    transition: .4s all ease-in-out;
    margin-left: 10px;
}

.logo .logo2 {
    transition: .4s all ease-in-out;
    margin-left: -130px;
    opacity: 0;
    position: relative;
}

.logo.actv .logo2 {
    opacity: 1;
    margin-left: 5px;
}

.fix_logo {
    position: relative;
    z-index: 1;
    max-width: 56px;
    transition: .4s all ease-in-out;
}

.logo h1 a {
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #107cc7;
    white-space: nowrap;
}

.active .fix_logo {
    max-width: 34px;
    margin-right: 4px;
}

/* left dashbord pnal  */
.fix_pnal {
    height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* display: block; */
    overflow: auto;
    /* min-height: min-content;*/
}

.fix_pnal::-webkit-scrollbar {
    display: none;
}

.fix_pnal ul li a {
    color: #000;
    font-size: 13px;
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 15px 10px;
}

.fix_pnal ul li:nth-child(5) a img {
    width: 20px;
}

.fix_pnal ul:last-child {
    margin-bottom: 20px;
}


.fix_pnal ul li a img {
    display: block;
    width: 24px;
    /* filter: brightness(0) invert(1) brightness(0.5); */
}


.fix_pnal ul li.active a {
    background: #1695ec;
    color: #fff;
}

.fix_pnal ul li.active a img {
    filter: brightness(100);
}

.fix_pnal ul li a span {
    line-height: 1;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: .4s all ease-in-out;
}

.main_page_wraper {
    display: flex;
    flex-wrap: wrap;
}

.frm_list {
    background: #F1F7FC;
    transition: .4s all ease-in-out;
    z-index: -1;
    /* width: calc(100% - 100px); */
    transform: translateX(-430px);
}




.left_pnal {
    width: 250px;
    display: flex;
    flex-wrap: wrap;
    transition: .4s all ease-in-out;
    z-index: 11;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    padding-top: 60px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.active .left_pnal {
    width: 50px;
}

.active .fix_pnal ul li a {
    font-size: 0;
}

.active .fix_pnal ul li a span {
    padding-left: 0;
    font-size: 0;
}


.right_pnal {
    width: calc(100% - 250px);
    padding: 10px 30px 20px 30px;
    transition: .4s all ease-in-out;
    margin-left: auto;
    z-index: 2;
}

.active .right_pnal {
    width: calc(100% - 50px);
}

.frm_list h5 {
    background: #00A9C8;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
    padding: 12px 25px;
}

.frm_list ul li a {
    font-size: 15px;
    color: var(--blackcolor);
    padding: 18px 25px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.frm_list ul li a::before {
    position: absolute;
    content: "";
    width: calc(100% - 45px);
    height: 1px;
    background: #D9E6F0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.frm_list ul li a span i {
    color: var(--deepskycolor);
    font-size: 22px;
    line-height: 0;
}

.frm_list ul li a span {
    position: relative;
    opacity: 0;
    left: -10px;
    height: 15px;
    transition: .4s all ease-in-out;
}

.frm_list ul li.active a span,
.frm_list ul li a:hover span {
    left: 0;
    opacity: 1;
}

.frm_list ul li:last-child a:before {
    display: none;
}

.frm_list ul li a:hover {
    background: #D9E6F0;
}

.frm_list ul li.active a {
    font-weight: 600;
    background: #D9E6F0;
}

.side_menu_actv .frm_list {
    transform: translateX(0);
    width: calc(100% - 105px);
}



.main_form h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--blackcolor);
    margin-bottom: 20px;
}



.main_form label {
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.main_form label mark {
    color: #EB1A1A;
    background: transparent;
    line-height: 0;
}

.main_form input.form-control {
    background: #FFFFFF;
    height: 35px;
    padding: 10px 18px;
    color: #878F98;
    font-size: 13px;
}

.main_form .form-select {
    /* background: #FFFFFF; */
    border-radius: 5px;
    height: 35px;
    padding: 10px 18px;
    color: #878F98;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.main_form .form-select {
    /* background: #fff url(../images/down_arow.svg) no-repeat calc(100% - 20px) center / 15px; */
    transition: .4s all ease-in-out;
}

.defaulttex.form-select.actv_arow {
    background-image: url(../images/up_arow.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 20px) center;
}

ul.dropdn {
    background: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15);
    width: 100%;
    z-index: 2;
    display: none;
}

ul.dropdn.dropActv {
    display: block;
}

.defaulttex span img {
    width: 15px;
}

a.clone_data span img {
    width: 12px;
}

a.clone_data span,
.defaulttex span {
    margin-right: 10px;
    min-width: 12px;
    text-align: center;
    color: #000;
}

.selet p {
    margin-bottom: 0;
}

.clone_data {
    display: flex;
    align-items: center;
    color: #a7a7a7;
    padding: 7px 10px;
}

.selet {
    position: relative;
}

.defaulttex {
    display: flex;
    align-items: center;
}

.rdo_btn li {
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 10px;
    width: 120px;
}

.rdo_btn li span {
    font-size: 15px;
    font-weight: 400;
}

.rdo_btn li .radioBtn span::before {
    border-color: var(--deepskycolor);
    width: 21px;
    height: 21px;
}

.radioBtn input:checked~span::before {
    background: var(--bluecolor);
    border-color: var(--bluecolor);
}

.radioBtn input:checked~span::after {
    background: #fff;
}

.radioBtn span::after {
    left: 6px;
    top: 10px;
    width: 9px;
    height: 9px;
}

.rdo_btn li:last-child {
    margin-right: 0;
}

.main_form .rdo_btn li label {
    margin-left: 0;
    margin-bottom: 0;
    line-height: 1;
}

.rdo_btn {
    margin-bottom: 15px;
}

.form-group {
    position: relative;
    overflow: hidden;
}

.form-group span {
    position: absolute;
    top: -7px;
    left: 0;
    width: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    /* background: #fff; */
    border-right: 1px solid #CBD4DB;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.form-group .form-control {
    padding-left: 70px;
}

.progressbr {
    background: #F1F7FC;
    border-radius: 14px;
    margin-bottom: 40px;
}

.progress {
    background: #00C72C;
    border-radius: 15px;
    width: 0;
    margin-bottom: 0;
    position: relative;
}

.track {
    background: #009922;
    border-radius: 15px;
    width: 63px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 16px;
    font-weight: 600;
}

.noUi-handle.noUi-handle-lower {
    display: none;
}

.noUi-tooltip::after {
    /*content: " members";*/
}

.main_form .noUi-horizontal {
    height: 8px;
    border: 0;
    background: #D9E6F0;
}

.noUi-base,
.noUi-connects {
    z-index: 0;
}

.main_form .noUi-connect {
    background: var(--orangecolor);
}

.main_form .noUi-touch-area {
    width: 24px;
    height: 24px;
    background: var(--deepskycolor);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

.main_form .noUi-handle::after,
.main_form .noUi-handle::before {
    display: none;
}

.main_form .noUi-horizontal .noUi-handle {
    background: transparent;
    box-shadow: inherit;
    border: 0;
    width: auto;
    height: auto;
    top: -8px;
}

.main_form .noUi-tooltip {
    font-weight: 500;
    font-size: 12px;
    color: var(--blackcolor);
    background: transparent;
    border: 0;
    padding: 0
}

.btn_row li {
    display: inline-block;
    margin-right: 15px;
}

.btn_row li:last-child {
    margin-right: 0;
}

.trans_btn {
    color: #fff;
    background: linear-gradient(270deg, #7E98F1 0%, #243F9B 100%);
    border-radius: 30px;
    padding: 14px 36px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    font-size: 16px;
    border: none;
    outline: none;
}

.normal_btn {
    color: var(--bluecolor);
    background: linear-gradient(270deg, #7E98F1 0%, #243F9B 100%);
    border-radius: 30px;
    padding: 14px 36px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    border: 0;
}

.normal_btn::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background: #00A9C8;
    z-index: -1;
    border-radius: 30px;
    left: 0;
    top: 0;
    transition: .4s all ease-in-out;
}

.normal_btn:hover {
    color: #fff;
}

.normal_btn:hover::before {
    width: 98.3%;
}

.trans_btn:hover {
    color: #fff;
}

.trans_btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #00A9C8;
    z-index: -1;
    border-radius: 30px;
    left: 0;
    top: 0;
    transition: .4s all ease-in-out;
}

.trans_btn:hover::before {
    width: 0;
}

.btn_row {
    text-align: right;
    /* margin-top: 30px; */
    display: flex;
    align-items: center;
}

.btn_row.back_btn {
    text-align: left;
}

.prev_btn.normal_btn:hover::before {
    width: 98%;
}

.right_vhat {
    width: 427px;
    background: #FFFFFF;
    border: 1px solid #D9E6F0;
    border-radius: 15px;
    padding: 25px;
}

.right_vhat.actv_chat {
    display: none;
}

.right_vhat ul li a {
    font-size: 14px;
    color: var(--blackcolor);
    display: inline-flex;
    align-items: center;
}

.right_vhat ul li a:hover {
    color: var(--deepskycolor);
}

.right_vhat ul li a img {
    margin-right: 10px;
}

.right_vhat ul li {
    margin-bottom: 15px;
}

.right_vhat ul li:last-child {
    margin-bottom: 0;
}

.right_vhat h5 {
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 18px;
    color: var(--blackcolor);
}

.right_vhat {
    width: 30%;
    position: sticky;
    top: 150px;
}

.close {
    position: absolute;
    right: 30px;
    top: 25px;
    cursor: pointer;
}

.left_frm {
    width: 70%;
    padding-right: 35px;
    /* transition: .4s all ease-in-out; */
}

.nrmlwidth .left_frm {
    width: 100%;
    padding-right: 0;
}

.addressType1,
.addressType2 {
    display: none;
}

.addressType1.show,
.addressType2.show {
    display: block;
}

.addressType1Ven,
.addressType2Ven {
    display: none;
}

.addressType1Ven.show,
.addressType2Ven.show {
    display: block;
}


/* login form  */

.right_frm .main_form {
    display: block;
}

.right_frm {
    text-align: center;
    padding: 25px 30px;
}

.right_frm .main_form label {
    text-align: left;
}

.login_sec .checkbox {
    margin-left: 0;
}

.inner_login .checkbox {
    font-size: 16px;
}

.inner_login .checkbox span::before {
    width: 18px;
    height: 18px;
    border-color: var(--bluecolor);
}

.inner_login .checkbox input:checked~span::after {
    background-size: 13px;
    top: -1px;
    left: -1px;
}

.inner_login {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: relative;
    z-index: 1;
    max-width: 884px;
    margin: 0 auto;
    border-radius: 15px;
    line-height: 1;
    overflow: hidden;
    padding: 20px;
}

.inrlog {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.inner_login::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/loginbg.png) no-repeat center center / 100% 100%;
}

.inner_login .title span {
    display: block;
    font-size: 20px;
    color: #1A5580;
    font-weight: 700;
    text-transform: uppercase;
}

.inner_login .title {
    text-align: center;
    margin-bottom: 30px;
}

.log_sldr_box img {
    margin: 0 auto;
    width: 68%;
}

.right_frm .normal_btn {
    width: 100%;
}

.log_sldr_box {
    text-align: center;
}

.sldr_content h4 {
    color: #fff;
    margin-bottom: 20px;
}

.sldr_content p {
    color: #dfdcdc;
    font-size: 14px;
}

.sldr_content {
    padding: 30px;
}

.title h3 {
    font-size: 25px;
}

.inner_login .title h2 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 37px;
    color: #212121;
}

.right_frm input.form-control {
    height: 50px;
    border-radius: 4px;
    border-color: #CDDAE3;
    padding-left: 43px;
    font-size: 15px;
    font-weight: 500;
}

.form-control:focus {
    box-shadow: inherit;
}

.log_sldr .slick-dots {
    bottom: 18px;
}

.log_sldr .slick-dots li button {
    background: #fff;
    padding: 0;
    border-radius: 50%;
    width: 16px;
    height: 16px;
}

.log_sldr .slick-dots li.slick-active button {
    width: 36px;
    border-radius: 10px;
}

.log_sldr .slick-dots li button::before {
    display: none;
}

.log_sldr .slick-dots li {
    width: auto;
    height: auto;
}

.right_frm a {
    color: #12486D;
    text-transform: capitalize;
    font-weight: 700;
}

.right_frm a:hover {
    color: #66b6eb;
}

.forgot_pass {
    text-align: right;
    margin-top: 10px;
}

.main_form .title {
    margin-bottom: 20px;
}

.main_form+p {
    margin-top: 30px;
    margin-bottom: 0;
    color: #19557F;
    font-weight: 300;
}

.login_sec {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    height: 100%;
}

.site-main.login_page {
    height: 100vh;
    padding: 0;
}

.check_wraper {
    /* display: flex;
    align-items: center; */
}

.check_wraper>ul {
    margin-bottom: 0;
    display: inline-block;
}

.check_wraper>ul:not(:last-child) {
    margin-right: 20px;
}

.hidn_fld {
    display: none;
    margin-top: 15px;
}

.hidn_fld_bank,
.hidn_fld_cooperative,
.hidn_fld_mfi,
.hidn_fld_money_lender,
.hidn_fld_relatives,
.hidn_fld_shg_jlg,
.interest_rate_new,
.loan_amount_new,
.hidn_fld_other_loan {
    display: none;
    margin-top: 15px;
}

.check_wraper .rdo_btn li .radioBtn span::before {
    border-radius: 0;
}

.check_wraper .radioBtn span::after {
    display: none;
}

.check_wraper .radioBtn input:checked~span::before {
    background: transparent url(../images/tick.svg) no-repeat center center / 15px;
}

.error {
    color: #D8000C;
    font-size: 14px;
    margin-top: 5px;
}


/* 26.04.23 */

.progrs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progrs input[type="range"] {
    background: transparent;
    border-radius: 5px;
}


/*
input[type=range]::-moz-range-track {

    height: 6px;
    background: #D9E6F0;
    border-radius: 3px;
    border: 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: goldenrod;
    margin-top: -4px;
}

input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: goldenrod;
}



input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: goldenrod;
} */

.progrs span {
    margin-right: 10px;
}

.table_outer ul {
    flex-wrap: wrap;
    text-align: center;
    width: 70px;
}

.table_outer ul li {
    display: inline-block;
}

.table_outer ul li span {
    display: block;
}

.table_outer {
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15);
    border-radius: 15px;
    padding: 15px;
    overflow-x: auto;
    width: auto;
}

.table_outer table {
    margin-bottom: 0;
    /* min-width: 1410px; */
    min-width: 100%;
}

.table_outer table thead tr th {
    background: #D9E6F0;
    border-right: 2px solid #fff;
    padding: 13px 10px;
    color: #212121;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 3px !important;
}

.table_outer tbody tr td {
    background: #F1F7FC;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    vertical-align: middle;
    border-radius: 3px !important;
    padding: 5px 10px;
    line-height: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #212121;
}

.table_outer tbody tr td:last-child {
    border-right: 0;
}

.table_outer table thead tr th:last-child {
    border-right: 0;
}

.table_outer ul li a {
    color: #737C83;
    font-weight: 400;
    font-size: 12px;
}

.table_outer ul li a i {
    font-size: 22px;
    margin-bottom: 10px;
}

.table_outer ul li a img {
    margin-bottom: 10px;
}

.table_outer ul li:not(:last-child) {
    margin-right: 1px;
}

#benificiary_program ul li:not(:last-child) {
    margin-right: -6px;
}

.main_form .cont_info .form-control {
    padding-left: 70px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0px;
}

/* range css  */


/* 12.05.2023 pabitra */

.trans_btn.trans_btn_1 {
    padding: 7px 10px;
    font-size: 14px;
}


/*Chrome*/



@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range']::-webkit-slider-runnable-track {
        height: 10px;
        -webkit-appearance: none;
        color: #13bba4;
        margin-top: -10px;
    }

    input[type='range']::-webkit-slider-thumb {
        width: 10px;
        -webkit-appearance: none;
        height: 10px;
        cursor: ew-resize;
        background: #434343;
        margin-top: -3px;
    }

    input[type="range"]::-webkit-range-progress {
        background-color: #00C72C;
        height: 10px;
        border-radius: 5px;
    }

    input[type="range"]::-webkit-progress-value {
        background-color: #00C72C;
    }
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #D9E6F0;
    height: 10px;
    border-radius: 5px;
}


/** FF*/

input[type="range"]::-moz-range-progress {
    background-color: #00C72C;
    height: 10px;
    border-radius: 5px;
}

input[type="range"]::-moz-range-track {
    background-color: #D9E6F0;
    height: 10px;
    border-radius: 5px;
}

input[type="range"]::-moz-range-thumb {
    background: none;
    border: 0;
}


/* IE*/

input[type="range"]::-ms-fill-lower {
    background-color: #00C72C;
}

input[type="range"]::-ms-fill-upper {
    background-color: #D9E6F0;
}


/* img check  */

.main_form label.img_chk span {
    border: 1px solid var(--orangecolor);
    display: inline-block;
    /* border-radius: 20px; */
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.main_form label.img_chk input:checked~span::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 50px solid var(--orangecolor);
    border-left: 50px solid transparent;
    right: 0;
    top: 0;
}

.main_form label.img_chk input:checked~span::after {
    position: absolute;
    content: "";
    background: url(../images/check.png) no-repeat right 0 / contain;
    width: 19px;
    height: 20px;
    top: 7px;
    right: 6px;
}

.main_form label.img_chk {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.img_chk img {
    /* width: 100px; */
    position: relative;
    z-index: -1;
    padding: 10px;
}

.main_form label.img_chk input:checked~span {
    border-color: var(--orangecolor);
    /* background: rgba(0, 0, 0, 0.76) url(../images/check.png) no-repeat center center / 50px; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.main_form label.img_chk input {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.main_form>div>div>label {
    font-size: 14px;
}

.main_form .cont_info .form-control {
    padding-left: 70px;
}


/* 10.5.2023 - pabitra */

.top_hdr_close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    font-size: 20px;
    padding: 5px;
    background: var(--orangecolor);
}

.search_btn input[type="submit"]:is(:hover,
    :focus) {
    box-shadow: none;
    /* border: 1px solid #D9E6F0; */
}

.report_search input:is(:hover,
    :focus) {
    box-shadow: none;
    border: 1px solid #69beff;
}

.search_btn input[type="submit"] {
    background: var(--bluecolor);
    color: #fff;
    border: 1px solid var(--bluecolor);
    transition: all 0.5s ease-in-out;
}

.search_btn input[type="submit"]:hover {
    background: #fff;
    color: var(--bluecolor);
}

.search_btn .Clear {
    background: #fff !important;
    color: var(--bluecolor) !important;
}

.report_pagination ul li a {
    font-size: 12px;
    color: var(--bluecolor);
}

.report_pagination ul li.page-item:is(:hover,
    :focus) {
    box-shadow: none
}

.report_pagination ul li.page-item.active {
    background: none;
    /* border: 1px solid var(--bluecolor); */
}

.report_pagination ul li.page-item.active a {
    background: var(--bluecolor);
    border: 1px solid var(--bluecolor);
}

.report_search input[type="search"] {
    width: 350px;
}

.report_search input::placeholder {
    font-size: 12px;
}

.fix_pnal.toTop {
    top: -40px;
    position: relative;
}

.form-control.phn_no {
    padding-left: 70px !important;
}


/* 15.05.2023 pabitra */

.table_outer.user_table tbody tr td {
    padding: 15px 10px;
}


/* 17-05-2023 */

.message_block h3 {
    font-size: 30px;
    line-height: 50px;
    color: #156415;
    margin-bottom: 25px;
}

.message_block h5 {
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 30px;
}

.message_block h6 span {
    vertical-align: middle;
}

h3.form_hdng {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2e1d1d;
}

.main_form h4 mark {
    color: #EB1A1A;
    background: transparent;
    line-height: 0;
}


/*dashboard teporary img*/

.mb_img {
    display: none;
}


/* forget pass  */

.inner_login.forget_pass .log_sldr {
    background: var(--bluecolor);
}

.inner_login.forget_pass .log_sldr_box {
    padding: 20px;
}

.inner_login.forget_pass .log_sldr_box img {
    width: 60%;
}

.inner_login.forget_pass .sldr_content {
    padding: 0;
    padding-top: 30px;
}

.normal_btn:hover,
.inner_login.forget_pass input[type="submit"].normal_btn:hover {
    background: linear-gradient(270deg, #243F9B 0%, #7E98F1 100%);
}

/* loader style */
.wrapper.mm-page.loader {
    position: relative;
    pointer-events: none;
}

.wrapper.mm-page.loader::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0, .5);
    z-index: 101;
}

/* Circle Loader */
.loader-circle {
    --line-color-rgb: 225, 225, 225;
    --size: max(10vh, 100px);
    --line-width: calc(var(--size)/10);
    --speed: 8s;
    width: var(--size);
    height: var(--size);
    animation: circle-loader-1 var(--speed) linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    z-index: 123;
}

@keyframes circle-loader-1 {
    to {
        transform: rotate(360deg);
    }
}

.loader-circle span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    clip: rect(0, var(--size), var(--size), calc(var(--size) / 2));
    animation: circle-loader-2 calc(var(--speed)/4) linear infinite;
}

@keyframes circle-loader-2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(220deg);
    }
}

.loader-circle span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    clip: rect(0, var(--size), var(--size), calc(var(--size) / 2));
    border: var(--line-width) solid rgb(var(--line-color-rgb));
    border-radius: 50%;
    animation: circle-loader-3 calc(var(--speed)/4) cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}

@keyframes circle-loader-3 {
    0% {
        transform: rotate(-140deg);
    }

    50% {
        transform: rotate(-160deg);
    }

    100% {
        transform: rotate(140deg);
    }
}


.morefilter a {
    background: var(--bluecolor);
    color: #fff;
    border: 1px solid var(--bluecolor);
    transition: all 0.5s ease-in-out;
    padding: 10px;
    border-radius: 5px;
}

.more_filter_dd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    padding: 0 10px;
    box-shadow: rgba(0, 0, 0, .2);
    background: #fff;
}

.more_filter_dd li {
    padding: 10px 0;
}

.more_filter_dd li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

/* dashboard style start 23.5.23 pabitra */
.data_dtl {
    padding: 24px 10px;
    border-radius: 10px;
    flex-wrap: wrap;
}

.data_dtl figure img {
    max-width: 50px;
    height: 55px;
}


.data_dtl {
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, .15);
    background: #fff;
}

.data_dtl.blu_clr {
    background: #e27d60;
}

.data_dtl.red_clr {
    background: #85db;
}

.data_dtl.red_clr2 {
    background: #c38d9e;
}

.data_dtl.brn_clr {
    background: #e8a87c;
}

.data_dtl.bgcolor {
    background: #8d8741;
}

.data_dtl.bgcolor2 {
    background: #659dbd;
}

.data_dtl.bgcolor3 {
    background: #daad86;
}

.data_dtl.bgcolor3 {
    background: #bc986a;
}

.data_dtl.bgcolor4 {
    background: #57956f;
}



.data_dtl h6 {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
}

.data_dtl h5 {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    font-weight: 700;
}

.data_dtl figure {
    margin-right: 7px;
    width: 70px;
}

.data_dts_box {
    width: calc(100% - 70px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.right_view a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
}

.right_view a:hover {
    color: #f5e6e6;
}

.right_view a span {
    font-size: 24px;
    line-height: 1;

    margin-left: 5px;
}

.chart_dtl {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px -2px rgb(0, 0, 0, 0.2);
    min-height: 530px;
}

.chart_dtl h6 {
    font-size: 16px;
    line-height: 28px;
    padding: 0 0 10px 0;
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
}

.chart_dtl figure {
    margin-top: 20px !important;
}

.chart_hldr {
    margin-top: 40px;
}

.chart_hldr .row>div:nth-child(-n+2) {
    margin-bottom: 25px;
}

/* dashboard style end */

/* daterange picker start */


.date_range input[type="text"] {
    padding: 10px 10px 10px 50px;
    /* margin-bottom: 25px; */
    border: 1px solid #8ef5e0;
    border-radius: 10px;
}

.date_range input[type="submit"] {
    padding: 10px 20px;
    margin-left: 15px;
    border-radius: 10px;
}

.date_range i {
    position: absolute;
    top: 29%;
    left: 15px;
    /* transform: translate(0, -50%); */
    font-size: 20px;
}

/* daterange picker end */
/* .select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    background: #FFFFFF url(../images/down_arow.svg) no-repeat calc(100% - 20px) center / 15px;
    -webkit-box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15) !important;
    box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15) !important;
    border-radius: 15px;
    height: auto;
    border: 0;
    padding: 10px 18px;
    color: #878F98;
    font-size: 14px;
} */

.select2-container {
    width: 100% !important;
}

.select2-container .selection {
    width: 100%;
}

/* navmenu new style */
.trans_btn.trans_btn_1.trans_btn_2 {
    border-radius: 5px;
    /* height: 100%; */
    /* margin-left: 15px; */
    padding: 8px 10px;
    cursor: pointer;
}

.trans_btn.trans_btn_1.trans_btn_2::before {
    border-radius: 5px;
}

/* form-list page changes 29.05.2023 */
table.dataTable.no-footer {
    border-bottom: none !important;
    width: initial !important;
}

.table.dataTable.no-footer tbody tr td,
.table.dataTable.no-footer thead tr th {
    border-bottom: none;
    padding: 5px 10px;
}

.table.dataTable.no-footer thead tr th {
    vertical-align: top;
    font-size: 15px;
    padding: 10px;

}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: none;
    border: 1px solid transparent;
}

.form_new_table {
    position: relative;
    text-align: right;
}

.right_pnal.form-list {
    padding-top: 0;
}

#form-table_wrapper .row:first-child {
    flex-direction: row-reverse;
}

.dataTables_wrapper .dataTables_filter {
    float: left;
    margin-bottom: 50px;
}

.dataTables_wrapper .dataTables_length {
    float: right;
    margin-top: 50px;
}

.form_new_table a.import_btn_excel {
    position: absolute;
    width: 150px;
    top: 14px;
    right: 160px;
}

.form_new_table a.export_btn_excel {

    width: 150px;

    text-align: center;
}

.form_list_srch_fltr {
    position: absolute;
    width: 400px;
    left: 24%;
    top: 30px;
    z-index: 2;
}

.form_list_srch_fltr select {
    font-size: 15px;
    height: 33px;
    padding: 5px 10px;
    appearance: revert;
    -webkit-appearence: revert;
}

.form_list_srch_fltr select:focus {
    box-shadow: none;
}

.dataTables_filter input[type="search"]:focus {
    box-shadow: none;
}

/* 30.05-2023 */
.main_form span.total_new_expenditure {
    font-size: 18px;
    font-weight: 600;

}

/* 31.05.23 */

form#bulkFormone .excel_form_upload,
form#bulkFormone .file-field.excel_frm_upload2 {
    text-align: center;
    padding: 35px;
    background: #ebebeb;
    border-radius: 15px;
}

form#bulkFormone .excel_form_upload p,
form#bulkFormone .file-field.excel_frm_upload2 p {
    font-size: 20px;
    line-height: 22px;
}

form#bulkFormone .file-field.excel_frm_upload2 {
    margin-top: 15px;
}

form#bulkFormone div#tickmark_submit {
    width: 30px;
    right: 0px;
    position: absolute;
    top: 6px;
}

form#bulkFormone .excel_upload-btn {
    margin-top: 12px;
}

.right_user_info .dropdwn span {
    margin-right: 10px;
}

.main-menu nav li.current-menu-item>a {
    font-weight: 700;
    position: relative;
}

.main-menu nav li.current-menu-item>a:before {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: var(--bluecolor);
    content: "";
}

#form-table_wrapper td.dataTables_empty {
    font-size: 17px !important;
    padding: 9px 0px !important;
}

.table_outer .dataTables_info {
    margin-top: 10px;
}

/*Notification css*/
.notification_panel .alert-info {
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.notification_panel .alert-info p {
    margin-bottom: 10px;
    width: 77%;

}

.notification_panel a.float-right.mark-as-read {
    margin-left: auto;
    color: #000;
}

.notification_panel a.float-right.mark-as-read img {
    width: 20px;
    margin-right: 2px;
}

.mark_all_btn {
    text-align: left;
}

.mark_all_btn a {
    color: #000;
}

.mark_all_btn a:hover,
.notification_panel a.float-right.mark-as-read:hover {
    color: var(--bluecolor);
}

.mark_all_btn img {
    width: 20px;
    margin-right: 5px;
}

.alert.alert-secondary.old-alert {
    text-align: left;
}

.notification_panel p.notification-time {
    font-size: 13px;
    display: block;
    width: 100%;
}

.select2-results__option {
    padding-right: 20px;
    vertical-align: middle;
}

.select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    border: 2px solid #e9e9e9;
    border-radius: 4px;
    background-color: #fff;
    margin-right: 20px;
    vertical-align: middle;
}

.select2-results__option[aria-selected=true]:before {
    /* font-family:fontAwesome;
  content: "\f00c";
  color: #fff;
  background-color: #f77750;
  border: 0;
  display: inline-block;
  padding-left: 3px; */

    content: "";
    display: inline-block;
    color: #fff;
    background: #f77750 url(../images/check-wht.png)no-repeat center center;
    background-size: 13px;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;

}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eaeaeb;
    color: #272727;
}

.select2-container--default .select2-selection--multiple {
    margin-bottom: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 4px;

}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #f77750;
    border-width: 2px;
}

.select2-container--default .select2-selection--multiple {
    border-width: 2px;
}

.select2-container--open .select2-dropdown--below {

    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

.select2-selection .select2-selection--multiple:after {
    content: 'hhghgh';
}

/* 1.6.23 */
.main_form span.select2.select2-container.select2-container--default.select2-container--above {
    margin-bottom: 15px;
}

.main_form div#notify_users input[type="checkbox"] {
    margin-right: 5px;
}

.main_form .select2-container--default .select2-selection--multiple {
    margin-bottom: 15px;
    height: 35px;
    border: 1px solid #0c1136;
    overflow-y: auto;
}

.regenerate_btn {
    width: 30px;
    padding: 0;
    cursor: pointer;
}

/*css for role table */
#role_table_wrapper .row:first-child {
    flex-direction: row-reverse;
}

#role_table_wrapper td.dataTables_empty {
    font-size: 17px !important;
    padding: 9px 0px !important;
}

table#role_table tbody tr {
    height: 31px;
}

table#role_table thead tr th {
    font-size: 13px;
    font-weight: 500;
}

/*css for user table */
#user_table_wrapper .row:first-child {
    flex-direction: row-reverse;
}

#user_table_wrapper td.dataTables_empty {
    font-size: 17px !important;
    padding: 9px 0px !important;
}

table#user_table tbody tr {
    height: 31px;
}

table#user_table thead tr th {
    font-size: 13px;
    font-weight: 500;
}


/* 05.06.23  */

.showhd {
    position: relative;
}

.eye_btn {
    position: absolute;
    right: 14px;
    top: 8px;
    font-size: 20px;
    cursor: pointer;
}

.main_form .showhd input.form-control {
    padding-right: 35px;
}

.eye_btn .zmdi-eye-off {
    display: block;
}

.eye_btn .zmdi-eye {
    display: none;
}

.active .zmdi-eye-off {
    display: none;
}

.eye_btn.active .zmdi-eye {
    display: block;
}





/* 13.06.2023 */
.trash-wrraper {
    padding: 20px 0 0 0;
    text-align: left;
}

/* 21/06/23 */

.form_list_srch_fltr.app_listing {
    width: 67%;
    left: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 0;
}

.form_list_srch_fltr.app_listing>select {
    width: 32%;
}

#createdate {
    width: 32%;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: 11px;
}

.form_new_table.app_listing {
    position: absolute;
    top: 15px;
    right: 15px;
}

.form_new_table.app_listing a {
    position: relative;
    top: 0;
    right: 0;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-top: 10px;
}

/* .check_wraper ul li:not(:first-child) .save_check_all_read {
    pointer-events: none;
} */

/* .check_wraper ul li:not(:first-child) .loan_check_all_read {
    pointer-events: none;
} */

/* .check_wraper ul li:not(:first-child) .purpose_check_all_read {
    pointer-events: none;
}

.check_wraper ul li:not(:first-child) .activity_chk_check_all_read {
    pointer-events: none;
}

.check_wraper ul li:not(:first-child) .sell_product_all_read {
    pointer-events: none;
}

.check_wraper ul li:not(:first-child) .business_chk_all_read {
    pointer-events: none;
}

.check_wraper ul li:not(:first-child) .skill_check_all_read {
    pointer-events: none;
}

.check_wraper ul li:not(:first-child) .business_check_all_read {
    pointer-events: none;
} */

.page_head ul li {
    display: inline-block;
    padding: 0 11px;
    border-right: 1px solid #000;
    color: #000;
    /* font-weight: 600; */
}

.page_head ul li:last-child {
    border: 0;
    padding-right: 0;
}

.page_head ul {
    text-align: right;
}

.applicant_image_cls img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-top: 10px;
}

/* 4.7.23 */
a.logo_two {
    width: 106px;
}

.logo h1 {
    min-width: 56px;
    font-size: 11px;
}

#remove_img {
    display: none;
}

#dummy_img_new {
    display: none;
}

#output {
    display: none;
}

.trade_def {
    display: none;
}

table#benificiary_program tbody tr td table tbody tr td {
    border-top: none;
}

table#benificiary_program tbody tr td:nth-child(2) {
    min-width: 150px;
}

.filter_title {
    text-align: right;
}

.survey_title_curr {
    margin-top: 20px;
}

.venue_chk {
    display: none;
}

.right_frm .eye_btn {
    top: 16px;
}

span.toggle_btn {
    width: 24px;
    margin-left: 22px;
    cursor: pointer;
}



.common_table .table {
    background: #fff;
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, .15);
    border-radius: 10px;
    margin-bottom: 0;
    width: 100%;
    /* overflow: hidden; */
}

.common_table .table thead tr th {
    border: 0;
    padding: 10px 13px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.common_table .table thead tr th:last-child {
    border-top-right-radius: 10px;
}

.common_table .table thead tr th:first-child {
    border-top-left-radius: 10px;
}


.common_table .table thead tr th {
    background: #2386cb;
    border-right: 1px solid #6dabd6;
}

.common_table .table thead tr th:last-child {
    border-right: 0;
}

.collapse_btn.collapsed {
    transform: rotate(94deg);
}

.common_table .table tr td {
    border-bottom-color: #cce8fb;
    font-size: 14px;
    padding: 5px 13px;
    white-space: nowrap;
    vertical-align: middle;
}

.table-wrapper:not(:last-child) {
    margin-bottom: 15px;
}



.common_table .table tbody tr {
    border-right: 1px solid #cce8fb;
    border-left: 1px solid #cce8fb;
}

.common_table .table tbody tr:hover {
    background: #cce8fb;
    cursor: pointer;
}

.common_table .table tr:last-child td {
    border-bottom: 1px solid #cce8fb;
}

button.share {
    font-size: 20px;
    border: 0;
    background: transparent;
    height: 34px;
    width: 34px;
    min-height: 34px;
    min-width: 34px;
    border-radius: 50%;
}

button.share:focus {
    background: #eee;
}

.share_part .dropdown-menu li a {
    display: block;
    color: #000;
    padding: 3px 8px;
    font-size: 14px;
    width: auto;
}

.share_part .dropdown-menu li a:hover {
    background: #eee;
}

.share_part .dropdown-menu li a i {
    min-width: 16px;
    padding-right: 5px;
}

.view_all {
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
    background: #1695ec;
    border: 0;
    text-transform: capitalize;
}

.view_all:hover {
    background: #66b6eb;
    color: #fff;
}

.btn_list {
    display: flex;
}


ul.btn_list li a.dashboard-btn button,
ul.btn_list li a {
    width: 100%;
}

.pagi .pagination {
    justify-content: flex-end;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.page-link:focus {
    box-shadow: inherit;
}

.page-item.active .page-link {
    background-color: #1695ec;
    border-color: #1694ec;
}

.page-link {
    color: #1694ec;
}

.btn_list li {
    width: 50%;
    padding-right: 4px;
}

.btn_list li:last-child {
    margin-right: 0;
}

.btn_list li .dashboard-btn {
    border: 0;
}

.btn_list li button.view_all {
    border: 0;
    padding: 9px 16px;
    font-size: 14px;
    padding: 7px 16px;
}

.abtn .submit_btn {
    font-size: 15px;
    padding: 8px 20px;
    line-height: 1;
    background: #150d40;
}

.abtn a {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.abtn a i {
    font-size: 20px;
    margin: 1px 8px 0 0;
    /* margin-top: 1px; */
}

.form-control,
.form-select {
    color: #6c757d;
    height: 35px;
    font-size: 13px;
    line-height: 1;
    border-color: #0c1136;
    border-radius: 5px;
}

.toggle-off {
    padding: 6px 0 !important;
}

.breadcrumb-item {
    line-height: 1;
}

.brdcmb ol li a {
    color: #000;
    font-weight: 600;
}

.brdcmb .breadcrumb-item.active {
    text-transform: capitalize;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>') no-repeat center center / 20px;
    width: 23px;
    height: 16px;
    right: 3px;
    position: relative;
}

.breadcrumb {
    align-items: center;
    margin-bottom: 26px;
}

span.boxname i {
    margin: 0 10px;
    font-size: 20px;
}

.view_btn {
    background: transparent;
    border: 0;
    color: #1695ec;
}

.compnay_details .common_table table tr td,
.compnay_details .common_table table tr th {
    width: 50%;
    font-size: 15px;
}

.compnay_details .main_form input.form-control {
    padding: 10px 8px;
}

.compnay_details h4 {
    text-align: center;
    font-size: 20px;
    background: #000;
    color: #fff;
    padding: 10px;
}

.error-box {
    border: 1px solid #c40808
}

span.select2-selection.select2-selection--multiple.error-box {
    border: 1px solid #c40808;
}

label.error {
    display: none;
}

.compnay_details .btn-close {
    position: absolute;
    right: -10px;
    background-color: #fff;
    opacity: 1;
    color: #000;
    border-radius: 50%;
    font-size: 14px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    top: -10px;
}

.main_form .textarea.form-control {
    height: 120px;
    font-size: 14px;
    padding: 15px;
}

.project_edit ul#myTab li button {
    color: #000;
    font-size: 14px;
    border: 1px solid #000;
    margin: 0 3px;
    border-radius: 5px;
    padding: 10px 20px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.project_edit ul#myTab li button i {
    font-size: 20px;
    line-height: 0;
    margin-left: 5px;
}

.project_edit ul#myTab li button.active {
    background: #000;
    border-color: #000;
    color: #fff;

}

.modal-header {
    padding: 8px 10px;
    line-height: 1;
}

.page_title {
    font-size: 17px;
    margin-bottom: 10px;
    color: #fff;
    background: #95b4c9;
    padding: 10px;
    border-radius: 6px;
}

.client_details:not(:last-child) {
    margin-bottom: 30px;
}

.addnew {
    display: inline-block;
    margin: 5px 0;
    color: #00a700;
}

.contact_person.common_table .table tr td,
.contact_person.common_table .table thead tr th {
    min-width: 14.28%;

}

.project_edit table tr td {
    vertical-align: middle;
}

.project_edit h4 {
    font-size: 17px;
    margin-top: 10px;
    color: #4c4949;
    line-height: 1;
}

.title {
    text-transform: capitalize;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 33px;
}

span.boxname img {
    filter: brightness(100) invert(1);
    width: 20px;
    margin: 0 14px;
}

.status_box {
    border: 1px solid #0c1136;
    padding: 30px 17px;
    position: relative;
    margin-bottom: 40px;
    transition: .4s all ease-in-out;
}

.actv_cols.status_box {
    padding: 15px;
}

.status_list .accordion-body {
    padding: 24px 15px;
}

.status_box:last-child {
    margin-bottom: 0;
}

.status_box tr td label {
    display: block;
    margin-bottom: 5px;
}

span.boxname {
    position: relative;
    top: -19px;
    font-size: 15px;
    background: #0c1136;
    color: #fff;
    padding: 5px 11px;
    border-radius: 5px;
    line-height: 1;
    transition: .4s all ease-in-out;
    margin-top: -25px;
    display: inline-flex;
    align-items: center;
}

.actv_cols.status_box span.boxname {
    top: 0;
    font-size: 18px;
    margin-top: 0;
}

.status_box .table tr td {
    vertical-align: middle;
    border: 0;
    padding: 9px 6px 5px;
}

.status_box .table tr:last-child td {
    padding-bottom: 0;
    border: 0;
}

.status_box .table tr td:last-child {
    padding-right: 0;

}

.status_box .table tr td:first-child {
    padding-left: 0;
}

.status_box .addmore {
    background: green;
    color: #ffff;
    width: 30px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.comment_btn {
    font-size: 21px;
}

.actn {
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin-top: 23px;
    justify-content: end;
}

.actn li:not(:last-child) {
    margin-right: 13px;

}

.status_box .remove {
    background: red;
    color: #ffff;
    width: 30px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-left: auto;
    font-size: 26px;
}

.addbox {
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid #008000;
    color: #008000;
    position: absolute;
    right: 16px;
    bottom: -15px;
    background: #fff;
}

.removerow {
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid red;
    color: red;
    position: absolute;
    right: 16px;
    bottom: -15px;
    background: #fff;
}

.proposal_main .proposal_main_cont {
    width: 30%;
    padding: 0 5px;
}

.proposal_main.conbt .proposal_main_cont:last-child,
.proposal_main.work .proposal_main_cont:last-child,
.proposal_main_cont:last-child {
    width: 10%;
    align-self: center;
}

.proposal_main {
    margin: 0 -5px 18px;
}

.proposal_main:last-child {
    margin-bottom: 0;
}

.proposal_main.work .proposal_main_cont {
    width: 22.5%;
}

.proposal_main.conbt .proposal_main_cont {
    width: 45%;
}

.comment_modal .form-control {
    height: 110px;
    padding: 11px;
}

.comment_modal ul li {
    margin-bottom: 10px;
}

.comment_modal ul li:last-child {
    margin-bottom: 0;
}

.comment_modal .btn-close {
    position: absolute;
    right: -10px;
    background-color: #fff;
    fill: #fff;
    opacity: 1;
    top: -8px;
    border-radius: 50%;
    font-size: 14px;
    width: 20px;
    height: 20px;
}

.accordion-button:focus {
    box-shadow: inherit;
}

.proposal_main_cont label {
    margin-bottom: 4px;
    font-size: 14px;
}

.collapse_btn {
    width: 20px;
    height: 20px;
    background: #0c1136;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    position: absolute;
    right: 19px;
    top: -10px;
    cursor: pointer;
}

.log_sldr {
    background: #EFF9FE;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_sec {
    position: relative;
}

.login_sec::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 14, 50, 0.6);
}

.right_frm input.form-control.userlog {
    background: #EBF2F6 url(./../images/userlog.svg) no-repeat 10px center / 20px;
}

.right_frm input.form-control.passlog {
    background: #EBF2F6 url(./../images/keylog.svg) no-repeat 10px center / 20px;
}

.right_frm input.form-control.forget_pass {
    background: #EBF2F6 url(./../images/email.svg) no-repeat 10px center / 20px;
}

.right_frm .view_all {
    width: 100%;
    padding: 16px 10px;
    display: block;
    height: 50px;
    transition: .4s all ease-in-out;
}

.right_frm .forgetpass {
    display: block;
    width: 100%;
    text-align: right;
    margin-top: 15px;
    font-weight: 600;
    font-size: 14px;
    color: #1694EB;
}

.right_frm .forgetpass:hover {
    color: #12486D;
}

.inner_login.forget_pass {
    max-width: 534px;
}

.view_all.back_btn {
    color: #fff;
    background: #1a5590;
    font-size: 16px;
    font-weight: 400;
}

.view_all.back_btn:hover {
    background: #1695ec;
    color: #c8ddeb;
}

.usertable {
    margin-top: 20px;
}

.ui-datepicker {
    z-index: 12 !important;
}

.status_box .common_table table tbody tr td .form-control,
.status_box .common_table table tbody tr td .form-select {
    border-radius: 0;
    /* border-color: #0c1136; */
}

.status_box .common_table table tbody tr td {
    padding: 0;
}

.status_box .common_table table tbody tr td .form-select,
.status_box .common_table table tbody tr td .form-control {
    border-right: 0;
    border-bottom: 0;
}

.status_box .common_table .table {
    border-bottom: 1px solid #89909a;
}


.status_box .table tr td:nth-last-child(2) .form-control {
    border-right: 1px solid #8a919b;
    /* background: red; */
}

.status_box .table tr:not(:first-child, :last-child) td .form-select,
.status_box .table tr:not(:first-child, :last-child) td .form-control {
    border-bottom: 0;
}

.status_box .dropdown.share_part {
    border: 1px solid #8a919b;
    border-left: 0;
    border-bottom: 0;
}

.status_box .table tr:not(:first-child, :last-child) .dropdown.share_part {
    border-bottom: 0;
    margin-top: -1px;
}

.form-select:focus {
    box-shadow: inherit;
}

.status_box .form-control,
.status_box .form-select {
    border-color: #8a919b;
}

a.sho_ntm {
    font-size: 12px;
}

.common_table {
    /* overflow-x: auto; */
}

.client_status_details li .title {
    margin-bottom: 0;
}

.client_status_details {
    margin-bottom: 33px;
    background: #eee;
    padding: 12px 17px;
    border-radius: 5px;
}

.client_status_details li span {
    font-weight: 700;
}

.client_status_details li {
    font-size: 15px;
    display: inline-block;
    margin-right: 25px;
}

.client_status_details li:last-child {
    margin-right: 0;
}

.home_table .common_table .table thead tr th:not(:first-child) {
    width: 16.66%;
}

.comment_modal ul li {
    margin-bottom: 10px;
}

.comment_modal ul li textarea {
    height: 100px;
    resize: none;
}
/* 21.3.24 */
.role_submit{
    margin-top: 0 !important;
}
#row1 .cp_namet{
    padding: 10px 13px !important;
}

/* responsive */


/* 15.06.23 */
table.dataTable thead .sorting_asc {
    background-image: none;
}

.table_outer .back_btn_wrap {
    text-align: right;
}

.table_outer .back_btn_wrap .back_btn {
    background: var(--bluecolor);
    font-size: 15px;
    color: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    font-weight: 500;
}

.table_outer .back_btn_wrap .back_btn:hover {
    background: var(--orangecolor);
}

.survey-details {
    text-align: left;
}

.details-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main-menu nav ul li.has-menu ul.sub-menu {
    position: absolute;
    top: 190%;
    left: 9px;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 10px -2px rgba(0 0 0 / 20%);
    transition: all .5s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

/* .main-menu nav ul li.has-menu ul.sub-menu::after {
    position: absolute;
    top: -9px;
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgb(255, 255, 255);
    opacity: 0;
} */

.main-menu nav ul li.has-menu ul.sub-menu li:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.main-menu nav ul li.has-menu ul.sub-menu li:not(:first-child) {
    padding-top: 10px;
}

.main-menu nav ul li.has-menu ul.sub-menu li a {
    text-transform: capitalize;
}

.main-menu nav ul li.has-menu:hover ul.sub-menu {
    top: 100%;
    opacity: 1;
}

.main-menu nav ul li.has-menu:hover ul.sub-menu::after {
    opacity: 1;
}

/* 26-06-2023 */
#user_table_filter input,
#role_table_filter input {
    margin-top: 0;
}

/* 28/06/2023 */
/* .logo.actv .fix_logo {
    display: none;
} */

.expnad-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* .logo.actv .logo2{
   max-width: 185px;
} */
.logo.actv .logo2 {
    max-width: 235px;
    max-height: 63px;
}

img.logo2.sidbi {
    margin-left: 58px !important;
}

/* .expnad-logo img:last-child{
    margin-left: 50px;
} */
/* 28/6/2023 */
.table.dataTable.no-footer tbody tr td:nth-child(-n+1) {
    width: 65px;
}

/* 30.6.23 */
.side_menu_actv .main-menu nav li a {
    font-size: 13px;
}

.close_bdy .fix_pnal.toTop {
    top: 0;
}

.close_bdy .left_pnal {
    padding-top: 92px;
}



.main-menu>nav>ul>li {
    padding: 0 8px;
    font-size: 14px;
    position: relative;
}

.side_menu_actv .logo {
    width: 345px;
}

/* frm-benficiary-information style 3/7/2023 */
.benificiariesuser {
    margin: 25px 0 0 0;
}

.benificiariesuser tr th,
.benificiariesuser tr td {
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
}

.benificiariesuser_server {
    margin: 25px 0 0 0;
}

.benificiariesuser_server tr th,
.benificiariesuser_server tr td {
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
}

/*30-06-2023*/
.main_form.activeform .nav.nav-pills {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px !important;
}

.main_form.activeform .nav.nav-pills .nav-item:not(:last-child) {
    margin-right: 25px;
}

.main_form.activeform .nav.nav-pills .nav-item button {
    border-radius: 10px;
    background: #fff;
    color: #0055a5;
    padding: 12px 20px;
    border: 1px solid #0055a5;
}

.main_form.activeform .nav.nav-pills .nav-item button.nav-link.active {
    background: #0055a5;
    color: #fff;
}

.tab-content .nav.nav-tabs {
    border: none;
    margin-bottom: 0;
}

.tab-content .nav.nav-tabs .nav-link {
    border: 1px solid #f3f3f3;
    border-radius: 10px 10px 0 0;
    color: #5a5a5a;
    transition: all 0.5s ease-in-out;
}

.tab-content .nav.nav-tabs .nav-link.active {
    background: #f3f3f3;
    color: #424242;
}

.tab-content .nav.nav-tabs .nav-link:not(:last-child) {
    margin-right: 15px;
}

.main_form textarea.form-control {
    height: 35px;
}

.tab-content .tab-pane .tab-content .mn_frm_prt {
    background: #f3f3f3;
    padding: 30px;
    border-radius: 0 15px 15px 15px;

}


.side_menu_actv .right_user_info.form_list {
    width: 41%;
}

.mb-25 {
    margin-bottom: 10px !important;
}

.page_head ul {
    margin-bottom: 10px;
}

.applicant_image_cls {}

.applicant_image_cls img {

    margin-top: 0px;
    max-width: 208px;
    -webkit-box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15) !important;
    box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15) !important;
    margin-top: 15px;
    padding: 6px;
    margin-bottom: 15px;

}

a#remove_img {
    width: 109px;
    border-radius: 10px;
    margin-top: 10px;
}

.main_form input#applicant_image {
    height: 38px;
    border-radius: 3px;
}

[src]#output {
    display: block;
}

#output {
    display: none;
}

a#remove_img:hover {
    background: var(--bluecolor);
    border: 1px solid var(--bluecolor);
}

.main_form.activeform label.form-label {
    font-size: 15px;
}

.main_page_wraper .right_pnal .page_head {
    position: sticky;
    top: 91px;
    z-index: 2;
    background: #fff;
    /* padding: 15px 0px; */
    left: 0;
    /* transition: 00.5s ease-in-out; */
}

.main_form.activeform label.form-label {
    font-size: 15px;
    color: #017d94;
}

.main_page_wraper .right_pnal.form-list .close {
    right: 12px;
    top: 8px;
    background: var(--orangecolor);
    border: 0px;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
    font-size: 26px;
    line-height: 27px;
    color: #fff;
}

.main_page_wraper .right_pnal.form-list .close:hover {
    background: var(--bluecolor);
}

.main_form.activeform .check_wraper {
    display: flex;
    flex-direction: column;
}

.main_form.activeform label {
    order: 3;
}

.title_dticky .main_page_wraper .right_pnal .page_head {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px 0px 0px;
    filter: drop-shadow(0px 4px 10px rgba(9, 54, 96, 0.15));

}

.title_dticky .main_page_wraper .right_pnal h3.form_hdng {
    font-size: 24px;
    line-height: 45px;
}

a#del_btn_sever {
    width: 109px;
    border-radius: 10px;
    margin-top: 0px;
}

a#del_btn_sever:hover {
    background: var(--bluecolor);
    border: 1px solid var(--bluecolor);
}

.pagination_action_plan {
    text-align: left;
}

/* 17/7/2023 */
.rdo_btn.addrs_typ {
    margin: 20px 0 15px 0;
}

.addressType2.show {
    margin-top: 20px;
}

.add_ben_use {
    width: 27px;
}

/* 19.7.23 */
.ben_use_new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 24px;
}

.main-menu nav ul li.has-menu:hover ul.sub-menu {
    pointer-events: all;
    opacity: 1;
}

/* 07.26.23 */
.ben_use_new a {
    display: inline-block;
    background: #eb7b1a;
    color: #fff;
    padding: 5px;
}

.ben_use_new a img {
    filter: brightness(100) invert(1);
    width: 18px;
    margin-right: 4px;
}

.ben_use_new a {
    display: inline-flex;
    background: #eb7b1a;
    color: #fff;
    font-size: 14px;
    padding: 6px 5px;
    line-height: 1;
}

.ben_use_new a:hover {
    background: #eda362;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#product_table_wrapper .row:first-child {
    flex-direction: row-reverse;
}

#product_category_table_wrapper .row:first-child {
    flex-direction: row-reverse;
}

/* 24/7/2023 */
.select2-selection.select2-selection--single {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15) !important;
    box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15) !important;
    border-radius: 15px;
    height: 50px;
    border: 0;
    padding: 10px 18px;
    color: #878F98;
    /* font-size: 14px; */
    font-size: 13px;
}

.margn_fix {
    margin-top: 32px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px;
}

.disabled {
    cursor: no-drop;
}

/* 26/07/2023 */
.add_specification,
.delete_specification {
    margin: 16px 0 0 0;
}

.pencil,
.remove {
    width: 20px;
    margin: 0 5px;
}

div#image-preview-container {
    display: inline-flex;
    align-items: center;
}

button.close {
    background-color: #ffffff00;
    border: none;
    font-size: 24px;
}

.back_to_list_btn {
    margin-bottom: 5px;
    display: flex;
    flex-direction: row-reverse;

}

/* 10.08.23 */
.benificiariesuser thead tr th {
    background: #d9e6f0;
    font-size: 13px;
    border-color: #fff;
}

.benificiariesuser tbody tr td {
    font-size: 14px;
    border-color: #fff;
}

.benificiariesuser.table {
    background: #f1f7fc;
}

.benificiariesuser tr td {
    border-color: #fff;
}

.benificiariesuser.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #fff !important;
}

/* 21-8-2023 */
#benificiary_tbl_wrapper .row:first-child {
    flex-direction: column-reverse;
}

#benificiary_tbl_filter {
    margin: 0;
    width: 100%;
}

#benificiary_tbl_filter label {
    margin-bottom: 25px;
}

#benificiary_tbl_filter label input {
    width: 80%;
}

/*26-09-2023*/
.particepent_list_group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    background-color: #d9e6f0;
}

.particepent_list_group h6 {
    font-weight: 600;
}

table#benificiary_tbl1 {
    margin: 0px;
}
/* 20.3.24 */
.table-responsive.common_table nav .flex.justify-between{
    display: none;
}
.table-responsive.common_table nav svg{
    color: #000;
    height: 20px;
}
.table-responsive.common_table nav .relative .relative.inline-flex.items-center{
    padding: 5px 10px !important;
}
#action-head{
    width: 163px;
}

.data_hldr .right_view span i{
    color: #fff;
    font-size: 50px;
}
.data_hldr .right_view span{
    margin-right: 20px;
}
/* responsive */
@media (min-width:1500px) {
    .main_form>div>div>label {
        /* min-height: 42px; */
    }
}

@media (max-width:1500px) {
    .main-menu>nav>ul>li {
        padding: 0 8px;
        font-size: 14px;
        position: relative;
    }

    .main-menu {
        padding-left: 20px;
    }

    .dropdwn figure {
        width: 54px;
        height: 54px;
        min-width: 54px;
        min-height: 54px;
    }

    .side_menu_actv .logo {
        width: 425px;
    }

    .right_vhat {
        padding: 16px;
    }

    .right_vhat ul li a img {
        width: 17px;
    }

    .close {
        right: 12px;
        top: 17px;
    }

    .side_menu_actv .left_pnal,
    .acv .left_pnal {
        width: 350px;
    }

    .side_menu_actv .right_pnal,
    .acv .right_pnal {
        width: calc(100% - 360px);
    }

    .main_form>div>div>label {
        /* min-height: 42px; */
    }
}
@media (max-width:1440px){
    .rdo_btn li {
        margin-right: 20px;
        display: inline-block;
        margin-bottom: 10px;
        width: 131px;
    }
    .client_status_details li:last-child {
    margin-top: 10px !important;
    }
}
@media (max-width:1300px) {
    .side_menu_actv .logo {
        width: 386px;
    }

    .main-menu>nav>ul>li {
        padding: 0 6px;
    }


}

@media (max-width:1199px) {
    .main-menu>nav {
        display: none;
    }

    .mobilemenuBtn {
        display: block;
    }

    .side_menu_actv .logo {
        width: 342px;
    }

    .header-bottom-hldr {
        min-height: auto;
    }

    .fix_logo {
        width: 40px;
    }

    .logo .logo2 {
        width: 190px;
    }

    .right_user_info>ul>li>a {
        font-size: 12px;
    }

    .ball img {
        width: 27px;
    }


    .dropdwn figure {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        margin-right: 7px;
    }

    .main-menu {
        padding-left: 10px;
    }

    .progress {
        /* width: 278px; */
    }

    .right_vhat {
        width: 100%;
        margin-top: 30px;
    }

    .left_frm {
        width: 100%;
        padding-right: 0;
    }

    /* 12.05.2023 */
    .report_search input[type="search"] {
        width: 293px;
    }

    /* dashboard style end 23.5.23 pabitra */

    /* 31.05.23 */

    .form_new_table a.import_btn_excel {
        position: absolute;
        width: 150px;
        top: 58px;
        right: auto;
        left: 0;
    }

    .form_new_table a.export_btn_excel {
        position: absolute;
        width: 150px;
        top: 58px;
        right: 160px;
    }

    .form_list_srch_fltr {
        left: 0;
        position: relative;
        top: 0;
    }

    /*notification*/
    .notification_panel a.float-right.mark-as-read {
        width: 100%;
        margin-top: 10px;
    }

    .user-select-none.svg-container svg {
        width: 100% !important;
    }

    .user-select-none.svg-container {
        width: 100% !important;
    }

    .form_new_table.app_listing a {
        position: relative;
        top: 0;
        right: 0;
        width: 115px;
    }

    .logo.actv .logo2 {
        max-width: 190px;
        max-height: 60px;
    }

    img.logo2.sidbi {
        margin-left: 42px !important;
        max-width: 80px !important;
    }

    .table_outer ul li {
        width: 100%;
    }

    /* 30-6-23 */
    ul.pagination li.paginate_button {
        width: auto !important;
    }

    .main_form.activeform .nav.nav-pills {
        gap: 15px;
    }

    .main_form.activeform .nav.nav-pills .nav-item:not(:last-child) {
        margin: 0;
    }

    .main_form.activeform .nav.nav-pills .nav-item {
        width: 30%;
    }

    .main_form.activeform .nav.nav-pills .nav-item button {
        width: 100%;
    }

    .sticky .site-header {
        transform: inherit;
    }

    .left_pnal,
    .sticky .left_pnal {
        padding-top: 63px;
    }

    .right_pnal {
        padding: 20px;
    }

    .data_dtl h5 {
        font-size: 23px;
    }

    .data_dtl figure img {
        max-width: 40px;
    }

    .data_dtl figure {
        width: 50px;
    }

    .data_dtl h6 {
        font-size: 12px;
    }

    .data_dts_box {
        width: calc(100% - 50px);
    }
}

@media (max-width:1023px) {

    /* dashboard style start 23.5.23 pabitra */
    /* .data_hldr>div:not(:last-child),
    .chart_hldr .row>div:not(:last-child) {
        margin-bottom: 20px;
    } */

    .chart_hldr {
        margin-top: 25px;
    }

    /* dashboard style end 23.5.23 pabitra */

    /* 31.05.23 */
    .form_new_table {
        margin-top: 10px;

    }

    .form_new_table a.import_btn_excel {
        position: relative;
        top: 0;
    }

    .form_new_table a.export_btn_excel {
        position: relative;
        top: 0;
    }

    .form_new_table a.export_btn_excel {
        right: 0px;
    }

    .dataTables_wrapper .dataTables_length {
        margin-top: 0;
    }

    .form_list_srch_fltr {
        width: 100%;
    }

    .user-select-none.svg-container svg {
        width: 100% !important;
    }

    .user-select-none.svg-container {
        width: 100% !important;
    }

    .form_new_table.app_listing a {
        width: 90px;
        font-size: 11px;
        padding: 4px 5px !important;
    }

    .form_new_table.app_listing {
        top: 5px;
    }

    .main_form.activeform .nav.nav-pills .nav-item {
        width: 100%;
    }

    .side_menu_actv .logo {
        width: 303px;
    }

    .add_specification,
    .delete_specification {
        margin: 0;
    }

}

@media(max-width:991px) {
    .frm_list ul li a {
        font-size: 14px;
        padding: 18px 12px;
    }

    .frm_list h5 {
        padding: 18px 12px;
    }

    .left_pnal {
        width: 348px;
    }

    .rdo_btn li span {
        font-size: 13px;
    }

    .rdo_btn li {
        margin-right: 12px;
    }

    .frm_list ul li a::before {
        width: calc(100% - 27px);
    }

    .normal_btn,
    .trans_btn {
        padding: 14px 24px;
    }

    .btn_row li {
        margin-right: 7px;
    }

    .site-main.login_page {
        height: auto;
    }

    .acv .left_pnal {
        width: 348px;
        z-index: 4;
    }

    .acv .right_pnal {
        width: calc(100% - 348px);
    }

    h3.text-center.form_hdng {
        font-size: 23px;
        line-height: 30px;
        margin-bottom: 20px;
        font-weight: 600;
        color: #2e1d1d;
    }

    .side_menu_actv .right_user_info.form_list {
        width: 51%;
    }

    .side_menu_actv .right_user_info.form_list h6.me-3.text-dark {
        font-size: 13px;
    }

    .left_pnal {
        width: 50px;
    }

    .active .left_pnal {
        width: 178px;
    }

    .right_pnal {
        width: calc(100% - 50px);
    }

    .active .right_pnal {
        width: calc(100% - 178px);
    }

    .active .fix_pnal ul li a span {
        font-size: 12px;
    }

    .fix_pnal ul li a span {
        font-size: 0;
    }

    .logo h1 {
        font-size: 0;
    }

    .active .logo h1 {
        font-size: 0;
        font-size: 12px;
    }

    .logo {
        width: 40px;

    }

    .active .logo {
        width: 220px;
        border-right: 1px solid #ccc;
    }

    .fix_pnal ul li a img {
        margin-right: 5px;
    }

    .project_edit ul#myTab li button {
        margin-bottom: 5px;
        padding: 10px 10px;
    }

    .page_title {
        font-size: 14px;
    }

    .proposal_main .proposal_main_cont {
        width: 28%;
    }

    .proposal_main.conbt .proposal_main_cont:last-child,
    .proposal_main.work .proposal_main_cont:last-child,
    .proposal_main_cont:last-child {
        width: 16%;
    }

    .proposal_main.conbt .proposal_main_cont {
        width: 42%;
    }

    .proposal_main.work .proposal_main_cont {
        width: 21%;
    }

    .common_table {
        overflow-x: scroll !important;
    }
}

@media (max-width:767px) {
    .role_submit {
        margin-top: 1rem !important;
    }
    .logo .logo2 {
        display: none;
    }

    .logo {
        width: 66px;
    }

    .frm_list {
        transform: translateX(-230px);
        opacity: 0;
        position: absolute;
        left: 77px;
        top: 115px;
        height: 100%;
        width: 250px;
        box-shadow: 0px 0px 15px rgba(9, 54, 96, 0.15);
    }

    .side_menu_actv .frm_list,
    .acv .frm_list {
        transform: translateX(0);
        opacity: 1;
    }

    .left_pnal {
        width: 50px;
        position: fixed;
        left: 0;
        top: 0;
    }



    .fix_pnal ul li a {
        font-size: 9px;
    }


    .hide_icon {
        transform: rotateY(180deg);
    }

    .normal_btn,
    .trans_btn {
        padding: 11px 22px;
        font-size: 15px;
        margin-top: 20px;
    }

    .btn_row {
        margin-top: 0;
    }

    /* login css  */
    .inner_login .title h2 {
        margin-bottom: 8px;
        font-size: 30px;
    }

    .title h3 {
        font-size: 19px;
    }

    .active .right_pnal,
    .right_pnal {
        width: calc(100% - 50px);
        padding: 0 13px 13px;
        z-index: 1;
    }

    /* 12.05.2023 */
    .report_search input[type="search"] {
        width: 148px;
        padding: 2px 5px;
        margin-bottom: 5px;
    }

    .header-bottom-hldr {
        position: relative;
    }

    .report_search {
        position: absolute;
        left: 93px;
        top: 5px;
        flex-direction: column;
    }

    .search_btn input[type="submit"] {
        font-size: 12px;
        padding: 4px;
    }

    .search_btn {
        margin: 0 !important;
    }

    h3.text-center.form_hdng {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 12px;
        font-weight: 600;
        color: #2e1d1d;
    }

    /*temporary dashboard img*/
    .desk_img {
        display: none;
    }

    .mb_img {
        display: block;
    }

    .message_block h3 {
        font-size: 20px;
        line-height: 31px;
        color: #156415;
        margin-bottom: 15px;
    }

    .message_block h5 {
        margin-bottom: 21px;
        font-size: 16px;
        line-height: 20px;
    }

    /* daterange picker start */
    .date_rnge_hldr {
        width: 100%;
    }

    .date_range input {
        width: 100%;
    }

    .date_range label {
        width: 100%;
        text-align: left;
    }

    /* daterange picker end */
    .dataTables_wrapper .dataTables_filter {
        float: left;
        margin-bottom: 6px;
    }

    .right_user_info {
        margin-left: auto;
        margin-right: 0px;
    }

    .date_range input[type="submit"] {
        margin-left: 0;
        border-radius: 10px;
        margin-top: 15px;
    }

    .date_range i {
        top: 12px;
    }

    .excel_frm_upload2 .btn span,
    .excel_frm_upload2 input[type="file"] {
        font-size: 11px;
    }

    form#bulkFormone .excel_form_upload p,
    form#bulkFormone .file-field.excel_frm_upload2 p {
        font-size: 16px;
    }

    .round_svg {
        overflow-x: auto !important;
    }

    .round_svg .user-select-none.svg-container svg {
        width: 500px !important;
    }

    .form_new_table.app_listing {
        position: static;
    }

    .form_list_srch_fltr.app_listing {
        width: 100%;
    }

    .table_outer .dataTables_length,
    .table_outer #createdate {
        width: 100%;
    }

    .table.dataTable.no-footer tbody tr td,
    .table.dataTable.no-footer thead tr th {
        padding: 0 3px;
    }

    .table_outer tbody tr td:last-child a {
        font-size: 9px;
    }

    .table_outer tbody tr td:last-child a i {
        margin-right: 3px !important;
    }

    .tab-content .tab-pane .tab-content .mn_frm_prt {
        padding: 15px;
    }

    /*4.7.23*/
    a.logo_two {
        width: 81px;
    }

    .side_menu_actv .right_user_info.form_list {
        width: auto;
    }

    .ball span {
        width: 13px;
        height: 13px;
        min-width: 13px;
        top: -3px;
        min-height: 13px;
    }

    .ball img {
        width: 22px;
    }


    h6.me-3.text-dark {
        font-size: 13px;
        margin-right: 5px !important;
    }

    a.logo_two {
        width: 58px;
    }

    .right_user_info.form_list {
        align-items: center;
    }

    .right_user_info.form_list .dropdwn span i {
        font-size: 25px;
        margin-top: 7px;
    }

    .close_bdy .left_pnal {
        padding-top: 75px;
    }

    .fix_pnal {
        height: 100vh;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .main_page_wraper .right_pnal h3.form_hdng {
        text-align: center;
    }

    .page_head ul {
        text-align: center;
    }

    .main_page_wraper .right_pnal .page_head {
        position: relative;
        top: 0;
        height: auto;
    }

    .main_page_wraper .right_pnal h3.form_hdng,
    .page_head ul {
        margin-bottom: 15px !important;
    }

    .title_dticky .main_page_wraper .right_pnal .page_head {
        border-bottom: 0px;
        padding: 8px 0px;
        filter: 0px;
    }

    #benificiary_program ul li:not(:last-child) a {
        margin-right: -6px;
    }

    /* .benificiariesuser.table thead tr th:nth-child(2) {
        min-width: 150px;
    } */
    .benificiariesuser.table thead tr th:last-child {
        min-width: 150px;
    }

    .common_table .table thead tr th {
        min-width: 130px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }

    .proposal_main .proposal_main_cont {
        width: 33.33%;
        margin-bottom: 10px;
    }

    .proposal_main.conbt .proposal_main_cont:last-child,
    .proposal_main.work .proposal_main_cont:last-child,
    .proposal_main_cont:last-child {
        width: 100%;
    }

    .actn {
        margin-top: 0;
    }

    .proposal_main.conbt .proposal_main_cont {
        width: 50%;
    }

    .proposal_main.work .proposal_main_cont {
        width: 50%;
    }

    .proposal_main {
        margin-bottom: 0;
    }

    .right_frm {
        padding: 17px;
    }

    .client_status_details li {
        margin-right: 5px;
        font-size: 13px;
    }

    .client_status_details {
        padding: 11px 16px;
    }

}

@media(max-width:479px) {
    .right_user_info>ul>li>a {
        font-size: 0;
    }

    .progress {
        /* width: 118px; */
    }

    .rdo_btn li .radioBtn span::before {
        width: 18px;
        height: 18px;
    }

    .radioBtn input:checked~span::after {
        left: 4px;
        top: 11px;
    }

    .radioBtn {
        padding-left: 25px;
    }

    .rdo_btn {
        /* display: flex; */
    }

    .radioBtn span::before {
        top: 3px;
    }

    .btn_row {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .form_list_srch_fltr select {
        margin-right: 0px !important;
        margin-bottom: 5px;
    }

    .form_list_srch_fltr {
        flex-wrap: wrap;
    }

    .user-select-none.svg-container {

        width: 400px !important
    }

    .survey-details p {
        font-size: 15px;
    }

    .details-wrap {
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .form_list_srch_fltr.app_listing>select {
        width: 100%;
    }

    /*4.7.23*/
    .ball span {
        width: 13px;
        height: 13px;
        min-width: 13px;
        top: -3px;
        min-height: 13px;
    }

    .ball img {
        width: 22px;
    }

    h6.me-3.text-dark {
        font-size: 13px;
        margin-right: 5px !important;
    }

    a.logo_two {
        width: 58px;
    }

    .right_user_info.form_list {
        align-items: center;
    }

    .main_page_wraper .right_pnal h3.form_hdng {
        font-size: 18px;
        line-height: 1.2;
    }

    .site-main {
        padding-top: 78px;
    }

    .active .logo h1 {
        font-size: 8px;
    }

    .active .logo {
        width: 160px;
    }

    .proposal_main .proposal_main_cont {
        width: 50%;
    }

    .proposal_main .proposal_main_cont:nth-child(3) {
        width: 100%;
    }

    .proposal_main.work .proposal_main_cont {
        width: 50%;
    }

    .proposal_main .proposal_main_cont.actn_bt {
        width: 100%;
    }

}

@media(max-width:386px) {
    .main_form>div>div>label {
        /* min-height: 42px; */
        word-wrap: break-word;
    }

    /* 12.05.2023 */
    .report_search input[type="search"] {
        width: 110px;
    }

    .message_block h5 {
        margin-bottom: 21px;
        font-size: 12px;
        line-height: 20px;
    }
}