:root {
  --primary-color: #027dcf;
  --red-color: #e70000;
  --light-red-color: #ff8b8b;
  --dark-grey-color: #3d3d3d;
  --grey-color: #5d5d5d;
  --black-color: #000000;
  --light-white-color: #edf6ff;
  --white-color: #fff;
}
.body-bg {
  background: #f5f5f9;
}

.red-txt {
  color: #e70000 !important;
}
.green-txt {
  color: #02b11f !important;
}

.main-header-login {
  display: flex;
  padding-bottom: 30px;
  gap: 30px;
}
.main-header-login .main-sidebar {
  position: sticky;
  top: 90px;
}
.main-header-login .main-sidebar .mobile-view-logo-details {
  display: none;
}
.main-header-login .main-sidebar .sidebar {
  margin-top: 120px;
  width: 250px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.main-header-login .main-sidebar .sidebar .toggle-icon {
  display: none;
}
.main-header-login .main-sidebar .sidebar .logo-details {
  padding: 30px;
  border-bottom: 1px solid #e7e7e7;
}
.main-header-login .main-sidebar .sidebar .logo-details .user-img {
  border-radius: 50%;
  width: 75px;
}

.document-item img {
  width: 65px;
}
.profile-image-cover {
  width: 75px;
  height: 75px;
  border-radius: 50%; /* makes it a circle */
  overflow: hidden;   /* clips the image inside the circle */
  display: inline-block; /* keep size and inline behavior */
}

.profile-image-cover img.user-img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fills the container and keeps aspect ratio */
  display: block;     /* remove inline gap */
  border-radius: 50%; /* optional: round image edges to match container */
}

.main-header-login .main-sidebar .sidebar .logo-details .company-img {
  width: 175px;
}
.main-header-login .main-sidebar .sidebar .logo-details h5 {
  color: #082b49;
  padding: 10px 0px 6px 0px;
}
.main-header-login .main-sidebar .sidebar .logo-details span {
  color: #027dcf;
  font-size: 14px;
}
.main-header-login .main-sidebar .sidebar .logo-details p a {
  color: #082b49;
  padding-top: 10px;
  font-size: 14px;
}
.main-header-login .main-sidebar .sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 30px 18px 15px;
  border-left: 12px solid #fff;
  line-height: 1.6;
}

.main-header-login .main-sidebar .sidebar ul li a img {
  width: 16px;
}
.main-header-login .main-sidebar .sidebar ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #e70000;
  border: 1px solid #e70000;
  border-radius: 3px;
  height: 16px;
  width: 16px;
}
.main-header-login .main-sidebar .sidebar ul li a .links_name {
  color: #082b49;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  transition: all ease-in 0.3s;
}
.main-header-login .main-sidebar .sidebar ul li a:hover .links_name {
  transition: all 0.5s ease;
  color: #027dcf;
}
.main-header-login .main-sidebar .need-help-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  border: 6px solid #fff;
  background: #e0f0fe;
  border-radius: 6px;
  margin: 30px 0px;
  overflow: hidden;
}
.main-header-login .main-sidebar .need-help-wrap p {
  color: var(--black-color);
}
.main-header-login .main-sidebar .need-help-wrap a span {
  color: var(--black-color);
}
.main-header-login .main-sidebar .client-relation-executive {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 6px solid #fff;
  background: #e0f0fe;
  border-radius: 6px;
  margin: 30px 0px;
  overflow: hidden;
}
.main-header-login .main-sidebar .client-relation-executive i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background: #d1d1d1;
  border-radius: 6px;
  font-size: 75px;
  margin: 30px 0px 20px 0px;
}
.main-header-login .main-sidebar .client-relation-executive p {

}
.main-header-login .main-sidebar .client-relation-executive p a{
  color: var(--black-color);
}
.main-header-login .main-sidebar .client-relation-executive p a:hover{
  color: var(--primary-color);
}

.notification {
  position: relative;
}
.notification li a {
  position: relative;
  color: #3d3d3d;
}
.notification li a i {
  font-size: 25px;
  color: #3d3d3d;
}
.notification li a span {
  position: absolute;
  right: 0;
  top: -2px;
  height: 8px;
  width: 8px;
  border: 1px solid #e4e6e8;
  border-radius: 50%;
  background: #027dcf;
}
.notification li a .notification-indicator {
  position: absolute;
  right: 0;
  top: -2px;
  height: 8px;
  width: 8px;
  border: 1px solid #e4e6e8;
  border-radius: 50%;
  background: #027dcf;
}
.notification .notification-dropdown {
  padding: 10px !important;
  margin-left: -250px !important;
  min-width: 130px !important;
  width: 330px;
}
.notification .notification-dropdown .notification-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ececec;
  position: relative;
}
.notification .notification-dropdown .notification-item:last-child {
  border-bottom: none;
}
.notification .notification-dropdown .notification-item.read {
  opacity: 0.8;
}
.notification .notification-dropdown .notification-item.read .unread-dot {
  display: none;
}
.notification .notification-dropdown .notification-item .profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.notification .notification-dropdown .notification-item .notification-content {
  flex: 1;
}
.notification .notification-dropdown .notification-item .notification-content p {
  margin: 0;
  font-size: 14px;
  color: #3d3d3d;
}
.notification .notification-dropdown .notification-item .notification-content small {
  font-size: 12px;
  color: #888888;
}
.small {
  font-size: 10px!important;
  line-height: 12px;
}
.notification .notification-dropdown .notification-item .unread-dot {
  width: 7px;
  height: 7px;
  background: #027dcf;
  border-radius: 50%;
  margin-left: 10px;
}
.notification .company-logo img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu {
  position: absolute;
  padding: 30px 40px 30px 20px;
  margin-top: 65px;
  margin-left: -230px;
  text-align: left;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 260px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 16px 2px rgba(0, 0, 0, 0.16);
  list-style: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu .profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e7e7e7;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu .profile-info img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu .profile-info p {
  color: #3d3d3d;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu .profile-info a {
  font-size: 12px!important;
  color: #737584;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu li {
  transition: all 0.5s ease-in-out;
  padding-top: 15px;
  color: #000!important;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu li a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--black-color);
  border: none;
  transition: all 0.5s ease-in-out;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu li a img {
  width: 18px;
}
.notification .nav-contentsdiff .company-profile-dropdownmenu li:hover a {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.notification .nav-contentsdiff:hover .company-profile-dropdownmenu {
  margin-top: 20px;
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}

.side-nav-active {
  background: #027dcf !important;
  border-left: 12px solid #e70000 !important;
}
.side-nav-active img {
  filter: brightness(50);
}
.side-nav-active i {
  color: #fff !important;
  border: 1px solid #fff !important;
}
.side-nav-active .links_name {
  color: #fff !important;
}

.main-dashboard-section {
  margin-top: 120px;
  width: -webkit-fill-available;

}

.welcome-company-info {
  position: relative;
  padding: 20px 15px;
  background-image: linear-gradient(290deg, #38b1f8, #027dcf);
  color: #fff;
  border-radius: 5px;
  z-index: 1;
}
.welcome-company-info::before {
  content: "";
  position: absolute;
  background-image: url(../images/user_db_banner.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.52;
  z-index: -1;
}
.welcome-company-info h4,
.welcome-company-info h6 a {
  font-weight: 400;
  color: #fff;
}
.welcome-company-info h6 {
  text-decoration: underline;
  color: #fff;
}
.welcome-company-info p {
  width: 70%;
  font-weight: 300;
  line-height: 1.5;
  padding: 15px 0px 80px 0px;
}
.welcome-company-info img {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 20%;
}
.welcome-company-info .white-clr-btn {
  border-radius: 6px;
  color: #027dcf;
  border: 1px solid #fff;
  transition: all 0.5s ease-in-out;
}
.welcome-company-info .white-clr-btn::after {
  content: "";
  position: absolute;
  height: 120%;
  width: 150%;
  background: #fff;
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.welcome-company-info .white-clr-btn:hover {
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s ease-in-out;
}
.welcome-company-info .white-clr-btn:hover::after {
  left: 120%;
  transition: all 0.5s ease-in-out;
}

.user-db-title h6 {
  font-weight: 400;
  padding-top: 30px;
}

.dashboard-vacancies-module table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 6px;
  margin-top: 20px;
}
.dashboard-vacancies-module table td {
  font-size: 14px;
}
.dashboard-vacancies-module table td a {
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}
.dashboard-vacancies-module table td a .user-db-company-logo {
  width: 95px;
}
.dashboard-vacancies-module table td a .user-db-square-company-logo {
  width: 30px;
  height: 30px;
}
.dashboard-vacancies-module table td .upload-area-file {
  cursor: pointer;
}
.dashboard-vacancies-module table td .upload-area-file .file-input {
  display: none;
}
.dashboard-vacancies-module table td .upload-area-file .upload-button {
  color: #5d5d5d;
  background-image: linear-gradient(to bottom, #c1c1c1, rgba(255, 255, 255, 0.44));
  padding: 9px 18px;
  border: 1px solid #888888;
  border-radius: 4px;
  font-size: 14px;
  transition: transform 0.4s;
  cursor: pointer;
}
.dashboard-vacancies-module table th {
  font-weight: 400;
}
.dashboard-vacancies-module table th,
.dashboard-vacancies-module table td {
  border: none;
  text-align: left;
  padding: 15px;
}
.dashboard-vacancies-module table tr {
  border-top: 1px solid #ececec;
  transition: all 0.5s ease-in-out;
}
.dashboard-vacancies-module table tr:first-child {
  background: #027dcf;
  color: #fff;
}
.dashboard-vacancies-module table tr:not(:first-child) {
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.dashboard-vacancies-module table tr:not(:first-child):hover {
  background: #e0f0fe;
  transition: all 0.5s ease-in-out;
}
.dashboard-vacancies-module table tr:not(:first-child):hover a {
  color: #027dcf;
  transition: all 0.5s ease-in-out;
}

.table-container {
  width: 100%;
}
.table-container .flex h6 {
  font-weight: 400;
}
.table-container .flex a {
  color: #027dcf;
  font-size: 14px;
}
.table-container .scrollbar {
  width: 100%;
  /*overflow-x: auto;*/
  background: #f5f5f5;
}
.table-container .scrollbar .force-overflow {
  min-width: 430px;
  width: 100%;
}

#style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}
#style-1::-webkit-scrollbar {
  height: 5px;
  background-color: #f5f5f5;
}
#style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 6px;
  /*overflow: hidden;*/
  margin-top: 20px;
}
table td {
  font-size: 13px;
}
table td a {
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}
table td a .user-db-company-logo {
  width: 95px;
}
table td a .user-db-square-company-logo {
  width: 30px;
  height: 30px;
}
table td .upload-area-file {
  cursor: pointer;
}
table td .upload-area-file .file-input {
  display: none;
}
table td .upload-area-file .upload-button {
  color: #5d5d5d;
  background-image: linear-gradient(to bottom, #c1c1c1, rgba(255, 255, 255, 0.44));
  padding: 9px 18px;
  border: 1px solid #888888;
  border-radius: 4px;
  font-size: 14px;
  transition: transform 0.4s;
  cursor: pointer;
}
table th {
  font-weight: 400;
  white-space: nowrap;
}
table th,
table td {
  border: none;
  text-align: left;
  padding: 13px 15px;
}
table tr {
  border-top: 1px solid #ececec;
  transition: all 0.5s ease-in-out;
}
table tr:first-child {
  background: #027dcf;
  color: #fff;
}
table tr:not(:first-child) {
  background: #fff;
  transition: all 0.5s ease-in-out;
}
table tr:not(:first-child):hover {
  background: #e0f0fe;
  transition: all 0.5s ease-in-out;
}
table tr:not(:first-child):hover a {
  color: #027dcf;
  transition: all 0.5s ease-in-out;
}


.hide {
  display: none;
}

.main-section {
  width: 100%;
}

.material-tabs {
  position: relative;
  background: #fff;
  border-radius: 30px;
  margin-top: 30px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.12);
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.material-tabs > .tab {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 13px 28px;
  font-size: 14px;
  color: #6d6d6d;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.material-tabs > .tab.tabactive, .material-tabs > .tab:not(.tabactive):hover {
  outline: none;
  background: #027dcf;
  border-radius: 30px;
  color: #fff;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease-in-out;
}

.tab-content .dashboard-vacancies-module table tr td:last-child,
.tab-content .dashboard-vacancies-module table tr th:last-child {
  text-align: center;
}

.vacancy-board {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
}
.vacancy-board h4 {
  font-weight: 400;
}
.vacancy-board .search {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.06);
}
.vacancy-board .search .search-btn {
  color: #fff;
  float: right;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #027dcf;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vacancy-board .search .search-txt {
  border: none;
  background: none;
  outline: none;
  margin-top: 15px;
  margin-left: 20px;
  font-size: 14px;
}
.vacancy-board .post-job-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  color: #027dcf;
  border: 1px solid #027dcf;
  border-radius: 30px;
}
.vacancy-board .post-job-btn input {
  display: none;
}
.vacancy-board .post-job-btn i {
  font-size: 10px;
  margin-right: 8px;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropbtn {
  color: #3d3d3d;
  border: none;
  cursor: pointer;
  background: transparent;
}
.dropdown .dropbtn:hover,
.dropdown .dropbtn :focus {
  color: #000000;
}
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.12);
  padding: 10px 20px;
  border-radius: 5px;
  margin-left: -60px;
  z-index: 1;
}
.dropdown .dropdown-content a {
  display: block;
  color: #000000;
  padding: 5px 0px;
  text-decoration: none;
  font-size: 14px;
  text-align: left;
}
.dropdown .dropdown-content button.text-button {
padding: 5px 0px 5px 0px !important;
}
.dropdown .show {
  display: block !important;
}

.upper-nav ul {
  display: flex;
  background: #fff;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}
.upper-nav ul li {
  display: flex;
}
.upper-nav ul li a {
  display: flex;
  align-items: center;
  padding: 15px 28px;
  border-radius: 30px;
  line-height: 1.4;
}
.upper-nav ul li a img {
  width: 16px;
}
.upper-nav ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #e70000;
  border: 1px solid #e70000;
  border-radius: 3px;
  height: 16px;
  width: 16px;
}

.upper-nav-active {
  background: #027dcf !important;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.12) !important;
}
.upper-nav-active img {
  filter: brightness(50);
}
.upper-nav-active i {
  color: #fff !important;
  border: 1px solid #fff !important;
}

.upper-nav {
  margin-top: 120px;
}

.vacancy-post-banner {
  position: relative;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.025);
  padding: 25px;
  z-index: 1;
}
.vacancy-post-banner::before {
  content: "";
  position: absolute;
  background-image: url(../images/edit_profile_banner.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}
.vacancy-post-banner.pink-vacancy-post-banner::before {
  background-image: url(../images/post-vacancy-banner.svg);
  opacity: 0.06;
}
.vacancy-post-banner h4 {
  font-weight: 500;
}
.vacancy-post-banner .post-vacency-prop {
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
}
.vacancy-post-banner h6 {
  font-weight: 500;
  color: #027dcf;
  padding: 25px 0px 15px 0px;
}
.vacancy-post-banner .vacancy-form-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  padding-bottom: 15px;
}
.vacancy-post-banner .vacancy-form-wrap-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.vacancy-post-banner .vacancy-form-wrap-2 {
  grid-template-columns: 1fr 1fr;
}
.vacancy-post-banner .vacancy-form-wrap-1 {
  grid-template-columns: 1fr;
}
.vacancy-post-banner .vacancy-form-wrap .vacancy-form-module {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.vacancy-post-banner .vacancy-form-wrap .vacancy-form-module input {
  border: 1px solid #888888;
  color: var(--black-color);
  background: #fff;
  border-radius: 4px;
  padding: 11px 18px;
}
.vacancy-post-banner .vacancy-form-wrap .vacancy-form-module input:disabled{
  background: #f0f0f0;
}
.vacancy-post-banner .vacancy-form-wrap .vacancy-form-module label {
  margin-bottom: 10px;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select {
  position: relative;
}
.fixedwidthselect {
  width: 280px;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select select {
  display: none;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select .select-selected {
  border: 1px solid #888888;
  color: #383838;
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 14px;
  background: #fff;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select .select-selected::after {
  position: absolute;
  content: "";
  bottom: 18px;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: rotate(225deg);
  border-top: 2px solid #888888;
  border-left: 2px solid #888888;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select .select-selected.select-arrow-active::after {
  transform: rotate(45deg);
  bottom: 15px;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
  border-left: 1px solid #888888;
  border-right: 1px solid #888888;
  border-bottom: 1px solid #888888;
  border-radius: 0px 0px 5px 5px;
  background: #fff;
  max-height: 250px;
  overflow-y: auto;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select-general select{
  border: 1px solid #888888;
  color: var(--black-color);
  background: #fff;
  border-radius: 4px;
  padding: 10px 18px;
  border-left: 1px solid #888888;
  border-right: 1px solid #888888;
  border-bottom: 1px solid #888888;
  background: #fff;
  max-height: 250px;
  overflow-y: auto;
  font-size: 15px;
}


.vacancy-post-banner .vacancy-form-wrap .custom-select .select-items div {
  color: #454545;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.5s ease-in-out;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select .select-items div:hover {
  background: #e0f0fe;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select .select-items div .same-as-selected {
  color: #888888;
  transition: all 0.5s ease-in-out;
}
.vacancy-post-banner .vacancy-form-wrap .custom-select .select-hide {
  display: none;
}
.vacancy-post-banner .post-vacency-prop-2 {
  position: absolute;
  width: 310px;
  right: 0;
  top: 45%;
}
button.text-button {
  padding: 5px 0px 15px 0px!important;
  cursor: pointer;
  display: block;
  border: none;
  outline: none;
  text-wrap: nowrap;
}

.warning-box {
  margin: 0px 0px 20px 0px;
  padding: 30px;
  border: 1px dashed rgb(28, 97, 226);
  background: rgb(230, 240, 255);
  color: #000;
  border-radius: 10px;
}
.warning-box h5{
  color: #027dcf;
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 10px;
}
.warning-box p{
  font-weight: 300;
  font-size: 16px;
}

.joblist {
  display: block;
}
.joblist li {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px dashed #ccc;
}

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .main-dashboard-section .grid-2,
  .grid-2-1 {
    grid-template-columns: 1fr;
  }
  .welcome-company-info img {
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 28%;
  }
  .vacancy-board .search .search-txt {
    font-size: 14px;
    width: 150px;
  }
  .material-tabs > .tab {
    padding: 10px 20px;
  }
  .vacancy-post-banner .vacancy-form-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .nav-contentsdiff .company-profile-dropdownmenu {
    margin-left: -200px;
    padding: 20px;
  }
  .notification .notification-dropdown .notification-item .profile-img {
    width: 35px;
    height: 35px;
  }
  .vacancy-post-banner .post-vacency-prop {
    width: 85px;
  }
  .vacancy-post-banner .post-vacency-prop-2 {
    width: 130px;
  }
}
@media (max-width: 950px) {
  .upper-nav {
    display: none;
  }
  .main-header-login {
    flex-direction: column;
    margin-bottom: 0;
  }
  .main-header-login .main-sidebar {
    position: unset;
  }
  .main-header-login .main-sidebar .sidebar ul {
    display: flex;
    align-items: center;
  }
  .main-header-login .main-sidebar .need-help-wrap,
  .main-header-login .main-sidebar .client-relation-executive {
    display: none;
  }
  .main-header-login .main-sidebar .sidebar .toggle-icon {
    display: block;
  }
  .main-header-login .main-sidebar .sidebar .logo-details {
    padding: 15px;
    border-bottom: none;
  }
  .main-header-login .main-sidebar .sidebar ul li a {
    padding: 20px;
  }
  .side-nav-active {
    border-left: none !important;
  }
  .main-header-login .main-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease-in-out;
  }
  .main-header-login .main-sidebar .mobile-view-logo-details {
    display: block;
    margin-top: 80px;
    padding: 25px;
    border: 6px solid #fff;
    border-radius: 6px;
    background: #e0f0fe;
  }
  .main-header-login .main-sidebar .mobile-view-logo-details .company-img {
    width: 100px;
  }
  .main-header-login .main-sidebar .mobile-view-logo-details .user-img {
    width: 60px;
  }
  .main-header-login .main-sidebar .mobile-view-logo-details h5 {
    color: #082b49;
    padding: 15px 0px 5px 0px;
  }
  .main-header-login .main-sidebar .mobile-view-logo-details span {
    color: #027dcf;
    font-size: 14px;
  }
  .main-header-login .main-sidebar .mobile-view-logo-details p a {
    color: #082b49;
    padding-top: 10px;
    font-size: 14px;
  }
  .main-header-login .main-sidebar .sidebar {
    width: 100%;
    display: flex;
    align-items: center;
    height: 55px;
    margin-top: 20px;
    overflow-x: auto;
    transition: all 0.5s ease-in-out;
  }
  .main-header-login .main-sidebar .sidebar .logo-details {
    display: none;
  }
  .main-header-login .main-sidebar .sidebar span {
    display: none;
    transition: all 2s ease-in-out;
  }
  .notification .notification-dropdown .notification-item .notification-content p {
    font-size: 12px;
  }
  .main-dashboard-section,
  .vacancy-board,
  .upper-nav {
    margin-top: 0px;
  }
  .table-container .scrollbar .force-overflow {
    min-width: 548px;
  }
  .material-tabs {
    display: flex;
  }
}
@media (max-width: 768px) {
  .notification .notification-dropdown .notification-item .notification-content p {
    font-size: 12px;
  }
  .side-nav-active {
    border-left: none !important;
  }
  .table-container .scrollbar .force-overflow {
    min-width: 570px;
  }
  .upper-nav ul li a {
    padding: 7px 20px;
  }
  .vacancy-post-banner .vacancy-form-wrap {
    grid-template-columns: 1fr;
  }
  .vacancy-post-banner .upload-area-file p .upload-button {
    padding: 6px 12px;
    font-size: 14px;
  }
  .vacancy-post-banner .upload-area-file p .upload-button .vacancy-form-wrap {
    grid-template-columns: 1fr;
  }
  .company-details-form .post-vacency-prop-2 {
    width: 70px;
  }
  .home-section {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .vacancy-board {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 650px) {
  .welcome-company-info p {
    width: 80%;
    padding: 15px 0px 60px 0px;
  }
  .dashboard-vacancies-module table td .upload-area-file .upload-button {
    padding: 7px 14px;
    font-size: 13px;
  }
  .material-tabs {
    background: transparent;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: none;
    border-radius: 0;
  }
  .material-tabs > .tab {
    background-color: white;
    border-radius: 30px;
  }
}
@media (max-width: 525px) {
  body,
  p {
    font-size: 14px;
  }
  h1 {
    font-size: 35px;
    font-weight: bold;
    line-height: 57.6px;
  }
  h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 48px;
  }
  h3 {
    font-size: 25px;
    line-height: 39.6px;
  }
  h4 {
    font-size: 21px;
    font-weight: 400;
    line-height: 33.6px;
  }
  h5 {
    font-size: 18px;
    line-height: 27.6px;
  }
  h6 {
    font-size: 15px;
    line-height: 22.8px;
  }
  .grid-4,
  .total-count-wrap {
    grid-template-columns: 1fr;
  }
  .gap-30 {
    gap: 20px;
  }
  .mobile-view .mobile-menu .mobile-flex .logo-wrap a img {
    width: 160px;
  }
  .nav-contentsdiff .company-profile-dropdownmenu {
    padding: 20px 30px 20px 15px;
  }
  .nav-contentsdiff .company-profile-dropdownmenu .profile-info {
    padding-bottom: 20px;
  }
  .nav-contentsdiff .company-profile-dropdownmenu .profile-info a {
    font-size: 13px;
  }
  .welcome-company-info p {
    width: 100%;
  }
  .welcome-company-info img {
    display: none;
  }
  .vacancy-board div form.flex {
    flex-direction: column;
    align-items: normal;
    gap: 10px;
  }
  .vacancy-post-banner {
    padding: 15px;
  }
  .vacancy-post-banner .upload-area-file p .upload-button {
    padding: 6px 12px;
    margin-right: 7px;
  }
  .vacancy-post-banner .post-vacency-prop {
    width: 50px;
  }
  .dashboard-vacancies-module table th,
  .dashboard-vacancies-module table td {
    padding: 13px 10px;
    font-size: 11px;
  }
  .dashboard-vacancies-module table a {
    font-size: 11px;
  }
  .vacancy-details-table.mt-30 {
    margin-top: 15px;
  }
  .vacancy-details-table .vacancy-info {
    padding: 13px;
  }
  .vacancy-details-table .dashboard-vacancies-module .view-btn {
    padding: 5px 8px;
    font-size: 11px;
  }
  .shortlist-module .applicant-list-module div div span {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .notification .notification-dropdown {
    margin-left: -205px !important;
    width: 275px;
  }
  .welcome-company-info p {
    padding: 15px 0px 35px 0px;
  }
}/*# sourceMappingURL=user-dashboard-style.css.map */

/*APPLICATION DETAILS FOR EMPLOYER*/
.gird-1-5 {
  display: grid;
  grid-template-columns: 2fr 7fr;
  grid-gap: 30px;
}

.second-sidebar {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.5s ease;
}
.second-sidebar ul{
  margin: 0px;
  padding: 0px;
}

.second-sidebar ul li{
  display: block;
  font-size: 14px;
}
.second-sidebar ul li a{
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.second-sidebar ul li a.active{
  background: #027dcf;
  color: #ffffff;
}
.second-sidebar ul li a:hover{
  color: #027dcf;
}