/*Sidemenu CSS*/
.sidemenu-area {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 280px;
  z-index: 1050;
  transition: var(--transition);
  background-color: #ffffff;
}

.sidemenu-area .sidemenu-header {
  background-color: #ffffff;
  padding: 0 30px;
  border-bottom: 1px solid #f2f4f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
  width: 100%;
  transition: var(--transition);
}

.sidemenu-area .sidemenu-header .navbar-brand {
  padding: 0;
}

.sidemenu-area .sidemenu-header .navbar-brand .logo-two {
  display: none;
}

.sidemenu-area .sidemenu-header .responsive-burger-menu {
  cursor: pointer;
  transition: var(--transition);
}

.sidemenu-area .sidemenu-header .responsive-burger-menu span {
  height: 1px;
  width: 25px;
  background: var(--mainColor);
  display: block;
  margin: 6px 0;
  transition: all 0.5s ease-in-out;
}

.sidemenu-area .sidemenu-header .responsive-burger-menu.active span.top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.sidemenu-area .sidemenu-header .responsive-burger-menu.active span.middle-bar {
  opacity: 0;
}

.sidemenu-area .sidemenu-header .responsive-burger-menu.active span.bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
  margin-top: 5px;
}

.sidemenu-area .sidemenu-body {
  max-height: calc(100% - 80px);
  position: relative;
  height: 100%;
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.1);
  background-color: #ffffff;
  overflow: hidden;
}

.sidemenu-area .sidemenu-body .sidemenu-nav {
  padding: 0 0 90px;
  list-style-type: none;
  margin-bottom: 0;
}

.sidemenu-area .sidemenu-body .sidemenu-nav .nav-item .nav-link {
  color: #7e7e7e;
  padding: 12px 30px 12px;
  position: relative;
  z-index: 1;
}

.sidemenu-area .sidemenu-body .sidemenu-nav .nav-item .nav-link .icon {
  color: var(--titleColor);
  transition: var(--transition);
  display: inline-block;
  margin-left: 5px;
  font-size: 22px;
  position: relative;
  top: 5px;
}

.sidemenu-area .sidemenu-body .sidemenu-nav .nav-item .nav-link:hover {
  background-color: #fafafa;
  color: #00CA99;
}

.sidemenu-area .sidemenu-body .sidemenu-nav .nav-item .nav-link:hover .icon {
  transform: rotateY(-180deg);
  color: #00CA99;
}

.sidemenu-area .sidemenu-body .sidemenu-nav .nav-item.active .nav-link {
  background-color: #fafafa;
  color: #00CA99;
}

.sidemenu-area .sidemenu-body .sidemenu-nav .nav-item.active .nav-link .icon {
  color: var(--mainColor);
}

/*================================================
Dashboard Area CSS
=================================================*/
.main-dashboard-content {
  transition: var(--transition);
  overflow: hidden;
  background-color: #fafafa;
  min-height: 100vh;
  padding-left: 30px;
  padding-right: 310px;
  padding-top: 135px;
}

.main-dashboard-content .navbar-area {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
  z-index: 999;
  height: auto;
  top: 0;
  right: 280px;
  width: calc(100% - 280px);
  animation: unset !important;
}

.main-dashboard-content .navbar-area .desktop-nav {
  padding: 5px 30px;
  background-color: #ffffff;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options {
  margin-right: auto;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle {
  padding: 0;
  color: var(--bodyColor);
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle::after {
  display: none;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle::before {
  content: "\ea4e";
  position: absolute;
  left: 0;
  transition: var(--transition);
  top: 5px;
  font-size: 20px;
  font-family: "remixicon";
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle span {
  position: relative;
  top: 1px;
  color: var(--bodyColor);
  transition: var(--transition);
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle span::before {
  display: none;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle:hover::before {
  color: var(--mainColor);
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle:hover span {
  color: var(--mainColor);
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item .menu-profile img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 8px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu {
  padding: 15px 15px 10px;
  min-width: 230px;
  max-width: 280px;
  position: absolute;
  left: 0;
  right: auto;
  border-radius: 2px;
  margin-top: 20px;
  border: none;
  display: block;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: var(--whiteColor);
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header {
  padding: 0;
  border-bottom: 1px solid #f2f4f9;
  margin-right: -15px;
  margin-left: -15px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure {
  position: relative;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure img {
  width: 70px;
  height: 70px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .name {
  display: block;
  color: var(--titleColor);
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .email {
  color: var(--mainColor);
  font-size: 15px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul {
  padding-right: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item {
  margin-right: 0;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link {
  color: var(--bodyColor);
  padding: 5px 38px 5px 15px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link span {
  color: var(--bodyColor);
  display: block;
  font-weight: 400;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link i {
  color: var(--mainColor);
  transition: var(--transition);
  position: absolute;
  right: 15px;
  top: 4px;
  font-size: 16px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover span {
  color: var(--bgColor);
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer {
  margin: 10px -15px 0;
  padding: 10px 15px 0;
  border-top: 1px solid #eeeeee;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul {
  padding-right: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link {
  color: red;
  padding: 5px 38px 5px 15px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link span {
  color: red;
  display: block;
  font-weight: 400;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link i {
  color: red;
  transition: var(--transition);
  position: absolute;
  right: 15px;
  top: 7px;
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}

.main-dashboard-content .navbar-area .desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu.show {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.main-dashboard-content .navbar-area.is-sticky {
  top: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.main-dashboard-content .navbar-area.is-sticky .desktop-nav {
  position: fixed;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  right: 280px;
}

.main-dashboard-content .responsive-burger-menu {
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 9999;
  width: 30%;
}

.main-dashboard-content .responsive-burger-menu span {
  height: 1px;
  width: 25px;
  background: var(--titleColor);
  display: block;
  margin: 5px 0;
  transition: all 0.5s ease-in-out;
}

.main-dashboard-content .responsive-burger-menu.active span.top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.main-dashboard-content .responsive-burger-menu.active span.middle-bar {
  opacity: 0;
}

.main-dashboard-content .responsive-burger-menu.active span.bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
  margin-top: 5px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item {
  margin-right: auto;
  text-align: center;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .dropdown-bs-toggle {
  padding: 0;
  color: var(--bodyColor);
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .dropdown-bs-toggle::after {
  display: none;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .dropdown-bs-toggle::before {
  content: "\ea4e";
  position: absolute;
  left: 0;
  transition: var(--transition);
  top: 5px;
  font-size: 20px;
  font-family: "remixicon";
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .dropdown-bs-toggle span {
  position: relative;
  top: 1px;
  color: var(--bodyColor);
  transition: var(--transition);
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .dropdown-bs-toggle span::before {
  display: none;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .dropdown-bs-toggle:hover::before {
  color: var(--mainColor);
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .dropdown-bs-toggle:hover span {
  color: var(--mainColor);
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item .menu-profile img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 8px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu {
  padding: 15px 15px 10px;
  min-width: 230px;
  max-width: 280px;
  position: absolute;
  left: 0;
  right: auto;
  border-radius: 2px;
  margin-top: 20px;
  border: none;
  display: block;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: var(--whiteColor);
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-header {
  padding: 0;
  border-bottom: 1px solid #f2f4f9;
  margin-right: -15px;
  margin-left: -15px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure {
  position: relative;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure img {
  width: 80px;
  height: 80px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-header .name {
  display: block;
  color: var(--titleColor);
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-header .email {
  color: var(--mainColor);
  font-size: 15px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul {
  padding-right: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item {
  margin-right: 0;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link {
  color: var(--bodyColor);
  padding: 5px 38px 5px 15px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link span {
  color: var(--bodyColor);
  display: block;
  font-weight: 400;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link i {
  color: var(--mainColor);
  transition: var(--transition);
  position: absolute;
  right: 15px;
  top: 7px;
  font-size: 16px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover span {
  color: var(--mainColor);
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-footer {
  margin: 10px -15px 0;
  padding: 10px 15px 0;
  border-top: 1px solid #eeeeee;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul {
  padding-right: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link {
  color: red;
  padding: 5px 38px 5px 15px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link span {
  color: red;
  display: block;
  font-weight: 400;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link i {
  color: red;
  transition: var(--transition);
  position: absolute;
  right: 15px;
  top: 7px;
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}

.main-dashboard-content .side-nav-responsive .side-nav-inner .side-nav .option-item .profile-nav-item.dropdown .dropdown-menu.show {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.main-dashboard-content .others-option-for-responsive .dot-menu {
  left: 40px;
  top: -28px;
}

.main-dashboard-content .others-option-for-responsive .container {
  max-width: 100% !important;
}

.main-dashboard-content .others-option-for-responsive .container .container {
  max-width: 192px !important;
}

.main-dashboard-content .others-option-for-responsive .others-options {
  margin-right: auto;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle {
  padding: 0;
  color: var(--bodyColor);
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle::after {
  display: none;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle::before {
  content: "\ea4e";
  position: absolute;
  left: 0;
  transition: var(--transition);
  top: 5px;
  font-size: 20px;
  font-family: "remixicon";
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle span {
  position: relative;
  top: 1px;
  color: var(--bodyColor);
  transition: var(--transition);
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle span::before {
  display: none;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle:hover::before {
  color: var(--mainColor);
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle:hover span {
  color: var(--mainColor);
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item .menu-profile img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 8px;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu {
  padding: 15px 15px 10px;
  min-width: 230px;
  max-width: 280px;
  position: absolute;
  left: 0;
  right: auto;
  border-radius: 2px;
  margin-top: 20px;
  border: none;
  display: block;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: var(--whiteColor);
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header {
  padding: 0;
  border-bottom: 1px solid #f2f4f9;
  margin-right: -15px;
  margin-left: -15px;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure {
  position: relative;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure img {
  width: 80px;
  height: 80px;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .name {
  display: block;
  color: var(--titleColor);
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .email {
  color: var(--mainColor);
  font-size: 15px;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul {
  padding-right: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item {
  margin-right: 0;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link {
  color: var(--bodyColor);
  padding: 5px 38px 5px 15px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link span {
  color: var(--bodyColor);
  display: block;
  font-weight: 400;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link i {
  color: var(--mainColor);
  transition: var(--transition);
  position: absolute;
  right: 15px;
  top: 7px;
  font-size: 16px;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover span {
  color: var(--mainColor);
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer {
  margin: 10px -15px 0;
  padding: 10px 15px 0;
  border-top: 1px solid #eeeeee;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul {
  padding-right: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link {
  color: red;
  padding: 5px 38px 5px 15px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link span {
  color: red;
  display: block;
  font-weight: 400;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link i {
  color: red;
  transition: var(--transition);
  position: absolute;
  right: 15px;
  top: 7px;
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}

.main-dashboard-content .others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu.show {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.main-dashboard-content .copyrights-area {
  padding-top: 5px;
  padding-bottom: 35px;
}

.main-dashboard-content .copyrights-area p {
  line-height: initial;
  margin-bottom: 0;
}

.main-dashboard-content .copyrights-area p i {
  position: relative;
  right: 0;
  top: 2px;
}

.main-dashboard-content .copyrights-area p a {
  font-weight: 500;
  color: var(--mainColor);
}

/*Breadcrumb CSS*/
.breadcrumb-area {
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.breadcrumb-area h1 {
  margin-bottom: 0;
  position: relative;
  color: var(--titleColor);
  padding-left: 15px;
  font-size: 25px;
  font-weight: 500;
}

.breadcrumb-area h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background: #cecece;
}

.breadcrumb-area .breadcrumb {
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding-right: 15px;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  top: 1px;
}

.breadcrumb-area .breadcrumb .item {
  color: var(--bodyColor);
  margin-left: 25px;
  position: relative;
}

.breadcrumb-area .breadcrumb .item a {
  display: block;
  color: var(--bodyColor);
}

.breadcrumb-area .breadcrumb .item a:hover {
  color: var(--mainColor);
}

.breadcrumb-area .breadcrumb .item::before {
  content: "\ea6e";
  position: absolute;
  left: -22px;
  top: -1px;
  color: var(--bodyColor);
  font-family: "remixicon";
  font-size: 18px;
}

.breadcrumb-area .breadcrumb .item:last-child {
  margin-left: 0;
}

.breadcrumb-area .breadcrumb .item:last-child::before {
  display: none;
}

/*Notification Alert CSS*/
.notification-alert {
  margin-bottom: 30px;
  background-color: #e6f3d8;
  border: none;
  padding: 20px;
  color: #5f9025;
  border-radius: 5px;
}

.notification-alert .close {
  transition: var(--transition);
  background-color: transparent;
  border: none;
  font-size: 20px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #5f9025;
}

.notification-alert .close:hover {
  color: var(--mainColor);
}

/*Dashboard Fun Fact CSS*/
.dashboard-fun-fact-area .col-lg-3:nth-child(2) .stats-fun-fact-box {
  background-color: #64bc36;
}

.dashboard-fun-fact-area .col-lg-3:nth-child(2) .stats-fun-fact-box .icon-box {
  color: #64bc36;
}

.dashboard-fun-fact-area .col-lg-3:nth-child(3) .stats-fun-fact-box {
  background-color: #ffae00;
}

.dashboard-fun-fact-area .col-lg-3:nth-child(3) .stats-fun-fact-box .icon-box {
  color: #ffae00;
}

.dashboard-fun-fact-area .col-lg-3:nth-child(4) .stats-fun-fact-box {
  background-color: #f3103c;
}

.dashboard-fun-fact-area .col-lg-3:nth-child(4) .stats-fun-fact-box .icon-box {
  color: #f3103c;
}

.stats-fun-fact-box {
  margin-bottom: 30px;
  padding: 35px 115px 34px 25px;
  border-radius: 5px;
  position: relative;
  background-color: var(--mainColor);
}

.stats-fun-fact-box .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  position: absolute;
  right: 25px;
  top: 48%;
  transform: translateY(-48%);
  box-shadow: 1px 5px 24px 0 rgba(14, 198, 198, 0.15);
  text-align: center;
  font-size: 35px;
}

.stats-fun-fact-box .icon-box i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.stats-fun-fact-box .sub-title {
  color: var(--whiteColor);
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}

.stats-fun-fact-box h3 {
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 35px;
  font-weight: bold;
}

/*Notifications and Invoices CSS*/
.recent-notifications-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
}

.recent-notifications-box h3 {
  margin-bottom: 0;
  padding: 20px 25px 20px;
  border-bottom: 1px dashed #eeeeee;
  font-size: 20px;
  font-weight: 600;
}

.recent-notifications-box ul {
  padding-right: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.recent-notifications-box ul li {
  border: none;
  margin-bottom: 0;
  border-bottom: 1px dashed #eeeeee;
  border-radius: 0;
  transition: var(--transition);
  color: var(--bodyColor);
  position: relative;
  padding-right: 75px;
  padding-left: 45px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: 400;
}

.recent-notifications-box ul li .icon {
  height: 40px;
  width: 40px;
  color: var(--mainColor);
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  transition: var(--transition);
  background-color: #DDF6ED;
  position: absolute;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.recent-notifications-box ul li span {
  color: var(--titleColor);
  font-weight: 500;
}

.recent-notifications-box ul li strong {
  font-weight: 500;
  color: var(--mainColor);
}

.recent-notifications-box ul li:last-child {
  border-bottom: none;
}

.recent-notifications-box ul li .close {
  transition: var(--transition);
  background-color: transparent;
  border: none;
  font-size: 30px;
  position: absolute;
  left: 20px;
  top: 45%;
  transform: translateY(-45%);
  color: #DDF6ED;
  opacity: 0;
  visibility: hidden;
}

.recent-notifications-box ul li .close:hover {
  color: var(--mainColor);
}

.recent-notifications-box ul li:hover {
  background-color: #f9f9f9;
}

.recent-notifications-box ul li:hover .icon {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.recent-notifications-box ul li:hover .close {
  opacity: 1;
  visibility: visible;
}

/*Invoice CSS*/
.invoices-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
}

.invoices-box h3 {
  margin-bottom: 0;
  padding: 20px 25px 20px;
  border-bottom: 1px dashed #eeeeee;
  font-size: 20px;
  font-weight: 600;
}

.invoices-box ul {
  padding-right: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.invoices-box ul li {
  border: none;
  margin-bottom: 0;
  border-bottom: 1px dashed #eeeeee;
  border-radius: 0;
  transition: var(--transition);
  color: var(--bodyColor);
  position: relative;
  padding-right: 80px;
  padding-left: 170px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.invoices-box ul li .icon {
  height: 40px;
  width: 40px;
  color: var(--mainColor);
  text-align: center;
  line-height: 43px;
  border-radius: 50%;
  transition: var(--transition);
  background-color: #DDF6ED;
  position: absolute;
  font-size: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.invoices-box ul li span {
  display: block;
  color: var(--titleColor);
  margin-top: 8px;
  font-weight: 600;
}

.invoices-box ul li .default-btn {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e9e9e9;
  box-shadow: unset;
  border-radius: 30px;
  border: none;
  padding: 8px 20px;
  opacity: 0;
  visibility: hidden;
  font-weight: 500;
  color: var(--titleColor) !important;
}

.invoices-box ul li .default-btn:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor);
}

.invoices-box ul li:last-child {
  border-bottom: none;
}

.invoices-box ul li:hover {
  background-color: #f9f9f9;
}

.invoices-box ul li:hover .icon {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.invoices-box ul li:hover .default-btn {
  opacity: 1;
  visibility: visible;
}

.invoices-box ul li ul li {
  padding: 0;
  background-color: transparent;
  border: none;
  display: inline-block;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 400;
}

.invoices-box ul li ul li:last-child {
  margin-left: 0;
}

.invoices-box ul li ul li:last-child::before {
  display: none;
}

.invoices-box ul li ul li::before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: var(--mainColor);
  position: absolute;
  top: 4px;
  left: -10px;
}

.invoices-box ul li ul li.unpaid {
  color: red;
  font-weight: 500;
}

.invoices-box ul li ul li.paid {
  color: #64bc36;
  font-weight: 500;
}

.invoice-area {
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 30px;
}

.invoice-header {
  margin-bottom: 25px;
}

.invoice-header h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 500;
}

.invoice-header p {
  font-weight: 500;
  color: #6084a4;
}

.invoice-middle {
  margin-bottom: 25px;
}

.invoice-middle h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.invoice-middle h5 {
  margin-bottom: 12px;
  font-weight: 500;
}

.invoice-middle h5 sub {
  margin-right: 50px;
  bottom: 0;
  width: 90px;
  display: inline-block;
  color: #6084a4;
  font-weight: 500;
}

.invoice-middle span {
  font-weight: 500;
  color: #6084a4;
}

.invoice-table table {
  margin-bottom: 0;
}

.invoice-table table thead th {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #dee2e6 !important;
  font-weight: bold;
  padding: 15px;
}

.invoice-table table tbody td {
  vertical-align: middle;
  color: #6084a4;
  border-width: 1px;
  font-size: 14.5px;
  padding: 15px;
}

.invoice-table table tbody td.total,
.invoice-table table tbody td.total-price {
  color: var(--bodyColor);
}

.invoice-table table tbody td strong {
  font-weight: 500;
  color: var(--bodyColor);
}

.invoice-table .table> :not(:first-child) {
  border-top: 0;
}

.invoice-btn-box {
  margin-top: 25px;
}

.invoice-btn-box .default-btn {
  border: none;
}

/*Applicants Area CSS*/
.all-applicants-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
  padding: 25px;
}

.all-applicants-box h2 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.single-applicants-card {
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 20px;
  margin-top: 25px;
  position: relative;
}

.single-applicants-card .image {
  position: absolute;
  top: 20px;
  right: 20px;
}

.single-applicants-card .image img {
  border-radius: 5px;
  max-width: 92px;
}

.single-applicants-card .content {
  position: relative;
  padding: 0 110px 0 180px;
}

.single-applicants-card .content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 7px;
}

.single-applicants-card .content h3 a {
  color: var(--titleColor);
}

.single-applicants-card .content span {
  color: var(--mainColor);
  font-size: 14px;
  font-weight: 500;
}

.single-applicants-card .content .job-info {
  padding: 0;
  margin-top: 7px;
  margin-bottom: 0;
}

.single-applicants-card .content .job-info li {
  display: inline-block;
  list-style-type: none;
  color: var(--bodyColor);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  margin-left: 10px;
  padding-right: 18px;
}

.single-applicants-card .content .job-info li:last-child {
  margin-left: 0;
}

.single-applicants-card .content .job-info li i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--mainColor);
}

.single-applicants-card .content .applicants-footer {
  position: absolute;
  left: 0;
  top: 0;
}

.single-applicants-card .content .applicants-footer .option-list {
  padding: 0;
  margin-bottom: 0;
}

.single-applicants-card .content .applicants-footer .option-list li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
}

.single-applicants-card .content .applicants-footer .option-list li:last-child {
  margin-left: 0;
}

.single-applicants-card .content .applicants-footer .option-list li .option-btn {
  display: inline-block;
  border: none;
  background: rgba(25, 103, 210, 0.07);
  color: var(--mainColor);
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50px;
  transition: var(--transition);
}

.single-applicants-card .content .applicants-footer .option-list li .option-btn:hover {
  background: var(--mainColor);
  color: var(--whiteColor);
}

/*My Profile CSS*/
.my-profile-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.06);
  border-radius: 5px;
}

.my-profile-box h3 {
  margin-bottom: 0;
  padding: 20px 25px 15px;
  font-size: 22px;
  font-weight: 500;
}

.my-profile-box .bar {
  margin-right: 20px;
  height: 7px;
  width: 85px;
  background: rgba(0, 202, 151, 0.137254902);
  position: relative;
  border-radius: 50px;
  margin-bottom: 25px;
}

.my-profile-box .bar:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: var(--mainColor);
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.my-profile-box form {
  padding: 0 25px 25px;
}

.my-profile-box form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.my-profile-box form .form-group label {
  display: block;
  margin-bottom: 15px;
  color: var(--titleColor);
  font-weight: 500;
}

.my-profile-box form .form-group .form-control {
  border-radius: 0;
  background-color: #F8F8F8;
  box-shadow: unset;
  transition: var(--transition);
  border: 1px solid #F8F8F8;
  height: 60px;
  padding: 10px 20px;
  color: var(--bodyColor);
  font-size: 15px;
  font-weight: 400;
}

.my-profile-box form .form-group .form-control::-moz-placeholder {
  color: var(--bodyColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.my-profile-box form .form-group .form-control::placeholder {
  color: var(--bodyColor);
  transition: var(--transition);
}

.my-profile-box form .form-group .form-control:focus {
  background-color: transparent;
  border: 1px solid var(--mainColor);
}

.my-profile-box form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.my-profile-box form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.my-profile-box form .form-group textarea.form-control {
  padding-top: 15px;
  height: auto;
}

.my-profile-box form .default-btn {
  border: none;
}

.my-profile-box form .default-btn::before {
  width: 950px;
  height: 950px;
}

.my-profile-box .profile-box {
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #eeeeee;
  padding-bottom: 30px;
}

.my-profile-box .profile-box img {
  border-radius: 5px;
}

.my-profile-box .profile-box .file-upload {
  display: inline-block;
  position: absolute;
  right: 15px;
  bottom: 45px;
}

.my-profile-box .profile-box .file-upload .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.my-profile-box .profile-box .file-upload .inputfile+label {
  color: var(--titleColor);
  background-color: var(--whiteColor);
  display: inline-block;
  margin-bottom: 0;
  transition: var(--transition);
  padding: 10px 48px 10px 25px;
  position: relative;
  border-radius: 30px;
  font-weight: 500;
}

.my-profile-box .profile-box .file-upload i {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16.5px;
  margin-top: -0.5px;
}

.my-profile-box .profile-box .file-upload .inputfile:focus+label,
.my-profile-box .profile-box .file-upload .inputfile+label:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.my-profile-box .profile-box .file-upload .inputfile+label {
  cursor: pointer;
}

.my-profile-box .profile-box .text {
  margin-right: 30px;
}

.my-profile-box .profile-box .text p {
  margin-bottom: 0;
}

.profile-outer-area {
  padding: 20px 25px;
}

.profile-outer {
  position: relative;
  display: flex;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid #f1f3f7;
  align-items: center;
}

.profile-outer .profileButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-outer .profileButton .profileButton-input {
  opacity: 0;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  height: 0;
  width: 0;
  display: none;
}

.profile-outer .profileButton .profileButton-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  height: 170px;
  width: 170px;
  border-radius: 5px;
  transition: 0.3s;
  margin: 0;
  color: #1b2032;
  font-size: 16px;
  border: 2px dashed #ced4e1;
}

.profile-outer .profileButton .profileButton-button:hover {
  border-color: var(--mainColor);
}

.profile-outer .profileButton .profileButton-button:before {
  font-family: "remixicon" !important;
  content: "\ee49";
  color: #9fa9b8;
  font-size: 40px;
  transition: 0.3s;
}

.profile-outer .text {
  padding-right: 25px;
}

.profile-outer-area-two {
  margin: 20px 25px;
  border: 1px solid #f1f3f7;
  padding: 20px 25px;
  border-radius: 10px;
}

.profile-outer-area-two .profile-outer {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.profile-outer-area-two .profile-outer .text-title {
  padding-right: 25px;
  text-align: right;
  max-width: 500px;
}

.profile-outer-area-two .profile-outer .text-title h3 {
  font-size: 20px;
  margin-bottom: 10px;
  padding: 0;
}

.profile-outer-area-two .profile-outer .text-title p {
  margin-bottom: 0;
}

/*Post A New Job CSS*/
.post-a-new-job-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.06);
  border-radius: 5px;
}

.post-a-new-job-box h3 {
  margin-bottom: 0;
  padding: 20px 25px 15px;
  font-size: 22px;
  font-weight: 500;
}

.post-a-new-job-box .bar {
  margin-right: 20px;
  height: 7px;
  width: 85px;
  background: rgba(0, 202, 151, 0.137254902);
  position: relative;
  border-radius: 50px;
  margin-bottom: 25px;
}

.post-a-new-job-box .bar:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: var(--mainColor);
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.post-a-new-job-box form {
  padding: 0 25px 25px;
}

.post-a-new-job-box form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.post-a-new-job-box form .form-group label {
  display: block;
  margin-bottom: 15px;
  color: var(--titleColor);
  font-weight: 500;
}

.post-a-new-job-box form .form-group .form-control {
  border-radius: 0;
  background-color: #F8F8F8;
  box-shadow: unset;
  transition: var(--transition);
  border: 1px solid #F8F8F8;
  height: 60px;
  padding: 10px 20px;
  color: var(--bodyColor);
  font-size: 15px;
  font-weight: 400;
}

.post-a-new-job-box form .form-group .form-control::-moz-placeholder {
  color: var(--bodyColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.post-a-new-job-box form .form-group .form-control::placeholder {
  color: var(--bodyColor);
  transition: var(--transition);
}

.post-a-new-job-box form .form-group .form-control:focus {
  background-color: transparent;
  border: 1px solid var(--mainColor);
}

.post-a-new-job-box form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.post-a-new-job-box form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.post-a-new-job-box form .form-group textarea.form-control {
  padding-top: 15px;
  height: auto;
}

.post-a-new-job-box form .default-btn {
  border: none;
}

.post-a-new-job-box form .default-btn::before {
  width: 950px;
  height: 950px;
}

/*Manage Jobs CSS*/
.manage-jobs-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 30px;
}

.manage-jobs-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
}

.manage-jobs-box .bar {
  height: 7px;
  width: 85px;
  background: rgba(0, 202, 151, 0.137254902);
  position: relative;
  border-radius: 50px;
  margin-bottom: 25px;
}

.manage-jobs-box .bar:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: var(--mainColor);
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.manage-jobs-box .manage-jobs-table {
  margin-top: 30px;
}

.manage-jobs-box .manage-jobs-table table {
  margin-bottom: 0;
}

.manage-jobs-box .manage-jobs-table table thead {
  background: #E5FAF5;
}

.manage-jobs-box .manage-jobs-table table thead tr {
  border: none;
}

.manage-jobs-box .manage-jobs-table table thead tr th {
  border: none;
  vertical-align: middle;
  padding: 15px 25px;
  white-space: nowrap;
  font-size: 18px;
  color: var(--mainColor);
  font-weight: 500;
}

.manage-jobs-box .manage-jobs-table table tbody tr {
  border: none;
  border-bottom: 1px solid #e7e7e7;
}

.manage-jobs-box .manage-jobs-table table tbody tr td {
  vertical-align: middle;
  color: var(--bodyColor);
  white-space: nowrap;
  padding: 15px 25px;
  font-weight: 400;
  font-size: 15px;
  border: none;
}

.manage-jobs-box .manage-jobs-table table tbody tr td a {
  color: var(--mainColor);
  font-weight: 500;
  text-decoration: underline;
}

.manage-jobs-box .manage-jobs-table table tbody tr td a:hover {
  color: var(--titleColor);
}

.manage-jobs-box .manage-jobs-table table tbody tr td h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}

.manage-jobs-box .manage-jobs-table table tbody tr td span {
  font-size: 15px;
  position: relative;
  padding-right: 20px;
}

.manage-jobs-box .manage-jobs-table table tbody tr td span i {
  color: var(--mainColor);
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-45%);
}

.manage-jobs-box .manage-jobs-table table tbody tr td .status {
  color: var(--mainColor);
  background: #E5FAF5;
  color: var(--mainColor);
  padding: 5px 10px;
  text-align: center;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  transition: var(--transition);
}

.manage-jobs-box .manage-jobs-table table tbody tr td .status:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.manage-jobs-box .manage-jobs-table table tbody tr td .option-list {
  padding: 0;
  margin-bottom: 0;
}

.manage-jobs-box .manage-jobs-table table tbody tr td .option-list li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
}

.manage-jobs-box .manage-jobs-table table tbody tr td .option-list li:last-child {
  margin-left: 0;
}

.manage-jobs-box .manage-jobs-table table tbody tr td .option-list li .option-btn {
  display: inline-block;
  border: none;
  background: #E5FAF5;
  color: var(--mainColor);
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50px;
  transition: var(--transition);
}

.manage-jobs-box .manage-jobs-table table tbody tr td .option-list li .option-btn:hover {
  background: var(--mainColor);
  color: var(--whiteColor);
}

/*Submit Resumes CSS*/
.submit-resumes-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
  padding: 30px;
}

.submit-resumes-box form h3 {
  padding-right: 5px;
  margin-bottom: 20px;
  font-size: 22px;
}

.submit-resumes-box form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.submit-resumes-box form .form-group label {
  display: block;
  margin-bottom: 15px;
  color: var(--titleColor);
  font-weight: 500;
}

.submit-resumes-box form .form-group .form-control {
  border-radius: 0;
  background-color: #f5f5f5;
  box-shadow: unset;
  transition: var(--transition);
  border: 1px solid #f5f5f5;
  height: 60px;
  padding: 10px 20px;
  color: #808080;
  font-size: 15px;
  font-weight: 400;
}

.submit-resumes-box form .form-group .form-control::-moz-placeholder {
  color: #808080;
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.submit-resumes-box form .form-group .form-control::placeholder {
  color: #808080;
  transition: var(--transition);
}

.submit-resumes-box form .form-group .form-control:focus {
  background-color: transparent;
  border: 1px solid var(--mainColor);
}

.submit-resumes-box form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.submit-resumes-box form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.submit-resumes-box form .form-group textarea.form-control {
  padding-top: 15px;
  height: auto;
}

.submit-resumes-box form .default-btn {
  display: block;
  border: none;
}

.submit-resumes-box form .default-btn::before {
  width: 950px;
  height: 950px;
}

/*Packages CSS*/
.packages-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
  padding: 30px;
}

.packages-box h2 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.packages-box .packages-table {
  margin-top: 30px;
}

.packages-box .packages-table table {
  margin-bottom: 0;
}

.packages-box .packages-table table thead tr {
  border: none;
  border-bottom: 1px solid #e7e7e7;
}

.packages-box .packages-table table thead tr th {
  border: none;
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 15px 25px;
  white-space: nowrap;
  font-size: 18px;
  color: var(--titleColor);
  font-weight: 500;
}

.packages-box .packages-table table tbody tr {
  border: none;
  border-bottom: 1px solid #e7e7e7;
}

.packages-box .packages-table table tbody tr td {
  border: none;
  vertical-align: middle;
  color: var(--bodyColor);
  white-space: nowrap;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 15px;
}

.packages-box .packages-table table tbody tr td a {
  color: var(--mainColor);
}

.packages-box .packages-table table tbody tr td a:hover {
  color: var(--titleColor);
}

.packages-box .packages-table table tbody tr td h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.packages-box .packages-table table tbody tr td span {
  font-size: 15px;
  position: relative;
  padding-right: 20px;
}

.packages-box .packages-table table tbody tr td span i {
  color: var(--mainColor);
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-45%);
}

.packages-box .packages-table table tbody tr td .status {
  color: var(--mainColor);
  background: #E5FAF5;
  color: var(--mainColor);
  padding: 5px 14px;
  text-align: center;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  transition: var(--transition);
}

.packages-box .packages-table table tbody tr td .status:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.packages-box .packages-table table tbody tr td .option-list {
  padding: 0;
  margin-bottom: 0;
}

.packages-box .packages-table table tbody tr td .option-list li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
}

.packages-box .packages-table table tbody tr td .option-list li:last-child {
  margin-left: 0;
}

.packages-box .packages-table table tbody tr td .option-list li .option-btn {
  display: inline-block;
  border: none;
  background: rgba(25, 103, 210, 0.07);
  color: var(--mainColor);
  height: 35px;
  width: 35px;
  line-height: 38px;
  border-radius: 50px;
  transition: var(--transition);
}

.packages-box .packages-table table tbody tr td .option-list li .option-btn:hover {
  background: var(--mainColor);
  color: var(--whiteColor);
}

.packages-box .packages-table .table> :not(:first-child) {
  border-top: 0;
}

/*Messages CSS*/
.chat-content-area {
  margin-bottom: 30px;
}

.chat-content-area .sidebar-left {
  float: right;
}

.chat-content-area .sidebar-left .sidebar {
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  padding: 25px;
  width: 300px;
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header {
  padding-bottom: 25px;
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header form label {
  display: block;
  margin-bottom: 0;
  position: absolute;
  right: 15px;
  top: 9.3px;
  font-size: 18px;
  color: #a8a8a8;
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header form .form-control {
  height: 45px;
  border-radius: 30px;
  background-color: #eef5f9;
  border: none;
  color: var(--titleColor);
  padding: 0 40px 0 15px;
  transition: var(--transition);
  box-shadow: unset;
  font-size: 14px;
  font-weight: 400;
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header form .form-control:focus {
  box-shadow: unset;
  background-color: #eef5f9;
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header form .form-control:focus::-moz-placeholder {
  color: transparent !important;
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header form .form-control:focus::placeholder {
  color: transparent !important;
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header form .form-control::-moz-placeholder {
  color: #a8a8a8;
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.chat-content-area .sidebar-left .sidebar .chat-sidebar-header form .form-control::placeholder {
  color: #a8a8a8;
  transition: var(--transition);
}

.chat-content-area .sidebar-left .sidebar .sidebar-content {
  height: calc(100vh - 325px);
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li {
  cursor: pointer;
  margin-bottom: 20px;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li:last-child {
  margin-bottom: 0;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li .avatar {
  position: relative;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li .avatar .status-busy {
  background-color: #FF5B5C;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li .avatar .status-online {
  background-color: #39DA8A;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li .avatar .status-away {
  background-color: #FDAC41;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li .avatar .status-offline {
  background-color: #475F7B;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li .avatar [class*=status-] {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 1px;
  top: 1px;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li h6 {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li span {
  color: #71738d;
  font-size: 14.5px;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-label {
  color: var(--titleColor);
  margin-top: 25px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  font-weight: 500;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-label::before {
  width: 70px;
  height: 1px;
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  background-color: var(--mainColor);
}

.chat-content-area .content-right {
  float: left;
  width: calc(100% - 330px);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list {
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .simplebar-scrollbar::before {
  background: #aaaaaa;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header {
  padding: 15px 20px;
  border-radius: 8px 8px 0 0;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left h6 {
  white-space: nowrap;
  font-weight: 600;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left .avatar {
  position: relative;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left .avatar .status-busy {
  background-color: #FF5B5C;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left .avatar .status-online {
  background-color: #39DA8A;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left .avatar .status-away {
  background-color: #FDAC41;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left .avatar .status-offline {
  background-color: #475F7B;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left .avatar [class*=status-] {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right {
  position: relative;
  top: 4px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li {
  display: inline-block;
  margin-right: 5px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li:first-child {
  margin-right: 0;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .favorite {
  font-size: 20px;
  cursor: pointer;
  color: #C7CFD6;
  position: relative;
  top: -1px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .favorite.active {
  color: #FDAC41;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .favorite.active i::before {
  content: "\f186";
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #727E8C;
  font-size: 22px;
  line-height: 15px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-toggle::after {
  display: none;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-menu {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: var(--whiteColor);
  border: none;
  border-radius: 5px;
  margin-top: 35px !important;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: unset !important;
  right: auto !important;
  left: 0 !important;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-menu.show {
  margin-top: 25px;
  opacity: 1;
  visibility: visible;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-menu .dropdown-item {
  color: var(--titleColor);
  padding: 5px 36px 5px 15px;
  position: relative;
  font-size: 14px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-menu .dropdown-item i {
  color: var(--mainColor);
  transition: var(--transition);
  position: absolute;
  right: 15px;
  top: 6px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-menu .dropdown-item.active,
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--titleColor);
  background-color: transparent;
  background-color: #f8f9fa;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-right ul li .dropdown .dropdown-menu .dropdown-item:hover i {
  transform: rotateY(-180deg);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container {
  height: calc(100vh - 340px);
  background-color: #E3E6F1;
  padding: 25px 20px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content {
  text-align: center;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-avatar {
  float: left;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-body {
  overflow: hidden;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-body .chat-message {
  position: relative;
  float: left;
  max-width: 420px;
  text-align: right;
  padding: 12px 16px;
  margin: 10px 0 21.28px 15.28px;
  clear: both;
  word-break: break-word;
  color: var(--whiteColor);
  background-color: #3578e5;
  border-radius: 5px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-body .chat-message p {
  color: var(--whiteColor);
  margin-bottom: 0;
  font-size: 14px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-body .chat-message p a {
  color: var(--whiteColor) !important;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-body .chat-message .time {
  position: absolute;
  bottom: -25px;
  left: 0;
  color: #6b7886;
  font-size: 0.8rem;
  white-space: nowrap;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-body .chat-message:first-child {
  margin-top: 0 !important;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat.chat-left .chat-avatar {
  float: right;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat.chat-left .chat-body .chat-message {
  text-align: right;
  float: right;
  margin: 10px 15.28px 21.28px 0;
  color: #727E8C;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat.chat-left .chat-body .chat-message p {
  color: #727E8C;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat.chat-left .chat-body .chat-message p a {
  color: #727E8C !important;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .badge-light {
  padding: 8px 20px 8px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  border-radius: 30px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer {
  background-color: #fafafa;
  padding: 15px 20px;
  border-radius: 0 0 8px 8px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .emoji-btn {
  padding: 0;
  border: none;
  background-color: #d4ebf7;
  border-radius: 50%;
  width: 35px;
  font-size: 19px;
  line-height: 39px;
  height: 35px;
  color: var(--mainColor);
  transition: var(--transition);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .emoji-btn:hover,
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .emoji-btn:focus {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .file-attachment-btn {
  padding: 0;
  border: none;
  background-color: #d4ebf7;
  border-radius: 50%;
  width: 35px;
  font-size: 19px;
  line-height: 39px;
  height: 35px;
  color: var(--mainColor);
  transition: var(--transition);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .file-attachment-btn:hover,
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .file-attachment-btn:focus {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form {
  position: relative;
  padding-left: 128px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .form-control {
  background-color: var(--whiteColor);
  height: 45px;
  border-radius: 30px;
  transition: var(--transition);
  padding: 10px 20px;
  font-size: 14.5px;
  border: 1px solid #DFE3E7;
  color: var(--titleColor);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .form-control:focus {
  border-color: var(--mainColor);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .send-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  transition: var(--transition);
  border-radius: 30px;
  height: 45px;
  padding: 1px 30px 0;
  box-shadow: 0 4px 12px 0 rgba(8, 141, 211, 0.2);
  font-size: 15px;
  font-weight: 400;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .send-btn i {
  position: relative;
  top: 2px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .send-btn:hover {
  box-shadow: 0 4px 12px 0 rgba(8, 141, 211, 0.6);
}

/*Resume Alerts CSS*/
.resume-alerts-table {
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 30px;
}

.resume-alerts-table h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
}

.resume-alerts-table table {
  margin-bottom: 0;
}

.resume-alerts-table table thead tr {
  border: none;
  border-bottom: 1px solid #e7e7e7;
}

.resume-alerts-table table thead tr th {
  border: none;
  vertical-align: middle;
  padding: 15px 25px;
  white-space: nowrap;
  color: var(--titleColor);
  font-weight: 500;
}

.resume-alerts-table table tbody tr {
  border: none;
  border-bottom: 1px solid #e7e7e7;
}

.resume-alerts-table table tbody tr td {
  border: none;
  vertical-align: middle;
  color: var(--bodyColor);
  white-space: nowrap;
  padding: 15px 25px;
  font-weight: 400;
  font-size: 15px;
}

.resume-alerts-table table tbody tr td .option-list {
  padding: 0;
  margin-bottom: 0;
}

.resume-alerts-table table tbody tr td .option-list li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
}

.resume-alerts-table table tbody tr td .option-list li:last-child {
  margin-left: 0;
}

.resume-alerts-table table tbody tr td .option-list li .option-btn {
  display: inline-block;
  border: none;
  background: rgba(25, 103, 210, 0.07);
  color: var(--mainColor);
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50px;
  transition: var(--transition);
}

.resume-alerts-table table tbody tr td .option-list li .option-btn:hover {
  background: var(--mainColor);
  color: var(--whiteColor);
}

.resume-alerts-table .table> :not(:first-child) {
  border-top: 0;
}

/*Change Password CSS*/
.change-password-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
  max-width: 750px;
}

.change-password-box h3 {
  margin-bottom: 0;
  padding: 20px 25px 15px;
  font-size: 22px;
  font-weight: 500;
}

.change-password-box .bar {
  margin-right: 20px;
  height: 7px;
  width: 85px;
  background: rgba(0, 202, 151, 0.137254902);
  position: relative;
  border-radius: 50px;
  margin-bottom: 15px;
}

.change-password-box .bar:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: var(--mainColor);
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.change-password-box form {
  padding: 25px;
}

.change-password-box form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.change-password-box form .form-group label {
  display: block;
  margin-bottom: 15px;
  color: var(--titleColor);
}

.change-password-box form .form-group .form-control {
  border-radius: 0;
  background-color: #f5f5f5;
  box-shadow: unset;
  transition: var(--transition);
  border: 1px solid #f5f5f5;
  height: 50px;
  padding: 10px 20px;
  color: #808080;
  font-size: 15px;
  font-weight: 400;
}

.change-password-box form .form-group .form-control::-moz-placeholder {
  color: #808080;
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.change-password-box form .form-group .form-control::placeholder {
  color: #808080;
  transition: var(--transition);
}

.change-password-box form .form-group .form-control:focus {
  background-color: transparent;
  border: 1px solid var(--mainColor);
}

.change-password-box form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}

.change-password-box form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.change-password-box form .default-btn {
  display: block;
  border: none;
}

.change-password-box form .default-btn::before {
  width: 950px;
  height: 950px;
}

/*Dashboard Jobs CSS*/
.dashboard-jobs-box {
  margin-bottom: 30px;
}

.dashboard-jobs-box h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
}

.dashboard-jobs-box .recent-job-card .download-btn {
  padding: 6px 10px;
  font-size: 13px;
}

.candidates-job-alerts-area h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.candidates-job-alerts-card {
  background-color: var(--whiteColor);
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.candidates-job-alerts-card .candidates-job-alerts-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.candidates-job-alerts-card .candidates-job-alerts-list ul li {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--titleColor);
}

.candidates-job-alerts-card .candidates-job-alerts-list ul li:last-child {
  margin-bottom: 0;
}

.candidates-job-alerts-card .candidates-job-alerts-list ul li b {
  font-weight: 400;
  color: var(--bodyColor);
}

.candidates-job-alerts-card .delete-btn {
  color: var(--titleColor);
  float: left;
  font-size: 17px;
  transition: var(--transition);
}

.candidates-job-alerts-card .delete-btn i {
  position: relative;
  color: #FF5B4A;
  top: 3px;
  margin-right: 3px;
  transition: var(--transition);
}

.candidates-job-alerts-card .delete-btn:hover {
  color: var(--mainColor);
  transition: var(--transition);
}

.candidates-job-alerts-card .delete-btn:hover i {
  color: var(--bodyColor);
}

/*CV Manager CSS*/
.cv-manager-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  border-radius: 5px;
  padding: 30px;
}

.cv-manager-box h2 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.cv-manager-box .file-upload-box {
  margin-top: 30px;
  margin-bottom: 20px;
}

.cv-manager-box .file-upload-box .dropzone {
  position: relative;
  border: 1px dashed #eeeeee;
  border-radius: 5px;
  background: rgba(14, 198, 198, 0.03);
  transition: all 0.3s linear;
  display: inline-block;
  width: 100%;
  margin: 0;
}

.cv-manager-box .file-upload-box .dropzone button {
  color: var(--titleColor);
  position: relative;
  padding-top: 52px;
  font-weight: 500;
}

.cv-manager-box .file-upload-box .dropzone button::before {
  content: "\ea11";
  font-family: "remixicon";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  color: var(--mainColor);
  font-size: 35px;
}

.cv-manager-box .file-upload-box .dropzone:hover {
  border-color: var(--mainColor);
}

.cv-manager-box .text {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sidemenu-area {
    z-index: 9999;
    right: -100%;
    opacity: 1;
    visibility: visible;
  }

  .sidemenu-area.active-sidemenu-area {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .sidemenu-area .sidemenu-header {
    height: 75px;
  }

  .sidemenu-area .sidemenu-header .responsive-burger-menu {
    display: block !important;
  }

  .main-dashboard-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 100px;
  }

  .main-dashboard-content .navbar-area {
    right: 0;
    width: 100%;
    padding: 20px 15px;
  }

  .main-dashboard-content .mobile-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 999;
    padding: 0;
    top: -40px;
  }

  .main-dashboard-content .side-nav-responsive .dot-menu {
    top: -27px;
  }

  .main-dashboard-content .copyrights-area {
    text-align: center;
    padding-top: 0;
  }

  .main-dashboard-content .copyrights-area p {
    margin-top: 5px;
  }

  .breadcrumb-area {
    display: inline-block;
    text-align: center;
    margin-bottom: 35px;
  }

  .breadcrumb-area h1 {
    padding-left: 0;
  }

  .breadcrumb-area h1::before {
    display: none;
  }

  .breadcrumb-area .breadcrumb {
    padding-right: 0;
    top: 0;
    display: inline-block;
    margin-top: 20px;
  }

  .breadcrumb-area .breadcrumb .item {
    display: inline-block;
  }

  .notification-alert {
    padding: 15px;
    font-size: 12px;
  }

  .stats-fun-fact-box {
    padding: 35px 95px 34px 25px;
  }

  .stats-fun-fact-box .icon-box {
    width: 55px;
    height: 55px;
    font-size: 30px;
  }

  .stats-fun-fact-box .sub-title {
    font-size: 15px;
  }

  .stats-fun-fact-box h3 {
    font-size: 28px;
  }

  .recent-notifications-box ul li .close {
    opacity: 1;
    visibility: visible;
  }

  .invoices-box ul li {
    padding-left: 25px;
  }

  .invoices-box ul li .default-btn {
    position: relative;
    left: auto;
    right: 0;
    top: unset;
    transform: unset;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
  }

  .single-applicants-card {
    padding: 15px;
  }

  .single-applicants-card .image {
    position: relative;
    right: 0;
    top: 0;
  }

  .single-applicants-card .content {
    position: relative;
    padding: 0;
    margin-top: 15px;
  }

  .single-applicants-card .content .applicants-footer {
    position: relative;
    margin-top: 15px;
  }

  .text-end {
    text-align: center !important;
  }

  .profile-outer {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }

  .profile-outer .profileButton {
    display: block;
  }

  .profile-outer .profileButton .profileButton-input {
    opacity: 0;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    height: 0;
    width: 0;
    display: none;
  }

  .profile-outer .profileButton .profileButton-button {
    height: 130px;
    width: 130px;
    font-size: 15px;
  }

  .profile-outer .profileButton .profileButton-button:before {
    font-size: 30px;
  }

  .profile-outer .text {
    padding-top: 15px;
    padding-right: 0;
  }

  .manage-jobs-box {
    padding: 20px;
  }

  .manage-jobs-box .manage-jobs-table table thead tr th {
    font-size: 16px;
  }

  .manage-jobs-box .single-job-list-box .job-information h3 {
    font-size: 16px;
  }

  .manage-jobs-box .single-job-list-box .job-information span {
    font-size: 12px;
  }

  .manage-jobs-box .single-job-list-box .location-information li {
    font-size: 14px;
  }

  .packages-box {
    padding: 18px;
  }

  .packages-box .packages-table table thead tr th {
    font-size: 16px;
  }

  .chat-content-area .sidebar-left {
    float: unset;
    margin-bottom: 30px;
  }

  .chat-content-area .sidebar-left .sidebar {
    width: 100%;
    padding: 20px;
  }

  .chat-content-area .content-right {
    width: 100%;
    float: unset;
  }

  .chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form {
    display: block !important;
    padding-left: 0;
  }

  .chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .form-control {
    font-size: 14px;
    margin-top: 15px;
  }

  .chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .send-btn {
    position: relative;
    top: 0;
    transform: unset;
    height: 40px;
    font-size: 14px;
    margin-top: 15px;
  }

  .invoice-area {
    padding: 20px;
  }

  .invoice-header h3 {
    font-size: 17px;
  }

  .invoice-header p {
    font-size: 14px;
  }

  .invoice-middle {
    margin-bottom: 0;
  }

  .invoice-middle .text {
    margin-bottom: 20px;
  }

  .invoice-middle .text.text-right {
    text-align: right !important;
  }

  .invoice-middle .text h5 {
    font-size: 14px;
  }

  .invoice-middle .text h5 sub {
    margin-right: 0;
    width: auto;
    font-size: 14px;
  }

  .invoice-table {
    margin-bottom: 20px;
  }

  .invoice-table table thead th {
    font-size: 14px;
    white-space: nowrap;
  }

  .invoice-table table tbody td {
    font-size: 14px;
    white-space: nowrap;
  }

  .profile-outer-area-two .profile-outer .text-title {
    padding-right: 0;
    padding-top: 20px;
  }

  .candidates-job-alerts-card {
    text-align: center;
  }

  .candidates-job-alerts-card .candidates-job-alerts-list {
    margin-bottom: 15px;
  }

  .candidates-job-alerts-card .delete-btn {
    float: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidemenu-area {
    z-index: 9999;
    right: -100%;
    opacity: 1;
    visibility: visible;
  }

  .sidemenu-area.active-sidemenu-area {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .sidemenu-area .sidemenu-header {
    height: 75px;
  }

  .sidemenu-area .sidemenu-header .responsive-burger-menu {
    display: block !important;
  }

  .main-dashboard-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 100px;
  }

  .main-dashboard-content .navbar-area {
    right: 0;
    width: 100%;
    padding: 20px 15px;
  }

  .main-dashboard-content .mobile-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 999;
    padding: 0;
    top: -40px;
  }

  .main-dashboard-content .side-nav-responsive .dot-menu {
    top: -27px;
  }

  .main-dashboard-content .copyrights-area {
    text-align: center;
    padding-top: 0;
  }

  .main-dashboard-content .copyrights-area p {
    margin-top: 5px;
  }

  .breadcrumb-area {
    display: inline-block;
    text-align: center;
    margin-bottom: 35px;
  }

  .breadcrumb-area h1 {
    padding-left: 0;
  }

  .breadcrumb-area h1::before {
    display: none;
  }

  .breadcrumb-area .breadcrumb {
    padding-right: 0;
    top: 0;
    display: inline-block;
    margin-top: 20px;
  }

  .breadcrumb-area .breadcrumb .item {
    display: inline-block;
  }

  .notification-alert {
    padding: 15px;
    font-size: 15px;
  }

  .stats-fun-fact-box {
    padding: 35px 95px 34px 25px;
  }

  .stats-fun-fact-box .icon-box {
    width: 55px;
    height: 55px;
    font-size: 30px;
  }

  .stats-fun-fact-box .sub-title {
    font-size: 15px;
  }

  .stats-fun-fact-box h3 {
    font-size: 28px;
  }

  .text-end {
    text-align: center !important;
  }

  .profile-outer {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }

  .profile-outer .profileButton .profileButton-button {
    height: 150px;
    width: 150px;
    font-size: 15px;
  }

  .profile-outer .profileButton .profileButton-button:before {
    font-size: 30px;
  }

  .manage-jobs-box {
    padding: 20px;
  }

  .manage-jobs-box .manage-jobs-table table thead tr {
    border: none;
  }

  .manage-jobs-box .manage-jobs-table table thead tr th {
    font-size: 16px;
  }

  .chat-content-area .sidebar-left {
    float: unset;
    margin-bottom: 30px;
  }

  .chat-content-area .sidebar-left .sidebar {
    width: 100%;
    padding: 20px;
  }

  .chat-content-area .content-right {
    width: 100%;
    float: unset;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidemenu-area {
    z-index: 9999;
    right: -100%;
    opacity: 0;
    visibility: hidden;
  }

  .sidemenu-area.active-sidemenu-area {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .sidemenu-area .sidemenu-header {
    height: 75px;
  }

  .sidemenu-area .sidemenu-header .responsive-burger-menu {
    display: block !important;
  }

  .main-dashboard-content {
    padding-top: 110px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-dashboard-content .navbar-area {
    right: 0;
    width: 100%;
    padding: 20px 15px;
  }

  .main-dashboard-content .responsive-burger-menu {
    display: block !important;
  }

  .main-dashboard-content .side-nav-responsive .dot-menu {
    top: -27px;
    left: 45px;
  }

  .main-dashboard-content .mean-container a.meanmenu-reveal {
    padding-top: 0;
    margin-top: -5px;
  }

  .main-dashboard-content .mobile-responsive-nav {
    display: block;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu {
    position: relative;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav {
    margin-top: 55px;
    background-color: #ffffff;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
    border: none !important;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a {
    color: #000000;
    border-top-color: #DBEEFD;
    text-transform: capitalize;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: left;
    padding: 11px !important;
    background: transparent !important;
    border-right: none !important;
    border-bottom: none !important;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav {
    max-height: 50vh;
    overflow-y: scroll;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar {
    width: 7px;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar-thumb {
    background: #888;
  }

  .main-dashboard-content .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .main-dashboard-content .mobile-responsive-nav .mean-container a.meanmenu-reveal {
    top: 10px;
    padding: 0;
    width: 35px;
    height: 30px;
    padding-top: 6px;
    color: var(--mainColor);
  }

  .main-dashboard-content .mobile-responsive-nav .mean-container a.meanmenu-reveal span {
    background: var(--mainColor);
    height: 4px;
    margin-top: -6px;
    border-radius: 3px;
    position: relative;
    top: 8px;
  }

  .main-dashboard-content .mobile-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 999;
    padding: 0;
    top: -35px;
  }

  .main-dashboard-content .mobile-responsive-nav .others-options {
    display: none !important;
  }

  .main-dashboard-content .mobile-responsive-nav .logo {
    position: relative;
  }

  .main-dashboard-content .desktop-nav {
    display: none;
  }

  .recent-notifications-box ul li {
    padding-right: 50px;
    padding-left: 25px;
    font-size: 14px;
  }

  .recent-notifications-box ul li .icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    right: 10px;
    font-size: 16px;
  }

  .recent-notifications-box ul li .close {
    font-size: 24px;
    left: 15px;
  }

  .stats-fun-fact-box {
    padding: 35px 82px 34px 25px;
  }

  .stats-fun-fact-box .icon-box {
    width: 55px;
    height: 55px;
    font-size: 30px;
    right: 20px;
  }

  .stats-fun-fact-box .sub-title {
    font-size: 15px;
  }

  .stats-fun-fact-box h3 {
    font-size: 28px;
  }

  .single-applicants-card {
    padding: 15px;
  }

  .single-applicants-card .image img {
    max-width: 50px;
  }

  .single-applicants-card .content {
    padding: 0 70px 0 150px;
  }

  .single-applicants-card .content .applicants-footer .option-list li .option-btn {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sidemenu-area {
    width: 220px;
  }

  .sidemenu-area .sidemenu-body .sidemenu-nav .nav-item .icon {
    font-size: 18px;
  }

  .sidemenu-area .sidemenu-body .sidemenu-nav .nav-item .nav-link {
    padding: 12px 15px 12px;
    font-size: 15px;
  }

  .main-dashboard-content {
    padding-right: 250px;
  }

  .main-dashboard-content .navbar-area {
    right: 220px;
    width: calc(100% - 220px);
  }

  .main-dashboard-content .navbar-area.is-sticky .desktop-nav {
    right: 220px;
  }

  .recent-notifications-box ul li {
    padding-right: 50px;
    padding-left: 25px;
    font-size: 14px;
  }

  .recent-notifications-box ul li .icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    right: 10px;
    font-size: 16px;
  }

  .recent-notifications-box ul li .close {
    font-size: 24px;
    left: 15px;
  }

  .stats-fun-fact-box {
    padding: 35px 82px 34px 25px;
  }

  .stats-fun-fact-box .icon-box {
    width: 55px;
    height: 55px;
    font-size: 30px;
    right: 20px;
  }

  .stats-fun-fact-box .sub-title {
    font-size: 15px;
  }

  .stats-fun-fact-box h3 {
    font-size: 20px;
  }

  .invoices-box ul li {
    padding-right: 60px;
    padding-left: 90px;
  }

  .invoices-box ul li .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    right: 15px;
    font-size: 17px;
  }

  .invoices-box ul li .default-btn {
    top: 72%;
    transform: translateY(-72%);
    left: 15px;
    font-size: 15px;
    padding: 6px 20px;
  }

  .invoices-box ul li span {
    font-size: 15px;
  }

  .single-applicants-card {
    padding: 15px;
  }

  .single-applicants-card .image img {
    max-width: 50px;
  }

  .single-applicants-card .content {
    padding: 0 65px 0 155px;
  }

  .single-applicants-card .content .job-info li {
    font-size: 13px;
  }

  .single-applicants-card .content h3 {
    font-size: 18px;
  }

  .single-applicants-card .content .applicants-footer .option-list li .option-btn {
    height: 30px;
    width: 30px;
    line-height: 32px;
    font-size: 14px;
  }
}

/* =================================
   Payment Management V4 - Horizontal Scroll
====================================*/
.invoices-list-box {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 30px;
}

.invoices-list-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
}

.invoices-list-box .bar {
  height: 7px;
  width: 85px;
  background: rgba(0, 202, 151, 0.137254902);
  position: relative;
  border-radius: 50px;
  margin-bottom: 25px;
}

.invoices-list-box .bar:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: var(--mainColor);
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.invoices-list-box .invoices-table {
  margin-top: 32px;
}

.invoices-list-box .invoices-table table {
  margin-bottom: 0;
}

.invoices-list-box .invoices-table table thead {
  background: #E5FAF5;
}

.invoices-list-box .invoices-table table thead tr {
  border: none;
}

.invoices-list-box .invoices-table table thead tr th {
  border: none;
  vertical-align: middle;
  padding: 15px 25px;
  white-space: nowrap;
  font-size: 18px;
  color: var(--mainColor);
  font-weight: 500;
}

.invoices-list-box .invoices-table table tbody tr {
  border: none;
  border-bottom: 1px solid #e7e7e7;
}

.invoices-list-box .invoices-table table tbody tr:last-child {
  border-bottom: none;
}

.invoices-list-box .invoices-table table tbody tr td {
  vertical-align: middle;
  color: var(--bodyColor);
  white-space: nowrap;
  padding: 15px 25px;
  font-weight: 400;
  font-size: 15px;
  border: none;
}

.invoices-list-box .invoices-table table tbody tr td .status {
  padding: 5px 14px;
  text-align: center;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  transition: var(--transition);
  color: var(--whiteColor);
}

.invoices-list-box .invoices-table table tbody tr td .status.status-paid {
  background-color: #28a745;
  /* Green */
}

.invoices-list-box .invoices-table table tbody tr td .status.status-withdrawn {
  background-color: #dc3545;
  /* Red */
}

.invoices-list-box .invoices-table table tbody tr td .status.status-unpaid {
  background-color: #ffc107;
  /* Yellow */
  color: var(--titleColor);
}


.invoices-list-box .invoices-table table tbody tr td .option-list {
  padding: 0;
  margin-bottom: 0;
}

.invoices-list-box .invoices-table table tbody tr td .option-list li {
  list-style-type: none;
  display: inline-block;
  margin-left: 5px;
}

.invoices-list-box .invoices-table table tbody tr td .option-list li:last-child {
  margin-left: 0;
}

.invoices-list-box .invoices-table table tbody tr td .option-list li .option-btn {
  display: inline-block;
  border: none;
  background: #E5FAF5;
  color: var(--mainColor);
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
  font-size: 16px;
}

.invoices-list-box .invoices-table table tbody tr td .option-list li .option-btn:hover {
  background: var(--mainColor);
  color: var(--whiteColor);
}

.project-progress-container-v2 {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.project-progress-container-v2 .project-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: var(--titleColor);
}

/* Overall Progress Bar */
.overall-progress {
  margin-bottom: 40px;
}

.overall-progress .progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.overall-progress .progress-label {
  font-size: 14px;
  color: var(--bodyColor);
  font-weight: 500;
}

.overall-progress .progress-percentage {
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor);
}

.progress {
  background-color: #e9ecef;
  border-radius: 50px;
}

.progress-bar {
  background-color: var(--mainColor);
  border-radius: 50px;
  transition: width 0.6s ease;
}

/* Updates Timeline */
.progress-updates-timeline .updates-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
  color: var(--titleColor);
}

.timeline-items {
  position: relative;
  padding-right: 25px;
}

.timeline-items::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 17px;
  width: 2px;
  background-color: #e9ecef;
  z-index: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 25px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  width: 36px;
  height: 36px;
  background-color: var(--mainColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  flex-shrink: 0;
  position: absolute;
  right: -17px;
  top: 0;
  z-index: 1;
}

.timeline-icon i {
  font-size: 20px;
}

.timeline-content {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px 20px;
  width: 100%;
  margin-right: 35px;
  border: 1px solid #e9ecef;
}

.timeline-content .update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.timeline-content .update-date {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}

.timeline-content .update-percentage-badge {
  background-color: #E5FAF5;
  color: var(--mainColor);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.timeline-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-form .update-header {
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.timeline-form .update-percentage-input,
.timeline-form .update-description-input {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--bodyColor);
  width: 100%;
}
.timeline-form .update-percentage-input {
  flex: 0 0 auto;
  width: 170px;
  text-align: center;
  background-color: #E5FAF5;
  border-color: #E5FAF5;
  color: var(--mainColor);
  border-radius: 50px;
  padding: 4px 12px;
}
.timeline-form .update-description-input {
  resize: vertical;
  min-height: 120px;
}
.timeline-form .update-percentage-input:focus,
.timeline-form .update-description-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(48, 141, 127, 0.12);
}
.timeline-form .default-btn {
  align-self: flex-start;
  padding: 10px 24px;
}
.timeline-form .field-validation-message {
  color: #dc3545;
  font-size: 12px;
}
.timeline-content .update-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--bodyColor);
  margin: 0;
}

.wallet-card-v8 {
  background-color: var(--whiteColor);
  border: 1px solid #eef0f2;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.wallet-card-v8:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.wallet-header-v8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}

.wallet-header-v8 .header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wallet-header-v8 .header-info i {
  font-size: 26px;
  color: var(--mainColor);
}

.wallet-header-v8 .header-info .wallet-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--titleColor);
  margin: 0;
}

.wallet-header-v8 .header-options i {
  font-size: 24px;
  color: #adb5bd;
  cursor: pointer;
  transition: color 0.3s ease;
}

.wallet-header-v8 .header-options i:hover {
  color: var(--mainColor);
}


.wallet-body-v8 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  /* Changed to right */
  padding: 20px 0;
}

.wallet-body-v8 .balance-label-v8 {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 4px;
}

.wallet-body-v8 .balance-amount-v8 {
  font-size: 38px;
  font-weight: 700;
  color: var(--titleColor);
  line-height: 1.2;
  margin-bottom: 15px;
}

.wallet-body-v8 .balance-amount-v8 small {
  font-size: 18px;
  font-weight: 400;
  color: #6c757d;
  margin-right: 5px;
}

.balance-chart-v8 {
  height: 60px;
  width: 100%;
}

.balance-chart-v8 svg {
  padding-top: 75px;
}

.balance-chart-v8 .chart-svg .chart-line {
  stroke: #00ca99;
}

.chart-line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.balance-chart-v8 .chart-svg .chart-area {
  fill: rgba(0, 202, 153, 0.1);
}

.wallet-footer-v8 {
  display: flex;
  gap: 10px;
  border-top: 1px solid #eef0f2;
  padding-top: 20px;
}

.wallet-btn-v8 {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.wallet-btn-v8.primary {
  background-color: var(--mainColor);
  color: #fff;
}

.wallet-btn-v8.primary:hover {
  background-color: #1e2a38;
  color: #fff;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.wallet-btn-v8.secondary {
  background-color: #f1f3f5;
  color: #495057;
}

.wallet-btn-v8.secondary:hover {
  background-color: #e9ecef;
}

.transaction-list-scroll {
  max-height: 270px;
  overflow-y: auto;
  padding-left: 10px;
}

.transaction-list-scroll::-webkit-scrollbar {
  width: 6px;
}

.transaction-list-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.transaction-list-scroll::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 10px;
}

.transaction-list-scroll::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

[dir="rtl"] .wallet-body-v8 {
  text-align: right;
}

[dir="rtl"] .wallet-body-v8 .balance-amount-v8 small {
  margin-right: 5px;
  margin-left: 0;
}

[dir="rtl"] .transaction-list-scroll {
  padding-left: 0;
  padding-right: 10px;
}

.wallet-card-new {
  background: linear-gradient(135deg, #4c6a8c 0%, #2c3e50 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 25px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.wallet-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.25);
}

.wallet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.wallet-chip {
  width: 45px;
  height: 35px;
  background: #d4af37;
  background: linear-gradient(135deg, #daa520, #f0e68c, #daa520);
  border-radius: 6px;
}

.wallet-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  opacity: 0.9;
}

.wallet-logo i {
  font-size: 24px;
}

.wallet-balance {
  text-align: right;
  margin-bottom: 25px;
}

.wallet-balance .balance-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 5px;
}

.wallet-balance .balance-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
}

.wallet-balance .balance-amount small {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
}

.wallet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.wallet-user .user-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.wallet-user .card-number {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  font-family: 'monospace';
}

.wallet-actions {
  display: flex;
  gap: 12px;
}

.wallet-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wallet-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.wallet-btn.btn-deposit {
  background-color: #00ca99;
  border-color: #00ca99;
}

.wallet-btn.btn-deposit:hover {
  background-color: #00a27a;
}

.form-label-title {
  display: block;
  font-weight: 500;
  color: var(--titleColor);
  margin-bottom: 1rem;
}

.file-upload-wrapper {
  position: relative;
  border: 2px dashed #ced4da;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  background-color: #f8f9fa;
  transition: all 0.3s ease-in-out;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.file-upload-wrapper:hover,
.file-upload-wrapper.dragover {
  border-color: var(--mainColor);
  background-color: #f1f7fe;
}

.file-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.file-upload-label i {
  font-size: 4rem;
  color: var(--mainColor);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.file-upload-wrapper:hover .file-upload-label i {
  transform: scale(1.1) translateY(-5px);
}

.file-upload-text {
  font-size: 1rem;
  color: var(--bodyColor);
  font-weight: 500;
}

.file-upload-text span {
  color: var(--mainColor);
  font-weight: 600;
}

.file-size-info {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.image-preview-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

#image-preview {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.remove-image-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 0;
  z-index: 10;
}

.remove-image-btn:hover {
  background-color: rgba(220, 53, 69, 0.9);
  transform: scale(1.1);
}

.file-upload-wrapper.has-preview .file-upload-label,
.file-upload-wrapper.has-preview .file-size-info {
  display: none;
}

/* Project Upgrades Styling */
.upgrade-option {
  border: 2px solid #eef0f2;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  height: 100%;
}

.upgrade-option:hover,
.upgrade-option.selected {
  border-color: var(--mainColor);
  background-color: #f1f7fe;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.1);
}

.upgrade-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.upgrade-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--titleColor);
  margin: 0;
}

.upgrade-price {
  font-size: 1rem;
  font-weight: 700;
  color: #28a745;
  background-color: #e9f7ef;
  padding: 5px 12px;
  border-radius: 50px;
}

.upgrade-description {
  font-size: 0.9rem;
  color: var(--bodyColor);
  line-height: 1.6;
  margin: 0;
}

.unit-wrapper-toman input {
  padding-left: 50px;
}

.unit-wrapper-toman::after {
  content: 'تومان';
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #495057;
  font-size: 0.9em;
}

#project-description {
  max-height: 120px;
  overflow: hidden;
  resize: none;
  transition: max-height 0.5s ease-in-out;
  min-height: 120px;
}

#project-description.expanded {
  max-height: 600px;
  overflow: auto;
  resize: vertical;
}

#ai-expand-btn i {
  vertical-align: middle;
  font-size: 18px;
  margin-right: 5px;
}

#description-alert {
  font-size: 14px;
  padding: 10px 15px;
  text-align: center;
}

.contact-form:focus-within {
  z-index: 2;
}

/* =================================
   Project Proposal V2 Styles
====================================*/
.job-details-portfolio .recent-job-card {
  display: none;
}

.proposal-card-v2 {
  display: flex;
  background-color: var(--whiteColor);
  border-radius: 12px;
  border: 1px solid #eef0f2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.proposal-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.proposal-card-v2-sidebar {
  background-color: #f8f9fa;
  width: 220px;
  flex-shrink: 0;
  padding: 25px;
  text-align: center;
  border-left: 1px solid #eef0f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.proposal-card-v2-sidebar .freelancer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--whiteColor);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.proposal-card-v2-sidebar .freelancer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--titleColor);
  margin-bottom: 8px;
}

.proposal-card-v2-sidebar .freelancer-rating,
.proposal-card-v2-sidebar .submission-time {
  font-size: 0.85rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.proposal-card-v2-sidebar .freelancer-rating {
  margin-bottom: 10px;
}

.proposal-card-v2-sidebar .freelancer-rating i {
  color: #ffc107;
}

.proposal-card-v2-main {
  padding: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.proposal-card-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.proposal-card-v2-header .proposal-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.proposal-card-v2-header .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proposal-card-v2-header .meta-item i {
  font-size: 1.3rem;
  color: var(--mainColor);
}

.proposal-card-v2-header .meta-item strong {
  font-size: 1rem;
  color: var(--titleColor);
  font-weight: 600;
}

.proposal-card-v2-header .price strong {
  color: #28a745;
}

.proposal-card-v2-header .proposal-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-hire-v2,
.btn-chat-v2 {
  border-radius: 8px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-hire-v2 {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  padding: 10px 20px;
  font-size: 15px;
}

.btn-hire-v2:hover {
  background-color: #1e2a38;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-chat-v2 {
  width: 44px;
  height: 44px;
  background-color: #f1f3f5;
  color: #495057;
  font-size: 20px;
}

.card-tags-top .btn-chat-v2 {
  height: 34px;
}

.btn-chat-v2:hover {
  background-color: #e2e6ea;
  transform: scale(1.1);
}

.proposal-card-v2-body {
  flex-grow: 1;
}

.proposal-card-v2-body p {
  color: var(--bodyColor);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.proposal-card-v2-footer {
  border-top: 1px solid #eef0f2;
  padding-top: 15px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #6c757d;
}

.proposal-card-v2-footer i {
  font-size: 1.2rem;
  color: var(--mainColor);
}

.proposal-ribbon {
  position: absolute;
  top: -1px;
  right: 20px;
  background-color: #ff9800;
  color: white;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.4s ease;
}

.proposal-card-v2.featured .proposal-ribbon {
  opacity: 1;
  transform: translateY(0);
}

/* --- استایل برای کارت پیشنهاد برجسته --- */
.proposal-card-v2.featured {
  position: relative;
  border: 1px solid #00ca99;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 #5b80a560;
  }

  50% {
    box-shadow: 0 0 20px 8px #5b80a533;
  }

  100% {
    box-shadow: 0 0 0 0 #5b80a500;
  }
}

@media (max-width: 991px) {
  .proposal-card-v2 {
    flex-direction: column;
  }

  .proposal-card-v2-sidebar {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #eef0f2;
  }

  .theme-dark .proposal-card-v2-sidebar {
    border-bottom-color: #2c3a48;
  }
}

@media (max-width: 767px) {
  .proposal-card-v2-header {
    flex-direction: column;
    align-items: stretch;
  }

  .proposal-card-v2-header .proposal-actions {
    flex-direction: row;
    width: 100%;
  }

  .proposal-card-v2-header .proposal-actions .btn-hire-v2 {
    flex-grow: 1;
  }

  .proposal-card-v2-header .proposal-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Clickable Sidebar Link */
a.proposal-card-v2-sidebar-link {
  text-decoration: none;
  color: inherit;
  /* Inherits color from parent */
  display: contents;
  /* Allows the sidebar to behave as a block inside the link */
}

/* New Payment Terms (Footer) Styling */
.proposal-card-v2-footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.proposal-card-v2-footer .footer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.proposal-card-v2-footer ul {
  list-style-type: none;
  padding-right: 25px;
  margin: 0;
}

.proposal-card-v2-footer li {
  font-size: 0.85rem;
  color: var(--bodyColor);
  position: relative;
  padding-right: 15px;
  margin-bottom: 5px;
}

.proposal-card-v2-footer li:last-child {
  margin-bottom: 0;
}

.proposal-card-v2-footer li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--mainColor);
  opacity: 0.7;
}

/* New Tags Styling (Distinct) */
.proposal-tags-v2 {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.proposal-tags-v2 .tag {
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.proposal-tags-v2 .tag.distinct {
  color: #9c27b0;
  background-color: rgba(156, 39, 176, 0.1);
}

/* --- User Profile Preview Card V2 --- */
.user-profile-preview-card {
    background-color: var(--whiteColor);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #eef0f2;
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #eef0f2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--mainColor);
    padding: 3px;
    background-color: var(--whiteColor);
}
.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.verified-badge {
    color: #00ca99;
    font-size: 1.3rem;
}
.profile-info > span {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}
.profile-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--bodyColor);
}
.profile-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.profile-meta i {
    font-size: 1.1rem;
    color: var(--mainColor);
}
.profile-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f3f5;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    transform: translateY(-3px);
}
.profile-tabs .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 20px;
}
.profile-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 10px 0;
    margin: 0 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.profile-tabs .nav-link:first-child {
    margin-right: 0;
}
.profile-tabs .nav-link.active, .profile-tabs .nav-link:hover {
    color: var(--mainColor);
    border-bottom-color: var(--mainColor);
}
.tab-content {
    padding-top: 10px;
}
.rating-summary-v2 {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.overall-rating-v2 {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}
.overall-rating-v2 .score {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.overall-rating-v2 .stars {
    color: #ffc107;
    margin: 5px 0;
    display: flex;
    justify-content: center;
    gap: 2px;
    white-space: nowrap;
}

/* موبایل: کوچکتر کردن ستاره‌ها برای جا گیری بهتر */
@media (max-width: 768px) {
    .overall-rating-v2 .stars {
        font-size: 0.9rem;
        gap: 1px;
    }
    
    .review-rating {
        font-size: 0.8rem;
        gap: 1px;
    }
    
    .detail-score i {
        font-size: 0.8em;
    }
}
.overall-rating-v2 .total-reviews {
    font-size: 0.8rem;
    color: #6c757d;
}
.rating-details {
    flex-grow: 1;
}
.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.detail-label {
    color: var(--bodyColor);
}
.detail-score {
    font-weight: 600;
    color: var(--titleColor);
    white-space: nowrap;
}
.detail-score i {
    color: #ffc107;
    font-size: 0.9em;
    vertical-align: middle;
}
.review-item {
    padding: 15px;
    border-bottom: 1px solid #eef0f2;
}
.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
.review-info {
    flex-grow: 1;
}
.freelancer-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.project-title {
    font-size: 0.85rem;
    color: #6c757d;
}
.review-rating {
    color: #ffc107;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
    white-space: nowrap;
}
.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 8px;
    padding-right: 60px;
}
.review-date {
    font-size: 0.8rem;
    color: #6c757d;
    display: block;
    text-align: left;
}

/* =================================================
   New Modern Chat Styles V2 - (Overrides)
=================================================*/

.chat-content-area .content-right .chat-list-wrapper .chat-list {
  border: 1px solid #eef0f2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.chat-content-area .sidebar-left .sidebar {
  border-radius: 16px;
  border: 1px solid #eef0f2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li {
  padding: 12px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  margin-bottom: 8px;
}

.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li:hover,
.chat-content-area .sidebar-left .sidebar .sidebar-content .chat-menu .list-group-user li.active {
  background-color: #f1f7fe;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eef0f2;
  padding: 1rem 1.5rem;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-header .header-left h6 {
  font-size: 1.1rem;
  font-weight: 600;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container {
  background-color: var(--whiteColor);
  padding: 25px 20px;
  height: calc(100vh - 300px);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat.chat-left .chat-body .chat-message {
  background-color: #f1f3f5;
  color: #212529;
  border-radius: 18px 18px 4px 18px;
  box-shadow: none;
  font-size: 15px;
}
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat.chat-left .chat-body .chat-message p {
  color: #212529;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-container .chat-content .chat .chat-body .chat-message {
  background-color: var(--mainColor);
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.15);
  font-size: 15px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eef0f2;
  padding: 1rem 1.5rem;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form {
  padding-left: 0;
  display: flex;
  gap: 15px;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .form-control {
  flex-grow: 1;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  height: 48px;
  background-color: var(--whiteColor);
}
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .form-control:focus {
  border-color: var(--mainColor);
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .send-btn {
  position: static;
  transform: none;
  flex-shrink: 0;
  border-radius: 50px;
  height: 48px;
  padding: 0 25px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer form .send-btn:hover {
   box-shadow: 0 6px 18px rgba(44, 62, 80, 0.3);
   transform: translateY(-2px);
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .btn-box {
  order: -1;
}

.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .emoji-btn,
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .file-attachment-btn {
    background-color: transparent;
    color: #6c757d;
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .emoji-btn:hover,
.chat-content-area .content-right .chat-list-wrapper .chat-list .chat-list-footer .file-attachment-btn:hover {
    background-color: #e9ecef;
    color: var(--mainColor);
}
.modal-content {
    border-radius: 24px;
}
.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1.5rem;
}
.modal-title {
    font-weight: 600;
}
.modal-body {
    padding: 1.5rem;
}
.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.unit-wrapper-toman {
  position: relative;
}

.unit-wrapper-toman input {
  padding-left: 60px !important;
  text-align: right;
}

/* =================================================
   Notification Timeline Styles (V3)
=================================================*/
.notification-timeline-wrapper {
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}
.notification-timeline-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}
.timeline-items {
    position: relative;
    padding-right: 25px;
}
.timeline-items::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 17px;
    width: 2px;
    background-color: #e9ecef;
    z-index: 0;
}
.timeline-item {
    position: relative;
    margin-bottom: 25px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-icon {
    width: 36px;
    height: 36px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease;
}
.timeline-icon i {
    font-size: 20px;
}
.timeline-content {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
    margin-right: 50px;
    border: 1px solid #e9ecef;
}
.timeline-content .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}
.timeline-content .content-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.timeline-content .content-time {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}
.timeline-content .content-body {
    font-size: 14px;
    color: var(--bodyColor);
    line-height: 1.7;
}
.timeline-item.unread .timeline-icon {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    animation: pulseGlow 1.5s ease-in-out infinite;
}
.timeline-item.unread .timeline-content {
    border-color: var(--mainColor);
    background-color: #f0f7ff;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(44, 62, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(44, 62, 80, 0); }
}
.status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}
.status-open {
    background-color: #e8f5e9; /* Light Green */
    color: #388e3c;
}
.status-closed {
    background-color: #ffebee; /* Light Red */
    color: #d32f2f;
}
.status-pending {
    background-color: #fff3e0; /* Light Orange */
    color: #f57c00;
}
.manage-jobs-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}
.manage-jobs-table .table {
    min-width: 800px;
}
.modal-header .btn-close {
    margin: 0;
}

/* =================================================
   Ticket Chat Modal Styles
=================================================*/
.modal-dialog.modal-lg {
    max-width: 800px;
}

.chat-modal-body {
    background-color: #f5f7fa;
    padding: 1.5rem;
    height: 60vh;
    display: flex;
    flex-direction: column;
}

.chat-history {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
}

.chat-date-separator {
    text-align: center;
    margin: 20px 0;
}

.chat-date-separator span {
    background-color: #e3eaf3;
    color: #6c757d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
}

.chat-message {
    max-width: 75%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-message .message-content {
    padding: 12px 18px;
    border-radius: 18px;
    line-height: 1.6;
}

.chat-message .message-content p {
    margin: 0 0 5px;
    font-size: 15px;
}
.chat-message .message-content p:last-child {
    margin-bottom: 0;
}

.chat-message .message-time {
    font-size: 12px;
    color: #8896a9;
    margin-top: 5px;
}

/* Received Message (from user) */
.message-sent {
    align-self: flex-start;
    align-items: flex-end;
}

.message-sent .message-content {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #eef0f2;
    border-radius: 18px 18px 4px 18px;
    text-align: right;
}

.message-sent .message-time {
    text-align: left;
    margin-right: 5px;
}

/* Sent Message (from support) */
.message-received {
    align-self: flex-end;
    align-items: flex-start;
}

.message-received .message-content {
    background-color: #465669;
    color: #ffffff;
    border-radius: 18px 18px 18px 4px;
    text-align: right;
}
.message-received .message-content p {
    color: #ffffff;
}
.message-received .message-content div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    padding-top: 10px;
    font-size: 14px;
}
.message-received .message-content strong {
    font-weight: 600;
}
.message-received .message-content span {
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.message-received .message-time {
    text-align: right;
    margin-left: 5px;
}

.chat-modal-footer {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 10px;
}

.chat-modal-footer textarea.form-control {
    flex-grow: 1;
    border-radius: 20px;
    resize: none;
    height: auto;
    background-color: #f5f7fa;
    border: 1px solid #e9ecef;
}
.chat-modal-footer textarea.form-control:focus {
    background-color: #ffffff;
    border-color: var(--mainColor);
    box-shadow: none;
}

.chat-modal-footer .send-btn {
    border: none;
    background-color: var(--mainColor);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.chat-modal-footer .send-btn:hover {
    background-color: #1e2a38;
    transform: scale(1.1);
}

.chat-modal-footer .send-btn i {
    font-size: 22px;
}

.chat-modal-footer-v2 {
    background-color: #f0f2f5;
    border-top: 1px solid #e5e5e5;
    padding: 12px 16px;
}
.chat-input-area {
    display: flex;
    align-items: flex-end;
    background-color: #ffffff;
    border: 1px solid #dcdfe3;
    border-radius: 24px;
    padding: 6px 8px;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.chat-input-area:focus-within {
    border-color: var(--mainColor);
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}
.textarea-wrapper {
    flex-grow: 1;
    display: flex;
}
#chat-textarea {
    flex-grow: 1;
    border: none;
    outline: none;
    box-shadow: none;
    resize: none;
    padding: 8px 12px;
    background-color: transparent;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    max-height: 120px;
    overflow-y: hidden;
}
#chat-textarea::placeholder {
    color: #8a8d91;
}
.chat-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 2px;
}
.chat-action-btn, .send-btn-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
.chat-action-btn i, .send-btn-v2 i {
    font-size: 22px;
    color: #5f6368;
}
.chat-action-btn:hover {
    background-color: #e4e6e9;
}
.send-btn-v2 {
    background-color: var(--mainColor);
}
.send-btn-v2 i {
    color: #ffffff;
    transform: rotate(180deg);
}
.send-btn-v2:hover {
    background-color: #1e2a38;
}
[dir="rtl"] #chat-textarea {
    text-align: right;
}
[dir="rtl"] .send-btn-v2 i {
     transform: rotate(0deg);
}

/* =================================================
   Modern Underline Tabs for Profile Forms
=================================================*/

/* Main container for the tabs */
.profile-form-tabs {
    border-bottom: 2px solid #e9ecef; /* A light line for the whole tab bar */
    background-color: transparent; /* Remove the old pill background */
    padding: 0;
    margin-bottom: 0 !important; /* Override default margin */
    border-radius: 0; /* Remove rounded corners */
}

/* Individual tab items (buttons) */
.profile-form-tabs .nav-link {
    border: none !important;
    background-color: transparent !important;
    color: #6c757d; /* Muted color for inactive tabs */
    font-weight: 500;
    font-size: 16px;
    padding: 12px 20px;
    position: relative;
    transition: color 0.3s ease;
    margin: 0 5px;
    border-radius: 0; /* Remove rounded corners */
}

/* Remove hover effect from the old style */
.profile-form-tabs .nav-link:not(.active):hover {
    color: #343a40;
    background-color: transparent !important;
}

.profile-form-tabs .nav-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 50%;
transform: translateX(-50%);
width: 0%;
height: 3px;
background-color: var(--mainColor);
transition: width 0.3s ease-in-out;
}

.profile-form-tabs .nav-link:hover::after {
width: 100%;
}

/* Style for the active tab (will override the hover effect if present) */
.profile-form-tabs .nav-link.active::after {
width: 100%;
}

/* Animate the underline for the active tab */
.profile-form-tabs .nav-link.active::after {
    width: 100%;
}

/* Dark theme adjustments */
.theme-dark .profile-form-tabs {
    border-bottom-color: #3a3b3c; /* Darker border */
}

.theme-dark .profile-form-tabs .nav-link {
    color: #adb5bd; /* Lighter text for dark mode */
}

.theme-dark .profile-form-tabs .nav-link:not(.active):hover {
    color: #f8f9fa;
}

.theme-dark .profile-form-tabs .nav-link.active {
    color: var(--mainColor);
}

.theme-dark .profile-form-tabs .nav-link::after {
    background-color: var(--mainColor);
}

/* Mobile responsive styles for profile card */
@media only screen and (max-width: 767px) {
    .profile-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .profile-meta span {
        word-break: break-all;
        max-width: 100%;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.4;
    }
    
    /* خصوصی برای ایمیل - پیشگیری از overflow */
    .profile-meta span:has(i.ri-at-line) {
        font-size: 0.85rem;
        word-break: break-all;
        text-align: left;
    }
}

/* تبلت - اندازه متوسط */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .profile-meta span {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
        word-break: break-word;
    }
}

/* Modern Statistics Card Styles V3 */
.stat-card-v3 {
  background: var(--whiteColor);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eef0f2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
}

.stat-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  border-color: var(--stat-color);
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-header i {
  font-size: 24px;
  color: var(--stat-color);
}

.stat-header .stat-title {
  font-size: 16px;
  font-weight: 500;
  color: #6c757d;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--titleColor);
  text-align: right;
  direction: ltr;
}

.stat-sparkline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  opacity: 0.2;
  color: var(--stat-color);
}

.sparkline {
  width: 100%;
  height: 100%;
}

/* Dark Theme Adjustments */
.theme-dark .stat-card-v3 {
  background: var(--cardColor);
  border-color: #2c3a48;
}

.theme-dark .stat-header .stat-title {
  color: #a0aec0;
}

@media (max-width: 767px) {
  .timeline-item .timeline-icon {
    margin-right: 6px;
  }
}

.info-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
}
.info-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h4 i {
  font-size: 1.5rem;
  color: var(--mainColor);
}
.theme-dark .info-card {
    background-color: var(--bgColor);
    border-color: #3a3a4a;
}
.info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.info-card h4 {
    margin-bottom: 10px;
}
.info-card p {
    margin-bottom: 0;
    flex-grow: 1;
}
.info-card {
    transition: all 0.3s ease-in-out;
    border-top: 3px solid transparent;
    padding-top: calc(20px - 3px);
}
.info-card:hover{
    border-top-color: var(--mainColor);
}
.info-card h4 {
    transition: color 0.3s ease;
}
.info-card:hover h4 {
    color: var(--mainColor);
}
/* =================================================
   Modern Action & Options Component V2
=================================================*/
.action-container-v2 {
  background-color: var(--whiteColor);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid #eef0f2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.action-card-v2 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.payment-warning-v2 {
  background: linear-gradient(135deg, #ff5b5c 0%, #d62828 100%);
  color: var(--whiteColor);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.action-icon-v2 {
  font-size: 2.5rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.action-content-v2 {
  flex-grow: 1;
}

.action-title-v2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--whiteColor);
}

.action-description-v2 {
  margin: 0;
  opacity: 0.9;
  font-size: 15px;
  color: var(--whiteColor);
}

.action-btn-v2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #d62828;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.action-btn-v2:hover {
  background-color: var(--whiteColor);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-btn-v2 i {
  font-size: 1.2rem;
}

.options-title-v2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--titleColor);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.options-title-v2 i {
  color: var(--mainColor);
  font-size: 1.5rem;
}

.option-card-v2 {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.option-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
  border-color: var(--mainColor);
}

.option-header-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.option-header-v2 i {
  font-size: 1.8rem;
}

.option-header-v2 h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.option-card-v2.satisfied .option-header-v2 i,
.option-card-v2.satisfied .option-header-v2 h6 {
  color: #28a745;
}

.option-card-v2.revision .option-header-v2 i,
.option-card-v2.revision .option-header-v2 h6 {
  color: #ffc107;
}

.option-description-v2 {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: auto;
  padding-bottom: 15px;
}

.revision-info-v2 {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

.revision-info-v2 p {
  margin: 0 0 5px;
  font-size: 14px;
  color: #856404;
  display: flex;
  align-items: center;
}

.revision-info-v2 p i {
  margin-left: 5px;
  font-size: 1.1rem;
}

.revision-info-v2 span {
  font-size: 13px;
  color: #6c757d;
  display: block;
}

.option-btn-v2 {
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.option-btn-v2 i {
  font-size: 1.2rem;
}

.option-btn-v2.btn-success {
  background-color: #28a745;
  color: #fff;
}
.option-btn-v2.btn-success:hover {
  background-color: #218838;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.option-btn-v2.btn-warning {
  background-color: #ffc107;
  color: #212529;
}
.option-btn-v2.btn-warning:hover {
  background-color: #e0a800;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

/* Dark Theme */
.theme-dark .action-container-v2 {
  background-color: var(--cardColor);
  border-color: #2c3a48;
}

.theme-dark .options-title-v2 {
  color: #e9ecef;
}

.theme-dark .option-card-v2 {
  background-color: var(--bgColor);
  border-color: #2c3a48;
}

.theme-dark .option-description-v2,
.theme-dark .revision-info-v2 span {
  color: #a0aec0;
}

.theme-dark .revision-info-v2 {
  background-color: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

.theme-dark .revision-info-v2 p {
  color: #ffca2c;
}

/* RTL Support */
[dir="rtl"] .action-btn-v2 i,
[dir="rtl"] .options-title-v2 i,
[dir="rtl"] .option-btn-v2 i,
[dir="rtl"] .revision-info-v2 p i {
  margin-left: 0;
  margin-right: 5px;
}
[dir="rtl"] .action-btn-v2 i {
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 767px) {
  .action-card-v2 {
      flex-direction: column;
      align-items: flex-start;
      text-align: right;
  }
  .action-btn-v2 {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
  }
  [dir="rtl"] .action-card-v2 {
      text-align: right;
  }
}
.non-hover:hover {
  transform: translateY(0) !important;
}
/* =================================================
   Modern Info Card Styles V3
=================================================*/
.info-card-v3 {
  background-color: var(--whiteColor);
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.07);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.info-card-v3::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.info-card-v3:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.12);
  border-color: rgba(44, 62, 80, 0.1);
}

.info-card-v3:hover::before {
  opacity: 0.08;
  transform: scale(1.2);
}

.info-card-v3.project-card::before {
  background: radial-gradient(circle, #5b80a5, transparent 60%);
}

.info-card-v3.freelancer-card::before {
  background: radial-gradient(circle, #00ca99, transparent 60%);
}


.info-card-v3 .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.info-card-v3 .card-header .icon-wrapper {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.6rem;
}

.info-card-v3.project-card .icon-wrapper {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1e88e5;
}

.info-card-v3.freelancer-card .icon-wrapper {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #43a047;
}

.info-card-v3 .card-header .title-group h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
  margin: 0;
}

.info-card-v3 .card-body p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--titleColor);
  margin: 0;
}

.info-card-v3 .card-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.info-card-v3 .card-footer .footer-text {
  font-size: 0.9rem;
  color: #6c757d;
}
.info-card-v3 .card-footer .rating-display {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Dark Theme */
.theme-dark .info-card-v3 {
    background-color: var(--bgColor);
    border-color: #2c3a48;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.theme-dark .info-card-v3:hover {
    border-color: rgba(0, 202, 153, 0.3);
}
.theme-dark .info-card-v3.project-card .icon-wrapper {
    background: linear-gradient(135deg, #2a333d, #344050);
    color: #64b5f6;
}
.theme-dark .info-card-v3.freelancer-card .icon-wrapper {
    background: linear-gradient(135deg, #2a333d, #344050);
    color: #81c784;
}
.theme-dark .info-card-v3 .card-header .title-group h4 {
    color: #a0aec0;
}
.theme-dark .info-card-v3 .card-footer {
    border-top-color: #2c3a48;
}
.theme-dark .info-card-v3 .card-footer .footer-text {
    color: #8a96a8;
}
/* Modern Segmented Control for Revision Form */
.segmented-control {
  display: flex;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  overflow: hidden;
  padding: 4px;
  background-color: #f8f9fa;
}

.segmented-control .btn {
  border: none !important;
  color: var(--bodyColor);
  background-color: transparent !important;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segmented-control .btn:not(:last-child) {
  border-left: 1px solid #dee2e6;
}

.segmented-control .btn span {
  align-items: center;
  gap: 8px;
}

.segmented-control .btn-check:checked + .btn {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
  transform: scale(1.02);
}

.segmented-control .btn-check:checked + .btn i {
  color: var(--whiteColor) !important;
}

.theme-dark .segmented-control {
    background-color: var(--bgColor);
    border-color: #444;
}

.theme-dark .segmented-control .btn {
    color: #a0aec0;
}

.theme-dark .segmented-control .btn:not(:last-child) {
    border-left-color: #444;
}

.theme-dark .segmented-control .btn-check:checked + .btn {
    background-color: var(--mainColor) !important;
    color: var(--whiteColor) !important;
}
.theme-dark .text-dark-light {
    color: #adb5bd !important;
}

/* Mobile Responsive Tabs */
.tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .tabs-wrapper {
        overflow-x: visible;
    }
    .projectsTab {
        justify-content: center !important;
    }
}
@media (max-width: 768px) {
  .projectsTab {
    margin-bottom: 0 !important;
}
}

.projectsTab {
    flex-wrap: nowrap !important;
    justify-content: flex-start;
}

.projectsTab .nav-link {
    white-space: nowrap;
}

/* Invoice Modal Styles */
.invoice-preview {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.invoice-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.invoice-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.invoice-section h6 {
    color: #495057;
    margin-bottom: 10px;
    font-weight: 600;
}

.invoice-footer {
    border-top: 1px solid #dee2e6;
    padding-top: 15px;
    margin-top: 20px;
}

.invoice-footer p {
    margin-bottom: 5px;
}

/* City and Language Selection Styles */
.city-search-wrapper,
.language-search-wrapper {
    position: relative;
}

.chip-input-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 45px;
    padding: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    cursor: text;
}

.chip-input-container input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 100px;
    padding: 8px 0;
    font-size: 14px;
    background: transparent;
}

.chip {
    display: inline-flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 2px 4px 2px 0;
    font-size: 14px;
    color: #333;
    position: relative;
}

.chip span {
    margin-right: 8px;
}

.chip-remove {
    cursor: pointer;
    color: #666;
    font-weight: bold;
    margin-left: 5px;
    padding: 0 2px;
    border-radius: 50%;
    transition: all 0.2s;
}

.chip-remove:hover {
    background-color: #ddd;
    color: #333;
}

.search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none;
}

.search-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.search-item:hover,
.search-item.active {
    background-color: #f8f9fa;
}

.search-item:last-child {
    border-bottom: none;
}