@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary: #040667;
  --secondary: #3fbe00;
  --secondary-part: #52c41a;
  --black: #25272a;
  --darkblack: #000000;
  --grey: #f5f5f5;
  --white: #fff;
  --blue: #0077ff;
  --offwhite: #fffdf2;
  --green: #297a02;
}

* {
  box-sizing: border-box;
}

html {
  /* font-smoothing: antialiased; */
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font: normal 16px/20px "Poppins", sans-serif;
  font-weight: 400;
  margin: 0;
  top: 0 !important;
  background-color: #f5f5f5 !important;
  color: #000000;
  counter-reset: my-sec-counter;
}

.clear {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  width: auto\9;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

i {
  display: inline-block;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #404040;
}

a:hover {
  color: inherit;
}

ul {
  margin: 0;
  list-style: none;
  padding: 0px;
}

span {
  display: inline-block;
  /* vertical-align: middle; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

.w-50 {
  width: 50%;
}

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

.bg-white {
  background-color: var(--white);
}

.text-primary {
  color: var(--primary);
  /* font-size: 24px; */
}

.text-grey {
  color: #9c9c9c;
}

.text-white {
  color: var(--white);
}

#cke_19,
#cke_31,
#cke_32,
#cke_46 {
  display: none;
}

.bg-primary {
  background-color: var(--primary);
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.cursor {
  cursor: pointer;
}

.cursor-none {
  cursor: not-allowed !important;
}

.no-shadow {
  box-shadow: none !important;
}

.text-xxs {
  font-size: 10px;
}

.text-xs {
  font-size: 12px;
}

.text-font {
  font-size: 18px;
}

.text-s {
  font-size: 24px;
}

.m-t-2x {
  margin-top: 20px;
}

.no-margin {
  margin: 0;
}

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.close-sec {
  cursor: pointer;
}

.flex {
  display: flex;
  grid-gap: 10px;
}

.align-center {
  align-items: center;
}

.justify-end {
  justify-content: end;
}

.icon-s {
  width: 26px;
}

textarea {
  background-color: var(--white);
  padding: 14px;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

.cta {
  border-radius: 10px;
  padding: 10px 20px;
  text-transform: uppercase;
  background-color: transparent;
  cursor: pointer;
}

.cta-outline {
  border: 1px solid var(--primary);
}

.cta-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.cta-filled {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 10px 30px;
  border: 0;
  border-radius: 30px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.cta-filled.cta-xs {
  padding: 10px 30px;
  font-size: 16px;
}

.cta-filled.cta-xs:hover {
  color: var(--white);
}

.cta-outline.cta-xs {
  padding: 10px 30px;
  font-size: 16px;
  color: var(--black);
}

.cta-outline.cta-xs:hover {
  color: var(--white);
}

select,
input {
  border: 0;
  width: 100%;
}

select:focus,
input:focus {
  border: 0;
  outline: 0;
}

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

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--primary);
}

.mobile-position-bottom .left-menu ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
  height: 0px;
}

.mobile-position-bottom .left-menu ul::-webkit-scrollbar {
  width: 5px;
  height: 0px;
  background-color: #f5f5f5;
}

.mobile-position-bottom .left-menu ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
  background-color: var(--primary);
  height: 0px;
}

.main-title {
  text-align: center;
}

.main-title span {
  display: inline-block;
  vertical-align: baseline;
  font-weight: 600;
}

header {
  background-color: var(--grey);
  padding-bottom: 150px;
}
.header-nsure-contact-us {
  background-color: transparent !important;
  padding-bottom: 1px !important;
}

header > .container {
  max-width: 100%;
}

.header-top-section {
  width: 100%;
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  padding: 20px 20px;
}

.header-cta {
  justify-self: end;
  display: flex;
  grid-gap: 10px;
}

.header-cta .cta-outline {
  font-size: 12px;
  font-weight: 600;
}

.banner-section {
  text-align: center;
}

.banner-section .banner-title {
  color: var(--primary);
  font-size: 100px;
  line-height: 100px;
  font-weight: 700;
}

.banner-section .banner-sub-title {
  color: var(--primary);
  font-size: 40px;
  line-height: 40px;
  margin-top: 45px;
  font-weight: 500;
}

.banner-section .banner-desc {
  padding: 0;
  font-size: 14px;
  line-height: 28px;
  margin: 20px 0 0 0;
}

.search-section {
  max-width: 80%;
  margin: 50px auto 0 auto;
}

.search-section h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.search-wrapper {
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 115px;
  margin: 25px 0 0;
}

.search-wrapper img {
  vertical-align: middle;
  width: 22px;
}

.search-wrapper > div {
  display: flex;
  grid-gap: 5px;
  align-items: center;
  border-right: 0px solid var(--black);
  padding: 5px 10px;
}

.search-wrapper > div:last-of-type {
  cursor: pointer;
  padding: 6px 10px;
  border: 0;
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  justify-content: center;
}

.search-wrapper > div select,
.search-wrapper > div input {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.search-button {
  background-color: var(--primary);
  border-radius: 30px;
  padding: 10px 10px;
  text-align: center;
  border-right: 0;
  cursor: pointer;
}

.search-button i {
  color: var(--white);
}

.search-wrapper > div select,
.search-wrapper > div input {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.search-button button {
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  padding: 0px;
  cursor: pointer;
}

.search-wrapper .option-list.job-category {
  border-right: 0;
}

.option-list {
  position: relative;
}

.option-list:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 16px;
  background: #000;
}

.option-list.job-category:before {
  content: none;
}

.search-filter {
  text-align: center;
  background-color: var(--white);
  padding: 0 20px 10px;
  border-radius: 0 0 10px 10px;
}

.search-filter h1 {
  color: var(--primary);
  margin: 0 20px 0;
  font-size: 20px;
}

.search-filter h1 span {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  vertical-align: baseline;
}

.search-filter .cta {
  margin: 0;
  padding: 0;
}

.search-filter .cta-filled {
  display: inline-block;
  font-size: 16px;
  padding: 10px 20px;
  box-shadow: none;
}

.search-filter .cta-filled:hover {
  color: var(--white);
}

.search-section.active .search-filter {
  display: block !important;
}

.search-section.active .search-wrapper {
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 8px;
}

.steps-wrapper {
  padding: 40px 0;
  text-align: center;
  background-color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr max-content 1fr max-content 1fr;
  grid-gap: 30px;
  margin-top: 40px;
}

.count {
  color: var(--primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  font-size: 18px;
  margin: 10px auto;
  margin-bottom: 26px;
  position: relative;
}

.count:before {
  position: absolute;
  content: "";
  border: 0px dashed var(--primary);
  border-spacing: 10px;
  height: 60%;
  width: max-content;
  top: 40px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.span {
  display: inline-block;
}

.step-icon img {
  border: 0px solid var(--primary);
  padding: 5px;
  border-radius: 10px;
  width: 48px;
}

.steps h3 {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.steps p {
  margin: 0;
  color: var(--darkblack);
  font-size: 16px;
  line-height: 26px;
}

.steps-bg {
  padding: 20px 0 0;
}

.next-arrow {
  align-self: center;
}

/* .steps{ position: relative;}
.steps:after{ position: relative; content: ''; background-image: url(../images/arrow-right.png); top: 50%; transform: translateY(-50%); width: 20px; height: 22px; display: inline-block; right: -65%;}
.steps:last-of-type{}
.steps:last-of-type:after{ content: none;} */

.steps-wrapper.location-page-steps .steps-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 0;
}

.counter-wrapper {
  position: relative;
  padding: 80px 138px;
}

.counter-wrapper:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 150px;
  height: 60%;
  border-top: 1px solid #c0c0c0;
  border-left: 1px solid #c0c0c0;
  border-radius: 30px 0 0 0;
}

.counter-wrapper:after {
  content: "";
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 15%;
  height: 150px;
  border-right: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  border-radius: 0 0 30px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-columns: repeat(4, 1fr); */
  grid-gap: 30px;
  justify-content: center;
  text-align: center;
}

.counter-grid h3 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}

.counter-grid h4 {
  font-size: 50px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 0;
}

.counter-grid p {
  text-align: left;
  margin: 0;
  font-size: 20px;
  line-height: 26px;
}

.counter-grid p span {
  display: block;
}

.counter-grid > div {
  justify-self: center;
  padding: 50px 0;
}

.counter-one,
.counter-three,
.counter-two,
.counter-four {
  position: relative;
}

.counter-one:before,
.counter-three:before {
  content: "";
  background-color: var(--darkblack);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.counter-two:before,
.counter-four:before {
  content: "";
  background-color: var(--darkblack);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.counter-three:after {
  content: none;
  position: absolute;
  top: -45px;
  width: 190%;
  height: 1px;
  left: -60px;
  background-color: #c0c0c0;
}

.counter-two:after {
  content: none;
  position: absolute;
  bottom: -45px;
  width: 280%;
  height: 1px;
  right: -60px;
  background-color: #c0c0c0;
}

/* .counter-border-left{ position: relative;}
.counter-border-left:before{content: ''; position: absolute; top: 0; left: 0; width: 1px; height: 70%; background-color: #000; } */

.counter-wrapper.active .counter-one h3,
.counter-wrapper.active .counter-three h3 {
  color: var(--darkblack);
}

.counter-wrapper.active .counter-one h4,
.counter-wrapper.active .counter-three h4 {
  color: var(--darkblack);
}

.counter-wrapper.active .counter-two h3,
.counter-wrapper.active .counter-four h3 {
  color: var(--primary);
}

.counter-wrapper.active .counter-two h4,
.counter-wrapper.active .counter-four h4 {
  color: var(--primary);
}

.counter-wrapper.active .counter-one:before,
.counter-wrapper.active .counter-three:before {
  bottom: -30px;
  top: auto;
}

.counter-wrapper.active .counter-two:before,
.counter-wrapper.active .counter-four:before {
  bottom: auto;
  top: -30px;
}

/* .category-wrapper{ padding: 40px 0;}
.category-slider{max-width: 60%; margin: 20px auto;}
.category-slider .item{padding: 10px 0; margin: 40px 25px; margin: 0 10px; border: 6px solid var(--primary); background-color: var(--white); border-radius: 30px; box-shadow: 0 0 10px rgba(0,0,0,0.2); text-align: center; transition: 0.3s;}
.category-slider .item:hover{transform: scale(1.111111111111); box-shadow: 0px 0px 0px 4px var(--primary);}
.category-slider .item h3{ font-size: 14px; font-weight: bold; margin: 10px 0;}
.category-slider .item p{ margin: 0; font-size: 12px; color: var(--darkblack);}
.slick-slider.category-slider {}
.slick-slider.category-slider .slick-slide{ margin: 10px 20px; width: 178px !important;} */

.category-wrapper {
  padding: 40px 0;
}

.category-slider {
  max-width: 60%;
  margin: 20px auto;
}

.category-slider .item {
  padding: 10px 0;
  border: 6px solid var(--primary);
  background-color: var(--white);
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 0 10px;
}

.slick-slider.category-slider .slick-slide {
  padding: 0 20px;
}

.category-slider .item h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
}

.category-slider .item p {
  margin: 0;
  font-size: 12px;
  color: var(--darkblack);
}

.slick-slider.category-slider .slick-slide img {
  margin: 0 auto;
}

.explore-wrapper {
  padding: 40px 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  margin: 40px 0 0;
  text-align: center;
}

.explore-grid .item {
  background-color: var(--white);
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: 0.3s;
}

.explore-grid .item:hover:before {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: var(--primary);
  transition: 0.3s;
}

.explore-grid .item h3 {
  margin: 20px 0 0 0;
  font-size: 22px;
}

.comp-explore-grid {
  display: inline-flex;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 50px;
  margin: 40px 0 0;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.comp-explore-grid .item {
  background-color: var(--white);
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: 0.3s;
  width: 250px;
}

.comp-explore-grid .item img {
  width: 120px;
}

.comp-explore-grid .item:hover:before {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: var(--primary);
  transition: 0.3s;
}

.comp-explore-grid .item h3 {
  margin: 20px 0 0 0;
  font-size: 22px;
}

.clients-slider {
  max-width: 70%;
  margin: 40px auto 0 auto;
  margin-bottom: 40px;
  z-index: 2;
}

.clients-slider .item {
  background-color: var(--white);
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 0px;
  width: 130px !important;
  height: 130px;
  border-radius: 50%;
  margin: 6px auto;
  display: grid !important;
  align-items: center;
}

.clients-slider .item img {
  width: 90px !important;
  margin: 0 auto;
}

footer {
  padding-bottom: 20px;
  color: var(--darkblack);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

footer .container {
  max-width: 95%;
}

.footer-wrapper {
  background-color: var(--white);
  padding: 20px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: max-content auto;
}

.brand-section .social-wrapper {
  margin: 0;
}

.social-wrapper a,
.social-wrapper i {
  display: inline-block;
  color: var(--primary);
  font-size: 23px;
}

.social-wrapper a:hover,
.social-wrapper i:hover {
  color: var(--primaryhover);
}

.social-wrapper a img {
  width: 23px;
  height: 23px;
}

.brand-section {
  display: grid;
  grid-template-columns: max-content max-content auto;
  grid-gap: 80px;
  align-items: center;
  /* border-right: 1px solid #626262; */
  padding-right: 80px;
}

.quick-links h2 {
  font-weight: bold;
  font-size: 20px;
}

.quick-links ul {
  margin: 15px 0 35px;
}

.quick-links ul li {
  margin-top: 12px;
}

.quick-links ul li a {
  text-decoration: underline;
  color: #000;
}

.copy-right {
  font-size: 14px;
  margin-top: 40px;
}

.border-left-dotted {
  position: relative;
}

.border-left-dotted:before {
  content: "";
  position: absolute;
}

.sponcer-section-wrap {
  text-align: center;
  display: grid;
  grid-template-columns: auto max-content;
  grid-gap: 20px;
}

.sponcer-section h1 {
  font-size: 30px;
  line-height: 48px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0px;
}

.sponcer-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* grid-gap: 35px; */
}

.sponcer-section span {
  display: block;
}

.sponcer-section img {
  width: 100px;
}

.sponcer-section .ids-logo img {
  width: 120px;
}

.social-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 50px;
  justify-self: end;
}

.social-wrapper a {
  display: block;
}

.Nsure-logo {
  width: 250px;
}

.subpage-header {
  padding-bottom: 20px;
}

.subpage-title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
}

.location-wrapper {
}

.location-grid {
  border-top: 0px solid #7a7a7a;
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 20px;
}

.location-list {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}

.location-list ul li {
  display: flex;
  grid-gap: 10px;
  align-items: center;
  margin: 20px 0;
}

.location-list ul li span {
  font-weight: bold;
}

.location-list .location-dif {
  width: 100px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.theme-1 {
  background-color: #fa5c28;
}

.theme-2 {
  background-color: #d93800;
}

.theme-3 {
  background-color: #b22c00;
}

.theme-4 {
  background-color: #7a2d14;
}

.location-list .cta {
  margin-top: 50px;
}

.steps-wrapper.location-page-steps .steps h3 {
  color: var(--darkblack);
}

.certificate-section {
  font-size: 20px;
  line-height: 30px;
  width: max-content;
  max-width: 600px;
  margin: 30px auto;
  border: 1px solid #828282;
  padding: 25px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: max-content auto;
  grid-gap: 30px;
  align-items: center;
}

.certificate-section img {
  width: 180px;
}

.reachus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

/* 02/08/2023 */
/* .reachus-grid .input-style.textarea textarea {
  height: 150px;
  box-shadow: none; padding: 0;
} */
.form-wrapper {
  padding: 40px;
  border-radius: 20px;
}

.inline-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 15px;
}

.input-style {
  display: grid;
  grid-template-columns: max-content auto;
  grid-gap: 5px;
  align-items: center;
  margin: 12px 0;
  border: 1px solid var(--secondary-part);
  border-radius: 10px;
  padding: 10px 15px;
}

.input-style input {
  background-color: transparent;
  font-family: "Poppins", sans-serif;
}

.input-style textarea {
  background-color: transparent;
  height: 120px;
  border: 0;
  box-shadow: none;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.input-style textarea:focus {
  outline: none;
  border: 0;
}

.input-style textarea i {
  vertical-align: top;
}

.form-wrapper .cta {
  padding: 0;
  margin-top: 25px;
}

.form-wrapper .cta,
.form-wrapper .cta-filled {
  width: 100%;
}

.inline-style-grid .input-style {
  margin: 0;
}

.form-wrapper i {
  color: var(--primary);
}

.input-style.textarea {
  align-items: flex-start;
}

.input-style.textarea i {
  margin-top: 5px;
}

.contact-wrap {
  text-align: center;
}

/* 02/08/2023 */
.contact-section {
  /* margin: 35px 0; */
  margin: 10px 0 0;
}

.contact-section:first-of-type {
  margin-top: 0;
}

/* 02/08/2023 */
.contact-section h1 {
  font-weight: bold;
  font-size: 28px;
  color: var(--primary) !important;
  /* margin-bottom: 0; */
}

/* 02/08/2023 */
.contact-section h6 {
  font-size: 20px;
  /* margin-top: 20px; */
  margin: 5px 0;
  font-weight: 600;
}

/* 02/08/2023 */
.contact-section h5 {
  font-weight: 600;
  font-size: 18px;
  /* margin-bottom: 0; */
}

.contact-section p {
  margin: 0;
  font-size: 12px;
}

.contact-section h1 img {
  width: 30px;
}

.login-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* align-items: center; */
  height: 100vh;
}

.login-wrapper .login-left-panel {
  /* background-color: #c64a1f; */
  color: #fff;
  border-radius: 10px;
  height: 100%;
  padding: 20px;
}

.login-left-panel-content {
  display: grid;
  align-items: center;
  height: 100%;
}

.login-left-panel h1 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 6px;
  color: #fff;
}

.login-left-panel p {
  margin: 10px 0 0;
  font-size: 16px;
}

.login-right-panel {
  text-align: center;
  padding: 30px 20px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.login-right-panel h2 {
  font-weight: 600;
  margin: 10px 0;
  font-size: 16px;
}

.input-field {
  margin: 6px 0;
  text-align: left;
}

.input-field label {
  margin-bottom: 5px;
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
}

.input-field input {
  background-color: var(--white);
  padding: 14px;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.input-field select {
  background-color: var(--white);
  padding: 14px;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.input-field textarea {
  background-color: var(--white);
  padding: 14px;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  width: 100%;
  min-height: 100px;
}

.input-field textarea:focus {
  border: 0;
}

.login-right-panel .input-field {
  margin: 0;
}

.login-right-panel .input-field {
  margin: 5px 0;
}

.login-right-panel .input-field input {
  border: 1px solid #52c41a;
  box-shadow: none;
  background-color: transparent;
  height: 35px;
  border-radius: 15px;
}

.checkbox-fwd-pwd {
  display: grid;
  grid-template-columns: auto max-content;
  grid-gap: 10px;
  align-items: center;
  text-align: left;
  font-size: 13px;
}
.ant-select.custom-select-antd .ant-select-selector {
  border: 1px solid #52c41a !important;
  height: 40px !important;
  border-radius: 15px !important;
  padding: 5px 14px !important;
}

.custom-select-antd .ant-select-arrow {
  top: 60% !important;
}

.ant-select.custom-select-antd .ant-select-selector {
  border: 1px solid #52c41a !important;
  height: 35px !important;
}
.checkbox-fwd-pwd input {
  width: auto;
  vertical-align: middle;
}

.login-form .cta {
  margin: 30px 0 20px;
  width: 100%;
  display: block;
  padding: 0;
}

.login-form .cta .cta-filled {
  width: 100%;
  display: block;
}

.login-form .cta .cta-filled:hover {
  color: var(--white);
}

.sign-up-text {
  font-size: 14px;
}

.sign-up-text a {
  color: var(--primary);
}

.sign-up-text a:hover {
  color: var(--primary);
}

.inline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.inner-header {
  background-color: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  border-radius: 0 0 30px 30px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
}

.brand-logo img {
  width: 70px;
  height: 75px;
}

.align-flex-end {
  justify-self: end;
}
.ant-modal-content {
  border-radius: 10px !important;
}

.align-flex-center {
  text-align: center;
}

.inner-header .cta.cta-outline {
  padding: 8px 35px;
  font-size: 12px;
}

.inner-header .align-flex-end {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

.two-grid {
  display: grid;
  /* grid-template-columns: 250px auto; */
  grid-template-columns: 250px calc(100% - 280px);
  grid-gap: 30px;
  padding: 20px 0;
}

.left-panel {
  border-right: 1px solid #c8c8c8;
  padding-right: 30px;
  position: sticky;
  top: 10px;
  z-index: 5;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  grid-row-gap: 0;
}

.profile-grid .ant-select.custom-select-antd {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 0 !important;
}

.profile-grid .ant-select.custom-select-antd .ant-select-selector {
  border: 0;
}

.input-field.profile-logo {
  background-color: var(--white);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  display: inline-flex;
  grid-gap: 20px;
  align-items: center;
  padding: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}

.input-field.profile-logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.profile-grid .input-field.textarea,
.profile-grid .cta {
  grid-column: span 2;
}

.profile-form .cta {
  text-align: center;
  margin: 6px auto;
}

.textares-xs {
  height: 52px;
  min-height: auto !important;
}

.profile-logo h2 {
  word-break: break-word;
  font-weight: bold;
}

.left-menu li {
  margin: 40px 0;
}

.left-menu li a {
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  color: var(--black);
}

.left-menu li a i {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 0;
  border-radius: 20px 10px 10px 20px;
  width: 46px;
  text-align: center;
}

.left-menu li.active a {
  background-color: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 20px 10px 10px 20px;
}

.left-menu li.active a i {
  color: var(--primary);
  background-color: transparent;
}

.jobs-title {
  display: grid;
  grid-template-columns: max-content auto max-content;
  align-items: center;
}

.jobs-tab {
  text-align: center;
  display: flex;
  justify-content: center;
  grid-gap: 20px;
}

.jobs-tab li.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.jobs-title .cta-outline {
  padding: 10px;
  color: var(--primary);
}

.jobs-title .cta-outline:hover {
  background-color: transparent;
}

.jobs-title .cta-outline img {
  width: 24px;
  margin-right: 5px;
}

.job-box {
  background-color: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto max-content max-content;
  grid-gap: 20px;
  margin: 25px 0;
}

.jobs-cta-parent {
  display: flex;
}

.jobs-cta-parent > div {
  flex: 1;
}

.jobs-cta {
  display: grid;
  grid-gap: 20px;
  align-content: end;
}

.jobs-cta a {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  padding: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
}

.jobs-cta a span {
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
  margin-left: 10px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  text-align: center;
}

.jobs-cta a:hover .jobs-cta a span {
  background-color: var(--white);
}

.job-desc h3 {
  font-weight: bold;
  font-size: 24px;
}

.job-desc h3 img {
  width: 20px;
}

.job-desc h6 {
  font-size: 16px;
  margin-top: 10px;
}

.job-desc h5 {
  margin-top: 10px;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
}

.job-desc p {
  margin: 0 0 6px 0;
  font-size: 14px;
  line-height: 20px;
}

.posted {
  align-self: flex-end;
}

.posted p {
  margin: 5px 0;
  font-weight: 500;
}

.posted p span {
  color: var(--primary);
  display: inline-block;
  vertical-align: baseline;
  margin-right: 5px;
}

#chart {
  background: var(--white);
  height: 500px;
  padding: 50px;
  border-radius: 20px;
}

.tabs-nav ul {
  margin: 0;
  padding: 0;
}

.tabs-nav li {
  display: inline-block;
}

.tabs-nav a {
  display: block;
  padding: 10px 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--black);
}

.tabs-nav a:hover {
  color: var(--primary);
}

/* Active tab */

.tabs-nav li.active {
}

.tabs-nav li.active a {
  color: inherit;
}

/* Tab content */

.tabs-content {
}

.tabs-content IMG {
  margin-right: 10px;
}

.search-section.innerpage-search {
  max-width: 95%;
  margin: 0 auto;
}

.search-section.innerpage-search .search-wrapper {
  grid-template-columns: repeat(3, 1fr) 115px;
}

.search-section.innerpage-search .search-wrapper .option-list:before {
  content: "";
}

.search-section.innerpage-search
  .search-wrapper
  .option-list.border-none:before {
  content: none;
}

.candidate-wrapper {
  display: grid;
  grid-template-columns: 300px auto;
  grid-gap: 20px;
  max-width: 95%;
  margin: 20px auto;
}

.filter-section {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 10px;
  z-index: 5;
  height: max-content;
}

.filter-title {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--grey);
  font-weight: 500;
  font-size: 20px;
}

.filter-sec-wrap {
  padding: 0 10px;
}

.filter-section-fields {
  margin: 10px 0;
}

.filter-section-fields h2 {
  font-size: 16px;
}

.filter-section-fields h2 img {
  width: 24px;
}

.filter-section-fields select {
  background-color: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 10px;
  color: #5c5c5c;
}

.filter-section i {
  color: var(--primary);
  margin-right: 5px;
}

.filter-section-fields .input-field .ant-select {
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* === WebKit specific styles === */
/* === range commons === */
/* === range theme and appearance === */
input[type="range"] {
  font-size: 1.5rem;
  width: 12.5em;
}

input[type="range"] {
  color: #ef233c;
  --thumb-height: 1.125em;
  --track-height: 0.125em;
  --track-color: rgba(0, 0, 0, 0.2);
  --brightness-hover: 180%;
  --brightness-down: 80%;
  --clip-edges: 0.125em;
  padding: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

input[type="range"] {
  position: relative;
  background: #fff0;
  overflow: hidden;
}

input[type="range"]:active {
  cursor: grabbing;
}

input[type="range"]:disabled {
  filter: grayscale(1);
  opacity: 0.3;
  cursor: not-allowed;
}

input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  position: relative;
}

input[type="range"]::-webkit-slider-thumb {
  --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
  --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
  --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
  --clip-further: calc(100% + 1px);
  --box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
    100vmax currentColor;

  width: var(--thumb-width, var(--thumb-height));
  background: linear-gradient(currentColor 0 0) scroll no-repeat left center /
    50% calc(var(--track-height) + 1px);
  background-color: currentColor;
  box-shadow: var(--box-fill);
  border-radius: var(--thumb-width, var(--thumb-height));

  filter: brightness(100%);
  clip-path: polygon(
    100% -1px,
    var(--clip-edges) -1px,
    0 var(--clip-top),
    -100vmax var(--clip-top),
    -100vmax var(--clip-bottom),
    0 var(--clip-bottom),
    var(--clip-edges) 100%,
    var(--clip-further) var(--clip-further)
  );
}

input[type="range"]:hover::-webkit-slider-thumb {
  filter: brightness(var(--brightness-hover));
  cursor: grab;
}

input[type="range"]:active::-webkit-slider-thumb {
  filter: brightness(var(--brightness-down));
  cursor: grabbing;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
    100% calc(var(--track-height) + 1px);
}

input[type="range"]:disabled::-webkit-slider-thumb {
  cursor: not-allowed;
}

/* === Firefox specific styles === */
input[type="range"],
input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb {
  appearance: none;
  transition: all ease 100ms;
  height: var(--thumb-height);
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
  background: #fff0;
}

input[type="range"]::-moz-range-thumb {
  background: currentColor;
  border: 0;
  width: var(--thumb-width, var(--thumb-height));
  border-radius: var(--thumb-width, var(--thumb-height));
  cursor: grab;
}

input[type="range"]:active::-moz-range-thumb {
  cursor: grabbing;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  background: var(--track-color);
}

input[type="range"]::-moz-range-progress {
  appearance: none;
  background: currentColor;
  transition-delay: 30ms;
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-progress {
  height: calc(var(--track-height) + 1px);
  border-radius: var(--track-height);
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
  filter: brightness(100%);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:hover::-moz-range-progress {
  filter: brightness(var(--brightness-hover));
}

input[type="range"]:active::-moz-range-thumb,
input[type="range"]:active::-moz-range-progress {
  filter: brightness(var(--brightness-down));
}

input[type="range"]:disabled::-moz-range-thumb {
  cursor: not-allowed;
}

.candidate-list {
  display: grid;
  grid-gap: 20px;
  height: max-content;
}

.candidate-list-height {
  display: grid;
  grid-gap: 20px;
  max-height: 730px;
  overflow-y: auto;
}

.box-div {
  background-color: var(--white);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.candidate-header-sec {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
}

.profile-sec {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  grid-gap: 10px;
}

.profile-sec h2 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
}

.profile-sec p {
  margin: 5px 0 0 0;
}

.candidate-view {
  display: flex;
  grid-gap: 5px;
}

.candidate-view .icons {
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
}

.candidate-view .icons img {
  width: 20px;
}

.candidate-view .icons a,
.candidate-view .icons a i {
  color: var(--white);
}

.candidate-view .icons a i {
  font-size: 16px;
}

.candidate-contact {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  margin-top: 15px;
}

.can-cnt {
  display: flex;
  grid-gap: 10px;
  align-items: center;
}

.can-cnt img {
  width: 20px;
}

.can-cnt i {
  color: var(--primary);
}

.schedule-list {
  display: grid;
  grid-gap: 20px;
  border-right: 1px solid #bebebe;
  padding-right: 20px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: auto 360px;
  grid-gap: 20px;
  margin: 20px 0 0;
}

.schedule-title {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 10px;
}

.schedule-title h6 {
  margin: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: bold;
}

.schedule-title h2 {
  font-weight: 500;
}

/* .schedule-title h3 {
  font-size: 16px;
} */
.schedule-title h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}

.attr-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  grid-gap: 10px;
  margin: 10px 0 0;
}

.calendar {
  max-width: 300px;
  margin: 30px auto;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 3px #dadada;
}

.calendar .calendar-dates,
.calendar .calendar-day-name {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 8px;
}

.calendar .calendar-dates-day {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  border: 1px solid #efefef;
  padding: 4px;
  box-sizing: border-box;
  background: #f8f8f8;
  border-radius: 4px;
  color: #333;
}

.calendar .calendar-dates-day-empty {
  background: none;
  border: 0;
  color: #dcdcdc;
  min-height: 28px;
}

.calendar .calendar-day-name div {
  text-align: center;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}

.calendar .calendar-title {
  padding-bottom: 16px;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  margin-bottom: 12px;
}

.calendar .calendar-dates-day.today-date {
  background: #555;
  color: #fff;
}

.calendar #prevMonth,
.calendar #nextMonth,
.calendar #today {
  padding: 2px 6px;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  color: #333;
}

.calendar #today {
  font-size: 13px;
}

.calendar .calendar-title-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.calendar .calendar-button-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.message-grid {
  display: grid;
  grid-template-columns: 320px auto;
  grid-gap: 20px;
}

.message-grid-1 {
  grid-template-columns: 320px auto;
  grid-gap: 20px;
}

/* 02/08/2023 */
.membres-list {
  background-color: var(--white);
  padding: 0;
  border-radius: 20px;
  /* max-height: 500px; */
  max-height: 700px;
  overflow-y: auto;
}

.mems-chat {
  display: grid;
  grid-template-columns: auto max-content;
  grid-gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--grey);
  cursor: pointer;
}

.mems-chat.active {
  background-color: #fde6df;
}

.mems-chat.active:first-of-type {
  border-radius: 20px 20px 0 0;
}

.mems-chat.active:last-of-type {
  border-radius: 0 0 20px 20px;
}

.mems-profile {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  grid-gap: 10px;
}

.mems-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.mems-profile h3 {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}

.mems-profile p {
  margin: 0;
  font-size: 12px;
}

.chat-box {
  background-color: var(--white);
  border-radius: 20px;
  position: relative;
}

.chat-header {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.profile-right-cta {
  display: flex;
  grid-gap: 10px;
}

.delete-icon {
  background-color: var(--primary);
  width: 30px;
  height: 30px;
  line-height: 26px;
  border-radius: 50%;
  text-align: center;
}

.delete-icon img {
  width: 20px;
}

.profile-right-cta .cta-filled {
  font-size: 14px;
  font-weight: normal;
  padding: 5px 15px;
  text-transform: initial;
  margin: 0;
  display: block;
  box-shadow: none;
}

/* 02/08/2023 */
.chat-message {
  padding: 20px;
  /* height: 345px; */
  height: 420px;
  overflow-y: auto;
}

.left-msg {
  display: grid;
  justify-content: flex-start;
}

.right-msg {
  display: grid;
  justify-content: flex-end;
}

.center-msg {
  display: grid;
  justify-content: center;
  align-items: center;
}

/* 02/08/2023 */
.left-msg-box {
  display: flex;
  justify-content: space-between;
  background-color: #f8cbbc;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 16px;
}

.right-msg-box {
  display: flex;
  justify-content: space-between;
  background-color: #ffa485;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 16px;
}

.center-msg-box {
  display: flex;
  justify-content: space-between;
  background-color: #1b1b1b;
  color: #fff;
  padding: 7px 18px;
  font-size: 14px;
  margin-bottom: 16px;
}

.pre-msg {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
}

.pre-msg::-webkit-scrollbar {
  display: none;
}

.center-pre {
  display: grid;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 8px;
}

.center-pre-msg {
  display: flex;
  justify-content: space-between;
  background-color: #0077ff;
  color: #fff;
  padding: 7px 18px;
  white-space: nowrap;
  font-size: 14px;
  margin: 0 0 16px 0;
  cursor: pointer;
}

.left-msg-box .time {
  display: flex;
  align-self: flex-end;
  font-size: 12px;
}

.right-msg-box .time {
  display: flex;
  align-self: flex-end;
  font-size: 12px;
}

.center-msg-box .time {
  display: flex;
  align-self: flex-end;
  font-size: 12px;
}

.chat-footer {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  grid-gap: 10px;
  padding: 20px;
}

.text-msg {
  background-color: #e3e0e0;
  border-radius: 30px;
  padding: 10px;
}

.text-msg input {
  background-color: transparent;
}

.send-icon {
  background-color: var(--primary);
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
}

.send-icon .icon-send {
  transform: rotate(45deg);
}

.login-wrapper.candidate-login {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  position: relative;
  background-image: url(../images/pattern.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0px 350px;
}

.login-wrapper.candidate-login .login-right-panel {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(360deg, rgb(255 255 255) 0%, #f3d6c6 100%);
}

.candidate-login-wrapper {
  position: relative;
  height: 100%;
  background-image: url("../images/blue_abstract_background.jpg");
  background-size: 100%;
}

.candidate-login-wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  border-radius: 0;
  /*background-color: var(--white);*/
}

.login-right-panel h2 span {
  vertical-align: baseline;
}

.login-header {
  display: grid;
  grid-template-columns: max-content auto;
  grid-gap: 15px;
  align-items: center;
}

.header-profile {
  justify-self: flex-end;
  font-weight: bold;
  font-size: 18px;
}

.header-profile a {
  color: var(--black);
}

.header-profile a:hover {
  color: var(--primary);
}

.header-profile img {
  width: 60px;
  height: 60px;
  line-height: 60px;
  object-fit: cover;
  cursor: pointer;
  margin-left: 5px;
}

.wrap-circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: max-content;
  margin: 0 auto;
}

.circle {
  position: relative;
  width: 125px;
  height: 125px;
  margin: 0.5rem;
  border-radius: 50%;
  background: #ffcdb2;
  overflow: hidden;
}

.circle1 {
  position: relative;
  width: 125px;
  height: 125px;
  margin: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.circle.per-25 {
  background-image: conic-gradient(#b5838d 25%, #ffcdb2 0);
}

.circle.per-50 {
  background-image: conic-gradient(#b5838d 50%, #ffcdb2 0);
}

.circle.per-75 {
  background-image: conic-gradient(var(--primary) 75%, var(--white) 0);
}

.circle.per-100 {
  background-image: conic-gradient(#b5838d 100%, #ffcdb2 0);
}

.wrap-circles .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 0;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 300;
  color: var(--primary);
  border: 1px solid var(--primary);
  z-index: 1;
}

.profile-image {
  padding: 5px;
  width: 100%;
  height: 100%;
}

.profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.name-desc {
  margin: 15px 0;
}

.name-desc h2 {
  font-weight: bold;
  word-wrap: break-word;
}

.name-desc p {
  margin-top: 5px;
  font-size: 14px;
}

.edit-icon img {
  width: 20px;
}

.name-desc {
  margin: 15px 0;
}

.name-desc h2 {
  font-weight: bold;
}

.name-desc p {
  margin-top: 5px;
  font-size: 14px;
}

.video-resume {
  padding: 15px 0;
  border-bottom: 1px solid var(--grey);
  border-top: 1px solid var(--grey);
}

.video-resume .text-with-icon {
  word-break: break-all;
}

.video-resume .profile {
  position: relative;
}

.video-resume .profile img {
  border-radius: 10px 10px 0 0;
}

.video-resume .profile .bottom-bar {
  background-color: var(--black);
  border-radius: 0 0 10px 10px;
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
  grid-gap: 10px;
  font-size: 14px;
}

.video-resume .profile .bottom-bar span {
  vertical-align: inherit;
}

.video-resume .profile .bottom-bar img {
  width: 20px;
}

.video-resume h2 {
  font-size: 16px;
  margin: 15px 0 10px;
  font-weight: bold;
}

.video-resume h2 img {
  width: 16px;
}

.text-with-icon {
  background-color: #fff6f9;
  padding: 5px 10px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: auto max-content;
  grid-gap: 5px;
  font-size: 12px;
}

.text-with-icon img {
  width: 12px;
}

.resume-panel {
  margin-top: 20px;
}

.resume-option {
  margin-top: 15px;
  display: grid;
  grid-gap: 10px;
}

.resume-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  text-align: center;
  align-items: center;
  color: var(--primary);
}

.resume-grid {
  display: flex;
  flex-direction: column;
  height: 92px;
  cursor: pointer;
}

.resume-applied {
  font-size: 40px;
}

.resume-bookmark {
  font-size: 28px;
  font-weight: 600;
}

.resume-interview {
  font-size: 40px;
  font-weight: 600;
}

.resume-schedule {
  font-size: 30px;
}

.number {
  text-align: center;
  background-color: var(--primary);
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  border-radius: 50%;
  color: var(--white);
}

.resume-header .text-right {
  display: flex;
  justify-content: right;
}

.resume-header h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 5px 0;
}

.resume-header img {
  width: 32px;
}

.resume-option textarea,
.resume-option input {
  border: 0;
  background-color: transparent;
}

.resume-option textarea:focus {
  outline: none;
}

.resume-option .text-with-icon.active,
.resume-option .text-with-icon.active {
  border: 1px solid #ac8273;
}

.right-resume-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.right-resume-panel .resume-option {
  margin-top: 6px;
  max-height: 210px;
  overflow-y: auto;
}

.list-resume {
  overflow: auto;
}

.list-resume h2 {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
}

.list-resume h2 img {
  width: 20px;
}

.text-with-icon.with-org {
  text-align: center;
}

.text-with-icon.with-org h6 {
  font-weight: bold;
  font-size: 10px;
  line-height: 18px;
  margin: 0;
}

.text-with-icon.with-org p {
  margin: 0;
  font-size: 10px;
}

.text-with-icon.with-org img {
  width: 18px;
}

.text-with-icon.with-filled-bg {
  background-color: var(--primary);
  color: var(--white);
}

.inline-options.list-resume {
  height: auto;
  margin: 20px 0;
}

/* .inline-options .resume-option {
  display: inline-flex;
  grid-gap: 10px;
  margin-top: 6px;
} */
.inline-options .resume-option {
  display: inline-flex;
  grid-gap: 10px;
  margin-top: 6px;
  width: 100%;
  flex-wrap: wrap;
}

.list-resume.desc .resume-option .text-with-icon {
  /* height: 150px; */
}

.job-listing header {
  padding-bottom: 0;
}

.job-listing header .container {
  max-width: 100%;
}

.job-listing .header-top-section.login-header {
  display: grid;
  grid-template-columns: max-content auto max-content;
  align-items: flex-start;
  background-color: var(--white);
  padding: 20px;
}

.header-center-section {
  max-width: 700px;
  margin: 0 auto;
}

.header-center-section .search-wrapper {
  margin: 0;
}

.loaction-title {
  margin: 50px 0 0 0;
}

.loaction-title h2 {
  margin: 0;
  font-weight: 600;
}

.loaction-title p {
  margin: 10px 0 0;
  font-size: 14px;
}

.loaction-title p img {
  width: 20px;
}

.job-listing {
  display: grid;
  grid-gap: 20px;
  align-items: flex-start;
}

.job-listing.main-job-listing {
  display: block;
}

.job-listing.main-job-listing .job-listing-height {
  display: grid;
  grid-gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.job-listing.main-job-listing .job-listing-height {
  max-height: 1000px;
  overflow-y: auto;
}

.job-list-box .job-header {
  display: grid;
  grid-template-columns: auto max-content;
}

.job-list-box a {
  color: var(--black);
}

.job-list-box a:hover {
  color: var(--black);
}

.job-list-box .job-header h1 {
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}

.job-list-box .job-header h4 {
  font-weight: 600;
  margin: 6px;
}

.job-bookmark-apply {
  display: flex;
  align-items: center;
  grid-gap: 6px;
}

.job-bookmark-apply .bookmark img {
  width: 30px;
}

.job-bookmark-apply .bookmark i {
  font-size: 22px;
  color: var(--primary);
}

.job-bookmark-apply .cta {
  padding: 6px 30px;
  color: var(--primary);
}

.job-bookmark-apply .cta:hover {
  color: var(--white);
}

.post-details {
  display: flex;
  margin-top: 6px;
  grid-gap: 10px;
}

.post-details > div {
  padding-right: 10px;
  border-right: 1px solid #b1b0b0;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  grid-gap: 6px;
  grid-template-columns: 3fr 9fr;
  align-items: center;
  color: #4a4a4a;
}

.job-detail-page .post-details > div {
  display: grid;
  grid-gap: 6px;
  grid-template-columns: 3fr 9fr;
}

.post-details > div img {
  width: 20px;
}

.post-details > div:last-of-type {
  border-right: 0;
}

.post-details > div .text-black {
  color: #252525;
  font-weight: bold;
  display: flex;
  align-items: center;
  grid-gap: 5px;
}

.job-desc {
  font-size: 12px;
  font-weight: 500;
  align-items: flex-start;
  margin-top: 10px;
}

.job-desc img {
  width: 20px;
}

.job-desc span {
  display: inline-block;
  vertical-align: baseline;
}

.apply-btn.active {
  background-color: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
}

.with-bg-border {
  position: relative;
  z-index: 0;
}

/* .with-bg-border:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1080px;
  border-bottom: 2px dashed #d2d2d2;
  left: 50%;
  top: -589px;
  transform: translateX(-50%);
  border-radius: 300%;
  z-index: -1;
} */
/* 
.with-bg-border:after {
  position: absolute;
  content: "";
  width: 90%;
  height: 990px;
  border-bottom: 2px dashed #d2d2d2;
  left: 50%;
  top: -589px;
  transform: translateX(-50%);
  border-radius: 300%;
  z-index: -1;
} */

/* .bg-dotted {
  position: absolute;
  content: "";
  width: 80%;
  height: 900px;
  border-bottom: 2px dashed #d2d2d2;
  left: 50%;
  top: -589px;
  transform: translateX(-50%);
  border-radius: 300%;
  z-index: -1;
} */

.border-left-dotted:before {
  position: absolute;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  height: 350px;
  width: 700px;
  border-radius: 400px 400px 0 0;
  border-top: 2px dashed #d2d2d2;
  z-index: -1;
}

.border-left-dotted:after {
  position: absolute;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  height: 450px;
  width: 900px;
  border-radius: 500px 500px 0 0;
  border-top: 2px dashed #d2d2d2;
  z-index: -1;
}

/* .border-right-dotted:before{position: absolute;
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(-50%, -50%);
        height: 350px;
        width: 700px;
        border-radius: 400px 400px 0 0;
        border-top: 2px dashed #d2d2d2;
        z-index: -1;} */
.popup-wrapper {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}

.popup-wrapper .popup-div {
  position: absolute;
  background-color: var(--white);
  width: 500px;
  border-radius: 50px 0 50px 0;
  padding: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-header {
  display: grid;
  grid-template-columns: auto max-content;
  grid-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.popup-header h2 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

.close-div {
  font-weight: bold;
  cursor: pointer;
}

.details-add {
  cursor: pointer;
  vertical-align: baseline;
}

.details-add i {
  font-size: 24px;
}

.popup-wrapper .popup-div.popup-medium {
  width: 1000px;
}

.popup-wrapper .popup-div.popup-large {
  width: 90%;
  height: 90%;
  overflow-y: auto;
}

.applied-candidates,
.selected-candidates {
  max-width: 90%;
  margin: 0 auto;
}

.applied-candidates .candidate-header-sec {
  grid-template-columns: auto auto max-content;
}

.applied-candidates .candidate-header-sec .app-status {
  text-align: center;
  padding: 0 50px;
}

.applied-candidates .candidate-header-sec .app-status h6 {
  font-size: 12px;
  margin-bottom: 5px;
}

/* .applied-candidates .candidate-header-sec .app-status p {
  font-size: 12px !important;
  margin-bottom: 5px !important;
  color: " #ffff" !important;
  background-color: "#f15a26" !important;
  border-radius: 12px !important;
} */

.applied-candidates .candidate-header-sec .app-status select {
  text-transform: uppercase;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 10px;
  border-radius: 30px;
}

.applied-candidates .candidate-header-sec .candidate-view {
  display: flex;
  grid-gap: 10px;
  flex-direction: column;
}

.schedule {
  cursor: pointer;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 30px;
  padding: 6px 12px;
  text-transform: uppercase;
  font-size: 14px;
  width: 50%;
  text-align: center;
}

.schedule img {
  width: 20px;
  margin-left: 10px;
}

.schedule-form {
  border-top: 1px solid var(--grey);
  margin: 10px auto 0;
  max-width: 600px;
}

.time-slot-sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr) auto;
  grid-gap: 20px;
}

.time-slot-sec .post-new-job-input {
  background-color: var(--white);
  padding: 14px;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.time-slot-sec button {
  background-color: transparent;
  border: 0;
  vertical-align: middle;
  margin-top: 16px;
  cursor: pointer;
}

.sch-grid-one {
  display: grid;
  grid-template-columns: 4fr 4fr;
  grid-gap: 15px;
}

.sch-grid-two {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  grid-gap: 15px;
}

.sch-grid-three {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-gap: 15px;
}

.tags-wrap {
  display: flex;
  grid-gap: 10px;
}

.tags {
  background-color: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 5px;
  color: var(--primary);
  font-size: 13px;
}

.selected-candidates textarea {
  width: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 10px;
  min-height: 100px;
}

.candidate-cta {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  grid-gap: 10px;
}

.recruiter-home header {
  padding-bottom: 20px;
}

.applied-jobs-sec.two-grid {
  grid-template-columns: max-content auto;
}

.applied-jobs-sec.two-grid .left-panel {
  border: 0;
}

.applied-jobs-sec.two-grid .right-panel {
  max-width: 80%;
  margin: 0 auto;
  width: 100%;
}

.applied-jobs-sec.two-grid .right-panel .jobs-title {
  display: block;
}

.applied-jobs-sec.two-grid .right-panel .job-list-box {
  margin: 20px 0;
}

#post-job .popup-div {
  max-height: 500px;
  overflow-y: auto;
}

.full-width {
  grid-column: span 2;
}

#progressContainer {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #f2f2f2;
  overflow: hidden;
}

#uploadProgress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
}

#uploadProgress::-webkit-progress-bar {
  background-color: transparent;
}

#uploadProgress::-webkit-progress-value {
  background-color: #007bff;
}

#uploadedImageContainer {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border-radius: 50%;
  overflow: hidden;
}

#uploadedImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#candidate-profile .profile-grid.grid-one {
  grid-template-columns: max-content auto;
}

#view-profile .two-grid {
  padding: 0;
}

#view-profile .two-grid .resume-panel {
  margin: 0;
}

.job-detail-page {
  display: grid;
  grid-template-columns: auto 400px;
  grid-gap: 30px;
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.job-detail-page .post-details {
  display: grid;
  grid-template-columns: auto;
  grid-gap: 15px;
  margin: 20px 0;
}

.job-desc {
  margin-top: 0;
}

.job-desc i.icon-list {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
}

.job-desc li {
  margin: 10px 0;
}

.job-desc li:first-of-type {
  margin-top: 0;
}

.job-detail-page .post-details > div {
  border-right: 0;
}

.similar-job-box {
  display: grid;
  grid-template-columns: auto 100px;
  align-items: center;
}

.similar-jobs-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.similar-job-box h4.text-black {
  margin: 6px 0;
}

.similar-jobs .box-div {
  margin: 16px 0;
  font-weight: bold;
}

.similar-jobs .box-div h1,
.similar-jobs .box-div h4 {
  font-weight: bold;
  font-size: 14px;
}

.cta-filled.cta-xs.back-dashboard img {
  width: 16px;
}

.cta-filled.cta-xs.back-dashboard {
  box-shadow: none;
  font-weight: normal;
  font-size: 12px;
  padding: 8px 20px;
}

.cta-filled.cta-xs.back-dashboard:hover {
  color: var(--whitegit);
}

.custom-arrow.prev-arrow {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 24px;
  height: 26px;
  cursor: pointer;
}

.custom-arrow.next-arrow {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 24px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
}

.custom-arrow.next-arrow {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 24px;
  height: 26px;
  cursor: pointer;
}

.password-section {
  position: relative;
}

.password-section .password-toggle-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}

.password-section .password-toggle-button img {
  width: 20px;
}

.pagination img {
  margin: 0 8px;
}

.pagination span {
  vertical-align: baseline;
}

.profile-cta {
  display: flex;
  grid-gap: 10px;
  justify-content: center;
}

.header-wrapper-search {
  position: relative;
}

.header-wrapper-search-container.search-section {
  margin: 0 auto;
  width: 100%;
}

.header-wrapper-search-container .loaction-title {
  margin: 20px 0 0 0;
}

.header-wrapper-search-container .loaction-title p {
  margin: 0;
}

.company-logo {
  /* background-color: var(--white);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px; */
}

.company-logo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  background-color: var(--white);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  align-items: center;
  color: #d31e25;
  margin-bottom: 20px;
}

.filter-tags span {
  color: #cf1322;
  background: #fff1f0;
  border: 1px solid #ffa39e;
  border-radius: 30px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  grid-gap: 5px;
}

.filter-tags span i {
  color: #404040;
  font-family: sans-serif;
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  cursor: pointer;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  align-items: center;
  color: #d31e25;
}

.filter-tags span {
  color: #cf1322;
  background: #fff1f0;
  border: 1px solid #ffa39e;
  border-radius: 30px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  grid-gap: 5px;
}

.filter-tags span i {
  color: #404040;
  font-family: sans-serif;
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  cursor: pointer;
}

.login-left-panel {
  position: relative;
  overflow: hidden;
  /* background: #040667; */
  /* background: linear-gradient(280deg, #040667 0%, #040667 41%); */
}
.ant-modal-footer {
  display: none !important;
}
.login-left-panel:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img-nsure/login-sea-img.png);
  border-radius: 45px;
  width: 100%;
  background-repeat: no-repeat;
  height: 100%;
  z-index: 9;
  background-size: 100%;
}

/*.login-left-panel:before {
  position: absolute;
  content: "";
  width: 55%;
  height: 55%;
  background: #b14b28;
  top: -50px;
  right: -50px;
  border-radius: 200px;
  overflow: hidden;
  z-index: 1;
}

.login-left-panel:after {
  position: absolute;
  content: "";
  width: 75%;
  height: 75%;
  background: #a94929;
  top: -50px;
  right: -50px;
  border-radius: 300px;
  overflow: hidden;
}
*/
.login-content {
  position: relative;
  z-index: 1;
}

.jobs-by-location-wrap {
  margin: 20px 0 30px;
  position: relative;
  z-index: 2;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  flex-flow: row wrap;
  flex-wrap: wrap;
  grid-gap: 20px;
  height: 100%;
  justify-content: flex-start;
}

.location-card.box-div {
  padding: 0;
}

.location-card {
  width: 300px;
  margin-bottom: 10px;
}

.location-title {
  padding: 10px 20px;
  box-shadow: 1px 1px 10px #00000024;
  border-radius: 10px 10px 0 0;
}

.location-title h6 {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}

.list-location {
  text-align: left;
  padding: 10px 15px 0;
}

.list-location li {
  margin: 5px 0;
}

.list-location li a {
  display: block;
  padding: 4px 0;
  color: var(--black);
  cursor: pointer;
}

.list-location li a:hover {
  color: var(--primary);
}

.terms-conditions {
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.terms-conditions ul {
  padding-left: 20px;
}

.terms-conditions ul li {
  list-style: circle;
  margin: 15px 0;
}

.applied-jobs-sec.two-grid {
  grid-gap: 0;
}

.steps-cta {
  margin-top: 30px;
}

.steps-cta a {
  display: inline-block;
}

.steps-cta a:hover {
  color: var(--white);
}

.ant-modal-body .two-grid {
  padding: 0;
}

.ant-modal-body .container {
  max-width: 100%;
}

.ant-modal-body .container .resume-panel {
  margin-top: 0;
}

.view-job-modal .ant-modal-content {
  border-radius: 50px 0 50px 0;
}

.view-job-modal .job-detail-page .post-details > div {
  grid-template-columns: 4fr 8fr;
}

.view-job-modal .ant-modal-content .ant-modal-body {
}

.view-job-modal .ant-modal-close-x {
  position: absolute;
  top: -10px;
  right: -15px;
  background: #f15a26;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

.delete-jobs {
  border: 0;
  color: var(--primary);
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
}

.popup-header .close-div {
  position: absolute;
  top: -10px;
  right: -15px;
  background: #f15a26;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.view-job-modal .ant-select {
  background-color: var(--white);
  padding: 8px !important;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.ant-select input {
  box-shadow: none;
}

.post-job-cta {
  display: flex;
  grid-gap: 10px;
  justify-content: center;
}

/* line-height: 30px;
} */

.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

.delete-jobs {
  border: 0;
  color: var(--primary);
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
}

.popup-header .close-div {
  position: absolute;
  top: -10px;
  right: -15px;
  background: #f15a26;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.postjob-popup .ant-select {
  background-color: var(--white);
  padding: 8px !important;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.postjob-popup .ant-select input {
  box-shadow: none;
}

.post-job-cta {
  display: flex;
  grid-gap: 10px;
  justify-content: center;
}

.profile-photo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.candidate-profile-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 19px;
}

.seeker-profile {
  width: 115px;
  height: 115px;
  border-radius: 50%;
}

.profile-action-icons {
  color: var(--primary);
}

.profile-action-icons i {
  font-size: 14px;
}

.profile-action-icons i.icon-edit {
  font-size: 18px;
  margin-bottom: 5px;
}

.left-panel-resume i {
  color: var(--primary);
  font-size: 12px;
}

.view-job-modal .ant-modal-header {
  border-radius: 50px 2px 0 0;
  padding: 20px 24px 16px;
}

.resume-download {
  display: flex;
  align-items: center;
  grid-gap: 5px;
}

.resume-download i {
  font-size: 14px;
}

.resume-download .icon-close {
  margin-top: 5px;
  font-size: 11px;
}

.emp-details h2 {
  margin-bottom: 0px;
}

.emp-details p {
  margin-bottom: 5px;
}

.interview-notify-page {
  margin: 40px auto;
}

.schedule-page-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-gap: 40px;
}

.interview-action {
  padding: 30px;
}

.interview-action h3 {
  font-size: 20px;
}

.interview-action button {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #fff;
  background-color: #46494c;
  transition: 0.3s;
  cursor: pointer;
}

.interview-action button.selected {
  background-color: #008000;
}

.action-btns {
  margin-top: 10px;
}

.interview-action button.decline-btn {
  background-color: #eb0820;
}

.interview-action h5 {
  font-size: 16px;
  margin-bottom: 0;
}

.interview-action h4 {
  font-size: 20px;
}

.interview-action p {
  font-size: 16px;
  margin-bottom: 0px;
}

.notify-message-card {
  padding: 10px 15px;
  border-radius: 12px;
}

.declined-card {
  background-color: rgb(255 35 35 / 29%);
  color: rgb(146, 0, 0);
}

.accepted-card {
  background-color: rgb(0 172 0 / 40%);
  color: rgb(0, 65, 0);
}

.schedule-job h1 {
  margin-bottom: 0;
}

.post-details.interview-details {
  display: block;
}

.post-details i {
  font-size: 14px;
}

.interview-details h1 {
  font-size: 18px;
}

.interview-details.post-details > div {
  margin: 15px 0;
  border: 0;
}

.no-jobs-found {
  text-align: center;
}

.no-jobs-found h6 {
  font-size: 20px;
  color: var(--primary);
}

.faq-wrapper {
  margin: 20px 0;
  position: relative;
  z-index: 4;
}

.faq h6 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.faq .faq-list {
  position: sticky;
  top: 19%;
  list-style: none;
  padding: 0px;
  width: 85%;
}

.faq .faq-list li {
  position: relative;
  font-size: 16px;
  text-align: center;
  padding: 12px;
  margin-bottom: 8px;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq-list li.active {
  border-radius: 6px 0px 0px 6px;
  box-shadow: 15px 2px 15px rgba(0, 0, 0, 0.103);
}

.faq .faq-list li.active::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 100%;
  border-top: 24px solid transparent;
  border-left: 38px solid #fff;
  border-bottom: 24px solid transparent;
}

.faq .faq-list li.active::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 5px;
  background-color: var(--primary);
  border-radius: 6px 0px 0px 6px;
}

.faq .faq-list li:hover {
  transform: translateY(-3px);
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.103);
}

.custom-select-antd.date-of-birth {
  background-color: var(--white);
  padding: 14px;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.view-job-modal .ant-select.college-dd {
  margin-top: 2px;
}

.view-job-modal .ant-select.college-dd .ant-select-selector {
  padding: 0;
  border: 0;
}

.react-calendar {
  border: 0 !important;
  border-radius: 10px;
}

.react-calendar__viewContainer {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: 0 0 10px 10px;
}

.react-calendar__month-view__days {
}

.react-calendar__tile {
}

.react-calendar__month-view__days__day--weekend {
  color: #000000 !important;
}

.react-calendar__tile--active {
  background: var(--white) !important;
  color: var(--primary) !important;
}

.post-new-job-input.date-input-field {
  width: 100%;
  padding: 0;
}

.post-new-job-input.date-input-field .ant-picker-input {
  background-color: var(--white);
  width: 100%;
  padding: 14px;
  border: 0px solid #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.custom-style.view-job-modal.schedule-jobs-form {
  max-width: 600px;
}

.custom-style.view-job-modal.schedule-jobs-form .selected-candidates {
  max-width: 100%;
}

.ant-modal-footer {
  padding: 20px !important;
}

.filter-sec-wrap {
  /* Adjust the styles as per your layout requirements for desktop */
  display: block;
  /* Show the filter content by default on desktop */
}

.filter-title {
  display: grid;
  /* Hide the filter title on desktop as it is not needed */
}

.map-container {
  position: relative;
  width: 150%;
  margin-top: 0;
  text-align: center;
}

/* 02/08/2023 */
.user-type {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
}

.video-button {
  border-radius: 5px;
}

.no-padding {
  padding: 0;
}

.video-record-grid {
  display: flex;
  width: 100%;
  justify-content: center;
  grid-gap: 20px;
  align-items: center;
}

.video-record-icon {
  font-size: 30px;
}

.video-btns {
  text-align: right;
  margin-top: 30px;
}

.video-btns button,
.stop-btn {
  background-color: var(--black);
  color: var(--white);
  border-radius: 5px;
  padding: 5px;
  border: 0;
  min-width: 60px;
  text-align: center;
  cursor: pointer;
}

.record-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  border: 0;
}

.download-btn {
  display: grid;
  justify-content: flex-end;
}

.video-tag {
  background: #000;
  padding: 20px 10px;
  border-radius: 10px;
  margin-top: 10px;
}

.download-btn button {
  background-color: var(--green);
  color: var(--white);
  border: 0;
  border-radius: 5px;
  padding: 5px 10px;
}

/* .upload-cv {
  display: flex;
  flex-direction: row;
}

.upload-cv i {
  align-self: center;
} */

.chat-info {
  position: relative;
}

.chat-info .icon-chat {
  font-size: 20px;
}

.msg-count {
  background-color: #e90505;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 18px;
  color: var(--white);
  text-align: center;
  position: absolute;
  top: -6px;
  right: -10px;
  font-size: 10px;
  font-weight: bold;
}

/* 
.upload-cv {
  position: relative;
}

.icon-close {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: 8px;
} */

.video-livepreview {
  width: 100%;
}

.mirroring {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
}

.popup-content {
  position: fixed;
  top: 50px;
  right: 20px;
  padding: 1em;
  color: white;
  background-color: var(--primary);
  border-radius: 7px;
}

.hide {
  display: none;
}

.d-flex {
  display: flex;
}

.interview-schedule .schedule-attributes {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

.interview-schedule .schedule-title {
  border-bottom: 0;
}

.schedule-att-list {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  flex-wrap: wrap;
}

.interview-buttons {
  display: grid;
  grid-gap: 10px;
}

.interview-buttons button {
  width: 160px;
  border: 0;
  border-radius: 30px;
  text-transform: uppercase;
  cursor: pointer;
  height: 40px;
}

.schedule-main-grid {
  align-items: center;
  display: grid;
  width: 100%;
  grid-template-columns: max-content auto max-content;
}

.accept {
  background-color: #0aa327;
  color: #fff;
}

.reject {
  background-color: #f00;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .container {
    max-width: 96%;
  }

  .two-grid {
    grid-gap: 15px;
  }

  .steps-grid {
    margin-top: 20px;
    grid-template-columns: 1fr max-content 1fr max-content 1fr;
    grid-gap: 20px;
    white-space: nowrap;
    overflow-x: auto;
  }

  .steps-grid .steps {
    white-space: initial;
  }

  .counter-grid h3 {
    font-size: 40px;
    line-height: 50px;
  }

  .counter-grid h4 {
    font-size: 30px;
    line-height: 40px;
  }

  .brand-section {
    grid-gap: 20px;
    padding-right: 20px;
  }

  .sponcer-section h1 {
    font-size: 26px;
  }

  .banner-section .banner-title {
    font-size: 70px;
    line-height: 80px;
  }

  header {
    padding-bottom: 50px;
  }

  .banner-section .banner-sub-title {
    margin-top: 20px;
  }

  .inline-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }

  .resume-header {
    grid-template-columns: repeat(2, 1fr);
  }

  .right-resume-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .applied-jobs-sec.two-grid .right-panel {
    max-width: 100%;
  }

  .post-details {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .filter-section {
    position: static;
  }

  .filter-sec-wrap {
    display: none;
  }

  .filter-title {
    display: grid;
    cursor: pointer;
  }

  .filter-sec-wrap.active {
    display: block;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: block;
  }

  .with-bg-border:before,
  .bg-dotted,
  .with-bg-border:after {
    content: none;
  }

  .container {
    max-width: 95%;
  }

  .cta {
    padding: 10px 15px;
  }

  header {
    padding-bottom: 30px;
  }

  .header-top-section {
    padding: 10px;
  }

  .header-cta {
    grid-gap: 5px;
  }

  .header-cta .cta-outline {
    font-size: 8px;
    padding: 5px 10px;
  }

  .banner-section .banner-title {
    font-size: 36px;
    line-height: 36px;
    margin-top: 10px;
  }

  .banner-section .banner-sub-title {
    font-size: 24px;
    line-height: 30px;
    margin-top: 10px;
  }

  .banner-section .banner-desc {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0 0 0;
  }

  .search-section {
    max-width: 100%;
    margin: 30px auto 0 auto;
  }

  .search-section h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .search-wrapper {
    margin-top: 10px;
    grid-template-columns: auto;
    grid-gap: 0;
    padding: 10px 10px 15px;
  }

  .option-list:before {
    content: none;
  }

  .search-wrapper > div {
    border-bottom: 1px solid var(--grey);
    padding: 15px;
  }

  .search-wrapper > div:nth-of-type(3) {
    border-bottom: 0;
  }

  .search-section.active .search-wrapper {
    border-bottom: 0;
  }

  .search-filter h1 span {
    font-size: 30px;
  }

  .search-filter h1 {
    margin-top: 0;
  }

  .steps-wrapper {
    padding: 20px 0;
  }

  .main-title span {
    display: block;
  }

  .main-title {
    font-size: 24px;
    line-height: 28px;
  }

  .steps-grid {
    margin-top: 20px;
    grid-template-columns: 280px max-content 280px max-content 280px;
    grid-gap: 20px;
    white-space: nowrap;
    overflow-x: auto;
  }

  .steps-grid .steps {
    white-space: initial;
  }

  .steps-bg {
    display: none;
  }

  .location-grid {
    padding: 20px 0;
    grid-template-columns: auto;
  }

  .location-list .cta {
    margin-top: 15px;
  }

  .steps-wrapper.location-page-steps .steps-grid {
    grid-gap: 20px;
  }

  .steps-wrapper.location-page-steps .steps-grid .steps {
    width: 300px;
  }

  .counter-wrapper {
    padding: 20px 0;
  }

  .counter-wrapper:before,
  .counter-wrapper:after,
  .counter-two:after,
  .counter-three:after,
  .counter-two:before,
  .counter-four:before,
  .counter-one:before,
  .counter-three:before {
    content: none;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }

  .counter-grid h3 {
    font-size: 40px;
    line-height: 40px;
  }

  .counter-grid > div {
    padding: 20px 0;
  }

  .counter-grid p {
    font-size: 16px;
    line-height: 22px;
  }

  .counter-border-left,
  .counter-border-right {
    display: none;
  }

  .category-wrapper {
    padding: 0;
  }

  .clients-slider {
    margin-top: 10px;
  }

  .owl-prev {
    left: -50px !important;
  }

  .owl-next {
    right: -50px !important;
  }

  .border-left-dotted {
    display: none;
  }

  footer .container {
    grid-template-columns: auto;
    padding: 5px;
  }

  .brand-section {
    grid-template-columns: auto;
    grid-gap: 25px;
    padding-right: 0;
    border-right: 0;
  }

  .sponcer-section-wrap {
    grid-template-columns: auto;
    margin-top: 25px;
  }

  .sponcer-section h1 {
    font-size: 30px;
  }

  .sponcer-section-wrap .social-wrapper {
    display: flex;
    justify-self: center;
  }

  .login-wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
    height: auto;
    padding: 0 0;
  }

  .login-wrapper .login-left-panel {
    height: auto;
    padding: 0 !important;
  }

  .inline-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }

  .two-grid {
    grid-template-columns: auto;
    padding: 20px 0;
    grid-gap: 10px;
  }

  .left-panel {
    padding-right: 0;
    border: 0;
    position: static;
  }

  .mobile-position-bottom .left-menu ul {
    white-space: nowrap;
    overflow-x: auto;
    display: flex;
    grid-gap: 10px;
  }

  .mobile-position-bottom .left-menu li {
    margin: 0;
    text-align: center;
  }

  .mobile-position-bottom .left-menu li a span {
    display: block;
    font-weight: bold;
    font-size: 12px;
  }

  .mobile-position-bottom .left-menu li.active a {
    border-radius: 0;
    box-shadow: none;
  }

  .mobile-position-bottom .left-menu li a i {
    background-color: var(--white);
    color: var(--primary);
  }

  .profile-grid {
    display: block;
  }

  .input-field.profile-logo {
    display: block;
  }

  .right-panel {
    padding-bottom: 60px;
  }

  #chart {
    width: 100% !important;
  }

  .jobs-title.mobile-job-title {
    grid-template-columns: auto max-content max-content;
    margin-top: 20px;
  }

  .mobile-job-title .tabs-nav {
    order: 3;
    grid-column: span 3;
    justify-self: center;
    margin-top: 10px;
  }

  .mobile-job-title .cta {
    order: 2;
  }

  .job-box {
    grid-template-columns: auto;
  }

  .job-box:first-of-type {
    margin-top: 0;
  }

  .popup-wrapper .popup-div.popup-medium {
    width: 90%;
    height: 90%;
    overflow-y: auto;
  }

  #post-job .popup-div {
    max-height: 90%;
  }

  .applied-candidates,
  .selected-candidates {
    max-width: 100%;
  }

  .search-section.innerpage-search .search-wrapper {
    grid-template-columns: auto;
  }

  .search-section.innerpage-search .search-wrapper .option-list:before {
    content: none;
  }

  .candidate-wrapper {
    grid-template-columns: auto;
  }

  .box-div {
    padding: 10px;
  }

  .profile-sec {
    grid-template-columns: 50px auto;
    grid-gap: 5px;
  }

  .profile-sec h2 {
    font-size: 14px;
  }

  .profile-sec p {
    margin: 0;
    font-size: 12px;
  }

  .candidate-view .icons {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .can-cnt {
    display: block;
  }

  .schedule-grid {
    grid-template-columns: auto;
  }

  .schedule-list {
    padding-right: 0;
    border-right: 0;
  }

  .schedule-title {
    grid-template-columns: auto;
    grid-gap: 5px;
  }

  .attr-list {
    flex-wrap: wrap;
  }

  .calendar {
    max-width: 100%;
    margin: 0 0 20px;
  }

  .message-grid {
    grid-template-columns: auto;
    margin-bottom: 20px;
  }

  .applied-candidates .candidate-header-sec .profile-sec {
    grid-column: span 3;
  }

  .applied-candidates .candidate-header-sec .app-status {
    padding: 0;
    grid-column: span 2;
  }

  .applied-candidates .candidate-header-sec .candidate-view {
    justify-self: end;
  }

  .sch-grid-one,
  .sch-grid-two {
    grid-template-columns: auto;
    grid-gap: 0;
  }

  .candidate-contact {
    grid-template-columns: auto;
    grid-gap: 10px;
  }

  .schedule {
    width: max-content;
  }

  .explore-wrapper {
    padding-top: 0;
  }

  .explore-grid {
    grid-template-columns: 200px 200px 200px;
    white-space: nowrap;
    grid-gap: 10px;
    overflow-x: auto;
  }

  .explore-grid .item {
    margin: 5px 0;
  }

  .explore-grid .item:hover:before {
    content: none;
  }

  .explore-grid .item h3 {
    font-size: 15px;
    white-space: initial;
  }

  .comp-explore-grid {
    grid-template-columns: 200px 200px 200px;
    white-space: nowrap;
    grid-gap: 10px;
    overflow-x: auto;
  }

  .comp-explore-grid .item {
    margin: 5px 0;
  }

  .comp-explore-grid .item:hover:before {
    content: none;
  }

  .comp-explore-grid .item h3 {
    font-size: 15px;
    white-space: initial;
  }

  .right-resume-panel {
    grid-template-columns: auto;
  }

  .resume-header {
    grid-template-columns: repeat(2, 1fr);
    width: max-content;
    margin: 0 auto;
    grid-gap: 10px;
  }

  .inline-options .resume-option {
    flex-wrap: wrap;
  }

  .resume-header h2 {
    font-size: 14px;
  }

  .popup-wrapper .popup-div {
    width: 90%;
    height: 90%;
    overflow-y: auto;
  }

  .header-pp img {
    width: 50px;
  }

  .applied-jobs-sec.two-grid {
    grid-template-columns: auto;
  }

  .applied-jobs-sec.two-grid .right-panel {
    max-width: 100%;
  }

  .job-bookmark-apply .bookmark img {
    margin-right: 0;
  }

  .job-list-box .job-header h1 {
    font-size: 20px;
  }

  .job-list-box .job-header h4 {
    font-size: 14px;
  }

  .post-details {
    flex-wrap: wrap;
  }

  .cta-filled.cta-xs.back-dashboard {
  }

  .reachus-grid {
    grid-template-columns: auto;
    padding-top: 0;
  }

  .contact-section h6 {
    font-size: 13px;
  }

  .form-wrapper {
    background-image: none;
  }

  .inline-style-grid {
    grid-template-columns: auto;
  }

  .job-detail-page {
    grid-template-columns: auto;
  }

  .job-listing .header-top-section.login-header {
    grid-template-columns: auto;
  }

  .job-listing header .header-center-section {
    max-width: 100%;
    order: 3;
    grid-column: span 3;
  }

  .header-profile {
    grid-column: span 2;
  }

  .loaction-title {
    margin: 20px 0 0 0;
  }

  .with-bg-border:before,
  .bg-dotted,
  .with-bg-border:after {
    content: none;
  }

  .container {
    max-width: 95%;
  }

  .cta {
    padding: 10px 15px;
  }

  header {
    padding-bottom: 30px;
  }

  .header-top-section {
    padding: 10px;
  }

  .header-cta {
    grid-gap: 5px;
  }

  .banner-section .banner-title {
    font-size: 36px;
    line-height: 36px;
    margin-top: 10px;
  }

  .banner-section .banner-sub-title {
    font-size: 24px;
    line-height: 30px;
    margin-top: 10px;
  }

  .banner-section .banner-desc {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0 0 0;
  }

  .search-section {
    max-width: 100%;
    margin: 30px auto 0 auto;
  }

  .search-section h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .search-wrapper {
    margin-top: 10px;
    grid-template-columns: auto;
    grid-gap: 0;
    padding: 10px 10px 15px;
  }

  .option-list:before {
    content: none;
  }

  .search-wrapper > div {
    border-bottom: 1px solid var(--grey);
    padding: 15px;
  }

  .search-wrapper > div:nth-of-type(3) {
    border-bottom: 0;
  }

  .search-section.active .search-wrapper {
    border-bottom: 0;
  }

  .search-filter h1 span {
    font-size: 30px;
  }

  .search-filter h1 {
    margin-top: 0;
  }

  .steps-wrapper {
    padding: 20px 0;
  }

  .main-title span {
    display: block;
  }

  .main-title {
    font-size: 24px;
    line-height: 28px;
  }

  .steps-grid {
    margin-top: 20px;
    grid-template-columns: auto;
    grid-gap: 20px;
    white-space: nowrap;
    overflow-x: auto;
  }

  .steps-grid .next-arrow {
    transform: rotate(90deg);
  }

  .steps-grid .steps {
    white-space: initial;
  }

  .steps-bg {
    display: none;
  }

  .location-grid {
    padding: 20px 0;
    grid-template-columns: auto;
  }

  .map-container {
    width: 100%;
  }

  .location-list .cta {
    margin-top: 15px;
  }

  .steps-wrapper.location-page-steps .steps-grid {
    grid-gap: 20px;
    grid-template-columns: auto;
  }

  .steps-wrapper.location-page-steps .steps-grid .steps {
    width: 100%;
  }

  .counter-wrapper {
    padding: 20px 0;
  }

  .counter-wrapper:before,
  .counter-wrapper:after,
  .counter-two:after,
  .counter-three:after,
  .counter-two:before,
  .counter-four:before,
  .counter-one:before,
  .counter-three:before {
    content: none;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }

  .counter-grid h3 {
    font-size: 40px;
    line-height: 40px;
  }

  .counter-grid > div {
    padding: 20px 0;
  }

  .counter-grid p {
    font-size: 16px;
    line-height: 22px;
  }

  .counter-border-left,
  .counter-border-right {
    display: none;
  }

  .category-wrapper {
    padding: 0;
  }

  .clients-slider .item {
    width: 140px !important;
    height: 140px;
  }

  .clients-slider {
    margin-top: 10px;
    margin-bottom: 30px;
    max-width: 90%;
    padding-bottom: 0;
  }

  .custom-arrow.prev-arrow {
    left: 0;
    z-index: 9;
  }

  .custom-arrow.next-arrow {
    right: 0;
    z-index: 9;
  }

  .owl-prev {
    left: -50px !important;
  }

  .owl-next {
    right: -50px !important;
  }

  .border-left-dotted {
    display: none;
  }

  .brand-section {
    grid-template-columns: max-content auto;
    grid-gap: 15px;
    padding-right: 0;
    border-right: 0;
  }

  .brand-section .logo-section {
    text-align: center;
  }

  .copy-right {
    margin-top: 16px;
    text-align: center;
  }

  .quick-links ul {
    margin: 0px 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
  }

  .sponcer-section-wrap {
    grid-template-columns: auto;
    margin-top: 0px;
  }

  .sponcer-section h1 {
    font-size: 24px;
    margin-right: 10px;
  }

  .sponcer-section img {
    width: 45px;
  }

  .sponcer-section-wrap .social-wrapper {
    display: flex;
    justify-self: center;
  }

  .inline-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }

  .two-grid {
    grid-template-columns: auto;
    padding: 20px 0;
  }

  .two-grid.company-grid {
    grid-template-columns: auto !important;
  }

  .left-panel {
    padding-right: 0;
    border: 0;
  }

  .mobile-position-bottom {
    position: fixed;
    bottom: 0;
    top: auto;
    height: max-content;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 10px;
    z-index: 99999999;
  }

  .mobile-position-bottom .left-menu ul {
    white-space: nowrap;
    overflow-x: auto;
    display: flex;
    grid-gap: 10px;
    margin-bottom: 0;
    justify-content: space-around;
  }

  .mobile-position-bottom .left-menu li {
    margin: 0;
    text-align: center;
  }

  .mobile-position-bottom .left-menu li a span {
    display: none;
    font-weight: bold;
    font-size: 12px;
  }

  .mobile-position-bottom .left-menu li.active a {
    border-radius: 0;
    box-shadow: none;
  }

  .mobile-position-bottom .left-menu li a i {
    background-color: var(--white);
    color: var(--primary);
  }

  .profile-grid {
    display: block;
  }

  .input-field.profile-logo {
    display: block;
  }

  .right-panel {
    padding-bottom: 60px;
  }

  #chart {
    width: 100% !important;
  }

  .jobs-title.mobile-job-title {
    grid-template-columns: auto max-content max-content;
    margin-top: 20px;
  }

  .mobile-job-title .tabs-nav {
    order: 3;
    grid-column: span 3;
    justify-self: center;
    margin-top: 10px;
  }

  .mobile-job-title .cta {
    order: 2;
  }

  .job-box {
    grid-template-columns: auto;
  }

  .job-box:first-of-type {
    margin-top: 0;
  }

  .popup-wrapper .popup-div.popup-medium {
    width: 90%;
    height: 90%;
    overflow-y: auto;
  }

  #post-job .popup-div {
    max-height: 90%;
  }

  .applied-candidates,
  .selected-candidates {
    max-width: 100%;
  }

  .search-section.innerpage-search .search-wrapper {
    grid-template-columns: auto;
  }

  .search-section.innerpage-search .search-wrapper .option-list:before {
    content: none;
  }

  .candidate-wrapper {
    grid-template-columns: auto;
  }

  .box-div {
    padding: 10px;
  }

  .profile-sec {
    grid-template-columns: 50px auto;
    grid-gap: 5px;
  }

  .profile-sec h2 {
    font-size: 14px;
  }

  .profile-sec p {
    margin: 0;
    font-size: 12px;
  }

  .candidate-view .icons {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .can-cnt {
    display: block;
  }

  .schedule-grid {
    grid-template-columns: auto;
  }

  .schedule-list {
    padding-right: 0;
    border-right: 0;
  }

  .schedule-title {
    grid-template-columns: auto;
    grid-gap: 5px;
  }

  .attr-list {
    flex-wrap: wrap;
  }

  .calendar {
    max-width: 100%;
    margin: 0 0 20px;
  }

  .message-grid {
    grid-template-columns: auto;
    margin-bottom: 20px;
  }

  .applied-candidates .candidate-header-sec .profile-sec {
    grid-column: span 3;
  }

  .applied-candidates .candidate-header-sec .app-status {
    padding: 0;
    grid-column: span 2;
  }

  .applied-candidates .candidate-header-sec .candidate-view {
    justify-self: end;
  }

  .sch-grid-one,
  .sch-grid-two {
    grid-template-columns: auto;
    grid-gap: 0;
  }

  .candidate-contact {
    grid-template-columns: auto;
    grid-gap: 10px;
  }

  .explore-wrapper {
    padding-top: 0;
  }

  .explore-grid {
    grid-template-columns: 200px 200px 200px;
    white-space: nowrap;
    grid-gap: 10px;
    overflow-x: auto;
    margin: 0;
    padding: 0 10px;
  }

  .explore-grid .item {
    margin: 5px 0;
  }

  .explore-grid .item:hover:before {
    content: none;
  }

  .explore-grid .item h3 {
    font-size: 15px;
    white-space: initial;
  }

  .comp-explore-grid {
    grid-template-columns: 200px 200px 200px;
    white-space: nowrap;
    grid-gap: 10px;
    overflow-x: auto;
    margin: 0;
    padding: 0 10px;
  }

  .comp-explore-grid .item {
    margin: 5px 0;
  }

  .comp-explore-grid .item:hover:before {
    content: none;
  }

  .comp-explore-grid .item h3 {
    font-size: 15px;
    white-space: initial;
  }

  .right-resume-panel {
    grid-template-columns: auto;
  }

  .resume-header {
    grid-template-columns: repeat(2, 1fr);
    width: max-content;
    margin: 0 auto;
    grid-gap: 10px;
  }

  .inline-options .resume-option {
    flex-wrap: wrap;
  }

  .resume-header h2 {
    font-size: 14px;
  }

  .popup-wrapper .popup-div {
    width: 90%;
    height: 90%;
    overflow-y: auto;
  }

  .header-pp img {
    width: 50px;
  }

  .applied-jobs-sec.two-grid {
    grid-template-columns: auto;
  }

  .applied-jobs-sec.two-grid .right-panel {
    max-width: 100%;
  }

  .job-bookmark-apply .bookmark img {
    margin-right: 0;
  }

  .job-list-box .job-header h1 {
    font-size: 20px;
  }

  .job-list-box .job-header h4 {
    font-size: 14px;
  }

  .post-details {
    flex-wrap: wrap;
  }

  .cta-filled.cta-xs.back-dashboard {
  }

  .reachus-grid {
    grid-template-columns: auto;
    padding-top: 0;
  }

  .contact-section h6 {
    font-size: 13px;
  }

  .form-wrapper {
    background-image: none;
  }

  .inline-style-grid {
    grid-template-columns: auto;
  }

  .job-detail-page {
    grid-template-columns: auto;
    margin: 0;
  }

  .job-listing .header-top-section.login-header {
    grid-template-columns: auto auto;
    padding: 10px;
  }

  .job-detail-page .post-details > div {
    display: flex;
  }

  .job-listing .header-top-section.login-header .candidate-profile-img {
    margin: 0;
  }

  .job-listing header .header-center-section {
    max-width: 100%;
    order: 3;
    grid-column: span 3;
  }

  .header-profile {
    grid-column: span 2;
  }

  .loaction-title {
    margin: 20px 0 0 0;
  }

  .brand-section .social-wrapper {
    justify-self: flex-start;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
  }

  .brand-section .quick-links {
    grid-column: span 2;
  }

  .header-wrapper-search-container.search-section {
    grid-column: span 2;
    order: 3;
  }

  .card-container {
    display: block;
  }

  .location-card {
    width: 100%;
  }

  .list-location {
    padding: 10px;
  }

  .header-top-section.login-header .header-profile {
    grid-column: auto;
  }

  .category-slider {
    max-width: 100%;
  }

  /* .category-slider .item{ margin: 0;} */
  .slick-slider.category-slider .slick-slide {
    padding: 0 10px;
  }

  .interview-notify-page {
    margin: 20px auto;
  }

  .schedule-page-grid {
    grid-template-columns: auto;
    grid-gap: 20px;
  }

  .flex.schedule-job {
    display: grid;
    grid-template-columns: auto auto;
  }

  .schedule-job h1 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .jobs-tab {
    flex-wrap: wrap;
  }

  .inner-header {
    padding: 10px;
  }

  .brand-logo img {
    width: 65px;
    height: 65px;
  }

  .applied-jobs-sec.two-grid .left-panel {
    border: 0;
    display: flex;
    width: 100%;
    justify-content: end;
  }

  .profile-photo {
    width: 50px;
    height: 50px;
  }

  .ant-modal {
    max-width: calc(100vw - 40px) !important;
  }

  .select-link {
  }

  .select-link > div:first-of-type {
    width: 80% !important;
  }

  .post-job-cta .cta-outline.cta-xs,
  .post-job-cta .cta-filled.cta-xs {
    padding: 10px 20px;
    font-size: 12px;
    display: inline-block;
  }

  .sponcer-section .ids-logo img {
    width: 60px;
  }

  .login-left-panel h1 {
    font-size: 20px;
  }

  .login-left-panel p {
    font-size: 14px;
  }

  .inner-header .cta.cta-outline {
    padding: 8px 20px;
  }

  .membres-list {
    margin-top: 10px;
  }

  .candidate-login-wrapper {
    background-image: none;
    height: 100vh;
    display: grid;
    align-items: center;
  }

  .login-wrapper.candidate-login .login-right-panel {
    max-width: 90%;
  }

  .schedule-main-grid {
    display: grid;
  }

  .interview-buttons {
    grid-column: span 2;
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.skills-input {
  width: 100%;
  /* height: 100%; */
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 14px;
  border: 0x solid #9b9b9b;
  border-radius: 6px;
  overflow: hidden;
}

.dashboard-card {
  margin-bottom: 10px;
}

.dashboard-card .user-profile {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0px auto;
}

.dashboard-card .user-profile img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.dashboard-card .user-profile-percentage {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffffde;
  box-shadow: 1px 1px 10px #00000024;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-card .user-profile-percentage span {
  font-size: 16px;
  /* margin: 5px 0px; */
  color: #000;
}

.dashboard-card .user-profile .bonus-points {
  position: absolute;
  top: 8px;
  right: -17px;
  background-color: #fff;
  border-radius: 100px;
  font-family: "Sen-Bold";
  font-size: 14px;
  color: #000;
  padding: 4px 10px;
  box-shadow: 1px 1px 10px #00000024;
}

.dashboard-card .user-profile .bonus-points i {
  color: #ffc400;
}

.select-color .ant-select-selection-item {
  color: #f15a26;
}

.HoverInfo {
  position: fixed;
  min-width: 8ch;
  background-color: white;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.3);
  padding: 7px;
  border-radius: 4px;
}

.HoverInfo p {
  margin: 0;
  font-size: 0.9em;
}

.map-title {
  text-anchor: start;
  font-size: 18px;
}

.legend-title1 {
  /* fill: "#0000"; */
  text-anchor: end;
  font-size: 4px;
}

.HoverInfo {
  position: fixed;
  min-width: 8ch;
  background-color: white;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.3);
  padding: 7px;
  border-radius: 4px;
}

.HoverInfo p {
  margin: 0;
  font-size: 0.9em;
}

.dashboard-container {
  display: flex;
  justify-content: space-between;
}

#root-svg-group > g:nth-child(4) {
  display: none;
}

.dashboard-container .content {
  background: transparent;
  padding: 0;
  /* height: 87vh; */
  overflow-x: hidden;
  overflow-y: auto;
}

.dashboard-container .content-width {
  width: 100%;
}

.App {
  display: flex;
}

.App__mediaRecorderWrapper {
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: space-around;
  align-items: center;
}

.mediaRecorderWrapper__buttons {
  display: flex;
  flex-direction: column;
  height: 40vh;
  justify-content: space-around;
}

button {
  width: "15vw";
  height: "10vh";
}

.img-center {
  margin-right: 10px;
  width: 70px;
  height: 70px;
  object-fit: contain;
  box-shadow: 1px 1px 10px #00000018;
  /* backdrop-filter: blur(3px); */
  border-radius: 6px;
  background-color: #fff;
  padding: 0px 7px 0px 0px;
}

#min-value {
  float: left;
}

#max-value {
  float: right;
}

.students-corner-card button {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #f15a2699;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: end;
  align-items: end;
  padding: 10px;
  transition: 0.3s;
}

.students-corner-card {
  position: relative;
  padding: 15px;
  background-color: #fbfbfb8c;
  box-shadow: 1px 1px 10px #00000024;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.students-corner-card .students-corner-header-card:hover h4 {
  color: var(--primary);
}

.students-corner-card p {
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.students-corner-card p span {
  font-family: "Sen-Bold";
}

.students-corner-card p span i {
  color: var(--primary);
}

.students-corner-card a i {
  color: rgb(191, 221, 23);
  font-size: 22px;
}

.btn-arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-arrow :hover {
  background-color: var(--primary);
  cursor: pointer;
  transition: 0.6s;
}

.btn-arrow :hover i {
  color: white;
}

@media (max-width: 1100px) {
  .jobs-cta-parent > div:nth-child(1) {
    display: none;
  }

  .jobs-cta-parent {
    margin: 20px auto 0 auto;
  }
}

@media (min-width: 901px) {
  .profile-border {
    border-left: 1px solid #f15a26;
    height: 80px;
  }
}

@media (max-width: 900px) {
  .candidate-header-sec {
    flex-direction: column;
    gap: 10px;
  }

  .profile-border {
    border-bottom: 1px solid #f15a26;
    height: 1px;
    width: 300px;
  }

  .candidate-view {
    margin-left: auto;
  }
  .login-right-panel {
    padding: 30px 20px !important;
  }
}

@media (max-width: 600px) {
  .candidate-header-sec h2 {
    font-size: 16px;
  }

  .candidate-header-sec p {
    font-size: 12px;
  }

  .jobs-cta-parent {
    margin-bottom: 2em;
  }

  .jobs-cta {
    gap: 10px;
  }

  .students-corner-card button {
    width: 60px;
    height: 60px;
  }
}

.ant-radio-checked .ant-radio-inner {
  border-color: var(--primary) !important;
}

.ant-radio-checked .ant-radio-inner:after {
  background-color: var(--primary);
}

.ant-radio:hover .ant-radio-inner {
  border-color: var(--primary);
}

.ant-switch-checked {
  background: var(--primary) !important;
}

.ant-steps-item-process .ant-steps-item-icon {
  background: #f15a26;
}

.countlist {
  position: relative;
  font-family: Arial;
}

.countlist > div {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 5px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  display: grid;
  align-items: center;
  width: 100%;
}

.countlist > div img {
  width: 100px !important;
}

.text-block {
  position: absolute;
  bottom: 10px;
  right: 0px;
  background-color: transparent;
  color: black;
  padding-left: 22px;
  padding-right: 20px;
}

.faq h6 {
  font-family: "Sen-Bold";
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.faq .faq-list {
  position: sticky;
  top: 19%;
  list-style: none;
  padding: 0px;
  width: 85%;
}

.faq .faq-list li {
  position: relative;
  font-family: "Sen-Bold";
  font-size: 16px;
  text-align: center;
  padding: 12px;
  margin-bottom: 8px;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq-list li.active {
  border-radius: 6px 0px 0px 6px;
  box-shadow: 15px 2px 15px rgba(0, 0, 0, 0.103);
}

.faq .faq-list li.active::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 100%;
  border-top: 24px solid transparent;
  border-left: 38px solid #fff;
  border-bottom: 24px solid transparent;
}

.faq .faq-list li.active::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 5px;
  background-color: var(--primary);
  border-radius: 6px 0px 0px 6px;
}

.faq .faq-list li:hover {
  transform: translateY(-3px);
  box-shadow: 2px 0px 10px #f159268e;
}

.text-with-icon .icons {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translatey(-50%);
  background: #fff6f9;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.text-with-icon input:placeholder-shown {
  opacity: 0.3;
}
.reports-header {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr max-content;
  grid-gap: 10px;
}
.reports-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
.ant-select {
  width: 100%;
  /* min-width: 200px; */
  /* min-width: fit-content; */
}
.reports-cta {
  display: flex;
  grid-gap: 10px;
}

.reports-table .ant-table-thead > tr > th {
  background: #ffe4da;
  color: rgb(241 90 38);
}
.reports-table .ant-table-tbody tr td:last-of-type {
  font-weight: bold;
}
.reports-header.detailed-reports .row {
  display: flex;
  grid-gap: 4px;
}
.reports-header.detailed-reports .col-md-4 {
  min-width: 400px;
}

.reports-table {
  overflow-x: scroll;
  background-color: #ffffff;
}

.exitBtn {
  position: absolute;
  top: 5px;
  right: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.171);
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  border: none;
  color: black;
  font-size: 1.1em;
  cursor: pointer;
}

.resendNote {
  font-size: 0.9rem;
  color: black;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.resendBtn {
  background-color: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 700;
}
