@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #F7F8FA;
}

a {
  color: #007AFF;
  transition: 0.5s;
  outline-style: none;
  text-decoration: none;
}

a:hover,
a:active,
a:visited,
a:focus {
  outline: none;
  text-decoration: none;
  color: #007AFF;
}

:focus {
  outline-style: none !important;
  box-shadow: none !important;
  opacity: 1;
}

p {
  padding: 0;
  margin: 0;
  color: #999999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.form-control:focus {
  border-color: #ced4da !important;
  box-shadow: none !important;
}

section {
  display: block;
  float: left;
  width: 100%;
}

.login_body {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  min-height: 100vh;
  background: url(../images/login_bg.jpg) center center no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.login_main {
  display: block;
  float: left;
  width: 100%;
  margin: 30px 0;
}

.login_body_inner {
  display: flex;
  float: left;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  flex-direction: row-reverse;
  margin: 15px 0;
}

.login_body_inner .img_area {
  display: block;
  float: left;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.login_body_inner .img_area img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.login_body_inner .right_area {
  display: block;
  float: right;
  width: 50%;
  padding: 40px;
}

.login_form {
  display: block;
  float: left;
  width: 100%;
}

.login_form .form-label {
  font-weight: 600;
}

.login_form .form-control {
  background: #EDF1F6;
  border: none;
  height: 50px;
}

.submit_but {
  display: block;
  float: left;
  width: 100%;
  background: #007AFF;
  color: #fff;
  font-size: 20px;
  height: 54px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.submit_but:hover {
  background: #000;
  color: #fff !important;
}

.password_lost_section {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.password_lost_section a {
  color: #797979;
  text-decoration: underline;
  font-weight: 700;
}

.password_lost_section a:hover {
  text-decoration: none;
}

.login_heading {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.login_heading h2 {
  font-size: 25px;
}

.logo_sletion {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.logo_sletion img {
  width: 100%;
  max-width: 220px;
}

.otp_section {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 40px 0;
}

.otp_section input {
  width: 22%;
  border: none;
  border-bottom: 2px solid #BABABA;
  text-align: center;
}

.otp_section input:focus {
  outline-style: none;
  text-align: center;
}

.dont_receive p {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

.dont_receive p a:hover {
  color: #000;
}

.left_pannel {
  display: block;
  float: left;
  width: 240px;
  background: #fff;
  min-height: 100vh;
  transition: all .3s;
  transition-timing-function: ease-out;
  position: fixed;
}

.right_pannel {
  display: block;
  float: right;
  width: calc(100% - 240px);
  min-height: 100vh;
  position: relative;
  transition: all .3s;
  transition-timing-function: ease-out;
}

.right_pannel.active2 {
  width: 100%;
}

.left_pannel .inside {
  display: block;
  float: left;
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  left: 0;
  top: 0;
}

.left_pannel .inside::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px #485589;
  background-color: #485589;
}

.left_pannel .inside::-webkit-scrollbar {
  width: 5px;
  background-color: #007AFF;
}

.left_pannel .inside::-webkit-scrollbar-thumb {
  background-color: #007AFF;
}

.left_pannel .logo {
  display: block;
  float: left;
  width: 100%;
  padding: 20px;
}

.left_pannel .logo img {
  width: 100%;
  max-width: 124px;
}

.left_pannel .menu_area {
  display: block;
  float: left;
  width: 100%;
  padding: 10px 0;
}

.left_pannel .nav-link {
  padding: 12px 15px;
  display: inline-block;
  width: 100%;
  color: #000;
  border-radius: 0;
  margin: 5px 0;
  cursor: pointer;
}

.left_pannel .nav-link:hover {
  background: #007AFF;
  color: #fff;
}

.left_pannel .nav-link:hover img {
  filter: brightness(5);
}

.left_pannel .nav-link i {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  object-fit: contain;
  object-position: left;
}

.left_pannel .active {
  background: #007AFF;
  color: #fff;
}

.left_pannel .active img {
  filter: brightness(5);
}

.left_pannel .nav-link img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  object-position: center;
  margin-right: 8px;
}

.dropdown-menu img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  object-position: center;
  margin-right: 8px;
}

.left_pannel.active {
  margin-left: -240px;
}

.dropdown-menu {
  width: 100%;
  background: #007AFF;
  border-radius: 0;
  color: #fff;
}

.dropdown-item {
  color: #fff !important;
  font-size: 14px;
  padding: 10px 15px;
}

.dropdown-item img {
  filter: brightness(5);
}

.dropdown-item i {
  margin-right: 10px;
}

.dropdown-item:hover {
  background: #004fa2;
  color: #fff;
}

.right_top_header {
  display: flex;
  float: left;
  width: 100%;
  height: 54px;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  padding: 0 15px;
  z-index: 3;
}

.right_top_header .menu {
  display: block;
  float: left;
  cursor: pointer;
}

.right_top_header .header_right {
  display: flex;
  width: auto;
  align-items: center;
}

.top_header_profile {
  display: flex;
  vertical-align: top;
  width: auto;
  position: relative;
  align-items: center;
  cursor: pointer;
}

.top_header_profile p {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.top_header_profile .drop {
  display: none;
  float: left;
  width: 190px;
  position: absolute;
  right: 0;
  top: 34px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.top_header_profile:hover .drop {
  display: block;
}

.top_header_profile .drop ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.top_header_profile .drop ul i {
  margin-right: 5px;
}

.top_header_profile .drop ul li a {
  color: #000;
  padding: 5px;
  display: inline-block;
  vertical-align: top;
}

.top_header_profile .drop ul li a:hover {
  color: #007AFF;
}

.notification_section {
  display: flex;
  width: 36px;
  height: 36px;
  position: relative;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background: #8104BB;
  margin-right: 10px;
}

.notification_section img {
  height: 15px;
}

.notification_section span {
  position: absolute;
  top: -4px;
  right: -5px;
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #F24656;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.right_pannel .body {
  display: block;
  float: left;
  width: 100%;
  padding: 20px 20px 20px 20px;
  position: relative;
}

.profile_img2 {
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  overflow: hidden;
  background: #8104BB;
  text-align: center;
  line-height: 34px;
  color: #fff;
  margin-right: 5px;
  border: 2px solid #007AFF;
}

.profile_img2 p {
  margin: 0;
  font-size: 12px;
  width: 100%;
  height: 100%;
  color: #fff;
}

.profile_img2 img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page_main_heading {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.page_main_heading h2 {
  font-size: 18px;
  font-weight: 500;
}

.table_area {
  display: block;
  float: left;
  width: 100%;
}

.table_area .table_header {
  display: flex;
  flex-wrap: nowrap;
  float: left;
  width: 100%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  background: #007AFF;
  border-radius: 4px;
}

.table_area .table_header>div {
  padding: 0 5px;
}

.table_area .table_body {
  display: flex;
  flex-wrap: nowrap;
  float: left;
  width: 100%;
  padding: 10px 10px;
  color: #000;
  font-size: 12px;
  align-items: center;
  transition: all .5s;
  transition-timing-function: ease-out;
  text-align: center;
  min-height: 56px;
  background: #fff;
  margin-top: 10px;
  border-radius: 4px;
}

.table_area .table_body p {
  color: #000;
}

.table_area .table_body>div {
  padding: 0 5px;
}

.table_area .table_body .mobile_heading {
  display: none;
  color: #809FB8;
  margin-right: 10px;
}

.enable_disable {
  display: inline-block;
}

.form-check {
  min-height: auto;
  margin-bottom: 0;
}

.enable_disable .form-check-input {
  background-color: #E3000B;
  background-image: url(../images/switch_white_round.svg) !important;
}

.user_block .form-check-input:checked {
  background-color: #E3000B !important;
  border-color: #E3000B !important;
}

.user_block {
  display: inline-block;
}

.user_block .form-check-input {
  background-color: #06ac00;
  background-image: url(../images/switch_white_round.svg) !important;
}


.form-switch .form-check-input {
  width: 30px;
}

.number {
  display: inline-block;
  vertical-align: top;
  background: rgba(33, 126, 253, 0.30);
  color: #217EFD !important;
  padding: 5px 8px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 10px;
}

.del {
  color: #E3000B;
  background: #FFEBEC;
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.del:hover {
  color: #FFEBEC;
  background: #E3000B;
}

.view {
  color: #FFB536;
  background: rgba(255, 181, 54, 0.30);
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.view:hover {
  color: #FFEBEC;
  background: #FFB536;
}

.edit {
  color: rgba(70, 154, 73, 1);
  background: #deffdf;
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.edit:hover {
  color: #FFEBEC;
  background: rgba(70, 154, 73, 1);
}

.but_style1 {
  display: inline-block;
  vertical-align: top;
  padding: 8px 30px;
  border-radius: 6px;
  background: #007AFF;
  border: 1px solid #007AFF;
  color: #fff !important;
  font-size: 13px !important;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.but_style1:hover {
  background: #333333;
}

.but_style1_line {
  display: inline-block;
  vertical-align: top;
  padding: 8px 30px;
  background: none;
  border-radius: 6px;
  border: 1px solid #007AFF;
  color: #007AFF !important;
  font-size: 13px !important;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.but_style1_line:hover {
  background: #333333;
  color: #fff !important;
}


.card {
  display: block;
  float: left;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}

.view_expert_profile_and_but {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  justify-content: space-between;
}

.view_expert_profile_and_but .profile_area {
  display: flex;
  align-items: center;
}

.view_expert_profile_and_but .profile_area .profile_img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 2px solid #007AFF;
  background: #007AFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  overflow: hidden;
}

.view_expert_profile_and_but .profile_area .profile_img img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.view_expert_profile_and_but .profile_area p {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-left: 12px;
}

.view_expert_profile_and_but .but_area {
  width: auto;
  margin: 0 0 15px 0;
}

.blue_tick {
  color: #007AFF;
  margin-left: 5px;
}

.but_area {
  margin: 10px 0;
}

.green_but {
  display: inline-block;
  vertical-align: top;
  padding: 8px 30px;
  border-radius: 6px;
  background: #007AFF;
  border: 1px solid #007AFF;
  color: #fff !important;
  font-size: 13px;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.green_but:hover {
  background: #333333;
}

.green_but2 {
  display: inline-block;
  vertical-align: top;
  padding: 8px 30px;
  border-radius: 6px;
  background: #049F0A;
  border: 1px solid #049F0A;
  color: #fff !important;
  font-size: 13px;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.green_but2:hover {
  background: #333333;
}

.red_but2 {
  display: inline-block;
  vertical-align: top;
  padding: 8px 30px;
  border-radius: 6px;
  background: #F24656;
  border: 1px solid #F24656;
  color: #fff !important;
  font-size: 13px;
  transition: all .5s;
  transition-timing-function: ease-out;
}

.red_but2:hover {
  background: #333333;
}

.view_expert_details_area {
  display: block;
  float: left;
  width: 100%;
  margin-top: 20px;
}

.view_expert_details_area p {
  margin-top: 5px;
  color: #000;
}

.view_expert_bottom_boxes {
  display: block;
  float: left;
  width: 100%;
}

.view_expert_bottom_box1 {
  display: flex;
  float: left;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  margin-top: 20px;
  align-items: center;
}

.view_expert_bottom_box1 .icon_area {
  float: left;
  flex: 58px 0 0;
  height: 58px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.view_expert_bottom_box1 .text_area {
  float: left;
  width: 100%;
  padding-left: 15px;
}

.view_expert_bottom_box1 .text_area p {
  color: #809FB8;
  font-size: 16px;
}

.view_expert_bottom_box1 .text_area h5 {
  color: #000;
  font-size: 28px;
}

.view_expert_color1 {
  background: rgba(58, 54, 219, 0.20);
  color: #3A36DB;
}

.view_expert_color2 {
  background: rgba(254, 107, 186, 0.20);
  color: #EF0482;
}

.view_expert_color3 {
  background: rgba(249, 185, 89, 0.20);
  color: #F9B959;
}

.modal_top_text {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  text-align: center;
}

.modal_but_area {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.user_details_body {
  display: block;
  float: left;
  width: 100%;
  margin-top: 20px;
}

.user_details_main_section {
  display: block;
  float: left;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.11);
  border-radius: 20px;
  padding: 0 15px 20px 15px;
  margin: 70px 0;
  text-align: center;
}

.user_details_main_section img {
  display: inline-block;
  vertical-align: top;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
  border: 5px solid #C0DAFF;
  margin-top: -60px;
  margin-bottom: 12px;
  background: #fff;
}

.user_details_main_section p {
  text-align: left;
  padding: 12px 12px;
  position: relative;
  color: #000;
}

.user_details_main_section p:nth-child(odd) {
  background: rgba(171, 198, 220, 0.2);
}

.my_earning_graph_section {
  display: block;
  float: left;
  width: 100%;
}

.card_main_heading {
  display: block;
  float: left;
  width: 100%;
}

.card_main_heading h2 {
  font-size: 18px;
}

.card_graph_section {
  display: block;
  float: left;
  width: 100%;
  margin-top: 20px;
}

.card_graph_section img {
  width: 100%;
}

.payout_search_area {
  display: flex;
  float: left;
  width: 100%;
  align-items: center;
  margin-top: 10px;
}

.payout_search_area .payout_start_date {
  width: 100%;
  margin: 5px 0;
}

.payout_search_area .payout_end_date {
  width: 100%;
  margin: 5px 10px;
}

.payout_search_area .payout_but {
  width: 20%;
  margin: 5px 0;
}

.payout_search_area input {
  height: 50px;
}

.payout_appointment_section {
  display: block;
  float: left;
  width: 100%;
  margin-top: 25px;
}

.payout_appointment_boxes {
  display: block;
  float: left;
  width: 100%;
}

.platform_fee_input_section {
  display: flex;
  float: left;
  width: 100%;
  margin-top: 15px;
  align-items: center;
}

.platform_fee_input_section p {
  color: #000;
  margin-left: 10px;
}

.faq_box1 {
  display: block;
  float: left;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  margin-top: 20px;
}

.faq_remove_section {
  display: block;
  float: left;
  width: 100%;
  text-align: right;
  margin-top: 10px;
}

.faq_remove_section a {
  display: inline-block;
  font-weight: bold;
  color: #F24656;
}

.faq_remove_section a:hover {
  text-decoration: underline;
}

.faq_add_box {
  display: block;
  float: left;
  width: 100%;
  margin-top: 15px;
}

.faq_add_box a {
  color: #28C102;
  font-weight: bold;
  font-size: 18px;
}

.faq_add_box a:hover {
  text-decoration: underline;
}

.top_profile {
  display: flex;
  float: left;
  width: 100%;
  align-items: center;
}

.top_profile img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: 2px solid #007AFF;
  object-fit: cover;
  object-position: center;
  flex: 120px 0 0;
}

.top_profile .upload_section {
  display: block;
  float: left;
  width: 100%;
  margin-left: 15px;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-btn {
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  background: #007AFF;
  border: none;
  cursor: pointer;
}

.upload-btn i {
  margin-right: 5px;
  cursor: pointer;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.top_profile .upload_section p {
  color: #8E8E8E;
}

.profile_mid {
  display: block;
  float: left;
  width: 100%;
}

.change_password a {
  font-weight: bold;
  text-decoration: underline;
}

.change_password a:hover {
  text-decoration: none;
}

.coming_soon {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  margin: 40px 0;
}

.coming_soon img {
  width: 100%;
  max-width: 500px;
}

.but_area {
  display: block;
  float: left;
  width: 100%;
  margin-top: 15px;
}

.editor_section {
  display: block;
  float: left;
  width: 100%;
}

.page_card_heading {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.page_card_heading h2 {
  font-size: 18px;
  font-weight: 500;
}

.upload_box {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 300px;
  height: 200px;
  position: relative;
  margin: 30px 0 0px 0;
}

.upload_box .img_area {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #f3f3f3;
  padding: 15px;
}

.upload_box .img_area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


.upload_box2 {
  display: inline-block;
  vertical-align: top;
  width: 100%;

  height: 200px;
  position: relative;
  margin: 30px 0 0px 0;
}

.upload_box2 .img_area {
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #f3f3f3;
  padding: 15px;
}

.upload_box2 .img_area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


.upload-btn-wrapper2 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
}

.upload-btn2 {
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 15px;
  background: #007AFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.upload-btn2 i {
  cursor: pointer;
}

.upload-btn-wrapper2 input[type=file] {
  font-size: 30px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.review_rating_boxes {
  display: block;
  float: left;
  width: 100%;
}

.review_rating_box1 {
  display: block;
  float: left;
  width: 100%;
  margin-top: 30px;
}

.about_team_boxes {
  display: block;
  float: left;
  width: 100%;
}

.about_team_box1 {
  display: block;
  float: left;
  width: 100%;
}

.about_team_box1 .upload_box {
  width: 100%;
}

.about_team_box1 a {
  color: #E3000B;
  font-weight: 500;
}

.home_testimonial_box1 {
  display: flex;
  float: left;
  width: 100%;
  margin-top: 30px;

}

.testimonial_upload_box {
  display: block;
  float: left;
  width: 190px;
  height: 230px;
  flex: 190px 0 0;
  border-radius: 12px;
  position: relative;
}

.home_testimonial_box1 .img_area {
  display: block;
  float: left;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.home_testimonial_box1 .img_area img {
  float: left;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.home_testimonial_box1 .right_area {
  display: block;
  float: left;
  width: 100%;
  padding-left: 20px;
}

.home_testimonial_box1 .right_area a {
  color: #F24656;
}

.footer_social_box1 {
  display: flex;
  width: 100%;
  margin-top: 15px;
  align-items: center;
}

.footer_social_box1 img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.iti__country-list {
  width: 260px;
  overflow-x: hidden;
}

.iti__country {
  flex-wrap: wrap;
  width: 100%;
}

.nodata {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 22px;
}

.nodata img {
  width: 150px;
  margin-bottom: 20px;
}

.notification_box1 {
  display: block;
  float: left;
  width: 100%;
  border: 1px solid #E4E4E4;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  background: #ffffff;
}

.notification_box1 .top_date {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  justify-content: flex-end;
}

.notification_box1 .top_date p {
  color: #007AFF;
  font-weight: 600;
  margin-left: 20px;
  font-size: 15px;
}

.notification_box1 .mid_area {
  display: flex;
  float: left;
  width: 100%;
}

.notification_box1 .mid_area .img {
  display: block;
  float: left;
  height: 54px;
  flex: 54px 0 0;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #007AFF;
}

.notification_box1 .mid_area .img img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.notification_box1 .mid_area .text {
  display: block;
  float: left;
  width: 100%;
  padding-left: 12px;
}

.notification_box1 .mid_area .text h2 {
  font-size: 17px;
  color: #000;
  margin-top: 6px;
}

.bank_success {
  display: inline-block;
  vertical-align: top;
  padding: 4px 12px;
  background: linear-gradient(90.02deg, #00A600 -0.5%, #05BA05 99.99%);
  color: #fff;
  border-radius: 12px;
  font-size: 10px;
}

.bank_warning {
  display: inline-block;
  vertical-align: top;
  padding: 4px 12px;
  background: linear-gradient(90.02deg, rgb(166, 152, 0) -0.5%, #bab105 99.99%);
  color: #fff;
  border-radius: 12px;
  font-size: 10px;
}

.bankNotSucess {
  display: inline-block;
  vertical-align: top;
  padding: 4px 12px;
  background: linear-gradient(90.02deg, #a61900 -0.5%, #a61900 99.99%);
  color: #fff;
  border-radius: 12px;
  font-size: 10px;
}

.btn-close {
  background: url(../images/cross.svg) center center no-repeat;
  background-size: 100% 100%;
  opacity: 1;
}

.modal-header {
  border-bottom: 1px solid #E9EEF1;
  padding: 10px 17px;
}

.modal-footer {

  justify-content: flex-start;
  padding: 0.75rem 0;
}

.loaderDiff {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, .8);
  /* Semi-transparent white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Ensure the loaderDiff appears above other elements */
}

.loaderDiff img {
  width: 140px;
  /* Adjust the width of the loader image as needed */
}

.upload-cv-area {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  /* Adjusted margin */
}

.uploadpdf-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.uploadpdfiop-btn {
  border: 2px solid rgb(168, 166, 166);
  color: rgb(74, 72, 72);
  background-color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}

.uploadpdf-btn {
  border: 2px solid rgb(234, 75, 75);
  color: rgb(240, 237, 237);
  background-color: rgb(228, 77, 77);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}

.uploadpdf-btn input[type=file] {
  font-size: 90px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.uploadpdf-pdf-icon {
  margin-left: 10px;
  /* Adjusted margin */
}

.uploadpdf-pdf-icon img {
  width: 30px;
  height: 30px;
  /* Add additional styles for the PDF icon image */
}


.category_boxes {
  display: block;
  float: left;
  width: 100%;
  height: 300px;
  overflow-y: auto;
  padding: 12px 15px;
}

.category_boxes::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px #d6d6d6;
  background-color: #d6d6d6;
}

.category_boxes::-webkit-scrollbar {
  width: 5px;
  background-color: #FF7203;
}

.category_boxes::-webkit-scrollbar-thumb {
  background-color: #FF7203;
}

.category_box1 {
  display: flex;
  align-items: center;
  float: left;
  width: 100%;
  background: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}

.category_sl_no {
  flex: 30px 0 0;
}

.category_mid {
  width: 100%;
  display: flex;
  align-items: center;
}

.category_mid p {
  color: #000;
}

.category_del {
  flex: 0 0 40px;
}

.category_add_bottom_section {
  display: flex;
  align-items: center;
  float: left;
  width: 100%;
  border-top: 1px solid #000000;
  margin-top: 20px;
  padding-top: 20px;
}

.category_add_but {
  display: inline-block;
  vertical-align: top;
  padding: 8px 15px;
  border-radius: 50px;
  background: #FF7203;
  border: 1px solid #FF7203;
  color: #fff !important;
  font-size: 13px !important;
  transition: all .5s;
  transition-timing-function: ease-out;
  flex: 0 0 80px;
}

.category_add_but:hover {
  background: #333333;
}

.category_add_upload_img_area {
  float: left;
  width: 46px;
  height: 46px;
  margin: 0 10px 0 2px;
  flex: 0 0 46px;
  position: relative;
}

.category_add_upload_img_area .img_area {
  display: block;
  float: left;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.category_add_upload_img_area .img_area img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  border: 1px solid #FF7203;
}
.hints
{
  display: inline-block;
  vertical-align: top;
  width: 100%;
  color: #00A600;
  margin-top: 5px;
  font-size: 14px;
}

.upload-btn {
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  background: #FF7203;
  border: none;
  cursor: pointer;
}

.upload-btn i {
  margin-right: 5px;
  cursor: pointer;
}

.upload-btn-wrapper2 input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.category_add_bottom_section .upload-btn-wrapper2 {
  position: absolute;
  right: -18px;
  top: -7px;
}

.category_add_bottom_section .upload-btn-wrapper2 i {
  font-size: 20px;
  color: #FF7203;
}

.category_add_bottom_section .form-control {
  border: none;
  outline-style: none;
}

.category_add_bottom_section .form-control:focus {
  box-shadow: none;
}
.salary_list_boxes
{
  display: block;
  float: left;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  padding:0;
  margin-top: 25px;
}
.salary_list_boxes .category_box1 
{
  box-shadow: none;
  border: 1px solid #ced4da;
}

.card_main_heading2 {
  display: flex;
  float: left;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.card_main_heading2 h2 {
  font-size: 18px;
}