@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: #fff;

  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: #fff !important;
} */

.sidebar-menu .sidebar-header {
  padding: 0;
  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: white;
  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;
}



.header-area {
  background-image: url("../images/bg_main_img.png");
  width: 100%;
  background-size: cover;
}

.header-area .main_admin_box {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background-color: #FFFFFF14;
  display: flex;
  justify-content: center;
  align-items: center;

}

.admin_text {
  margin-bottom: 0;
  color: white;
}



.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: #505050;
  line-height: normal;
  margin: 0
}

.dark_text {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  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: #FFFF;
  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: #02537B;
  border-radius: 6px;
}

#menu .metismenu li:hover a span,
#menu .metismenu li.active a span {
  color: white
}

#menu .metismenu li:hover a svg path,
#menu .metismenu li.active a svg path {
  fill: white;
}



.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: #808080;
}

#menu .metismenu .item .link[aria-expanded=true]:after {
  transform: rotate(45deg) !important;
  right: 20px;
}

.metismenu {
  padding: 0 25px 70px 25px;
}

.inner-main-content {
  padding: 25px;
  background-color: #F5F5F5;
  min-height: calc(100vh - (3.5rem + 1px) - (3.5rem + 1px)) !important;
}

.main-btn {
  background-color: #121212;
  display: inline-block;
  padding: 17px 48px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #fff !important;
  box-shadow: 0px 4px 19px 0px #1212124D;
  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%;
  padding: 20px;
  border-radius: 18px;

}



.logout_text {
  font-size: 16px;
  font-weight: 600;
  color: #FF5275 !important;
  padding: 15px 25px;
  border-top: 1px solid #12121233;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}

.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: #F7F7F8;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #2C2C2C;
  padding: 10px
}

.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: login-btn;
  box-shadow: 0px 4px 19px 0px #1212124D;

}

.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
  }  */
.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: 5px 18px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  display: inline-block;
  position: relative;
}



.status_btn.active {
  color: #1F964E;
  background-color: #1F964E1A;
}

.status_btn.inactive {
  color: #FF5275;
  background-color: #FF52751A;
}


.status_btn {
  padding: 5px 18px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  display: inline-block;
  position: relative;
}



.status_btn.upcoming {
  color: #1F964E;
  background-color: #1F964E1A;
}

.status_btn.expired {
  color: #FF5275;
  background-color: #FF52751A;
}


/* 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) #F7F7F8 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;
}

.main_data_box .input_box {
  padding-bottom: 0;

  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 #E6EAEF;
}

.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: #003A31 !important;
  border-color: #D1D1D1 !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: #2C2C2C;
}

.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: #DF4845 !important;
  border: 0 !important;
  border-radius: 4px;
  color: #fff !important;
}

.page-item.disabled {
  opacity: 0.5;
}


/* 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: 40px;
  height: 40px;
  border: 1px solid transparent;
  display: flex;
  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: #F5F5F5 !important;
  color: #8C8C8C !important;
  border-radius: 0 !important;
  padding-left: 45px !important;
}



.menu-level-2 li a:hover,
.menu-level-2 li a.inner_active {
  background-color: #3929001F !important;
  color: #392900 !important;
}


.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;
  border: 1px solid #E6EAEF;

}

.custom-table thead th {
  border-bottom: 1px solid #E6EAEF;
  /* Thick bottom border for headers */
  background-color: #F2F2F2;
  padding: 10px;
  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;
  /* 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 #0D47A1;

}

.custom-radio:checked+.custom-label::before {
  background-color: #0D47A1;
  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: white;
}


.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: #02537B;
}





.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;
}


.gallery_status {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  text-wrap: nowrap;
}

.gallery_status.display {
  color: #1EA96D;
  background-color: #EDF8F3;
}



.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: 12px !important;
  background-color: #02537B;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add_btn .main_plus {
  font-size: 22px;
}

.filter_box {
  padding: 5px;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  background-color: #FFFFFF;
  border: 1px solid #E6EAEF;
  height: 48px;
  width: 48px;
  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: #F8F8F8;
  color: #2D2D2D !important;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
}

.custom-btn[type="date"] {
  color-scheme: #2D2D2D;
  border: 1px solid #DDDDDD;

  /* 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: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.priority_status img {
  width: 15px
}

.priority_status.high {
  border: 1px solid #FF0000;
  background-color: #FF00001A;
}

.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 {
  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: 40px;
  height: 40px;
  padding: 7px;
  border-radius: 50%;
  background-color: #FF52751A;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


.delete_box_icon img {
  width: 100%;
}

.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: #e74c3c;
  color: #fff;
}


.main_tab.grey_nav .nav-link.active {
  background-color: #71839B;
  color: #fff;
}



.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: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
}


.main_header_content .drowdown_btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
}

.main_header_content .main_new_edit {
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: #505050;
  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;
}


.main_advocate_box {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: #0D47A11A;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_advocate_box img {
  width: 22px;
  height: 22px;
}


.main_reload_box {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: #0D47A1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_reload_box img {
  width: 20px;
  height: 20px;
}



.main_searchbar_row {
  background-color: #032F44;
  padding: 8px 0px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px
}

.main_searchbar_row .common_box {
  height: 45px;
  width: 45px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 6px;
}

.main_searchbar_row .search_box input {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #032F44;
  border-radius: 6px;
  border: 0
}

.main_searchbar_row .search_box .search_icon {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.main_searchbar_row .common_box img {
  width: 100%;
}


.main_content {
  background-color: white;
  border-radius: 12px;
  border: 1px solid #DDDDDD;
  margin-top: 25px;
  padding: 15px;
}


.main_content .inner_main_box {
  border: 1px solid #E9EEF2;
  margin-top: 15px;
  padding: 15px;
  border-radius: 12px;
}

.main_category_box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;

}


.main_border {
  border: 1px solid #E5E5E5;
}


.main_heading {
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #DDDDDD;
}

.arrow_box {
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #DDDDDD;
}

.main_arrow {
  font-size: 25px;
  color: #02537B;
}

.title_text {
  font-weight: 600;
  font-size: 20px;
  color: #647085;
}

.main_form_data {
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #DDDDDD;
  margin-top: 15px;
}


.main_size_box {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid#DDDDDD;
}





.item_status {
  padding: 7px 15px 7px 25px;

  font-size: 16px;
  font-weight: 500;
  border-radius: 18px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.item_status::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.item_status.paid {
  color: #029769;
}

.item_status.paid::before {
  background-color: #029769;

}

.item_status.unpaid {
  color: #EC3237;
}

.item_status.unpaid::before {
  background-color: #EC3237;

}



.item_status_success {
  padding: 7px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.item_status_success.panding {
  color: #FFC107;
  background-color: #FFC1071A;
}

.item_status_success.partial {
  color: #2196F3;
  background-color: #2196F31A;
}


.item_status_success.delivered {
  color: #1F964E;
  background-color: #1EA96D1A;
}


.order-box {
  background-color: #F8F8F8;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  padding: 10px 15px;
  display: inline-block;
  color: #2D2D2D;
  font-weight: 500;
}


.main_form_data .main_order_content_box {
  background-color: #F9FAFB;
  padding: 15px;
  border-radius: 12px;
}


.main_order_content_box .first_p {
  color: #02537B;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}


.main_order_content_box .second_p {
  color: #453D1C;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.main_order_content_box .third_p {
  color: #453D1C;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}

.main_data_box {
  background-color: #F9FAFB;
  padding: 15px;
  border-radius: 12px;
}


.price_box {
  background-color: #EDF5F9;
  border: 1px solid #EAECF0;
  display: inline-block;
  padding: 10px 15px;
  main_form_datamain_form_datamain_form_data
}




.form-control {
  border: 1px solid #E6EAEF;
}


.main_banner_box {
  height: 80px;
  width: 100px;
  display: flex;
  align-items: center;
}


.main_normal_text {
  text-decoration: none;
}

.left-half {
  background-color: #1E2E1E;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.right-half {
  background-color: #F9FFF9;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.main_login_box {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
}

.main_login_box h3 {
  font-weight: 700;
  font-size: 28px;
}

.main_login_box p {
  margin-bottom: 20px;
  color: #666;
}

.login_input p {
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.login_input input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.field-icon {
  position: absolute;
  top: 59%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa;
}

@media (max-width: 375px) {
  .row-wrapper {
    flex-direction: column;
  }

  .left-half,
  .right-half {
    flex: none;
    height: 50vh;
  }

  .side-img {
    display: none !important;
  }

  .main_login_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.login-btn {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  width: 100%;
}

.login-center-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.row-wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.half-col img {
  width: 300px;
}