@import url("https://fonts.googleapis.com/css2?family=Lusitana:wght@400;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap");

*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;

  scrollbar-width: 10px;
  scrollbar-color: #ff0000 #fff;
}

/* For Scrollbar */

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #ff0000;
  border: 2px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

*:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

html {
  font-size: 62.5%;
}

body {
  font-weight: normal;
  line-height: normal;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  background: url(../images/image1.png) no-repeat;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input[type="submit"],
input[type="reset"],
a {
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

::-moz-selection {
  color: #fff;
  background: #ff0000c7;
}

::selection {
  color: #fff;
  background: #ff0000c7;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

/***************** FOR BOOTSTRAP ******************/

.container {
  max-width: 1560px;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

.navbar,
.nav-link {
  padding: 0;
  margin: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

/* cmn_margin & Padding */

.mt-40 {
  margin-top: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.cmn_pdding {
  padding: 90px 0;
}

/*----Common Header and Button----*/

/* .cmn_hdr h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: bold;
  color: #2a0600;
  padding-bottom: 10px;
  text-transform: capitalize;
}

.cmn_hdr.wht h2 {
  color: #fff;
}

.cmn_hdr h6 {
  color: #2b2b2b;
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-bottom: 10px;
  text-transform: capitalize;
}

.cmn_hdr p {
  font-size: 20px;
  color: #3d565b;
  line-height: 1.5;
  padding-bottom: 10px;
}

.cmn_hdr.wht p {
  color: #fff;
} */

.cmn_btn {
  font-size: 16px;
  color: #fff;
  background-color: #ff0000;
  padding: 6px 40px;
  display: inline-block;
  border: 2px solid #ff0000;
  position: relative;
  text-transform: capitalize;
  transition: 0.5s all;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  border-radius: 20px;
  width: max-content;
  text-align: center;
  font-weight: 600;
  line-height: 1.1;
}

.cmn_btn::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.7s;
}

.cmn_btn:hover {
  color: #ff0000;
  border: 2px solid #ff0000;
  background-color: #fff;
}

.cmn_btn:hover::after {
  width: 100%;
}

.cmn_btn.wht {
  background-color: #fff;
  color: #ff0000;
  border-color: #ff0000;
}

.cmn_btn.wht:hover {
  background-color: #ed1c24;
  color: #fff;
  border-color: #ed1c24;
}

.cmn_btn.gre {
  background-color: #dbdbdb;
  color: #000;
  border-color: #dbdbdb;
}

/*----Common Header and Button End----*/

/*! button back to top !*/

#backToTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #ff0000;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50px;
  position: fixed;
  right: 2.5rem;
  bottom: 105%;
  cursor: pointer;
  z-index: 5555;
  transition: 0.5s all ease;
  border: 1px solid #ed1c24;
  font-size: 1.8rem;
  transition: 0.8s all;
}

#backToTop.show {
  bottom: 2.5rem;
}

/*! button back to top End!*/

/* Animation Section */

/* Swing */

@-webkit-keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

/* Rotate */

.rotate {
  -webkit-animation: rotation 12s infinite linear;
  animation: rotation 12s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* Floating */

.floating {
  -webkit-animation: floating ease-in-out 3s infinite;
  animation: floating ease-in-out 3s infinite;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

/* Animation Section End */

header {
  position: relative;
  padding: 1.5rem 0;
  background: coral;
}

header .cus_nav_innr {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

header .navbar-nav {
  gap: 2rem;
}

/* moumi south calcutta jst 28.9.24 */
main {
  /* background: url(../images/south_cal_bg.png) no-repeat; */
  background: url(../images/image1.png) no-repeat;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.south_jst {
  padding: 20px;
}

.top_hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.logo {
  width: 5.7rem;
  height: 5.7rem;
}

.logo img {
  width: 100%;
  height: 100%;
}

.top_h h2 {
  font-size: 18px;
  font-family: "Wittgenstein", serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}

.frm_row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.task_dD.attach {
  padding: 60px 40px;
  justify-content: center;
  display: flex;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.task_dD.attach img {
  width: 150px;
  height: 150px;
  font-size: 13px;
}

.task_dD label.lab {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

#fileInput {
  display: none;
}

#icon {
  cursor: pointer;
}

.frm_row label {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 7px;
}

.frm_row input,
.frm_row textarea {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 14px;
}

.frm_cnt h1 {
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.multi_top_dir {
  background: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0px 30px 60px -5px #ffc0cb;
  width: max-content;
  padding: 4px 18px;
  border-radius: 25px;
  margin-inline: auto;
  margin-top: -25px;
  text-transform: uppercase;
}

.mul_form {
  border-radius: 20px;
  border: 3px solid #fff;
  margin-top: 60px;
  padding: 0 3rem 3rem;
  /* background: linear-gradient(rgba(226, 10, 10, 0.1) 10%, #fff); 
  box-shadow: 0 15px 15px rgba(226, 10, 10, 0.1); */
}

.progress_bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 50px;
}

.num_div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #ff0000;

  border-radius: 50%;
}

.line_span {
  width: 13%;
  height: 10px;
  border: 1px solid #ccc;
  background: #fff;
}

/* .frm_cnt {
  display: none;
}

.frm_cnt.active {
  display: block;
} */

/*  */
.btn_frm {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

input[type="checkbox"] {
  accent-color: red;
  color: red;
  width: 15px;
  height: 15px;
}

.check label {
  font-weight: 600;
}

.check {
  display: flex;
  gap: 20px;
}

.frm_row textarea {
  height: 130px;
  resize: none;
}

.num {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.check span label {
  margin-bottom: 0;
}

.task_dD.attach p {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

/* ============================== 1.10.24 moumi*/
.drag-area {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

.drag-area.hover {
  border-color: red;
  background-color: #f9f9f9;
}

.drag-area p {
  font-size: 16px;
  font-weight: bold;
  color: #666;
}

.frm_d_div.add_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.frm_d_div.add_form .frm_row {
  width: 50%;
}

.south_jst {
  padding-inline: 43rem;
}

.frm_row input,
.frm_row textarea {
  padding: 12px 10px;
}

.south_jst.edit_member {
  padding-inline: 0;
}

/* login */
.jst_login.sc_login header {
  background-color: transparent;
  justify-content: center;
}

.login-part {
  width: 50%;
  margin: 40px auto 0;
  border: 1px solid #00000066;
  padding: 20px 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.jst_login .d_brd_tp {
  display: block;
  text-align: center;
}

.jst_login .d_brd_tp p,
.jst_login .d_brd_tp a {
  font-family: "Lusitana", serif;
  color: #828282;
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}

.jst_login .d_brd_tp a {
  color: #0170ff;
}

.jst_login .d_brd_tp a:hover {
  color: #828282;
}

.login-form {
  text-align: center;
  margin-top: 30px;
}

.login-form .form_control input {
  width: 65%;
  padding: 15px 10px;
  border: 1px solid #00000066;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #000 !important;
  opacity: 100%;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
}
.login-form .form_control input {
  color: #000; /* Set input text color to black */
}
.login-form .form_control input::placeholder {
  color: #000; /* Standard syntax */
}

/* WebKit browsers (Chrome, Safari, Opera) */
.login-form .form_control input::-webkit-input-placeholder {
  color: #000;
}

/* Mozilla Firefox */
.login-form .form_control input::-moz-placeholder {
  color: #000;
}

/* Internet Explorer 10-11 */
.login-form .form_control input:-ms-input-placeholder {
  color: #000;
}

/* Edge */
.login-form .form_control input::-ms-input-placeholder {
  color: #000;
}

.login-form .sbmt_btn input {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  width: 35%;
  margin: 20px auto 10px;
  padding: 15px 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #ff0000;
  border: 2px solid #ff0000;
  font-family: "Poppins", sans-serif;
}

.login-form .mainsb_btn:hover {
  color: #ff0000;
  background-color: transparent;
  border: 2px solid #ff0000;
}

.lgin_ftr {
  margin-top: 50px;
  text-align: center;
}

.lgin_ftr a,
.lgin_ftr p {
  font-size: 18px;
  color: #000;
}

.lgin_ftr a:hover {
  color: #ff0000;
}

.jst_login {
  position: relative;
  height: 100vh;
}

.d_brd_tp h3 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ff0000;
}

#mobile_error {
  font-size: 14px;
  margin-top: 5px;
}

.tp_dgt_prt h6 {
  color: rgba(46, 46, 46, 0.8);
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.verification-code {
  margin: 20px auto 0;
  text-align: center;
}

.verification-code--inputs input[type="number"] {
  border: 1px solid rgba(96, 96, 96, 0.8);
  width: 4.6rem;
  height: 4.6rem;
  padding: 10px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  color: rgba(96, 96, 96, 1);
}

.jst_login .d_brd_tp p,
.jst_login .d_brd_tp a {
  font-family: "Lusitana", serif;
  color: #828282;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
}

/* sidebar */
.total_parent_element,
.outr_parent_nav {
  display: flex;
  width: 100%;
}

.left_parent_element {
  width: 20%;
  position: relative;
  transition: 0.5s ease all;
  border-right: 1px solid #272e5f;

  background-color: #272e5f;
}

.logo_area {
  width: 18.8rem;
  height: 18.8rem;
  margin: 20px;
}

.logo_area img {
  width: 100%;
  height: 100%;
}

.left_parent_element .nav_area {
  padding: 120px 0 0;
}

.outr_dashboard_nav h4 {
  margin-bottom: 2rem;
}

.outr_dashboard_nav {
  margin-top: 40px;
}

.parent_nav_menu {
  width: 100%;
  /* border-bottom: 1px solid #fff;
    padding-bottom: 40rem; */
}

.parent_nav_menu ul.pnmul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
  padding-left: 0 !important;
}

.nav-link {
  display: flex !important;
  align-items: center;
  gap: 20px;
}

.parent_nav_menu ul li a {
  padding: 7px;
  border-radius: 10px;

  width: max-content;
}

.icon_text {
  font-size: 18px;
  color: #f8f8f8;
  font-weight: 500;
}

.outr_parent_nav {
  justify-content: space-between;
  padding-inline: 30px;
}

.right_parent_element {
  width: 85%;
  margin-left: auto;
  transition: 0.5s ease all;
  right: 0;
}

.lft_p_nav {
  padding-left: 8rem;
}

.icon_box,
.sidebar {
  width: 3rem;
}

.rgt_p_nav,
.lft_p_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.lft_p_nav {
  padding-top: 10px;
  gap: 12px;
}

.rgt_p_nav {
  padding-top: 30px;
}

.lft_p_nav h6 {
  font-size: 21px;
  color: #990000;
  font-weight: 600;
  padding-left: 20px;
  cursor: pointer;
}

.search_bar {
  position: relative;
}

.search_holder {
  width: 33rem;
  padding: 10px 33px;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  border: none;
  box-shadow: none;
  color: #000;
  font-size: 16px;
}

.left_parent_element.active {
  width: 150px;
}

.left_parent_element.active .logo_area {
  width: auto;
  height: auto;
}

.left_parent_element.active .nav-item span.icon_text {
  display: none;
}

.left_parent_element.active .nav-item span img {
  margin: auto;
}

.left_parent_element.active .nav_area {
  padding: 5px;
  margin-top: 150px;
}

.left_parent_element.active .parent_nav_menu ul li a {
  width: auto;
  margin: auto;
  display: block;
}

.nav-item .icon_box {
  position: relative;
  left: 8px;
}

.left_parent_element.active .user-img {
  width: auto;
  height: auto;
}

.left_parent_element.active .side_rate {
  width: 100%;
}

.left_parent_element.active .side_rate h6 {
  font-size: 14px;
}

.sidebar {
  cursor: pointer;
}

.outr-right-content {
  padding: 30px;
  position: relative;
}

.total_upper_left {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #272e5f;
}

.top_logo {
  width: 70px;
  height: 55px;
  padding-left: 10px;
}

.top_logo img {
  width: 100%;
  height: 100%;
}

.all_r_btn.use {
  display: none;
}

.mob_ftr {
  display: none;
}

.icon_box span,
.nav-link.dropdown-toggle {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 27px;
}

.swal2-popup {
  width: 42rem !important;
}

.swal2-title {
  font-size: 18px;
}

.swal2-title {
  font-size: 18px !important;
}

.swal2-content,
.swal2-styled {
  font-size: 16px !important;
}

.swal2-styled {
  font-size: 14px !important;
  padding: 8px 20px !important;
}

.all_r_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.all_r_btn a span {
  color: #606060;
}

.outr_parent_nav {
  display: flex;
  align-items: flex-start;
}

.nav-item {
  display: block;
  width: 100%;
  padding-block: 5px;
  padding-inline: 20px;
}

.nav-item:hover {
  background: #e13333;
  color: #fff;
  padding-block: 5px;
}

.left_span_close {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 16px;
  color: #272e5f;
  top: 15px;
  right: 13px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.all_r_btn {
  display: none;
}

/* ayon paul start / 06.11.2024 */
.frm_row.nw_ad_frm_lb {
  margin-bottom: 2px;
}

.frm_d_div.add_form.nw_ad_frm {
  flex-wrap: wrap;
}

.frm_d_div.add_form.nw_ad_frm .frm_row {
  width: 32%;
}

.event_table.nw_member_table {
  position: relative;
  padding-bottom: 35px;
}

.event_table.nw_member_table .pagination {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
}

/* ayon paul end / 06.11.2024 */

/* ayon paul start / 06.11.2024 */
.mmbr_pg_innr {
  padding: 20px;
}

.drv_tbl_icns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: auto;
}

.drv_tbl_icns .dropdown-toggle {
  background: #fff9ee;
  border: 1px solid transparent !important;
  width: 25px;
  height: 25px;
}

.drv_tbl_icns.dropdown .dropdown-toggle svg {
  color: #e13333;
  margin-top: 8px;
  transition: all 0.3s;
}

.drv_tbl_icns.dropdown .dropdown-toggle.svg-active svg {
  transform: scaleY(-1) translateY(5px);
  margin-top: 0;
}

.drv_tbl_icns.dropdown .dropdown-menu li {
  padding: 10px;
}

.drv_tbl_icns.dropdown .dropdown-menu li:first-child {
  padding-top: 10px;
}

.drv_tbl_icns.dropdown .dropdown-menu li .dpdn_btn_icns {
  font-size: 14px !important;
  color: #353535 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  background: 0;
  border: 0;
  margin: auto;
  font-weight: 500;
}

.drv_tbl_icns.dropdown .dropdown-menu li {
  border-bottom: 1px solid #f2f2f2;
}

.drv_tbl_icns.dropdown .dropdown-menu li:last-child {
  border-bottom: 0;
}

.drv_tbl_icns.dropdown .dropdown-menu {
  border: 1px solid #f2f2f2;
  padding: 0;
  transform: translate3d(-28px, 26px, 0px) !important;
}

.drv_tbl_icns.dropdown .dropdown-toggle::after {
  display: none;
}

.mmbr_pg_tbl {
  width: 100%;
}

.mmbr_pg_tbl table {
  width: 100%;
}

.mmbr_usr {
  width: 32px;
  height: 32px;
  background: #d9d9d9;
  border: 1px solid transparent;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmbr_usr svg {
  color: #fff;
  font-size: 16px;
}

.mmbr_pg_tbl table th {
  padding: 8px 13px;
  text-align: center;
  color: #000;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
}

.mmbr_pg_tbl table td {
  padding: 8px 13px;
  text-align: center;
  color: #717171;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 15px;
}

.mmbr_usr_ttl span.red {
  color: #e13333;
}

.mmbr_stt.tick svg {
  font-size: 16px;
  color: #3f9b4d;
}

.mmbr_stt.cross svg {
  font-size: 16px;
  color: #e13333;
}

.mmbr_stt {
  border: 0;
  background: 0;
}

.mmbr_pg_tbl {
  border: 4px solid #fff;
  border-radius: 10px;
  background: #fff;
}

.mmbr_pg_tbl tbody tr {
  border-bottom: 1px solid #f2f2f2;
}
.mmbr_usr_ttl {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  width: 26%;
}

.mmbr_pg_tbl table thead {
  background: #f2f2f2;
  border: 1px solid transparent;
  border-radius: 8px;
}

.mmbr_pg_list_lft h1 {
  font-weight: 500;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
}

.mmbr_pg_list_lft {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mmbr_top_list {
  font-weight: 500;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
  padding: 8px 10px;
  border: 1px solid #0004;
  border-radius: 10px;
  width: 175px;
}

.mmbr_pg_list_flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mmbr_list_right_anch {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  background: #e13333;
  border: 1px solid transparent;
  padding: 8px 10px;
  transition: all 0.3s;
  border-radius: 8px;
  letter-spacing: 1px;
}

.mmbr_list_right_anch:hover {
  color: #e13333;
  border: 1px solid #e13333;
  background: #fff;
}

.mmbr_list_right_srch {
  color: #2e2e2e;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 10px;
  transition: all 0.3s;
  border-radius: 8px;
  /* background: url(../images/nw-mmbr_srch.png) #fff; */
  background-size: 12px;
  border: 1px solid transparent;
  background-position: 95% center;
  background-repeat: no-repeat;
  width: 270px;
}

.mmbr_list_right_srch::placeholder {
  color: #2e2e2e;
  font-size: 13px;
  font-weight: 400;
}

.mmbr_list_right_flx {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mmbr_pg_list {
  padding-bottom: 20px;
}

.mmbr_rght_dnld_btn {
  border: 0;
  background: 0;
  width: 35px;
  vertical-align: middle;
}

.mmbr_rght_dnld_btn img {
  width: 100%;
}

.mmbr_pg_tbl tbody tr:last-child {
  border-bottom: 0;
}

.outr-right-content.mmbr_pg_ottr .container {
  width: 100%;
}

.right_parent_element {
  width: 92.2% !important;
  position: static !important;
}

.cnct_icns_btn {
  border: 0;
  background: 0;
  font-size: 26px;
}

.cnct_icns_btn.sms {
  color: #01ceff;
}

.cnct_icns_btn.whts {
  color: #11ff01;
}

.cnct_icns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.parent_nav_menu .dropdown-menu .dropdown-item {
  font-size: 16px;
  color: #e13333;
  width: 100%;
  padding-inline: 34px;
}

.parent_nav_menu .dropdown-menu {
  width: 100%;
  transform: translate3d(0px, 48.5px, 0px) !important;
}

/* ayon paul end / 06.11.2024 */
/* s.c */
div:where(.swal2-container) .swal2-html-container {
  font-size: 14px !important;
  padding-top: 0 !important;
}
.frm_row_rltn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.frm_row select {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px 0 12px 4px;
  font-size: 14px;
}
.frm_d_div.add_form.nw_ad_frm.fmly_frm {
  display: block;
}
.frm_d_div.add_form.nw_ad_frm.fmly_frm .frm_row {
  width: 100%;
}
/* moumi */
.num_div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 50%;
}

.num {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.mmbr_usrs img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.mmbr_list_right_all {
  position: relative;
}

/* payel memberView 08.11.24 */
.serchAl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  cursor: pointer;
}

.page_pegination .pagination {
  justify-content: center;
  margin-top: 20px;
}
.page_pegination .page-item.active .page-link {
  background-color: #e13333;
  color: #fff;
  border-color: transparent;
}
.page_pegination .page-link {
  font-size: 11px;
  /* font-weight: 700; */
  color: #000;
  padding: 3px 6px;
}
.page_pegination .page-link:hover {
  border-color: #e13333 !important;
  color: #e13333 !important;
}
.page_pegination .page-item.active:hover .page-link {
  color: #fff !important;
}

.error-message {
  color: red;
  font-size: 12px;
}
/* m 18.11.24 */
.member_v_hdr,
.member_row {
  display: flex;
  justify-content: space-between;
}
.a,
.b,
.c,
.d,
.f,
.e {
  width: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.b,
.e {
  width: 40%;
}
.e h3,
.f h3 {
  width: 17%;
  text-align: center;
  color: #717171;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 15px;
}
.mmbr_pg_tbl {
  /* padding: 10px; */
  border: 0;
  background-color: transparent;
}
.member_v_hdr {
  background: #f2f2f2;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.member_view_b {
  padding: 5px 15px;
  box-shadow: 2px 0px 10px #0002;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 10px;
}
h3.nme {
  width: 130px;
}
.cnct_icns.new {
  width: 70px;
}
.member_v_hdr h3 {
  color: #000;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
}
.member_row {
  margin-bottom: 10px;
}
h3.red {
  color: red;
  font-size: 15px;
  font-weight: 500;
  width: 60%;
  text-align: center;
}

.heading {
  margin-bottom: 15px;
}
.heading h1 {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
}

/* payel 25.11.24 */
input[type="number"] {
  -moz-appearance: textfield; /* For Firefox */
  -webkit-appearance: none; /* For Chrome, Safari, and Edge */
  appearance: none; /* Standard property for all browsers */
  margin: 0; /* Reset margin to avoid alignment issues */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none; /* For Chrome, Safari */
  margin: 0; /* Remove margin for spin buttons */
}
/* payel 25.11.24 */
/* m 9.12.24 */

.tab button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px 10px;
  transition: 0.3s;
  font-size: 17px;
  background: unset;
}

.tab button.active {
  color: red;
}

.tabcontentNws {
  display: none;
  color: #000;
}
.tabcontentNws.active {
  display: block;
  color: red;
}
.tab.admin_news {
  display: flex;
  justify-content: end;
  border-bottom: 1px solid #ccc;
}
.news_content .c {
  justify-content: end;
  margin-right: 30px;
  width: 13%;
}
.news_content .b {
  width: 40%;
}
.news_content .f {
  justify-content: end;
  margin-right: 40px;
  width: 13%;
}
.news_content .drv_tbl_icns {
  margin: 0 0 0 auto;
}
.news_content .a {
  justify-content: start;
  width: 77%;
}
.news_content .mmbr_usr_ttl {
  justify-content: start;
  width: 100px;
}
.news_content h3.red {
  text-align: left;
  width: 90%;
}
.sth_nws_admin h3.nme {
  width: 100px;
}
.news_content .b,
.news_content .e {
  justify-content: space-between;
}
.news_content .e h3 {
  text-align: left;
  padding-left: 5px;
}
.news_content .e h3:nth-child(2) {
  text-align: right;
  padding-inline: 0;
}
.news_content .d {
  gap: 0;
  justify-content: start;
  width: 81%;
}
.news_content .e {
  width: 42%;
}

.tab.admin_news button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px 10px;
  transition: 0.3s;
  font-size: 15px;
  background: unset;
}

.tab.admin_news button.active {
  color: red;
}

.tabcontentNws {
  display: none;
  color: #000;
}

.tabcontentNws.active {
  display: block;
  color: red;
}
.news_content {
  padding-inline: 2rem;
}
/* 10.12.24 moumi */
/* .south_jst.news_detailss{
  padding-inline: 2rem;
} */
.news_detailss .mul_form {
  margin-top: 50px;
  width: 50%;
}
.news_detailss .fst_tp_bx_top label {
  font-size: 20px;
  word-break: break-all;
  font-family: "Wittgenstein", serif;
  padding-bottom: 13px;
  color: red;
  font-weight: 700;
  /* text-align: center; */
  display: block;
  text-transform: capitalize;
  word-wrap: break-word;
}
img.news_dd_imgg.nw_dtll {
  width: 100%;
  height: 400px;
}
.swiper-pagination2.new {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.news_detailss .fst_tp_bx_top {
  padding-top: 2rem;
}
.n_date {
  text-align: right;
  font-size: 17px;
  font-family: "Wittgenstein", serif;
  display: flex;
  font-family: "Wittgenstein", serif;
  justify-content: end;
}

.news_detailss .frm_row {
  width: 90%;
  margin: 20px auto 10px;
}
.news_detailss .frm_row label {
  margin-bottom: 0;
  font-family: "Wittgenstein", serif;
  /* text-align: center; */
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
.news_detailss .frm_row p {
  /* width: 90%;
  margin: auto; */
  word-break: break-all;
  word-wrap: break-word;
}
iframe {
  width: 100%;
}
.news_image_slider .swiper-wrapper {
  width: 100px !important;
  height: 450px !important;
}
.news_image_slider {
  width: 100%;
  height: 400px;
}
/* as no content in right side */
.rgt_p_nav {
  display: none;
}

.frm_row label ul {
  list-style: disc !important;
}
.south_jst.news_detailss {
  padding-inline: 2rem;
}
figure.table table {
  width: 100% !important;
}
.see_nwss h1 {
  font-size: 20px;
  font-family: "Wittgenstein", serif;
}
.n_roww {
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 1rem;
  width: 49%;
  background-color: #fff;
}

.all_n_ews {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.nsw_img {
  width: 20%;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
}
.nsw_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.all_n_ews h3.red {
  width: 100%;
  text-align: left;
}
.n-cnttnt {
  width: 80%;
}
/* m 11.12.24 */
.c-nws {
  display: flex;
  justify-content: end;
}
.mmbr_pg_list.cc-nws {
  display: flex;
  justify-content: space-between;
}
.cc-nws .heading {
  margin-bottom: 0;
}
.south_jst.editor .frm_cnt {
  margin: 20px auto;
}
.bdayDate {
  font-size: 13px;
}
/* .cnct_icns_btn.whts{
  padding-right: 20px;
} */
.cnct_icns_btn.pdf {
  font-size: 18px;
}
.member-item {
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-bottom: 7px;
}
.member-item .remove {
  position: relative !important;
}
.designtnAssn label input {
  width: 100%;
}
/* m 19.12.24 */
.all-team.table table {
  width: 100%;
}
.actn {
  text-align: center;
}
.all-team.table thead tr {
  background-color: #f2f2f2;
}
.all-team.table th,
.all-team.table td {
  padding: 15px 20px;
  color: #000;
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.all-team.table tr:last-child {
  border-bottom: none;
}
.all-team.table tr {
  border-color: #f2f2f2;
}
.grop a svg {
  color: #e13333;
}
.grop a {
  padding-left: 50px;
}
.all-team.table td {
  color: #717171;
  font-size: 15px;
}
/* Base styles */
#tableData {
  font-family: Arial, sans-serif;
  /* margin: 20px; */
}

.all-team {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.table {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Header row */
.table-row.header {
  /* background-color: #f4f4f4; */
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.table-row.header .table-cell {
  flex: 1;
  padding: 10px;
  text-align: left;
}

/* Table rows */
.table-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
}

.table-row:nth-child(odd) {
  /* background-color: #f9f9f9; */
}

/* Cells */
.table-cell {
  flex: 1;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
}

/* Members list inside the Assigned Members column */
.members-list {
  list-style: disc;
  padding-left: 20px; /* Indent the list items */
  margin: 0;
}

.members-list li {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Responsive design */
/* @media (max-width: 768px) {
  .table-row.header, .table-row {
      flex-direction: column;
  }

  .table-cell {
      width: 100%;
      padding: 5px;
      text-align: left;
  }

  .members-list {
      padding-left: 15px;
  }
} */

/* moumi 20.12.24 */
.table-cell .members-list {
  background: none !important;
}
.all-team .table-row.header {
  background-color: #f2f2f2;
  border: none;
  padding: 0;
}
.all-team .table-row {
  background-color: #fff;
  padding: 0;
}

.all-team .table-row.header .table-cell {
  padding: 15px 20px;
  color: #000;
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.all-team .table-cell {
  padding: 15px 20px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #717171;
}
.table-cell .members-list li {
  font-size: 15px;
  color: #717171;
}
.heading.new {
  display: flex;
  gap: 10px;
  align-items: center;
}
.heading.new svg {
  color: #e13333;
}

/* m 27.12.24 */
.admn_al_grp .table-row {
}
.table-cell.mem_list {
  position: relative;
}
.table-cell.mem_list a.new_page {
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: #ccc;
  border-bottom-left-radius: 30px;
}
.table-cell.mem_list a.new_page span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-item {
  display: inline-block;
  margin: 5px;
  padding: 5px;
  background-color: #f0f0f0;
  border-radius: 4px;
  position: relative;
}

.member-item .remove {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 0 5px;
  font-weight: bold;
  color: red;
}
/* ratul 24-10-25 */
/* .sth_flx {
  display: flex;
  justify-content: space-between;
} */
/* .sth_flx .image {
  height: 300px;
  width: 300px;
} */
.sth_flx .image img {
  height: 100%;
  width: 100%;
}
.sth_dv h1 {
  font-family: "Poppins", sans-serif;
  color: red;
  font-size: 35px;
  font-weight: 700;
  padding-bottom: 20px;
}
.sth_dv {
  width: 85%;
  margin-inline: auto;
}
.sth_flx .content.details p {
  font-family: "Poppins", sans-serif;
  padding-bottom: 10px;
}
.sth_dv .container {
  padding-inline: 0px;
}
.sth_flx .content.details p:nth-child(3) {
  text-transform: uppercase;
}
.sth_flx .content.details p:nth-child(3) strong {
  text-transform: capitalize;
}
.sth_flx .content.details p span {
  padding-inline: 10px;
}
.sth_flx .content.details p br {
  display: none;
}
.sth_dv .sth_btn {
  justify-content: center;
}
.sth_flx .content.details p strong {
  font-size: 19px;
}

/* ratul 27-10-25 */
.sth_flx .image {
    height: auto;
    width: 300px;
}
.sth_flx {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}