@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.form-control:focus {
  box-shadow: none !important;
}

body {
  font-family: "Kumbh Sans", sans-serif !important;
  overflow-x: hidden !important;
  transition: all 0.5s;
  position: relative;
  background-color: #F3F6FD;
}

.cursor-pointer {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin-bottom: 0;
}

hr {
  margin: 7px 0 !important;
}

select:focus {
  outline: none;
}

img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  height: auto;
}

.width_col {
  width: 350px;
}

.img {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

input:focus {
  outline: none;
}

::-moz-selection {
  background-color: #B23632;
  color: #fff;
}

::selection {
  background-color: #B23632;
  color: #fff;
}

.page-container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding-left: 250px;
  transition: padding-left 0.3s ease 0s;
}

.sidebar_collapsed .sidebar-menu {
  left: -250px;
}

.sidebar-menu {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  height: 100%;
  width: 250px;
  background: #453D1C;

  border-right: 1px solid #ccc;
  /* padding-top: 15px; */
}

.sidebar-menu .link[aria-expanded]:after {
  transition: all 0.2s ease-in-out;
  content: " ";
  height: 10px !important;
  width: 10px !important;
  border-style: solid !important;
  border-color: #647085 !important;
  border-width: 0px 2px 2px 0px !important;
  transform: rotate(-45deg) !important;
  position: absolute;
  right: 19px;
  top: 17px;
}

.sidebar-menu .link[aria-expanded="true"]:after,
.sidebar-menu .link:hover[aria-expanded]:after {
  border-color: #453D1C !important;
}

.sidebar-menu .sidebar-header {
  padding: 0;
  background-color: #000000;
  text-align: center;
  margin-bottom: 30px;
}

.nav-btn {
  margin-right: 20px;
  cursor: pointer;
}

.pull-left {
  float: left;
}

.sidebar_collapsed.page-container {
  padding-left: 0;
}

.main_table_box {
  /* border: 1px solid #EAECF0; */
  border-radius: 16px;
  /* background-color: #fff; */
  padding: 15px;
}

.main_table_box .title {
  font-size: 22px;
  font-weight: 600;
  color: #121212
}

.nav-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222222;
  margin: 4px 0;
  border-radius: 15px;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 0 4px rgba(99, 96, 96, 0.03);
}

.sidebar_collapsed .nav-btn span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.sidebar_collapsed .nav-btn span:nth-child(2) {
  opacity: 0;
}

.sidebar_collapsed .nav-btn span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

.sidebar_collapsed .sidebar_logo {
  display: none;
}

.sidebar_collapsed .mini_sidebar_logo {
  padding: 21px 10px;
  background-color: #fff;
  border-radius: 50%;
  display: inline;
}

#scroll {
  height: 50px;
  width: 50px;
  background-color: #222222;
  border-radius: 50%;
  z-index: 99;
  position: fixed;
  right: 31px;
  bottom: 18px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border: 2px solid transparent;
  transition: 0.5s;
}

#scroll i {
  position: relative;
  z-index: 3;
  font-size: 20px;
}

/* Header Start */
.header-area {
  background: #fff;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid #DDDDDD;
}

.heading h2 {
  color: var(--blue);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.header-area .heading_header {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 0;
  color: #222222;
}



.header-area .dash_heading {
  display: flex;
  align-items: center;
}

.header-area .profile_icon .round_img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

.header-area .profile_icon .round_img img {
  height: 100%;
  width: 100%;
  background-size: cover;
}

.header-area .notification-area {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header-area .notification-area .profile_area {
  display: flex;
  align-items: center;
}

.header-area .notification-area .profile_area .username {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 2px;
  color: #303030;
}

.header-area .notification-area .profile_area .role {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
  color: #303030;
}

.header-area .breadcrumb-item+.breadcrumb-item::before {
  padding-left: 2px;
  padding-right: 7px;
}

.header-area .breadcrumb .breadcrumb-item,
.header-area .breadcrumb .breadcrumb-item a {
  color: #001253;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

#menu .metismenu li a img {
  width: 16px;
}

.header-area .breadcrumb {
  margin-bottom: 2px;
  align-items: center;
}

.dropdown-toggle::after {
  display: none !important;
}

.header-area .dropdown_arrow {
  color: #222222;
  padding: 7px;
  background-color: #ebeef1;
  font-size: 10px;
  margin-left: 10px;
  border-radius: 20px;
}

.sidebar_collapsed .menu-level-2 a {
  color: #fff !important
}

.header-area .dropdown-item img {
  padding-right: 15px;
}

.header-area .dropdown-menu li {
  border: 1px solid #222222;
  padding: 5px 0;
}

.information_box {
  padding: 7px;
  border: 1px solid #DDDDDD;
  border-radius: 6px;
}

.dropdown_profile {
  margin-bottom: -5px;
  width: 100%;
}

.serchIcon {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px
}

.header-area .dropdown-menu {
  background-color: transparent !important;
  border: 0 !important;
  right: 0 !important;
}

.header-area .dropdown-menu li {
  background-color: #fff !important;
}

.header-area .notification-area .profile_area .name_role {
  padding-left: 15px;
  padding-right: 10px;
}

.profile_right {
  display: flex;
  justify-content: flex-end;
}

.input_box input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.dropdown-item:active {
  background: #222222 !important;
}

.normal_text {
  font-size: 16px;
  font-weight: 500;
  color: #646464;
  line-height: normal;
  margin: 0
}

.dark_text {
  font-size: 16px;
  font-weight: 600;
  color: #453D1C;
  margin-bottom: 0;
  line-height: normal;
  text-decoration: none !important;
}

.normal_text_main {
  font-size: 14px;
  font-weight: 500;
  color: #646464;
  line-height: normal;
  margin: 0
}


.divider {
  padding: 0 10px 0 0;
  margin: 0 0 0 10px;
  border-left: 1px solid #647085
}


.plus_icon {
  background-color: #E6F4FB;
  height: 42px;
  width: 42px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #0094DC;
  font-size: 22px;
}

.dropdown .three_dot {
  border: 1px solid transparent;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  overflow: hidden;
  background-color: #F7F7F8;
}

.pagination .page-link {
  border: 1px solid #E6EAEF !important;
  color: #333;
  /* Optional: Adjust text color */
}

.pagination .page-item.active .page-link {
  background-color: #007BFF;
  /* Bootstrap primary color */
  border-color: #E6EAEF;
  color: #657488;
}

.input_box input {
  padding: 12px 15px;
  border: 1px solid #E6EAEF;
  border-radius: 6px;
}



.back_row a {
  font-size: 20px;
  color: #0094DC;
  ;
}

.main_sidebar_box {
  width: 75%;
  background: #fff;
  border-left: 1px solid #EEEEEE;
  height: 100%;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  display: none;
}

.main_sidebar_box.active {
  display: block;
}

.main_sidebar_box .sidebar_header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EEEEEE;
}

.main_sidebar_box .sidebar_header p {
  color: #032F44;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

.main_sidebar_box .sidebar_body {
  padding: 20px
}

.main_sidebar_box .sidebar_header a {
  display: inline-block;
  padding: 15px;
  font-weight: 500;
  font-size: 20px;
  ;
  color: #030B16 !important
}

.sidebar_opened {
  overflow: hidden;
}

.sidebar_opened::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #000000b0;
  z-index: 9999;
}

td input[type=radio] {
  position: absolute;
  opacity: 1;
}

td input[type=radio]+.radio-label:before {
  content: "";
  background: transparent;
  border-radius: 100%;
  border: 1px solid #000;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

td input[type=radio]:checked+.radio-label:before {
  background-color: #007EFF;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

td input[type=radio]+.radio-label:empty:before {
  margin-right: 0;
}

.table td .username {
  color: #2c5b6c;
}

.table .normal_text {
  color: #657488;
  font-size: 16px;
  font-weight: 500;
}

.table .tailor_name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #647085;
}

.table .tailor_number {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #647085
}

#menu .metismenu .item .link[aria-expanded]:before {
  content: "";
  content: "";
  height: 25px;
  width: 25px;
  color: #453D1C;
  opacity: 0.5;
  border-radius: 18px;
  right: 10px;
  position: absolute;
  top: 8px;
}

#menu .metismenu .item {
  position: relative;
  margin: 7px 0;
  transition: all 0.5s ease;
}

#menu .metismenu .menu-level-2 li {
  margin: 0;
}

#menu .metismenu .menu-level-2 {
  padding-left: 0;
}

#menu .metismenu li.active a span,
#menu .metismenu li:hover a span {
  font-weight: 600;
}

#menu .metismenu li a {
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 14px;
}



#menu .metismenu li:hover a,
#menu .metismenu li.active a {
  background-color: #FAF5DF;
  border-radius: 6px;
}

#menu .metismenu li:hover a span,
#menu .metismenu li.active a span {
  color: #453D1C
}

#menu .metismenu li:hover a svg path,
#menu .metismenu li.active a svg path {
  stroke: #453D1C;
}



.sidebar_icon {
  position: absolute;
  left: -9px;
  top: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  width: 20px !important;
  opacity: 0;
  transition: all 0.3s ease;
}

#menu .metismenu .menu-level-2 li a:hover .sidebar_icon,
#menu .metismenu .menu-level-2 li a.inner_active .sidebar_icon {
  opacity: 1;
}

#menu .metismenu li a span {
  padding-left: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #EEEEEE;
}

#menu .metismenu .item .link[aria-expanded=true]:after {
  transform: rotate(45deg) !important;
  right: 20px;
}

.metismenu {
  padding: 0 25px;
}

.inner-main-content {
  padding: 25px;
  background-color: #F5F5F5;
  min-height: calc(100vh - (3.5rem + 1px) - (3.5rem + 1px)) !important;
}

.main-btn {
  background-color: #222222;
  display: inline-block;
  padding: 17px 48px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #fff !important;
  border: 0;
  border-radius: 8px;
}

.status_filter {
  display: flex;
  align-items: center;
}

/* Login Page */
.login_section {
  height: 100vh;
}

.login_section .inner_login_section {

  overflow: hidden;

  width: 100%;
  height: 100%;
  background-image: url(../images/main_bg_img.svg);
  padding: 20px;
  border-radius: 18px;

}



.inner_login_section {
  display: flex;
  height: 100vh;
  align-items: center;
}

.login_section .inner_login_section .logo_img {
  padding: 20px 15px;
  display: inline-block;
}

.login_section .inner_login_section .logo_img img {
  width: 100px;
}

.login_section .main_login_box {
  background-color: #FFFFFF;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0px 0.5px 12px 0px #0000001F;

}

.login_section .main_login_box .login_input {
  padding-bottom: 25px;
}



.login_section .main_login_box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 5px;
}

.login_section .main_login_box p {
  font-size: 16px;
  color: #808080;
  margin-bottom: 30px;
}

.login_section .main_login_box .login_input {
  color: #2C2C2C;
  font-size: 14px;
  font-weight: 500;
}

.login_section .main_login_box .login_input p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #2C2C2C;
}


.login_section .main_login_box input {
  width: 100%;
  background-color: #FFF;
  border: 0;
  border-radius: 6px;
  border: 1px solid #DDDDDD;
  font-size: 16px;
  font-weight: 400;
  color: #2C2C2C;
  padding: 10px
}

.logo_input input ::placeholder {
  color: red;
}


.login_section .validate-has-error {
  display: block;
  padding-top: 5px;
  font-size: 12px;
  color: #cc3f44;
  position: absolute;
  bottom: 5px;
}

.login-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #8B7B39;
  box-shadow: 0px 0.75px 3px 0px #2E2E2E29;

}

.login_section .main_logo_part {
  height: 100%;
  display: flex;
  align-items: center;
}

.login_section .main_logo_part img {
  width: 100%;
}

.copyright_text {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto
}

.footer_text {
  color: #453D1C;
  font-size: 12px;

}

.login_section .main_login_box .toggle-password {
  position: absolute;
  right: 3%;
  top: 45%;
}

#example_filter,
.dataTables_length {
  display: none;
}

.searchBar {
  border: 1px solid #dddddd;
  border-radius: 8px;
  width: 300px;
  margin-bottom: 15px;
}

.searchBar img {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.searchBar .search_input {
  padding: 7px 20px 7px 50px;
  color: "Work Sans", sans-serif;
  border: 0;
  background-color: transparent;
  width: 100%;
}

.searchBar .search_input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #222222;
}

.searchBar .search_input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #222222;
}

.pagination {
  justify-content: flex-end;
  margin-top: 15px;
}

.pagination_row svg {
  width: 22px;
}

.pagination_row [aria-current="page"] span,
.pagination_row a {
  padding: 0.375rem 0.75rem !important;
  border: 0 !important;
  color: #000 !important;
}

.pagination_row [aria-current="page"] span {
  background: #032f44 !important;
  color: #fff !important;
  border-radius: 5px;
}

.pagination_row nav .hidden div:nth-child(1),
.pagination_row nav>div:nth-child(1) {
  display: none !important;
}

.pagination_row nav .hidden div:nth-child(2) {
  text-align: right !important;
  margin-bottom: 20px;
}

.table> :not(caption)>*>* {
  border-bottom: 2px solid #EDEDED;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #222222;
  text-align: left;
}

.status_btn {
  padding: 7px 15px 7px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 18px;
  display: inline-block;
  position: relative;
}

.status_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.status_btn.active {
  color: #1F964E;
  background-color: #1F964E1A;
}

.status_btn.inactive {
  color: #7F7F7F;
  background-color: #7F7F7F1A;
}

.status_btn.active::before {
  background-color: #1F964E;
}

.status_btn.inactive::before {
  background-color: #7F7F7F;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

::-webkit-scrollbar-track {
  /* background-color: #ebebeb; */
}

::-webkit-scrollbar-thumb {
  background: #B23632;
}

.table {
  background-color: #fff;
}

.table .pic_td {
  text-align: center;
}

.table thead tr th {
  background-color: #F5F5F5;
  color: #657488;
  border-bottom: #E6EAEF;
  font-weight: 500;
  padding: 11px 15px;
}

.table thead tr th.first_radius {
  border-radius: 20px 0 0 0;
  /* border: 0; */
  text-align: center;
}

.table thead tr th.last_radius {
  border-radius: 0 20px 0 0;
  /* border: 0; */
}

.table thead tr th.small_name {
  width: 50px;
}

.table td {
  font-weight: 500;
  padding: 7px 15px !important;
  vertical-align: middle;
}

.table td span.small_name {
  width: 50px;
}

.table .small_td {
  margin: auto;
  text-align: center;
}

.left_box {
  display: flex;
  align-items: center;
}

.left_box .filter_btn {
  padding: 11px;
  margin-bottom: 15px;
  margin-left: 15px;
}



.modal-content {
  border-radius: 20px !important;
}

.modal-content .modal-header {
  text-align: center;
}

.modal-content .modal-header .modal-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 21px;
  color: #030B16;
}

.sidebar_logo .main_logo {
  width: 120px;
}

.overlay-wrapper {
  position: fixed;
  z-index: 999;
  height: 100vh;
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3803921569);
}

.remove_pagination .dataTables_paginate,
.remove_pagination .dataTables_info {
  display: none;
}

.dt-button {
  display: none;
}

.input_box input[type="date"] {
  display: block;
  position: relative;
  background: url(../images/calendar.svg) #fff right 1rem center no-repeat !important;
  cursor: pointer;
}

.input_box select:focus {
  outline: 0;
}

.input_box p {
  color: #2C2C2C;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 5px;
  border-color: rgba(0, 0, 0, 0.35);
  border-top-color: #1e1e1e;
  animation: spin 1s infinite linear;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.input_box {
  padding-bottom: 25px;
  position: relative;
}

.input_box .remove_icon {
  position: absolute;
  right: 15px;
  top: -5px;
}

.input_box .remove_icon img {
  width: 15px;
}

.input_box h5 {
  color: #222222;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.input_box input,
.input_box select,
.input_box textarea {
  border-radius: 8px;
  padding: 7px 15px;
  width: 100%;
  line-height: 22px;
  background-color: white;
  border: 1px solid #AEB8C6;
}

.input_box input::-moz-placeholder,
.input_box textarea::-moz-placeholder {
  font-size: 14px;
  line-height: 16px;
  color: #ADADAD;
}

.form-check-input {
  width: 17px !important;
  height: 17px !important;
  padding: 0 !important
}

.form-check-input:checked {
  background-color: #DF4845 !important;
  border-color: #DF4845 !important;
}

input:disabled {
  background-color: #E3E3E4;
}

.submit_btn {
  background-color: #F37F75;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
  border: 0;
  border-radius: 8px;
}

.input_box input::placeholder,
.input_box textarea::placeholder {
  font-size: 14px;
  line-height: 16px;
  color: #ADADAD;
}

.form-check-label {
  color: #656565;
}

.input_box textarea:focus {
  outline: none !important;
}


.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #C4C4C4 !important;
  padding: 7px 15px;
  border-radius: 8px !important;
  height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #adadad !important;
  padding: 0 !important;
  line-height: 22px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  height: 8px !important;
  width: 8px !important;
  border-style: solid !important;
  border-color: #222222 !important;
  border-width: 0px 2px 2px 0px !important;
  transform: rotate(45deg) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #222222 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px !important;
}

.page-item .page-link {
  background-color: transparent;
  border: 0;
  color: #222222;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.2px;
  margin: 0 10px;
}

.page-item .page-link:focus {
  box-shadow: none;
  background-color: transparent;
  border: 0;
}

.page-item:hover .page-link,
.page-item.active .page-link {
  background-color: #000000 !important;
  border: 0 !important;
  border-radius: 4px;
  color: #fff !important;
}

.page-item.disabled {
  opacity: 0.5;
}

.main_form_data {
  background-color: white;
  border: 1px solid #DDDDDD;
  margin-top: 5px;
  border-radius: 12px;
  padding: 20px;
}


.normal_text_mini {
  font-size: 20px;
  font-weight: 600;
  color: #646464;
}

/* footer */
.footer {
  padding: 15px 10px;
  border-top: 1px solid #ccc;
  background-color: #F3F6FD;
}

.footer span {
  font-weight: 400;
  line-height: 14px;
  color: #52575C !important;
  font-size: 12px;
  font-family: "Work Sans", sans-serif !important;
}

.footer span a {
  color: #4EC9F5;
}

@media (min-width: 1821px) {

  .input_box input,
  .radio_btn {
    width: 100%;
  }

  .right_add {
    display: flex;
    justify-content: flex-end;
    align-items: Center;
  }
}

@media (min-width: 1400px) and (max-width: 1820px) {

  .input_box input,
  .radio_btn {
    width: 100%;
  }

  .right_add {
    display: flex;
    justify-content: flex-end;
    align-items: Center;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .input_box input {
    width: 100%;
  }

  .right_add {
    display: flex;
    justify-content: flex-end;
    align-items: Center;
  }

  .submit_row {
    justify-content: center;
  }

  .input_box input,
  .input_box [type=file]+label,
  .radio_btn,
  .input_box textarea {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .export_btn {
    margin-right: 15px;
  }

  .input_box input {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .sidebar_collapsed.page-container {
    padding-left: 80px;
  }

  .sidebar_collapsed .sidebar-menu {
    width: 80px;
    left: 0;
  }

  .sidebar_collapsed #menu .metismenu {
    padding: 0 15px;
  }

  .sidebar_collapsed #menu .metismenu li a {
    padding-left: 0 !important;
    display: flex;
    justify-content: center;
    padding: 10px 0 !important;
    margin-top: 0 !important;
  }

  .sidebar_collapsed #menu .metismenu li a img {
    width: 20px;
  }

  .sidebar_collapsed #menu .metismenu li:hover ul {
    display: block;
    height: auto !important;
    padding: 0;
    width: 170px;
    text-align: left;
    position: absolute;
    top: 0;
    left: 100%;
    transition: all 0.5s ease;
    /* border: 0.5px solid #CCCCCC; */
    box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    background-color: #F5F5F5;
    color: black;
    overflow: hidden;
  }

  .sidebar_collapsed #menu .metismenu li .menu-level-2 {
    padding-left: 10px !important;
  }

  .sidebar_collapsed #menu .metismenu li .menu-level-2 li:last-child a:after {
    left: 0;
  }

  .sidebar_collapsed .mini_logo {
    display: inline-block;
    width: 50%;
    margin: auto;
  }

  .sidebar_collapsed .main_logo {
    display: none;
  }

  .sidebar_collapsed #menu .metismenu li:hover a,
  .sidebar_collapsed #menu li.item.active a {
    border-radius: 6px !important;
  }

  .sidebar_collapsed .metismenu>li a span,
  .mini_logo,
  .sidebar_collapsed #menu .metismenu .item .link[aria-expanded]:before {
    display: none;
  }

  .sidebar_collapsed .metismenu .collapse.in,
  .sidebar_collapsed .collapsing,
  .sidebar_collapsed #menu .metismenu li a[aria-expanded]:after {
    display: none;
  }

  .sidebar_collapsed #menu .metismenu .menu-level-2 li a:after {
    z-index: 0;
    left: -2px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .logo {
    padding-bottom: 0;
  }

  .dash_body {
    overflow-x: hidden;
  }

  .header-area .heading_header {
    font-size: 24px;
  }

  .inner-main-content {
    padding: 20px 30px 40px;
  }

  .header-area {
    padding: 15px 30px;
  }

  .rounded-btn {
    padding: 7px 10px;
  }

  .right_box {
    display: flex;
    align-items: start;
    justify-content: center;
  }

  .search_input {
    width: 350px;
  }

  .renewal_table tbody th .name {
    padding: 12px 0 0 0;
    display: inline-block;
    width: 100px;
  }

  .input_box {
    padding-bottom: 25px;
  }

  .search_btn {
    text-align: Center;
  }
}

@media (min-width: 576px) and (max-width: 767px) {

  .dash_body {
    overflow-x: hidden;
  }

  .dashboard_table {
    margin-bottom: 20px;
  }

  .sidebar_collapsed .mini_sidebar_logo {
    padding: 48px 15px;
  }

  .sidebar_collapsed .sidebar-menu {
    width: 85%;
    left: 0;
  }

  .sidebar_collapsed .nav-btn {
    margin-right: 15px;
    position: fixed;
    z-index: 99;
    right: 0;
    top: 0;
    background: #B23632;
    margin: 0;
    padding: 14px;
  }


  .sidebar_collapsed .nav-btn span {
    /* background: #fffbfb; */
  }

  .page-container,
  .sidebar_collapsed.page-container {
    padding-left: 0;
  }

  .sidebar-menu {
    position: fixed;
    left: -90%;
    top: 0;
    height: 100vh;
    width: 90%;
  }

  .sidebar-menu .sidebar-header {
    padding: 20px 0 50px 30px;
  }

  .nav-btn {
    margin-right: 15px;
  }

  .filter_btn_header {
    justify-content: center;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .header-area {
    padding: 0 20px;
    border-bottom: 1px solid #E6EAEF;
  }

  .header-area .notification-area li {
    padding: 0 10px;
  }

  #menu .metismenu .menu-level-2 li a {
    padding: 7px 0 7px 30px;
  }

  .profile_right {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: end !important;
  }

  .search_input {
    width: 400px;
  }

  .inner-main-content {
    padding: 20px 20px 40px;
  }

  .table .name {
    display: inline-block;
    width: 150px;
  }

  tbody,
  td,
  tfoot,
  th,
  thead,
  tr {
    text-align: center;
  }

  .search_row,
  .right_export {
    display: flex;
    justify-content: center;
  }

  .right_export {
    margin-top: 20px !important;
  }

  .input_box {
    padding-bottom: 25px;
    margin-top: 0;
  }

  .input_box input,
  .input_box [type=file]+label,
  .radio_btn,
  .input_box textarea {
    width: 100%;
  }

  .search_btn,
  .filter_row .right_export {
    text-align: Center;
  }
}

@media (max-width: 575px) {
  .dash_body {
    overflow-x: hidden;
  }

  .width_col {
    width: auto;
  }

  .sidebar_collapsed .mini_sidebar_logo {
    padding: 48px 15px;
  }

  .sidebar_collapsed .sidebar-menu {
    width: 85%;
    left: 0;
  }

  .sidebar_collapsed .nav-btn {
    margin-right: 15px;
    position: fixed;
    z-index: 99;
    right: 0;
    top: 0;
    background: #B23632;
    margin: 0;
    padding: 14px;
  }

  .sidebar_collapsed .nav-btn span {
    background: #fffbfb;
  }

  #menu .metismenu .menu-level-2 li a {
    padding: 7px 0 7px 20px;
  }

  .page-container,
  .sidebar_collapsed.page-container {
    padding-left: 0;
  }

  .sidebar-menu {
    position: fixed;
    left: -90%;
    top: 0;
    height: 100vh;
    width: 90%;
  }

  .sidebar-menu .sidebar-header {
    padding: 20px 0 50px 30px;
  }

  .header-area {
    padding: 10px 20px 0;
    border-bottom: 1px solid #ccc;
  }

  .profile_right {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-around !important;
  }

  .search_input {
    width: 300px;
  }

  .inner-main-content {
    padding: 20px 10px 40px;
  }
}

/*# sourceMappingURL=style.css.map */
.fade:not(.show) {
  opacity: 1 !important;
}

.swal2-in {
  padding-right: 0 !important
}

.swal2-modal {
  position: relative;
}

.swal2-confirm {
  border: 1px solid #B23632 !important;
  background: #B23632 !important;
  border-radius: 8px !important;
  padding: 8px 30px !important;
}


.swal2-cancel {
  border: 1px solid #B23632 !important;
  color: #B23632 !important;
  background: #fff !important;
  border-radius: 8px !important;
  padding: 8px 30px !important;
}

.swal2-cancel:active {
  color: #fff !important;
  background: #B23632 !important;
}

.swal2-modal .swal2-close {
  color: #fff !important;
  padding: 7px !important;
  border-radius: 50%;
  background-color: #B00000;
  display: block !important;
  ;
  font-size: 30px !important;
  line-height: 17px !important;
  font-weight: 600;
  top: 10px !important;
  right: 10px !important;
}


.swal2-modal h2 {
  font-weight: 500 !important;
  font-size: 24px !important;
  line-height: 28px !important;
  color: #000000 !important;
  margin: 10px 0 20px 0 !important;
}

.swal2-modal .swal2-content {
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  text-align: center !important;
  color: #868686 !important;
}




.creative-checkbox input {
  position: absolute;
  visibility: hidden;
}


.onOff input+i {
  border: 2px solid #F43A4D;
}

.creative-checkbox input+i {
  width: 50px;
  height: 25px;
  padding: 1px;
  float: left;
  border-radius: 20px;
  transition: all .25s;
}

.creative-checkbox input:checked+i {
  border-color: #1EA96D;
  background-color: #1EA96D;
}

.creative-checkbox input:checked+i:after {
  margin-left: 55%;
}

.creative-checkbox input+i {
  background-color: #F43A4D;
}

.creative-checkbox input+i:after {
  content: ' ';
  background-color: #fff;
  float: left;
  width: 19px;
  height: 19px;
  border-radius: inherit;
  transition: inherit;
}

.admin_box {
  border: 1px solid transparent;
  border-radius: 6px;
  height: 50px;
  overflow: hidden;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1A7ACA14;
}

.admin_box img {
  width: 100%;
}

.admin_text {
  margin-left: 15px;
}


.input_box .validate-has-error {
  display: block;
  padding-top: 5px;
  font-size: 12px;
  color: #cc3f44;
  position: absolute;
  bottom: 8px;
}

.edit_thead_icon {
  width: 25px;
}

.main_sidebar_box .validate-has-error {
  bottom: 8px;
}

.main_sidebar_box .cancel-btn {
  display: none;
}

.small_name a img {
  height: 18px;
}


.extra_border th:last-child {
  border-radius: 0 20px 0 0;
}

.extra_border td {
  border: 2px solid #EDEDED !important
}


/* 
  status btn  */



/* Common Status Style */
.status_paid,
.status_pending,
.status_partial {
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid transparent;
  margin: 2px;
  text-align: center;
  min-width: 80px;
}

/* Paid Status */
.status_paid {
  color: #1F964E;
  /* Green */
  border: 1px solid #1F964E;
  background-color: #1F964E1A;
}

/* Pending Status */
.status_pending {
  color: #7F7F7F;
  /* Orange */
  border: 1px solid #7F7F7F;
  background-color: #7F7F7F1A;
}

/* Partial Status */
.status_partial {
  color: #FF9F2C;
  /* Blue */
  border: 1px solid #FF9F2C;
  background-color: #FF9F2C1A;
}





.plan-header {
  background: #04344f;
  color: white;
  padding: 8px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.remove-btn {
  background-color: red;
  border: none;
  font-size: 18px;
  color: #FFFF;
  padding: 5px 13px;
  cursor: pointer;
}

.add-btn {
  background-color: #0d6efd;
  color: #FFFF;
  padding: 10px 10px;
  margin-left: 17px;
  cursor: pointer;
  border-radius: 6px;
}


.main_box {
  padding-bottom: 25px;
}


.action_btn {
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  color: #657488
}

.view_button_box {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  color: #657488
}

.location_btn {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  color: #657488
}


.status-badge {
  display: inline-block;
  align-items: center;
  background-color: #ECFDF3;
  color: #037847;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 30px;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #0B774B;
  border-radius: 50%;
}

.status-badge-inactive {
  background-color: #F2F4F7;
  color: #6C778B;
}

.status-dot-inactive {
  background-color: #6B7280;
  /* Dark gray dot */
}


.menu-level-2 li a {
  background-color: #453D1C !important;
  color: #EEEEEE !important;
  border-radius: 0 !important;
  padding-left: 45px !important;
}



.menu-level-2 li a:hover,
.menu-level-2 li a.inner_active {
  background-color: #FAF5DF !important;
  color: #453D1C !important;
  font-weight: 600;
  border-radius: 6px !important;
  margin-top: 10px;
}


.filer_box {
  width: 40px;
  height: 40px;
  border: 1px solid #E6EAEF;
  display: flex;
  background-color: #ECEEF0;
  align-items: center;
  justify-content: center;
  border-radius: 4px;

}

.main_search_box {
  background-color: #F5F5F5;
}

.main_search_box img {
  padding-left: 15px;
}

.main_search_box input {

  padding: 8px 20px 8px 15px;
  border: 0;
  background-color: transparent;
  width: 100%;
}

.name_link {
  color: #101828 !important
}

/* Custom Table Styles */
.custom-table {
  width: 100%;
  border-collapse: collapse;

}

.custom-table thead th {
  border-bottom: 1px solid #E6EAEF;
  /* Thick bottom border for headers */
  background-color: #FFFF;
  padding: 10px;
  border-right: 1px solid #E6EAEF;
  text-align: left;
}

.custom-table thead tr th {
  color: #667085;
  font-family: "Kumbh Sans", sans-serif;
}

.custom-table tbody tr {
  border-bottom: 1px solid #EAECF0;

  background-color: white;
  /* Light bottom border for rows */
}

.custom-table td {
  padding: 10px;
  color: #667085;
}

/* Status Badge Styles */

.inner-main-content .container {
  background-color: #FFF;
  border: 1px solid #EAECF0;
  border-radius: 12px;
}



.modal-title h5 {
  color: #030B16;
}


::placeholder {
  color: #2C2C2C;
}

.category-badge {
  background-color: #453D1C1F;
  color: #453D1C;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
}

.name_text {
  color: #404040 !important;
  font-weight: 600;
}

.number_text {
  color: #727272;
}


tr .comp_name {
  color: #667085;
}


.custom-radio {
  display: none;
}

.custom-label {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #A7A7A7;
}

.custom-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #D1D1D1;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.custom-radio:checked+.custom-label::before {
  border: 1px solid #E15144;

}

.custom-radio:checked+.custom-label::before {
  background-color: #E15144;
  box-shadow: inset 0 0 0 3px white;
}

.gift_hide select option {
  font-size: 16px;
  font-weight: 500;
  color: #2C2C2C;
}

.gift_hide select option span {
  display: inline-block;
  color: #E15144;
}



.cancel_btn {
  padding: 8px 20px !important;
  color: #030B16 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  border: 1px solid #E6EAEF !important;
  background-color: #FFFFFF;
}


.save_btn {
  padding: 8px 20px !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  border: 1px solid #E6EAEF !important;
  background-color: #453D1C;
}





.bg_status {
  padding: 7px 15px 7px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 18px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.bg_status::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.bg_status.on_going {
  color: #2374B8;
  background-color: #2374B81A;
}

.bg_status.on_going::before {
  background-color: #2374B8;
}

.bg_status.converted {
  color: #1F964E;
  background-color: #1F964E1A;
}

.bg_status.converted::before {
  background-color: #1F964E;
}

.bg_status.cancelled {
  color: #D9534F;
  background-color: #D9534F1A;
}

.bg_status.cancelled::before {
  background-color: #D9534F;
}


.day_status {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  text-wrap: nowrap;
}

.day_status.fullday {
  color: #DF4845;
  background-color: #DF484514;
}



.day_status.halfday {
  color: #FB6423;
  background-color: #FFF3ED;
}


.status_btn_mini {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  text-wrap: nowrap;
}

.status_btn_mini.active {
  color: #1EA96D;
  background-color: #EDF8F3;
}

.status_btn_mini.inactive {
  color: #EC2831;
  background-color: #EC283114;
}



.gallery_status.hide {
  color: #EC1D23;
  background-color: #FDEDED;
}




.team_status {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  text-wrap: nowrap;
}

.team_status.active {
  color: #1EA96D;
  background-color: #EDF8F3;
}


.team_status.inactive {
  color: #EC1D23;
  background-color: #FDEDED;
}

.add_btn {
  padding: 5px;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 50% !important;
  background-color: #B9A44C;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add_btn_mini {
  padding: 5px;
  color: #FFFFFF !important;
  font-weight: 500 !important;
  border-radius: 50% !important;
  background-color: #B9A44C;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add_btn_mini .plus {
  font-size: 10px;
}

.filter_box {
  padding: 5px;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  background-color: #F5F5F5;
  border: 1px solid #E6EAEF;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.add_btn:hover {
  color: #FFFF;
}


.payment_status {
  padding: 7px 15px 7px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 18px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.payment_status::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.payment_status.paid {
  color: #037847;
  background-color: #ECFDF3;
}

.payment_status.paid::before {
  background-color: #037847;
}


.payment_status.unpaid {
  color: #F37F75;
  background-color: #F37F751F;
}

.payment_status.unpaid::before {
  background-color: #F37F75;
}

.payment_status.partial {
  color: #225ECC;
  background-color: #225ECC1F;
}

.payment_status.partial::before {
  background-color: #225ECC;
}


.order_status {
  padding: 7px 15px 7px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 18px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.order_status::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}

.order_status.delivered {
  color: #28A745;
}

.order_status.delivered::before {
  background-color: #28A745;
}

.order_status.shipping {
  color: #007BFF;
}

.order_status.shipping::before {
  background-color: #007BFF;
}

.order_status.cancelled {
  color: #DC3545;
}

.order_status.cancelled::before {
  background-color: #DC3545;
}

.order_status.panding {
  color: #FFC107;
}

.order_status.panding::before {
  background-color: #FFC107;
}


.custom-btn {
  background-color: #392900;
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-btn[type="date"] {
  color-scheme: dark;
  /* Change this to "light" or "dark" */
}




.drop_down {
  background-color: transparent;
}

.custom-button {
  border: 1px solid black;
  color: #4b3621;
  background-color: transparent;
  padding: 8px 15px;
  border-radius: 6px;
}

.custom-button:hover {
  background-color: #f8f9fa;
}

.custom-button .dropdown-toggle::after {
  margin-left: 0.5rem;
  color: #4b3621;
}








.status-dropdown {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  text-wrap: nowrap;
}

.status-dropdown i {
  margin-left: 5px;
}

.status-dropdown {
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
}

.status-dropdown:has(option[value="pending"]:checked) {
  background-color: #FF7B071A;
  color: #FF7B07;
}

.status-dropdown:has(option[value="approved"]:checked) {
  background-color: #0378471A;
  color: #037847;
}

.status-dropdown:has(option[value="rejected"]:checked) {
  background-color: #E65C5C1A;
  color: #E55C5C;
}



.priority {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;

}

.priority_status {
  border-radius: 3px;
  width: 55px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.priority_status img {
  width: 15px
}

.priority_status.high {
  color: #EC2831;
}

.priority_status.medium {
  border: 1px solid #FFAA2C;
  background-color: #FFAA2C1A;
}


.priority_status.low {
  border: 1px solid #1EA96D;
  background-color: #1EA96D1A;
}

.priority_status.high svg path {
  fill: #FF0000;
}

.priority_status.medium svg path {
  fill: #FFAA2C;
}

.priority_status.low svg path {
  fill: #1EA96D;
}

.task_status.pending {
  background-color: #FF7B071A;
  color: #FF7B07;

}

.task_status.query {
  background-color: #673AB714;
  color: #673AB7;

}

.task_status {
  padding: 5px 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-block;
}

.task_status.completed {
  background-color: #0378471A;
  color: #037847;

}

.main_form_section {
  padding: 15px;
  background-color: #fff;
  border-radius: 12px;
}

.back_row a {
  color: #151515 !important
}

.back_row .add_title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  color: #121212
}

.plus_add_icon {
  font-size: 30px;
  color: #453D1C;
  cursor: pointer;
}

.main_common_add_box {
  background-color: #CBAD671F;
  padding: 20px;
  border-radius: 12px;
}

.main_common_add_box .main_contact_icon {
  background-color: #CBAD67;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px
}

.main_common_add_box .main_contact_box_area {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.main_common_add_box .main_contact_box_area .customer_icon_name {
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #392900
}


.mobile_number_icon {
  width: 50px;
  height: 50px;
  background-color: #6574881A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.phon_name {
  color: #121212;
  font-weight: 500;
}


.phon_number {
  color: #657488;
}


.main_address {
  color: #121212;
  font-weight: 500;

}



.address_name {
  color: #657488;

}


.email_id {
  color: #121212;
  font-weight: 500;

}

.email_name {
  color: #657488;

}



.req_name {
  color: #121212;
  font-weight: 600;
  font-size: 20px;
}



.delete_box_icon {
  width: 35px;
  height: 35px;
  padding: 7px;
  border-radius: 50%;
  background-color: #F7F7F8;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 5px;
}


.delete_box_icon img {
  width: 100%;
  color: #2E2913;
}

.copy_box_icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #52BBFF1A;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


.input_box .percentage_name {
  color: #121212;
  font-weight: 600;
}


.vendor_name {
  color: #121212;
  font-weight: 500;
  font-size: 20px;
}


.lead_box {
  font-weight: 600;
  color: #121212;
  font-size: 20px;
  margin-bottom: 10px;
}


.follow_up {
  font-weight: 600;
  color: #121212;
  font-size: 20px;
}



.conversation_box {
  background-color: #F7F7F8;
}

.conv_content {
  color: #657488;
  border-bottom: 1px solid black;
  padding: 5px;
}


.conv_folloe {
  color: #404040;
}

.conv_date {
  color: #727272;
}


.conv_title {
  font-weight: 500;
  color: #121212;
}


.order_details_box {
  background-color: #FFFFFF;
  border: 1px solid #E8ECF4;
  border-radius: 9px;
  padding: 15px;
}

.detail_box {
  margin-bottom: 20px;
}

.detail_box .detail_key {
  color: #404040;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.detail_box .detail_value {
  color: #657488;
  font-size: 16px;
  font-weight: 500;
}

.alert_box {
  padding: 15px 20px;
  border: 1px solid #808080;
  border-radius: 8px;
  background-color: #FFFFE0;
  margin-bottom: 15px;
}

.alert_box h4 {
  padding-bottom: 7px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  color: #FC1616;
}

.alert_box p {
  color: #808080;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.order_title {
  color: #121212;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.order_name {
  color: #404040;
}

.ord_dis {
  color: #657488;
}



.order_data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 778px) {
  .login_section {
    padding: 20px !important;
  }

  .login_part {
    order: 1;
  }

  .logo_part {
    order: 0;
    margin-bottom: 30px;
  }

  .main_logo_part {
    justify-content: center;
  }

  .main_logo_part img {
    width: 60% !important;
  }

  .login_section .inner_login_section {
    padding: 0 !important;
  }
}



.main_tab .nav-link {
  border: 1px solid #E6EAEF;
  color: #030B16;
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  margin-right: 0.5rem;
  font-weight: 500;
  background-color: white;
}

.main_tab .nav-link.active {
  background-color: #453D1C;
  color: #fff;

}


.main_tab.grey_nav .nav-link.active {
  background-color: #71839B;
  color: #fff;
  text-decoration: none;
}



.sim_img {
  border-radius: 6px;
  width: 50px;
}

.operator_sim_img {
  width: 35px;
}

.main_operator_box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.main_operator_box .operator_sim_img {
  border-radius: 6px;
}

.main_stock_box {
  border: 1px solid #E0E0E0;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
}

.main_stock_box img {
  width: 100%;
}

.status_select {
  background-color: #1EA96D1A;
  padding: 7px 15px;
  font-size: 16px;
  color: #1EA96D;
  border-radius: 6px;
  border: 0
}

.operator_select_box {
  background-color: #71839B;
  padding: 7px 15px;
  font-size: 16px;
  color: #fff;
  border-radius: 6px;
  border: 1px solid #71839B
}

.operator_select_box.outline {
  background-color: transparent;
  border: 1px solid #71839B;
  color: #71839B;
}

.operator_tab_part {
  padding: 20px;
  background-color: #F5F5F5;
}

.operator_tab_part .qty_badge {
  background-color: #DF4845;
  font-size: 14px;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
}

.long_nav {}

.long_nav .nav-item {
  width: 100%
}

.long_nav .nav {
  flex-wrap: nowrap
}

.long_nav .nav-link {
  width: 100%;
  background-color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 500;
  color: #929DA9 !important;

}

.long_nav .nav-link.active {
  color: #fff !important;
  background-color: #DF4845 !important;
}




.main_benefits_box {
  height: 80px;
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E0E0;
}


.main_benefits_box img {
  width: 100%;
  height: 100%;
}


.red_text {
  color: #E15144;
}

.red_text .free {
  border-right: 1px solid red;
}

.chart_box {
  border: 1px solid #E9EEF2;
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
}

.chart_box .chart_data .chart_label_round {
  display: inline-block;
  height: 18px;
  width: 18px;
  border-radius: 50%;
}

#stockChart,
#stock_bar_Chart {
  height: 100% !important;
  width: 100% !important
}

.chart_box .chart_data .chart_label_name {
  color: #121212;
  font-size: 16px;
  font-weight: 500;
}

.stock_bar_Chart {
  height: 200px;
}

.chart_box .chart_data .chart_label_data {
  color: #909090;
  font-size: 16px;
  font-weight: 500;
}

.chart_heading span {
  color: #151515;
  font-weight: 600;
  font-size: 18px;
}

.chart_heading select {
  border: none;
  color: #657488;
  font-weight: 600;
}

.chart_heading_main select {
  border: 1px solid #71839B;
  border-radius: 6px;
  color: #71839B;
  padding: 6px;
}


.main_common_img {
  border-radius: 8px;
  overflow: hidden;
  width: 50px;
  height: 50px;
}

.main_common_img img {
  width: 100%;
  height: 100%;
}


.team_member_box {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}


.team_member_box img {
  width: 100%;
  height: 100%;
}


.drowdown_btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
}


.main_team_box {
  background-color: white;
  border-radius: 6px;
  padding: 15px;
}


.dashed_border {
  padding-top: 10px;
  padding-bottom: 5px;
  border-top: 2px dashed #E0E0E0;
  width: 100%;
  display: block;
}


.heading_text {
  color: #8A8A8A;
  font-weight: 500;
}



.second_text {
  color: #121212;
  font-weight: 500;
}


.main_title {
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}

.normal_text2 {
  color: #9FA9B3;
  font-weight: 500;
  margin: 0;
}

.main_operator_box {
  border: 1px solid #E5E5E5;
  border-radius: 6px;
}

.main_current_stock_box {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 10px;
  background-color: white;
}


.main_current_title {
  font-weight: 600;
  color: #333333;
  font-size: 20px;
}


.main_current_stock_box .main_sim_box {
  background-color: #F5F5F5;
  padding: 10px;
  border-radius: 12px;
}

.main_sim_box .main_sim_card_box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}


.status-dropdown {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  text-wrap: nowrap;
}

.status-dropdown i {
  margin-left: 5px;
}

.status-dropdown {
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
}

.status-dropdown:has(option[value="Completed"]:checked) {
  background-color: #1EA96D1A;
  color: #1EA96D;
}

.status-dropdown:has(option[value="Pending"]:checked) {
  background-color: #E19C3E1A;
  color: #E19C3E;
}

.status-dropdown:has(option[value="Rejected"]:checked) {
  background-color: #FBEBEB;
  color: #D30909;
}


.header-area .main_a_box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #453D1C14;
}

.p1 {
  color: #453D1C;
  font-weight: 600;
}

.p2 {
  color: #453D1C;
}


.search_box input {
  padding: 10px;
  border-radius: 12px;
  border: 0.5px solid #453D1C;

}


.search_box input::placeholder {
  color: #363B4B;
}

.search_box .search_icon {
  position: absolute;
  right: 14px;
  top: 12px;
}


.search_box {
  position: relative;
}

.inner-main-content .main_project_box {
  background-color: white;
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid #DDDDDD;
  padding: 15px;
}


.main_project_box .main_project_content_box {
  border: 1px solid #E9EEF2;
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.normal_text_main {}




.status_main_btn {
  padding: 0px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 18px;
  display: inline-block;
  position: relative;
}

.status_main_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.status_main_btn.active {
  color: #1F964E;
}

.status_main_btn.inactive {
  color: #F43A4D;
}

.status_main_btn.active::before {
  background-color: #1F964E;
}

.status_main_btn.inactive::before {
  background-color: #F43A4D;
}

.border_class {
  border-bottom: 1px solid black;
}


.share_icon {
  width: 40px;
  height: 40px;
  background-color: #2E2913;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}


.progress-ring {
  width: 55px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-ring-inner {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  color: #2f2f2f;
}



.arrow_box {
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #DDDDDD;
}


.order-box {
  background-color: #F8F8F8;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  padding: 10px 15px;
  display: inline-block;
  color: #2D2D2D;
  font-weight: 500;
}


.main_add_project_box {
  background-color: white;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  margin-top: 15px;
  overflow: hidden;
}

.project_title {
  background-color: #FAF5DF;
  border-bottom: 1px solid #DDDDDD;
  padding: 7px 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.project_title2 {
  /* background-color: #FAF5DF; */
  border-bottom: 1px solid #DDDDDD;
  padding: 7px 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.inner_main_add_project_box {
  padding: 15px;
}

.map_box {
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}

.main_arrow {
  font-size: 25px;
  color: #02537B;
}




.custom-tab-nav {
  background-color: #fdfbf2;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  border: 1px solid #e0e0e0;
}

.custom-tab-nav .nav-link {
  flex: 1;
  text-align: center;
  background-color: #fdfbf2;
  color: #555;
  border-right: 1px solid #e0e0e0;
  border-radius: 0;
  font-weight: 500;
  padding: 12px 10px;
  transition: all 0.2s ease;
}

.custom-tab-nav .nav-link:last-child {
  border-right: none;
}

.custom-tab-nav .nav-link.active {
  background-color: #4d461c;
  color: #fff;
  font-weight: bold;
}

.tab-content {
  border: 1px solid #eee;
  border-top: none;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}

.members_headers .menus_row {
  display: flex;
  justify-content: space-between;
  overflow: auto;
}

.members_headers .menus_row a {
  padding: 15px 10px;
  background-color: #FFFEF8;
  border: 1px solid #DDDDDD;
  color: #647085;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.members_headers .menus_row a.active {
  border-color: #DDDDDD;
  background-color: #453D1C;
  color: #fff
}

.members_headers .menus_row a:first-child {
  border-radius: 0 0 0 12px;
}

.members_headers .menus_row a:last-child {
  border-radius: 0 0 12px 0;
}


.back_row {
  padding: 0 0 20px 0
}

.back_row a {
  font-size: 20px;
  color: #0094DC;
  ;
}



.tab-content {
  display: none;
  padding: 1rem;
  border: 1px solid #ccc;
  border-top: none;
}

input[name="tab-control"] {
  display: none;
}

.tab-label {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #E6EAEF;
  margin-right: -1px;
  background-color: #f8f9fa;
  border-radius: 12px;
}

input[name="tab-control"]:checked+.tab-label {
  background-color: #453D1C;
  color: #FFFFFF;
  border-bottom: 1px solid #E6EAEF;
  font-weight: bold;

}

#tab-all:checked~#content-all,
#tab-active:checked~#content-active,
#tab-inactive:checked~#content-inactive {
  display: block;
}

.main_task_detail_box {
  background-color: #F9FAFB;
  border-radius: 12px;
  padding: 15px;
}


.heading_text {
  font-weight: 600;
  color: #3A3A3A;
  font-size: 20px;
  margin-bottom: 0;
}


.main_drawing_box {
  background-color: #E6F2FF;
  border-radius: 12px;
}


.min_second_from {
  background-color: #E6F2FF;
  border-radius: 12px;
  padding: 15px;
}



.main_form_data .main_vendor_box {
  background-color: #F9FAFB;
  border-radius: 12px;

}

.main_vendor_box {
  background-color: #F9FAFB;
  border-radius: 12px;

}


.main_vendor_box .vendor_text1 {
  color: #657488;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}



.main_vendor_box .vendor_text2 {
  color: #453D1C;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
}



.main_form_data .main_inward_box {
  background-color: white;
  border: 1px solid #E9EEF2;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.bullet-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}


.custom-table-third .plus_th {
  background-color: #453D1C;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-top-right-radius: 10px;
}

.plus_th .add_new_btn {
  color: white;
}

.main_add_project_box .main_plus {
  font-size: 22px;
  color: #F37F75;
  padding-right: 10px;
}


.table-responsive2 {
  overflow: auto;
  white-space: nowrap;
}


.custom-table-second {
  width: 100%;
  border-collapse: collapse;

}

.custom-table-second thead th {
  border-bottom: 1px solid #E6EAEF;
  /* Thick bottom border for headers */
  background-color: #FFFF;
  padding: 10px;
  border-right: 1px solid #E6EAEF;
  text-align: left;
}

.custom-table-second thead tr th {
  color: #667085;
  font-family: "Kumbh Sans", sans-serif;
}

.custom-table-second tbody tr {
  border-bottom: 1px solid #EAECF0;

  background-color: white;
  /* Light bottom border for rows */
}

.custom-table-second td {
  padding: 10px;
  color: #667085;
}


.custom-table-second thead .main_hash {
  border-top-left-radius: 10px;
  overflow: hidden;

}


.custom-table-second .input_box {
  padding-bottom: 0;
}

.project_name {

  background-color: #65748814;
  color: #657488;
  margin-bottom: 0;
  padding: 6px;
  border-radius: 6px;
  font-weight: 500;
}


.main_form_data .vendor_detail {
  margin-bottom: 0;
  border-right: 2px solid #F37F75;
  padding-right: 10px;
  color: #646464;
  font-weight: 600;
  font-size: 16px;
}

.main_form_data .vendor_detail_2 {
  margin-bottom: 0;
  padding-right: 10px;
  color: #646464;
  font-weight: 600;
  font-size: 16px;
}


.main_form_data .new_vendor {
  margin-bottom: 0;
  color: #B9A44C;
  font-weight: 600;
  font-size: 16px;
}

.search_main_box .search-icon {
  position: absolute;
  left: 10px;
  top: 22px;
  bottom: 0;
  margin: auto;
}

.search_main_box input {
  padding-left: 40px !important;
}

.firm_box {
  padding: 12px;
  border-radius: 12px;
  background-color: #FDF0E6;
}

.firm_box .name {
  color: #453D1C;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}


.firm_box .number {
  font-size: 16px;
  font-weight: 500;
  color: #647085;
  margin-bottom: 0;
}

.firm_box .close-icon {
  font-size: 22px;
  color: #F37F75;
  display: inline-block;
  padding-left: 10px;
}

.main-accordian .accordion-item {
  margin-bottom: 20px;
  border-radius: 12px !important;
  border: 1px solid #E9EEF2 !important;
}


.main-accordian .accordion-item button {
  border-radius: 12px !important;
  background-color: transparent !important;
  border: 0 !important;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-accordian .accordion-button::after {
  display: none !important;
}

.main-accordian .accordion-button:not(.collapsed) {
  box-shadow: none !important;
  color: #453D1C !important;
}

.main-accordian .accordion-button:focus {
  box-shadow: none !important;
}

.main-accordian [aria-expanded="true"] .rotate-arrow {
  transform: rotate(180deg);
}


.members_headers {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #DDDDDD
}

.members_headers .back_row {
  padding: 15px
}

.members_headers .menus_row {
  display: flex;
  justify-content: space-between;
  overflow: auto;
}




.members_headers .menus_row a:first-child {
  border-radius: 0 0 0 12px;
}

.members_headers .menus_row a:last-child {
  border-radius: 0 0 12px 0;
}

.back_row {
  padding: 0 0 20px 0;
  background-color: white;

}

.back_row a {
  font-size: 20px;
  color: #0094DC;
  ;
}

.back_row .admission_text {
  color: #647085;
  font-size: 22px;
  font-weight: 600;
  padding-left: 10px;
}

.action_btn_new {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.action_btn_new img {
  width: 25px;
}

.admission_text {
  color: #647085;
  font-size: 22px;
  font-weight: 600;
  padding-left: 10px;
}


.main_add_project_box .project_box_heading .project_title {
  color: #453D1C;
  font-weight: 600;

}


.inner_main_add_project_box .input_box {
  padding-bottom: 0;
}

.main_sub_tab {
  padding: 7px 10px;
  background-color: white;
  border: 1px solid #E6EAEF;
  color: #646464;
  text-decoration: none;
  border-radius: 6px;
}

.main_sub_tab.active {
  background-color: #000;
  color: #fff;
}

.main_tab_box {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  align-items: center;
}





.custom-table-third {
  width: 100%;
  border-collapse: collapse;

}

.custom-table-third thead th {
  border-bottom: 1px solid #E6EAEF;
  /* Thick bottom border for headers */
  background-color: #F9FAFB;
  padding: 10px;
  border-right: 1px solid #E6EAEF;
  text-align: left;
}

.custom-table-third thead tr th {
  color: #667085;
  font-family: "Kumbh Sans", sans-serif;
}

.custom-table-third tbody tr {
  border-bottom: 1px solid #EAECF0;

  background-color: white;
  /* Light bottom border for rows */
}

.custom-table-third td {
  padding: 10px;
  color: #667085;
  vertical-align: top;
}


.custom-table-third thead .main_hash {
  border-top-left-radius: 10px;
  overflow: hidden;

}


.custom-table-third .input_box {
  padding-bottom: 0;
}


.input_box .electrical_select {
  min-width: 100px;
  color: #647085 !important;
}



.custom-table-third .input_box ::placeholder {
  color: #647085 !important;
}

.custom-table-third .input_box .second_input {
  min-width: 200px;
}



.custom-table-third tfoot .total_text {
  font-size: 25px;
  color: #C8CBD1;
  font-weight: 700;

}

.custom-table-third .total_text {
  font-size: 16px;
  color: #C8CBD1;
  font-weight: 700;

}

.custom-table-third .end_total {
  border-bottom: 1px solid #E6EAEF;
}

.custom-table-third tfoot .new_black_text {
  font-size: 16px;
  color: #453D1C;
  font-weight: 500;
  margin-bottom: 0;

}

.custom-table-third .new_black_text {
  font-size: 18px;
  color: #453D1C;
  font-weight: 500;
  margin-bottom: 0;

}

.custom-table-third tfoot .red_text {
  font-size: 14px;
  color: #F37F75;
  margin-bottom: 0;

}

.custom-table-third tfoot .red_text_main {
  font-size: 16px;
  color: #F37F75;
  margin-bottom: 0;

}


.custom-table-third tfoot .gray_text {
  color: #647085;
}



.main_vendor_box .user_icon {
  color: #F37F75;
}

.main_vendor_box .vendor_text_red {
  color: #F37F75;
  margin-bottom: 0;
  font-weight: 600;
}

.vendor_text_red {
  color: #F37F75;
  margin-bottom: 0;
  font-weight: 600;
}

.vendor_text2 {
  color: #453D1C;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
}


.inner_main_add_project_box .main_site_image_box {
  border-radius: 12px;
  overflow: hidden;
}




.status_btn_view {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  text-wrap: nowrap;
}

.status_btn_view.reject {
  color: #8B0D0D;
  background-color: #8B0D0D14;
}

.status_btn_view.approve {
  color: #0D8B29;
  background-color: #0D8B2914;
}


.new_heafing_text {
  margin-bottom: 0;
  border-right: 2px solid #52575C;
  padding-right: 8px;
  color: #52575C;
  font-weight: 500;
}

.new_heafing_text2 {
  margin-bottom: 0;
  padding-left: 5px;
  color: #52575C;
  font-weight: 500;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

#modal-toggle:checked~.modal {
  display: flex;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  position: relative;
}

.close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 24px;
}

.button {
  display: inline-block;
  padding: 8px 16px;
  background: #555;
  color: white;
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  margin-right: 10px;
}

input[type="checkbox"].modal-checkbox:checked {
  accent-color: #F37F75;
}

/* Set custom check color */
.form-check-input:checked {
  accent-color: #F37F75;
}

/* Prevent any opacity or background change */
.form-check-input:focus,
.form-check-input:active,
.form-check-input:checked {
  opacity: 1 !important;
  background-color: #F37F75 !important;
  box-shadow: none !important;
  border-color: #F37F75 !important;
}

/* Set the custom color for checked checkboxes */
.modal-checkbox {
  accent-color: #F37F75;
}

/* Optional: Remove box-shadow and focus effect if Bootstrap adds any */
.modal-checkbox:focus {
  box-shadow: none !important;
}

.outline-none {
  outline: none !important;
  box-shadow: none !important;
}