@font-face {
	font-family: Gruppo;
	src: url('/fonts/Gruppo-Regular.ttf');
  }
  @keyframes shine {
	from {
	  mask-position: 150%;
	  -webkit-mask-position: 150%;
	}
	to {
	  mask-position: -50%;
	  -webkit-mask-position: -50%;
	}
}

/* ── Job search autocomplete dropdown ── */
.job-suggest-wrapper {
    position: relative;
}
.job-suggest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: none;
    border-radius: var(--radius);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 9999;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.job-suggest-item {
    padding: 9px 14px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    text-transform: uppercase;
}
.job-suggest-item:last-child { border-bottom: none; }
.job-suggest-item:hover,
.job-suggest-item.active {
    background: #f3e8ff;
    color: #333;
}
/* ───────────────────────────────────── */

/* Rotation animation -- used for customBtn border anim */
@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

@keyframes collapseFromTop {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	100% {
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes scale-in {
	0% {
		transform: scale(0.8) translateX(-50%) translateY(-100%);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateX(-50%) translateY(-100%);
		opacity: 1;
	}
}

/* Angle property */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.navbar {
	box-shadow: none;
}

.customBtnShine {
	mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.93) 50%, rgba(0, 0, 0, 1) 70% );
	mask-size: 200%;
	-webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 1) 70% );
	-webkit-mask-size: 200%;
	animation: shine 2s linear infinite;
}
  :root {
	--primary: #8c15ea;
	--secondary: #25ddd3;
	--info: #004385;
	--white: #f9f9f9;
	--grey: #efefef;
	--dark-grey: #7b7b7b;
	--radius: 10px;
	--shadow: 0 1px 2px rgba(0,0,0,.3);
  }
  [contenteditable].form-control:focus, [type="email"].form-control:focus, [type="password"].form-control:focus, [type="tel"].form-control:focus, [type="text"].form-control:focus, input.form-control:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="text"]:focus, textarea.form-control:focus, textarea:focus {
	  box-shadow: inset 0 -2px 0 #08719800;
  }
  select option {
	  font-family:Arial, Helvetica, sans-serif
  }
  body{
	  font-size: 15px !important;
  }
  .form-control {
	  font-size: 14px !important;
  }
  .form-control::placeholder {
		color: #666 !important;
	}
	input::placeholder,
	textarea::placeholder {
		color: #666 !important;
	}
	/* Select placeholder: color the select grey when the empty-value option is selected */
	select.form-control {
		color: #333;
	}
	select.form-control:has(option[value=""]:checked) {
		color: #666;
	}
	.form-control:focus-visible {
		text-shadow: none !important;
	}
h1 { font-size: 1.5rem; }
h2 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

  .btn {
	  text-transform: none;
	  box-shadow: none;
	  max-height: 40px;
	  box-shadow: var(--shadow);
	  font-size: 14px;
  }
  .btn-primary {
	background-color: var(--primary);
  }
  .btn-secondary, .btn-secondary:focus, .btn-secondary:hover {
	  color: #fff;
  }
  .btn-primary:active:hover, .btn-primary:hover, .btn-primary:focus {
	  background-color: var(--primary);
  }
  .btn-secondary {
	background-color: var(--secondary);
  }
  .btn-info {
	  background-color: var(--info);
  }
  .form-control:disabled {
	  /* background-color: #fff !important; */
  }
  input[disabled], select[disabled], textarea[disabled] {
	color: #888 !important;
  }
  .dropdown-item.active, .dropdown-item:active {
	  background-color: var(--secondary);
	  color: #fff;
  }
  /* NAVBAR */
  .top-bar {
	  width: 100%;
	  background-color: var(--grey);
  }
  .top-bar a {
	  display: block;
	  padding: 8px 16px;
	  color: var(--primary);
  }
  .nav-profile-avatar {
	  width: 45px;
	  max-width: 45px;
	  min-height: 45px;
	  max-height: 45px;
	  border-radius: 50%;
	  border: var(--primary) solid 2px;
	  margin-top: 2px;
	  background-size: contain;
  }
  .nav-profile-avatar:hover {
	  text-decoration: none;
  }
  .nav-profile-avatar p {
	  font-weight: bold;
	  font-size: 16px;
  }
  #langSwitchBtn {
	  max-height: 40px;
	  min-height: 40px;
	  display: block;
	  color: var(--secondary);
	  font-size: 1.2rem;
  }
  #langSwitchBtn:hover {
	  cursor: pointer;
  }
  #langSwitchBtn::after {
	  display: none;
  }
  @media all and (max-width: 991px) {
	  .langDropDown, .logOut {
		  margin: 0px !important;
	  }
	  #langSwitchBtn {
		  margin: 0px !important;
	  }
	  .dropdown-menu {
		  width: 100%;
	  }
	  main {
		/* padding-bottom: 40px !important; */
	}
  }
  .btn-outline-secondary {
	  border: solid 2px var(--secondary);
	  color: var(--secondary);
  }
  .btn-outline-secondary:hover {
	  color: #fff;
	  background-color: var(--secondary);
  }
  .navbar-light .navbar-nav .nav-link {
	  color: var(--primary);
  }
  .btn-toggle-menu {
	  color: var(--primary);
	  font-size: 20px;
  }
  .mobile-menu-nav {
	  border: none;
	  box-shadow: var(--shadow);
  }
.info-i, .info-i-mobile {
	color: var(--primary);
}
/* Keep the info-i only on desktop and hide on mobile with media query*/
.info-i-mobile {
	display: none;
}
@media all and (max-width: 991px) {
	.info-i {
		display: none;
	}
	.info-i-mobile {
		display: block;
	}
}
  /* OFF CANVAS MENU */
  
  body.offcanvas-active{
	  overflow:hidden;
  }
  
  .offcanvas-header{ display:none; }
  
  .screen-darken{
	  height: 100%;
	  width:0%;
	  z-index: 30;
	  position: fixed;
	  top: 0;
	  right: 0;
	  opacity:0;
	  visibility:hidden;
	  background-color: rgba(34, 34, 34, 0.6);
	  transition:opacity .2s linear, visibility 0.2s, width 2s ease-in;
  }
  
  .screen-darken.active{
	  z-index:10; 
	  transition:opacity .3s ease, width 0s;
	  opacity:1;
	  width:100%;
	  visibility:visible;
  }
  .btn-close-menu {
	  float: right;
	  color: var(--secondary);
  }
  .navbar-dark .navbar-nav .nav-link {
	  color: var(--primary);
  }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:active, .navbar-dark .navbar-nav .nav-link:focus {
	  color: var(--secondary);
  }
  .active > .nav-link {
	  color: var(--secondary) !important;
  }
  /* ============ mobile view ============ */
  @media all and (max-width: 991px) {

	.register-img-container {
		display: none !important;
	}
	  
	  .offcanvas-header{ display:block; }
  
	  .mobile-offcanvas{
		  visibility: hidden;
		  transform:translateX(100%);
		  border-radius:0; 
		  display:block;
		  position: fixed;
		  top: 0; right:0;
		  height: 100%;
		  z-index: 1200;
		  width:80%;
		  overflow-y: scroll;
		  overflow-x: hidden;
		  transition: visibility .3s ease-in-out, transform .3s ease-in-out;
		  background-color: var(--white);
	  }
  
	  .mobile-offcanvas.show{
		  visibility: visible;
		  transform: translateX(0);
	  }
	  .mobile-offcanvas .container, .mobile-offcanvas .container-fluid{
		  display: block;
	  }
  
  }
  /* .mobile-sticky-nav-bottom {
	  background-color: var(--primary);
	  border-top: solid 1px var(--secondary);
  } */

	body {
		background-color: var(--grey);
	}
  

  
  
  /* ============ mobile view .end// ============ */
  
  /* FOOTER */
  #footer {
	  background-color: var(--primary);
	  color: #fff;
	  overflow: hidden;
  }
  .footer-col {
	  border-right: 1px solid var(--secondary);
	  min-height: 150px;
  }
  .footer-link-list {
	  list-style: none;
  }
  .footer-link-list > li {
	  margin-bottom: 8px;
  }
  .footer-link-list > li > a {
	  color: #fff;
  }
  .footer-link-list > li > a:hover {
	  color: var(--secondary);
	  text-decoration: none;
  }
  .copyright-link-list {
	  list-style: none;
	  padding: 0;
  }
  .copyright-link-list > li {
	  display: inline-block;
	  margin: 0px 4px;
  }
  .copyright-link-list > li > a {
	  color: #fff;
	  font-size: 1.2rem;
  }
  .copyright-link-list > li > a:hover {
	  color: var(--secondary);
  }
  .copyright-text {
	  color: #fff;
	  font-size: 12px;
  }
  .copyright-text > a {
	  color: var(--secondary);
  }
  .copyright-text > a:hover {
	  text-decoration: none;
  }
  @media only screen and (max-width: 700px) {
	  .footer-col {
		  border-right: none;
		  border-top: 1px solid var(--secondary);
		  min-height: 115px;
	  }
	  .footer-col > h4 {
		  margin-top: 10px;
	  }
	  .footer-col-border {
		border-bottom: 1px solid var(--secondary);
	}
	}
  /* FOOTER */
  
  
  /* HOME PAGE */
  #main-banner {
	  background-color: var(--primary);
	  min-height: 450px;
  }
  #main-banner-search {
	  min-height: 450px;
	  background-repeat: no-repeat;
	  background-position: center left;
	  background-size: 35%;
  }
  #main-banner-search::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 74vh !important;
	background: linear-gradient(90deg, var(--primary) 30%, #8c15eab0 100%);
  }
  .search-form-wrap {
	  transition: all 0.3s ease;
  }
  .search-form-wrap span {
	  color: var(--secondary);
  }
  .search-form-wrap h1, .search-form-wrap h2 {
	  color: var(--white);
	  font-size: 28px;
	  margin: 0;
  }
  .search-form-wrap p {
	  color: var(--white);
	  font-size: 16px;
	  margin: 0;
  }
  .input-group-text {
	  padding: 0px 10px !important;
	  font-size: 20px;
	  background-color: var (--white);
	  border: solid 2px var(--white);
  }
  .form-control {
	  border: solid 2px var(--white);
  }
  [contenteditable].form-control, [type="email"].form-control, [type="password"].form-control, [type="tel"].form-control, [type="text"].form-control, input.form-control, input[type="email"], input[type="number"], input[type="password"], input[type="text"], textarea, textarea.form-control {
	  box-shadow: inset 0 -1px 0 #acacac;
  }
  .searchform-col-l {
	  padding-right: 0px;
  }
  .searchform-col-r {
	  padding-left: 0px;
  }
  .jobtitle {
	  border-top-right-radius: 0px;
	  border-bottom-right-radius: 0px;
  }
  .joblocation {
	  border-top-left-radius: 0px;
	  border-bottom-left-radius: 0px;
  }
  .border-separator {
	  background-color: transparent;
	  color: var(--white) !important;
	  width: 2px;
	  height: 30px;
	  display: inline-block;
	  border: solid 1px;
	  margin-top: 5px;
  }
  @media (max-width: 767px) {
	  .searchform-col-l {
		  padding-right: 15px;
	  }
	  .searchform-col-r {
		  padding-left: 15px;
	  }
	  .searchform-col-r .input-group-prepend {
		border-top-left-radius: 0.375rem !important;
		border-bottom-left-radius: 0.375rem !important;
	  }
	  /* Restore right border-radius on free_search input */
	  .searchform-col-l input[name="free_search"] {
		  border-top-right-radius: 0.375rem !important;
		  border-bottom-right-radius: 0.375rem !important;
	  }
	  /* Hide desktop column separator */
	  .searchform-col-r .border-separator {
		  display: none;
	  }
	  /* Restore left border-radius on location icon (was 0 for desktop seamless join) */
	  .searchform-col-r .joblocation {
		  border-top-left-radius: 0.375rem !important;
		  border-bottom-left-radius: 0.375rem !important;
	  }
	  /* Restore right border-radius on location input (button moves below) */
	  #home-location-input {
		  border-top-right-radius: 0.375rem !important;
		  border-bottom-right-radius: 0.375rem !important;
	  }
	  /* Break the search button onto its own centered row */
	  .searchform-col-r .input-group {
		  flex-wrap: wrap;
	  }
	  .searchform-col-r .input-group-append {
		  width: 100%;
		  display: flex;
		  justify-content: center;
		  margin-top: 0.5rem;
	  }
	  .searchform-col-r .input-group-append .btn {
		  border-radius: 0.375rem;
		  padding: 0.5rem 2.5rem;
	  }
  }
  #latest-jobs p {
	  color: #000;
  }
  #latest-jobs h3 {
	  font-weight: bolder;
  }
  .companies-logo img {
	  width: 100%;
  }

  /* Trusted companies marquee (mobile) */
  .trusted-logos-marquee {
	  overflow: hidden;
	  width: 100%;
  }
  .trusted-logos-track {
	  display: flex;
	  width: max-content;
	  animation: trustedMarquee 18s linear infinite;
  }
  @keyframes trustedMarquee {
	  0%   { transform: translateX(0); }
	  100% { transform: translateX(-50%); }
  }
  .trusted-logo-item {
	  flex-shrink: 0;
	  width: 100px;
	  padding: 0 12px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
  }
  .trusted-logo-item img {
	  width: 100%;
	  max-height: 40px;
	  object-fit: contain;
  }
  @media only screen and (max-width: 700px) {
	#main-banner-search {
		min-height: 440px;
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: 55%;
		padding-top: 3rem;
  	}
  }
  
  /* AGGELIES BOXES INDEX */
  .aggelia-card {
	  background-color: var(--grey);
	  border: none;
	  height: fit-content;
		border-radius: var(--radius);
	  /* width: fit-content; */
	  /* min-height: 215px; */
  }
	.aggelia-card.homepage {
		height: 100%;
		padding: 1rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		scroll-snap-align: center;
	}
  .external-aggelia-img-box {
	  height: 35px;
	  width: 35px;
	  background-repeat: no-repeat;
	  background-size: 100%;
	  background-color: #fff;
	  background-position: center center;
	  border-radius: 100%;
	  font-size: 35px;
	  text-align: center;
	  display: flex; /* Use flexbox for alignment */
	  align-items: center; /* Vertically center the icon */
	  justify-content: center;
  }
  .aggelia-title {
	  word-break: break-word;
	  /* overflow: hidden; */
	  text-overflow: ellipsis;
	  font-size: 14px;
  }
  .aggelia-data {
	  display: flex;
		flex-direction: column;
		width: 100%;
	  gap: 10px;
  }
  .aggelia-data .badge {
	  background-color: #fff;
	  padding: 10px 10px;
		font-size: 10px;
		font-weight: 400;
  }
  
  .aggelia-buttons {
	  display: inline-flex;
	  height: fit-content;
	  gap: 8px;
  }
  
  .aggelia-buttons > .btn-secondary {
	  border: solid 2px var(--secondary);
	  width: fit-content;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 10px;
  }
  
  .aggelia-buttons > .btn-secondary > svg {
	  height: 12px;
  }
  
  .aggelia-buttons > .btn-outline-secondary {
	  border: solid 2px var(--secondary);
	  background-color: none;
	  display: flex;
	  align-items: center;
	  justify-content: center;
  }
  
  /* TRUSTED COMPANIES */
  #trusted-row {
	  background-color: var(--secondary);
  }
  
  /* THREE STEPS */
  #employee-steps {
	  background-color: var(--grey);
  }
  .erga-span {
	  color: var(--primary);
	  font-weight: bold;
  }
  .step-boxes {
	  background-color: var(--primary);
	  border-radius: var(--radius);
	  min-height: 350px;
	  box-shadow: 0 1px 4px rgba(0,0,0,.4);
  }
  .step-icon {
	  display: inline-flex;
	  justify-content: center;
	  align-items: center;
	  background-color: var(--white);
	  /* display: block; */
	  width: 100px;
	  height: 100px;
	  border-radius: 50%;
	  margin: 0 auto;
	  color: var(--primary);
  }
  .step-icon .fas {
	  vertical-align: middle;
  }
  .step-boxes p {
	  color: #fff;
  }
  
  /* BLOG SECTION */
  .img-blog {
	  width: 100%;
  }
  .blog-link {
	  color: #000;
  }
  .blog-link:hover {
	  text-decoration: none;
  }
  
  /* NEWSLETTER */
  #newsletter {
	  background-color: var(--grey);
  }
  .newsletter-field {
	  border: 2px solid var(--secondary);
	  border-radius: var(--radius) !important;
  }
  .newsletter-disclaimer {
	  font-size: 12px;
  }
  
  
  /* AGGELIES  */
  .filter-col {
	  background-color: var(--primary);
  }
  .aggelies-categories {
	  border: 2px solid var(--white);
	  box-shadow: inset 0 0px 0 transparent !important;
  }
  .aggelies-categories:focus {
	  box-shadow: none !important;
  }
  .box-filter-title {
	  color: var(--white);
  }
  .filter-icon {
	  color: var(--secondary);
  }
  .clear-field {
	  float: right;
	  color: var(--secondary);
  }
  .clear-field:hover {
	  cursor: pointer;
  }
  .filters-separator {
	  border-color: var(--secondary);
  }
  .filter-checkbox {
	  accent-color: var(--secondary);
  }
  .filter-checkbox-title {
	  color: #fff;
  }
  
  /* Aggelies card */
  .aggelia-foryou {
	  border: solid 2px var(--secondary);
	  /* height: 360px; */
  }
  
  /* SINGLE AGGELIA */
  .single-aggelia-wrapper {
		display: flex;
		position: relative;
		height: 100%;
		width: 100%;
  }

	.single-aggelia-buttons-container {
		display: flex;
		margin-top: 2rem !important;
		align-items: center;
		gap: 10px;
	}
	.single-aggelia-buttons-container .btn {
		height: 34px;
	}
	.single-aggelia-buttons-container .apply-btn {
		padding-left: 30px;
		padding-right: 30px;
	}
	.single-aggelia-buttons-container .fav-btn {
		background-color: transparent;
		color: #fff;
		width: fit-content !important;
		border: none;
		font-size: 18px;
	}

	.custom-divider {
		display: flex;
		/* width: 100%; */
		height: 1px;
		background: linear-gradient(to right, var(--secondary), rgba(252, 163, 17, 0));
	}
	.custom-divider.half {
		width: 50%;
	}
	.custom-divider.no-flex-shrink {
		flex-shrink: 0;
	}
	.custom-divider.info-divider {
		/* margin-bottom: -1rem; */
	}

	.single-aggelia-company-wrapper {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 2rem;
		margin-top: 1rem;
	}
	.single-aggelia-company-wrapper a {
		font-weight: 500;
	}

  .single-aggelia-header {
	  background-color: var(--primary);
		width: 100%;
		padding: 1rem;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		display: flex;
		flex-direction: column;
		padding-top: 5rem;
  }

	@media all and (max-width: 991px) {
		.single-aggelia-header {
			height: fit-content;
			padding-top: 1rem;
		}

		.single-aggelia-buttons-container.display-mobile {
			display: flex !important;
			flex-direction: row;
			width: 100%;
			margin-top: 10px !important;
			align-items: center;
			justify-content: flex-start;
			max-width: none;
		}

		.single-aggelia-header, .single-aggelia-similar-container {
			width: 100% !important;
			max-width: none;
		}

		.aggelia-foryou.aggelia-card {
			width: 100%;
		}

		.single-aggelia-similar-jobs-container {
			gap: 20px !important;
		}

		.single-aggelia-content {
			width: 100%;
			max-width: none;
			height: fit-content !important;
			min-height: 0px;
			max-height: none;
		}
	}

	.single-aggelia-newsletter {
		height: 15rem;
		width: fit-content;
		padding: 2rem;
	}
	.single-aggelia-newsletter .newsletter-wrapper {
		width: 100%;
	}

  .single-aggelia-img-box {
	  min-width: 3rem;
	  height: 3rem;
	  background-repeat: no-repeat;
	  background-size: 100%;
	  background-color: #fff;
	  background-position: center center;
	  border-radius: 100%;
	  display: flex;
	  align-items: center;
  }
  .single-aggelia-img-box-anonymous {
		width: 80px;
		height: 80px;
		background-size: 70%;
		background-repeat: no-repeat;
		background-color: #fff;
		background-position: center center;
		border-radius: 100%;
		display: flex;
		align-items: center;
  }
  .aggelia-skills-wrapper {
	  border: solid 2px var(--secondary);
	  border-right: none;
	  border-radius: var(--radius);
	  border-top-right-radius: 0px;
	  border-bottom-right-radius: 0px;
	  box-shadow: var(--shadow);
	  background-color: var(--grey);
  }
  .extra-job-info {
	  border: solid 2px var(--secondary);
	  border-radius: var(--radius);
	  border-top-right-radius: 0px;
	  border-bottom-right-radius: 0px;
	  border-right: none;
  }
  .extra-job-info span {
	  font-weight: bold;
	  font-size: 16px;
  }
  @media (max-width: 576px) {
	  .single-aggelia-header .d-flex {
		flex-direction: column;
		align-items: center;
	  }
	  .aggelia-skills-wrapper, .extra-job-info {
		  border: solid 2px var(--secondary);
		  border-radius: var(--radius);
	  }
	  .single-aggelia-wrapper hr {
		  display: none;
	  }

  }
  
  
  .single-aggelia-text {
	  text-align: justify;
  }
  .skills-list {
	  list-style: none;
	  padding: 0;
  }
  .skill-tag {
	  padding: 5px;
	  border: solid 1px var(--secondary);
	  display: block;
	  margin: 10px auto;
	  border-radius: var(--radius);
	  background-color: var(--white);
	  color: var(--secondary);
	  font-weight: bold;
	  width: 90%;
	  box-shadow: var(--shadow);
	  position: relative;
  }
  .skill-match-symbol {
	  position: absolute;
	  top: -10px;
	  background-color: var(--primary);
	  color: var(--white);
	  border-radius: 50%;
	  width: 18px;
	  height: 18px;
	  font-size: 12px;
	  right: -5px;
	  text-align: center;
  }
  .single-aggelia-title, .single-aggelia-company {
	  color: #fff;
  }
  .single-aggelia-title h1 {
	  font-size: 20px;
  }
  .aggelia-favorite {
	  display: inline-block;
	  color: var(--secondary);
	  font-size: 1.6rem;
	  cursor: pointer;
  }
  .single-aggelia-share {
	  padding: 0px;
	  list-style: none;
	  text-align: left;
	  padding-right: 8px;
  }
  .single-aggelia-share-top {
	padding: 0px;
	list-style: none;
	text-align: left;
	padding-right: 8px;
	margin: 0px;
  }
  .single-aggelia-share-top li {
	display: inline-block;
	margin: 0px 3px;
  }
  .single-aggelia-share li {
	  display: inline-block;
	  margin: 0px 2px;
  }
  .single-aggelia-share a {
	  color: #fff;
  }
  .single-aggelia-share-top a {
	  color: #fff;
	  font-size: 20px;
  }
  #job-apply-form input{
	  border: solid 2px transparent;
  }

  .aggelia-actions-row {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 12px;
		margin-top: 2rem;
  }
  .aggelia-actions-row:nth-child(2) {
		gap: 0px;
  }

  @media all and (max-width: 991px) {
	  /* .single-aggelia-share {
		  text-align: center !important;
	  } */
	  .single-aggelia-title h1 {
		  font-size: 1rem;
	  }
  
	  .aggelia-actions {
		  width: 100%;
		  padding-left: 64px;
		  justify-content: space-between;
			height: 24px !important;
			margin-top: -45px !important;
			right: 0px !important;
			justify-content: flex-end !important;
			margin-bottom: 18px !important;
	  }

	  @supports (position:sticky) {
		.sticky-aggelia-header {
		  position: sticky;
		  z-index: 1020;
		}
	}
  }
  /* AUTH PAGES */
  #employee_register_row {
		/* padding: 2rem; */
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-position: center center;
  }
  .register-box, .login-box {
	  background-color: var(--primary);
	  border-radius: var(--radius);	
	  margin: 60px 0px;
	  color: var(--white);
  }
  .social-login-icons {
	  list-style: none;
	  padding: 0;
  }
  .social-login-icons li {
	  display: inline-block;
	  margin: 0 5px;
  }
  .social-login-icons li a {
	  color: var(--white);
	  font-size: 20px;
  }
  .login-link {
	  color: var(--secondary);
  }
  .forgot-pass-link {
	  color: var(--secondary);
	  text-align: right;
	  display: block;
	  font-size: 12px;
  }
  @media all and (max-width: 991px) {
	  #employee_register_row {
			background-image: none;
			background-color: var(--primary);
			background-position: top left;
			min-height: 99vh;
	  }
  }

	#main-banner {
		background-color: var(--primary);
		/* min-height: 680px; */
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
  
  /* PROFILE SECTION STYLES */
  .inner-profile-side-col {

  }
	.profile-side-col {
		background-color: var(--primary) !important;
		height: auto;
		z-index: 20;
		left: 0;
		padding: 2rem !important;
		/* width: 20rem; */
		flex: unset;
	}
	.profile-side-nav {
		padding-left: 0px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		align-items: center;
		justify-content: center;
		list-style: none !important;
		width: 100%;
		margin-bottom: 2rem;
		margin-top: 2rem;
	}
	.profile-side-nav li {
		position: relative;
		width: 100%;
		/* padding: 3px; */
		padding-left: 10px;
		padding-right: 10px;
		border-radius: 6px;
	}
  .profile-side-nav li a {
		color: #ccc;
		display: flex;
		align-items: center;
		gap: 14px;
		width: 100%;
		font-size: 14px;
		font-weight: 500;
	}
	.profile-side-nav li a:hover {
		color: #fff;
		text-decoration: none;
	}
	.nav-indicator {
		position: absolute;
		top: 2px;
		/* right: -18px; */
		left: 108%;
		color: var(--white);
		font-size: 10px;
		background-color: var(--secondary);
		padding: 4px;
		height: 16px;
		min-width: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		border-radius: 10px;
	}
  .active-link {
	  color: #fff !important;
  }
	/* dashboard */
  .profile-top-boxes {
	  position: relative;
	  background-color: var(--grey);
	  border-radius: var(--radius);
	  padding: 20px;
	}
  .profile-top-boxes::before
  {
	  position: absolute;
	  font-family: 'FontAwesome';
	  bottom: 0;
	  right: 20px;
	  top: 0;
	  font-size: 2.5rem;
		transform: translateY(25%);
	  color: var (--dark-grey);
  }
  .top-boxes-eye::before {
	  content: "\f06e";
  }
  .top-boxes-bookmark::before {
	  content: "\f02e";
  }
  .top-boxes-bell::before {
	  content: "\f0f3";
  }
  .top-boxes-title {
	  font-weight: bold;
  }
  .top-boxes-counter {
	  font-weight: bold;
	  font-size: 25px;
	  margin: 0px;
  }

	#navbarCollapse {
		background-color: var(--grey);
		margin-right: -1rem;
		padding-right: 3rem;
	}
	.navbar-logout {
		border-color: var(--primary) !important;
		color: var(--primary) !important;
		border-width: 1px !important;
		font-size: 12px !important;
		height: 30px !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.navbar-logout:hover {
		background-color: var(--primary) !important;
		color: #fff !important;
	}
/* NAVBAR */
.top-bar {
	width: 100%;
	background-color: var(--white);
}
.top-bar a {
	display: block;
	padding: 2px 16px;
	color: var(--secondary);
}
.navbar-logout {
	border-color: var(--primary) !important;
	color: var (--primary) !important;
	border-width: 1px !important;
	font-size: 12px !important;
	height: 30px !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.navbar-logout:hover {
	background-color: var(--primary) !important;
	color: #fff !important;
}

/* Divider */
.navbar-divider {
	width: 2px;
	background-color: var(--primary);
	opacity: 0.5;
	height: 2rem;
	margin-right: 12px;
	margin-left: 4px;
}

.nav-profile-avatar {
	width: 30px;
	max-width: 30px;
	min-height: 30px;
	max-height: 30px;
	border-radius: 100%;
	border: var(--primary) solid 2px;
	margin-left: 8px;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-profile-avatar:hover {
	text-decoration: none;
}
.nav-profile-avatar p {
	font-weight: bold;
	font-size: 12px;
	margin: 0px;
}
#langSwitchBtn {
    max-height: 40px;
	min-height: 40px;
	display: block;
    color: var(--primary);
	font-size: 1.2rem;
}
#langSwitchBtn:hover {
	cursor: pointer;
}
#langSwitchBtn::after {
	display: none;
}
@media all and (max-width: 991px) {
	.langDropDown, .logOut {
		margin: 0px !important;
	}
	#langSwitchBtn {
		margin: 0px !important;
	}
	.dropdown-menu {
		width: 100%;
	}
}

.brand-logo, .brand-logo-footer {
	font-family: League Spartan;
	font-size: 25px;
	font-weight: normal;
	color: var(--secondary);
	display: block;
	letter-spacing: -2px;
}
.brand-logo:hover, .brand-logo-footer:hover {
	text-decoration: none !important;
	color: var(--secondary) !important;
}

.brand-logo {
	background-color: var(--primary);
	padding: 0px !important;
	margin: 0px !important;
	/* max-width: 20rem; */
	flex: 0 0 16.66%;
	width: 100%;
	height: 67px;
	/* margin-left: -1rem !important; */
	/* padding-left: 2rem !important; */
	display: flex;
	align-items: center;
	justify-content: center;

}
.brand-logo img {
	width: 50%;
}
.navbar-light {
	background-color: var(--grey) !important;
}
.navbar-light .navbar-nav .nav-link {
	color: var(--primary);
}
.btn-toggle-menu {
	color: var(--primary);
	font-size: 20px;
}
  /* ============ mobile profile navbar ============ */
  @media all and (max-width: 991px)
  {
		/* footer {
			display: none !important;
		} */
	  .profile-side-nav {
		padding: 12px 4px !important;
		display: flex;
		flex-direction: row !important;
		align-items: center;
		justify-content: space-evenly !important;
		gap: 0px;
		overflow-y: auto;
		position: fixed;
		bottom: 0px !important;
		padding-top: 12px !important;
		z-index: 200;
		background-color: var(--primary);
		width: 100%;
		margin: 0px;
		text-align: center;
	  }
	  .profile-side-nav li {
		  display: inline-block;
		  width: fit-content !important;
		  font-size: 14px;
	  }
	  .profile-side-nav span {
		  font-size: 12px !important;
	  }
		.nav-items-wrapper {
			display: flex;
			flex-direction: row !important;
		}
	  .profile-side-nav a {
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  text-align: center;
	  }
	  #profileTab {
		  display: flex !important;
		  flex-direction: row;
		  flex-wrap: nowrap !important;
		  height: fit-content !important;
		  justify-content: flex-start !important;
  
		  /* Fade on both sides */
		  /* mask-image: linear-gradient(to right, #7b7b7b20 0%, black 48px, black calc(100% - 48px), #7b7b7b20 100%); */
  
		  /* Fade on left */
		  /* mask-image: linear-gradient(to right, transparent 0%, black 48px, black calc(100% - 48px)); */
  
		  /* Horizontal overflow with hidden bar */
		  overflow-y: hidden;
		  overflow-x: auto;
		  -ms-overflow-style: none;
		  scrollbar-width: none;
	  }
	  #profileTab::-webkit-scrollbar {
		  display: none;
	  }
  
	  #profileTab li {
		  width: fit-content !important;
	  }
	  #profileTab li button {
		  display: flex;
		  flex-direction: row;
		  align-items: center;
		  gap: 0.5rem;
  
		  /* Prevent text from taking up more than 1 line */
		  white-space: nowrap;
	  }
	  .profileSettings-title {
		  text-align: left !important;
	  }
	  .toggleProfileSettings {
		  display: inline-block !important;
		  
	  }
  
	  /* FOOTER */
	  .footer-end {
		  padding-bottom: 4rem !important;
	  }
  }
  
  #profileTab {
	  background-color: var(--grey);
	  border-radius: var(--radius);
  }
  #profileTab .nav-link.active:focus:hover, #profileTab .nav-link.active:hover {
	  border: none;
	  color: var(--secondary);
  }
  #profileTab .nav-link:focus:hover, #profileTab .nav-link:hover {
	  box-shadow: none;
	  color: var(--secondary);
  }
  #profileTab .nav-link.active, #profileTab .nav-link.active:focus {
	  box-shadow: none;
	  color: var(--secondary);
  }
  #profileTab .nav-link, .nav-tabs .nav-link:focus {
	  box-shadow: none;
  }
  #profileTab .nav-item.show .nav-link, #profileTab .nav-link.active {
	  background-color: transparent;
  }
  #profileTab button {
	  outline: none;
  }
  #profile_image {
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  left: 0;
	  top: 0;
	  opacity: 0;
	  cursor: pointer;
  }
  #cover_image {
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  left: 0;
	  top: 0;
	  opacity: 0;
	  cursor: pointer;
  }
  @media all and (max-width: 991px) {
	  .profile-image-upload-wrap {
		  height: 100px;
		  width: 100px;
	  }
	  .profile-image-text p {
		  font-size: 7px !important;
	  }
  }

  #resume_file, #resume_file-ai, #resume_file-mobile {
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  left: 0;
	  top: 0;
	  opacity: 0;
	  cursor: pointer;
  }
  
  .view-cv {
	  color: var(--primary);
		font-size: 11px;
		display: flex;
		flex-direction: column;
		gap: 4px;
  }
  .profile-image-text {
	  text-align: center;
  }
  .profile-image-text p {
	  color: var(--dark-grey);
	  font-size: 12px;
  }
  .resume-file-upload-wrap {
	  background-color: var(--white);
	  border-radius: var(--radius);
	  padding: 0 20px;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  height: 8rem;
	  width: 8rem;
		font-size: 12px;
	  position: relative !important;
	  box-shadow: none;
		border: 1px solid #ccc;
  }
  @media all and (max-width: 991px) {
	  .resume-file-upload-wrap, .profile-image-upload-wrap {
		  min-height: fit-content;
		  height: 100px;
		  padding: 14px;
		  width: 100px;
		  min-width: fit-content;
	  }
	  .cover-image-upload-wrap {
		  height: 75px;
		  width: 150px;
	  }
	  .resume-file-text > p, .profile-image-text > p {
		  font-size: 10px !important;
	  }
	  #aitiseisSearch {
		  width: 70% !important;
	  }
	  .profileView-buttons {
		  text-align: center;
	  }
  }
  .resume-file-text {
	  text-align: center;
  }
  .resume-file-text p {
	  color: var(--dark-grey);
	  font-size: 12px;
  }
  .profile-image-text svg, .resume-file-text svg {
	  color: var(--primary);
  }
  .basic-info-form input, .basic-info-form textarea {
	  border: solid 2px var(--primary);
	  box-shadow: var(--shadow);
	  color: #000 !important;
  }
  .basic-info-form label {
	  font-weight: bold;
  }
  .basic-info-form select {
	  border: solid 2px var(--secondary);
	  box-shadow: var(--shadow);
	  color: #000 !important;
	  padding: 0px 10px;
  }
  .basic-info-form select:focus {
	  box-shadow: none !important;
  }
  .ck-editor__editable_inline {
	  max-height: 160px !important;
	  min-height: 160px !important;
  }
  .ck-balloon-panel {
	  display: none !important;
  }
  #cropperImagePreview {
	  max-width: 100%; /* Adjust this as needed */
	  max-height: 400px; /* Adjust this based on your modal's size */
	  object-fit: contain;
  }
  .cropper-container {
	  max-width: 100%; /* Limit the width to the modal's width */
	  max-height: 100%; /* Limit the height to the modal's height */
	  overflow: hidden; /* Add this if you want to clip the overflow */
  }

  .croppedImagePreview{
	  position: absolute;
	  max-width: 100%;
		border-radius: 100%;
		height: 100%;
		width: 100%;
		object-fit: cover;
  }

	.croppedImagePreview.cover {
		border-radius: 10px;
	}

  .experienceModalBtn, .educationModalBtn, .languagesModalBtn {
	  display: block;
	  width: 100%;
  }
  
  /* Custom styling for table */
  /* #experience-data, #education-data, #jobApplicationsTable, #favoriteJobsTable, #interviewsTable {
	  width: 100% !important;
	  border-collapse: separate;
	  border-spacing: 0 18px;
  } */
  
  /* Custom styling for table rows */
  /* #experience-data tbody tr, #education-data tbody tr, #jobApplicationsTable tbody tr, #favoriteJobsTable tbody tr, #interviewsTable tbody tr {
	  background-color: var(--grey);
	  border-radius: var(--radius) !important;
	  box-shadow: 0 1px 5px rgba(0,0,0,.3);
  } */
  
  /* Styling for first and last cells in each row for rounded corners */
  /* #experience-data tbody tr td:first-child, #education-data tbody tr td:first-child, #jobApplicationsTable tbody tr td:first-child,
  #favoriteJobsTable tbody tr td:first-child, #interviewsTable tbody tr td:first-child{
	  border-top-left-radius: var(--radius) !important;
	  border-bottom-left-radius: var(--radius) !important;
  }
  #jobApplicationsTable tbody tr td:first-child, #favoriteJobsTable tbody tr td:first-child, #interviewsTable tbody tr td:first-child {
	  display: flex;
  }
  
  #experience-data tbody tr td:last-child, #education-data tbody tr td:last-child, #jobApplicationsTable tbody tr td:last-child, 
  #favoriteJobsTable tbody tr td:last-child, #interviewsTable tbody tr td:last-child {
	  border-top-right-radius: var(--radius) !important;
	  border-bottom-right-radius: var(--radius) !important;
  } */
  
  table.dataTable.nowrap th, table.dataTable.nowrap td {
	  padding: 10px !important;
  }
  
  .js-skills-select {
	  width: 100% !important;
  }
  .select2-container {
	width: fit-content !important;
	border-radius: 6px;
	margin-top: 10px !important;
		/* overflow: hidden; */
  }
  .select2-container--default.select2-container--focus .select2-selection--multiple, 
  .select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--multiple {
	  border: none;
	  padding: 5px;
	  padding-bottom: 10px !important;
	  background-color: var(--grey);
  }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
	  border: solid 1px var(--secondary);
	  background-color: var(--white);
  }
  
  /* AGGELIA STYLE */
  .aitisi-modal-icon {
	  background-color: var(--primary);
	  width: 80px;
	  height: 80px;
	  border-radius: 100%;
	  line-height: 80px;
	  font-size: 50px;
	  color: var(--white);
	  margin: 0 auto;
  }
  .skills-list-in-modal {
	  list-style-position: inside;
	  padding-left: 0px;
  }
  
  /* AITISEIS STYLES */
  .aitisi-company-img {
	  min-width: 40px;
	  height: 40px;
	  display: inline-block;
		margin-left: 4px;
		border-radius: 100%;
  }
  .aitisi-company-data {
	  display: inline-block;
	  margin-left: 15px;
		height: 40px;
		vertical-align: middle;
		align-content: center;
  }
  #jobApplicationsTable_filter {
	  display: none;
  }
  .jobstatus-published {
	  color: var(--primary);
  }
  .jobstatus-expired {
	  color: var (--dark-grey);
  }
  
	.aitisi-job-title {
		font-weight: 500;
		font-size: 14px;
		margin: 0px;
		margin-top: -2px !important;
	}
	.aitisi-company-name {
		font-size: 12px;
		margin: 0px;
	}

  /* AGAPIMENA */
  #favoriteJobsTable_filter {
	  display: none;
  }
  
  
  /* =========<  THOMAS  >========= */
  
  /* Cropper modal */
  #imageModal .zoom-range {
	  width: 100%;
	  -webkit-appearance: none;
	  width: 100%;
	  height: 24px;
	  background: var(--primary);
	  border-radius: 20px;
	  outline: none;
	  opacity: 0.7;
	  -webkit-transition: .2s;
	  transition: opacity .2s;
  }
  
  #imageModal .zoom-range::-webkit-slider-thumb {
	  -webkit-appearance: none;
	  appearance: none;
	  width: 24px;
	  height: 24px;
	  border-radius: 100%;
	  background: var(--secondary);
	  border: 0px;
	  cursor: pointer;
  }
  
  #imageModal .zoom-range::-moz-range-thumb {
	  width: 24px;
	  height: 24px;
	  border-radius: 100%;
	  background: var(--secondary);
	  border: 0px;
	  cursor: pointer;
  }
  
  #imageModal .range-wrapper {
	  margin-top: 12px;
	  display: flex;
	  flex-direction: row;
	  align-items: center;
	  gap: 10px;
  }
  
  .resume-file-upload-desc {
	  padding: 10px;
	  padding-left: 0px;
  }
  
  .resume-file-upload-desc p {
	  font-size: 12px;
	  color: var(--dark-grey);
  }
  
  
  
  /*
	  +--------------+
	  | Aggelia card |
	  +--------------+
  */
  /* Card body */
  .aggelia-card .card-body {
	  display: flex;
	  flex-direction: column;
	  gap: 16px;
	  scroll-snap-align: center;
	  max-width: none;
		object-fit: contain;
  }
  
  /* Card row */
  .aggelia-card .aggelia-card-row {
	  display: flex;
	  flex-direction: row;
	  gap: 10px;
	  height: fit-content;
	  align-items: center;
  }
  
  /* Card column */
  .aggelia-card-column {
	  display: flex;
	  height: 76px;
	  width: fit-content;
	  flex-direction: column;
  }
  
  /* Row mobile */
  .row-mob {
	  display: flex;
	  overflow-y: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
	  
	  -ms-overflow-style: none;
		scrollbar-width: none;
  }
  .row-mob::-webkit-scrollbar {
		display: none;
  }
  
  /* Pagination dots */
  .pagination-dots {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin-top: 10px;
  }
  .pagination-dots .dot {
	  height: 10px;
	  width: 10px;
	  margin: 0 5px;
	  background-color: #bbb;
	  border-radius: 100%;
	  display: inline-block;
	  transition: all 0.2s ease;
  }
  /* Active dot */
  .pagination-dots .dot.active {
	  background-color: var(--secondary);
	  width: 24px;
	  border-radius: 10px;
  }
  
  /* Employer/employee switch */
  .employer-switch svg {
	  color: var(--secondary);
	  height: 18px;
  }
  
  .employer-switch-option a {
	  display: flex;
	  align-items: center;
	  gap: 12px;
	  padding: 10px;
	  padding-left: 20px;
	  text-decoration: none;
  }
  .employer-switch-option svg {
	  color: var(--primary);
	  transition: all 0.2s ease;
  }
  .employer-switch-option p {
	  color: var(--primary);
	  margin: 0;
	  transition: all 0.2s ease;
	  font-size: 14px;
  }
  
  .employer-switch-option:hover svg, .employer-switch-option:hover p {
	  opacity: 0.7;
  }
  
  
  /* Single aggelia view */
  .aggelia-actions {
	  display: flex;
	  align-items: center;
	  gap: 0.2vw;
  }
  
  .single-aggelia-title-box {
	  display: flex;
	  gap: 15px;
  }

	.single-aggelia-title-text {
		font-size: 16px !important;
		font-weight: 500;
		color: #fff;
	}
  
	.single-aggelia-details {
		display: flex;
		flex-direction: column;
		color: #fff;
		align-items: flex-start;
		gap: 1rem;
		margin-top: 1rem;
	}
	.single-aggelia-details .badge {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 0px;
		font-size: 12px;
		font-weight: 400;
		width: 100%;
		/* flex-wrap: wrap; */
	}
	.single-aggelia-details .badge .aggelia-badge-text {
		word-break: break-word;
		width: 100%;
		text-wrap: wrap;
		text-align: left;
	}
	.single-aggelia-details svg {
		height: 14px;
		width: 14px;
	}


	.single-aggelia-content {
		/* width: 50rem; */
		/* margin-left: 21rem; */
	}

	.single-aggelia-desc {
		font-size: 12px;
	}

	/* Skills */
	.single-aggelia-skills-container {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 1rem;
		padding-top: 0px;
	}

	.single-aggelia-skills-title {
		font-size: 18px;
		font-weight: bold;
		margin: 0px;
		text-align: left;
		margin-top: 1rem;
	}

	.skills-container {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.single-aggelia-skill-wrapper {
		background-color: #fff;
		padding: 10px;
		border: 1px solid #ccc;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		width: fit-content;
		position: relative;
	}

	.single-aggelia-skill-label {
		margin: 0px;
		font-size: 12px;
	}
	.single-aggelia-skill-label.bold {
		font-weight: bold;
	}

	.single-aggelia-info-wrapper {
		display: flex;
		flex-direction: column;
		/* gap: 6px; */
		width: fit-content;
		align-items: center;
		justify-content: center;
		background-color: #fff;
		padding: 10px;
		border: 1px solid #ccc;
		border-radius: 10px;
	}

	.single-aggelia-info-wrapper.clickable {
		cursor: pointer;
		transition: all 0.3s ease;
		user-select: none;
	}
	.single-aggelia-info-wrapper.clickable:hover {
		opacity: 0.6;
	}

	.single-aggelia-info-wrapper.clickable .single-aggelia-skill-label.bold {
		color: var(--secondary) !important;
	}

	.single-aggelia-similar-container {
		padding: 1rem;
		position: sticky;
		height: fit-content;
		top: 4rem;
		right: 0;
	}

	.single-aggelia-similar-title {
		margin: 0px;
		font-size: 14px;
		font-weight: bold;
	}
	.single-aggelia-similar-subtitle {
		margin: 0px;
		font-size: 12px;
		opacity: 0.8;
	}

	.single-aggelia-similar-jobs-container {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 1rem;
	}


  @media all and (max-width: 991px) {
	  .single-aggelia-title-box  {
		  flex-direction: row !important;
		  align-items: flex-start !important;
		  text-align: start !important;
		  overflow: hidden !important;
			height: 0px !important;
	  }
  
	  .single-aggelia-img-box {
		  flex-shrink: 0;
	  }
  
	  .single-aggelia-title-cut {
		  display: -webkit-box;
		  overflow: hidden;
		  -webkit-box-orient: vertical;
		  -webkit-line-clamp: 2;
	  }
  
	  .single-aggelia-wrapper {
		  border: none;
		  box-shadow: none;
	  }
  }
  
  .aggelia-actions > .btn-secondary {
	  height: fit-content;
  }
  
  
  /* MOBILE FILTERS */
  .mobile-filters-btn {
	  background-color: var(--secondary);
	  width: fit-content;
	  height: 45px;
	  width: 45px;
	  border-radius: 100%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  transition: all 0.4s ease;
	  position: fixed;
	  z-index: 200;
	  left: 2rem;
	  bottom: 4rem;
	  border: 0;
  }
  
  .mobile-filters-btn > .fa-filter {
	  color: var(--white);
  }
  
  #mobileFiltersModal .modal-header {
	  display: flex;
	  flex-direction: row;
	  align-items: center;
		justify-content: space-between;
  }
  
  #mobileFiltersModal .modal-title {
	  color: var(--white);
  }

	.modal-content {
		border-radius: 10px !important;
		overflow: hidden;
		border-color: transparent !important;
	}

	.modal-title {
		font-size: 18px !important;
		font-weight: 500;
	}

	.modal-subtitle {
		margin: 0px;
		font-size: 12px;
		opacity: 0.8;
		margin-top: 8px;
	}

	.modal-dialog {
		/* top: 30% !important;
  	transform: translateY(-50%) !important;
		margin: auto !important; */
	}

	.modal-content {
		padding: 2rem;
	}

	.modal-header {
		padding: 0px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100%;
	}
	.modal-header.interview {
		padding: 1rem;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.modal-content.ai {
		/* background: rgb(21,50,77); */
		background: rgba(183, 183, 183, 0.81);	
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		text-align: center;
	}

	.modal-content.ai .modal-title, .modal-content.ai .modal-subtitle {
		color: #000;
	}

	.modal-header .close {
		color: #000 !important;
		font-weight: 400 !important;
		position: absolute;
		right: 14px;
		top: 14px;
	  margin: 0px !important;
		padding: 0px !important;
	}
  
  #mobileFiltersModal .modal-content {
	  background-color: var(--primary);
	  border: 0px;
	  padding: 10px;
	  border-radius: var(--radius);
  }
  
  #mobileFiltersModal .btn-close {
	  background-color: var(--primary);
	  border: 0px;
	  transition: all 0.4s ease;
	  display: flex;
	  align-items: center;
	  justify-content: center;
  }
  #mobileFiltersModal .btn-close:hover {
	  opacity: 0.7;
  }
  
  #mobileFiltersModal .btn-close .fa-x {
	  color: var(--white);
  }
  
  #mobileFiltersModal .show-res-btn {
	  background-color: var(--secondary);
	  border: 0px;
	  width: 100%;
	  border-radius: var(--radius);
	  transition: all 0.2s ease;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  height: 50px;
  }
  #mobileFiltersModal .show-res-btn:hover {
	  opacity: 0.8;
  }
  
  #mobileFiltersModal .show-res-btn p {
	  color: var(--white);
	  font-weight: bold;
  }

	#mobileFiltersModal select {
		font-size: 12px !important;
	}

  #mobileFiltersModal h6 {
	  font-size: 13px;
		font-weight: 600;
	  display: flex;
	  flex-direction: row;
	  align-items: center;
	  justify-content: space-between;
	  gap: 12px;
  }
  
  
  .headerFlexContainer {
	  display: flex;
	  gap: 1rem;
		align-items: center;
		justify-content: center;
  }
  
  /*
  *	+------------------------+
  * |    EMPLOYER PROFILE    |
  * +------------------------+
  */
  /* Cover */
  .profileCover {
	  background-position: left;
	  background-repeat: no-repeat;
	  background-size: contain;
	  height: 7rem;
	  border-radius: 10px;
	  width: 650px;
  }

  
  /* Data wrapper -- Image, name, socials */
  .dataWrapper {
	  display: flex;
	  flex-direction: row;
	  align-items: flex-end;
	  gap: 0.8rem;
  }
  
  /* Image */
  .profileImg {
	  height: 6rem;
	  width: 6rem;
	  border-radius: 10px;
	  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
	  margin-top: -2.5rem;
  }
  
  /* Name */
  .profileName {
	  font-weight: 600;
	  font-size: 16px;
	  margin: 0;
  }

	/* Industry */
	.profile-industry-name {
		opacity: 0.8;
		font-size: 14px;
		margin-bottom: 10px;
	}
  
  /* Socials container */
  .profileSocialsContainer {
	  display: flex;
	  flex-direction: row;
	  gap: 0.5rem;
  }
  /* Disable blue link decoration on icons */
  .profileSocialsContainer a {
	  color: #000 !important;
  }
  .profileSocialsContainer a svg {
	  height: 18px;
  }
  
  /* About */
  .profileAbout p {
	  font-size: 12px;
	  color: #7b7b7b;
		word-break: break-word;
  }

    /* mobile css for profile cover & image */
  @media all and (max-width: 991px) {
	  .profileCover {
		  width: 100%;
		  height: 4rem;
	  }
  }
  
  /*
  *	More Jobs
  */
  /* Container */
  .profileJobsContainer {
	  gap: 1rem;
  }
  
  /* Job wrapper */
  .profileJobWrapper {
	  background-color: var(--grey);
	  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
	  border-radius: 10px;
	  width: 50%;
	  padding: 1rem;
  }
  
  /* Aggelies card */
  .aggelia-foryou {
	  border: solid 1px #ccc;
		position: relative;
		width: 16rem;
		box-shadow: none;
		margin: 0px !important;
	  background-color: var(--white);
	  min-height: 211px;
  }
	.aggelia-foryou.perfect-match {
		border-color: var(--secondary);
	}
  
	.aggelia-img-wrapper {
		display: flex;
		gap: 10px;
	}

	.aggelia-main-info-wrapper {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

  /* Card body */
  .aggelia-card .card-body {
	  display: flex;
	  flex-direction: column;
	  gap: 8px;
	  scroll-snap-align: center;
	  max-width: none;
		object-fit: contain;
		overflow: hidden;
		padding: 1rem !important;
  }

	.aggelia-city {
		font-size: 10px; /* Smaller font size */
		color: #0000008c !important;
		/* margin: 0px; */
		display: flex;
		align-items: center;
		gap: 4px;
	}
  
  .aggelia-company {
	  font-size: 11px; /* Smaller font size */
		margin: 0px;
		font-weight: 400;
		opacity: 0.7;
  }
  .aggelia-title {
	  word-break: break-word;
	  /* overflow: hidden; */
	  text-overflow: ellipsis;
	  font-size: 13px; /* Smaller font size */
		margin: 0px;
		font-weight: 500;
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
  }
  
  .aggelia-buttons {
	  display: flex;
	  height: fit-content;
		align-items: center;
		justify-content: flex-end;
	  gap: 8px;
  }
  
  .aggelia-buttons > .btn-secondary {
	  border: solid 2px var(--secondary);
	  width: fit-content;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 10px;
  }
  
  .aggelia-buttons > .btn-secondary > svg {
	  height: 12px;
  }
  
  .aggelia-buttons > .btn-outline-secondary {
	  border: solid 2px var(--secondary);
	  background-color: none;
	  display: flex;
	  align-items: center;
	  justify-content: center;
  }
  
  .aggelia-img-box {
		height: 35px;
	  width: 35px;
	  min-width: 35px;
	  background-repeat: no-repeat;
	  background-size: 100%;
	  background-color: #fff;
		background-size: contain;
	  background-position: center center;
	  border-radius: 100%;
	  /* display: inline-block; */
  }


	.interview-btn, .custom-btn {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 12px;
		margin: 0px;
		background-color: var(--white);
		box-shadow: none !important;
		border: 1px solid #ccc;
		transition: all 0.3s ease;
	}
	.interview-btn:hover, .custom-btn:hover {
		opacity: 0.7;
	}
	.interview-btn.action, .custom-btn.action {
		background-color: var(--secondary);
		color: #fff;
		border: none;
	}
	.custom-btn.secondary {
		background-color: var(--primary);
		color: #fff;
		border: none;
	}
	.custom-btn.full-width {
		width: 100%;
		margin-left: 2rem;
		margin-right: 2rem;
		justify-content: center;
	}
	.custom-btn.no-flex-shrink {
		flex-shrink: 0;
	}
	.custom-btn.fit-content {
		width: fit-content;
	}
	.custom-btn.floating {
		background-color: transparent;
		border: none;
	}
	.custom-btn.no-padding {
		padding: 0px !important;
	}
	.custom-btn.favorite {
		border: none;
		font-size: 16px;
		padding: 4px !important;
		color: var(--secondary);
	}


	/* Clear filters btn */
	.clear-job-filters {
		color: var(--white) !important;
		margin-top: 1rem !important;
		justify-content: center;
		width: 100%;
		text-decoration: underline !important;
	}
	.clear-job-filters:hover {
		opacity: 0.7;
	}
  
  
  /*
  * INFO
  */
  .profileInfoText {
	  font-weight: 500;
	  font-size: 18px;
  }
  
  /* Info wrapper */
  .profileInfoWrapper {
	  border: solid 2px var(--secondary);
	  min-height: 10rem;
	  border-radius: 10px;
	  background-color: var(--white);
  }
  
  /* Info text key */
  .profileInfoKey {
	  margin: 0 !important;
	  color: var(--dark-grey);
	  font-size: 12px;
  }
  
  /* Info text value */
  .profileInfoValue {
	  margin: 0 !important;
	  font-weight: 500;
  }
  /* NOTIFICATIONS */
.notifications-dropdown .dropdown-toggle::after {
	display: none;
}
#notificationDropdownBtn {
	max-height: 40px;
	min-height: 40px;
	display: block;
	color: var(--primary);
	font-size: 1.2rem;
}
#notificationDropdownBtn:hover {
	cursor: pointer;
}
.notifications-badge {
	position: absolute;
	left: 20px;
	top: 5px;
	font-size: 10px;
	background-color: #ea5b2f;
}

.notifications-drop-container {
	right: 0 !important;
	left: auto;
}
.notif-divider {
	width: 85%;
	margin: 0 auto;
}
.notif-row-unread {
	border-left: solid 2px var(--secondary);
}
.notif-color-read {
	/* background-color: transparent; */
	color: #0000008c;
}
.notif-title {
	font-weight: bold;
	font-size: 15px;
}
.notif-text {
	font-size: 13px;
}
.notif-date {
	font-size: 12px;
}
.notif-more-btn {
	font-size: 13px;
}
@media (max-width: 768px) {
	.notifications-drop-container {
		width: auto !important;
		right: 10px !important;
		left: auto !important;
		min-width: 280px !important;
		max-width: calc(100vw - 20px) !important;
		transform: translateX(0) !important;
	}
	.notifications-dropdown {
		position: relative;
	}
	
	/* Fix notification table responsiveness */
	.notif-table {
		width: 100% !important;
		table-layout: auto !important;
	}
	.notif-table td {
		width: auto !important;
		min-width: auto !important;
		max-width: none !important;
		padding: 4px !important;
	}
	.notif-table td:first-child {
		width: 40px !important;
		min-width: 40px !important;
		max-width: 40px !important;
	}
	.notif-table td:last-child {
		width: 50px !important;
		min-width: 50px !important;
		max-width: 50px !important;
		text-align: right !important;
	}
	.notif-profile-image {
		width: 32px !important;
		height: 32px !important;
	}
	.notif-title {
		font-size: 11px !important;
		line-height: 1.2 !important;
	}
	.notif-text {
		font-size: 10px !important;
		line-height: 1.2 !important;
	}
	.notif-date {
		font-size: 9px !important;
	}
}


/* Calendar */

#calendar {
	max-width: 100%;
	margin: 0 auto;
}
.fc-button {
	background-color: var(--primary) !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.fc-toolbar {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.fc-button-group {
		margin-top: 5px;
	}

	.fc-toolbar-title {
		font-size: 18px;
	}

	.fc-view-harness {
		max-height: 400px; /* Prevents scrolling issues */
	}
}


/* TOOLS ETC */
.salary-header {
	min-height: 30vh;
	background-color: var(--primary);
	color: var(--white);
	background-image: url('/assets/images/salary-calculation.svg');
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
}
.asep-title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


/* TOOLS ETC */


#footer {
	padding-top: 5rem;
	padding-bottom: 2rem;
}

@media (max-width: 991px) {
	#footer {
		padding-top: 0;

	}
}

.text-homepage-title {
	font-size: 18px !important;
	font-weight: 500;
	text-align: start !important;
	width: 70%;
	margin-left: 15%;
}

/*
* Features
*/
/* Container */
.homepage-features-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2rem;
}

/* Feature wrapper */
.homepage-feature-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0px;
	height: 8rem;
	width: 70%;
	justify-content: center;
	background: linear-gradient(270deg, rgb(115, 7, 200) 0%, rgb(140, 21, 234) 100%);
	padding: 2rem;
	padding-left: 3rem;
	padding-right: 3rem;
	border-radius: var(--radius);
	color: var(--white);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}
.homepage-feature-wrapper p {
	margin: 0px;
}

.homepage-feature-wrapper:hover {
	transform: scale(1.05);
	box-shadow: 0px 0px 20px 0px #00000015;
}

.homepage-feature-wrapper:hover .homepage-feature-icon-wrapper {
	background-color: var(--secondary);
}
.homepage-feature-wrapper:hover .homepage-feature-icon {
	color: var(--white);
}

/* Title */
.homepage-feature-title {
	font-weight: 600;
	font-size: 18px;
}
.homepage-feature-subtitle {
	font-weight: 300;
	font-size: 14px;
	width: 80%;
}

/* Icon wrapper */
.homepage-feature-icon-wrapper {
	position: absolute;
	background-color: var(--white);
	width: 12rem;
	height: 12rem;
	border-radius: 100%;
	top: -6rem;
	right: -6rem;
	transition: all 0.3s ease;
}
.homepage-feature-icon {
	color: var(--secondary);
	position: absolute;
	bottom: 2.5rem;
	left: 2.5rem;
	font-size: 28px;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.text-homepage-title {
		width: 100%;
		margin-left: -2rem;
		margin-right: -2rem;
	}
	.homepage-features-container {
		margin-left: -2rem;
		margin-right: -2rem;
	}
	.homepage-feature-wrapper {
		width: 100%;
		padding: 1rem;
		padding-left: 2rem;
		padding-right: 2rem;
		height: fit-content;
	}
	.homepage-feature-icon-wrapper {
		width: 8rem;
		height: 8rem;
		top: -4rem;
		right: -4rem;
	}
	.homepage-feature-icon {
		font-size: 20px;
		left: 1.7rem;
		bottom: 1.7rem;
	}
	.homepage-feature-subtitle {
		font-size: 12px;
	}
	.homepage-feature-title {
		font-size: 16px;
		width: 90%;
	}


	#main-banner {
		margin-top: -10px;
		/* max-height: 480px; */
		min-height: 480px;
		/* height: 480px; */
		background-image: url('/assets/images/employee_mobile_banner_en.jpg');
		background-position: bottom center;
		background-size: cover;
		overflow: hidden;
	}
	/* .search-form-wrap {
		margin-top: 4rem;
	} */

	.homepage-title {
		font-size: 20px !important;
	}
	.homepage-subtitle {
		font-size: 14px !important;
		margin-top: 4px !important;
		margin-bottom: 4px !important;
	}

	#langSwitchBtn {
	  max-height: 40px;
	  min-height: 40px;
	  display: block;
	  color: var(--secondary) !important;
	  font-size: 16px;
  }
	#notificationDropdownBtn {
		font-size: 16px !important;
	}
	#notificationDropdownBtn {
		color: var(--secondary);
	}
	.brand-logo {
		font-size: 20px;
		margin-left: 1rem !important;
		padding-left: 0px !important;
		justify-content: unset;
		flex: 0 0 40%;
		max-width: 40%;
	}
	.brand-logo img {
		width: 100%;
	}
	.navbar-light {
		background-color: var(--primary) !important;
	}

	.notifications-badge {
		font-size: 10px;
	}

	.aggelia-card {
		box-shadow: 0px 8px 10px 0px #00000015;
	}

	.aggelia-buttons {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.pagination-dots .dot {
		height: 6px;
		width: 6px;
		margin: 0 4px;
	}
	.pagination-dots .dot.active {
		width: 18px;
		border-radius: 6px;
	}
}


/*
* Single Aggelia
*/
/* Container */
.aggelia-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

/* Content Container */
.aggelia-content-container {
	display: flex;
	width: 100%;
	height: 100%;
}

/*
* Profile sidebar
*/
/* Container */
.profile-sidebar-container {
	transition: all 1s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	width: fit-content;
	top: 0;
	left: -1rem;
	height: 100%;
	padding-top: 2rem;
	gap: 0px;
	background-color: var(--grey);
	margin-left: -12rem;
	z-index: 0;
	animation: slideIn 1s forwards;
	animation-delay: 0.5s;
}

@keyframes slideIn {
	from {
		margin-left: -12rem;
	}
	to {
		margin-left: 0;
	}
}

.profile-sidebar-item, .job-sidebar-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	padding: 10px;
	padding-left: 2rem;
	padding-right: 2rem;
	user-select: none;
	transition: all 0.3s ease;
	position: relative;
}
.profile-sidebar-item:hover, .profile-sidebar-item-active, .job-sidebar-item:hover, .job-sidebar-item-active {
	color: var(--white);
}

.profile-sidebar-item::before {
	background-color: transparent;
	left: 0;
	top: 0;
	content: "";
	width: 90%;
	position: absolute;
	height: 100%;
	z-index: -1;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	transition: all 0.4s ease;
}
.profile-sidebar-item-active::before, .profile-sidebar-item:hover::before {
	background-color: var(--primary);
}

.profile-sidebar-icon {
	height: 14px;
	width: 14px;
}

.profile-sidebar-label {
	font-size: 12px;
	margin-bottom: 0px;
}

.profile-sidebar-title {
	font-size: 16px;
	margin-top: -2px;
	font-weight: 600;
	margin-bottom: 10px;
	padding-left: 2rem;
}

.display-mobile {
	display: none !important;
}

@media all and (max-width: 991px) {

	.display-mobile {
		display: unset !important;
	}
	.display-mobile.fixed {
		position: fixed;
		bottom: 0;
		margin-bottom: 62px;
		width: 100%;
		left: 0;
	}

	.display-desktop {
		display: none;
	}

	.aggelia-content-container {
		flex-direction: column;
	}

	.single-aggelia-header {
		height: fit-content;
		top: 0;
		margin-top: -10px;
		width: 100%;
		height: 8rem;
		overflow: hidden;
	}

	.single-aggelia-img-box {
		height: 30px;
		min-width: 30px;
	}

	.single-aggelia-company {
		font-size: 14px;
	}

	.single-aggelia-company-wrapper {
		margin: 0px;
	}

	.single-aggelia-details {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 5px;
	}
	.single-aggelia-details .badge {
		gap: 5px;
		border: 1px solid #ccc;
		padding: 6px;
		/* padding-left: 8px;
		padding-right: 8px; */
		font-size: 11px !important;
	}

	.single-aggelia-content {
		margin-left: 0px;
		/* padding-bottom: 2rem; */
		width: 100%;
	}

	.single-aggelia-wrapper {
		flex-direction: column;
	}

	.single-aggelia-similar-container {
		position: relative;
		padding-bottom: 6rem;
	}

	.similar-job-view-all-container {
		padding: 0px !important;
		align-items: center !important;
		justify-content: center !important;
	}

}

/* Profile edit content */
.profile-edit-content {
	margin: 0px !important;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	flex: 1;
	overflow: hidden;
}

/* Profile settings container */
.profile-settings-container {
	display: flex;
	gap: 1rem;
	background-color: var(--grey);
	min-height: 100vh; /* Ensure container has enough height */
	position: relative;
	position: relative;
}

.checkFormChanges {
	width: 100%;
}

/* Button container */
.profile-edit-btn-container {
	display: flex;
	justify-content: flex-end;
	width: 61.5%;
	min-width: 40rem;
	align-items: center;
	background-color: var(--primary);
	width: calc(100% + 4rem);
	margin-left: -2rem;
	margin-bottom: -3rem !important;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.account-settings-title {
	font-weight: 500;
	font-size: 16px;
	margin: 0px;
}
.account-settings-desc {
	font-size: 12px;
	width: 100%;
	opacity: 0.8;
	margin-bottom: 2rem;
	margin-top: 4px;
}

.basic-info-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	/* background-color: var(--white); */
	border-radius: 20px;
	padding: 2rem;
	height: 100%;
	box-shadow: 0px 10px 10px 0px #00000015;
}
.basic-info-form.form-skills {
	width: 100%;
}
.basic-info-form.modal-form {
	box-shadow: none;
	margin: 0px;
	padding: 0px;
	width: 100%;
	border-radius: 0px;
}

.basic-info-form-col {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 1.5rem;
}
.basic-info-form-col.row {
	flex-direction: row;
	margin-bottom: 14px !important;
	margin: 0px;
}

.basic-info-form-col .row-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}

.row-wrapper .input-row {
	width: fit-content;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.input-row label {
	margin: 0px;
	font-size: 13px;
}

.input-row .form-control, .custom-input {
	box-shadow: none;
	border: 1px solid #ccc;
}

.custom-input {
	width: 100%;
	padding: 0px 10px;
	font-size: 12px ;
	background-color: #fff !important;
	color: #000 !important;
	display: flex;
	align-items: center;
}
.custom-input.disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background-color: var(--grey) !important;
}
.custom-input.error {
	border-color: var(--secondary) !important;
}

.input-group-label-container {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	gap: 8px;
	width: 100%;
	margin-top: 1rem;
	margin-bottom: 8px;
}

.input-group-label {
	margin: 0px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 4px;
	position: relative;
	display: inline-block;
	flex-shrink: 0;
}

.input-group-label-divider {
	display: flex;
	width: 50%;
	height: 1px;
	background: linear-gradient(to right, var(--secondary), rgba(252, 163, 17, 0));
}

.custom-divider {
	display: flex;
	/* width: 100%; */
	height: 1px;
	background: linear-gradient(to right, var(--secondary), rgba(252, 163, 17, 0));
}
.custom-divider.half {
	width: 50%;
}
.custom-divider.no-flex-shrink {
	flex-shrink: 0;
}

.custom-btn-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	background-color: var(--primary);
	width: calc(100% + 4rem);
	margin-left: -2rem;
	margin-bottom: -3rem !important;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.custom-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	margin: 0px;
	background-color: var(--white);
	box-shadow: none !important;
	border: 1px solid #ccc;
	transition: all 0.3s ease;
}
.custom-btn:hover {
	opacity: 0.7;
}
.custom-btn.action {
	background-color: var(--secondary);
	color: #fff;
	border: none;
}

.basic-info-form input, .basic-info-form textarea {
	font-size: 12px !important;
	padding: 0px 10px;
	width: 210px;
	border: none;
	box-shadow: var(--shadow);
	background-color: #ffffff5c !important;
	color: #000;
	display: flex;
	align-items: center;
}
.basic-info-form input:focus, .basic-info-form textarea:focus {
	box-shadow: none;
	border-color: var(--primary);
}
.basic-info-form select {
	width: 210px;
	border: none;
	background-color: #fff !important;
	font-size: 12px !important;
	box-shadow: var(--shadow);
	color: #000 !important;
	padding: 0px 10px;
}

/* Cover image upload styling */
.cover-image-upload-wrap {
	background-color: var(--grey);
	border-radius: var(--radius);
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 80px;
	width: 160px;
	position: relative !important;
	box-shadow: none;
}

/* Add max size text styling */
.profile-image-max-size {
	font-size: 10px;
	width: fit-content !important;
	color: var(--dark-grey);
	margin: 0px !important;
}

/* Delete account button */
.delete-account-btn {
	padding: 8px;
	background-color: transparent;
	border: none;
	color: var(--red);
	font-size: 12px;
	margin-right: 0.6rem;
	display: none;
	align-items: center;
	gap: 8px;
	text-decoration: underline;
	outline: none !important;
	transition: all 0.3s ease;
}
.delete-account-btn:hover {
	opacity: 0.6;
}
.delete-account-btn.show {
	display: flex;
}

/* Profile image styles */
.profile-image-upload-wrap {
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 5.5rem;
	width: 5.5rem;
	position: relative !important;
	box-shadow: none;
}

.profile-image-text {
	text-align: center;
}
.profile-image-text p {
	color: var(--dark-grey);
	font-size: 9px;
	margin: 0px !important;
}
.profile-image-text .fa-circle-plus {
	font-size: 20px;
	color: var(--secondary);
	margin: 0px !important;
}

.free_text_wrap {
	width: 41rem !important;
	display: block;
	background-color: #fff;
	border-radius: 10px;
	font-size: 13px !important;
	overflow: hidden;
	border: none;
}
.free_text_wrap.profile {
	max-width: 40rem;
}


@media all and (max-width: 991px) {
	.display-mobile {
		display: unset;
	}
	.display-mobile.fixed {
		position: fixed;
		bottom: 0;
		margin-bottom: 62px;
		width: 100%;
		left: 0;
	}

	.display-desktop {
		display: none;
	}
	
	.basic-info-form {
		width: 100% !important;
		overflow: hidden !important;
		display: flex !important;
		flex-wrap: wrap !important;
	}
	
	.profile-edit-btn-container {
		width: 100%;
		min-width: unset;
	}


		/*
		* Profile sidebar
		*/
		/* Container */
		.profile-sidebar-container {
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			margin-top: -65px;
			height: fit-content;
			width: 100%;
			left: 0;
			gap: 0px;
			background-color: var(--primary);
			z-index: 99999;
			animation: none !important;
			margin-left: 0px;
			padding-top: 0px;
			padding: 10px !important;
			transition: none !important;
		}

		.profile-sidebar-item-container {
			display: flex;
			width: 100%;
			min-width: 100%;
			border-radius: 10px;
			overflow: hidden;
			background-color: var(--grey);
			align-items: center;
			justify-content: space-between;
		}

		.profile-sidebar-item, .job-sidebar-item {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			cursor: pointer;
			padding: 10px;
			padding-left: 5px;
			padding-right: 5px;
			width: 100%;
			user-select: none;
			transition: all 0.3s ease;
			background-color: var(--grey);
		}


		.profile-sidebar-item svg, .job-sidebar-item svg {
			display: none;
		}
		.profile-sidebar-item:hover, .profile-sidebar-item-active, .job-sidebar-item:hover, .job-sidebar-item-active {
			background-color: var(--grey);
		}
		.profile-sidebar-icon {
			height: 14px;
			width: 14px;
		}

		.job-input-row {
			flex-direction: column;
			width: 100%;
			align-items: flex-start;
		}
		
		.job-input-wrapper {
			width: 100%;
		}

		.job-input-wrapper select {
			width: 100%;
		}

		.jobs-row {
			display: flex;
			align-items: center;
			gap: 1rem;
			margin-bottom: 1rem;
		}
		.jobs-row h3 {
			margin-bottom: 0px !important;
		}

		.profile-sidebar-label {
			font-size: 12px;
			margin-bottom: 0px;
			color: #2a2a2a !important;
			position: relative;
			z-index: 20;
			width: 100%;
			text-align: center;
		}

		.profile-sidebar-title {
			display: none;
		}

		.profile-sidebar-track, .job-sidebar-track {
			display: flex !important;
			position: absolute;
			top: 14px;
			left: 0;
			min-width: 80px;
			height: 30px;
			border-radius: 10px;
			transition: all 0.4s cubic-bezier(0.68, -0.15, 0.27, 1.10);
			background-color: var(--secondary);
			z-index: 19;
		}

		.basic-info-form {
			width: 100% !important;
			overflow: hidden;
			display: flex;
			flex-wrap: wrap;
			margin: 0px;
		}

		.free_text_wrap {
			width: unset !important;
		}

		/* Form field consistency for mobile */
		.basic-info-form-col .row-wrapper {
			flex-direction: column;
			width: 100%;
		}
		
		.basic-info-form-col .input-row {
			width: 100% !important;
			margin-bottom: 10px;
		}
		
		.basic-info-form-col input, 
		.basic-info-form-col select,
		.basic-info-form-col textarea,
		.basic-info-form .form-control,
		.basic-info-form .custom-input,
		.basic-info-form .custom-dropdown,
		.basic-info-form .select2-container {
			width: 100% !important;
			max-width: 100%;
		}
		
		.free_text_wrap {
			width: 100% !important;
		}
		
		/* Ensure spacing is consistent between form groups */
		.input-group-label-container {
			margin-top: 20px;
			margin-bottom: 10px;
		}
		
		/* Fix specific elements that might have custom widths */
		.dates-row {
			flex-direction: column;
			gap: 10px;
		}
		
		.end-date-wrapper {
			width: 100%;
		}
		
		.end-date-checkbox-wrapper {
			justify-content: flex-start;
		}
		
		/* Ensure consistent spacing between form sections */
		.basic-info-form-col {
			gap: 15px;
		}
		
		/* Ensure CV file upload is properly sized */
		.resume-file-upload-wrap {
			width: 50%;
			height: auto;
			min-height: 6rem;
		}

		.profile-edit-btn-container {
			display: flex;
			justify-content: flex-end;
			width: 100%;
			min-width: unset;
			align-items: center;
			margin: 0px;
		}
		.profile-edit-btn-container.del {
			flex-direction: column;
		}

		.delete-account-btn {
			margin-right: 0px;
		}

		.submit-button {
			width: 100%;
			justify-content: center;
		}


		.basic-info-form-col.mobile-wrap {
			flex-wrap: wrap;
			width: 100%;
		}

		.basic-info-form-col {
			gap: 0.5rem;
		}

		.row-wrapper, .input-row {
			width: 100% !important;
		}

		.basic-info-form-col input, .basic-info-form-col select {
			width: 100%;
		}
}

.select2-selection__choice, .select2-results__option {
	font-size: 12px;
}

.select2-selection {
	background-color: #fff !important;
	width: 24rem;
	min-height: 34px;
	max-height: 5rem;
	overflow-x: hidden;
	overflow-y: auto;
	border: none;
}

.border-anim {
	border: solid 2px transparent;
	background: linear-gradient(#ebeaea, #ebeaea) padding-box, linear-gradient(
	  var(--angle),
	  var(--primary),
	  var(--secondary)
	) border-box;
	animation: 5s rotate linear infinite;
}


/*
* AI profile creation CTA
*/
.ai-profile-cta-container {
	/* margin-top: 9rem; */
	/* background: rgb(21,50,77); */
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	/* border: 1px solid rgba(255, 255, 255, 0.2); */
	width: 60%;
	height: fit-content;
	border-radius: 14px;
	padding: 1rem;
	position: relative;
	width: 70% !important;
	opacity: 1;
}

.ai-profile-cta-container.pm {
	margin-top: 0px;
}

.ai-profile-cta {
	display: flex;
	flex-direction: column;
}
.ai-profile-cta p {
	margin: 0px;
}

.ai-profile-cta-label {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	margin: 0px;
}

.ai-profile-cta-title {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
}
.ai-profile-cta-description {
	font-size: 11px;
	font-weight: 300;
	opacity: 0.8;
	color: #fff;
}
.ai-profile-cta-button {
	margin-top: 1rem;
}

.ai-profile-cta-drop {
	border: 1px solid var(--secondary);
	border-radius: 8px;
	background-color: #fff;
	margin-top: 1rem;
	padding: 1rem;
	width: 60%;
	height: 6rem;
	align-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 15px;
	justify-content: center;
	text-align: center;
	cursor: pointer;
}
.ai-profile-cta-drop p {
	font-size: 10px !important;
	margin: 0px;
	opacity: 0.7;
	font-weight: 300;
}

.ai-profile-cta-drop svg {
	color: var(--secondary);
}

.ai-profile-cta-text {
	color: #fff;
	margin: 0px;
	font-size: 12px;
	margin-top: 8px !important;
	user-select: none;
	cursor: pointer;
	transition: all 0.3s ease;
}
.ai-profile-cta-text:hover {
	opacity: 0.7;
}

.pm-cta-container {
	background: rgb(21,50,77);
	background: linear-gradient(-45deg, rgba(21,50,77,1) 25%, rgba(70,98,119,1) 55%, rgba(214,238,242,1) 100%);	width: 60%;
	height: fit-content;
	border-radius: 14px;
	padding: 1rem;
	position: absolute;
	top: 13rem;
	left: 4rem;
	opacity: 1;
}



.register-box, .login-box {
	background-color: #ffffff29;
	border-radius: var(--radius);	
	margin: 60px 0px;
	color: var(--white);
	padding: 2.5rem !important;
	width: 60%;
}
.register-box, .login-box {
	background-color: #ffffff29;
	border-radius: var(--radius);	
	margin: 60px 0px;
	color: var(--white);
	padding: 2.5rem !important;
	width: 60%;
}
@media all and (max-width: 991px) {
.register-box, .login-box {
	width: 100%;
	margin-bottom: 0px;
}
}
.login-box.forgot-pass {
	padding: 0px !important;
	margin-top: 0px;
}
.login-box.forgot-pass.error {
	height: calc(100vh - 160px);
}
.login-box form input {
	background-color: #deb5ff;
}

.register-check-container {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 4px;
}

.register-check-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.register-check-wrapper label {
	margin: 0px !important;
}

.forgot-pass-link {
	margin-top: 10px;
	font-size: 11px !important;
}

.register-box h3, .login-box h3 {
	font-size: 20px;
	font-weight: bold;
}

.register-box label, .login-box label {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 4px;
}

.dropdown-item {
	font-size: 12px;
}

.no-account-container p {
	font-size: 12px;
}

.register-box input, .login-box input, .register-box select, .login-box select {
	font-size: 12px !important;
	border: none !important;
	background-color: #deb5ff;
	border-color: transparent !important;
}

.register-box select, .login-box select {
	padding-left: 10px;
	padding-right: 10px;
}

.register-box {
	z-index: 1;
	position: relative;
	/* position: fixed;
	width: 25rem;
	left: 10rem; */
}

/* Profile avatar wrapper */
.nav-profile-avatar-wrapper {
	position: relative;
	transition: all 0.3s ease;
}

/* Profile menu */
.nav-profile-avatar-menu {
	position: absolute;
	z-index: 8001;
	top: 100%;
	right: 0;
	min-width: 8rem;
	margin-top: 1rem;
	border-radius: 10px;
	background-color: var(--white);
	border: 1px solid #ccc;
	transition: all 0.3s ease;
	opacity: 0;
	transform: scale(0.8);
	pointer-events: none;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.nav-profile-avatar-menu.open {
	opacity: 1;
	transform: scale(1);
	pointer-events: all;
}

/* Item */
.nav-profile-avatar-menu-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
	padding: 0.5rem;
	padding-left: 0.8rem;
	padding-right: 0.8rem;
	margin: 0px;
	font-size: 12px;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
}
.nav-profile-avatar-menu-item:hover {
	opacity: 0.7;
}

.nav-profile-avatar-menu-item.mobile {
	color: var(--white);
	gap: 12px;
	padding: 0.8rem;
}
.nav-profile-avatar-menu-item.mobile svg {
	font-size: 12px;
}

/* Backdrop */
.nav-profile-avatar-menu-backdrop {
	position: fixed;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: #00000040; */
	z-index: 8000;
}
.nav-profile-avatar-menu-backdrop.open {
	opacity: 1;
	pointer-events: all;
}

/* Mobile */


.mobile-profile-menu-wrapper {
	background-color: var(--primary);
	border: 1px solid #ccc;
	border-left-width: 0px;
	border-right-width: 0px;
	height: 0px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.mobile-profile-menu-wrapper.open {
	margin-bottom: 8px;
	height: fit-content;
}

.mobile-profile-menu-trigger {
	cursor: pointer;
}

.nav-profile-avatar {
	cursor: pointer;
}

/* .mobile-profile-menu-wrapper-employee {
	background-color: var(--primary);
	
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	justify-content: space-around;
	transition: all 0.3s ease;
	height: 0px;
	overflow: hidden;
} */


/* Sidenav widget */
.sidenav-widget-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}
.sidenav-widget-text {
	margin: 0px;
	font-size: 12px;
	opacity: 0.8;
}

/* Expiring Ad */
.sidenav-expiring-ad {
	display: flex;
	flex-direction: column;
	background-color: var(--grey);
	width: 75%;
	z-index: 10;
	position: absolute;
	margin-top: -20px;
	padding: 10px;
	padding-top: 20px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.sidenav-expiring-ad a {
	font-size: 12px !important;
	margin-top: 0.5rem;
}

.sidenav-widget-progress {
	margin-top: 6px;
	border-radius: 6px;
	overflow: hidden;
	height: 16px;
	font-size: 10px;
}
.sidenav-widget-progress > div {
	height: 100%;
}

/* Profile sidebar widget */
.side-widget {
	background-color: var(--white);
	/* width: 100%; */
	border-radius: var(--radius);
	box-shadow: 0px 10px 10px 0px #00000015;
	width: 75%;
	position: relative;
	z-index: 20;
}


/*
* Perfect Match CTA
*/
.pm-cta-stars-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 24px;
	color: var(--grey);
}

.pm-cta-star {
	/* transition: all 0.4s ease; */
}

.pm-cta-star.active {
	-webkit-mask: linear-gradient(270deg, rgba(247,203,130,1) 0%, rgba(252,163,17,1) 100%);
	mask: linear-gradient(270deg, rgba(247,203,130,1) 0%, rgba(252,163,17,1) 100%);
	-webkit-mask-composite: source-in;
	mask-composite: intersect;
	color: rgba(247,203,130,1); /* Fallback color */
}

.pm-cta-star.active i {
	-webkit-mask: linear-gradient(270deg, rgba(247,203,130,1) 0%, rgba(252,163,17,1) 100%);
	mask: linear-gradient(270deg, rgba(247,203,130,1) 0%, rgba(252,163,17,1) 100%);
	-webkit-mask-composite: source-in;
	mask-composite: intersect;
	color: rgba(247,203,130,1); /* Fallback color */
}

/* Slider */
.slider-cta {
	position: absolute;
	width: auto;
	overflow: hidden;
}
.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 200%;
	gap: 1rem;
}
.slide {
	width: 50%;
	flex-shrink: 0;
}
.slider-dots {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}
.slider-dots .dot {
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: #bbb;
	margin: 0 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}
.slider-dots .dot.active {
	background-color: var(--primary);
}

.modal-body.ai {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

/* AI Modal -- Dropzone */
.ai-modal-dropzone {
	width: 80%;
	height: 9rem;
	background-color: #0000004a;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	color: var(--secondary);
	align-items: center;
	justify-content: center;
	border: 1px dashed var(--secondary);
	cursor: pointer;
	transition: all 0.3s ease;
}
.ai-modal-dropzone:hover {
	border-color: #ffffff;
}

.ai-modal-dropzone-text {
	margin: 0px;
	color: var(--secondary);
	font-size: 12px;
	opacity: 0.7;
	width: 80%;
	user-select: none;
}

#resumeUploadForm, #resumeUploadForm-mobile {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ai-modal-dropzone-info {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

#file-name {
	font-size: 12px;
}

.ai-modal-start-btn {
	margin-top: 10px;
}


/* Rotation animation -- used for customBtn border anim */
@keyframes rotateBorder {
	to {
	  --angle: 360deg;
	}
}
  
/* Angle property */
@property --angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
.custom-border-anim {
	border: solid 2px #0000;
	background: linear-gradient(#ebeaea, #ebeaea) padding-box, linear-gradient(
	  var(--angle),
	  var(--secondary),
	  #ccc
	) border-box;
	animation: 5s rotateBorder linear infinite;
}

#loading-cv-anim-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.ai-modal-loading-text {
	margin: 0px;
	color: var(--white);
	font-size: 12px;
}

.loading-cv-anim {
	height: 140px;
	width: 140px;
}


/*
* Profile options mobile sheet
*/
/* Backdrop */
.modal-mobile-application-options-backdrop, .mobile-sheet-backdrop, .modal-mobile-profile-preview-backdrop {
	position: fixed;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(8px);
	background-color: #00000040;
	z-index: 8000;
}
.modal-mobile-application-options-backdrop.open, .mobile-sheet-backdrop.open, .modal-mobile-profile-preview-backdrop.open {
	opacity: 1;
	pointer-events: all;
}

/* Container */
.modal-mobile-application-options, .mobile-sheet {
	position: fixed;
	right: 0;
	bottom: 0;
	height: fit-content;
	z-index: 9000;
	outline: none !important;
	transition: all 0.4s ease;
	width: 100%;
	transform: translateY(100%);
	background-color: var(--white);
	box-shadow: 0px -10px 20px 0px #00000015;
	border-radius: 20px 20px 0px 0px;
	padding: 1rem;
	padding-bottom: 3rem;
	overflow: hidden;
}
.modal-mobile-application-options.open, .mobile-sheet.open {
	transform: translateY(0);
}

.mobile-sheet-close {
	height: 40px;
	width: 40px;
	position: absolute;
	top: 10px;
	right: 8px;
	outline: none !important;
}

.mobile-sheet-backdrop, .mobile-sheet {
	display: none;
}

@media all and (max-width: 991px) {
	.mobile-sheet-backdrop, .mobile-sheet {
		display: block;
	}
	.modal-mobile-application-options-backdrop.open, .mobile-sheet-backdrop.open, .modal-mobile-profile-preview-backdrop.open {
		opacity: 1;
		pointer-events: all;
	}
}


#ai-cv-mobile {
	background: linear-gradient(-45deg, rgba(173, 173, 173, 0.55) 0%, rgba(236, 236, 236, 0.35) 100%);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
	text-align: center;
	color: var(--white);
}
#ai-cv-mobile span {
	color: var(--white);
}

.modal-err-msg {
	font-size: 12px;
	margin: 0px;
	margin-top: 12px;
	width: 80%;
}


/* Custom styling for table */
.custom-table-row {
	width: 100% !important;
	position: relative;
	border-collapse: separate;
	box-shadow: none;
	border-spacing: 0 10px; /* This creates space between rows */
}

.custom-table-row td {
	font-size: 12px !important;
	/* border: none !important; */
	background-color: var(--white);
	height: 35px !important;
	box-shadow: none !important;
	border: 1px solid #ccc;
	border-top: 1px solid #ccc !important;
	border-left-width: 0px;
	border-right-width: 0px;
}
.custom-table-row td p {
	margin: 0px;
}
.custom-table-row td .btn {
	font-size: 12px;
	width: 34px;
	height: 34px;
	box-shadow: none;
}
.custom-table-row td .btn:hover {
	opacity: 0.5;
}
.custom-table-row tr.unread td {
	background-color: #08719815;
}
.custom-table-row.perfect-match td {
	border-color: var(--secondary) !important;
}

/* Styling for first and last cells in each row for rounded corners */
.custom-table-row td:first-child {
	border-top-left-radius: var(--radius) !important;
	border-bottom-left-radius: var(--radius) !important;
	border-left-width: 1px;
	overflow: hidden !important;
}

.custom-table-row td:last-child {
	border-top-right-radius: var(--radius) !important;
	border-bottom-right-radius: var(--radius) !important;
	border-right-width: 1px;
	overflow: hidden !important;
}

.custom-table {
	border-spacing: 0px 10px !important;
}
.custom-table > thead > tr > th {
	border: none !important;
}
.custom-table.no-footer {
	border-bottom: none !important;
}


.exp-table-company-name {
	font-size: 14px;
	font-weight: 500;
}


/* Profile Images */
/* Container */
.prof-images-container {
	display: flex;
	flex-direction: column;
	position: relative;
	width: fit-content;
}

/* Image wrapper */
.prof-img-wrapper {
	width: fit-content;
	height: fit-content;
	position: relative;
}
.prof-img-wrapper.img {
	position: absolute;
	z-index: 10;
	left: 1rem;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	width: calc(100% - 1rem);
	gap: 10px;
}
.prof-img-wrapper.cover {
	margin-bottom: 3.8rem;
}

.prof-img-wrapper-inner {
	position: relative;
}

/* Profile image */
.prof-img {
	height: 5rem;
	min-width: 5rem;
	border-radius: 100%;
}

/* Cover Image */
.cover-img {
	height: 8rem;
	min-width: 27rem;
	border-radius: 10px;
}

/* Image element */
.profile-img-elem {
	object-fit: cover;
	object-position: center;
	cursor: pointer;
	transition: all 0.3s ease;
}
.profile-img-elem:hover {
	opacity: 0.8;
}


.remove-image-btn {
	z-index: 80;
	position: absolute;
	top: -5px;
	right: -5px;
	background-color: var(--white);
	border: 1px solid #ccc;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.remove-image-btn svg {
	/* height: 12px !important; */
}
.remove-image-btn:hover {
	opacity: 0.7;
}


/* Input wrapper (label, input) */
.input-label-wrapper {
	display: flex;
	flex-direction: column;
}

.input-label {
	margin: 0px;
	font-weight: 600;
	font-size: 12px;
}


.nav-items-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.profile-preview-wrapper {
	height: 100%;
	position: relative;
	overflow: hidden;
}

.profile-preview {
	background-color: var(--white);
	box-shadow: 0px 10px 10px 0px #00000015;
	min-height: 10rem;
	border-radius: 20px;
	height: fit-content;
	position: sticky;
	top: 4rem;
	padding: 2rem;
}

.profile-preview-container {
	position: relative;
	margin-top: 2rem;
	top: 0;
	width: 100%;
	flex: 0.9;
	height: calc(100% - 4rem);
}

/* For small laptop screens change the .profile-preview-container */
@media (max-width: 1450px) {
	.profile-preview-container {
		flex: 0.1;
	}
}
@media (max-width: 1536px) {
	.profile-preview-container {
		flex: 0.5;
	}
	.profile-preview-container .aggelia-foryou.aggelia-card:nth-child(n+6) {
		display: none;
	}
}

#personal_data {
	/* display: flex; */
	position: relative;
	width: 100%;
	gap: 10px;
	height: 100%;
}

#profileTabContent {
	height: 100%;
	width: calc(100% + 4rem);
}

.profile-edit-title {
	margin: 0px;
	margin-bottom: 0.8rem;
	font-weight: 500;
	font-size: 16px;
}

.profile-preview-header {
	height: 8rem;
	border-radius: 10px;
	padding: 1rem;
	position: relative;
}

.profile-preview-img {
	height: 5rem;
	min-width: 5rem;
	border-radius: 100%;
}

.profile-preview-img-container {
	position: absolute;
	bottom: -5rem;
	width: fit-content;
}

.profile-preview-img-container {
	position: relative;
}

.profile-preview-img-indicator {
	position: absolute;
	bottom: 3px;
	right: 3px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #ccc;
}

/* Availability status indicators */
.profile-preview-img-indicator.available {
	background-color: var(--green);
}

.profile-preview-img-indicator.unavailable {
	background-color: var(--red);
}

.profile-preview-info {
	position: relative;
	margin-top: 0.6rem;
	left: 7rem;
	color: #333;
}

.profile-preview-name {
	font-weight: 600;
	font-size: 16px;
	margin: 0;
	word-break: break-all;
}

.profile-preview-profession {
	font-size: 14px;
	margin: 0;
}

.profile-preview-status {
	font-size: 12px;
	color: #666;
	margin: 0;
}
.profile-preview-status.available {
	color: var(--green);
}
.profile-preview-status.unavailable {
	color: var(--red);
}

.modal-profile-view-socials {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	gap: 10px;
}

.modal-profile-view-socials a {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.modal-profile-view-socials a:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

.modal-profile-view-no-image-container {
	width: 5rem;
	height: 5rem;
	background-color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	font-size: 24px;
}

.profile-preview-bio {
	font-size: 12px;
	margin: 0px;
	margin-top: 8px;
	opacity: 0.8;
	overflow-x: hidden;
  overflow-y: auto;
	word-break: break-all;
  max-height: 20vh;
}

.prof-img-wrapper.img .input-label-wrapper {
	width: 100%;
	gap: 4px;
}

#fullname-input {
	width: 55%;
	box-shadow: none !important;
	border: 1px solid #ccc;
}

.prof-header {
	display: flex;
	width: 100%;
	gap: 1rem;
	flex-wrap: wrap;
}

.cv-input-label {
	margin: 0px;
	font-weight: 600;
	font-size: 12px;
	text-align: center;
	margin-top: 4px;
	margin-bottom: 10px;
}


/* Tabs Container */
.modal-profile-view-tabs-container {
	display: flex;
	flex-direction: row;
	/* gap: 10px; */
	width: 100%;
}
.modal-profile-view-tabs-container .nav-item.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.modal-profile-view-tabs-container .nav-item.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.modal-profile-view-tabs-content {
	padding-top: 1rem;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
}
.modal-profile-view-tabs-content::-webkit-scrollbar {
	display: none;
}

/* Tab */
.modal-profile-view-tabs-container a {
	color: var(--white);
	margin: 0px;
	opacity: 0.8;
	font-size: 12px;
}
.modal-profile-view-tab.active, .modal-profile-view-tab:hover {
	opacity: 1;
}
.modal-profile-view-tabs-container .nav-link.active {
	font-weight: 500;
	opacity: 1;
	color: var(--primary) !important;
	box-shadow: inset 0 -2px 0 var(--primary);
}

/* Info container */
.modal-profile-info-container {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-bottom: 1rem;
}

.profile-info-container.mobile {
	flex-direction: row;
	flex-wrap: wrap;
}

/* Info item wrapper */
.modal-profile-info-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid #cccccc;
	padding: 12px;
	border-radius: 10px;
}
.modal-profile-info-wrapper.action {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: all 0.3s ease;
}
.modal-profile-info-wrapper.action:hover .modal-profile-info-action {
	color: var(--secondary);
}

/* Action */
.modal-profile-info-action {
	color: #c4c4c4;
	font-size: 14px;
	margin-right: 4px;
	transition: all 0.3s ease;
}
.modal-profile-info-action:hover {
	opacity: 0.7;
}

.modal-profile-info-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

/* Row */
.modal-profile-info-row {
	display: flex;
	width: 100%;
	gap: 10px;
	justify-content: space-between;
}

/* Label */
.modal-profile-info-wrapper p {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
}
.modal-profile-info-wrapper span {
	font-weight: 400;
	opacity: 0.8;
	font-size: 12px;
}

/* Experience container */
.modal-profile-exp-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding-bottom: 1rem;
}

.modal-profile-exp-container #working_experiences, .modal-profile-exp-container #education_records,
.modal-profile-exp-container #working_experiences_mobile, .modal-profile-exp-container #education_records_mobile {
	display: none;
}

/* Experience wrapper */
.modal-profile-exp-wrapper {
	display: flex;
	flex-direction: column;
	width: fit-content;
	border: 1px solid #cccccc;
	width: 100%;
	padding: 12px;
	border-radius: 10px;
}
.modal-profile-exp-wrapper p {
	margin: 0;
}

/* Job title */
.modal-profile-exp-job {
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
}

/* Company */
.modal-profile-exp-comp {
	font-size: 12px;
}

/* Date */
.modal-profile-exp-date {
	font-size: 11px;
	opacity: 0.8;
}

/* Desc */
.modal-profile-exp-desc {
	font-size: 12px;
	opacity: 0.8;
	margin-top: 4px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	transition: all 0.4s ease;
	cursor: pointer;
	max-height: 4.5em; /* Adjust based on line height */
}

.modal-profile-exp-desc.expanded {
	-webkit-line-clamp: unset;
	line-clamp: unset;
	max-height: 100%; /* Allow full height */
}

/* Skills container */
.modal-profile-skills-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Skill item */
.modal-profile-skills-item-wrapper {
	border: 1px solid #cccccc;
	padding: 6px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 10px;
}
.modal-profile-skills-item-wrapper.lang {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.modal-profile-answ-row-container {
	padding-bottom: 1rem;
	/* margin: 0 auto; */
}

.modal-profile-answ-row-background {
	background-color: var(--grey);
	padding-bottom: 1rem;
	/* border: solid 1px var(--white); */
	/* border-radius: var(--radius); */
}

/* Answers container */
.modal-profile-answ-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.modal-profile-answ-container.interview {
	gap: 6px;
	max-height: 10rem;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
}
.modal-profile-answ-container.interview::-webkit-scrollbar {
	display: none;
}

/* Hide the first child */
#answer_records {
	display: none;
}

.modal-profile-answ-speech-wrapper {
	display: flex;
	gap: 5px;
	justify-content: flex-start;
}
.modal-profile-answ-speech-wrapper.answer {
	justify-content: flex-end;
}
.modal-profile-answ-speech-avatar {
	height: 40px;
	min-width: 40px;
	max-width: 40px;
	border-radius: 100%;
	background-color: #ccc;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal-profile-answ-speech-avatar-initials {
	font-size: 14px;
	font-weight: 500;
	margin: 0px;
}
.modal-profile-answ-speech-text-wrapper {
	min-height: 40px;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 10px;
	max-width: 100%;
}
.modal-profile-answ-speech-text {
	font-size: 12px;
	margin: 0px;
}
.modal-profile-answ-speech-text.no-answer {
	color: var(--red);
}


/* Label */
.modal-profile-skills-item-label {
	font-size: 12px;
}
.modal-profile-skills-item-label.lang {
	font-weight: 500;
}
.modal-profile-skills-item-label.sub {
	font-weight: 300;
}

.nav-skills-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.modal-profile-lang-title {
	margin: 0px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 4px;
}

#experience-data th, #education-data th, #language-data th {
	font-size: 14px !important;
}

#experience-data td, #experience-data_info, #education-data td, #education-data_info, #language-data_info, #language-data td{
	font-size: 12px !important;
}

.dataTables_info {
	font-size: 12px !important;
	display: none;
}


.basic-info-form.modal-form label {
	margin: 0px;
	margin-bottom: 2px;
	font-size: 12px;
}

/* End date wrapper */
.end-date-wrapper {
	width: 100%;
}

#workingExperienceForm input, #educationForm input {
	width: 49%;
}

.dates-row input {
	width: 100% !important;
}

.dates-row {
	display: flex;
	gap: 10px;
	width: 100%;
	/* margin-right: -15px;
	margin-left: -15px; */
	margin-top: 6px;
}

/* End date checkbox wrapper */
.end-date-checkbox-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
	justify-content: flex-end;
	width: 100%;
}
.end-date-checkbox-wrapper label {
	font-size: 12px !important;
	font-weight: 400;
	margin: 0px !important;
}
.end-date-checkbox-wrapper input[type="checkbox"] {
	width: fit-content !important;
	margin: 0px;
}


/* Experience container */
.modal-profile-exp-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding-bottom: 1rem;
}

.edit-exp-btn {
	border: none;
}


/*
* AI BADGE
*/
.ai-badge {
	background-color: var(--primary);
	color: var(--white);
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	padding: 6px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.ai-badge.top-left-pos {
	position: absolute;
	top: -10px;
	left: 8px;
}

.ai-badge-icon {
	color: var(--white) !important;
	font-size: 10px;
}

.modal-profile-divider {
	display: flex;
	width: 100%;
	height: 1px;
	background-color: var(--secondary);
}
.modal-profile-divider.gray {
	background-color: #cccccc;
}
.modal-profile-divider.top {
	margin-top: 12px;
	margin-bottom: 12px;
}
.modal-profile-divider.mobile {
	margin-top: 10px;
	margin-bottom: 10px;
}

.nav-skills-preview-container {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	flex-wrap: wrap;
}

/*
* Form title && Subtitle
*/
.form-title-wrapper {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 1rem;
}

.form-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0px;
}

.form-subtitle {
	margin: 0px;
	font-size: 12px;
	opacity: 0.8;
	width: 60%;
}

.skills-edit-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}


/*
* Custom Dropdown
*/
.custom-dropdown {
	box-shadow: none !important;
	border: 1px solid #ccc !important;
	width: auto !important;
	min-width: 200px;
}

.select2-selection {
	border: 1px solid #ccc !important;
	border-radius: 6px !important;
}


/*
* No image container
*/
.no-image-container {
	height: 5rem;
	width: 5rem;
	background-color: var(--white);
	border-radius: 100%;
	border: 1px solid #ccc;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	transition: all 0.3s ease;
}
.no-image-container.cover {
	height: 8rem;
	/* width: 27rem; */
	width: 677.967px;
	border-radius: 10px;
}
.no-image-container:hover {
	opacity: 0.8;
}

.no-image-text {
	font-size: 10px;
	margin: 0px;
	width: fit-content;
	text-align: center;
	opacity: 0.8;
	line-height: 12px;
}

/* Image placeholder styles */
.profile-preview-img-placeholder {
  height: 5rem;
  min-width: 5rem;
  border-radius: 100%;
  background-color: #ebeaea;
  display: flex;
  align-items: center;
  justify-content: center;
	border: 1px solid #c4c4c4;
	z-index: 200;
}

.profile-preview-img-placeholder i {
  font-size: 1.5rem;
  color: #7b7b7b;
}

.profile-preview-cover-placeholder {
  position: absolute;
	z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ebeaea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
	border: 1px solid #c4c4c4;
}

.profile-preview-cover-placeholder i {
  font-size: 2.5rem;
  color: #7b7b7b;
}

.ai-cv-skip-btn-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 11px;
	gap: 0px;
}

.ai-cv-skip-text {
	color: var(--white);
	margin: 0px;
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
}

.skip-cv-btn {
	background-color: transparent;
	border: none;
	color: var(--white) !important;
	text-decoration: underline !important;
	padding: 0px;
}


/*
* Recommended Jobs Modal
*/

#recommJobsModal {
	top: 0;
	left: 0;
	width: 100%;
}
#recommJobsModal .modal-dialog {
	width: 100%;
	max-width: 100%;
	top: 5rem;
	margin: 0px;
	display: flex;
	justify-content: center;
}

.recomm-jobs-content-wrapper {
	width: fit-content;
}

/* Jobs container */
.recomm-jobs-container {
	display: flex;
	gap: 10px;
	margin-top: 1rem;
}

/* Job Listing */
.recomm-job-listing {
	border: 1px solid #ccc;
	background-color: var(--white);
	padding: 14px;
	border-radius: 10px;
	min-width: 240px;
	/* min-height: 300px; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	gap: 8px;
}
.recomm-job-listing.perfect-match {
	border-color: var(--secondary);
}

.recomm-job-listing-badge {
	position: absolute;
	top: -8px;
	left: 12px;
	background: linear-gradient(to bottom, var(--grey), var(--white));
	padding: 4px;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 11px;
	font-weight: 500;
}

.job-star-filled, .job-star-empty {
	color: var(--secondary);
}

.recomm-job-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

.recomm-job-img {
	width: 40px;
	height: 40px;
	background-color: var(--grey);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--gray);
}

/* Job listing body */
.recomm-job-body {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 2px;
	background-color: var(--grey);
	width: 100%;
	height: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
	/* border: 1px solid #ccc; */
	border-top-width: 0px;
	overflow: hidden;
	border-radius: 10px;
	align-items: center;
}

.recomm-job-body:first-child {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.recomm-job-body:last-child {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.recomm-job-body-item {
	height: 100%;
	width: calc(100% - 4px);
	padding: 0.8em;
	background-color: var(--white);
	/* border-top: 1px solid #ccc; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.recomm-job-body-item-text {
	font-size: 12px;
	margin: 0px;
}

.recomm-job-listing p {
	margin: 0px;
}

.recomm-job-title {
	font-size: 14px;
	font-weight: 500;
}

.recomm-job-company {
	font-size: 12px;
	opacity: 0.8;
}

/* View All cta */
.recomm-jobs-view-all {
	margin: 0px; 
	margin-top: 10px;
	font-size: 12px;
	color: #000 !important;
	text-decoration: underline;
	transition: all 0.3s ease;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.recomm-jobs-view-all:hover {
	opacity: 0.6;
}
.recomm-jobs-view-all.single-aggelia {
	width: fit-content;
}

.footer-btn-container {
	display: flex;
	gap: 10px;
	padding: 0px;
	border: none;
	margin-top: 0.5rem;
}

.main-container {
	background-color: var(--grey);
}

/* Main container */
.main-container-content {
	margin: 0px !important;
	padding: 2rem !important;
}
.main-container-content.aggelia {
	padding-top: 0px !important;
}



.search-container {
	position: relative;
	width: 25%;
}

.search-container::before {
	content: "\f002";
	font-family: FontAwesome;
	position: absolute;
	font-size: 12px;
	left: 10px;
	top: 48%;
	transform: translateY(-50%);
	color: var(--gray);
	transition: all 0.3s ease;
}

.search-container:focus-within::before {
	color: var(--primary);
}

/* Header */
.header-wrapper {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header-wrapper.aggelies {
	justify-content: space-between;
	padding-right: 1rem;
}

.page-title {
	font-size: 20px;
	font-weight: 600 !important;
	margin: 0px;
}

.searchInput {
	width: 100%;
	padding-left: 28px !important;
}

.dataTables_empty {
	font-size: 12px;
}

.tooltip-inner {
	font-size: 12px !important;
	background-color: rgba(240, 240, 240) !important;
	backdrop-filter: blur(20px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	border: 1px solid rgba(255, 255, 255, 0.98) !important;
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1) !important;
	color: #000 !important;
}

.favorite-row {
	background-color: var(--white) !important;
}
.favorite-row.mobile {
	border: 1px solid #ccc;
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
	position: relative;
}

.favorite-img-container {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}

.savedprofile-company-img {
	min-width: 45px;
	height: 45px;
	display: inline-block;
	border-radius: 100%;
}

.savedprofile-img-container {
	position: relative;
}

.savedprofile-company-data {
	display: inline-block;
	margin-left: 15px;
}
.savedprofile-company-data p {
	margin: 0px;
	font-size: 12px;
}
.savedprofile-company-data p:first-child {
	font-weight: bold;
	font-size: 14px;
}
.savedprofile-company-data p:nth-of-type(2)
{
	opacity: 0.7;
	font-size: 12px;
}

.favorite-row-btn-container {
	display: flex;
	gap: 4px;
	align-items: center;
}

.clickable-row {
	cursor: pointer;
	transition: all 0.3s ease;
}
.clickable-row:hover {
	transform: scale(1.02);
}

.interview-modal-last-updated {
	margin-top: -1.5rem;
}

.interview-notes {
	width: 100% !important;
	min-height: 6rem;
}

#add-notes-container {
	width: 100%;
}

.add-note-btn-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Label */
.edit-interview-label {
	margin: 0px;
	font-size: 12px;
	margin-bottom: 2px;
}

.edit-interview-checkbox-wrapper {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	padding: 1rem;
	padding-bottom: 0px;
	padding-top: 0px;
	gap: 1rem;
	width: 100%;
}
.edit-interview-checkbox-wrapper .edit-interview-label {
	margin: 0px;
}
.edit-interview-checkbox-wrapper input {
	width: fit-content;
}

.edit-interview-modal-btns-container, .custom-btn-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.disclaimer-row p {
	opacity: 0.8;
}

.interview-item {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 10px;
	box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

.interview-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.interview-item-participants {
	margin-bottom: 14px;
	display: flex;
	align-items: center;
}

.interview-item-avatar {
	min-width: 30px;
	height: 30px;
	border-radius: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: var(--grey);
	display: flex;
	align-items: center;
	justify-content: center;
}
.interview-item-avatar.employer {
	margin-left: -10px;
}

.interview-item-initials {
	margin: 0px;
	font-size: 12px;
	font-weight: 500;
}

.interview-item-info-container {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.interview-item-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
}
.interview-item-info p {
	margin: 0px;
}

.basic-info-form select {
	/* border: solid 2px var(--primary); */
	width: 210px;
	border: none;
	background-color: #ffffff5c !important;
	font-size: 12px !important;
	box-shadow: none;
	color: #000 !important;
	border: 1px solid #ccc;
	padding-left: 10px !important;
  padding-right: 10px !important;
	background-position-x: 96%;
}
.form-control.disabled {
	opacity: 0.6;
	cursor: not-allowed;
	border: 1px solid #ccc !important;
	background-color: var(--grey) !important;
}


.similar-job-view-all-container {
	padding-right: 5.5rem;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

/*
* Perfect match -- Single Aggelia modal
*/
.perfect-match-modal {
	min-height: 14rem;
}
.perfect-match-modal .modal-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.perfect-match-modal .job-star-filled, .perfect-match-modal .job-star-empty {
	font-size: 24px;
	filter: drop-shadow(0px 2px 3px rgba(252, 163, 17, 0.2));
}
.job-star-filled.highlighted {
	/* transform: translateY(-4px); */
}

.perfect-match-modal-title {
	margin: 0px;
	font-size: 18px;
	color: var(--secondary);
	font-weight: 600;
}

.perfect-match-text {
	font-size: 12px;
	margin: 0px;
	text-align: center;
	opacity: 0.8;
}

.perfect-match-modal-desc {
	font-size: 12px;
	margin: 0px;
	font-weight: 400;
	opacity: 0.8;
}

.job-ads-container {
	margin-top: 1rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: stretch; /* Make items stretch to fill container height */
}

/* Make all aggelia cards in a row have the same height */
.job-ads-container .aggelia-foryou {
  display: flex;
  flex-direction: column;
  height: 100%; /* Fill the entire height of its container */
}

.job-ads-container .aggelia-foryou .card-body {
  flex: 1; /* Allow the card body to grow and fill the space */
  display: flex;
  flex-direction: column;
}

/* Ensure proper spacing for the external aggelia cards as well */
.job-ads-container .card.aggelia-foryou {
  height: 100%;
}

.job-ads-container .card.aggelia-foryou .card-body {
  flex: 1;
}

/* Equal height job cards solution */
.job-ads-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Make each item a flex container to stretch inner content */
.job-ads-container .aggelia-foryou,
.job-ads-container .card.aggelia-foryou {
  display: flex;
  flex-direction: column;
  height: auto;
	padding: 0.5rem;
  min-height: 100%;
}

/* Allow card body to grow to fill available space */
.job-ads-container .aggelia-foryou .card-body,
.job-ads-container .card.aggelia-foryou .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

/* Push the buttons to the bottom */
.job-ads-container .aggelia-buttons {
  margin-top: auto;
}

/* Force cards in the same row to have equal height using JS-free approach */
@media (min-width: 576px) {
  .job-ads-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 0fr));
    gap: 1rem;
    row-gap: 1rem;
  }
}

@media all and (max-width: 991px) {
  .job-ads-container .aggelia-foryou,
	.job-ads-container .card.aggelia-foryou {
		width: 100% !important;
	}

	.header-wrapper {
		margin-top: 1rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		width: 100%;
		justify-content: flex-start;
	}
	.search-container {
		width: 100%;
	}

	.page-subtitle {
		margin-bottom: -2rem;
	}
}

.perfect-match-stars-container {
	background-color: transparent !important;
}

.perfect-match-add-text {
	margin: 0px;
	font-size: 12px;
	opacity: 0.8;
	font-weight: 500;
	margin-top: 0.5rem;
	text-align: center;
}

.perfect-match-changes-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.skill-missing {
	width: fit-content;
	background-color: var(--grey);
	padding: 6px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 6px;
}

.skill-missing-label {
	font-size: 12px;
	margin: 0px;
	user-select: none;
}

/* Highlighted input */
.highlighted {
	border-color: var(--secondary) !important;
}

/* Fixed Job Posting */
.fixed-job-posting {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background-color: var(--white);
	border: 1px solid #ccc;
	padding: 15px;
	border-radius: 10px;
	/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
	width: fit-content;
	max-width: 340px;
}

.fixed-job-posting .job-title {
	font-size: 13px;
	font-weight: 500;
	margin: 0px;
}

.fixed-job-posting .employer {
	font-size: 12px;
	color: var(--primary);
	margin: 0px;
}

.fixed-job-posting .description {
	font-size: 12px;
}

.fixed-job-posting-title {
	font-weight: 600;
	/* text-align: center; */
	margin: 0px;
	margin-top: 8px;
	margin-bottom: 12px;
}


.interview-status-desc {
	font-size: 12px;
	margin: 0px;
	margin-top: -2px;
	opacity: 0.8;
	animation: collapseFromTop 0.2s ease-in-out 2s forwards;
	transform-origin: top;
	transform: scaleY(0);
}

@media all and (max-width: 991px) {
	.profile-edit-content {
		padding: 0px;
		padding-top: 1rem;
		padding-bottom: 8rem;
	}

	.no-image-container.cover, .prof-img-wrapper.cover, .prof-images-container {
		width: 100%;
	}

	.modal-profile-no-image-initials {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
	}

	/* Ensure the profile preview img container is properly sized */
	.profile-preview-img-container {
		position: relative;
		width: 5rem;
		height: 5rem;
	}

	.modal-profile-view-no-image-container {
		width: 5rem;
		height: 5rem;
		background-color: var(--primary);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-weight: 600;
		font-size: 24px;
		position: relative;
	}

	.modal-profile-no-image-initials {
		margin: 0;
		font-size: 24px;
		font-weight: bold;
		color: #fff;
		text-transform: uppercase;
	}

	.basic-info-form-col.display-mobile {
		margin-top: 10px;
	}
	#aggelies-content-container {
		padding-top: 2rem !important;
		height: calc(100% + 4rem) !important;
	}

	.register-box, .login-box {
		z-index: 10;
		border: none;
	}

	.favorite-cvs-container {
		display: flex !important;
	}

	.side-nav-add-btn {
		display: none !important;
	}
}

.ads-count-result {
	display: none !important;
	width: 0px !important;
	height: 0px !important;
}

/* Container -- mobile */
.favorite-cvs-container {
	flex-direction: column;
	gap: 10px;
	width: 100%;
	margin-top: 1rem;
}

#toggle-pass {
	width: 14px;
}

.input-group-text.toggle-password {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 12px;
	border-radius: 0px .5rem .5rem 0px;
	background-color: #deb5ff !important;
	box-shadow: none;
	border: 1px solid #ccc;
	border-left: none;
	transition: all 0.3s ease;
}
.input-group-text.toggle-password:hover {
	color: #4a4a4a;
}
.input-group-text.toggle-password.auth-form {
	border: none;
}

.experience_date_field.error {
	border: 1px solid var(--red) !important;
	background-color: #ffe6e6 !important;
}

#profileTabContent {
	margin-left: -2rem;
}

@media all and (max-width: 1600px) {
	.ai-profile-cta-text {
		font-size: 10px !important;
	}
}

@media all and (max-width: 991px) {
	.basic-info-form.profile {
		background-color: transparent !important;
	}
	.basic-info-form-col .row-wrapper {
		gap: 0px;
	}

	.profile-img-elem.prof-img {
		width: 4rem;
		max-width: 4rem;
		min-width: 4rem;
		height: 4rem;
	}

	.profile-img-elem.cover-img {
		min-width: 100%;
	}

	.select2-selection {
		width: 100% !important;
	}

	.exp-company-name {
		font-size: 14px;
		font-weight: 500;
	}

	#profileTabContent {
		margin: 0px;
		width: 100%;
	}

	#experience-mobile-container, #education-mobile-container {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.experience-mobile-item p, .education-mobile-item p {
		margin: 0px;
	}
	.experience-mobile-item, .education-mobile-item {
		width: 100%;
		height: fit-content;
		background-color: var(--white);
		box-shadow: none;
		border: 1px solid #ccc !important;
		padding: 10px;
		border-radius: 10px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.experience-mobile-item-content, .education-mobile-item-content {
		display: flex;
		flex-direction: column;
	}

	.exp-job-title {
		font-weight: 600;
		font-size: 14px;
	}

	.exp-company-name {
		font-size: 13px;
		font-weight: 400;
	}

	.exp-date {
		font-size: 12px;
		opacity: 0.8;
	}

	.basic-info-form.profile.data {
		padding: 0px;
		padding-bottom: 2rem;
		border-radius: 0px !important;
	}

	
	.main-container-content { 
		padding: 0px !important;
	}

	.main-container-content.aggelia {
		padding: 1.5rem !important;
	}
	
	.interview-item {
		background-color: var(--white);
	}

	#interviews-container {
		padding-bottom: 5rem !important;
	}

	#interviewNotesFormMobile {
		padding: 0px;
		background-color: transparent;
		border-radius: 0px;
		box-shadow: none;
	}

	.ai-cv-skip-btn-container-mobile {
		margin-top: 1rem;
		align-items: center;
		display: flex;
		justify-content: center;
	}

	#resume_file-mobile {
		height: 78%;
	}
	
}

/* NOTIFICATIONS */
.notifications-dropdown .dropdown-toggle::after {
	display: none;
}
#notificationDropdownBtn {
	max-height: 40px;
	min-height: 40px;
	display: block;
	/* color: var(--primary); */
	font-size: 1.2rem;
}
#notificationDropdownBtn:hover {
	cursor: pointer;
}
.notifications-badge {
	position: absolute;
	left: 20px;
	top: 5px;
	font-size: 10px;
	background-color: var(--secondary);
}
	/* For employer in single aggelia, show the matching profiles */
	
	/* If mobile hide the element with id aggelia-matching-profiles-container */
	@media (max-width: 991px) {
		#aggelia-matching-profiles-container {
			display: none;
		}

		.employer-public-profile-container {
			padding-bottom: 5rem !important;
		}

		.profile-more-companies-industry-container .no-jobs-found, .profile-more-companies-industry-container .profileInfoText {
			text-align: center !important;
			margin: 0px !important;
		}
		.matching-profiles-container-mobile {
			display: flex !important;
		}
	}

	@media (min-width: 992px) {
		#aggelia-employer-alert {
			display: none;
		}
	}
	#aggelia-employer-alert {
		font-size: 13px;
		text-align: left;
		padding: 10px;;
	}
	

	.matching-profiles-container .job-star-filled, .matching-profiles-container .job-star-empty {
		color: #ffc107;
	}
    /* Matching profiles container styling */
    .matching-profiles-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        max-width: 100%;
    }

    /* Applied CV styling for matching profiles */
    .matching-profiles-container .applied-cv {
        display: flex;
        align-items: center;
        padding: 15px;
        background-color: var(--white);
        border: 1px solid #ccc;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .matching-profiles-container .applied-cv:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

    .matching-profiles-container .applied-cv.blurred-profile {
        opacity: 0.7;
        cursor: default;
    }

    .matching-profiles-container .applied-cv.blurred-profile:hover {
        transform: none;
    }

    /* Applicant image styling */
    .applicant-image-container {
        position: relative;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .applicant-image-container img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .no-image-container {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
    }

    .no-image-initals {
        margin: 0;
        font-size: 14px;
    }

    .applicant-status {
        position: absolute;
        bottom: 2px;
        right: 2px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid white;
    }

    .applicant-status.available {
        background-color: var(--success, #198754);
    }

    .applicant-status.unavailable {
        background-color: var(--danger, #dc3545);
    }

    /* Applicant data styling */
    .applicant-data-container {
        flex: 1;
        min-width: 0;
    }

    .applied-title {
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 5px;
        color: var(--dark);
    }

    .applied-profession {
        font-size: 12px;
        color: #6c757d;
        margin-bottom: 8px;
        display: block;
    }

    /* Perfect match badge styling */
    .perfect-match-badge {
        display: flex;
        gap: 2px;
    }

    .job-star-filled {
        color: #ffc107;
        font-size: 12px;
    }

    .job-star-empty {
        color: #000;
        font-size: 12px;
    }

    /* Grab handle styling */
    .grab-handle {
        margin-left: 15px;
        color: #6c757d;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
    }

    .grab-handle .upgrade-link {
        color: #6c757d;
        text-decoration: none;
    }

    .grab-handle .upgrade-link:hover {
        color: var(--primary);
    }

    /* Profile modal styling adjustments */
    .modal-profile-view-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .modal-profile-view-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

    .modal-profile-view-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 600px;
        height: 100%;
        background-color: white;
        z-index: 9999;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .modal-profile-view-container.open {
        right: 0;
    }

    /* Resume viewer modal */
    .with-resumeViewer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .resumeViewer {
        max-width: 90%;
        max-height: 90%;
        border-radius: 8px;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .modal-profile-view-container {
            width: 100%;
            max-width: none;
        }
        
        .matching-profiles-container .applied-cv {
            padding: 12px;
        }
        
        .applicant-image-container img,
        .no-image-container {
            width: 70px;
            height: 70px;
        }
        
        .applied-title {
            font-size: 13px;
        }
        
        .applied-profession {
            font-size: 11px;
        }
    }


/* skills select2 */
/* .select2-container--default .select2-results__options {
    display: flex;
    flex-wrap: wrap;
}

.select2-container--default .select2-results__option[role="group"] {
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
}

.select2-container--default .select2-results__option .select2-results__group {
    font-weight: bold;
    margin-top: 10px;
}

.select2-container--default .select2-results__option ul.select2-results__options {
    padding-left: 5px;
}
.select2-container--default .select2-results > .select2-results__options {
	max-height: 300px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--primary) !important;
	border-radius: 6px !important;
}
.select2-container--default .select2-results__option--selected {
	background-color: var(--primary) !important;
	color: var(--white) !important;
	border-radius: 6px !important;
}
.select2-results__option {
	transition: all 0.2s ease !important;
}
.select2-results__option {
	margin: 3px !important;
} */


/* Job listing select2 */
.select2-container--default .select2-results__options {
    display: flex;
    flex-wrap: wrap;
}

.select2-container--default .select2-results__option[role="group"] {
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
}

.select2-container--default .select2-results__option .select2-results__group {
    font-weight: bold;
    margin-top: 10px;
}

.select2-container--default .select2-results__option ul.select2-results__options {
    padding-left: 5px;
}
.select2-container--default .select2-results > .select2-results__options {
	max-height: 300px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #25ddd3 !important;
	color: #000 !important;
	border-radius: 6px !important;
}
.select2-container--default .select2-results__option--selected {
	background-color: #25ddd3 !important;
	color: #000 !important;
	border-radius: 6px !important;
}
.select2-results__option {
	transition: all 0.2s ease !important;
}
.select2-results__option {
	margin: 3px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #25ddd3 !important;
	color: #000 !important;
	border-radius: 6px !important;
	border: 1px solid transparent !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	background-color: #25ddd3 !important;
	color: #000 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	border-right: 1px solid transparent !important;
	color: #555 !important;
}


/*
* Public employer profile
*/
/* Info Container */
.profile-info-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 1.5rem;
	margin-top: 1rem;
}

/* Info */
.profile-info-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.no-jobs-found {
	font-size: 14px;
	opacity: 0.6;
	padding-left: 2rem;
	padding-right: 2rem;
}

.profile-more-companies-industry-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.profile-more-companies-industry-content-container {
	display: block;
	gap: 1rem;
	flex-wrap: wrap;
}

.matchStarsAnimantion i {
    color: #ffd700; /* Golden color */
    margin-right: 2px;
    transition: all 0.3s ease;
}

.job-star-empty {
    opacity: 0.3;
}

.job-star-filled {
    opacity: 1;
}

/* Homepage quick build */
#quickBuild-cv {
	background-color: var(--secondary);
	color: var(--white);
}
#quickBuild-cv .btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}
#quickBuild-cv .btn-primary:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.cvAnimHome {
	padding-top: 90px;;
}
.quickbuildbox-wrap {
	/* min-height: 480px; */
	transition: all 0.3s ease;
}
.quickbuildbox {
	background-color: transparent;
	text-align: center;
	padding-top: 40px;;
}
.quickbuildbox-buttons {
	margin-top: 15px;
	display: flex;
	justify-content: end;
	align-items: center;
}
.quickbuildbox-buttons p {
	margin: 0px;
}
.quickbuildbox-buttons .disabled-btn {
	background-color: grey;
	color: #fff;
}
.quickbuildbox-buttons #prevBtn, .quickbuildbox label {
	color: #fff;
}
.quickbuildbox-buttons #prevBtn:hover {
	cursor: pointer;
}

.quickbuildbox-buttons .btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}
.quickbuildbox-buttons .disabled-btn:hover {
	background-color: gray;
	color: #fff;
	cursor: pointer;
}
.progress-steps {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}

/* Homepage slider container for non-authenticated users */
.homepage-slider-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.homepage-slider-container .homepage-slider {
	width: 100%;
	height: 100%;
	min-height: 400px;
}

.homepage-slider-container .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}


/*
* Homepage CV Quick Build Steps
*/

/* Image banner */
.home-image-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	/* background-color: #ff0; */
}

.cv-preview-wrapper {
	/* width: 100%; */
	height: 100%;
	width: 100%;
	padding: 2rem;
	position: absolute;
}

/* CV Preview Wrapper - fades from white to transparent */
.cv-preview-container {
	background: linear-gradient(to bottom, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	/* padding: 2rem; */
	width: 50%;
	height: 100%;
	position: relative;
	overflow: hidden;
	text-align: start;
}

.cv-preview-container p, .cv-preview-element p, .cv-preview-element li {
	margin: 0px;
	font-size: 12px;
}

/* Gradual blur effect on content - no blur at top, more blur at bottom */
.cv-preview-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	background: linear-gradient(to bottom, 
		rgba(255, 255, 255, 0) 0%, 
		rgba(255, 255, 255, 0) 100%
	);
	mask: linear-gradient(to bottom, 
		rgba(0, 0, 0, 0) 0%, 
		rgba(0, 0, 0, 0.2) 40%,
		rgba(0, 0, 0, 0.5) 60%,
		rgba(0, 0, 0, 0.8) 80%,
		rgba(0, 0, 0, 1) 100%
	);
	-webkit-mask: linear-gradient(to bottom, 
		rgba(0, 0, 0, 0) 0%, 
		rgba(0, 0, 0, 0.2) 40%,
		rgba(0, 0, 0, 0.5) 60%,
		rgba(0, 0, 0, 0.8) 80%,
		rgba(0, 0, 0, 1) 100%
	);
	pointer-events: none;
	z-index: 1;
}

/* Homepage banner: explicit height so the container renders */
#main-banner .cv-preview-container {
	width: 100%;
	height: auto;
	min-height: 400px;
}

.cv-preview-header {
	display: flex;
	flex-direction: column;
	gap: 0px;
	padding-bottom: 10px;
}

.cv-preview-header-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cv-preview-avatar-img {
	min-width: 45px;
	height: 45px;
	border-radius: 100%;
	object-fit: cover;
}

.cv-preview-name {
	font-size: 18px !important;
	font-weight: 600;
}

.cv-preview-title {
	font-size: 14px !important;
	font-weight: 500;
}

.cv-preview-job {
	margin-top: -4px !important;
}

.cv-preview-element {
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #000;
	/* border-bottom: 1px solid #000; */
}

.cv-preview-description {
	font-size: 12px;
}

.cv-preview-text {
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.quickbuild-success-title {
	font-size: 24px;
	font-weight: 600;
}

.quickbuild-success-btn-container {
	justify-content: center !important;
}

/* Banner success CTA (left column) */
.banner-success-content {
	color: var(--white);
}
.banner-success-content .quickbuild-success-title {
	color: var(--white);
	text-align: left;
}
.banner-success-content .quickbuild-success-desc {
	text-align: left;
	font-size: 1rem;
	line-height: 1.5;
}
.banner-success-content .quickbuild-success-btn-container {
	justify-content: flex-start !important;
}

/* CV Preview Animation Styles */

/* Keyframe animation for fade in from below */
@keyframes slideUpFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Initial state - all elements hidden and positioned below */
.cv-preview-wrapper .cv-preview-header-wrapper,
.cv-preview-wrapper .cv-preview-element {
	opacity: 0;
	transform: translateY(30px);
	transition: none; /* Disable any existing transitions during animation */
}

/* Animation triggers - elements fade in with staggered delays */
.cv-preview-wrapper.animate .cv-preview-header-wrapper {
	animation: slideUpFadeIn 0.6s ease-out 0.2s forwards;
}

.cv-preview-wrapper.animate .cv-preview-element:nth-child(2) {
	animation: slideUpFadeIn 0.6s ease-out 0.6s forwards;
}

.cv-preview-wrapper.animate .cv-preview-element:nth-child(3) {
	animation: slideUpFadeIn 0.6s ease-out 1s forwards;
}

.cv-preview-wrapper.animate .cv-preview-element:nth-child(4) {
	animation: slideUpFadeIn 0.6s ease-out 1.4s forwards;
}

.cv-preview-wrapper.animate .cv-preview-element:nth-child(5) {
	animation: slideUpFadeIn 0.6s ease-out 1.8s forwards;
}

.cv-preview-wrapper.animate .cv-preview-element:nth-child(6) {
	animation: slideUpFadeIn 0.6s ease-out 2.2s forwards;
}

.cv-preview-wrapper.animate .cv-preview-element:nth-child(7) {
	animation: slideUpFadeIn 0.6s ease-out 2.6s forwards;
}

.cv-preview-wrapper.animate .cv-preview-element:nth-child(8) {
	animation: slideUpFadeIn 0.6s ease-out 3s forwards;
}

/* Optional: Add a class to reset animations if needed */
.cv-preview-wrapper.reset-animation .cv-preview-header-wrapper,
.cv-preview-wrapper.reset-animation .cv-preview-element {
	animation: none;
	opacity: 0;
	transform: translateY(30px);
}

/* Optional: Add a class for immediate show without animation */
.cv-preview-wrapper.show-immediately .cv-preview-header-wrapper,
.cv-preview-wrapper.show-immediately .cv-preview-element {
	opacity: 1;
	transform: translateY(0);
	animation: none;
}

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        position: relative;
    }
    #step-2 {
		text-align: left;
		color: #fff;
	}
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #e9ecef;
				transition: all 0.3s ease;
        z-index: 1;
    }
    
    .step.active:not(:last-child)::after,
    .step.completed:not(:last-child)::after {
        background: var(--white);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #d7dbdf;
        color: #6c757d;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 2;
    }
    
    .step.active .step-number {
        background: var(--secondary);
        color: white;
    }
    
    .step.completed .step-number {
        background: var(--secondary);
        color: white;
    }
    
    .step-title {
        font-size: 0.9rem;
        color: #fff;
        text-align: center;
    }
    
    .step.active .step-title {
        color: #fff;
        font-weight: bold;
    }
    
    .step.completed .step-title {
        color: #fff;
    } 
    .upload-area {
        border-radius: var(--radius);
        padding: 1.8rem 1rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
		height: 100%;
        background: #ffffff29;
		display: flex;
		flex-direction: column;
		align-items: center;
    }
    
    .upload-area:hover,
    .upload-area.dragover {
        border-color: var(--primary);
        background: #e7f3ff47;
        transform: scale(1.02);
  		box-shadow: 0px 13px 40px -3px #430c6f;
    }

	.upload-area #linkedinProfile {
		background-color: #deb5ff;
		border: 1px solid var(--primary);
		color: #000;
		font-size: 12px !important;
		box-shadow: none !important;
		transition: all 0.3s ease;
	}

	.upload-area #linkedinProfile::placeholder {
		color: #2b2a2a80 !important;
	}

	/* Disabled upload area */
	.upload-area.disabled {
		background: #b0b0b04f;
		color: #8c8c8c !important;
		pointer-events: none;
		user-select: none;
		opacity: 0.4;
	}

	/* File info */
	.upload-area .file-info {
		background-color: #ffffff29;
		border-radius: 8px;
		border: 1px solid #ccc;
		display: flex;
		gap: 6px;
		padding: 4px;
		align-items: center;
		justify-content: center;
	}

	.upload-area .file-info p {
		font-size: 12px !important;
		color: var(--white);
		margin: 0px !important;
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}

	.quickbuildbox-buttons .disabled-btn {
		background-color: #b0b0b04f;
		color: #8c8c8c !important;
		pointer-events: none;
	}
    
    .upload-icon {
        color: #fff;
        margin-bottom: 1rem;
    }
    
    .upload-text {
        color: #fff;
        margin: 0;
		font-size: 14px;
		font-weight: bold;
    }
    
    .file-selected {
        color: #fff;
		padding: 3rem 1rem;
        border-radius: 10px;
        background: #ffffff29;
        cursor: pointer;
    }
    
    .file-selected i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .file-selected:hover {
        background: #e7f3ff47;
    }
    
    .step-content h4 {
        color: #333;
        margin-bottom: 1rem;
    }
    
    .step-content .text-muted {
        margin: 2px !important;
		font-size: 12px !important;
    }
	.step-content .step-desc {
		color: #fff;
		text-align: left;
	}

	.step-content select {
		padding-left: 10px;
		padding-right: 10px;
	}
    
    .form-control {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .form-control:focus {
        border-color: transparent !important;
        box-shadow: transparent !important
    }
	#search-job .form-control:focus {
		border: none !important;
	}
    
    .form-check-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
        background: transparent;
        border-top: 1px solid #dee2e6;
    }
    
    .modal-footer .btn-primary{
        background-color: var(--primary) !important;
    }

	.step-title {
		opacity: 0.8;
		font-size: 12px;
	}

	.step.completed::after {
		background-color: var(--secondary) !important;
	}

	.file-info-wrapper {
		display: flex;
		align-items: center;
		gap: 12px;
		justify-content: center;
	}

	#fileName {
		margin: 0px;
	}

	.skills-select-container .select2-container, .skills-select-container .selection, .skills-select-container .select2-selection{
		width: 100% !important;
		display: flex !important;
	}
	
	@media (max-width: 768px) {
		.progress-steps {
			margin-bottom: 1.5rem;
		}
		
		.step-title {
			font-size: 0.8rem;
		}
		
		.step-number {
			width: 35px;
			height: 35px;
			font-size: 0.9rem;
		}
		
		.upload-area {
			padding: 1rem 1rem;
		}
		
		.upload-icon i {
			font-size: 1.5rem;
		}


		/* CV Builder */
		#search-job {
			/* padding-top: 20rem; */
			top: 0;
			width: unset !important;
		}

		.progress-steps {
			margin-top: -2rem;
		}

		.step-number {
			width: 25px;
			height: 25px;
		}

		.step:not(:last-child)::after {
			top: 12px;
		}

		.cv-build-image {
			display: none;
		}

		/* Homepage slider adjustments for mobile */
		.homepage-slider-container {
			min-height: 200px;
		}

		.homepage-slider-container .homepage-slider {
			min-height: 200px;
		}

		.step-desc {
			text-align: center !important;
		}

		.cv-builder-second-tab {
			pointer-events: none;
			transition: all 0.2s ease;
		}
		
		.cv-builder-second-tab.mobile-height {
			margin-top: -28vh;
			height: 24rem;
		}

		#quickBuildForm .form-check-label {
			font-size: 12px;
		}

		.cv-preview-container {
			width: 100%;
		}

		.animation-text {
			margin-top: 0;
			transition: all 0.3s ease;
		}

		.search-form-wrap[style*="opacity: 0"] {
			display: none;
		}

		.quickbuild-success-btn {
			width: 100px;
			font-size: 12px !important;
		}


		.two-option-buttons {
			gap: 12px;
		}
		
	}

.custom-home-buttons {
	background: #ffffff29;
	border: none;
	border-radius: var(--radius);
	padding: 20px;
	color: #fff;
}
.custom-home-buttons:hover {
	background: #ffffff47;
	color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}
.bordered-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	/* background-color: hsla(36.9, 100%, 50%, 0.22); */
	color: var(--secondary);
	margin-bottom: 10px;
	font-size: 35px;
}
.bordered-icon.upload-icon {
	color: var(--secondary);
}
.bordered-icon.linkedin-icon {
	color: var(--secondary);
}

.aggelies-profile-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 0fr));
	gap: 1rem;
		row-gap: 1rem;
	row-gap: 1rem;
}

/* Show icon only for specific SweetAlert instances */
.swal2-icon-show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Center align all content in the popup */
.swal2-center-content {
    text-align: center !important;
}

.swal2-center-content .swal2-header {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
}

/* Center align the title */
.swal2-title-center {
    text-align: center !important;
    justify-content: center !important;
	margin-top: 20px !important;
}

/* Optional: Center the confirm button */
.swal2-center-content .swal2-actions {
    justify-content: center !important;
}

@media (max-width: 576px) {
	.aggelies-gia-sena {
		margin-top: 3rem !important;
	}
}

/* CUSTOM OVERIDE COLORS FOR ELEMENTS */
select.form-control:focus, select:focus {
	box-shadow: none !important;
}
input[type="checkbox"], input[type="radio"] {
	accent-color: var(--secondary);
}
.alert-success {
	background-color: var(--secondary) !important;
}
div:where(.swal2-icon).swal2-warning {
	display: none !important;
}
.ck.ck-editor__main > .ck-editor__editable {
	background-color: #ffffff5c !important;
}
.input-group-text {
	background-color: var(--white);
}
#countrySelect {
	box-shadow: none !important;
}
.g-recaptcha {
	transform: scale(0.82);
	transform-origin: 0 0;
}
#quickBuildForm input, #quickBuildForm select, .select2-selection{
	background-color: #deb5ff !important;
	box-shadow: inset 0 -1px 0 transparent !important;
	border-color: transparent !important;
}
#quickBuildForm textarea[disabled] {
	color: #888 !important;
}
#deksiotites .select2-selection {
	background-color: #ffffff5c !important;
	border: 1px solid #ccc !important;
}
.form-control:disabled {
	opacity: 0.8 !important;
}
input[type="text"] {
	box-shadow: inset 0 -1px 0 transparent !important;
}

#interviewNotesForm {
	padding: 0px !important;
	box-shadow: none !important;
}

/* Interview Restriction Styles */
.interview-restriction-message {
	font-size: 14px;
	color: #000;
	background: none;
	padding: 12px 16px;
	text-align: center;
	margin: 10px 0;
}

.interview-restriction-message.pending {
	color: #000;
}

.interview-restriction-message.scheduled {
	color: #000;
}

/* Style restriction message in modal footer */
.modal-footer .interview-restriction-message,
.custom-btn-container .interview-restriction-message {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	color: #000;
	background: none;
}

@media all and (max-width: 991px) {
	.interview-restriction-message {
		font-size: 13px;
		padding: 10px 14px;
		margin: 8px 0;
		color: #000;
		background: none;
	}
	
	.modal-footer .interview-restriction-message,
	.custom-btn-container .interview-restriction-message {
		margin: 0;
		min-height: 45px;
		color: #000;
		background: none;
	}
}

/* ============================================
   SKILLS PANEL STYLES - Quick Build
   ============================================ */

/* Skills Panel Styles */
.skills-panel, .specialties-panel, .experience-panel {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  margin-top: 8px;
}
.skills-panel.disabled, .specialties-panel.disabled, .experience-panel.disabled {
  opacity: 0.6;
  pointer-events: none;
  background: #f9fafb;
}
.skills-header, .specialties-header, .experience-header {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 8px;
}
.skills-header .count, .specialties-header .count, .experience-header .count { 
  color: #6b7280; 
  font-size: 12px; 
}

/* Fixed height and scrollable area */
.skills-viewport, .specialties-viewport, .experience-viewport {
  height: 175px;
  overflow: auto;
  border: 1px dashed #e5e7eb; 
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}
.skills-viewport {
  height: 120px;
}

.skill-box, .specialty-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill, .specialty-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  cursor: pointer;
  user-select: none;
  transition: transform .06s ease, background .15s ease, color .15s ease;
  border: 1px solid transparent;
  font-size: 14px;
  white-space: nowrap;
  width: auto;
}
.skill-pill:hover, .specialty-pill:hover { 
  background: #e5e7eb; 
}
.skill-pill:active, .specialty-pill:active { 
  transform: scale(0.97); 
}
.skill-pill.selected, .specialty-pill.selected { 
  background: var(--secondary); 
  color: #fff; 
}
.skill-pill.kb-focus, .specialty-pill.kb-focus { 
  outline: 2px solid #0ea5e9; 
  outline-offset: 2px; 
}

.empty { 
  color: #6b7280; 
  font-size: 14px; 
  padding: 6px 2px; 
}
.error { 
  color: #b91c1c; 
  font-size: 14px; 
  padding: 6px 2px; 
}

.skills-row, .skills-row-qb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.specialty-experience-row, .specialty-experience-row-qb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.experience-dropdowns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.experience-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.experience-item label {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
  color: #374151;
}

.experience-item select {
  font-size: 13px;
  padding: 6px 8px;
  width: 100%;
}

/* Skeleton shimmer */
.skeleton-wrap { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
}
.sk-pill {
  height: 30px; 
  width: 100px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: #eef0f3;
}
.sk-shimmer {
  position: absolute; 
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,0) 100%);
  animation: shimmer 1.1s infinite;
}
@keyframes shimmer { 
  100% { 
    transform: translateX(100%); 
  } 
}

/* Mobile responsive styles for new panels */
@media (max-width: 768px) {
  .skills-row, .skills-row-qb {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
  .skills-row .job-input-wrapper, .skills-row-qb .qb-input-wrapper {
    margin-bottom: 16px;
  }
  .specialty-experience-row, .specialty-experience-row-qb {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
}

.accordion-button:not(.collapsed) {
	color: #fff;
  	background-color: #8c15ea;
}
.accordion-button:focus {
	z-index: 3;
	border-color: #8c15ea;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgb(140, 21, 234);
}

/* homepage banners */
#jobs-per-city .city-banner {
	border-radius: 0;
	transition: all 0.3s ease;
	display: block;
}

.city-card-link {
	text-decoration: none;
	display: block;
}
@media (max-width: 768px) {
	.city-card-link {
		width: 90% !important;
		margin: 0 auto !important;
	}
}

.city-card {
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.city-card-link:hover .city-card {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Override for city cards: slide up from bottom over the image */
.city-card .category-card-btn {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 1;
	max-height: none;
	padding: 1rem 1.5rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.city-card-link:hover .city-card .category-card-btn {
	transform: translateY(0);
	padding: 0.5rem 1.5rem;
	padding-right: 1.2rem;
}

.city-card-link:hover .city-card .category-card-btn i {
	transform: translateX(5px);
}

/* 
* Job Categories Cards 
*/
.category-card-link {
	text-decoration: none;
	display: block;
	height: 100%;
}

.category-card {
	background: #fff;
	border-radius: 16px;
	padding: 0;
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
	overflow: hidden;
	position: relative;
}

.category-card-link:hover .category-card {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(108, 99, 255, 0.15);
}

.category-card-content {
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	text-align: center;
	padding-bottom: 0px;
}

.category-icon-wrapper {
	/* width: 80px;
	height: 80px; */
	border-radius: 20px;
	/* background-color: var(--primary); */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	transition: all 0.3s ease;
}

.category-icon {
	font-size: 2rem;
	color: var(--primary);
	margin: 0;
}

.category-name {
	font-size: 1rem;
	font-weight: 600;
	color: #2d3748;
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 2.8rem;
}

.category-card-btn {
	background: var(--secondary);
	color: #fff;
	padding: 1rem 1.5rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	padding: 0 1.5rem;
}

.category-card-link:hover .category-card-btn {
	opacity: 1;
	max-height: 100px;
	padding: 1rem 1.5rem;
	padding-right: 1.2rem;
	background: var(--secondary);
}

.category-card-btn i {
	transition: transform 0.3s ease;
}

.category-card-link:hover .category-card-btn i {
	transform: translateX(5px);
}

@media (max-width: 768px) {
	.category-card {
		height: 120px;
	}
	
	.category-card-content {
		padding: 1.5rem 1rem;
		padding-bottom: 0px;
		padding-top: 10px;
	}
	
	.category-icon-wrapper {
		/* width: 60px;
		height: 60px; */
		border-radius: 15px;
		margin-bottom: 1rem;
	}
	
	.category-icon {
		font-size: 1.5rem;
	}
	
	.category-name {
		font-size: 0.9rem;
		min-height: 2.5rem;
	}
	
	.category-card-btn {
		font-size: 0.85rem;
	}
	
	.category-card-link:hover .category-card-btn {
		padding: 0.8rem 1rem;
	}
}

/* 
* Category Slider Styles 
*/
/* Desktop slider - 4 items per view */
.categories-row-desktop {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	gap: 1rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-behavior: smooth;
	padding-bottom: 1rem;
}

.categories-row-desktop::-webkit-scrollbar {
	display: none;
}

.category-slide-item {
	flex: 0 0 calc(25% - 0.75rem);
	min-width: calc(25% - 0.75rem);
	scroll-snap-align: start;
}

/* Mobile slider - 1 item per view */
.categories-row-mob {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	gap: 1rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-behavior: smooth;
	padding-bottom: 1rem;
}

.categories-row-mob::-webkit-scrollbar {
	display: none;
}

.category-slide-item-mobile {
	flex: 0 0 calc(100% - 2rem);
	min-width: calc(100%);
	scroll-snap-align: start;
	margin: 0 1rem;
}
