@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-text: #0A77BB;
}

body {
  padding: 80px 0 0 0;
  margin: 0px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

body.home {
  padding: 0;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h1,
.h1 {
  font-size: 45px;
}

h2,
.h2 {
  font-size: 36px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  clear: both;
  padding: 0 0 12px 0;
  margin: 0;
  color: #313131;
  font-size: 14px;
  line-height: 21px;
}

a {
  color: #000;
}

p a:hover,
a,
a:hover {
  text-decoration: none;
  color: var(--primary-text);
}

p a {
  color: var(--primary-text);
  text-decoration: underline;
}

iframe {
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #7a7a7a;
}

::-moz-placeholder {
  color: #7a7a7a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #7a7a7a;
  opacity: 1;
}

:-moz-placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.btn {
  padding: 13px 25px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  background: var(--primary-text);
  border: 1px solid var(--primary-text);
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  transition: all ease .3s;
  min-width: 110px;
}

.btn:hover {
  //background: #fff;
  //border-color: #fff;
  background: var(--primary-text);
  border-color: var(--primary-text);
}

.btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--primary-text);
}

.btn-white:hover {
  background: var(--primary-text);
  border-color: #fff;
  color: #fff;
}

.btn-small {
  padding: 8px 25px;
  text-transform: capitalize;
  letter-spacing: 0;
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-secondary {
  color: #fff;
  background-color: #a5a9ac;
  border-color: #a5a9ac;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #7d858a;
  border-color: #7d858a;
}
.btn-circle {
  background: var(--primary-text);
  color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  margin: 2px;
  transition: all ease .5s;
}
.btn-circle:hover {
  background: #238ACA;
}

.alert-container i {
  font-size: 70px;
  margin-bottom: 20px;
}

.container {
  max-width: 1250px;
}
input[type="password"]::placeholder {
  color: #b8b8b8; 
}
input[type="password"] {
  padding-bottom: 1px !important; 
}
.icon-btn-primary {
  background: var(--primary-text);
  width: 40px;
  height: 40px;
  display: flex;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #035A91;
}

.bg {
  background: #f2f2f2;
}

.greybg {
  background: #f6f6f6;
}
.social ul {
  display: flex;
  list-style: none;
  gap: 10px;
  justify-content: center;
}
.social ul li {
  padding: 0 !important;
}
.social ul li:before {
  display:none;
}
.social a {
  display: flex;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all ease .5s;
}
.social a:hover {
  opacity:.8
}
.fb-icon a {
  background: #1877F2;
}
.twitter-icon a {
  background: #000;
}
.linkdin-icon a {
  background: #0077b5;
}
.google-icon a {
  background: #db4a39;
}
.pintrest-icon a {
  background: #E60023;
}
.instagram-icon a {
  background: #f09433;
}
.tiktok-icon a{ 
  background:#000;
}
.text-primary{
  color: var(--primary-text) !important;
}
/*------------------------------------*\
         Custom Css Start
\*------------------------------------*/
.header {
  padding: 10px 0;
  position: fixed;
  z-index: 10;
  width: 100%;
  background: #e6f1f8;
  top: 0;
}

.home .header {
  background: none;
}

.home .header.stickey {
  background: #e6f1f8;
}

.header .logo {
  display: inline-block;
}

.navbar-header {
  display: none;
}

.close-toggler {
  display: none;
}

.navbar-nav {
  margin-left: auto;
}

.home .nav-link {
  color: #fff;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  margin: 0 15px;
}

.home .navbar-nav .active a,
.home .navbar-nav a.nav-link:hover,
.stickey .navbar-nav a.nav-link {
  color: var(--bs-nav-link-hover-color);
}

.navbar-nav .active a,
.navbar-nav a.nav-link:hover,
.stickey .navbar-nav .active a,
.stickey .navbar-nav a.nav-link:hover {
  color: var(--primary-text);
}

.header .btn-white:hover,
.home .header.stickey .btn-white:hover {
  border-color: #000;
  background: none;
  color: #000;
}

.home .header .btn-white:hover {
  border-color: #fff;
  background: var(--primary-text);
  color: #fff;
}

.home .seeker-header .nav-link {
  color: #000;
}
.home .seeker-header .nav-link:hover {
  color: var(--primary-text);
}



.profile-login .dropdown-menu {
  left: auto;
  right: 0;
}
.profile-login span img {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  border: 3px solid #fff;
  object-fit: cover;
  cursor: pointer;
}
.profile-login {
  margin-left: 15px;
  position: relative;
}
.profile-login .dropdown-item {
  font-size: 14px;
}
/* searchwrap */
.searchwrap {
  height: 950px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.pattern-left {
  position: absolute;
  left: 0;
  top: 25%;
  z-index: 1;
  width: 140px;
}

.pattern-right {
  position: absolute;
  right: 0;
  top: 25%;
  z-index: 1;
  width: 140px;
}

.pattern-btm {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 140px;
}

.srjobseeker {
  background: rgba(5, 108, 184, .1) url(../images/srjobseekerbg.png) no-repeat bottom right;
  padding: 40px 40px 40px 60px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  align-items: center;
  display: flex;
  overflow: hidden;
  position: relative;
  /* background-size: contain; */
}
.seeker-banner .srcompanies {
  display: none;
}
.seeker-banner .bxsrctxt {
  max-width: 625px;
}
.seeker-banner .pattern-btm, .seeker-banner .pattern-right{
  display: none;
}
.srcompanies::before,
.srjobseeker::before {
  background-color: #fff;
  opacity: 0.1;
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: -400px;
  bottom: 30px;
  content: "";
  border-radius: 50%;
  animation: pulse-animation 6s infinite;
}

.srcompanies::after,
.srjobseeker::after {
  background-color: #fff;
  opacity: 0.05;
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: -350px;
  bottom: 150px;
  content: "";
  border-radius: 50%;
  animation: pulse-animation 4s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 100px rgba(255, 255, 255, 0);
  }
}

.bxsrctxt {
  max-width: 425px;
  position: relative;
  z-index: 1;
}

.bxsrctxt h2 {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
}

.bxsrctxt h3 {
  font-size: 46px;
  color: #fff;
  font-weight: 500;
}

.bxsrctxt p {
  font-size: 18px;
  color: #fff;
}

.srjobseeker .bxsrctxt h2,
.srjobseeker .bxsrctxt h3,
.srjobseeker .bxsrctxt p {
  color: #000;
}

.srjobseeker .btn img,
.btn-img img {
  filter: brightness(0) invert(1);
}

.srjobseeker .btn:hover img,
.btn-img:hover img {
  filter: inherit;
}

.srcompanies {
  background: var(--primary-text) url(../images/srcompanybg.png) no-repeat bottom right;
  padding: 40px 40px 40px 60px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  align-items: center;
  display: flex;
  overflow: hidden;
  position: relative;
}

.srcompanies .btn:hover img {
  filter: brightness(0) invert(1);
}

/* Featured Companies Start */
.section {
  padding: 100px 0;
  overflow: hidden;
}

.titleTop {
  margin-bottom: 10px;
}

.titleTop h3 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
}

.employerList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  list-style: none;
  flex-wrap: wrap;
  padding: 20px 0;
}

.employerList li {
  width: calc(20% - 15px);
}

.employerList li .empint {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: 1px solid #eee;
  padding: 22px 18px;
}

.employerList li .empint:hover {
  border-color: var(--primary-text);
  transform: translateY(-3px);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.employerList li .empint a {
  color: #000;
}

.emptbox {
  display: flex;
  width: 100%;
}

.emptbox .comimg {
  width: 65px;
  padding-right: 15px;
}

.employerList li img {
  width: 100%;
  border-radius: 8px;
}

.emptbox h4 {
  font-size: 16px;
  margin-bottom: 5px;
  min-height: 32px;
  font-weight: 600;
}

.text-info-right .emloc {
  color: var(--primary-text);
}

.cm-info-bottom {
  color: #8c96a3;
}

.viewallbtn {
  text-align: center;
  margin-top: 40px;
}

/* Featured Companies End */


/* Browse Jobs By Categories Start */
.categorylisting {
  padding: 0;
}

.categorylisting li {
  list-style: none;
}

.categorylisting li .catecard {
  display: flex;
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 0px 25px rgba(29, 76, 112, 0.1);
  z-index: 1;
  overflow: hidden;
  transition: 0.5s all ease;
  margin-top: 24px;
  gap: 20px;
}

.categorylisting li .catecard:hover {
  background: rgb(255, 211, 2);
  background: -moz-linear-gradient(211deg, rgba(255, 211, 2, 1) 0%, rgba(6, 76, 127, 1) 100%);
  background: -webkit-linear-gradient(211deg, rgba(255, 211, 2, 1) 0%, rgba(6, 76, 127, 1) 100%);
  background: linear-gradient(211deg, rgba(255, 211, 2, 1) 0%, rgba(6, 76, 127, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd302", endColorstr="#064c7f", GradientType=1);
}

.categorylisting li .catecard::before {
  width: 110px;
  height: 110px;
  position: absolute;
  left: -60px;
  top: -60px;
  content: "";
  background-color: #1967d2;
  border-radius: 50%;
  opacity: 0.05;
  z-index: -1;
  transition: 0.5s all ease;
}

.categorylisting li .catecard::after {
  width: 110px;
  height: 110px;
  position: absolute;
  right: -60px;
  bottom: -60px;
  content: "";
  background-color: #056cb8;
  border-radius: 50%;
  opacity: 0.04;
  z-index: -1;
  transition: 0.5s all ease;
}

.categorylisting li .catecard:hover::after {
  background-color: #fff;
  opacity: 0.2;
  width: 600%;
  height: 600%;
}

.categorylisting li .catecard .iconcircle {
  display: inline-block;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
}

.categorylisting li .catecard:hover .iconcircle {
  background: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categorylisting li .catecard .iconcircle img {
  max-width: 80px;
  transition: 0.3s all ease;
}

.categorylisting li .catecard:hover .iconcircle img {
  max-width: 60px;
}

.categorylisting li .catecard h3 {
  font-size: 16px;
  color: #000;
  min-height: 40px;
  margin-bottom: 8px;
  font-weight: 600;
}

.categorylisting li .catecard:hover h3 {
  color: #fff;
}

.categorylisting li .catecard .badge {
  font-size: 14px;
  color: var(--primary-text);
  font-weight: 400;
}

.categorylisting li .catecard:hover .badge {
  color: #e9eff3;
}

/* Browse Jobs By Categories Start */

/* Testimonial Start */
.testimonialwrap {
  background: #056cb8 url(../images/testimonials-bg.jpg) repeat center;
  background-attachment: fixed;
  text-align: center;
}

.testimonialwrap .subtitle {
  color: #ffd302;
}

.testimonialwrap .titleTop h3 {
  color: #fff;
}

.testimonialsList {
  list-style: none;
  margin-top: 40px;
}

.testimonialsList .item {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  text-align: left;
}

.testimonialsList .item .clientname {
  font-size: 24px;
  font-weight: 700;
  padding: 0px 0 5px 0;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.testimonialsList .item .clientinfo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 15px;
}

.testimonialsList .item .ratinguser {
  color: #f9b420;
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonialsList .item p {
  font-style: italic;
  line-height: 24px;
  font-size: 16px;
  color: #333;
}

.testimonialsList .owl-nav {
  display: none;
}

.testimonialsList .owl-dots {
  margin-top: 20px;
}

.testimonialsList .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 10px;
  margin: 0 3px;
}

.testimonialsList .owl-dots .owl-dot.active {
  background: #fff;
}

/* Testimonial End */

/* citieswrap Start */
.citieswrap {
  background: #f2f6fd;
}

ul.citiessrchlist {
  padding: 0;
}

.citiessrchlist li {
  margin-top: 24px;
  transition: all 0.4s ease 0s;
  list-style: none;
}

.citiessrchlist li:hover {
  transform: translateY(-3px);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.citiessrchlist li .cityimg img {
  border-radius: 10px 10px 0 0;
}

.citiessrchlist .cityinfobox {
  background: #fff;
  box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
  padding: 25px;
  border-radius: 0 0 10px 10px;
}

.cityinfobox h4 {
  margin-bottom: 10px;
}

/* citieswrap End */

/* Footer Css Start */
footer {
  background: url(../images/footer-bg.jpg) no-repeat center center;
  padding: 40px 0 0px 0;
  position: relative;
}

footer:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  opacity: .9;
}

.footer-link li{
	color:white;
}

.footerwrap {
  position: relative;
  z-index: 1;
}

.ftrlogo {
  margin-bottom: 15px;
}

.footerwrap p {
  font-size: 14px;
  color: #fff;
}

.footerwrap .col-sm-3 p {
  max-width: 280px;
}

.newsletter-wrapper {
  max-width: 500px;
  margin: 30px auto 0 auto;
}

.newsletter {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 5px;
  padding: 2px;
  position: relative;
}
label#contact_email-error {
  position: absolute;
  top: 100%;
}
.newsletter input[type="email"] {
  height: 45px;
  width: 100%;
  border: navajowhite;
  padding: 0 15px;
  color: #828282;
  font-size: 15px;
  font-weight: 500;
}

.newsletter input[type="submit"] {
  background: #0A77BB;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0 15px;
  font-weight: 500;
}

.footerwrap ul li {
  list-style: none;
  line-height: 30px;
}

.footerwrap ul li a {
  background: url(../images/ep_arrow-right.svg) no-repeat 0 3px;
  color: #fff;
  font-size: 15px;
  padding-left: 22px;
  background-size: 17px;
}

.footerwrap ul li a:hover {
  text-decoration: underline;
}

.copy-right {
  border-top: 1px solid #3d3e3e;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 14px 0;
}

.copy-right p {
  color: #f7f7f7;
}

.copy-right p {
  color: #f7f7f7;
  padding: 0;
}

.copy-right .col-sm-6:last-child {
  text-align: right;
}

/* Account Pages */
.account-panel {
  background: url(../images/account-bg.jpg) no-repeat center center;
  padding: 100px 0;
  position: relative;
  background-size: cover;
}

.account-panel::after {
  background: var(--primary-text);
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  opacity: .9;
}

/* Login */

.account-panel .tab-content {
  padding: 30px;
}

.account-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.15);
}

.account-panel .nav-tabs {
  border: none;
  border-radius: 10px 10px 0 0;
  padding: 1px;
}

.account-panel .nav-tabs .nav-item {
  width: 50%;
}

.login-panel {
  max-width: 500px;
  margin: auto;
}

.account-panel .nav-tabs .nav-link {
  margin: 0;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  background: rgba(217, 217, 217, .5);
  border-radius: 0;
  color: #000;
}

.account-panel .nav-tabs .nav-link.active {
  background: var(--primary-text);
  color: #fff;
  border-radius: 10px 0 0 0;
  position: relative;
}

.account-panel .nav-tabs .nav-item:last-child .nav-link.active {
  border-radius: 0 10px 0 0;
}

.account-panel .nav-tabs .nav-link.active::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: var(--primary-text) transparent transparent transparent;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.account-title {
  padding: 20px 0;
}

.account-title h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.account-title p {
  color: #828282;
}

.form-group label {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
.tab-pane .form-check {
  display: flex;
  position: relative;
}
.form-check label.error {
  position: absolute;
  top: 80%;
}
.form-control {
  border-radius: 4px;
  height: 48px;
  font-size: 14px;
  color: var(--bs-black);
  border-color: rgba(0, 0, 0, 0.3);
}

.form-control[type="file"] {
  overflow: hidden;
  line-height: 34px;
}

select.form-control {
  background-image: url(../images/icon/ep_arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  padding-right: 35px;
  background-size: 18px;
}
select.form-control.country-code-common{
  padding-left: 8px;
  padding-right: 25px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: -2px;
  position: relative;
  width: 25%;
}
.date-field {
  background-image: url(../images/icon/bx_calendar.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  padding-right: 35px;
  background-size: 18px;
}

textarea.form-control {
  height: 190px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border-color: rgba(0, 0, 0, 0.3);
}

.form-check-input:checked {
  background-color: var(--primary-text);
  border-color: var(--primary-text);
  box-shadow: inherit;
}

.form-group-submit {
  max-width: 440px;
  text-align: center;
  margin: auto;
}

.form-group-submit .btn {
  width: 100%;
  margin-bottom: 10px;
}

.have-account a {
  font-weight: 500;
  text-decoration: none;
}

.login-social {
  border-top: 1px solid #D9D9D9;
  text-align: center;
  position: relative;
  padding: 30px 0 0px 0;
  margin-top: 20px;
}

.login-social span {
  background: #fff;
  top: -10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  color: #828282;
  font-size: 12px;
}

.login-social ul {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 20px;
}

.register-panel {
  max-width: 970px;
  margin: auto;
}

.back a {
  align-items: center;
  display: flex;
}


/* Seeker Profile page css start */

.main-wrapper {
  padding: 50px 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.switch {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.switch.btn {
  max-width: 80px;
  height: 40px !important;
  padding: 2px 0;
}

.switch input[type="checkbox"] {
  display: none;
}

.switch-group {
  position: absolute;
  width: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left .35s;
  -webkit-transition: left .35s;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.switch-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 50px;
  text-align: left;
  padding: 8px 0 0 25px;
}

.switch-on.btn {
  padding-right: 1.5rem;
}

.switch-off {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border-radius: 50px;
  box-shadow: none;
  text-align: right;
  padding: 8px 25px 0 0px;
}

.switch-off.btn {
  padding-left: 1.5rem;
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.switch-handle {
  position: relative;
  margin: 0 auto;
  height: 100%;
  width: 38px;
  border-width: 0 1px;
  background-color: #fff;
  border-radius: 50px;
  min-width: inherit;
  padding: 0;
  right: 19px;
}

.switch.off .switch-handle {
  right: auto;
  left: 19px;
}

.switch.btn.btn-light,
.switch.btn.btn-outline-light {
  border-color: rgba(0, 0, 0, .15);
}

.switch.off .switch-group {
  left: -100%;
}
.no_record {
  height: 100%;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}
.asside-panel {
  background: #F2F6FD;
  padding: 15px 0;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .05);
}
.form-group label.error {
  font-size: 13px;
}
.filter-open {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--primary-text);
  height: 40px;
  align-items: center;
  padding: 0 0 0 15px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
  display: none;
}
.filter-open i {
  background: var(--primary-text);
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.immediate-available-switch {
  text-align: center;
  padding: 15px 0;
  border-bottom: 2px solid rgba(0, 0, 0, .05);
}
.country_code_div  {
  position: relative;
}
.country_code_div label.error {
  position: absolute;
  top: 100%;
}
.asside-panel ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}
.asside-panel ul li {
  padding-top: 2px;
  padding-bottom: 2px;
}
.asside-panel ul li a {
  color: #000;
  font-weight: 500;
  width: 100%;
  display: flex;
  padding: 10px 15px;
  transition: all ease 0.3s 0s;
  border-radius: 8px;
  align-items: center;
}

.asside-panel ul li a span {
  margin-left: 8px;
}
.alertCount {
  background:#f00;
  color: #fff;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
}
.asside-panel ul li a:hover,
.asside-panel ul li.current>a {
  background: #E2EAFA;
}

.field-group {
  border-bottom: 2px solid #D9D9D9;
}

.project-list-bloc {
  background: #f7f7f7;
  padding: 12px 8px;
  border: 1px solid #f1f1f1;
  text-align: center;
  border-radius: 4px;
}

.project-list-bloc img {
  border: 1px solid #ccc;
  width: 100px;
  margin: 0 auto;
  display: inline-block;
  border-radius: 100px;
  height: 100px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}

.project-list-bloc date {
  font-style: italic;
  font-size: 12px;
  margin-bottom: 8px;
  display: block;
  color: #666;
}

.project-list-bloc p {
  font-size: 13px;
}

.action-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.action-form img {
  width: 30px;
  height: 30px;
  border: none;
}

.form-group small {
  color: #828282;
}

/* Seeker Profile page css end */

/* Job Listing page css start */

.innerbanner {
  background: linear-gradient(to bottom, #0a77bb 0%, #123b66 100%);
  margin-bottom: 70px;
  position: relative;
}

.innerbannerBg {
  width: 100%;
  max-height:400px;
  background: url(../images/banner-graphic.png) no-repeat calc(100% - 200px) bottom;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.filter-search-field {
  max-width: 800px;
  margin: auto auto -30px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  align-items: center;
}
.wishlist {
  background: var(--primary-text) !important;
  color: #fff !important;
  text-decoration: none;
}

.filter-search-field.newsletter input[type="text"] {
  height: 60px;
  width: 100%;
  border: navajowhite;
  padding: 0 15px;
  color: #828282;
  font-size: 15px;
  font-weight: 500;
}

ul#suggestion {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  list-style: none;
  text-align: left;
  box-shadow: 0px 9px 15px rgba(0, 0, 0, 0.25);
  padding: 15px;
  margin: 0;
  max-height: 150px;
  overflow: auto;
  z-index: 1;
  display: none;
  background: #fff;
}

ul#suggestion p {
  font-size: 12px;
  color: #000;
  padding-bottom: 8px;
}

.filter-search-field.newsletter input[type="submit"] {
  width: 150px;
  height: 60px;
}

.innerbanner::after {
  width: 500px;
  height: 500px;
  background: #fff;
  left: -200px;
  bottom: -200px;
  opacity: 0.1;
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: scale-up-center 2s ease-in-out infinite alternate-reverse both;
}

@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

.widget-asside {
  margin: 0 20px 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

.asside-panel ul.optionlist {
  list-style: none;
  padding: 20px 0 5px 0;
  max-height: 200px;
  overflow: auto;
}

.optionlist li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
  font-size: 13px;
  justify-content: space-between;
}

.optionlist li input[type="checkbox"]+label {
  width: 20px;
  height: 20px;
  border: 1px solid #d1d1d1;
  background: #fff;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}

.optionlist li input[type="checkbox"]:checked+label::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  color: var(--primary-text);
  padding-left: 4px;
  position: relative;
  top: 0px;
}

.optionlist li input[type="checkbox"] {
  display: none;
}
ul.radioList li {
  padding-left: 0;
  justify-content: flex-start;
}
ul.radioList li input[type="radio"] {
  margin: 0 10px 0 0;
}
.view_more:hover {
  text-decoration: underline;
}

.searchList {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.searchList>li {
  background: rgba(228, 237, 251, .3);
  border-radius: 10px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: 1px solid rgba(142, 212, 255, .3);
  padding: 22px 18px;
  margin-bottom: 15px;
}

.searchList>li:hover {
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.1);
  border-bottom-color: #056cb8;
}

.searchList>li .jobimg {
  float: left;
  width: 70px;
  margin-right: 15px;
  height: 70px;
  position: relative;
}

.searchList>li .jobimg img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.searchList>li h3 a {
  font-size: 18px;
  color: #000;
}
.searchList li .companyName {
  margin: 5px 0;
  color: #333333;
}
.searchList li .companyName a {
  color: #333333;
}
.searchList li .location {
  color: #000;
}
.fulltime {
  background: #6ACA00;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
  border-radius: 3px;
}
.partTime {
  background: #f8a60c;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
  border-radius: 3px;
}
a.partTime:hover{
  color: #fff;
}
.freelance {
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
}
.review-container {
  display: flex;
  gap: 15px;
}
.rat-count {
  font-size: 30px;
  font-weight: 700;
}
.rating-star span {
  font-size: 12px;
  color: #666;
}
.internship {
  background: #9B54F4;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
}

.searchList li .location span {
  color: #333;
}

.searchList li .listbtn {
  margin-top: 20px;
  display: flex;
  gap: 5px;
  justify-content: right;
}

.searchList li .listbtn a {
  background: #fff;
  display: block;
  color: var(--primary-text);
  border: 1px solid var(--primary-text);
  min-width: inherit;
  padding: 9px 16px;
}

.listApliers li .listbtn {
	display: block;
}

.searchList li .listbtn a:hover {
  background: var(--primary-text);
  ;
  color: #fff;
  text-decoration: none;
}
.jobinfo {
  margin-top: -8px;
}
.jobinfo h3 {
  clear: none;
}

.searchList li p {
  margin: 10px 0 0 0;
  padding: 0;
}

.listbtn .fa-heart {
  font-size: 20px;
}

/* Job Listing page css end */

/* Jo Detail page css start */
.jobPagetitle .jobinfo {
  padding: 0 0 30px 0;
}

.jobPagetitle .jobinfo h2 {
  font-size: 24px;
}

.jobPagetitle .jobinfo .ptext {
  color: #999;
  margin: 12px 0;
}

.job-header {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05);
  border: 1px solid #C9C7C7;
}

.jobmainreq {
  border-radius: 0 0 5px 5px;
}

.jobdetail {
  padding: 25px 25px 10px 25px;
}

.job-header h3 {
  font-size: 21px;
  color: var(--primary-text);
  font-weight: 700;
}

.job-header .contentbox h3 i,
.jobdetail h3 i,
.companyinfo h3 i {
  color: #828282;
  margin-right: 5px;
  font-size: 20px;
}

.jbdetail {
  margin-top: 20px;
  padding: 0;
  margin-bottom: 20px;
}

.jbdetail li {
  margin-bottom: 16px;
  color: #908f8f;
}

.jbdetail li span {
  display: block;
  color: #000;
}

.jbdetail li a {
  display: block;
  /* font-weight: 600; */
  word-wrap: break-word;
}

.jbdetail li span.freelance {
  color: #F07200;
  background: none;
  padding: 0;
}

.jobButtons {
  padding: 0px 25px 30px 25px;
}

.jobButtons a {
  margin-right: 10px;
  color: var(--primary-text);
  font-weight: 600;
  padding: 10px 30px;
  font-size: 14px;
  border: 1px solid var(--primary-text);
  background: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.jobButtons a:hover {
  background: var(--primary-text);
  color: #fff;
  border: 1px solid var(--primary-text);
}

.jobButtons a.report {
  color: #e01010;
  border-color: #e01010;
}

.jobButtons a.report:hover {
  color: #fff;
  background: #e01010;
}

.job-header .contentbox {
  padding: 25px;
}

.job-header .contentbox h3 {
  margin-bottom: 15px;
}

.benefits .contentbox ul,
ul.skillslist {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.job-header .contentbox ul li {
  padding: 5px 0 5px 65px;
  position: relative;
  line-height: 24px;
}

.job-header .contentbox ul li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  color: #056cb8;
  position: absolute;
  left:40px;
}

.companyinfo {
  margin-bottom: 30px;
  background: #f9f9ff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(10, 119, 187, .15);
}

.companyinfo h3 {
  margin-bottom: 30px;
  color: #056cb8;
  font-size: 18px;
}

.companyinfo .companylogo {
  width: 100px;
  background: #fff;
  display: inline-block;
  margin-bottom: 10px;
  float: left;
  margin-right: 15px;
}

.companyinfo .companylogo img {
  display: block;
  border-radius: 15px;
  width: 100%;
  height: 100px;
  object-fit: cover;;
}

.companyinfo .title a {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}

.companyinfo .ptext {
  color: #056cb8;
  padding: 7px 0 0px 0;
}

.companyinfo .opening a {
  color: #056cb8;
}

.companyoverview {
  text-align: left;
}

.companyoverview p {
  padding-bottom: 0;
}

.relatedJobs h3 {
  font-size: 21px;
}

.relatedJobs .searchList>li h3 a {
  font-size: 16px;
}

/* Job Detail Page css End */

/* Employer Dashboard */
.profilestat li .inbox {
  text-align: center;
  background: #E6F1F8;
  padding: 35px 8px;
  margin-bottom: 30px;
  border-radius: 20px;
  transition: all 0.4s ease 0s;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
.profilestat li .inbox::after {
  content: "";
  width: calc(100% - 40px);
  position: absolute;
  bottom: -10px;
  background: #EFF8FD;
  border-radius: 20px;
  height: 60px;
  z-index: -1;
}
.profilestat li .inbox:hover {
  transform: translateY(-3px);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.profilestat li .inbox:hover:after {
  display: none;
}
.profilestat {
  list-style: none;
  padding: 0;
}

.profilestat li i {
  font-size: 36px;
  color: #fff;
  display: block;
}

.profilestat li h6 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-text);
}

.profilestat li strong {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 400;
}

.profilestat-icon {
  background: var(--primary-text);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profilestat-icon img {
  max-width: 25px;
}
.instoretxt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  background: #fcfdff;
  border: 1px solid #eee;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
}

.instoretxt .credit {
  font-size: 18px;
  margin-bottom: 10px;
}

.instoretxt strong {
  font-weight: 700;
  color: var(--primary-text);
}

.four-plan h3 {
  padding: 0px;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.four-plan .boxes {
  list-style: none;
  border-radius: 20px;
  background: #E6F1F8;
  padding: 30px 20px 10px 20px;
  text-align: center;
  margin-top: 30px;
  border-top: 7px solid var(--primary-text);
  position: relative;

}

.four-plan .boxes:after {
  content: "";
  width: calc(100% - 40px);
  position: absolute;
  bottom: -10px;
  background: #EFF8FD;
  border-radius: 20px;
  height: 60px;
  z-index: -1;
  left: 20px;
}

.four-plan .col-md-4:nth-child(2) .boxes {
  border-top-color: #6ACA00;
}

.four-plan .boxes li {
  display: block;
}

.four-plan .plan-name {
  font-size: 24px;
  font-weight: 500;
  padding: 10px 0;
}
.packageSlider .owl-dots, .instoretxtSlider .owl-dot {
  text-align: center;
  margin:15px 0;
}
.packageSlider .owl-dot, .instoretxtSlider .owl-dot  {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc !important;
  border-radius: 3px;
  margin: 0 5px;
}
.packageSlider .owl-dot.active, .instoretxtSlider .owl-dot.active {
  border: 1px solid var(--primary-text) !important;
  background: var(--primary-text);
}

.main-plan {
  text-align: center;
}

.main-plan .plan-price1-1 {
  font-size: 18px;
  color: #A19F9F;
  display: inline-block;
  padding-top: 22px;
  font-weight: 300;
}

.main-plan .plan-price1-2 {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  color: var(--primary-text);
}

.four-plan .col-md-4:nth-child(2) .plan-price1-2 {
  color: #6ACA00;
}

.plan-pages {
  font-size: 16px;
  line-height: 36px;
  font-weight: 500;
  color: #000;
}
.order {
  font-size: 16px;
  padding: 10px 0px;
  font-weight: bold;
  margin-top: 20px;
}
.profileIcon img {
  max-height: 100px;
  object-fit: cover;
}
.related-job-row {
  /* padding: 20px; */
  /* border-radius: 5px;
  margin-bottom: 30px; */
  border-bottom: 1px solid rgba(0,0,0,.1);
  /* box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05); */
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.related-job-thumb-col {
  width: 100px;
  position: relative;
  margin-right: 20px;
}
.related-job-thumb-col img {
  border-radius: 5px;
  height: 100px;
  object-fit: cover;
}
.job-period {
  background: #e2ad0d;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.related-jo-detail-col {
  flex: 1;
  width: 100%;
}
.place {
  text-transform: uppercase;
  font-weight: 500;
  margin: 5px 0;
}
.related-job-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}
.related-job-action a {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px 15px;
  color: #333;
  transition: all ease 0.5s;
}
.related-job-action a:hover {
  background:#f1f1f1;
}
.related-job-action span {
  color: #b0b0b0;
}
/* Candidate Dashboard start*/

.profileban {
  position: relative;
}
.abtuser {
  background: #E6F1F8;
  padding: 30px;
  border-radius:15px;
  margin-bottom: 30px;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05);
}
.uavatar img {
  display: block;
  object-fit: cover;
  height: 110px;
}
.abtuser h4 {
  color: var(--primary-text);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight:600;
}
.abtuser h6 {
  color: #000;
  font-size: 15px;
  font-weight:400;
}
.userdata li a {
  color: #000;
  font-weight: 400;
  font-size: 15px;
}
.editbtbn {
  text-align: right;
}
.userdata {
  padding: 0;
  margin-top: 5px;
  list-style: none;
}
.userdata li {
  color: #000;
  font-size: 15px;
}
.userdata li i, .userdata li span{
  color: #E01010;
}
.userdata li i{
  color: #000;
  margin-right: 10px;
  font-size: 18px;
}
#seekerAddress {
  padding-left: 32px;
  position: relative;
}
#seekerAddress img {
  position: absolute;
  left: 0;
}
.li-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.contentbox .table * {
  border: none;
  padding: 7px 0;
  font-size: 14px;
}
.colon {
  width: 100px;
  text-align: center;
}
.contentbox .table tr td:first-child {
  width: 120px;
}
.alert-container {
  max-width: 75%;
  margin: auto;
}
.alert-container .fa-circle-xmark,
.alert-container .fa-triangle-exclamation {
  color: #dc3545;
}
.alert-container .fa-circle-check{
  color: #28a745;
}
.loader { animation: spin 2.5s ease infinite;}
.btn .loader {
  filter: brightness(0) invert(1);
}
.btn:hover .loader {
  filter:inherit;
}
@keyframes spin {
	from {
		transform: rotate(135deg);
	}
	to {
		transform: rotate(495deg);
	}
}


/* Seecker public profile */
.listpgWraper {
  padding: 40px 0;
  min-height: 400px;
}

.usercoverimg {
  position: relative;
  min-height: 240px;
  background: #333;
}
.usercoverimg > img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}
.userMaininfo {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  z-index: 1;
}
.course-banner{
  position: relative;
}
.course-banner > img {
  min-height: 300px;
  object-fit: cover;
  width: 100%;
  max-height: 600px;
}
.jobinfo-cap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  z-index: 1;
}
.jobinfo-cap h2 {
  font-size: 60px;
  font-weight:800;
  margin-bottom: 20px;
  text-align: center;
}
.jobinfo-cap .ptext {
  font-size: 18px;
  font-weight: 300;
}
.usercoverimg:after, .course-banner:after {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.9026961126247374) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.9026961126247374) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9026961126247374) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}
.usercoverimg.profilewithsidebar {  margin: 0 12px; }
.userMaininfo .userPic {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 5px solid #fff;
  position: relative;
  z-index: 15;
  margin-left: 40px;
  float: left;
  margin-right: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  background: #eee;
  border-radius: 100px;
}
.userMaininfo .userPic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profilewithsidebar .membersinc {
  float: none;
  margin-top:0px;
}
.userMaininfo h3 {
  color: #fff;
  padding-top:40px;
  margin-bottom: 5px;
  text-shadow: 4px 4px 4px rgba(0,0,0,0.3);
  clear: none;
}
.userMaininfo h3 span {
  font-size: 14px;
  color:var(--primary-text);
}
.userMaininfo .desi {
  font-size: 14px;
  color: #fff;
  display: none;
}
.membersinc {
  float: right;
  color: #fff;
  font-size: 14px;
  margin: -15px 20px 10px 0;
}
.ptsklbx {
  padding:25px;
  border-top: 1px solid #C9C7C7;
}
.profileskills {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.profileskills li {
  margin-bottom: 10px;
}
.profileskills li .skillbox {
  border: 1px solid #C9C7C7;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  height: 100%;
}
.profileskills li .skillbox span {
  display: block;
  font-weight: 400;
  color: #6ACA00;
}
.job-header .contentbox iframe {
  width: 100%;
  height: 350px;
  border-radius: 4px;
}
.experienceList {
  list-style: none;
  padding: 0;
}
.job-header ul.experienceList li {
  padding-left: 0;
}
.experienceList li::before, .job-header .educationList li:before, .userPortfolio li:before{
  display: none;
}
.experienceList li h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-text);
}
.educationList li .date {
  font-weight: 500;
  line-height: 18px;
  color: #6ACA00;
}
.educationList li h5 {
  margin-bottom: 5px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}
.jobdetail .table-bordered td {
  border: none;
  border-top: 1px solid #ddd;
}
.educationList {
  padding: 0;
  list-style: none;
  margin: 0;
}
.job-header ul.educationList li {
  padding: 0;
}
.educationList h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-text);
  margin-bottom: 10px;
}
.jobdetail #language_div .table-bordered tr:first-child, .jobdetail #language_div .table-bordered tr:first-child td {
  border: none;
}
.jobdetail #language_div .table-bordered tr td{
  color: var(--primary-text);
  padding: 8px 0;
}
.userPortfolio {
  padding: 0;
  list-style: none;
}
.imgbox {
  border: 1px solid #e1e0e0;
  margin: 10px 0;
}
.active > .page-link, .page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--primary-text);
  border-color: var(--primary-text);
}

/* Job Appliers */
.listApliers {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05);
}
.listApliers.searchList li {
  border-radius: 0;
  padding: 15px 0;
  border: none;
  background: none;
  margin: 0;
}
.listApliers.searchList li:hover {
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
}
/* .listApliers li .jobimg {
  width: 100px;
  min-height: 100px;
  margin-right: 30px;
} */
.listApliers .jobinfo {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 20px;
}
.listApliers .jobinfo .job-inner {
  max-width: 77%;
  width: 100%;
}
.listApliers .jobinfo h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.listApliers .jobinfo h3 span {
  font-size: 14px;
  font-weight: 500;
  color: #999;
}
.listApliers .jobinfo ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.listApliers .jobinfo ul li {
  width: 50%;
  padding: 3px 0 3px 30px;
  background: url(../images/icon/lets-icons_check-fill.svg) no-repeat 0 2px !important;
}
.listApliers .jobinfo ul li span {
  color: var(--primary-text);
  font-weight: 600;
}
#language_div .text-success {
  color: var(--primary-text) !important;
}
.searchList.listApliers > li .jobimg img {
  border-radius: 100%;
  /* max-height: 100px;
  width: 100px;
  height: 100px; */
}

/* profile-views css */
.viewsProfile {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
.viewsProfile h2 {
  font-weight: 800;
  color: var(--primary-text);
  margin-bottom: 5px;
}
.viewsProfile h5 {
  color: #5A5A5A;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}
.viewsBrowse {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding-top: 30px;
}
.viewsBrowse h3 {
  padding: 0 30px;
}
.viewsBrowse h5 {
  padding: 0 30px;
  color: #5A5A5A;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}
.viewsBrowse ul {
  list-style: none;
  padding: 0;
}
.viewsBrowse ul li {
  display: flex;
  padding: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.viewsBrowse ul li:last-child{
  border: none;
}
.viewersThumb {
  width: 80px;
  height: 80px;
}
.viewersThumb img {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  object-fit: cover;
}
.viewersText {
  width: 100%;
  flex: 1;
  padding-left: 20px;
}
.viewersText h4, .viewersText h4 a {
  color: #000;
  text-transform: capitalize;
}
.viewersText h6 {
  margin-top: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.viewersText p {
  padding: 5px 0 0 0;
  color: #313131;
  font-size: 14px;
}


/*  */
.training-box {
  position: relative;
  margin-bottom: 30px;
  transition: all ease 0.5s;
}
.training-box-inner {
  position: relative;
  border-radius: 10px;
  border-top: 3px solid var(--primary-text);
}

.training-box:hover{
  transform: translateY(-3px);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
  box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.course-thumb img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height:200px;
  object-fit: cover;
}
.course-detail {
  /* position: absolute;
  bottom: 15px;
  left: 10px;
  right: 10px;
  margin: auto; */
  max-width: 100%;
  background: rgba(10, 119, 187,.85);
  border-radius: 0 0 8px 8px;
  padding-top: 8px;
}
.course-detail h3 {
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 2px 10px;
}
.training-skill {
  min-height: 50px;
}
.course-detail h3 a {
  color: #E0FAC4;
}
.course-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.trainingDateDiv {
  display: block;
  font-weight: 300;
  font-size: 13px;
}
.course-detail .btn {
  width: 100%;
  background: #E4EDFB;
  color: var(--primary-text);
  border-radius: 0 0 8px 8px;
  padding: 11px 25px;
  border: none;
}
.course-detail .btn i.fa-chevron-right {
  margin-left: -10px;
  transition: all ease 0.3s;
  opacity: 0;
}
.course-detail .btn:hover i.fa-chevron-right {
  margin-left: 0px;
  transition: all ease 0.3s;
  opacity: 1;
}


/*Range Slider */
.range_container {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.sliders_control {
  position: relative;
  min-height: 20px;
}

.form_control {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #000;
  font-size: 15px;
}

.range_container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #0A77BB;
  border-radius: 50%;
  border:2px solid #fff;
  cursor: pointer;
}

.range_container input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 26px;
  height: 26px;
  background-color: #0A77BB;
  border-radius: 50%;
  border:2px solid #fff;
  cursor: pointer;  
}

/* .range_container input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

.range_container input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
} */

.range_container input[type="number"] {
  color: #000;
  width: 50px;
  height: 30px;
  font-size: 15px;
  border: none;
  text-align: center;
  background: none;
  -moz-appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
.range_container input::-webkit-outer-spin-button,
.range_container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.range_container input[type=number]::-webkit-inner-spin-button, 
.range_container input[type=number]::-webkit-outer-spin-button {  
   opacity: 1;
}

.range_container input[type="range"] {
  -webkit-appearance: none; 
  appearance: none;
  height:5px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
  border-radius: 8px;
}
#fromInput {
  text-align: left;
}
#toInput {
  text-align: right;
}
#fromSlider {
  height: 0;
  z-index: 1;
}


/* accredition Employe */
.accredition-box {
  padding: 25px;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0px 20px 25px rgb(0, 0, 0, 0.05);
  border: 1px solid #C9C7C7;
}
.accredition-off-msg {
  background: #CEECFF;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  margin: -25px -25px 0 -25px;
  font-size: 16px;
  font-weight: 500;
}
.accredition-off-msg i, .accredition-off-msg span {
  color: #34BE2D;
}
.form_stars {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin: 0;
}
.form_stars input {
  display: none;
}
.form_stars label.editable {
  cursor: pointer;
}
.form_stars label {
  line-height: 1;
  padding: 0 .3rem;
  color: #0A77BB;
}
.form_stars i {
  max-width: 1.5rem;
  display: inline-block;
  font-size: 18px;
}
.form_stars input:checked ~ label>i {
  color: #FABA2E;
}
.form_stars label.editable:hover .icon::before, 
.form_stars label.editable:hover ~ label .icon::before, 
.form_stars input:checked ~ label i::before {
  content: '\f005';
  color: #FABA2E;
  font-family: "Font Awesome 6 Free";
}

.checked-radio label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(193, 207, 228,.3);
  border-radius: 5px;
  padding: 12px 15px;
  cursor: pointer;
  border: 1px solid rgba(193, 207, 228,0);
}
.checked-radio label span {
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 1px solid #0A77BB;
  border-radius: 20px;
  position: relative;
  background: #fff;
}
.checked-radio label span:after{
  content: "";
  width: 9px;
  height: 9px;
  background: #0A77BB;
  top: 2px;
  left: 2px;
  border-radius: 15px;
  position: absolute;
  opacity: 0;
}
.checked-radio input:checked ~ label{
  border: 1px solid rgba(193, 207, 228,.9);
}
.checked-radio input:checked ~ label span:after{
  opacity: 1;
}
.accredition-btm p{
  font-weight: 500;
  color: #828282;
}
.accredition-btm p a{ text-decoration: none;}

.company-review-name {
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 0 0 8px 8px;
  margin-bottom: 20px;
}
.company-review-name img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.company-review-name p {
  color: #828282;
  padding-bottom: 6px;
}
.rating-com {
  background: #34BE2D;
  color: #fff;
  border-radius: 2px;
  font-weight: 500;
  padding: 0 7px;
  margin-right: 7px;
}
.company-review-name small {
  color: #828282;
  font-size: 12px;
}
.review-row {
  display: flex;
}
.review-2 {
  width: 70px;
  margin-right: 20px;
}
.h3-title{
  background: #F1F1F1;
  border: 1px solid rgba(0,0,0,.1);
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding: 11px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.rating-panel h4{
  color: var(--primary-text);
}

.rating-panel .form-group > label {
  width: 250px;
  font-size: 14px;
} 
.company-edit {
  position: absolute;
  right: 0;
  top: 0;
}
.review-10 {
  flex: 1;
}




/*company-public-profile-review-panel*/
.job-tabing-detail {
  padding: 1rem 0;
  background: linear-gradient(180deg, #f8f8ff 0%, #fff 100%);
  border-top: 1px solid #ebf0f6;
}
.job-tabing-asside .job-tabing-detail {
  border: 1px solid #ebf0f6;
  border-radius: 5px;
}
.nav-tabs .nav-link.active {
  border-top-color: #0A77BB;
  background:linear-gradient(180deg, #f8f8ff 0%, #fff 100%);
}
.job-tabing .nav-tabs, .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{ border-bottom: 1px solid transparent;}
.job-tabing .nav-link {
  display: flex;
  align-items: center;
  margin: 0 5px -2px 0;
}
.nav-link span {
  background: #f3f3f3;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .75rem;
  line-height: .9375rem;
  color: #1E223C;
  padding: .0625rem .25rem 0;
  margin-left: 15px;
}
.nav-link:focus, .nav-link:hover, .job-tabing .nav-link:hover span {
  color: var(--primary-text);
}
.ab_section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding:0 0 .75rem 0;
}
.ab_section-header .titleCont {
  line-height: 0;
  display: flex;
  align-items: center;
}
.review-title {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
}
.descText {
  display: inline-block;
  font-weight: 500;
  color: #97a0be;
  font-size: 0.875rem;
  margin-left: 6px;
}
.viewall.ctas-a-large {
  font-size: .875rem;
  font-weight: 600;
  color: #97A0BE;
}

.globalCard {
  background-color: #fff;
  box-shadow: 0px 2px 6px -2px rgba(0,106,194,0.2);
  border-radius: 6px;
  position: relative;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.5rem;
  border: solid 1px #ebf0f6;
}
.globalCard .flex-wrap {
  display: flex;
  justify-content: flex-start;
  overflow: auto;
}
.overall-wrap {
  padding-right: 3.625rem;
  padding-left: 0;
  border-right: 1px solid #ebf0f6;
  margin-right: 3.625rem;
  width: 50%;
}
.bold-section-header {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: bold;
  letter-spacing: normal;
  color: #1e223c;
}
.badge-cont {
  align-items: flex-start;
  color: #fff;
  width: 9.25rem;
  padding-right: 2rem;
}
.badge-x-large {
  width: 5rem;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  margin-bottom: 8px;
  background: #377e01;
  font-size: 1.25rem;
}
.caption-trend-cta {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-top: .5rem;
  font-weight: 500;
  letter-spacing: normal;
  color: #5e6b92;
  font-size: 12px;
  line-height: 1.43;
}
.caption-trend-cta .cta-text {
  text-decoration: underline;
  white-space: nowrap;
  font-weight: 600;
  margin-right: 3px;
}
.rating_stats_bars {
  flex: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.rating_bar_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .625rem;
}
.custom-checkbox {
  position: absolute;
  opacity: 0;
}
.custom-checkbox-label {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding-left: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.62;
  position: relative;
  cursor: pointer;
}
/*
.custom-checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  width: .875rem;
  height: .875rem;
  border-radius: .125rem;
  top: 0;
  border: 1px solid #5E6B92;
  margin-right: .625rem;
  display: inline-block;
  background: #fff;
}
*/
.stars_values {
  display: flex;
  align-items: center;
  color: #5E6B92;
  width: 7px;
  line-height: 1.23;
  font-size: .8125rem;
  padding: 0;
}
.custom-checkbox-label .fa-star {
  font-size: .6875rem;
  margin: 0 7px 0 2px;
  color: #5e6b92;
}
.rating_bar {
  height: .3125rem;
  border-radius: 4px;
  width: 160px;
  margin-right: 7px;
  margin-top: 0;
}
.rating_bar {
  height: .3125rem;
  border-radius: 4px;
  width: 160px;
  margin-right: 7px;
  margin-top: 0;
}
.rating-45 {
  background: #377e01;
}
.rating-4 {
  background: #5ba829;
}
.rating-3 {
  background: #cdd614;
}
.rating-2 {
  background: #ff9a05;
}
.rating-1 {
  background: #ff4b2b;
}
.stars_values {
  display: flex;
  align-items: center;
  color: #5E6B92;
  width: 7px;
  line-height: 1.23;
  font-size: .8125rem;
  padding: 0;
}
.category-ratings {
  width: 100%;
  flex: 1;
}
.avg_review_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  max-width: 100%;
  gap: 10px;
}
.avg_review_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: calc(50% - 10px);
}
.star-rating-45 {
  color: #377e01;
}
.card-rating {
  font-size: .875rem;
  line-height: 1.43;
  margin-right: 8px;
  font-weight: bold;
  letter-spacing: normal;
  color: #1e223c;
  padding: 0;
}
.rating-name {
  padding: 0;
  color: #5E6B92;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
  /*text-decoration-line: underline;
  cursor: pointer;*/
  text-transform: capitalize;
  white-space: nowrap;
}
.top-summary__main-title-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.top-summary__title-tooltip {
  display: flex;
  align-items: baseline;
}
.top-summary__title-tooltip p {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: .00937rem;
  color: #151c4c;
  width: max-content;
  padding: 0;
}
.top-summary__update-text {
  padding: 0;
  font-size: .875rem;
  line-height: 1.25rem;
  letter-spacing: .01562rem;
  color: #97a0be;
  font-weight: 600;
}
.top-summary-section {
  margin-top: .75rem;
}
.top-summary-section__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: .00937rem;
  background: rgba(55, 126, 1, 0.05);
  border: 1px solid rgb(190, 211, 195);
  padding: 7px 15px;
  border-radius: 3px;
}
.rating-list {
  border-bottom: 1px solid rgba(0,0,0,.1);
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.reiew-thumb {
  width: 70px;
  position: relative;
  margin-right: 20px;
}
.reiew-thumb img {
  width: 70px;
  height: 70px;
  border-radius: 100px;
}
.reiew-rating-content {
  flex: 1;
  width: 100%;
}
.designation {
  margin: 5px 0;
  display: block;
  font-weight: 600;
}
.post-date {
  text-align: right;
  color: #a6a3a3;
  padding-top: 5px;
}
.reiew-rating-content p {
  padding: 0;
}
.top-summary-section__summaries {
  margin-top: .25rem;
  padding: .5rem .6875rem 0 .5rem;
  border-radius: 4px;
  background: rgba(55, 126, 1, 0.05);
  border: 1px solid rgb(190, 211, 195);
}
.top-summary-card {
  padding: 0;
  font-weight: 400;
  font-size: .875rem;
  line-height: 1.25rem;
  letter-spacing: .01562rem;
  color: #1e223c;
  margin-bottom: .5rem;
  width: max-content;
  max-width: 99%;
}
.top-summary__show-all-button {
  font-weight: 600;
  font-size: .875rem;
  line-height: 1.25rem;
  letter-spacing: .01562rem;
  color: #5670FB;
  margin-top: .75rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.job-basic-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 2px;
  margin-top: 10px;
}
.entity {
  display: inline-flex;
  margin-bottom: .4375rem;
  margin-right: 1.5rem;
}
.entity .fa-solid {
  font-size: 1rem;
  margin-right: .25rem;
  color: #1E223C;
  width: 1rem;
  opacity: .7;
}
.entity-small {
  line-height: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 1rem;
  white-space: nowrap;
  overflow: hidden;
  margin-top: .0625rem !important;
  font-size: .8125rem;
}
.job-basic-info-btm span {
  font-size: .75rem;
  line-height: 1.16;
  color: #97A0BE;
  display: inline-block;
}
.job-basic-info-btm span {
  font-size: .75rem;
  line-height: 1.16;
  color: #97A0BE;
  display: inline-block;
}
.overview-container__gridPhotoCont {
  cursor: pointer;
  width: 100%;
  height: 20.75rem;
  position: relative;
}
.col-sm-12 .overview-container__gridPhotoCont {
  grid-column-start: 1;
  grid-column-end: 3;
  display: flex;
  height: 42rem;
}
.overview-container__gridPhotoCont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photosCaptiontop {
  padding: .25rem .5rem;
  position: absolute;
  left: 0px;
  top: 1.5rem;
  background: #f5f5f5;
  opacity: 0.8;
}
.photosEmpBadgeBottom {
  z-index: 1;
  pointer-events: none;
  width: 100%;
  position: absolute;
  height: auto;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 1.75rem;
  padding-bottom: 2rem;
  padding-right: 1.625rem;
  gap: .75rem;
  color: #fff;
  font-weight: 500;
}

.content-pages {
  min-height: calc(100vh - 364px);
  padding: 60px 0;
}
.content-pages h1 {
  font-size: 36px;
  color: var(--primary-text);
  margin-bottom: 20px;
}
.content-pages h2, .content-pages h3, .content-pages h4, .content-pages h5{ margin-bottom: 15px;}
.content-pages p, .content-pages p span {
  font-family: "Poppins", sans-serif !important;
}
.usercoverimg-right-panel .userMaininfo h3 span {
  display: block;
}
.usercoverimg-right-panel .membersinc{ margin: -25px 20px 10px 0; }
.toggle-password {
  right: 10px;
  position: absolute;
  z-index: 2;
  top: 12px;
  color: var(--primary-text);
  font-size: 18px;
  cursor: pointer;
}


/* Checkout */

.subscriptionContent {
  padding: 20px;
  border: 3px solid var(--primary-text);
  border-radius: 8px;
}
.subscriptionContent .select2-selection--multiple {
  max-height: inherit;
}
.country-tag {
  margin-bottom: 30px;
}
.country-tag span {
  background: #E6F3FC;
  border-radius: 5px;
  font-size: 12px;
  margin: 5px 3px 0 0;
  border: 1px solid rgba(142, 212, 255,.3);
  padding: 2px 5px 2px 5px;
  display: inline-block;
}
.country-tag span a {
  color: #000;
  margin-left: 5px;
}
.subscriptionPanel h5 {
  font-size: 15px;
  margin-bottom: 15px;
}
.subscriptionPanel i {
  color: #38AF00;
  margin-right: 5px;
}
.subscriptionPanel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.subscriptionPanel ul li {
  width: calc(50% - 10px);
  font-size: 14px;
}
.subscriptionPanel ul li label {
  margin-left: 8px;
  color: rgba(0,0,0,0.6);
}

.checkoutPaymentPanel {
  padding: 20px;
  background: #F0F0F0;
  border-radius: 15px;
  box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}
.payment-widget h4 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.payment-widget h4 span {
  font-size: 15px;
  font-weight: 300;
}
.payment-widget .form-check {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #DEDBDB;
}
.payment-widget .form-check .form-check-label {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 15px;
}
.payment-widget .form-check span {
  background: #fff;
  display: inline-flex;
  border: 1px solid #BDBDBD;
  border-radius: 3px;
  height: 30px;
  align-items: center;
  padding: 1px 5px;
  width: 70px;
}
.payment-widget {
  padding-bottom: 20px;
}
.orderSummary table {
  width: 100%;
  font-size: 16px;
}
.orderSummary table th {
  padding: 6px 0;
  font-weight: 400;
  font-size: 16px;
}
.orderSummary table td {
  text-align: right;
  padding: 6px 0;
  font-weight: 300;
  font-size: 16px;
}
.orderSummary table tfoot th, .orderSummary table tfoot td {
  font-size: 18px;
  border-top: 1px solid #B0B0B0;
  font-weight: 500;
}

/* Track Candidate */
.trackCandidate ul {
  margin-top: 30px;
}
.trackCandidate ul li {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trackCandidate ul li:not(:last-child) {
  margin-bottom: 5rem;
  position: relative;
}
.trackFigure {
  background: #f3f7fd;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  -webkit-mask-image: -webkit-radial-gradient(#fff,#000);
  overflow: hidden;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trackFigure::before {
  background: #c4ecff;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transition: all .5s;
  width: 5rem;
}
.trackFigure i {
  font-size: 36px;
  position: relative;
  z-index: 1;
}
.trackCandidate ul li:not(:last-child)::after {
  background: #c4ecff;
  content: "";
  height: 0;
  left: 2.375rem;
  position: absolute;
  top: 5rem;
  transition: all .3s;
  width: 3px;
}
.trackCandidate ul li.show-line:not(:last-child)::after,
.trackCandidate ul li.show-line .trackFigure:before {
  height: 100%;
}
.trackCandidate ul li.show-line .trackFigure i {
  color: var(--primary-text);
}
.IconsListtext {
  width: calc(100% - 6.25rem);
} 
.IconsListtext p {
  max-width: 350px;
}
.show-line h4{
  color: var(--primary-text);
}
.trackFigure .fa-xmark, .rejected-line .fa-check{
  display: none;
}
.rejected-line .trackFigure .fa-xmark {
  display: inline;
  color: #f00 !important;
}
.rejected-line .trackFigure::before{
  background: #fdccba;
}
.rejected-line h4{
  color: #f00;
}
.sortCandidatd {
  position: absolute;
  top: 0px;
  right: 5px;
  background: #2b3;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.job-tracker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 12px;
}
.job-tracker a {
  text-decoration: underline;
  font-weight: 500;
}

.permission-management-title {
  padding: 8px 15px;
  background: #f1f1f1;
  border-radius: 5px;
}
.permission-management-title .form-check, .permissionList .form-check {
  margin: 0;
}
.permission-management-title .form-check-input[type="checkbox"],
.permissionList .form-check-input[type="checkbox"] {
  margin-top: 0;
  margin-right: 15px;
}
.permissionList li .form-check-label, .permission-management-title .form-check-label {
  font-weight: 500;
  cursor: pointer;
}
.permissionList {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding-left: 15px;
  flex-wrap: wrap;
}
.permissionList li {
  width: 20%;
}


/* Time Line CSs */

.timeline-with-icons {
  border-left: 1px solid hsl(0, 0%, 90%);
  position: relative;
  list-style: none;
}

.timeline-with-icons .timeline-item {
  position: relative;
}
.timeline-with-icons .timeline-item:not(:last-child) {
  margin-bottom: 20px;
}
.timeline-with-icons .timeline-item:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline-with-icons .timeline-icon {
  position: absolute;
  left: -48px;
  background-color: hsl(217, 88.2%, 90%);
  color: hsl(217, 88.8%, 35.1%);
  border-radius: 50%;
  height: 31px;
  width: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-item p {
  font-size: 12px;
  line-height: normal;
}
.timeline-item h6 {
  font-size: 12px;
}
.timeline-item span {
  font-size: 11px;
}
.card.bg-light {
  margin-bottom: 16px;
}
.timeline-overflow {
  max-height: 655px;
  overflow: auto;
  padding-left: 15px;
}
.timeline-detail {
  background: #e6f1f8;
  padding: 8px 15px;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.timeline-detail::before {
  content: "";
  right: 100%;
  top: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #e6f1f8;
  border-width: 15px;
  margin-top: -15px;
}
.globalCard nav {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}



#recaptcha-error2, #recaptcha-error1 { margin-bottom: 20px; }

#educationform .form-group label.error, #experienceform .form-group label.error { display: none; }
#educationform .col-sm-6, #educationform .col-sm-12, #experienceform .col-sm-6, #experienceform .col-sm-12 { margin-bottom: 20px; }

#companyProfile .select2-container .select2-selection--multiple { padding: 10px 0 10px 0px !important; min-height: 48px; } 


.fm-social-link a i.fa-2x {  padding: 0 5px; }

.asside-panel .reference-list ul  { padding-left: 0px; padding-right: 0px;}



.fm-social-block { position:relative; }
.share-link a { background:#0a77bb; color:#fff; padding:5px 10px; display:inline-block !important; border-radius:5px;}
.fm-social-link { position: absolute;  width: 310px; right: 10px; border: #ccc solid 1px; padding: 10px; background: #fff; top: 25px; border-radius: 5px; display: none;}

.review-row { justify-content: flex-end; padding-bottom: 20px; padding-right: 10px;  }
.review-row .btn.btn-primary { width: 220px !important; }


.view_feedback { display: flex; justify-content: flex-end; gap: 10px;}

.searchList li .listbtn { margin-top: 0px;}
.searchList li .listbtn button.share_feedback { padding: 9px 16px; }


.searchList li .listbtn a.btn.shortListCandidate { background: var(--primary-text); border: 1px solid var(--primary-text); color: #fff; }
.searchList li .listbtn a.btn.shortListCandidate:hover { background: #fff; border: 1px solid var(--primary-text); color: var(--primary-text); }

.searchList.listApliers .job-tabing-asside { border-bottom: #dee2e6 solid 1px; }



.searchList.listApliers .job-tabing-asside .nav-tabs a { color: #000; }
.searchList.listApliers .jobinfo {  margin-top: 0px; }



.staff-list-block { position:relative; }
.staff-list-block .fa-user-plus { margin: 0 0 0 10px; }
#addstaff { position:absolute; left:10px; top:36px; }

#job_table_filter { padding-bottom: 20px; }


#experienceModal textarea.form-control { margin-bottom:20px; }


.searchList>li .jobimg { flex: 0 0 70px; }

.benefits .colon {width: 40px; }

.benefits .contentbox .table * { word-break: break-all; }

/* .select2-container--default .select2-selection--multiple { padding: 10px; line-height: normal; } */


.main-wrapper>.job-tabing {margin-top: -50px;}


.appliers-frm .select2-container .select2-search--inline .select2-search__field { height: 32px; line-height: 30px;}

.listApliers .no_record { padding: 100px 0px; }


#projectform .col-sm-12, #projectform .col-sm-6 { margin-bottom: 20px;}
#projectform .form-group label.error {margin: 0px; display: block; }



body #job_table th { border-bottom:1px solid #dee2e6!important;  border-top:none!important;  border-right: none !important; white-space: nowrap; font-size: 12px;   }

body #job_table td { border-bottom:1px solid #dee2e6!important;  border-top:none!important;  border-right: none !important; font-size: 12px; }
body .dataTables_scrollHeadInner .dataTable thead th { background: #e6f1f8;   font-size: 12px;  }


.table-striped>tbody>tr:nth-of-type(odd)>* { background: none !important; --bs-table-bg-type: #fff;}
.table-striped>tbody>tr:nth-of-type(even)>* {     --bs-table-color-type: var(--bs-table-striped-color); --bs-table-bg-type: var(--bs-table-striped-bg); }


.action-dropdown .sub-menu { right: 0px; }

#job_table { min-height: 180px; }


.search-fix #job_table_filter {  margin-top: -40px;}
.search-fix #job_table_filter .form-control { height: 38px;}

body #job_table td:last-child {  border-right: 1px solid #dee2e6 !important; }

.dataTables_scrollHeadInner table.table-bordered.dataTable th:last-child { border-right: 1px solid #dee2e6 !important; }



.contentbox .table tr td:first-child { color: #908f8f; }
 
.contentbox .table * { font-size: 13px; } 

.benefits .contentbox .table * {  word-break: break-word; } 

.form-check label.error { display: block;}
 


@media(max-width:991px) {

  #addstaff  { position: static; padding: 13px 15px;  }

  .logo img { max-width: 145px; }

  .profile-login { top: -40px !important; }

}
